/* ============================================================
   CSS CUSTOM PROPERTIES
============================================================ */
:root {
  --navy:  #0B1E35;
  --blue:  #1A3C5E;
  --sky:   #0EA5E9;
  --cyan:  #22D3EE;
  --mint:  #34D399;
  --bg:    #060E1A;
  --card:  #0D1B2E;
  --card2: #111E30;
  --text:  #E2EBF5;
  --muted: #7A92AA;
  --border:#1A2E44;

  --ease-spring:      cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out-quart:   cubic-bezier(0.25, 1, 0.5, 1);
  --ease-in-out-sine: cubic-bezier(0.37, 0, 0.63, 1);
}

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--border) var(--bg);
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   SCROLL PROGRESS BAR
============================================================ */
#progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--sky), var(--cyan), var(--mint));
  z-index: 1000;
  width: 0%;
  transition: width 0.08s linear;
}

/* ============================================================
   TOAST
============================================================ */
#toast {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 9999;
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .9rem;
  font-weight: 500;
  max-width: 360px;
  transform: translateY(120px);
  opacity: 0;
  transition: transform .45s var(--ease-spring), opacity .35s;
  box-shadow: 0 20px 60px rgba(0,0,0,.45);
  pointer-events: none;
}
#toast.show { transform: translateY(0); opacity: 1; pointer-events: auto; }
#toast.success { border-color: rgba(52,211,153,.35); }
#toast.error   { border-color: rgba(239,68,68,.35); }
.toast-icon { font-size: 1.2rem; flex-shrink: 0; }

/* ============================================================
   MOBILE MENU
============================================================ */
.mobile-menu {
  position: fixed; inset: 0;
  background: rgba(6,14,26,.97);
  backdrop-filter: blur(24px);
  z-index: 99;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  opacity: 0;
  transition: opacity .3s;
}
.mobile-menu.open { opacity: 1; }
.mobile-menu a {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--sky); }

/* ============================================================
   NAV
============================================================ */
nav#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 60px;
  background: rgba(6,14,26,0);
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: background .5s var(--ease-out-quart),
              backdrop-filter .5s,
              border-color .5s,
              padding .4s var(--ease-out-quart);
}
nav#navbar.scrolled {
  background: rgba(6,14,26,.92);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
  padding: 14px 60px;
}

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo span {
  background: linear-gradient(135deg, var(--sky), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nav-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 12px var(--mint);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.55;transform:scale(.8)} }

.nav-links { display: flex; gap: 36px; list-style: none; align-items: center; }
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 500;
  position: relative;
  padding-bottom: 3px;
  transition: color .25s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: linear-gradient(90deg, var(--sky), var(--cyan));
  transition: width .35s var(--ease-out-quart);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: linear-gradient(135deg, var(--sky), var(--cyan));
  color: #000;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  font-size: .9rem;
  transition: transform .3s var(--ease-spring), box-shadow .3s;
}
.nav-cta:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 28px rgba(14,165,233,.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .35s var(--ease-in-out-sine), opacity .25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   NAV DROPDOWN (Services Mega-Menu)
============================================================ */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.dropdown-arrow {
  font-size: .65rem;
  transition: transform .25s;
}
.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 20px;
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  background: rgba(13,27,46,.97);
  backdrop-filter: blur(24px);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 32px;
  min-width: 780px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s, transform .25s, visibility .25s;
  box-shadow: 0 24px 80px rgba(0,0,0,.5);
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 12px;
  border-right: 1px solid var(--border);
}
.dropdown-col:last-child {
  border-right: none;
}
.dropdown-heading {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--sky);
  margin-bottom: 8px;
  padding-bottom: 6px;
}
.dropdown-col a {
  color: var(--muted) !important;
  text-decoration: none !important;
  font-size: .85rem;
  padding: 6px 0;
  transition: color .2s;
  white-space: nowrap;
}
.dropdown-col a:hover {
  color: var(--text) !important;
}
.dropdown-col a::after {
  display: none !important;
}

/* Mobile services list */
.mobile-menu-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.mobile-services-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.mobile-services-list a {
  font-size: 1rem !important;
  font-weight: 500 !important;
  color: var(--muted) !important;
}
.mobile-services-list a:hover {
  color: var(--sky) !important;
}

@media (max-width: 768px) {
  .nav-dropdown-menu {
    display: none !important;
  }
}

/* ============================================================
   HERO
============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 40px 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -5%, rgba(14,165,233,.18) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 85% 85%, rgba(34,211,238,.09) 0%, transparent 60%);
}
/* Floating orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .1;
  will-change: transform;
  animation: floatOrb var(--dur, 22s) var(--delay, 0s) ease-in-out infinite alternate;
}
.orb-1 { width:600px; height:600px; background:var(--sky);  top:-180px;  left:-160px; --dur:28s; --delay:0s;   }
.orb-2 { width:450px; height:450px; background:var(--cyan); bottom:-80px; right:-120px; --dur:22s; --delay:-7s;  }
.orb-3 { width:320px; height:320px; background:var(--mint); top:38%;  left:62%;     --dur:19s; --delay:-12s; }
@keyframes floatOrb {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(50px,35px) scale(1.12); }
}

.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(26,46,68,.45) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,46,68,.45) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 20%, transparent 100%);
}

.hero-content { position: relative; z-index: 2; max-width: 920px; }

/* Staggered entrance animations */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(14,165,233,.08);
  border: 1px solid rgba(14,165,233,.22);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: .82rem;
  color: var(--sky);
  font-weight: 500;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp .8s var(--ease-out-quart) .15s forwards;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 8px var(--mint);
  animation: pulse 2s ease-in-out infinite;
}

.hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.9rem, 6.5vw, 5.4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.015em;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp .9s var(--ease-out-quart) .35s forwards;
}
.gradient-text {
  background: linear-gradient(135deg, var(--sky) 0%, var(--cyan) 45%, var(--mint) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: gradShift 5s ease infinite;
}
@keyframes gradShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-sub {
  font-size: 1.18rem;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 48px;
  font-weight: 300;
  line-height: 1.72;
  opacity: 0;
  animation: fadeUp .8s var(--ease-out-quart) .55s forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .8s var(--ease-out-quart) .7s forwards;
}

.btn-primary {
  background: linear-gradient(135deg, var(--sky), var(--cyan));
  color: #000;
  padding: 16px 36px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  box-shadow: 0 0 40px rgba(14,165,233,.25);
  transition: transform .35s var(--ease-spring), box-shadow .3s;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.18), transparent 60%);
  opacity: 0;
  transition: opacity .25s;
}
.btn-primary:hover { transform: translateY(-3px) scale(1.025); box-shadow: 0 14px 50px rgba(14,165,233,.45); }
.btn-primary:hover::before { opacity: 1; }

.btn-ghost {
  border: 1px solid var(--border);
  color: var(--text);
  padding: 16px 36px;
  border-radius: 10px;
  font-weight: 500;
  text-decoration: none;
  font-size: 1rem;
  transition: border-color .25s, color .25s, background .25s, transform .35s var(--ease-spring);
}
.btn-ghost:hover {
  border-color: rgba(14,165,233,.5);
  color: var(--sky);
  background: rgba(14,165,233,.06);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 56px;
  justify-content: center;
  margin-top: 80px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .8s var(--ease-out-quart) .9s forwards;
}
.stat { text-align: center; position: relative; }
.stat + .stat::before {
  content: '';
  position: absolute;
  left: -28px; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 38px;
  background: var(--border);
}
.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--sky), var(--mint));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.stat-label { font-size: .78rem; color: var(--muted); margin-top: 7px; letter-spacing: .02em; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   SCROLL REVEAL
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .75s var(--ease-out-quart), transform .75s var(--ease-out-quart);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .08s; }
.d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; }
.d4 { transition-delay: .32s; }

/* ============================================================
   SECTION BASE
============================================================ */
section { padding: 110px 60px; }
.section-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 22px; height: 1px;
  background: var(--sky);
  flex-shrink: 0;
}
.center .section-label { justify-content: center; }
.center .section-label::before { display: none; }
.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 18px;
}
.section-sub {
  color: var(--muted);
  font-size: 1rem;
  max-width: 560px;
  font-weight: 400;
  line-height: 1.72;
}
.section-header { margin-bottom: 64px; }
.center { text-align: center; }
.center .section-sub { margin: 0 auto; }

/* ============================================================
   PROBLEMS
============================================================ */
.problems { background: var(--card); }
.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 24px;
}
.problem-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  cursor: default;
  transition: border-color .3s, transform .4s var(--ease-spring), box-shadow .3s;
}
.problem-card:hover {
  border-color: rgba(14,165,233,.3);
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0,0,0,.3), 0 0 0 1px rgba(14,165,233,.1);
}
.problem-icon { font-size: 2rem; margin-bottom: 16px; display: block; line-height: 1; }
.problem-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700; font-size: 1rem;
  margin-bottom: 10px; color: #fff;
}
.problem-desc { color: var(--muted); font-size: .88rem; line-height: 1.68; }

/* ============================================================
   SERVICES
============================================================ */
.services-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.tab-btn {
  padding: 10px 20px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: .86rem;
  font-weight: 500;
  transition: all .25s var(--ease-out-quart);
  font-family: 'DM Sans', sans-serif;
}
.tab-btn:hover { background: rgba(14,165,233,.07); border-color: rgba(14,165,233,.3); color: var(--text); }
.tab-btn.active { background: rgba(14,165,233,.12); border-color: var(--sky); color: var(--sky); }

.services-panel {
  display: none;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  animation: fadeUp .4s var(--ease-out-quart) both;
}
.services-panel.active { display: grid; }

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--ease-spring), border-color .3s, box-shadow .3s;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--sky), var(--cyan), var(--mint));
  opacity: 0;
  transition: opacity .3s;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(14,165,233,.25);
  box-shadow: 0 24px 64px rgba(0,0,0,.3);
}
.service-card:hover::before { opacity: 1; }
.service-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700; font-size: 1rem;
  margin-bottom: 10px; color: #fff;
}
.service-desc { color: var(--muted); font-size: .86rem; margin-bottom: 18px; line-height: 1.68; }
.service-price {
  font-size: .8rem; color: var(--sky); font-weight: 600;
  padding: 5px 12px;
  background: rgba(14,165,233,.1);
  border: 1px solid rgba(14,165,233,.15);
  border-radius: 6px;
  display: inline-block;
}
.service-link {
  display: inline-block;
  margin-left: 12px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--cyan);
  text-decoration: none;
  transition: color .2s, transform .2s;
}
.service-link:hover {
  color: var(--text);
  transform: translateX(3px);
}
.service-card:has(.service-link) {
  cursor: pointer;
}

/* ============================================================
   HOW IT WORKS
============================================================ */
.how { background: var(--card); }
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 27px; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border) 15%, var(--border) 85%, transparent);
}
.step { text-align: center; padding: 0 16px; }
.step-num {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--bg);
  border: 1px solid rgba(14,165,233,.3);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  font-family: 'Syne', sans-serif;
  font-weight: 800; font-size: 1.1rem;
  color: var(--sky);
  position: relative; z-index: 1;
  transition: background .3s, border-color .3s, box-shadow .35s, transform .4s var(--ease-spring);
}
.step:hover .step-num {
  background: rgba(14,165,233,.1);
  border-color: var(--sky);
  box-shadow: 0 0 32px rgba(14,165,233,.25);
  transform: scale(1.12) translateY(-3px);
}
.step-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700; font-size: .95rem;
  margin-bottom: 10px; color: #fff;
}
.step-desc { color: var(--muted); font-size: .84rem; line-height: 1.68; }

/* ============================================================
   PRICING
============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1020px;
  margin: 0 auto;
  align-items: start;
}
.price-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  transition: transform .4s var(--ease-spring), box-shadow .3s;
}
.price-card:hover { transform: translateY(-8px); box-shadow: 0 32px 80px rgba(0,0,0,.35); }
.price-card.featured {
  border-color: rgba(14,165,233,.45);
  background: linear-gradient(145deg, rgba(14,165,233,.07), rgba(34,211,238,.03));
  box-shadow: 0 0 0 1px rgba(14,165,233,.15), 0 20px 60px rgba(14,165,233,.1);
}
.price-card.featured:hover {
  box-shadow: 0 0 0 1px rgba(14,165,233,.3), 0 40px 80px rgba(14,165,233,.15);
  transform: translateY(-8px) scale(1.01);
}
.featured-badge {
  position: absolute; top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--sky), var(--cyan));
  color: #000; padding: 5px 18px;
  border-radius: 100px; font-size: .75rem; font-weight: 700;
  white-space: nowrap;
}
.price-tier { font-family:'Syne',sans-serif; font-weight:800; font-size:1.1rem; color:#fff; margin-bottom:8px; }
.price-amount {
  font-family: 'Syne', sans-serif;
  font-size: 2.7rem; font-weight: 800; color: var(--sky);
  margin: 20px 0 4px; line-height: 1;
}
.price-period { font-size: .82rem; color: var(--muted); margin-bottom: 30px; }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 13px; margin-bottom: 36px; }
.price-features li {
  font-size: .88rem; color: var(--muted);
  display: flex; gap: 10px; align-items: flex-start;
}
.price-features li::before { content: '✓'; color: var(--mint); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.btn-outline {
  display: block; text-align: center;
  border: 1px solid var(--border); color: var(--text);
  padding: 14px; border-radius: 10px;
  text-decoration: none; font-weight: 600; font-size: .9rem;
  transition: all .25s var(--ease-out-quart);
}
.btn-outline:hover { border-color: var(--sky); color: var(--sky); background: rgba(14,165,233,.06); transform: translateY(-1px); }
.btn-filled {
  display: block; text-align: center;
  background: linear-gradient(135deg, var(--sky), var(--cyan));
  color: #000; padding: 14px; border-radius: 10px;
  text-decoration: none; font-weight: 700; font-size: .9rem;
  transition: opacity .2s, transform .35s var(--ease-spring), box-shadow .3s;
}
.btn-filled:hover { opacity: .9; transform: translateY(-2px); box-shadow: 0 10px 32px rgba(14,165,233,.4); }

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials { background: var(--card); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 22px; padding: 34px;
  transition: transform .4s var(--ease-spring), border-color .3s, box-shadow .3s;
}
.testimonial:hover {
  transform: translateY(-7px);
  border-color: rgba(14,165,233,.22);
  box-shadow: 0 24px 64px rgba(0,0,0,.3);
}
.testimonial-stars { font-size: .88rem; margin-bottom: 18px; letter-spacing: 3px; color: #FBBF24; }
.testimonial-quote {
  color: var(--text); font-size: .93rem; line-height: 1.78;
  margin-bottom: 26px; font-style: italic; opacity: .85;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: .95rem; color: #fff; flex-shrink: 0;
}
.author-info .name { font-weight: 700; font-size: .88rem; color: #fff; }
.author-info .role { font-size: .78rem; color: var(--muted); margin-top: 2px; }

/* ============================================================
   CONTACT FORM
============================================================ */
.contact { background: var(--bg); position: relative; overflow: hidden; }
.contact-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(14,165,233,.07) 0%, transparent 70%);
}
.contact-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1100px; margin: 0 auto;
  align-items: center;
}
.contact-info .section-sub { margin-bottom: 40px; }
.contact-benefit {
  display: flex; align-items: flex-start;
  gap: 16px; margin-bottom: 24px;
}
.benefit-icon {
  width: 42px; height: 42px; border-radius: 12px;
  background: rgba(14,165,233,.08);
  border: 1px solid rgba(14,165,233,.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.benefit-text strong { display: block; font-weight: 600; font-size: .92rem; color: #fff; margin-bottom: 2px; }
.benefit-text span { font-size: .84rem; color: var(--muted); }

.contact-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 42px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 0; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: .76rem; font-weight: 600;
  color: var(--muted); margin-bottom: 8px;
  letter-spacing: .06em; text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(6,14,26,.7);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: .92rem;
  outline: none;
  transition: border-color .25s, box-shadow .25s, background .25s;
  appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A92AA' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-color: rgba(6,14,26,.7);
  padding-right: 40px;
  cursor: pointer;
}
.form-group select option { background: #0D1B2E; color: var(--text); }
.form-group textarea { resize: vertical; min-height: 110px; line-height: 1.6; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(14,165,233,.5);
  background: rgba(14,165,233,.03);
  box-shadow: 0 0 0 3px rgba(14,165,233,.08);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(122,146,170,.45); }

.form-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--sky), var(--cyan));
  color: #000; border: none;
  padding: 16px; border-radius: 10px;
  font-weight: 700; font-size: 1rem;
  cursor: pointer; font-family: 'DM Sans', sans-serif;
  margin-top: 8px;
  transition: transform .35s var(--ease-spring), box-shadow .3s, opacity .2s;
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.form-submit:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 12px 42px rgba(14,165,233,.42); }
.form-submit:disabled { opacity: .65; cursor: not-allowed; }
.form-submit .spinner {
  display: none;
  width: 18px; height: 18px;
  border: 2px solid rgba(0,0,0,.3);
  border-top-color: #000;
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
.form-submit.loading .btn-label { display: none; }
.form-submit.loading .spinner { display: block; }
@keyframes spin { to { transform: rotate(360deg); } }
.form-note {
  font-size: .74rem; color: var(--muted);
  text-align: center; margin-top: 14px; opacity: .7;
}

/* ============================================================
   FOOTER
============================================================ */
footer {
  padding: 72px 60px 52px;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800; font-size: 1.2rem; color: #fff;
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
}
.footer-logo .nav-dot { width: 7px; height: 7px; }
.footer-logo span {
  background: linear-gradient(135deg, var(--sky), var(--cyan));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.footer-brand p { color: var(--muted); font-size: .85rem; max-width: 260px; line-height: 1.72; margin-bottom: 22px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social {
  width: 36px; height: 36px; border-radius: 8px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); text-decoration: none;
  font-size: .72rem; font-weight: 700;
  transition: border-color .25s, background .25s, color .25s, transform .35s var(--ease-spring);
}
.footer-social:hover { border-color: rgba(14,165,233,.4); background: rgba(14,165,233,.08); color: var(--sky); transform: translateY(-3px); }
.footer-col h4 {
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: .88rem; color: #fff;
  margin-bottom: 18px; letter-spacing: .04em;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col ul li a {
  color: var(--muted); text-decoration: none; font-size: .84rem;
  transition: color .2s, padding-left .25s var(--ease-out-quart);
  display: inline-block;
}
.footer-col ul li a:hover { color: var(--sky); padding-left: 5px; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 60px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { color: var(--muted); font-size: .82rem; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1100px) {
  .steps { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .steps::before { display: none; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-info { text-align: center; }
  .contact-info .section-label { justify-content: center; }
  .contact-info .section-label::before { display: none; }
  .contact-benefit { max-width: 480px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 768px) {
  /* Nav */
  nav#navbar { padding: 16px 24px; }
  nav#navbar.scrolled { padding: 12px 24px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  /* Body bottom padding — keeps content above the fixed mobile CTA */
  body { padding-bottom: 72px; }

  /* Sections */
  section { padding: 72px 20px; }

  /* Hero — override its own padding for mobile */
  .hero { padding: 100px 20px 56px; }
  .hero-sub { font-size: 1rem; margin-bottom: 36px; }
  .hero-badge { font-size: .78rem; padding: 7px 14px; }
  .hero-stats { gap: 24px; margin-top: 56px; }

  /* Stats separator */
  .stat + .stat::before { display: none; }

  /* Services tabs */
  .services-tabs { gap: 8px; }
  .tab-btn { padding: 8px 13px; font-size: .8rem; }

  /* Steps */
  .steps { grid-template-columns: 1fr 1fr; gap: 28px; }

  /* Form */
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 26px 20px; }

  /* Footer */
  footer { grid-template-columns: 1fr 1fr; padding: 48px 20px 40px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { padding: 20px 20px 28px; flex-direction: column; gap: 8px; text-align: center; }

  /* Logo strip fade — narrower on mobile */
  .logos-track-wrap::before,
  .logos-track-wrap::after { width: 48px; }

  /* ROI panel */
  .roi-form-panel { padding: 28px 20px; }

  /* FAQ */
  .faq-q { font-size: .88rem; padding: 18px 20px; }
  .faq-a-inner { padding: 16px 20px 20px; }
}

@media (max-width: 480px) {
  /* Body */
  body { padding-bottom: 72px; }

  /* Hero */
  .hero { padding: 96px 16px 48px; }
  .hero-title { font-size: clamp(2.2rem, 10vw, 2.9rem); }
  .hero-sub { font-size: .95rem; }
  .hero-stats { gap: 18px; flex-wrap: wrap; justify-content: center; }
  .stat { min-width: 120px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions a { width: 100%; max-width: 320px; text-align: center; }

  /* Steps */
  .steps { grid-template-columns: 1fr; }

  /* Footer */
  footer { grid-template-columns: 1fr; }

  /* Compare table: allow horizontal scroll on tiny screens */
  .compare-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .compare-head,
  .compare-row { min-width: 520px; }

  /* Section headings */
  .section-title { font-size: clamp(1.5rem, 7vw, 1.9rem); }

  /* ROI */
  .roi-big-num { font-size: 2.4rem; }

  /* Cookie banner */
  #cookieBanner { bottom: 84px; }
}

/* ============================================================
   LOGO / TRUST STRIP
============================================================ */
.logos-section {
  background: var(--card);
  padding: 40px 60px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.logos-label {
  text-align: center;
  font-size: .72rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 28px;
}
.logos-track-wrap {
  overflow: hidden; position: relative;
}
.logos-track-wrap::before,
.logos-track-wrap::after {
  content: '';
  position: absolute; top: 0; bottom: 0; width: 100px; z-index: 2;
}
.logos-track-wrap::before { left: 0; background: linear-gradient(90deg, var(--card), transparent); }
.logos-track-wrap::after  { right: 0; background: linear-gradient(-90deg, var(--card), transparent); }
.logos-track {
  display: flex; width: max-content;
  animation: logoScroll 30s linear infinite;
}
.logos-track:hover { animation-play-state: paused; }
.logo-item {
  display: flex; align-items: center; gap: 8px;
  padding: 0 40px;
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: .92rem; color: var(--muted);
  white-space: nowrap;
  transition: color .2s; cursor: default;
}
.logo-item:hover { color: var(--text); }
.logo-sep { color: var(--border); }
@keyframes logoScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.tech-stack-row {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center; margin-top: 28px;
}
.tech-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 100px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.02);
  color: var(--muted); font-size: .8rem; font-weight: 500;
  transition: border-color .25s, color .25s, background .25s;
  cursor: default;
}
.tech-badge:hover {
  border-color: rgba(14,165,233,.3);
  color: var(--text);
  background: rgba(14,165,233,.05);
}
.tech-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--sky); flex-shrink: 0; }

/* ============================================================
   ROI CALCULATOR
============================================================ */
.roi { background: var(--bg); }
.roi-inner {
  max-width: 980px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.roi-form-panel {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px; padding: 40px;
}
.roi-field { margin-bottom: 30px; }
.roi-field:last-child { margin-bottom: 0; }
.roi-field-label {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: .74rem; font-weight: 600; color: var(--muted);
  margin-bottom: 12px; letter-spacing: .06em; text-transform: uppercase;
}
.roi-field-val {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 1.05rem; color: var(--sky);
  text-transform: none; letter-spacing: 0;
}
.roi-slider {
  width: 100%; -webkit-appearance: none; appearance: none;
  height: 4px; border-radius: 4px;
  outline: none; cursor: pointer;
  background: linear-gradient(90deg, var(--sky) var(--pct, 50%), var(--border) var(--pct, 50%));
}
.roi-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg, var(--sky), var(--cyan));
  cursor: pointer;
  box-shadow: 0 0 14px rgba(14,165,233,.45);
  transition: transform .2s var(--ease-spring), box-shadow .2s;
}
.roi-slider::-webkit-slider-thumb:hover { transform: scale(1.2); box-shadow: 0 0 22px rgba(14,165,233,.65); }
.roi-slider::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%; border: none;
  background: linear-gradient(135deg, var(--sky), var(--cyan));
  cursor: pointer;
}

.roi-headline {
  font-size: .72rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 10px;
}
.roi-big-num {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: clamp(2.6rem, 5vw, 4rem);
  background: linear-gradient(135deg, var(--sky), var(--mint));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1; margin-bottom: 6px;
  transition: all .3s;
}
.roi-sub-label { font-size: .88rem; color: var(--muted); margin-bottom: 36px; }
.roi-breakdown { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.roi-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 18px; border-radius: 12px;
  background: var(--card); border: 1px solid var(--border);
  font-size: .88rem;
}
.roi-row-label { color: var(--muted); }
.roi-row-val { font-weight: 700; color: #fff; font-family: 'Syne', sans-serif; }
.roi-row-val.green { color: var(--mint); }
.roi-row-val.red   { color: #F87171; }

/* ============================================================
   COMPARISON TABLE
============================================================ */
.compare { background: var(--card); }
.compare-wrap {
  max-width: 860px; margin: 0 auto;
  border: 1px solid var(--border); border-radius: 20px;
  overflow: hidden;
}
.compare-head {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  background: rgba(14,165,233,.05);
  border-bottom: 1px solid var(--border);
}
.ch-cell {
  padding: 18px 24px;
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: .9rem; color: #fff;
}
.ch-cell.hl {
  background: rgba(14,165,233,.1); color: var(--sky);
  border-left: 1px solid rgba(14,165,233,.2);
  border-right: 1px solid rgba(14,165,233,.2);
  text-align: center;
}
.compare-row {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  border-bottom: 1px solid var(--border);
  transition: background .2s;
}
.compare-row:last-child { border-bottom: none; }
.compare-row:hover { background: rgba(255,255,255,.02); }
.cc {
  padding: 16px 24px;
  font-size: .88rem; color: var(--muted);
  display: flex; align-items: center;
}
.cc.feature { color: var(--text); font-weight: 500; }
.cc.hl {
  background: rgba(14,165,233,.05);
  border-left: 1px solid rgba(14,165,233,.1);
  border-right: 1px solid rgba(14,165,233,.1);
  justify-content: center; font-weight: 600; color: var(--text);
}
.tick { color: var(--mint); margin-right: 4px; }
.cross { color: #F87171; margin-right: 4px; }

/* ============================================================
   FAQ ACCORDION
============================================================ */
.faq { background: var(--bg); }
.faq-inner { max-width: 760px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: 16px; margin-bottom: 10px;
  overflow: hidden;
  transition: border-color .3s;
}
.faq-item.open { border-color: rgba(14,165,233,.35); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; cursor: pointer;
  font-weight: 600; font-size: .95rem; color: var(--text);
  user-select: none; gap: 16px;
  background: var(--card);
  transition: background .2s;
}
.faq-q:hover { background: rgba(14,165,233,.04); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 8px; flex-shrink: 0;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 1.3rem; line-height: 1;
  transition: background .25s, border-color .25s, color .25s, transform .4s var(--ease-spring);
}
.faq-item.open .faq-icon {
  background: rgba(14,165,233,.1); border-color: var(--sky);
  color: var(--sky); transform: rotate(45deg);
}
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .45s var(--ease-out-quart);
  background: var(--card);
}
.faq-item.open .faq-a { max-height: 500px; }
.faq-a-inner {
  padding: 18px 24px 22px;
  color: var(--muted); font-size: .9rem; line-height: 1.75;
  border-top: 1px solid var(--border);
}

/* ============================================================
   STICKY CTA BAR
============================================================ */
#stickyBar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: rgba(6,14,26,.94);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 14px 60px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  transform: translateY(100%);
  transition: transform .5s var(--ease-spring);
}
#stickyBar.visible { transform: translateY(0); }
#stickyBar.hidden  { display: none; }
.sticky-text { font-size: .92rem; color: var(--text); }
.sticky-text strong { color: var(--sky); }
.sticky-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.sticky-cta {
  background: linear-gradient(135deg, var(--sky), var(--cyan));
  color: #000; padding: 10px 22px; border-radius: 8px;
  font-weight: 700; font-size: .9rem; text-decoration: none;
  transition: transform .3s var(--ease-spring), box-shadow .3s;
}
.sticky-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(14,165,233,.4); }
.sticky-close {
  width: 32px; height: 32px; border-radius: 8px;
  border: 1px solid var(--border); background: transparent;
  color: var(--muted); cursor: pointer; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s;
}
.sticky-close:hover { background: rgba(255,255,255,.06); color: var(--text); }

/* ============================================================
   BACK TO TOP
============================================================ */
#backTop {
  position: fixed; bottom: 76px; right: 28px; z-index: 89;
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--card2); border: 1px solid var(--border);
  color: var(--muted); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  opacity: 0; pointer-events: none;
  transform: translateY(14px);
  transition: opacity .3s, transform .4s var(--ease-spring), border-color .2s, color .2s, background .2s;
}
#backTop.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
#backTop:hover { border-color: rgba(14,165,233,.4); color: var(--sky); background: rgba(14,165,233,.08); }

/* ============================================================
   MOBILE STICKY CTA
============================================================ */
#mobileCta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 91;
  padding: 12px 20px 16px;
  background: rgba(6,14,26,.96);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
}
#mobileCta a {
  display: block; text-align: center;
  background: linear-gradient(135deg, var(--sky), var(--cyan));
  color: #000; padding: 14px; border-radius: 10px;
  font-weight: 700; font-size: .96rem; text-decoration: none;
  transition: opacity .2s;
}
#mobileCta a:active { opacity: .85; }

/* ============================================================
   COOKIE BANNER
============================================================ */
#cookieBanner {
  position: fixed; bottom: 24px; left: 24px; z-index: 200;
  background: var(--card2); border: 1px solid var(--border);
  border-radius: 18px; padding: 22px 24px;
  max-width: 380px;
  box-shadow: 0 20px 60px rgba(0,0,0,.45);
  transform: translateY(130px); opacity: 0;
  transition: transform .55s var(--ease-spring), opacity .4s;
  pointer-events: none;
}
#cookieBanner.show { transform: translateY(0); opacity: 1; pointer-events: auto; }
.cookie-title {
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: .92rem; color: #fff;
  margin-bottom: 8px;
}
.cookie-text { font-size: .82rem; color: var(--muted); line-height: 1.65; margin-bottom: 18px; }
.cookie-text a { color: var(--sky); text-decoration: none; }
.cookie-btns { display: flex; gap: 10px; }
.cookie-accept {
  flex: 1; background: linear-gradient(135deg, var(--sky), var(--cyan));
  color: #000; border: none; padding: 10px;
  border-radius: 8px; font-weight: 700; font-size: .84rem;
  cursor: pointer; font-family: 'DM Sans', sans-serif;
  transition: opacity .2s;
}
.cookie-accept:hover { opacity: .9; }
.cookie-decline {
  border: 1px solid var(--border); background: transparent;
  color: var(--muted); padding: 10px 16px;
  border-radius: 8px; font-size: .84rem;
  cursor: pointer; font-family: 'DM Sans', sans-serif;
  transition: border-color .2s, color .2s;
}
.cookie-decline:hover { border-color: rgba(122,146,170,.4); color: var(--text); }

/* ============================================================
   NEW RESPONSIVE RULES
============================================================ */
@media (max-width: 900px) {
  .roi-inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  #stickyBar { display: none !important; }
  #mobileCta { display: block; }
  #backTop { bottom: 80px; right: 20px; }
  .logos-section { padding: 28px 24px; }
  .compare-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .compare-head, .compare-row {
    grid-template-columns: 1.4fr 1fr 1fr;
    min-width: 620px;
  }
  .cc { padding: 14px 14px; font-size: .82rem; }
  .ch-cell { padding: 16px 14px; font-size: .82rem; }
  #cookieBanner { left: 16px; right: 16px; max-width: none; bottom: 80px; }

  .mobile-menu { padding: 96px 24px 32px; justify-content: flex-start; gap: 24px; overflow-y: auto; }
  .mobile-menu a { font-size: 1.6rem; line-height: 1.2; text-align: center; }

  #toast {
    left: 16px;
    right: 16px;
    bottom: 88px;
    max-width: none;
    padding: 14px 16px;
    font-size: .85rem;
  }

  .services-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
    margin-bottom: 24px;
  }
  .tab-btn { white-space: nowrap; }

  .problems-grid,
  .services-panel,
  .pricing-grid,
  .testimonials-grid { grid-template-columns: 1fr; }

  .problem-card,
  .service-card,
  .price-card,
  .testimonial { padding: 24px 20px; }

  .hero-actions { width: 100%; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost {
    width: 100%;
    max-width: 340px;
    padding: 14px 18px;
    text-align: center;
  }

  .roi-row {
    font-size: .82rem;
    padding: 12px 14px;
    gap: 12px;
  }
}

@media (max-width: 560px) {
  .nav-logo { font-size: 1.05rem; }
  .mobile-menu a { font-size: 1.45rem; }
  .hero-stats {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 44px;
  }
  .stat { min-width: 0; }
  .stat-num { font-size: 1.9rem; }
  .cookie-btns { flex-direction: column; }
}
