/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --bg-primary:   #F8F7F5;
  --bg-section:   #EEF1F8;
  --bg-dark:      #1A1A2E;
  --text-primary: #1A1A1A;
  --text-muted:   #6B7280;
  --white:        #FFFFFF;
  --border:       #E2E0DC;
  --navy:         #1E3A6E;
  --navy-light:   #2D5490;
  --amber:        #E8954A;
  --amber-light:  #F5B07A;

  --radius:    16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --shadow:    0 1px 2px rgba(16, 24, 40, 0.04), 0 4px 16px rgba(16, 24, 40, 0.06);
  --shadow-md: 0 2px 6px rgba(16, 24, 40, 0.05), 0 12px 40px rgba(16, 24, 40, 0.1);
  --shadow-lg: 0 4px 12px rgba(16, 24, 40, 0.06), 0 24px 64px rgba(16, 24, 40, 0.14);
  --ease-out:  cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.4, 0.64, 1);
  --transition: 0.25s var(--ease-out);
  --grad-amber: linear-gradient(135deg, #F0A45C 0%, #E8954A 45%, #D97E2E 100%);
  --grad-navy:  linear-gradient(135deg, #2D5490 0%, #1E3A6E 60%, #16294E 100%);
  --max-width: 1200px;
}

::selection {
  background: var(--amber);
  color: var(--white);
}

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

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-primary);
  background: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
}

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

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.15;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.5rem, 5.5vw, 4.5rem); font-weight: 800; letter-spacing: -0.025em; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.625rem); font-weight: 700; letter-spacing: -0.02em; }
h3 { font-size: clamp(1.125rem, 2vw, 1.375rem); font-weight: 600; }
p  { color: var(--text-primary); }

.text-muted { color: var(--text-muted); }
.text-amber { color: var(--amber); }
.text-navy  { color: var(--navy); }
.text-white { color: var(--white); }
.text-center { text-align: center; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 5rem 0;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-sm);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), filter var(--transition);
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  isolation: isolate;
}

/* Sheen sweep on hover */
.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 55%;
  height: 100%;
  background: linear-gradient(105deg, transparent 0%, rgba(255,255,255,0.28) 50%, transparent 100%);
  transform: skewX(-20deg);
  transition: left 0.55s var(--ease-out);
  pointer-events: none;
}

.btn:hover::after { left: 130%; }

.btn:active { transform: translateY(0) scale(0.98); }

.btn-primary {
  background: var(--grad-navy);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(30, 58, 110, 0.28), inset 0 1px 0 rgba(255,255,255,0.12);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30, 58, 110, 0.35), 0 0 32px rgba(232, 149, 74, 0.25), inset 0 1px 0 rgba(255,255,255,0.15);
}

.btn-amber {
  background: var(--grad-amber);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(217, 126, 46, 0.35), inset 0 1px 0 rgba(255,255,255,0.25);
}
.btn-amber:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(217, 126, 46, 0.45), inset 0 1px 0 rgba(255,255,255,0.3);
  filter: brightness(1.05);
}

.btn-lg {
  padding: 1.1rem 2.5rem;
  font-size: 1.0625rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(5px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out), filter 0.7s var(--ease-out);
  will-change: opacity, transform, filter;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-up {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

/* Stagger helper — add delay via inline style or these classes */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.125rem 0;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.82);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  backdrop-filter: blur(16px) saturate(1.4);
  box-shadow: 0 1px 0 rgba(16, 24, 40, 0.06), 0 4px 24px rgba(16, 24, 40, 0.08);
  padding: 0.75rem 0;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo img {
  height: 36px;
  width: auto;
}

/* Blend the logo's dark plate into the dark hero while the navbar is transparent */
.navbar:not(.scrolled) .navbar__logo img {
  mix-blend-mode: screen;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 9rem 0 5rem;
  position: relative;
  overflow: hidden;
  background: #0A1428;
}

/* ---- Animated background scene ---- */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse 100% 70% at 50% 0%, #142848 0%, transparent 60%),
    linear-gradient(180deg, #0C1830 0%, #0A1428 55%, #081120 100%);
}

/* Faint tech grid, fading out toward the edges */
.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(120, 160, 220, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 160, 220, 0.07) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 42%, #000 0%, transparent 100%);
  mask-image: radial-gradient(ellipse 75% 65% at 50% 42%, #000 0%, transparent 100%);
}

/* Slow-drifting aurora light fields */
.hero__aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  mix-blend-mode: screen;
  will-change: transform;
}

.hero__aurora--blue {
  width: 55vw;
  height: 55vw;
  min-width: 480px;
  min-height: 480px;
  top: -22%;
  left: -12%;
  background: radial-gradient(circle, rgba(45, 84, 144, 0.55) 0%, rgba(45, 84, 144, 0) 65%);
  animation: auroraDrift1 26s ease-in-out infinite alternate;
}

.hero__aurora--amber {
  width: 44vw;
  height: 44vw;
  min-width: 400px;
  min-height: 400px;
  bottom: -25%;
  right: -10%;
  background: radial-gradient(circle, rgba(232, 149, 74, 0.28) 0%, rgba(232, 149, 74, 0) 65%);
  animation: auroraDrift2 22s ease-in-out infinite alternate;
}

.hero__aurora--sky {
  width: 34vw;
  height: 34vw;
  min-width: 320px;
  min-height: 320px;
  top: 18%;
  right: 8%;
  background: radial-gradient(circle, rgba(96, 150, 220, 0.3) 0%, rgba(96, 150, 220, 0) 65%);
  animation: auroraDrift3 30s ease-in-out infinite alternate;
}

@keyframes auroraDrift1 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(9vw, 7vh) scale(1.18); }
}

@keyframes auroraDrift2 {
  0%   { transform: translate(0, 0) scale(1.1); }
  100% { transform: translate(-8vw, -6vh) scale(0.95); }
}

@keyframes auroraDrift3 {
  0%   { transform: translate(0, 0) scale(0.95); }
  100% { transform: translate(-6vw, 8vh) scale(1.15); }
}

/* Tiny floating light sparks */
.hero__spark {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(245, 200, 150, 0.9);
  box-shadow: 0 0 10px 2px rgba(232, 149, 74, 0.45);
  opacity: 0;
  animation: sparkFloat 11s linear infinite;
}

.hero__spark--1 { left: 12%; top: 68%; animation-delay: 0s;    animation-duration: 12s; }
.hero__spark--2 { left: 26%; top: 82%; animation-delay: 2.5s;  animation-duration: 14s; transform: scale(0.7); }
.hero__spark--3 { left: 48%; top: 88%; animation-delay: 5s;    animation-duration: 11s; }
.hero__spark--4 { left: 64%; top: 76%; animation-delay: 1.2s;  animation-duration: 15s; transform: scale(0.6); }
.hero__spark--5 { left: 79%; top: 84%; animation-delay: 6.5s;  animation-duration: 13s; }
.hero__spark--6 { left: 90%; top: 70%; animation-delay: 3.8s;  animation-duration: 12s; transform: scale(0.8); }

@keyframes sparkFloat {
  0%   { opacity: 0; transform: translateY(0); }
  8%   { opacity: 0.9; }
  60%  { opacity: 0.5; }
  100% { opacity: 0; transform: translateY(-58vh); }
}

/* Warm glow rising from the bottom */
.hero__bg-glow {
  position: absolute;
  inset: auto 0 0 0;
  height: 50%;
  background: radial-gradient(ellipse 65% 100% at 50% 100%, rgba(232, 149, 74, 0.16) 0%, transparent 70%);
}

/* Film grain to kill banding and add texture */
.hero__bg-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.05;
  mix-blend-mode: overlay;
}

@media (prefers-reduced-motion: reduce) {
  .hero__aurora { animation: none; }
  .hero__spark  { animation: none; opacity: 0.5; }
}

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

/* Text overrides for legibility over the dark animated background */
.hero__content .hero__headline { color: var(--white); }
.hero__content .hero__sub { color: rgba(255, 255, 255, 0.78); }
.hero__content .hero__scroll-link { color: rgba(255, 255, 255, 0.85); }
.hero__content .hero__trust-item { color: rgba(255, 255, 255, 0.8); }

/* Urgency pill — glass over the video */
.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(255, 255, 255, 0.09);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.94);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
  padding: 0.45rem 1.15rem 0.45rem 0.8rem;
  border-radius: 100px;
  margin-bottom: 1.75rem;
  opacity: 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.hero__pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(232, 149, 74, 0.5);
  animation: pillPulse 2.2s var(--ease-out) infinite;
}

@keyframes pillPulse {
  0%   { box-shadow: 0 0 0 0 rgba(232, 149, 74, 0.55); }
  70%  { box-shadow: 0 0 0 9px rgba(232, 149, 74, 0); }
  100% { box-shadow: 0 0 0 0 rgba(232, 149, 74, 0); }
}

/* Shimmering gradient accent word in the headline */
.hero__headline .text-amber {
  background: linear-gradient(100deg, #F5B07A 0%, #E8954A 30%, #FFD9AE 50%, #E8954A 70%, #F5B07A 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: textShimmer 4.5s linear infinite;
}

@keyframes textShimmer {
  0%   { background-position: 0% center; }
  100% { background-position: -220% center; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__pill-dot { animation: none; }
  .hero__headline .text-amber { animation: none; }
}

.hero__headline {
  margin-bottom: 1.5rem;
  opacity: 0;
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.1875rem);
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  opacity: 0;
}

.hero__ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
  opacity: 0;
}

.hero__scroll-link {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--navy);
  opacity: 0.75;
  transition: opacity var(--transition);
}
.hero__scroll-link:hover { opacity: 1; }

/* Savings comparison widget — frosted glass over the video */
.hero__savings {
  display: flex;
  align-items: stretch;
  background: rgba(13, 27, 51, 0.55);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  backdrop-filter: blur(18px) saturate(1.3);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 520px;
  margin: 0 auto 2.5rem;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  opacity: 0;
}

.hero__savings-stat {
  flex: 1;
  padding: 1.125rem 1.25rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.hero__savings-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.35rem;
}

.hero__savings-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.1875rem;
  color: var(--white);
  line-height: 1;
}

.hero__savings-num--dim {
  color: rgba(255, 255, 255, 0.28);
  text-decoration: line-through;
}

.hero__savings-div {
  display: flex;
  align-items: center;
  padding: 0 0.375rem;
  color: rgba(255, 255, 255, 0.15);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.hero__savings-badge {
  background: var(--grad-amber);
  padding: 1.125rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.15rem;
  flex-shrink: 0;
}

.hero__savings-badge-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.hero__savings-badge-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.1875rem;
  color: var(--white);
  line-height: 1;
}

@media (max-width: 479px) {
  .hero__savings {
    flex-direction: column;
  }
  .hero__savings-stat {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .hero__savings-div { display: none; }
  .hero__savings-badge { padding: 1rem 1.25rem; }
}

/* Trust row */
.hero__trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  opacity: 0;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
}

.hero__trust-icon {
  display: block;
  flex-shrink: 0;
}

/* Scroll cue at the bottom of the hero */
.hero__scroll-cue {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.32);
  border-radius: 14px;
  pointer-events: none;
}

.hero__scroll-cue::before {
  content: '';
  position: absolute;
  top: 7px;
  left: 50%;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  border-radius: 2px;
  background: var(--amber);
  animation: scrollCue 2s var(--ease-out) infinite;
}

@keyframes scrollCue {
  0%   { opacity: 0; transform: translateY(0); }
  25%  { opacity: 1; }
  75%  { opacity: 0; transform: translateY(14px); }
  100% { opacity: 0; transform: translateY(14px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__scroll-cue::before { animation: none; opacity: 1; }
}

@media (max-height: 700px) {
  .hero__scroll-cue { display: none; }
}

/* ============================================================
   PROBLEM SECTION
   ============================================================ */
.problem {
  background: var(--bg-primary);
}

.problem h2 {
  margin-bottom: 0.75rem;
  position: relative;
  display: inline-block;
}

.problem .text-center h2 {
  display: block;
}

.problem__header {
  text-align: center;
  margin-bottom: 3rem;
}

.problem__header-tag {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.875rem;
}

.problem__sub {
  font-size: 1.0625rem;
  margin-bottom: 3rem;
}

.problem__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.problem__card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
  border-left: 4px solid transparent;
  transition: border-left-color var(--transition), transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.problem__card:hover {
  border-left-color: var(--amber);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(232, 149, 74, 0.12);
}

.problem__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 12px;
  background: linear-gradient(145deg, #EEF1F8 0%, #E3E9F4 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), 0 1px 3px rgba(30, 58, 110, 0.08);
  color: var(--navy);
  margin-bottom: 1.25rem;
  transition: transform 0.35s var(--ease-spring), background 0.35s var(--ease-out), color 0.35s var(--ease-out);
}

.problem__card:hover .problem__icon {
  transform: scale(1.08) rotate(-4deg);
  background: var(--grad-amber);
  color: var(--white);
}

.problem__icon svg {
  display: block;
}

.problem__card h3 {
  margin-bottom: 0.625rem;
  font-size: 1.125rem;
}

.problem__card p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.65;
}

/* ============================================================
   OFFER / GRAND SLAM SECTION
   ============================================================ */
.offer {
  background: var(--bg-section);
  position: relative;
}

.offer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(30,58,110,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.offer__label {
  text-align: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--amber);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.offer__sub {
  font-size: 1.0625rem;
  margin-bottom: 2rem;
}

.offer .container {
  position: relative;
  z-index: 1;
}

.offer__core {
  background: var(--navy);
  border: none;
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  text-align: center;
  margin-bottom: 2rem;
  box-shadow: 0 4px 24px rgba(30,58,110,0.25);
}

.offer__core-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.5rem;
}

.offer__core-desc {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.92);
}

.offer__bonuses {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.offer__bonus {
  display: grid;
  grid-template-columns: 3rem 1fr auto;
  align-items: center;
  gap: 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}

.offer__bonus:hover {
  transform: translateX(6px);
  border-color: rgba(232, 149, 74, 0.45);
  box-shadow: var(--shadow-md), -6px 0 20px -8px rgba(232, 149, 74, 0.35);
}

.offer__bonus-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  background: var(--bg-section);
  border-radius: var(--radius-sm);
  color: var(--navy);
  flex-shrink: 0;
  transition: background 0.3s var(--ease-out), color 0.3s var(--ease-out), transform 0.3s var(--ease-spring);
}

.offer__bonus:hover .offer__bonus-icon {
  background: var(--grad-navy);
  color: var(--white);
  transform: scale(1.06);
}

.offer__bonus-icon svg {
  display: block;
}

.offer__bonus-body h3 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.offer__bonus-body p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.offer__bonus-value {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  white-space: nowrap;
  min-width: 70px;
  text-align: right;
}

/* Bonuses section heading */
.offer__bonuses-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  text-align: center;
  margin-bottom: 1.25rem;
  opacity: 0.7;
}

/* Total */
.offer__total {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.5rem;
  background: var(--white);
  border: 2px solid var(--amber);
  border-radius: var(--radius);
  margin-bottom: 2.5rem;
}

.offer__total-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
}

.offer__total-value {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--amber);
}

/* Savings reveal block */
.offer__savings-reveal {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  margin-bottom: 2rem;
  box-shadow: 0 8px 40px rgba(30, 58, 110, 0.22);
}

.offer__savings-price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.75rem;
}

.offer__savings-price strong {
  color: var(--white);
}

.offer__savings-highlight {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 6vw, 3rem);
  color: var(--amber);
  line-height: 1;
  margin-bottom: 1rem;
}

.offer__savings-note {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.35);
}

/* Pricing block */
.offer__pricing {
  text-align: center;
}

.offer__pricing-strike {
  font-size: 1.0625rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 0.5rem;
}

.offer__pricing-current {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.offer__pricing-note {
  color: var(--text-muted);
  font-size: 0.9375rem;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how {
  background: var(--white);
}

.how h2 {
  margin-bottom: 3rem;
}

.how__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.how__step {
  text-align: center;
  position: relative;
}

.how__step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

/* Dashed connector line between steps */
.how__connector {
  position: absolute;
  top: 28px;
  left: calc(50% + 28px);
  width: calc(100% - 28px);
  height: 2px;
  border-top: 2px dashed var(--border);
}

.how__step h3 {
  margin-bottom: 0.625rem;
  font-size: 1.0625rem;
}

.how__step p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  max-width: 260px;
  margin: 0 auto;
}

/* ============================================================
   FOUNDER STORY
   ============================================================ */
.founder {
  background: var(--bg-primary);
}

.founder__inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 5rem;
  align-items: center;
}

.founder__text h2 {
  margin-bottom: 2rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.founder__story {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
  margin-bottom: 1.75rem;
}

.founder__story p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-primary);
  font-style: italic;
}

.founder__tag {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--navy);
}

.founder__actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Story fades out at the bottom, inviting the "read more" click */
.founder__story--faded {
  position: relative;
}

.founder__story--faded::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3.5rem;
  background: linear-gradient(180deg, rgba(248, 247, 245, 0) 0%, var(--bg-primary) 100%);
  pointer-events: none;
}

.founder__read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--navy);
  background: var(--white);
  border: 1.5px solid var(--navy);
  border-radius: var(--radius-sm);
  padding: 0.6rem 1.25rem;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.founder__read-more:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 58, 110, 0.25);
}

.pricing__card-optional {
  color: rgba(255,255,255,0.35);
  font-size: 0.8125rem;
}

.founder__tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
}

.founder__photo {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.founder__photo-img {
  width: 340px;
  height: 420px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
  box-shadow: 0 8px 48px rgba(30, 58, 110, 0.18), 0 2px 12px rgba(0,0,0,0.08);
  border: 3px solid var(--white);
  outline: 1px solid var(--border);
}

/* ============================================================
   GUARANTEES
   ============================================================ */
.guarantees {
  background: var(--bg-dark);
}

.guarantees__label {
  text-align: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.75rem;
}

.guarantees h2 {
  margin-bottom: 3rem;
  color: var(--white);
}

.guarantees__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.guarantees__card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.35s var(--ease-out), border-color 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
  overflow: hidden;
}

/* Soft amber glow that follows on hover */
.guarantees__card::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 149, 74, 0.16) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
  pointer-events: none;
}

.guarantees__card:hover::before { opacity: 1; }

.guarantees__card:hover {
  transform: translateY(-5px);
  border-color: rgba(232, 149, 74, 0.35);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.guarantees__icon {
  color: var(--amber);
  margin-bottom: 1.25rem;
  display: block;
  filter: drop-shadow(0 0 12px rgba(232, 149, 74, 0.35));
}

.guarantees__icon svg {
  display: block;
}

.guarantees__card h3 {
  color: var(--white);
  font-size: 1.1875rem;
  margin-bottom: 0.875rem;
}

.guarantees__card p {
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
  line-height: 1.7;
  font-size: 1rem;
}

/* ============================================================
   URGENCY BANNER
   ============================================================ */
.urgency {
  background:
    radial-gradient(ellipse 70% 120% at 85% 50%, rgba(255, 255, 255, 0.14) 0%, transparent 60%),
    var(--grad-amber);
  padding: 2.25rem 0;
  position: relative;
  overflow: hidden;
}

/* Countdown timer */
.urgency__countdown {
  display: flex;
  gap: 0.625rem;
  flex-shrink: 0;
}

.urgency__count-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-sm);
  padding: 0.55rem 0.4rem 0.45rem;
  min-width: 62px;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.urgency__count-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.375rem;
  color: var(--white);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.urgency__count-label {
  font-size: 0.575rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.urgency__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.urgency__text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.urgency__text strong {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.0625rem;
  color: var(--white);
}

.urgency__text span {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.88);
}

.urgency__cta {
  background: var(--navy);
  color: var(--white);
  white-space: nowrap;
  flex-shrink: 0;
}

.urgency__cta:hover {
  background: var(--navy-light);
  transform: scale(1.03);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact {
  background: var(--bg-section);
}

.contact__sub {
  font-size: 1.0625rem;
  margin-bottom: 2.5rem;
}

.contact__card {
  max-width: 680px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 3rem 2.5rem;
  position: relative;
}

/* Amber top accent on the form card */
.contact__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad-amber);
  border-radius: var(--radius) var(--radius) 0 0;
}

/* Form fields */
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  position: relative;
}

.form-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-primary);
}

.form-input {
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--text-primary);
  background: var(--white);
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}

.form-input:focus {
  border-color: var(--amber);
  background: #fffaf6;
  box-shadow: 0 0 0 3px rgba(232, 149, 74, 0.12);
}

.form-input.error {
  border-color: #e53935;
  background: #fff5f5;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.field-error {
  font-size: 0.8125rem;
  color: #e53935;
  margin-top: 0.2rem;
}

/* Submit button */
#submit-btn {
  margin-top: 0.5rem;
}
#submit-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

/* Below form */
.contact__privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.contact__lock-icon { display: block; opacity: 0.7; flex-shrink: 0; }

.contact__whatsapp {
  text-align: center;
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-top: 0.375rem;
}

.contact__wa-link {
  color: var(--navy);
  font-weight: 600;
  transition: color var(--transition);
}
.contact__wa-link:hover { color: var(--amber); }

/* Success state */
.form-success {
  text-align: center;
  padding: 2rem 0;
}

.form-success__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--white);
  font-size: 1.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.form-success h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

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

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.75);
}

.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 3.5rem;
  padding-bottom: 3rem;
  flex-wrap: wrap;
}

.footer__logo {
  margin-bottom: 0.75rem;
  mix-blend-mode: screen;
  opacity: 1;
}

.footer__tagline {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 300px;
  line-height: 1.6;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: right;
}

.footer__contact a {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition);
}

.footer__contact a:hover {
  color: var(--amber);
}

.footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
}

/* ============================================================
   OFFER VIZ — Scroll-driven bonus animation
   ============================================================ */
.ov {
  background: var(--bg-dark);
  position: relative;
}

.ov__pin {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 560px;
  max-height: 900px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1.25rem;
  gap: 1.125rem;
}

/* Scroll triggers: 7 × 180px = 1,260px of sticky scroll depth */
.ov__triggers div { height: 180px; }

/* ---- Browser mockup ---- */
.ov__browser {
  width: 100%;
  max-width: 260px;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 64px rgba(0, 0, 0, 0.6);
  flex-shrink: 0;
  transition: box-shadow 0.4s ease;
  z-index: 1;
  position: relative;
}

.ov__browser.pulse {
  box-shadow: 0 0 0 3px rgba(232, 149, 74, 0.7), 0 16px 64px rgba(0, 0, 0, 0.6);
}

.ov__chrome {
  background: #e0e0e0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.75rem;
}

.ov__dots {
  display: flex;
  gap: 4px;
  flex-shrink: 0;
}

.ov__dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #bbb;
}

.ov__url {
  flex: 1;
  background: var(--white);
  border-radius: 3px;
  font-family: 'Inter', sans-serif;
  font-size: 0.5625rem;
  color: #aaa;
  padding: 0.175rem 0.4rem;
  white-space: nowrap;
  overflow: hidden;
}

.ov__screen {
  padding: 1rem 1.25rem 1.375rem;
  background: var(--bg-primary);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ov__wf           { background: var(--border); border-radius: 3px; }
.ov__wf--h1       { height: 18px; width: 80%; }
.ov__wf--sub      { height: 11px; width: 62%; }

.ov__wf-cta {
  height: 28px;
  width: 38%;
  background: var(--navy);
  border-radius: 5px;
  margin-top: 0.375rem;
  opacity: 0.85;
}

/* ---- Chips (mobile: stacked flex within pin) ---- */
.ov__chip {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  padding: 0.55rem 0.875rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--white);
  will-change: transform, opacity;
}

.ov__chip svg  { color: var(--amber); margin-bottom: 0.175rem; flex-shrink: 0; }
.ov__chip span { font-size: 0.8125rem; font-weight: 700; line-height: 1.2; }
.ov__chip em   { font-style: normal; font-size: 0.65rem; font-weight: 400; color: rgba(255,255,255,0.45); }

/* Mobile: chips hidden — counter + final reveal carry the experience */
@media (max-width: 767px) {
  .ov__chip { display: none; }
}

/* ---- Desktop: chips orbit the browser ---- */
@media (min-width: 768px) {
  .ov__pin {
    display: block;
    padding: 0;
  }

  .ov__chip {
    position: absolute;
    z-index: 2;
  }

  .ov__chip--1 { top: 9%;    left: 4%;   animation: ovFloat 3.2s ease-in-out 0s    infinite; }
  .ov__chip--2 { top: 7%;    right: 4%;  animation: ovFloat 2.9s ease-in-out 0.45s infinite; }
  .ov__chip--3 { top: 40%;   left: 1%;   animation: ovFloat 3.5s ease-in-out 0.9s  infinite; }
  .ov__chip--4 { top: 38%;   right: 1%;  animation: ovFloat 2.7s ease-in-out 0.25s infinite; }
  .ov__chip--5 { bottom: 16%; left: 5%;  animation: ovFloat 3.1s ease-in-out 0.7s  infinite; }
  .ov__chip--6 { bottom: 14%; right: 3%; animation: ovFloat 2.8s ease-in-out 1.1s  infinite; }

  .ov__browser {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    max-width: 280px;
    width: 280px;
  }

  .ov__price {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 440px;
  }
}

@keyframes ovFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

/* ---- Price display ---- */
.ov__price { text-align: center; flex-shrink: 0; }

.ov__price-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.38);
  letter-spacing: 0.04em;
  margin-bottom: 0.25rem;
}

.ov__price-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  color: var(--white);
  transition: color 0.3s ease;
  line-height: 1;
}

.ov__price-num.flash { color: var(--amber); }

/* Final reveal */
.ov__price-final {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.875rem;
}

.ov__price-final.visible {
  display: flex;
  animation: ovFadeUp 0.55s ease forwards;
}

.ov__market { position: relative; display: inline-block; }

.ov__market span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.38);
  position: relative;
}

/* Animated strikethrough */
.ov__market span::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.5);
  transition: width 0.55s ease 0.3s;
}

.ov__price-final.visible .ov__market span::after { width: 100%; }

.ov__price-yours {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  font-weight: 800;
  color: var(--amber);
}

.ov__price-note {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.38);
}

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

@media (prefers-reduced-motion: reduce) {
  .ov__chip           { animation: none !important; }
  .ov__market span::after { transition: none; }
}

/* Post-animation CTA */
.offer__post {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 3rem 0 1.5rem;
  text-align: center;
}

.offer__post-note {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ============================================================
   HERO VISUAL IMAGE
   ============================================================ */
.hero__visual {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}

.hero__visual-img {
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius);
  box-shadow: 0 16px 64px rgba(0,0,0,0.25), 0 4px 16px rgba(0,0,0,0.15);
  display: block;
}

/* ============================================================
   PROBLEM FEATURE IMAGE
   ============================================================ */
.problem__feature-img {
  max-width: 580px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.problem__feature-photo {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  display: block;
  margin-bottom: 0.875rem;
}

.problem__feature-caption {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ============================================================
   HOW IT WORKS — NEW ELEMENTS
   ============================================================ */
.how__eyebrow {
  text-align: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.how {
  background: var(--bg-dark);
}

.how h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.how__sub {
  color: rgba(255,255,255,0.55) !important;
  text-align: center;
  max-width: 540px;
  margin: 0 auto 3rem;
  font-size: 1.0625rem;
}

.how__eyebrow {
  color: rgba(255,255,255,0.45);
}

.how__step h3 {
  color: var(--white);
}

.how__step p {
  color: rgba(255,255,255,0.55);
}

.how__step-num {
  background: var(--amber);
  color: var(--white);
}

.how__connector {
  border-top-color: rgba(255,255,255,0.15);
}

/* ============================================================
   FOUNDER — NEW ELEMENTS
   ============================================================ */
.founder__inner {
  grid-template-columns: 380px 1fr;
}

.founder__eyebrow {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
}

.founder__story p {
  font-style: normal;
}

.founder__quote {
  border-left: 3px solid var(--navy);
  padding: 0.75rem 0 0.75rem 1.25rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.0625rem;
  line-height: 1.5;
  color: var(--navy);
  font-style: normal;
  margin: 0.5rem 0;
}

/* ============================================================
   PRICING SECTION
   ============================================================ */
.pricing {
  background: var(--bg-primary);
}

.pricing__eyebrow {
  text-align: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.pricing h2 {
  margin-bottom: 1rem;
}

.pricing__sub {
  max-width: 480px;
  margin: 0 auto 3rem;
  text-align: center;
  font-size: 1.0625rem;
}

@property --pricing-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

.pricing__card {
  max-width: 560px;
  margin: 0 auto;
  background:
    radial-gradient(ellipse 90% 55% at 50% -10%, rgba(45, 84, 144, 0.5) 0%, transparent 60%),
    var(--bg-dark);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  color: var(--white);
  position: relative;
  box-shadow: 0 24px 80px rgba(16, 24, 40, 0.35);
}

/* Animated conic gradient border glow — masked to a thin ring */
.pricing__card::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius) + 2px);
  padding: 2px;
  background: conic-gradient(
    from var(--pricing-angle),
    rgba(232, 149, 74, 0.15) 0%,
    rgba(232, 149, 74, 0.9) 12%,
    rgba(245, 176, 122, 1) 18%,
    rgba(232, 149, 74, 0.15) 32%,
    rgba(45, 84, 144, 0.7) 55%,
    rgba(232, 149, 74, 0.15) 70%,
    rgba(232, 149, 74, 0.15) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  animation: pricingBorderSpin 6s linear infinite;
}

@keyframes pricingBorderSpin {
  to { --pricing-angle: 360deg; }
}

@media (prefers-reduced-motion: reduce) {
  .pricing__card::before {
    animation: none;
    background: linear-gradient(135deg, rgba(232,149,74,0.7), rgba(45,84,144,0.5));
  }
}

.pricing__card-badge {
  display: inline-block;
  background: var(--grad-amber);
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.875rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

.pricing__card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.375rem;
  color: var(--white);
  margin-bottom: 0.375rem;
}

.pricing__card-sub {
  color: rgba(255,255,255,0.5);
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
}

.pricing__card-old {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.35);
  text-decoration: line-through;
  margin-bottom: 0.25rem;
}

.pricing__card-price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 6vw, 3rem);
  color: var(--amber);
  line-height: 1.1;
  margin-bottom: 0.375rem;
}

.pricing__card-once {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
}

.pricing__card-hosting {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.75rem;
}

.pricing__card-hosting strong {
  color: var(--amber);
}

.pricing__card-terms {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.25rem 1rem;
  margin-bottom: 1.75rem;
}

.pricing__card-terms-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.625rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.875rem;
}

.pricing__card-terms-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 0.5rem;
}

.pricing__card-terms-row:last-child { margin-bottom: 0; }

.pricing__pct {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  color: var(--amber);
  min-width: 2.5rem;
}

.pricing__checklist {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.pricing__checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}

.pricing__checklist li svg {
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.pricing__checklist li svg circle { fill: rgba(255,255,255,0.08); }
.pricing__checklist li svg polyline { stroke: var(--amber); }

.pricing__card-slots {
  text-align: center;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.38);
  margin-top: 1rem;
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats {
  background: var(--white);
  padding: 4rem 0;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
}

.stats__num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  background: var(--grad-navy);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--navy);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.stats__num .stats__pct {
  -webkit-text-fill-color: var(--amber);
}

.stats__pct {
  color: var(--amber);
}

.stats__slash {
  color: var(--navy);
  font-weight: 400;
}

.stats__total {
  color: var(--amber);
}

.stats__label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.stats__note {
  font-size: 0.75rem;
  color: var(--text-muted);
  max-width: 140px;
  line-height: 1.4;
}

/* ============================================================
   PORTFOLIO SECTION
   ============================================================ */
.portfolio {
  background: var(--bg-primary);
}

.portfolio__eyebrow {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
}

.portfolio h2 {
  margin-bottom: 0.75rem;
}

.portfolio__sub {
  font-size: 1.0625rem;
  margin-bottom: 3rem;
}

.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.portfolio__item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.portfolio__img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--bg-section);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: box-shadow 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}

.portfolio__item:hover .portfolio__img-wrap {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.portfolio__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.6s var(--ease-out);
}

.portfolio__item:hover .portfolio__img {
  transform: scale(1.05);
}

.portfolio__item-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.portfolio__item-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--text-primary);
  transition: color var(--transition);
}

.portfolio__item-name:hover {
  color: var(--navy);
}

.portfolio__item-type {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.portfolio__cta-note {
  text-align: center;
  font-size: 1rem;
  color: var(--text-muted);
}

.portfolio__cta-link {
  color: var(--navy);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  border-bottom: 1px solid var(--navy);
  transition: opacity var(--transition);
}

.portfolio__cta-link:hover { opacity: 0.7; }

/* ============================================================
   CONTACT — NEW ELEMENTS
   ============================================================ */
.contact__dream-img {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.contact__dream-photo {
  width: 100%;
  max-width: 360px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  display: block;
}

.contact__eyebrow {
  text-align: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
}

/* ============================================================
   STICKY MOBILE CTA BAR
   ============================================================ */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 0.875rem;
  padding: 0.75rem 1.25rem calc(0.75rem + env(safe-area-inset-bottom));
  background: rgba(13, 27, 51, 0.92);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.3);
  transform: translateY(110%);
  transition: transform 0.4s var(--ease-out);
}

.sticky-cta.show { transform: translateY(0); }

.sticky-cta__text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.sticky-cta__price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  line-height: 1.2;
  white-space: nowrap;
}

.sticky-cta__price s {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
  font-size: 0.8125rem;
  margin-right: 0.35rem;
}

.sticky-cta__note {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
}

.sticky-cta .btn {
  padding: 0.75rem 1.35rem;
  font-size: 0.9375rem;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .sticky-cta { display: flex; }
}

/* ============================================================
   FORM SUBMIT SPINNER + SUCCESS
   ============================================================ */
.btn__spinner {
  width: 18px;
  height: 18px;
  border: 2.5px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: btnSpin 0.7s linear infinite;
  flex-shrink: 0;
}

@keyframes btnSpin {
  to { transform: rotate(360deg); }
}

.form-success__icon {
  animation: successPop 0.5s var(--ease-spring) both;
}

@keyframes successPop {
  0%   { transform: scale(0.4); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet: 768px – 1199px */
@media (max-width: 1199px) {
  .problem__grid    { grid-template-columns: repeat(2, 1fr); }
  .founder__inner   { grid-template-columns: 1fr; gap: 3rem; }
  .founder__photo   { justify-content: flex-start; }
  .founder__photo-img { max-width: 300px; height: 360px; }
  .stats__grid      { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
  .portfolio__grid  { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile: < 768px */
@media (max-width: 767px) {
  .section { padding: 3.5rem 0; }
  .container { padding: 0 1.25rem; }

  /* Let headlines wrap naturally on narrow screens */
  h1 br, h2 br { display: none; }

  /* Navbar */
  .navbar { padding: 0.875rem 0; }
  .navbar__logo img { height: 28px; }
  .navbar .btn { padding: 0.6rem 1.1rem; font-size: 0.875rem; }

  /* Hero */
  .hero { padding: 7rem 0 4rem; }
  .hero__trust { gap: 0.5rem 1rem; }
  .hero__trust-item { font-size: 0.8125rem; }

  /* Problem */
  .problem__grid { grid-template-columns: 1fr; }

  /* Offer bonuses */
  .offer__bonus { grid-template-columns: 2.5rem 1fr; }
  .offer__bonus-value { grid-column: 2; justify-self: end; }

  /* How It Works */
  .how__steps { grid-template-columns: 1fr; gap: 2.5rem; }
  .how__connector { display: none; }
  .how__step { text-align: left; }
  .how__step-num { margin: 0 0 1rem; }
  .how__step p { max-width: none; }

  /* Founder */
  .founder__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .founder__photo-img { max-width: 280px; height: 320px; }

  /* Pricing */
  .pricing__card { padding: 2rem 1.25rem; }
  .pricing__card-price { font-size: 2.5rem; }

  /* Guarantees */
  .guarantees__grid { grid-template-columns: 1fr; }

  /* Stats */
  .stats { padding: 3rem 0; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }

  /* Portfolio */
  .portfolio__grid { grid-template-columns: 1fr; }

  /* Urgency */
  .urgency__inner { flex-direction: column; text-align: center; align-items: center; gap: 1.25rem; }
  .urgency__cta { width: 100%; justify-content: center; }
  .urgency__countdown { justify-content: center; }
  .urgency__count-unit { min-width: 56px; }

  /* Footer clears the sticky CTA bar */
  .footer__bar { padding-bottom: 5.5rem; }

  /* Contact form */
  .contact__card { padding: 2rem 1.25rem; }

  /* Footer */
  .footer__inner { flex-direction: column; }
  .footer__contact { text-align: left; }

  /* Offer total */
  .offer__total { flex-direction: column; gap: 0.25rem; text-align: center; }
}
