/* =============================================
   OUTBOUND — Custom Stylesheet
   ============================================= */

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

:root {
  --bg: #09090B;
  --surface: #111114;
  --surface-2: #18181C;
  --border: #27272A;
  --orange: #FF5C00;
  --orange-dim: rgba(255, 92, 0, 0.12);
  --orange-glow: rgba(255, 92, 0, 0.06);
  --white: #FAFAFA;
  --muted: #71717A;
  --muted-2: #52525B;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---- Typography ---- */
.font-display { font-family: var(--font-display); }

/* ---- Nav ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: rgba(9, 9, 11, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__logo-mark {
  display: block;
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 2px;
  box-shadow: 0 0 12px var(--orange);
}

.nav__logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.02em;
  color: var(--white);
}

.nav__tagline {
  font-size: 12px;
  color: var(--muted);
  display: none;
}

@media (min-width: 640px) {
  .nav__tagline { display: block; }
}

/* Nav Dropdown */
.nav__dropdown {
  position: relative;
}

.nav__dropdown-trigger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
  display: flex;
  align-items: center;
  color: inherit;
}

.nav__dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px;
  min-width: 220px;
  z-index: 100;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.nav__dropdown-menu--open { display: block; }

.nav__dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--white);
  font-size: 14px;
  transition: background 0.15s;
  cursor: pointer;
  gap: 12px;
}

a.nav__dropdown-item:hover { background: var(--surface-2); }

.nav__dropdown-item--disabled {
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}

.nav__dropdown-item-label { flex: 1; }

.nav__dropdown-item-badge {
  font-size: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--muted);
  white-space: nowrap;
}

.nav__dropdown-item-badge--active {
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.3);
  color: #22C55E;
}

/* ---- Hero ---- */
.hero {
  position: relative;
  padding: 100px 24px 80px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, black 40%, transparent 100%);
  opacity: 0.4;
}

.hero__glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(255, 92, 0, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
}

.hero__vertical-banner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 92, 0, 0.08);
  border: 1px solid rgba(255, 92, 0, 0.2);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
  margin-bottom: 16px;
  transition: background 0.2s;
}

.hero__vertical-banner:hover { background: rgba(255, 92, 0, 0.14); }

.hero__vertical-banner-dot {
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 6px var(--orange);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  font-size: 12px;
  color: var(--muted);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 36px;
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 8px #22C55E;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(56px, 10vw, 104px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 28px;
}

.hero__headline-accent {
  color: var(--orange);
  display: inline-block;
}

.hero__sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--muted);
  max-width: 540px;
  line-height: 1.65;
  margin-bottom: 52px;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  overflow: hidden;
  width: fit-content;
}

.hero__stat {
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.hero__stat-value {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
}

.hero__stat-label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
  white-space: nowrap;
}

/* ---- Problem ---- */
.problem {
  padding: 100px 24px;
  border-top: 1px solid var(--border);
}

.problem__inner {
  max-width: 880px;
  margin: 0 auto;
}

.problem__label,
.how__label,
.manifesto__label,
.outcomes__label,
.closing__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 24px;
  font-family: var(--font-display);
}

.problem__headline,
.how__headline,
.outcomes__headline,
.closing__headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.problem__body {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 20px;
  max-width: 640px;
}

.problem__gap {
  margin-top: 48px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.problem__gap-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.problem__gap-label {
  font-size: 13px;
  color: var(--muted);
  width: 100px;
  flex-shrink: 0;
}

.problem__gap-bar {
  height: 8px;
  border-radius: 4px;
  flex: 1;
  max-width: 360px;
}

.problem__gap-bar--want {
  background: linear-gradient(90deg, var(--orange), rgba(255, 92, 0, 0.4));
  width: 100%;
}

.problem__gap-bar--have {
  background: var(--surface-2);
  width: 28%;
}

.problem__gap-caption {
  font-size: 13px;
  color: var(--muted-2);
  font-style: italic;
}

/* ---- How ---- */
.how {
  padding: 100px 24px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.how__inner {
  max-width: 880px;
  margin: 0 auto;
}

.how__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 64px;
}

.how__step {
  display: flex;
  gap: 28px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}

.how__step:last-child {
  border-bottom: none;
}

.how__step-number {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.05em;
  padding-top: 4px;
  flex-shrink: 0;
  width: 28px;
}

.how__step-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}

.how__step-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

.how__quote {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--orange);
  border-radius: 0 12px 12px 0;
  padding: 28px 32px;
  position: relative;
}

.how__quote-mark {
  position: absolute;
  top: 20px;
  left: 24px;
  width: 24px;
  height: 20px;
  opacity: 0.2;
}

.how__quote p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  font-style: italic;
}

/* ---- Manifesto ---- */
.manifesto {
  padding: 100px 24px;
  border-top: 1px solid var(--border);
}

.manifesto__inner {
  max-width: 880px;
  margin: 0 auto;
}

.manifesto__quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.015em;
  color: var(--white);
  margin-bottom: 32px;
  border: none;
  padding: 0;
}

.manifesto__body {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 48px;
}

.manifesto__divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 48px;
}

.manifesto__values {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

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

.manifesto__value {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.manifesto__value-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}

.manifesto__value-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ---- Outcomes ---- */
.outcomes {
  padding: 100px 24px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.outcomes__inner {
  max-width: 880px;
  margin: 0 auto;
}

.outcomes__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 48px;
}

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

.outcomes__card {
  background: var(--surface-2);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.2s;
}

.outcomes__card:hover {
  background: #1F1F24;
}

.outcomes__card-icon {
  color: var(--orange);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orange-dim);
  border-radius: 10px;
}

.outcomes__card-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
}

.outcomes__card-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ---- Closing ---- */
.closing {
  padding: 100px 24px 120px;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.closing__bg-glow {
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(255, 92, 0, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.closing__inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.closing__headline {
  margin-bottom: 28px;
}

.closing__body {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

.closing__cta-strip {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}

.closing__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.closing__cta-btn:hover {
  opacity: 0.88;
}

.closing__statement {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.5;
  letter-spacing: -0.01em;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  margin-top: 0;
}

/* ---- Nav Links ---- */
.nav__links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav__link {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.nav__link:hover {
  color: var(--white);
  background: var(--surface-2);
}

.nav__link--active {
  color: var(--white);
}

.nav__cta-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  background: var(--orange);
  padding: 7px 14px;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.nav__cta-link:hover {
  opacity: 0.88;
}

.nav__pilot-link {
  color: var(--orange);
  font-weight: 600;
}
.nav__pilot-link:hover {
  color: var(--orange);
  background: var(--surface-2);
}
.nav__pilot-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  margin-right: 6px;
  vertical-align: middle;
  box-shadow: 0 0 6px var(--orange-glow);
}

@media (max-width: 640px) {
  .nav__links {
    gap: 4px;
  }
  .nav__link {
    font-size: 12px;
    padding: 6px 8px;
  }
  .nav__cta-link {
    font-size: 12px;
    padding: 6px 10px;
  }
  .nav__pilot-link {
    font-size: 12px;
    padding: 6px 8px;
  }
  .nav__pilot-dot {
    width: 5px;
    height: 5px;
    margin-right: 4px;
  }
  .closing__cta-strip {
    margin-bottom: 36px;
  }
}

/* ---- Footer ---- */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 24px;
}

.footer__inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

@media (min-width: 640px) {
  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.footer__logo-mark {
  display: block;
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 2px;
}

.footer__logo-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.02em;
  color: var(--white);
}

.footer__tagline {
  font-size: 13px;
  color: var(--muted);
}

.footer__copy {
  font-size: 12px;
  color: var(--muted-2);
}

/* ---- Animations ---- */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__badge { animation: fade-up 0.5s ease forwards; }
.hero__headline { animation: fade-up 0.6s 0.1s ease both; }
.hero__sub { animation: fade-up 0.6s 0.2s ease both; }
.hero__stats { animation: fade-up 0.6s 0.3s ease both; }

/* ---- Live Notification Bar ---- */
.live-notification-bar {
  display: inline-flex;
  align-items: center;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 10px 18px;
  font-size: 13px;
  color: var(--muted);
  animation: fade-up 0.5s 0.35s ease both;
  transition: opacity 0.4s ease;
}
.live-notification-bar__inner {
  display: flex;
  align-items: center;
  gap: 8px;
}
.live-notification-bar__icon { font-size: 14px; }
.live-notification-bar__text { color: var(--white); font-weight: 500; }
@keyframes notificationFade {
  0% { opacity: 0; transform: translateY(4px); }
  10% { opacity: 1; transform: translateY(0); }
  80% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-4px); }
}
.live-notification-bar__text {
  animation: notificationFade 8s ease forwards;
}

/* ---- Trust Badge Bar ---- */
.trust-badge-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 24px;
}
.trust-badge-bar__inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-badge-bar__item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}
.trust-badge-bar__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--muted-2);
  flex-shrink: 0;
}

/* ---- Social Proof Section ---- */
.social-proof-section {
  padding: 64px 24px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.social-proof-section__inner {
  max-width: 1160px;
  margin: 0 auto;
}
.social-proof-header {
  text-align: center;
  margin-bottom: 48px;
}
.social-proof-header__label {
  font-size: 11px;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.social-proof-header__headline {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.testimonial-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}
.testimonial-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
}
.testimonial-card__quote {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 16px;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.testimonial-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--orange-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--orange);
  flex-shrink: 0;
}
.testimonial-card__meta { font-size: 13px; }
.testimonial-card__name { font-weight: 600; color: var(--white); }
.testimonial-card__role { font-size: 12px; color: var(--muted); margin-top: 2px; }
.logo-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  opacity: 0.4;
  margin-bottom: 24px;
}
.logo-bar__item {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--muted-2);
}
.social-proof-stats {
  text-align: center;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.social-proof-stats__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.social-proof-stats__item {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
}
.social-proof-stats__item strong { color: var(--orange); }
.social-proof-stats__label { font-size: 13px; color: var(--muted); }

/* ---- ROI Calculator ---- */
.roi-calculator {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}
.roi-calculator__headline {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}
.roi-calculator__math {
  background: var(--bg);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 16px;
}
.roi-calculator__formula {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 8px;
}
.roi-calculator__result {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
}
.roi-calculator__result span { color: var(--orange); }
.roi-calculator__conclusion {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}
.roi-calculator__conclusion strong { color: var(--white); }

/* ---- Guarantee Cards ---- */
.guarantee-section {
  padding: 64px 24px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.guarantee-section__inner { max-width: 960px; margin: 0 auto; }
.guarantee-section__header {
  text-align: center;
  margin-bottom: 40px;
}
.guarantee-section__label {
  font-size: 11px;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.guarantee-section__headline {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  color: var(--white);
}
.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.guarantee-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  text-align: left;
}
.guarantee-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--orange-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.guarantee-card__title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.guarantee-card__desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ---- Exit Intent Popup ---- */
.exit-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}
.exit-popup-overlay.visible { display: flex; }
.exit-popup {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  max-width: 460px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
  position: relative;
}
.exit-popup__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 20px;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}
.exit-popup__close:hover { background: var(--surface); color: var(--white); }
.exit-popup__label {
  font-size: 11px;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.exit-popup__headline {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}
.exit-popup__sub {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 24px;
}
.exit-popup__timer {
  display: inline-flex;
  gap: 8px;
  margin-bottom: 24px;
}
.exit-popup__timer-unit {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 14px;
  text-align: center;
}
.exit-popup__timer-val {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  display: block;
}
.exit-popup__timer-label {
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.exit-popup__cta {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  margin-bottom: 12px;
  transition: background 0.2s;
}
.exit-popup__cta:hover { background: #E65200; }
.exit-popup__dismiss {
  font-size: 12px;
  color: var(--muted-2);
  cursor: pointer;
}
.exit-popup__dismiss:hover { color: var(--muted); }
.exit-popup__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  margin-bottom: 16px;
}
.exit-popup__input {
  width: 100%;
  box-sizing: border-box;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 15px;
  color: var(--white);
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s;
}
.exit-popup__input::placeholder { color: var(--muted-2); }
.exit-popup__input:focus { border-color: var(--orange); }
.exit-popup__submit {
  width: 100%;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 10px;
  padding: 13px 20px;
  font-size: 15px;
  font-family: var(--font-display);
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s;
}
.exit-popup__submit:hover:not(:disabled) { opacity: 0.88; }
.exit-popup__submit:disabled { opacity: 0.5; cursor: not-allowed; }
.exit-popup__success {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 14px;
  color: #10b981;
  font-weight: 500;
  margin-bottom: 16px;
  text-align: left;
}

/* ---- Mobile Tweaks ---- */
@media (max-width: 640px) {
  .hero { padding: 72px 20px 64px; }
  .hero__stats { flex-direction: column; width: 100%; }
  .hero__stat { width: 100%; }
  .hero__stat-divider { width: 100%; height: 1px; }
  .how__step { gap: 16px; }
  .problem__gap-row { flex-direction: column; align-items: flex-start; gap: 6px; }
  .problem__gap-bar { width: 100%; }
  .outcomes__card { padding: 28px 24px; }
  .pricing-section { padding: 64px 20px; }
  .pricing-section__price-card { padding: 24px; }
  .pricing-section__amount { font-size: 44px; }
}

/* ---- Pricing Section ---- */
.pricing-section {
  padding: 80px 24px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.pricing-section__inner {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}

.pricing-section__label {
  font-size: 12px;
  font-weight: 600;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.pricing-section__headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 40px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 12px;
}

.pricing-section__sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 32px;
}

.pricing-section__price-card {
  background: var(--surface);
  border: 1px solid var(--orange);
  border-radius: 16px;
  padding: 32px;
  max-width: 480px;
  margin: 0 auto 40px;
}

.pricing-section__amount {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 56px;
  color: var(--white);
  line-height: 1;
}

.pricing-section__amount span {
  font-size: 20px;
  color: var(--muted);
  font-weight: 500;
}

.pricing-section__price-meta {
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
}

.pricing-section__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
  text-align: left;
}

.pricing-section__card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 20px;
}

.pricing-section__card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--orange-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 12px;
}

.pricing-section__card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
  margin-bottom: 6px;
}

.pricing-section__card-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}

.pricing-section__guarantee {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
}

.pricing-section__cta-row {
  display: flex;
  justify-content: center;
}