﻿@import url("https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Outfit:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap");
:root {
  --background: #040d1a;
  --foreground: #e8f0ff;
  --card: #071428;
  --card-foreground: #c8d8f8;
  --primary: #1a7fff;
  --primary-foreground: #fff;
  --secondary: #0a1f3d;
  --secondary-foreground: #7aabff;
  --muted: #0d1e38;
  --muted-foreground: #6685aa;
  --accent: #f5c518;
  --accent-foreground: #040d1a;
  --border: #1a7fff2e;
  --ring: #1a7fff;
  --radius: 6px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  font-family: Outfit, sans-serif;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

img,
svg,
video {
  max-width: 100%;
  height: auto;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--background);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 3px;
}

.font-display {
  font-family: Rajdhani, sans-serif;
}

.font-mono-custom {
  font-family: JetBrains Mono, monospace;
}

@keyframes bolt-flicker {
  0%, 88%, 92%, 100% {
    opacity: 1;
    filter: drop-shadow(0 0 6px #1a7fff);
  }

  89% {
    opacity: .2;
    filter: drop-shadow(0 0 #0000);
  }

  90% {
    opacity: 1;
    filter: drop-shadow(0 0 10px #f5c518);
  }

  91% {
    opacity: .5;
    filter: drop-shadow(0 0 2px #1a7fff);
  }
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 20px #1a7fff4d;
  }

  50% {
    box-shadow: 0 0 40px #1a7fff99, 0 0 80px #1a7fff33;
  }
}

@keyframes float-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes grid-pulse {
  0%, 100% {
    opacity: .04;
  }

  50% {
    opacity: .08;
  }
}

@keyframes strike {
  0% {
    opacity: 0;
    transform: translateY(-100%) scaleY(.3) rotate(var(--r, -8deg));
  }

  10% {
    opacity: 1;
    transform: translateY(0) scaleY(1) rotate(var(--r, -8deg));
    filter: drop-shadow(0 0 12px #1a7fff) drop-shadow(0 0 30px #f5c518);
  }

  25% {
    opacity: .8;
  }

  35% {
    opacity: 0;
    transform: translateY(20%) scaleY(1.1) rotate(var(--r, -8deg));
  }

  100% {
    opacity: 0;
  }
}

@keyframes bolt-spin {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes energy-ring {
  0% {
    opacity: .8;
    transform: scale(.6);
  }

  100% {
    opacity: 0;
    transform: scale(2.2);
  }
}

@keyframes zigzag-travel {
  0% {
    stroke-dashoffset: 500px;
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  60% {
    opacity: .8;
  }

  100% {
    stroke-dashoffset: 0;
    opacity: 0;
  }
}

@keyframes spark-pop {
  0% {
    opacity: 1;
    transform: scale(0) rotate(0);
  }

  60% {
    opacity: 1;
    transform: scale(1.4) rotate(180deg);
  }

  100% {
    opacity: 0;
    transform: scale(0) rotate(360deg);
  }
}

@keyframes thunder-shake {
  0%, 100% {
    transform: translateX(0);
  }

  20% {
    transform: translateX(-3px) rotate(-1deg);
  }

  40% {
    transform: translateX(3px) rotate(1deg);
  }

  60% {
    transform: translateX(-2px);
  }

  80% {
    transform: translateX(2px);
  }
}

@keyframes hero-bolt-drop {
  0% {
    opacity: 0;
    transform-origin: top;
    transform: scaleY(0);
  }

  15% {
    opacity: 1;
    filter: drop-shadow(0 0 20px #1a7fff) drop-shadow(0 0 60px #f5c51899);
    transform: scaleY(1);
  }

  25% {
    opacity: .6;
    filter: drop-shadow(0 0 8px #1a7fff);
  }

  40% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

.bolt-flicker {
  animation: 3.5s infinite bolt-flicker;
}

.pulse-glow {
  animation: 3s ease-in-out infinite pulse-glow;
}

.animate-float {
  animation: .7s forwards float-up;
}

.animate-thunder-shake {
  animation: .5s thunder-shake;
}

.electric-border {
  border: 1px solid #1a7fff4d;
  box-shadow: inset 0 0 20px #1a7fff0a, 0 0 0 1px #1a7fff0f;
}

.btn-primary {
  color: #fff;
  letter-spacing: .05em;
  text-transform: uppercase;
  cursor: pointer;
  background: linear-gradient(135deg, #1a7fff, #0056d6);
  border: none;
  border-radius: 4px;
  padding: 14px 32px;
  font-family: Rajdhani, sans-serif;
  font-weight: 600;
  transition: all .2s;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-primary:before {
  content: "";
  opacity: 0;
  background: linear-gradient(135deg, #f5c51826, #0000);
  transition: opacity .2s;
  position: absolute;
  inset: 0;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px #1a7fff80;
}

.btn-primary:hover:before {
  opacity: 1;
}

.btn-outline {
  color: #7aabff;
  letter-spacing: .05em;
  text-transform: uppercase;
  cursor: pointer;
  background: none;
  border: 1px solid #1a7fff66;
  border-radius: 4px;
  padding: 13px 32px;
  font-family: Rajdhani, sans-serif;
  font-weight: 600;
  transition: all .2s;
  text-decoration: none;
  display: inline-block;
}

.btn-outline:hover {
  color: #fff;
  background: #1a7fff1a;
  border-color: #1a7fff;
}

.grid-bg {
  background-image: linear-gradient(#1a7fff0f 1px, #0000 1px), linear-gradient(90deg, #1a7fff0f 1px, #0000 1px);
  background-size: 60px 60px;
  animation: 6s ease-in-out infinite grid-pulse;
}

.service-card {
  background: var(--card);
  border: 1px solid #1a7fff26;
  border-radius: 8px;
  padding: 32px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.service-card:before {
  content: "";
  opacity: 0;
  background: linear-gradient(90deg, #0000, #1a7fff, #0000);
  height: 2px;
  transition: opacity .3s;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.service-card:hover {
  border-color: #1a7fff66;
  transform: translateY(-4px);
  box-shadow: 0 20px 60px #0006, 0 0 40px #1a7fff14;
}

.service-card:hover:before {
  opacity: 1;
}

.stat-card {
  background: linear-gradient(135deg, #1a7fff14, #1a7fff05);
  border: 1px solid #1a7fff33;
  border-radius: 8px;
  padding: 28px 32px;
}

.nav-link {
  color: #7aabff;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: Rajdhani, sans-serif;
  font-size: 14px;
  font-weight: 500;
  transition: color .2s;
}

.nav-link:hover {
  color: #fff;
}

.section-tag {
  color: #7aabff;
  letter-spacing: .15em;
  text-transform: uppercase;
  background: #1a7fff1a;
  border: 1px solid #1a7fff40;
  border-radius: 100px;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  font-family: JetBrains Mono, monospace;
  font-size: 11px;
  display: inline-flex;
}

.process-step {
  padding-left: 64px;
  position: relative;
}

.tab-btn {
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #6685aa;
  cursor: pointer;
  white-space: nowrap;
  background: none;
  border: 1px solid #1a7fff33;
  border-radius: 4px;
  padding: 10px 20px;
  font-family: Rajdhani, sans-serif;
  font-size: 14px;
  font-weight: 600;
  transition: all .2s;
}

.tab-btn.active {
  color: #7aabff;
  background: #1a7fff26;
  border-color: #1a7fff;
}

.tab-btn:hover:not(.active) {
  color: #aac8ff;
  border-color: #1a7fff59;
}

.pricing-card {
  background: var(--card);
  border: 1px solid #1a7fff26;
  border-radius: 10px;
  padding: 36px 28px;
  transition: all .3s;
}

.pricing-card.featured {
  background: linear-gradient(160deg, #071f44, #040f26);
  border-color: #1a7fff;
  transform: scale(1.04);
  box-shadow: 0 0 60px #1a7fff26;
}

.pricing-card:not(.featured):hover {
  border-color: #1a7fff59;
  transform: translateY(-4px);
}

.tech-pill {
  color: #6685aa;
  background: #1a7fff0f;
  border: 1px solid #1a7fff26;
  border-radius: 4px;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-family: JetBrains Mono, monospace;
  font-size: 12px;
  transition: all .2s;
  display: inline-flex;
}

.tech-pill:hover {
  color: #aac8ff;
  background: #1a7fff1f;
  border-color: #1a7fff4d;
}

.testimonial-card {
  background: var(--card);
  border: 1px solid #1a7fff1f;
  border-radius: 10px;
  padding: 36px;
  transition: all .3s;
}

.testimonial-card:hover {
  border-color: #1a7fff4d;
}

input, textarea, select {
  color: var(--foreground);
  background: #0a1f3dcc;
  border: 1px solid #1a7fff33;
  border-radius: 6px;
  outline: none;
  width: 100%;
  padding: 13px 16px;
  font-family: Outfit, sans-serif;
  font-size: 15px;
  transition: border-color .2s;
}

input:focus, textarea:focus, select:focus {
  border-color: #1a7fff;
  box-shadow: 0 0 0 3px #1a7fff1f;
}

input::placeholder, textarea::placeholder {
  color: #3d5a7a;
}

.bolt-icon {
  width: 20px;
  height: 20px;
  display: inline-block;
}

.service-icon-wrap {
  background: #1a7fff14;
  border: 1px solid #1a7fff33;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  font-size: 26px;
  transition: all .3s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.service-icon-wrap:after {
  content: "";
  opacity: 0;
  background: linear-gradient(135deg, #1a7fff33, #0000);
  transition: opacity .3s;
  position: absolute;
  inset: 0;
}

.service-card:hover .service-icon-wrap {
  border-color: #1a7fff;
  transform: scale(1.08) rotate(-3deg);
  box-shadow: 0 0 20px #1a7fff40;
}

.service-card:hover .service-icon-wrap:after {
  opacity: 1;
}

.hero-strike {
  pointer-events: none;
  animation: hero-bolt-drop var(--dur, 2.4s) ease-in var(--delay, 0s) infinite;
  position: absolute;
}

.energy-ring {
  animation: energy-ring var(--dur, 1.8s) ease-out var(--delay, 0s) infinite;
  border: 1px solid #1a7fff99;
  border-radius: 50%;
  position: absolute;
}

.lead-form-section {
  background: linear-gradient(135deg, #0a1f3df2, #040d1afa);
  border-top: 1px solid #1a7fff26;
  border-bottom: 1px solid #1a7fff26;
  position: relative;
  overflow: hidden;
}

.lead-form-section:before {
  content: "";
  background: radial-gradient(60% 80%, #1a7fff12 0%, #0000 70%);
  position: absolute;
  inset: 0;
}

.cta-bar-btn {
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  border-radius: 6px;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: Rajdhani, sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all .25s;
  display: inline-flex;
}

.cta-bar-btn.primary {
  color: #fff;
  background: linear-gradient(135deg, #1a7fff, #0050d0);
  border: none;
  box-shadow: 0 4px 24px #1a7fff59;
}

.cta-bar-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px #1a7fff8c;
}

.cta-bar-btn.yellow {
  color: #040d1a;
  background: linear-gradient(135deg, #f5c518, #e0a800);
  border: none;
  box-shadow: 0 4px 20px #f5c5184d;
}

.cta-bar-btn.yellow:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px #f5c51880;
}

.cta-bar-btn.ghost {
  color: #7aabff;
  background: none;
  border: 1px solid #1a7fff59;
}

.cta-bar-btn.ghost:hover {
  color: #fff;
  background: #1a7fff1a;
  border-color: #1a7fff;
}
/* ── Bootstrap layout helpers ── */
.container-xxl { max-width: 1280px; }
.py-28 { padding-top: 7rem; padding-bottom: 7rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-14 { margin-bottom: 3.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-5 { margin-top: 1.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-16 { gap: 4rem; }

body {
  color: var(--foreground) !important;
  font-family: Outfit, sans-serif !important;
  background-color: var(--background) !important;
  overflow-x: hidden !important;
}
.navbar-nav .nav-link {
  color: #7aabff !important;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-family: Rajdhani, sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 0 !important;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #fff !important;
}

.site-nav {
  height: 70px;
  z-index: 1050;
  transition: background .3s, backdrop-filter .3s, border-color .3s;
  background: transparent;
  border-bottom: none;
}
.site-nav.is-scrolled {
  background: rgba(4, 13, 26, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(26, 127, 255, 0.18);
}
.site-nav .navbar-brand { padding: 0; margin: 0; }
.site-logo-link { text-decoration: none; line-height: 0; flex-shrink: 0; }
.site-logo {
  height: 44px;
  width: auto;
  display: block;
}
.footer-logo {
  width: 100%;
  max-width: 230px;
  height: auto;
  display: block;
}
@media (max-width: 575.98px) {
  .site-logo { height: 34px; }
}
.navbar-toggler {
  border: 1px solid rgba(26,127,255,.25);
  padding: 6px 8px;
}
.navbar-toggler:focus { box-shadow: 0 0 0 .15rem rgba(26,127,255,.25); }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(122,171,255,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
@media (max-width: 991.98px) {
  .site-nav .navbar-collapse {
    background: rgba(4,13,26,.96);
    border: 1px solid rgba(26,127,255,.2);
    border-radius: 12px;
    margin-top: 10px;
    padding: 16px;
  }
  .site-nav .nav-link { display: block; padding: 10px 0; }
  .pricing-card.featured { transform: none; }
}

.hero-section { min-height: 100vh; padding-top: 70px; overflow: hidden; position: relative; display: flex; align-items: center; }
.hero-card-img { width: 390px; height: 470px; max-width: 100%; position: relative; }
.hero-card-img img { width: 100%; height: 100%; object-fit: cover; opacity: .65; }
.footer-social {
  width: 34px; height: 34px; border-radius: 6px;
  border: 1px solid rgba(26,127,255,.2);
  display: flex; align-items: center; justify-content: center;
  color: #6685aa; font-size: 13px; text-decoration: none; transition: .2s;
}
.footer-social:hover { color: #fff; border-color: #1a7fff; }
.contact-icon {
  width: 44px; height: 44px; border-radius: 8px;
  background: rgba(26,127,255,.1); border: 1px solid rgba(26,127,255,.2);
  display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0;
}
.choose-item {
  padding: 14px 16px; border-radius: 8px;
  border: 1px solid rgba(26,127,255,.1);
  background: rgba(26,127,255,.03);
}
.process-icon {
  width: 48px; height: 48px; border-radius: 8px;
  background: rgba(26,127,255,.1); border: 1px solid rgba(26,127,255,.25);
  display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.chip {
  font-size: 13px; color: #7aabff;
  background: rgba(26,127,255,.08);
  border: 1px solid rgba(26,127,255,.18);
  border-radius: 100px; padding: 5px 14px;
}
.tech-chip {
  font-family: JetBrains Mono, monospace;
  font-size: 10px; color: #1a7fff;
  background: rgba(26,127,255,.1);
  border: 1px solid rgba(26,127,255,.2);
  border-radius: 3px; padding: 3px 8px;
}
.learn-more {
  color: #1a7fff; font-size: 13px;
  font-family: Rajdhani, sans-serif; font-weight: 600;
  text-transform: uppercase; letter-spacing: .05em;
  text-decoration: none;
}
.learn-more:hover { color: #fff; }
.available-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #22c55e; box-shadow: 0 0 6px #22c55e;
}
footer a.foot-link { color: #3d5a7a; font-size: 14px; text-decoration: none; transition: color .2s; }
footer a.foot-link:hover { color: #7aabff; }
.form-status { display:none; color:#22c55e; font-size:14px; text-align:center; margin-top:10px; }
.form-status.show { display:block; }

/* ── No inline styles: shared text ── */
.logo-text .byte,
.byte { color: #1a7fff; }
.logo-text .labs,
.labs { color: #f5c518; font-weight: 400; }
.logo-text:hover { color: #fff; }
.btn-nav { font-size: 13px; padding: 10px 18px; text-decoration: none; }
.btn-talk {
  font-size: 13px;
  padding: 10px 22px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-link-flex {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-block { text-decoration: none; display: block; text-align: center; }

.bolt-svg { fill: currentColor; display: block; }
.bolt-sm { width: 10px; height: 10px; }
.bolt-14 { width: 14px; height: 14px; }
.bolt-15 { width: 15px; height: 15px; }
.bolt-16 { width: 16px; height: 16px; }
.bolt-18 { width: 18px; height: 18px; }
.bolt-20 { width: 20px; height: 20px; }
.bolt-28 { width: 28px; height: 28px; }
.bolt-44 { width: 44px; height: 44px; color: #f5c518; }

.hero-glow,
.hero-glow-gold,
.hero-fx {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-glow { background: radial-gradient(70% 60% at 62% 40%, rgba(26,127,255,.13) 0%, transparent 70%); }
.hero-glow-gold { background: radial-gradient(40% 40% at 18% 70%, rgba(245,197,24,.06) 0%, transparent 60%); }
.hero-fx { overflow: hidden; }
.hero-fx .grid-bg { position: absolute; inset: 0; }
.hero-bolt-side {
  position: absolute;
  top: 8%;
  right: 10%;
  opacity: .35;
  transform: rotate(10deg);
  filter: drop-shadow(0 0 8px #1a7fff);
  color: #1a7fff;
}
.hero-bolt-side .bolt-svg { width: 110px; height: 176px; }
.hero-bolt-bg {
  position: absolute;
  right: -2%;
  top: 12%;
  opacity: .035;
  color: #1a7fff;
}
.hero-bolt-bg .bolt-svg { width: 420px; height: 420px; }
.hero-wave {
  position: absolute;
  bottom: 18%;
  left: 0;
  right: 0;
  width: 100%;
  height: 60px;
  opacity: .12;
}

.hero-title {
  font-size: clamp(42px, 6vw, 78px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -.01em;
  color: #fff;
}
.hero-title .blue {
  color: #1a7fff;
  text-shadow: 0 0 40px rgba(26,127,255,.4);
}
.hero-title .gold {
  color: #f5c518;
  text-shadow: 0 0 30px rgba(245,197,24,.35);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.hero-sub {
  color: #6685aa;
  line-height: 1.78;
  max-width: 480px;
  font-weight: 300;
  font-size: 17px;
}
.mini-btn {
  color: #7aabff;
  font-size: 14px;
  text-decoration: none;
  border: 1px solid rgba(26,127,255,.18);
  border-radius: 6px;
  padding: 8px 16px;
}
.mini-btn:hover { color: #fff; border-color: #1a7fff; }
.hero-mini-stats { border-top: 1px solid rgba(26,127,255,.12); }
.hero-emoji { font-size: 20px; }
.mini-num {
  font-size: 22px;
  font-weight: 700;
}
.mini-label {
  font-size: 11px;
  color: #6685aa;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.hero-card-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4,13,26,.92) 0%, rgba(4,13,26,.2) 50%, transparent 100%);
}
.hero-card-bolt { position: absolute; top: 16px; right: 16px; color: #1a7fff; }
.hero-card-copy { position: absolute; bottom: 28px; left: 28px; right: 28px; }
.hero-card-copy .section-tag { font-size: 10px; }
.hero-card-title { font-size: 20px; font-weight: 700; }
.hero-card-meta { color: #6685aa; font-size: 13px; margin-top: 4px; }
.stat-float-top {
  top: -22px;
  right: -40px;
  width: 154px;
  text-align: center;
  padding: 16px;
}
.stat-float-num {
  font-size: 32px;
  font-weight: 700;
  color: #1a7fff;
  line-height: 1;
}
.stat-float-label { font-size: 12px; color: #6685aa; margin-top: 2px; }
.stat-float-bot { bottom: -22px; left: -24px; padding: 12px 16px; }
.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  display: inline-block;
}
.build-ok { font-size: 11px; color: #7aabff; }

.stats-strip {
  background: rgba(26,127,255,.06);
  border-top: 1px solid rgba(26,127,255,.12);
  border-bottom: 1px solid rgba(26,127,255,.12);
}
.stat-emoji { font-size: 28px; }
.stat-big { font-size: 28px; font-weight: 700; line-height: 1; }
.stat-small { font-size: 13px; color: #6685aa; }

.section-h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -.01em;
}
.section-h2.lead-h { font-size: clamp(28px, 4vw, 48px); }
.gold-text { color: #f5c518; }
.blue-text { color: #1a7fff; }
.muted-p {
  color: #6685aa;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.muted-p.left { margin-left: 0; margin-right: 0; max-width: 440px; line-height: 1.75; }
.muted-p.lead { max-width: 500px; }
.muted-p.tech { max-width: 480px; }
.choose-title { font-size: 18px; font-weight: 700; }
.choose-item .ico { font-size: 22px; flex-shrink: 0; }
.choose-item h4 { font-size: 15px; font-weight: 700; margin: 0 0 2px; }
.choose-item p { color: #6685aa; font-size: 13px; margin: 0; line-height: 1.5; }
.form-box { background: rgba(4,13,26,.8); }
.form-head { font-size: 20px; font-weight: 700; }
.form-label {
  font-size: 12px;
  color: #6685aa;
  text-transform: uppercase;
  letter-spacing: .07em;
  display: block;
  margin-bottom: 6px;
}
.form-note { color: #3d5a7a; font-size: 12px; }

.service-card h3 { font-size: 18px; font-weight: 700; line-height: 1.2; }
.service-card p { color: #6685aa; font-size: 14px; line-height: 1.65; margin-bottom: 16px; }

.section-alt { background: rgba(7,20,40,.5); }
.section-contact { background: rgba(7,20,40,.6); }
.contact-grid-bg { position: absolute; inset: 0; opacity: .5; }

.process-num {
  color: #1a7fff;
  font-size: 11px;
  letter-spacing: .1em;
  margin-bottom: 4px;
}
.process-item h3 { font-size: 20px; font-weight: 700; }
.process-item p { color: #6685aa; font-size: 14px; line-height: 1.65; }

.price-name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.price-amt { font-size: 42px; font-weight: 700; color: #fff; line-height: 1; }
.price-amt.blue { color: #1a7fff; }
.price-desc { color: #6685aa; font-size: 13px; line-height: 1.6; margin-bottom: 24px; }
.price-line { height: 1px; background: rgba(26,127,255,.15); margin-bottom: 24px; }
.price-feat { font-size: 14px; color: #c8d8f8; }
.popular-tag {
  font-size: 11px;
  color: #f5c518;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.custom-note { color: #3d5a7a; font-size: 13px; }
.custom-note a { color: #1a7fff; text-decoration: none; }

.review-score { color: #6685aa; font-size: 14px; margin-left: 8px; }
.review-text {
  color: #c8d8f8;
  line-height: 1.75;
  font-size: 15px;
  margin-bottom: 24px;
  font-style: italic;
}
.review-foot { border-top: 1px solid rgba(26,127,255,.12); }
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(26,127,255,.3);
}
.review-name { font-weight: 700; font-size: 16px; }
.review-role { color: #6685aa; font-size: 12px; }

.contact-h2 { font-size: clamp(32px, 4vw, 52px); font-weight: 700; line-height: 1.05; }
.contact-lead { color: #6685aa; line-height: 1.75; max-width: 420px; }
.contact-kicker {
  color: #6685aa;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 2px;
}
.contact-val { color: #c8d8f8; font-size: 15px; }
.contact-box { background: rgba(7,20,40,.8); }
.contact-form-title { font-size: 22px; font-weight: 700; }

.site-footer {
  background: #020912;
  border-top: 1px solid rgba(26,127,255,.12);
}
.footer-brand { font-size: 18px; font-weight: 700; }
.footer-about { color: #3d5a7a; font-size: 14px; line-height: 1.75; }
.footer-title {
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.footer-meta { color: #3d5a7a; font-size: 14px; }
.footer-kicker {
  color: #6685aa;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 3px;
}
.footer-tag { font-size: 10px; }
.footer-bottom {
  border-top: 1px solid rgba(26,127,255,.08);
  padding: 20px 24px;
}
.footer-copy { color: #3d5a7a; font-size: 13px; }
.footer-legal { color: #3d5a7a; font-size: 13px; text-decoration: none; }
.footer-legal:hover { color: #7aabff; }

/* ── Inner page foundation ── */
.page-inner .site-nav {
  background: rgba(4, 13, 26, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(26, 127, 255, 0.14);
}

.page-hero {
  position: relative;
  padding: 130px 0 72px;
  overflow: hidden;
  border-bottom: 1px solid rgba(26, 127, 255, 0.12);
}
.page-hero-fx {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.page-hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.45;
}
.page-hero-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 127, 255, 0.22), transparent 70%);
  top: -120px;
  right: -80px;
  filter: blur(10px);
}
.page-crumb {
  color: #3d5a7a;
  font-size: 13px;
  margin-bottom: 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.page-crumb a {
  color: #7aabff;
  text-decoration: none;
  transition: color .2s;
}
.page-crumb a:hover { color: #fff; }
.page-crumb span:last-child { color: #6685aa; }
.page-hero-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: rgba(26, 127, 255, 0.1);
  border: 1px solid rgba(26, 127, 255, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 0 30px rgba(26, 127, 255, 0.12);
}
.page-title {
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.page-lead.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.page-lead {
  color: #6685aa;
  font-size: 17px;
  line-height: 1.75;
  max-width: 560px;
  margin: 0;
}

/* Thank you page */
.thank-hero {
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  padding-bottom: 80px;
}
.thank-card {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  background: rgba(7, 20, 40, 0.88);
  border-radius: 16px;
  padding: 48px 36px;
}
.thank-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 18px;
  background: rgba(26, 127, 255, 0.12);
  border: 1px solid rgba(26, 127, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a7fff;
}
.thank-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 14px;
}
.thank-lead {
  color: #c8d8f8;
  font-size: 18px;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 10px;
}
.thank-sub {
  color: #6685aa;
  font-size: 15px;
  line-height: 1.65;
  max-width: 480px;
  margin: 0 auto;
}
@media (max-width: 575.98px) {
  .thank-card { padding: 36px 22px; }
}

.page-hero-stat {
  background: rgba(7, 20, 40, 0.85);
  border-radius: 12px;
  padding: 24px 26px;
}
.page-hero-stat-kicker {
  color: #1a7fff;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.page-hero-stat-num {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 6px;
}
.page-hero-stat-label {
  color: #6685aa;
  font-size: 13px;
  line-height: 1.5;
}

.svc-include-card {
  background: rgba(7, 20, 40, 0.9);
  border-radius: 12px;
  padding: 32px;
  position: sticky;
  top: 96px;
}
.svc-check {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgba(26, 127, 255, 0.12);
  border: 1px solid rgba(26, 127, 255, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.svc-outcome {
  background: rgba(26, 127, 255, 0.04);
  border: 1px solid rgba(26, 127, 255, 0.14);
  border-radius: 10px;
  padding: 16px 18px;
  height: 100%;
}
.svc-outcome-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}
.svc-outcome-text {
  color: #6685aa;
  font-size: 13px;
  line-height: 1.55;
}
.svc-feature-card h3 {
  font-size: 17px;
  font-weight: 700;
}
.svc-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(26, 127, 255, 0.1);
  border: 1px solid rgba(26, 127, 255, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.svc-related-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: rgba(7, 20, 40, 0.8);
  border: 1px solid rgba(26, 127, 255, 0.16);
  border-radius: 10px;
  text-decoration: none;
  transition: border-color .2s, transform .2s, background .2s;
  height: 100%;
}
.svc-related-card:hover {
  border-color: rgba(26, 127, 255, 0.45);
  background: rgba(26, 127, 255, 0.08);
  transform: translateY(-2px);
}
.svc-related-icon { font-size: 20px; flex-shrink: 0; }
.svc-related-name {
  color: #c8d8f8;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  flex-grow: 1;
}
.svc-related-arrow {
  color: #1a7fff;
  font-size: 16px;
  opacity: .7;
}
.svc-related-card:hover .svc-related-arrow { opacity: 1; color: #f5c518; }

.svc-cta-band {
  position: relative;
  padding: 88px 0;
  background:
    radial-gradient(ellipse at center, rgba(26, 127, 255, 0.14), transparent 60%),
    rgba(7, 20, 40, 0.7);
  border-top: 1px solid rgba(26, 127, 255, 0.14);
  border-bottom: 1px solid rgba(26, 127, 255, 0.08);
}

/* Tech page cards */
.tech-cat-card {
  background: rgba(7, 20, 40, 0.9);
  border: 1px solid rgba(26, 127, 255, 0.18);
  border-radius: 12px;
  padding: 28px;
  height: 100%;
  transition: border-color .25s, transform .25s;
}
.tech-cat-card:hover {
  border-color: rgba(26, 127, 255, 0.4);
  transform: translateY(-3px);
}
.tech-cat-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: rgba(26, 127, 255, 0.1);
  border: 1px solid rgba(26, 127, 255, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}
.tech-cat-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}
.tech-cat-card p {
  color: #6685aa;
  font-size: 13px;
  line-height: 1.55;
  margin-bottom: 18px;
}

/* Pricing page extras */
.pricing-page-note {
  max-width: 640px;
  margin: 0 auto;
}
.pricing-faq {
  max-width: 760px;
  margin: 0 auto;
}
.pricing-faq-item {
  border: 1px solid rgba(26, 127, 255, 0.14);
  background: rgba(7, 20, 40, 0.6);
  border-radius: 10px;
  padding: 20px 24px;
  margin-bottom: 12px;
}
.pricing-faq-item h4 {
  font-family: Rajdhani, sans-serif;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}
.pricing-faq-item p {
  color: #6685aa;
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

/* Contact page extras */
.contact-side-card {
  background: rgba(7, 20, 40, 0.75);
  border: 1px solid rgba(26, 127, 255, 0.16);
  border-radius: 12px;
  padding: 22px 24px;
  margin-bottom: 14px;
}
.contact-quick-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}
.contact-quick-list a {
  color: #7aabff;
  text-decoration: none;
  font-size: 14px;
  transition: color .2s;
}
.contact-quick-list a:hover { color: #fff; }
.contact-side-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.contact-side-text {
  color: #6685aa;
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 16px;
}
.contact-form-lead {
  color: #6685aa;
  font-size: 14px;
  margin-bottom: 4px;
}

a.contact-val {
  color: #c8d8f8;
  text-decoration: none;
  font-size: 15px;
  display: inline-block;
}
a.contact-val:hover { color: #1a7fff; }

@media (max-width: 991.98px) {
  .page-hero { padding: 110px 0 56px; }
  .svc-include-card { position: static; }
  .page-hero-stat { margin-top: 8px; }
}
@media (max-width: 575.98px) {
  .page-title { font-size: 32px; }
  .page-hero-icon { width: 54px; height: 54px; font-size: 24px; }
  .svc-include-card { padding: 24px; }
  .svc-cta-band { padding: 64px 0; }
}

/* ── Services dropdown ── */
.site-dropdown {
  background: rgba(7, 20, 40, 0.98) !important;
  border: 1px solid rgba(26, 127, 255, 0.22) !important;
  border-radius: 10px !important;
  padding: 8px !important;
  min-width: 260px;
  margin-top: 10px !important;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(26, 127, 255, 0.08);
  backdrop-filter: blur(16px);
}
.site-dropdown .dropdown-item {
  color: #7aabff !important;
  font-family: Outfit, sans-serif;
  font-size: 14px;
  border-radius: 6px;
  padding: 10px 14px;
  transition: background .2s, color .2s;
}
.site-dropdown .dropdown-item:hover,
.site-dropdown .dropdown-item:focus {
  background: rgba(26, 127, 255, 0.12) !important;
  color: #fff !important;
}
.site-dropdown .dropdown-item.active {
  background: rgba(26, 127, 255, 0.18) !important;
  color: #fff !important;
}
.site-dropdown .dropdown-divider {
  border-color: rgba(26, 127, 255, 0.15);
  margin: 6px 0;
}
.site-dropdown .dropdown-view-all {
  color: #f5c518 !important;
  font-family: Rajdhani, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 13px;
}
.navbar-nav .dropdown-toggle::after {
  margin-left: 6px;
  vertical-align: 2px;
  border-top-color: currentColor;
  opacity: .7;
}
@media (min-width: 992px) {
  .site-nav .nav-item.dropdown:hover > .dropdown-toggle {
    color: #fff !important;
  }
}
@media (max-width: 991.98px) {
  .site-dropdown {
    position: static !important;
    transform: none !important;
    float: none;
    width: 100%;
    margin-top: 6px !important;
    margin-bottom: 4px;
    box-shadow: none;
  }
}

/* ── Quote modal ── */
.quote-modal .modal-content {
  background: #071428;
  border: 1px solid rgba(26, 127, 255, 0.28);
  border-radius: 14px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55), 0 0 40px rgba(26, 127, 255, 0.12);
  overflow: hidden;
}
.quote-modal .modal-header {
  padding: 28px 28px 0;
}
.quote-modal .modal-body {
  padding: 16px 28px 28px;
}
.quote-modal .modal-title {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 700;
}
.quote-modal-lead {
  color: #6685aa;
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 22px;
}
.quote-modal .btn-close {
  opacity: .7;
  filter: none;
}
.quote-modal .btn-close:hover { opacity: 1; }
.modal-backdrop.show {
  background: #020912;
  opacity: .72 !important;
}
.field-error {
  display: none;
  color: #f87171;
  font-size: 12px;
  margin-top: 6px;
  line-height: 1.4;
}
.field-error.show { display: block; }
input.is-invalid,
textarea.is-invalid,
select.is-invalid {
  border-color: #f87171 !important;
  box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.12);
}

@media (max-width: 575.98px) {
  .quote-modal .modal-header,
  .quote-modal .modal-body {
    padding-left: 18px;
    padding-right: 18px;
  }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — all screens (keep layout in bounds)
   ═══════════════════════════════════════════ */

.container-xxl {
  width: 100%;
  max-width: 1280px;
  padding-left: 16px;
  padding-right: 16px;
}

.cta-bar-btn,
.btn-primary,
.btn-outline,
.mini-btn {
  max-width: 100%;
  word-break: break-word;
}

.contact-val,
a.contact-val,
.foot-link {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* Large tablets / small desktops */
@media (max-width: 1199.98px) {
  .hero-bolt-bg .bolt-svg { width: 320px; height: 320px; }
  .hero-bolt-side .bolt-svg { width: 90px; height: 140px; }
  .stat-float-top { right: -12px; width: 140px; }
  .stat-float-bot { left: -8px; }
  .hero-card-img { width: 340px; height: 420px; }
}

/* Tablets and below */
@media (max-width: 991.98px) {
  .py-28 { padding-top: 4.5rem; padding-bottom: 4.5rem; }
  .py-20 { padding-top: 3.5rem; padding-bottom: 3.5rem; }

  .site-nav {
    height: auto;
    min-height: 64px;
    padding: 8px 0;
  }
  .site-nav .container-xxl {
    flex-wrap: wrap;
  }
  .site-nav .navbar-collapse {
    width: 100%;
    max-height: min(78vh, 640px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .site-nav .btn-nav,
  .site-nav .btn-talk {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .site-nav .d-flex.align-items-center.gap-3 {
    width: 100%;
    flex-direction: column;
    align-items: stretch !important;
  }
  .site-dropdown {
    min-width: 0;
    width: 100%;
  }

  .hero-section {
    min-height: auto;
    padding-top: 88px;
    padding-bottom: 48px;
    align-items: flex-start;
  }
  .hero-title {
    font-size: clamp(34px, 8vw, 52px);
  }
  .hero-title .gold {
    flex-wrap: wrap;
    gap: 8px;
  }
  .bolt-44 { width: 32px; height: 32px; }
  .hero-sub { font-size: 16px; max-width: 100%; }
  .hero-bolt-side,
  .hero-bolt-bg { display: none; }
  .hero-wave { bottom: 8%; opacity: .08; height: 40px; }

  .stat-float-top,
  .stat-float-bot {
    position: static !important;
    width: auto;
    margin-top: 12px;
    display: inline-flex;
  }
  .hero-card-img {
    width: 100%;
    max-width: 360px;
    height: 400px;
    margin: 0 auto;
  }
  .hero-section .col-lg-6.d-none.d-md-flex .position-relative {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-section .stat-float-top,
  .hero-section .stat-float-bot {
    align-self: stretch;
    justify-content: center;
  }

  .section-h2,
  .section-h2.lead-h,
  .contact-h2,
  .page-title {
    font-size: clamp(28px, 6vw, 40px);
  }
  .muted-p,
  .muted-p.left,
  .muted-p.lead,
  .muted-p.tech,
  .page-lead,
  .contact-lead {
    max-width: 100%;
  }

  .price-amt { font-size: 36px; }
  .pricing-card { padding: 28px 22px; }

  .process-item {
    flex-direction: row;
  }
  .process-item h3 { font-size: 18px; }

  .svc-related-name { font-size: 13px; }
  .svc-cta-band { padding: 64px 0; }
  .thank-hero { min-height: auto; padding: 120px 0 64px; }
  .thank-title { font-size: clamp(30px, 8vw, 44px); }

  .quote-modal .modal-dialog {
    margin: 0.75rem;
    max-width: calc(100% - 1.5rem);
  }
}

/* Phones landscape / large phones */
@media (max-width: 767.98px) {
  .container-xxl.px-4,
  .container-xxl {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .py-28 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
  .py-20 { padding-top: 2.75rem; padding-bottom: 2.75rem; }
  .py-10 { padding-top: 2rem; padding-bottom: 2rem; }

  .hero-section {
    padding-top: 80px;
    padding-bottom: 36px;
  }
  .hero-title {
    font-size: clamp(30px, 9vw, 40px);
    line-height: 1.08;
    margin-bottom: 1rem !important;
  }
  .hero-sub {
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 1.25rem !important;
  }
  .hero-mini-stats {
    gap: 1rem !important;
    padding-top: 1rem !important;
    margin-top: 1rem !important;
  }
  .mini-num { font-size: 18px; }
  .mini-label { font-size: 10px; }

  .cta-bar-btn {
    width: 100%;
    justify-content: center;
    padding: 12px 18px;
    font-size: 14px;
  }
  .d-flex.flex-wrap.gap-3.mb-3 {
    width: 100%;
  }
  .d-flex.flex-wrap.gap-3.mb-3 > .cta-bar-btn,
  .d-flex.flex-wrap.gap-3.mb-3 > a {
    flex: 1 1 100%;
  }
  .mini-btn {
    flex: 1 1 calc(50% - 8px);
    text-align: center;
    justify-content: center;
  }

  .stats-strip .col-6 {
    margin-bottom: 4px;
  }
  .stat-big { font-size: 22px; }
  .stat-emoji { font-size: 22px; }
  .stat-small { font-size: 12px; }

  .service-card { padding: 24px 20px; }
  .service-card h3 { font-size: 17px; }
  .service-icon-wrap {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }

  .chip {
    font-size: 12px;
    padding: 4px 12px;
  }

  .form-box,
  .contact-box {
    padding: 1.25rem !important;
  }
  .form-head { font-size: 18px; }
  .contact-form-title { font-size: 20px; }

  input,
  textarea,
  select {
    font-size: 16px; /* prevents iOS zoom */
    padding: 12px 14px;
  }

  .tab-btn {
    padding: 8px 14px;
    font-size: 12px;
    white-space: normal;
  }

  .d-flex.flex-wrap.gap-2.justify-content-center.mb-4 {
    justify-content: flex-start !important;
  }

  .price-amt { font-size: 32px; }
  .pricing-card { margin-bottom: 4px; }

  .testimonial-card { padding: 24px 20px; }
  .review-text { font-size: 14px; }

  .page-hero { padding: 100px 0 44px; }
  .page-title { font-size: clamp(28px, 8vw, 34px); }
  .page-lead { font-size: 15px; }
  .page-crumb { font-size: 12px; gap: 6px; }
  .page-hero-stat { padding: 18px 16px; }
  .page-hero-stat-num { font-size: 26px; }

  .svc-include-card { padding: 22px 18px; }
  .svc-related-card {
    padding: 12px 14px;
    gap: 8px;
  }
  .svc-related-icon { font-size: 18px; }
  .svc-related-name { font-size: 12px; }

  .footer-logo { max-width: 180px; }
  .footer-bottom .container-xxl {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 12px !important;
  }

  .modal-dialog-centered {
    min-height: calc(100% - 1rem);
  }
  .quote-modal .modal-title { font-size: 24px; }
  .cta-bar-btn.yellow { width: 100%; justify-content: center; }
}

/* Small phones */
@media (max-width: 575.98px) {
  .site-logo { height: 32px; }
  .site-nav { min-height: 58px; }

  .hero-section { padding-top: 72px; }
  .hero-title { font-size: 30px; }
  .bolt-44 { width: 26px; height: 26px; }

  .section-tag {
    font-size: 10px;
    padding: 5px 10px;
    letter-spacing: .12em;
  }

  .py-28 { padding-top: 3rem; padding-bottom: 3rem; }

  .btn-primary,
  .btn-outline {
    width: 100%;
    padding: 12px 18px;
    font-size: 13px;
  }

  .stats-strip .d-flex {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 6px !important;
  }

  .choose-item {
    padding: 12px;
  }
  .process-item {
    gap: 12px !important;
  }
  .process-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  .process-item h3 { font-size: 17px; }
  .process-item p { font-size: 13px; }

  .col-6.col-md-4.col-lg-3 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .tech-cat-card { padding: 20px; }
  .tech-pill { font-size: 12px; }

  .thank-card { padding: 28px 18px; }
  .thank-icon {
    width: 58px;
    height: 58px;
  }
  .thank-lead { font-size: 16px; }
  .thank-sub { font-size: 14px; }

  .contact-side-card { padding: 16px; }
  .contact-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .footer-title { margin-bottom: 12px !important; }
}

/* Extra-small phones */
@media (max-width: 379.98px) {
  .hero-title { font-size: 26px; }
  .mini-btn {
    flex: 1 1 100%;
  }
  .stat-big { font-size: 20px; }
  .price-amt { font-size: 28px; }
  .page-title { font-size: 26px; }
}
