/* ═══════════════════════════════════════
   ClaimCam — Design System
   ═══════════════════════════════════════ */

:root {
  --blue:        #007AFF;
  --blue-dark:   #0051D5;
  --green:       #34C759;
  --dark:        #0D0D0F;
  --dark-2:      #1C1C1E;
  --dark-3:      #2C2C2E;
  --white:       #FFFFFF;
  --gray-50:     #F5F5F7;
  --gray-100:    #E8E8ED;
  --gray-400:    #98989D;
  --gray-600:    #6E6E73;
  --gray-900:    #1D1D1F;
  --border:      rgba(0,0,0,0.08);
  --border-dark: rgba(255,255,255,0.1);
  --radius-sm:   8px;
  --radius:      14px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --shadow:      0 4px 24px rgba(0,0,0,0.06);
  --shadow-md:   0 8px 40px rgba(0,0,0,0.10);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.16);
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--gray-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── Typography ─── */
h1, h2, h3, h4 {
  font-family: 'Syne', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(42px, 6vw, 76px); }
h2 { font-size: clamp(32px, 4vw, 52px); }
h3 { font-size: clamp(18px, 2.5vw, 24px); font-weight: 700; }

/* ─── Container ─── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Scroll Reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay { transition-delay: 0.15s; }

/* ═══════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px 0;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease), padding 0.3s var(--ease);
}
.nav.scrolled {
  background: rgba(13,13,15,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border-dark);
  padding: 10px 0;
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--white);
  flex-shrink: 0;
}
.nav-logo-img {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  object-fit: cover;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.nav-cta {
  background: var(--blue) !important;
  color: var(--white) !important;
  padding: 8px 16px !important;
  border-radius: 20px !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  margin-left: 6px;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--blue-dark) !important; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--ease) 0.3s;
}

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.hero {
  background: var(--dark);
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(0,122,255,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.dot-green {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--green);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}
.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
}
.hero-sub {
  color: rgba(255,255,255,0.6);
  font-size: 18px;
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 44px;
}
.hero-badge-link img { filter: brightness(1); }
.hero-trial {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}
.hero-stat {
  padding: 0 28px 0 0;
}
.hero-stat:first-child { padding-left: 0; }
.hero-stat strong {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat span {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
  white-space: nowrap;
}
.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.12);
  margin-right: 28px;
}

/* ─── Phone Frame ─── */
.phone-frame {
  width: 300px;
  background: #1a1a1c;
  border-radius: 50px;
  padding: 12px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    0 50px 100px rgba(0,0,0,0.5),
    inset 0 0 0 1.5px rgba(255,255,255,0.04);
  position: relative;
}
.phone-frame img {
  width: 100%;
  border-radius: 40px;
  display: block;
}
.phone-notch {
  width: 90px;
  height: 26px;
  background: #1a1a1c;
  border-radius: 0 0 18px 18px;
  margin: 0 auto 4px;
  position: relative;
  z-index: 2;
}
.phone-frame-light {
  background: #222224;
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.12),
    0 40px 80px rgba(0,0,0,0.22),
    inset 0 0 0 1.5px rgba(255,255,255,0.06);
}

/* ═══════════════════════════════════════
   COMPARISON STRIP
   ═══════════════════════════════════════ */
.comparison {
  padding: 96px 0;
  background: var(--white);
}
.comparison-eyebrow {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 12px;
}
.comparison-headline {
  text-align: center;
  margin-bottom: 56px;
  color: var(--gray-900);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  align-items: center;
  gap: 0;
  max-width: 820px;
  margin: 0 auto;
}
.comp-col {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 32px 32px 36px;
  border: 1.5px solid var(--gray-100);
}
.comp-new {
  background: #F0F8FF;
  border-color: rgba(0,122,255,0.15);
}
.comp-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 12px;
}
.comp-label-bad { background: #FFE5E5; color: #C0392B; }
.comp-label-good { background: #E5F5EC; color: #1A7A3A; }
.comp-time {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 20px;
}
.comp-new .comp-time { color: var(--blue); }
.comp-steps { display: flex; flex-direction: column; gap: 10px; }
.comp-steps li {
  font-size: 15px;
  color: var(--gray-600);
  padding-left: 14px;
  position: relative;
}
.comp-steps li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
  background: var(--gray-400);
  border-radius: 50%;
}
.step-active {
  color: var(--gray-900) !important;
  font-weight: 600;
}
.step-active::before { background: var(--green) !important; }
.step-skip {
  color: var(--gray-400) !important;
  text-decoration: line-through;
  font-size: 13px !important;
}
.step-skip::before { background: var(--gray-100) !important; }
.comp-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}
.comp-arrow svg { width: 28px; height: 28px; }

/* ═══════════════════════════════════════
   SHOWCASE (portrait phone mockups)
   ═══════════════════════════════════════ */
.showcase {
  padding: 96px 0;
  background: var(--gray-50);
}
.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.section-title {
  color: var(--gray-900);
  margin-bottom: 72px;
  max-width: 640px;
}
.showcase-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 72px;
  margin-bottom: 88px;
}
.showcase-row:last-child { margin-bottom: 0; }
.showcase-row-reverse {
  grid-template-columns: auto 1fr;
}
.showcase-row-reverse .showcase-copy { order: 2; }
.showcase-row-reverse .showcase-phone-wrap { order: 1; }
.showcase-step {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.showcase-copy h3 {
  font-size: clamp(26px, 3vw, 38px);
  margin-bottom: 18px;
  color: var(--gray-900);
}
.showcase-copy p {
  color: var(--gray-600);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 460px;
}
.showcase-bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.showcase-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-900);
}
.showcase-bullets li svg {
  width: 8px;
  height: 8px;
  color: var(--green);
  flex-shrink: 0;
}
.showcase-phone-wrap {
  display: flex;
  justify-content: center;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════
   FEATURES
   ═══════════════════════════════════════ */
.features {
  padding: 96px 0;
  background: var(--white);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 0;
}
.feature-card {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 32px 28px 36px;
  border: 1.5px solid var(--gray-100);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
}
.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(0,122,255,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--blue);
}
.feature-icon svg { width: 22px; height: 22px; }
.feature-card h3 {
  font-size: 17px;
  margin-bottom: 10px;
  color: var(--gray-900);
}
.feature-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--gray-600);
  max-width: 280px;
}

/* ═══════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════ */
.hiw {
  padding: 96px 0;
  background: var(--gray-50);
}
.hiw-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.hiw-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hiw-num {
  width: 52px;
  height: 52px;
  background: var(--blue);
  color: var(--white);
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0,122,255,0.3);
}
.hiw-body h3 {
  font-size: 17px;
  margin-bottom: 8px;
  color: var(--gray-900);
}
.hiw-body p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
  max-width: 200px;
  margin: 0 auto;
}
.hiw-connector {
  flex: 0 0 48px;
  height: 2px;
  background: linear-gradient(to right, var(--blue), rgba(0,122,255,0.2));
  margin-top: 26px;
  align-self: flex-start;
}

/* ═══════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════ */
.testimonials {
  padding: 96px 0;
  background: var(--white);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--gray-50);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stars { color: #F5A623; font-size: 16px; letter-spacing: 1px; }
blockquote {
  font-size: 15px;
  line-height: 1.65;
  color: var(--gray-900);
  font-style: italic;
  flex: 1;
}
.testimonial-author { margin-top: auto; }
.testimonial-author strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-900);
}
.testimonial-author span {
  font-size: 13px;
  color: var(--gray-400);
}

/* ═══════════════════════════════════════
   FAQ
   ═══════════════════════════════════════ */
.faq {
  padding: 96px 0;
  background: var(--gray-50);
}
.faq-container {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: start;
}
.faq-container .section-title { margin-bottom: 0; font-size: clamp(28px, 3vw, 40px); }
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1.5px solid var(--gray-100);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item[open] { border-color: var(--blue); }
.faq-item summary {
  padding: 18px 22px;
  font-weight: 600;
  font-size: 15px;
  color: var(--gray-900);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 20px;
  color: var(--blue);
  font-weight: 400;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.2s var(--ease);
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
  padding: 0 22px 18px;
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   PRICING
   ═══════════════════════════════════════ */
.pricing {
  padding: 96px 0;
  background: var(--white);
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 720px;
  margin: 0 auto 24px;
}
.pricing-card {
  background: var(--gray-50);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
}
.pricing-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-600);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.pricing-card-featured {
  background: var(--dark);
  border-color: rgba(255,255,255,0.08);
  position: relative;
}
.pricing-card-featured h3 { color: rgba(255,255,255,0.5); }
.pricing-badge {
  position: absolute;
  top: -1px;
  right: 24px;
  background: var(--blue);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px 5px;
  border-radius: 0 0 10px 10px;
}
.price-display {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 20px;
}
.price-dollar {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--gray-900);
  margin-top: 4px;
}
.pricing-card-featured .price-dollar { color: var(--white); }
.price-amount {
  font-family: 'Syne', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1;
}
.pricing-card-featured .price-amount { color: var(--white); }
.price-period {
  font-size: 16px;
  color: var(--gray-400);
  margin-left: 2px;
}
.pricing-card-featured .price-period { color: rgba(255,255,255,0.4); }
.price-savings {
  font-size: 13px;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 20px;
  margin-top: -10px;
}
.price-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.price-features li {
  font-size: 14px;
  color: var(--gray-600);
  padding-left: 18px;
  position: relative;
}
.price-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}
.pricing-card-featured .price-features li { color: rgba(255,255,255,0.65); }
.pricing-card-featured .price-features li::before { color: var(--green); }
.price-btn {
  display: block;
  text-align: center;
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  transition: background 0.2s, transform 0.15s;
}
.price-btn:hover { transform: translateY(-1px); }
.price-btn-outline {
  background: transparent;
  border: 1.5px solid var(--gray-100);
  color: var(--gray-900);
}
.price-btn-outline:hover { background: var(--white); border-color: var(--blue); color: var(--blue); }
.price-btn-solid {
  background: var(--blue);
  color: var(--white);
  border: none;
}
.price-btn-solid:hover { background: var(--blue-dark); }
.pricing-note {
  text-align: center;
  font-size: 13px;
  color: var(--gray-400);
}

/* ═══════════════════════════════════════
   DOWNLOAD CTA (dark)
   ═══════════════════════════════════════ */
.cta-dark {
  background: var(--dark);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(0,122,255,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner h2 {
  color: var(--white);
  font-size: clamp(32px, 5vw, 56px);
  margin-bottom: 14px;
}
.cta-inner p {
  color: rgba(255,255,255,0.5);
  font-size: 18px;
  margin-bottom: 36px;
}
.cta-badge-link { display: inline-block; }
.cta-fine {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  margin-top: 14px;
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.footer {
  background: #0a0a0c;
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
  margin-top: 8px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 17px;
  color: var(--white);
}
.footer-logo-img {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  object-fit: cover;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col h4 {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  padding: 18px 0;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.2);
}

/* ═══════════════════════════════════════
   LEGAL PAGES (privacy, terms)
   ═══════════════════════════════════════ */
.legal-page {
  padding: 96px 0 80px;
  max-width: 740px;
}
body:has(.nav.scrolled) .legal-page { padding-top: 80px; }
.legal-page h1 {
  font-size: 40px;
  color: var(--gray-900);
  margin-bottom: 8px;
}
.legal-page .last-updated {
  color: var(--gray-400);
  font-size: 14px;
  margin-bottom: 40px;
}
.legal-page h2 {
  font-size: 22px;
  color: var(--gray-900);
  margin: 36px 0 12px;
}
.legal-page h3 {
  font-size: 17px;
  color: var(--gray-900);
  margin: 24px 0 8px;
}
.legal-page p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 12px;
}
.legal-page ul, .legal-page ol {
  margin: 8px 0 16px 20px;
}
.legal-page ul { list-style: disc; }
.legal-page ol { list-style: decimal; }
.legal-page li {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 6px;
}
.legal-page a { color: var(--blue); }
.legal-page a:hover { text-decoration: underline; }

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */

@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .hiw-steps { flex-direction: column; align-items: flex-start; gap: 24px; }
  .hiw-connector { width: 2px; height: 32px; background: linear-gradient(to bottom, var(--blue), rgba(0,122,255,0.2)); margin: 0 0 0 25px; align-self: auto; }
  .hiw-step { flex-direction: row; align-items: flex-start; gap: 18px; text-align: left; }
  .hiw-num { flex-shrink: 0; }
  .hiw-body p { max-width: none; }
  .faq-container { grid-template-columns: 1fr; gap: 32px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .comparison-grid { grid-template-columns: 1fr; gap: 16px; }
  .comp-arrow { transform: rotate(90deg); margin: 0 auto; }
  .showcase-row, .showcase-row-reverse { grid-template-columns: 1fr; justify-items: center; gap: 40px; }
  .showcase-row-reverse .showcase-copy { order: 1; }
  .showcase-row-reverse .showcase-phone-wrap { order: 2; }
  .showcase-copy { text-align: center; }
  .showcase-bullets { align-items: center; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(13,13,15,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    font-size: 20px;
    padding: 12px 24px;
    color: rgba(255,255,255,0.8);
  }
  .nav-cta {
    font-size: 18px !important;
    padding: 12px 32px !important;
    margin-top: 8px;
  }
  .nav-hamburger { display: flex; position: relative; z-index: 100; }
  .hero { padding: 100px 0 64px; min-height: auto; }
  .hero h1 { font-size: 38px; }
  .phone-frame { width: 260px; }
  .hero-stats { flex-wrap: wrap; justify-content: center; gap: 16px 0; }
  .hero-stat { padding: 0 16px; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .hiw-connector { margin: 0 0 0 25px; }
}
