/* ============================================================
   StartMyCo — styles.css
   Mobile-first, responsive — no build step required
   ============================================================ */

/* ── Reset & base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #0f2447;
  --primary:     #1a3c6e;
  --primary-mid: #2563eb;
  --accent:      #f97316;
  --accent-drk:  #ea6c0a;
  --text:        #1e293b;
  --muted:       #64748b;
  --bg:          #ffffff;
  --bg-alt:      #f8fafc;
  --bg-blue:     #eff6ff;
  --border:      #e2e8f0;
  --success:     #16a34a;
  --danger:      #dc2626;

  --sh-sm:  0 1px 4px rgba(0,0,0,.07);
  --sh:     0 4px 18px rgba(0,0,0,.09);
  --sh-lg:  0 12px 40px rgba(0,0,0,.13);

  --r:   12px;
  --r-lg: 20px;
  --ease: .2s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font-family: inherit; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── Container ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Section shared ───────────────────────────────────────── */
.section { padding: 96px 0; }

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  background: var(--bg-blue);
  color: var(--primary-mid);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.section-title {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: 9px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--ease);
  white-space: nowrap;
  line-height: 1;
}
.btn-lg { padding: 15px 30px; font-size: 15px; border-radius: 11px; }

.btn-primary {
  background: var(--primary-mid);
  color: #fff;
  border-color: var(--primary-mid);
}
.btn-primary:hover {
  background: #1d4ed8;
  border-color: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,99,235,.35);
}

.btn-accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-accent:hover {
  background: var(--accent-drk);
  border-color: var(--accent-drk);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249,115,22,.38);
}

.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,.9);
  border-color: rgba(255,255,255,.45);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.7);
  color: #fff;
}

/* ── Navbar ───────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--ease);
}
.navbar.scrolled { box-shadow: var(--sh); }

.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 70px;
}

.logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
}
.logo-bolt { width: 20px; height: 20px; color: var(--accent); }
.logo-accent { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color var(--ease);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 100%;
  height: 2px;
  background: var(--primary-mid);
  transition: right var(--ease);
  border-radius: 2px;
}
.nav-links a:hover,
.nav-links a.active { color: var(--primary); }
.nav-links a:hover::after,
.nav-links a.active::after { right: 0; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  white-space: nowrap;
}
.nav-phone svg { width: 15px; height: 15px; flex-shrink: 0; }

.nav-whatsapp {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #16a34a;
  white-space: nowrap;
  transition: color var(--ease);
}
.nav-whatsapp svg { width: 17px; height: 17px; flex-shrink: 0; }
.nav-whatsapp:hover { color: #15803d; }

.mobile-whatsapp {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #16a34a !important;
  padding: 4px 0;
}
.mobile-whatsapp svg { flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all .28s ease;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile menu */
.mobile-menu {
  display: none;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 20px;
}
.mobile-menu.open { display: block; }
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mobile-menu a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  padding: 4px 0;
}
.mobile-phone {
  color: var(--primary) !important;
  font-weight: 600 !important;
}
.mobile-menu .btn { width: 100%; margin-top: 6px; }


/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(140deg, var(--navy) 0%, var(--primary) 55%, #1e4d8c 100%);
  padding: 88px 0 96px;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(249,115,22,.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(37,99,235,.12) 0%, transparent 50%);
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Hero content */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.88);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 26px;
}

.hero-headline {
  font-size: clamp(28px, 4.5vw, 50px);
  font-weight: 800;
  color: #fff;
  line-height: 1.14;
  margin-bottom: 20px;
  letter-spacing: -.5px;
}
.text-accent { color: var(--accent); }

.hero-subtext {
  font-size: 17px;
  color: rgba(255,255,255,.78);
  line-height: 1.75;
  margin-bottom: 38px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

/* Trust badges */
.trust-badges {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.trust-badge { text-align: center; }
.trust-stars {
  color: #fbbf24;
  font-size: 17px;
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 4px;
}
.trust-num {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}
.trust-label {
  font-size: 11px;
  color: rgba(255,255,255,.55);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .6px;
}
.trust-sep {
  width: 1px; height: 34px;
  background: rgba(255,255,255,.18);
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 360px;
}

.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.07);
}
.hero-ring-outer { width: 380px; height: 380px; }
.hero-ring-inner { width: 260px; height: 260px; border-color: rgba(255,255,255,.11); }

.hero-center-card {
  background: rgba(255,255,255,.96);
  border-radius: 18px;
  padding: 22px 26px;
  box-shadow: var(--sh-lg);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  max-width: 300px;
  width: 100%;
  position: relative;
  z-index: 2;
}
.hcc-icon { font-size: 32px; flex-shrink: 0; margin-top: 2px; }
.hcc-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}
.hcc-steps {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}
.hcc-step {
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 50px;
  background: var(--bg-alt);
  color: var(--muted);
}
.hcc-step.done { background: #dcfce7; color: var(--success); }
.hcc-step.active { background: var(--accent); color: #fff; }
.hcc-arrow { font-size: 10px; color: var(--muted); }

.hero-notif {
  position: absolute;
  background: rgba(255,255,255,.96);
  border-radius: 13px;
  padding: 13px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--sh-lg);
  min-width: 230px;
  z-index: 3;
}
.hero-notif-1 { top: 18px; right: -18px; }
.hero-notif-2 { bottom: 18px; left: -18px; }

.notif-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--primary-mid);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(37,99,235,.2);
}
.notif-dot-green {
  background: var(--success);
  box-shadow: 0 0 0 3px rgba(22,163,74,.2);
}
.notif-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
}
.notif-sub {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}


/* ── Services ─────────────────────────────────────────────── */
.services { background: var(--bg); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
  border-color: #c7d7fd;
}

.svc-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.svc-icon svg { width: 26px; height: 26px; }

.svc-blue   { background:#eff6ff; color:#2563eb; }
.svc-indigo { background:#eef2ff; color:#4f46e5; }
.svc-cyan   { background:#ecfeff; color:#0891b2; }
.svc-green  { background:#f0fdf4; color:#16a34a; }
.svc-orange { background:#fff7ed; color:#ea580c; }
.svc-purple { background:#faf5ff; color:#9333ea; }

.svc-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
  margin-bottom: 10px;
}
.svc-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 20px;
}
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-mid);
  transition: gap var(--ease), color var(--ease);
}
.svc-link:hover { gap: 9px; color: var(--accent); }


/* ── How It Works ─────────────────────────────────────────── */
.how-it-works { background: var(--bg-alt); }

.steps-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

.steps-track {
  position: absolute;
  top: 35px;
  left: calc(12.5% + 10px);
  right: calc(12.5% + 10px);
  height: 2px;
  background: linear-gradient(90deg, var(--primary-mid), var(--accent));
  z-index: 0;
  border-radius: 2px;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 6px;
}

.step-bubble {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 8px 24px rgba(37,99,235,.3);
  transition: transform .3s ease;
}
.step-bubble:hover { transform: scale(1.07); }
.step-bubble svg { width: 28px; height: 28px; stroke: #fff; }

.step-bubble-accent {
  background: linear-gradient(135deg, var(--accent-drk), var(--accent));
  box-shadow: 0 8px 24px rgba(249,115,22,.3);
}

.step-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.step-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}
.step-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
}


/* ── Why Choose Us ────────────────────────────────────────── */
.why-us { background: var(--bg); }

.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 820px;
  margin: 0 auto;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  border: 1px solid var(--border);
}

.cmp-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 22px 30px;
  font-size: 17px;
  font-weight: 800;
  color: #fff;
}
.cmp-head-us     { background: var(--primary); }
.cmp-head-others { background: var(--muted); }

.cmp-bolt { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }

.cmp-us .cmp-list     { background: #f0fdf4; }
.cmp-others .cmp-list { background: #fef2f2; }

.cmp-list { padding: 10px 0; }

.cmp-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 13px 28px;
  font-size: 14px;
  color: var(--text);
  border-bottom: 1px solid rgba(0,0,0,.05);
  line-height: 1.5;
}
.cmp-list li:last-child { border-bottom: none; }

.cmp-check {
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1.5;
}
.cmp-yes { color: var(--success); }
.cmp-no  { color: var(--danger); }


/* ── Testimonials ─────────────────────────────────────────── */
.testimonials { background: var(--bg-alt); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.testi-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 32px 28px;
  box-shadow: var(--sh);
  border: 1px solid var(--border);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
}
.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-lg);
}

.testi-stars {
  color: #f59e0b;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 16px;
  line-height: 1;
}

.testi-text {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
  flex: 1;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 13px;
}
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.testi-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
}
.testi-role {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}


/* ── CTA Banner ───────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(140deg, var(--navy) 0%, var(--primary) 55%, #1e4d8c 100%);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 90%, rgba(249,115,22,.1) 0%, transparent 50%),
    radial-gradient(circle at 90% 10%, rgba(37,99,235,.1) 0%, transparent 50%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}
.cta-title {
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 14px;
}
.cta-sub {
  font-size: 17px;
  color: rgba(255,255,255,.75);
  line-height: 1.75;
  margin-bottom: 40px;
}

/* Contact form */
.cta-form { margin-bottom: 18px; }

.cf-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.cf-field {
  position: relative;
  flex: 1;
  min-width: 180px;
  max-width: 240px;
}

.cta-form input,
.cta-form select {
  width: 100%;
  padding: 15px 18px;
  border-radius: 10px;
  border: 2px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.09);
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: border-color var(--ease);
  -webkit-appearance: none;
}
.cta-form input::placeholder { color: rgba(255,255,255,.5); }
.cta-form select { color: rgba(255,255,255,.75); cursor: pointer; }
.cta-form select option { background: var(--primary); color: #fff; }

.cta-form input:focus,
.cta-form select:focus { border-color: var(--accent); }
.cta-form input.field-error,
.cta-form select.field-error { border-color: #f87171; }

.cf-error {
  position: absolute;
  bottom: -19px;
  left: 2px;
  font-size: 11px;
  color: #fca5a5;
  font-weight: 500;
  white-space: nowrap;
}

.cta-note {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  margin-top: 20px;
}

.form-success {
  margin-top: 22px;
  padding: 16px 26px;
  background: rgba(22,163,74,.15);
  border: 1px solid rgba(22,163,74,.4);
  border-radius: 12px;
  color: #86efac;
  font-size: 15px;
}


/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: #08192e;
  color: rgba(255,255,255,.65);
  padding: 72px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-logo {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.footer-logo .logo-bolt { width: 19px; height: 19px; }

.footer-tagline {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,.5);
  margin-bottom: 26px;
  max-width: 270px;
}

.footer-social {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.55);
  transition: all var(--ease);
}
.social-btn svg { width: 15px; height: 15px; }
.social-btn:hover {
  background: var(--primary-mid);
  border-color: var(--primary-mid);
  color: #fff;
  transform: translateY(-2px);
}

.footer-heading {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  transition: color var(--ease);
}
.footer-links a:hover { color: #fff; }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(255,255,255,.5);
  line-height: 1.5;
}
.footer-contact svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-copy  { font-size: 13px; color: rgba(255,255,255,.35); }
.footer-disc  { font-size: 12px; color: rgba(255,255,255,.25); line-height: 1.6; }


/* ── Scroll-reveal ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: none;
}


/* ── Responsive — 1024px ──────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-visual { display: none; }
  .hero-subtext { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .trust-badges { justify-content: center; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }

  .steps-wrap { grid-template-columns: repeat(2, 1fr); row-gap: 48px; }
  .steps-track { display: none; }

  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid .testi-card:nth-child(3) { grid-column: span 2; max-width: 500px; margin: 0 auto; width: 100%; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* ── Responsive — 768px ───────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links,
  .nav-actions { display: none; }
  .hamburger { display: flex; }

  .section { padding: 64px 0; }

  .services-grid { grid-template-columns: 1fr; }

  .steps-wrap { grid-template-columns: 1fr; gap: 36px; }

  .comparison {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .testi-grid { grid-template-columns: 1fr; }
  .testi-grid .testi-card:nth-child(3) { grid-column: auto; max-width: 100%; }

  .cf-row { flex-direction: column; align-items: center; }
  .cf-field { max-width: 100%; min-width: 0; width: 100%; }
  .cf-error { white-space: normal; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-tagline { max-width: 100%; }

  .hero { padding: 64px 0 72px; }
}

/* ── Responsive — 480px ───────────────────────────────────── */
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }

  .trust-sep { display: none; }
  .trust-badges { gap: 14px 20px; }

  .section-header { margin-bottom: 40px; }

  .cmp-list li { padding: 12px 20px; }
  .cmp-head { padding: 18px 20px; }
}
