/*
 * IMPACCABLE VPN LANDING STYLES (OVERHAUL V2)
 */

:root {
  /* ============= PALETTE — Clean Orange Pop ============= */
  --bg-main: #F7F2EC;
  --bg-section: #F1E8DF;
  --bg-card: #FFF9F3;
  --white-warm: #FFF9F3;

  --text-primary: #17304A;
  --text-secondary: #637487;

  --accent: #FF6B1A;
  --accent-hover: #F25A00;
  --accent-soft: #FFE1CF;
  --accent-pale: #FFF0E6;

  --border-soft: #E8DDD2;

  /* Semantic Map */
  --color-bg: var(--bg-main);
  --color-surface: var(--bg-card);
  --color-border: var(--border-soft);
  --color-text: var(--text-primary);
  --color-text-muted: var(--text-secondary);

  /* ============= TYPOGRAPHY ============= */
  --font-sans: 'Nunito', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Increased Text Scale */
  --text-xs: 0.875rem;
  --text-sm: 1.05rem;
  --text-base: 1.15rem;
  --text-lg: 1.4rem;
  --text-xl: clamp(1.5rem, 4vw, 2.25rem);
  --text-2xl: clamp(2rem, 5vw, 3.5rem);
  --text-3xl: clamp(3rem, 7vw, 5.5rem); /* Huge hero title */

  /* ============= SPACING ============= */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* ============= MOTION ============= */
  --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-fast: 200ms;
  --duration-normal: 400ms;
}

/* ============= RESET & BASE ============= */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

p {
  max-width: 70ch;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity var(--duration-fast) ease;
}

ul { list-style: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; background: none; border: none; cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 4px;
}

/* ============= LAYOUT ============= */
.container {
  width: 100%;
  max-width: 1200px; /* Strict max width for alignment */
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.section {
  padding: var(--space-24) 0;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-16);
}

.section-eyebrow {
  font-size: var(--text-sm);
  color: var(--primary-500);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-4);
}

.section-title {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-6);
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
}

/* ============= BUTTONS ============= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 1rem 2rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: var(--text-base);
  transition: transform var(--duration-fast) var(--ease-out-expo), background-color var(--duration-fast) var(--ease-out-expo), box-shadow var(--duration-fast) var(--ease-out-expo);
  touch-action: manipulation;
  text-align: center;
}

.btn--primary {
  background-color: var(--accent);
  color: var(--text-primary);
}

.btn--primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 32px rgba(255, 107, 26, 0.28);
}

.btn--outline {
  border: 2px solid var(--color-border);
  color: var(--color-text);
  background: transparent;
}

.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn--lg {
  padding: 1.125rem 2.5rem;
  font-size: var(--text-lg);
}

.btn--xl {
  padding: 1.25rem 3rem;
  font-size: clamp(1.15rem, 3vw, 1.35rem);
}

/* ============= HEADER ============= */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background-color: rgba(247, 242, 236, 0.88);
  backdrop-filter: blur(12px);
  transition: background-color var(--duration-normal) var(--ease-out-expo), border-color var(--duration-normal) var(--ease-out-expo), box-shadow var(--duration-normal) var(--ease-out-expo), transform var(--duration-normal) var(--ease-out-expo);
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  border-bottom-color: rgba(232, 221, 210, 0.6);
  box-shadow: 0 4px 24px rgba(23, 48, 74, 0.04);
}

.header--hidden {
  transform: translateY(-100%);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 120px; /* Keeps the logo big */
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo__img {
  height: clamp(56px, 10vw, 88px);
  width: auto;
  object-fit: contain;
  margin-top: 4px;
}

.header__nav {
  display: none;
}

.header__cta {
  display: none;
}

@media (min-width: 1024px) {
  .header__nav {
    display: flex;
    gap: var(--space-8);
  }
  .header__nav a {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-text-muted);
  }
  .header__nav a:hover {
    color: var(--color-text);
  }
  .header__cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    font-weight: 700;
    background: var(--color-surface);
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    border: 1px solid var(--color-border);
  }
  .header__cta:hover {
    background: var(--accent-soft);
    color: var(--accent-hover);
    border-color: var(--accent-soft);
  }
}

.header__burger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
}
.header__burger span {
  display: block;
  width: 28px; height: 2px;
  background-color: var(--color-text);
  transition: transform var(--duration-normal) var(--ease-spring), opacity var(--duration-normal) var(--ease-spring);
}
@media (min-width: 1024px) { .header__burger { display: none; } }

.header__burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.header__burger.open span:nth-child(2) { opacity: 0; }
.header__burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  top: 120px;
  left: 0;
  width: 100%;
  height: calc(100vh - 120px);
  background-color: var(--color-bg);
  padding: var(--space-6) var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-normal) var(--ease-out-expo), transform var(--duration-normal) var(--ease-out-expo);
  z-index: 99;
}

.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav a {
  font-size: var(--text-xl);
  font-weight: 700;
  padding: var(--space-4);
  border-bottom: 1px solid var(--color-border);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding-top: calc(120px + var(--space-16));
  padding-bottom: var(--space-24);
  overflow: hidden;
}

.hero__inner {
  display: grid;
  gap: var(--space-12);
  align-items: center;
}

@media (min-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1.2fr 0.8fr; /* STRONGER EMPHASIS ON TEXT */
    gap: var(--space-16);
  }
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background-color: #d1fae5;
  color: #059669;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: var(--text-sm);
  font-weight: 700;
  margin-bottom: var(--space-6);
}

.hero__pulse {
  width: 8px; height: 8px;
  background-color: #10b981;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5); }
  70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.hero__title {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-6);
  color: var(--text-primary);
}

.hero__subtitle {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
  max-width: 600px;
  line-height: 1.5;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: flex-start;
}

@media (min-width: 768px) {
  .hero__actions {
    flex-direction: row;
    align-items: center;
    gap: var(--space-6);
  }
}

.hero__meta {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  font-weight: 600;
}

/* Device Mockup */
.device__screen {
  background-color: #1a1a1a;
  border: 10px solid #2c1a0e;
  border-radius: 52px;
  max-width: 380px;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 40px 80px rgba(255, 107, 26, 0.15), 0 8px 24px rgba(23, 48, 74, 0.08), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.device__img {
  width: 100%;
  height: auto;
  display: block;
}

.device__notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 88px;
  height: 24px;
  background-color: #1a1a1a;
  border-radius: 999px;
  z-index: 10;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background-color: var(--color-surface);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: var(--space-6) 0;
}

.trust-bar__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-6);
}

@media (min-width: 1024px) {
  .trust-bar__inner {
    justify-content: space-between;
  }
}

.trust-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.trust-bar__item strong {
  font-size: var(--text-lg);
  color: var(--text-primary);
}

.trust-bar__item span {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.trust-bar__sep {
  width: 1px;
  background-color: var(--color-border);
  display: none;
}
@media (min-width: 1024px) { .trust-bar__sep { display: block; } }

/* ===== FEATURES (BENTO) ===== */
.features__bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .features__bento {
    grid-template-columns: repeat(2, 1fr);
  }
  .bento-card--wide { grid-column: span 2; }
}

@media (min-width: 1024px) {
  .features__bento {
    grid-template-columns: repeat(3, 1fr);
  }
  .bento-card--wide { grid-column: span 2; }
}

.bento-card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--space-6);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bento-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}

/* Hero card — bright clean orange, not terracotta */
.bento-card--hero {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #FF6B1A 0%, #FF8A3D 100%);
  color: var(--text-primary);
  padding: var(--space-12);
  display: grid;
  gap: var(--space-8);
  border: none;
}

.bento-card--hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 48px rgba(255, 107, 26, 0.25);
}

@media (min-width: 1024px) {
  .bento-card--hero {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.bento-card--hero h3 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-4);
  color: var(--text-primary);
}

.bento-card--hero p {
  font-size: var(--text-lg);
  color: var(--white-warm);
}

.bento-card__visual--apps {
  display: flex;
  gap: var(--space-3);
  justify-content: flex-end;
  flex-wrap: wrap;
}

.app-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s ease;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.app-icon:hover {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.28);
}

/* Brand colors for each service */
.app-icon--yt { background: #FF0000; border-color: transparent; }
.app-icon--ig { background: linear-gradient(135deg, #833AB4, #E1306C, #F77737); border-color: transparent; }
.app-icon--gpt { background: #10A37F; border-color: transparent; }
.app-icon--x { background: #17304A; border-color: transparent; }
.app-icon--tt { background: #17304A; border-color: transparent; }


.bento-card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-4);
}

.bento-card p {
  color: var(--text-secondary);
}

.bento-card__badge {
  display: inline-block;
  background-color: var(--accent-soft);
  color: var(--accent);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: var(--text-sm);
  align-self: flex-start;
}

.bento-card__platforms {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.bento-card__platforms span {
  background: var(--color-bg);
  padding: 0.25rem 0.75rem;
  border-radius: 8px;
  font-size: var(--text-xs);
  font-weight: 700;
  border: 1px solid var(--color-border);
}

/* ===== TESTIMONIALS ===== */
.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background-color: var(--white-warm);
  border: 1px solid var(--border-soft);
  border-radius: 24px;
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transition: transform var(--duration-fast) var(--ease-out-expo),
              box-shadow var(--duration-fast) var(--ease-out-expo);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(23, 48, 74, 0.06);
}

.testimonial-card__stars {
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: 2px;
}

.testimonial-card__text {
  font-size: var(--text-base);
  color: var(--color-text);
  line-height: 1.6;
  flex: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-2);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border);
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  object-fit: cover;
}

.testimonial-card__platform {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--color-text-muted);
}

.testimonial-card__platform svg {
  width: 14px;
  height: 14px;
}

.testimonial-card__author strong {
  display: block;
  font-size: var(--text-sm);
  color: var(--color-text);
}

.testimonial-card__author span {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* ===== HOW IT WORKS ===== */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  position: relative;
}

@media (min-width: 1024px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
  .steps::before {
    content: '';
    position: absolute;
    top: 40px; left: 10%; right: 10%;
    height: 2px;
    background: var(--color-border);
    z-index: 0;
  }
}

.step {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  position: relative;
  z-index: 1;
}

.step__number {
  width: 80px; height: 80px;
  background-color: var(--color-surface);
  border: 4px solid var(--color-bg);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: var(--text-xl);
  font-weight: 900;
  color: var(--accent);
  box-shadow: 0 4px 12px rgba(23, 48, 74, 0.05);
}

.step__body h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-2);
}

.step__body p {
  color: var(--color-text-muted);
}

/* ===== PRICING ===== */
.pricing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .pricing__grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
  }
}

.price-card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  padding: var(--space-5, 1.25rem);
  display: flex;
  flex-direction: column;
  position: relative;
}

@media (min-width: 768px) {
  .price-card {
    border-radius: 32px;
    padding: var(--space-8);
  }
}

.price-card--featured {
  background-color: var(--white-warm);
  border: 2px solid var(--accent);
  box-shadow: 0 24px 48px rgba(255, 107, 26, 0.15);
  transform: scale(1.02);
  z-index: 10;
}

.price-card__badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent);
  color: var(--white-warm);
  padding: 0.25rem 1rem;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.price-card__badge--alt {
  background: linear-gradient(135deg, #F25A00, #FF6B1A);
}

.price-card__head { margin-bottom: var(--space-4); }
.price-card__period { font-weight: 800; font-size: var(--text-lg); }

.price-card__price {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: var(--space-2);
}

.price-card__amount {
  font-size: clamp(2rem, 8vw, 3.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
}
.price-card__currency {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text-muted);
  margin-top: 4px;
}

.price-card__pm {
  font-size: var(--text-sm);
  color: var(--accent);
  font-weight: 700;
  margin-bottom: var(--space-4);
}

.price-card__save {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
}
.price-card__old {
  text-decoration: line-through;
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  font-weight: 600;
}
.price-card__discount {
  color: var(--accent);
  font-weight: 800;
  font-size: var(--text-sm);
  background: var(--accent-soft);
  padding: 2px 8px;
  border-radius: 4px;
}

.price-card__perks {
  margin-bottom: var(--space-6);
  flex: 1;
}

@media (min-width: 768px) {
  .price-card__perks {
    margin-bottom: var(--space-8);
  }
}

.price-card__perks li {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-2);
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

@media (min-width: 768px) {
  .price-card__perks li {
    margin-bottom: var(--space-3);
    font-size: var(--text-base);
  }
}
.price-card__perks li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 900;
}

.pricing__note {
  text-align: center;
  margin-top: var(--space-8);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ===== FAQ ===== */
.faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.faq__item {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  overflow: hidden;
  transition: max-height var(--duration-fast) var(--ease-out-expo), padding var(--duration-fast) var(--ease-out-expo), opacity var(--duration-fast) var(--ease-out-expo);
}

.faq__item[open] {
  background-color: var(--white-warm);
  border-color: var(--accent);
  box-shadow: 0 12px 24px rgba(23, 48, 74, 0.04);
}

.faq__item summary {
  padding: var(--space-6);
  font-size: var(--text-lg);
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--accent);
  transition: transform var(--duration-fast);
}
.faq__item[open] summary::after { transform: rotate(45deg); }

.faq__content {
  padding: 0 var(--space-6) var(--space-6);
  color: var(--color-text-muted);
  font-size: var(--text-base);
}

/* ===== FOUNDER ===== */
.founder {
  background: var(--bg-section);
  padding: var(--space-24) 0;
  overflow: hidden;
}

.founder__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
  max-width: 920px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .founder__inner {
    flex-direction: row;
    align-items: flex-end;
    gap: var(--space-12);
  }
}

.founder__visual {
  flex-shrink: 0;
  width: 260px;
}

@media (min-width: 768px) {
  .founder__visual {
    width: 320px;
  }
}

.founder__photo {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 24px rgba(23, 48, 74, 0.10));
}

.founder__content {
  flex: 1;
  padding-bottom: var(--space-4);
}

.founder__eyebrow {
  font-size: var(--text-xs);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: var(--space-3);
}

.founder__name {
  font-size: var(--text-2xl);
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: var(--space-6);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.founder__lead {
  font-size: var(--text-lg);
  color: var(--text-primary);
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: var(--space-4);
}

.founder__body {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-3);
}

.founder__body:last-of-type {
  margin-bottom: 0;
}

.founder__sig {
  margin-top: var(--space-6);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-weight: 700;
  color: var(--text-primary);
  font-size: var(--text-sm);
}

.founder__sig-line {
  width: 24px;
  height: 2px;
  background: var(--accent);
  flex-shrink: 0;
  display: block;
}

@media (max-width: 767px) {
  .founder {
    padding: var(--space-16) 0;
  }
  .founder__visual {
    width: 220px;
  }
  .founder__content {
    text-align: center;
  }
  .founder__lead,
  .founder__body {
    text-align: left;
  }
  .founder__sig {
    justify-content: center;
  }
}


/* ===== FINAL CTA — Clean bright orange ===== */
.final-cta__box {
  background: linear-gradient(145deg, #F25A00 0%, #FF6B1A 50%, #FF8A3D 100%);
  border-radius: 32px;
  padding: var(--space-12) var(--space-6);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta__box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}


@media (min-width: 768px) {
  .final-cta__box {
    padding: var(--space-24) var(--space-12);
  }
}

.final-cta__content {
  max-width: 600px;
  margin: 0 auto;
}

.final-cta__content h2 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-6);
  color: var(--white-warm);
}

.final-cta__content p {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: var(--space-8);
}

.final-cta__sub {
  margin-top: var(--space-4) !important;
  margin-bottom: 0 !important;
  font-size: var(--text-sm) !important;
  color: rgba(255, 255, 255, 0.6) !important;
  font-weight: 600;
}

/* ===== FOOTER ===== */
.footer {
  padding: var(--space-16) 0 var(--space-8);
  background-color: var(--color-bg);
  border-top: 1px solid var(--color-border);
}

.footer__top {
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
  margin-bottom: var(--space-12);
}

@media (min-width: 1024px) {
  .footer__top {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer__brand {
  max-width: 300px;
}

.footer__tagline {
  margin-top: var(--space-4);
  color: var(--color-text-muted);
  font-weight: 600;
}

.footer__columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-8);
  width: 100%;
  max-width: 800px;
}

.footer__col h4 {
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  margin-bottom: var(--space-4);
}

.footer__col a {
  display: block;
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
  font-size: var(--text-base);
}

.footer__col a:hover {
  color: var(--primary-500);
}

.footer__divider {
  height: 1px;
  background-color: var(--color-border);
  margin-bottom: var(--space-6);
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}

/* ===== UTILS ===== */
.anim-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--duration-normal) var(--ease-out-expo),
              transform var(--duration-normal) var(--ease-out-expo);
}
.anim-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ====================================================
   MOBILE RESPONSIVE (max-width: 768px)
   ==================================================== */
@media (max-width: 768px) {

  /* -- Scale down typography -- */
  :root {
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 0.95rem;
    --text-lg: 1.1rem;
    --text-xl: 1.35rem;
    --text-2xl: 1.75rem;
    --text-3xl: clamp(2rem, 8vw, 2.8rem);
  }

  /* -- Reduce section spacing -- */
  .section {
    padding: var(--space-12) 0;
  }

  .section-header {
    margin-bottom: var(--space-8);
  }

  /* -- Header: compact -- */
  .header__inner {
    height: 64px;
  }

  .logo__img {
    height: 40px;
    margin-top: 0;
  }

  .mobile-nav {
    top: 64px;
    height: calc(100vh - 64px);
  }

  .mobile-nav a {
    font-size: var(--text-lg);
    padding: var(--space-3);
  }

  .header__burger span {
    width: 22px;
  }

  /* -- Hero: tighter -- */
  .hero {
    padding-top: calc(64px + var(--space-8));
    padding-bottom: var(--space-12);
  }

  .hero__inner {
    gap: var(--space-8);
  }

  .hero__eyebrow {
    font-size: var(--text-xs);
    padding: 0.4rem 0.75rem;
    margin-bottom: var(--space-4);
  }

  .hero__title {
    margin-bottom: var(--space-4);
  }

  .hero__subtitle {
    font-size: var(--text-base);
    margin-bottom: var(--space-6);
  }

  .btn--lg {
    padding: 0.875rem 1.75rem;
    font-size: var(--text-base);
  }

  .btn--xl {
    padding: 1rem 2rem;
    font-size: var(--text-base);
  }

  .hero__meta {
    flex-wrap: wrap;
    font-size: var(--text-xs);
  }

  /* -- Phone mockup: smaller -- */
  .device__screen {
    max-width: 260px;
    border-width: 6px;
    border-radius: 36px;
  }

  .device__notch {
    width: 60px;
    height: 18px;
    top: 6px;
  }

  /* -- Trust bar: compact -- */
  .trust-bar__inner {
    gap: var(--space-4);
  }

  .trust-bar__item strong {
    font-size: var(--text-base);
  }

  .trust-bar__item span {
    font-size: var(--text-xs);
  }

  /* -- Bento cards: single column, smaller padding -- */
  .features__bento {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .bento-card {
    border-radius: 20px;
    padding: var(--space-6);
    gap: var(--space-4);
  }

  .bento-card--hero {
    padding: var(--space-6);
    gap: var(--space-4);
  }

  .bento-card--hero h3 {
    font-size: var(--text-xl);
  }

  .bento-card--hero p {
    font-size: var(--text-base);
  }

  .bento-card__visual--apps {
    justify-content: flex-start;
    gap: var(--space-2);
  }

  .app-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .app-icon svg {
    width: 20px;
    height: 20px;
  }

  .bento-card h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-2);
  }

  .bento-card__platforms {
    gap: var(--space-1);
  }

  .bento-card__platforms span {
    font-size: var(--text-xs);
    padding: 0.2rem 0.5rem;
  }

  /* -- Steps: tighter -- */
  .steps {
    gap: var(--space-6);
  }

  .step__number {
    width: 56px;
    height: 56px;
    font-size: var(--text-lg);
  }

  .step__body h3 {
    font-size: var(--text-lg);
  }

  /* -- Testimonials: single column -- */
  .testimonials__grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .testimonial-card {
    border-radius: 20px;
    padding: var(--space-6);
  }

  .testimonial-card__text {
    font-size: var(--text-sm);
  }

  /* -- Pricing: single column, no scale -- */
  .pricing__grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
    max-width: 100%;
  }

  .price-card {
    border-radius: 24px;
    padding: var(--space-6);
  }

  .price-card--featured {
    transform: none;
  }

  .price-card__badge {
    top: -12px;
    font-size: 10px;
    padding: 0.2rem 0.75rem;
  }

  .price-card__amount {
    font-size: 2.5rem;
  }

  .btn {
    padding: 0.875rem 1.5rem;
    font-size: var(--text-sm);
    width: 100%;
  }

  /* -- FAQ: compact -- */
  .faq__list {
    gap: var(--space-3);
  }

  .faq__item {
    border-radius: 16px;
  }

  .faq__item summary {
    padding: var(--space-4);
    font-size: var(--text-base);
  }

  .faq__content {
    padding: 0 var(--space-4) var(--space-4);
    font-size: var(--text-sm);
  }

  /* -- Final CTA: tighter -- */
  .final-cta__box {
    border-radius: 24px;
    padding: var(--space-8) var(--space-4);
  }

  .final-cta__content h2 {
    font-size: var(--text-2xl);
  }

  .final-cta__content p {
    font-size: var(--text-base);
  }

  /* -- Footer: tighter -- */
  .footer {
    padding: var(--space-8) 0 var(--space-6);
  }

  .footer__top {
    gap: var(--space-8);
    margin-bottom: var(--space-8);
  }

  .footer__columns {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
  }

  .footer__col a {
    font-size: var(--text-sm);
  }

  .footer__legal p {
    font-size: var(--text-xs);
  }
}

/* ====================================================
   SMALL MOBILE (max-width: 400px)
   ==================================================== */
@media (max-width: 400px) {
  :root {
    --text-3xl: 1.8rem;
    --text-2xl: 1.5rem;
  }

  .container {
    padding: 0 0.75rem;
  }

  .bento-card--hero {
    padding: var(--space-4);
  }

  .app-icon {
    width: 40px;
    height: 40px;
  }

  .app-icon svg {
    width: 18px;
    height: 18px;
  }

  .price-card__amount {
    font-size: 2rem;
  }

  .final-cta__box {
    padding: var(--space-6) var(--space-3);
  }
}

