@font-face {
  font-family: 'BB Anonym Pro';
  src: url('fonts/BBAnonymPro-Light.otf') format('opentype');
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: 'BB Anonym Pro';
  src: url('fonts/BBAnonymPro-Regular.otf') format('opentype');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'BB Anonym Pro';
  src: url('fonts/BBAnonymPro-Medium.otf') format('opentype');
  font-weight: 500;
  font-display: swap;
}

:root {
  --blue: #4A8DF8;
  --blue-deep: #2E6FDB;
  --blue-light: #A3CDFF;
  --blue-wash: #EBF3FF;
  --white: #FFF;
  --w90: rgba(255, 255, 255, .92);
  --w70: rgba(255, 255, 255, .70);
  --w50: rgba(255, 255, 255, .50);
  --w30: rgba(255, 255, 255, .30);
  --w15: rgba(255, 255, 255, .15);
  --w08: rgba(255, 255, 255, .08);
  --w04: rgba(255, 255, 255, .04);
  --font: 'BB Anonym Pro', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease: cubic-bezier(.4, 0, .2, 1);
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 20px;
  --r-2xl: 24px;
  --r-full: 100px;
}

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

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

body {
  font-family: var(--font);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  background: #2E6FDB
}

img {
  max-width: 100%;
  height: auto;
  display: block
}

a {
  color: var(--white);
  text-decoration: none
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px
}

section {
  padding: 100px 0;
  position: relative;
  overflow: hidden
}

.section-divider {
  width: 100%;
  height: 1px;
  border: none;
  background: linear-gradient(90deg, transparent, var(--w15), transparent)
}

/* ─── LIQUID GLASS ─── */
.liquid-glass {
  background: linear-gradient(135deg, rgba(255, 255, 255, .12) 0%, rgba(255, 255, 255, .04) 40%, rgba(255, 255, 255, .08) 100%);
  backdrop-filter: blur(24px) saturate(180%) brightness(1.1);
  -webkit-backdrop-filter: blur(24px) saturate(180%) brightness(1.1);
  border: 1px solid;
  border-image: linear-gradient(135deg, rgba(255, 255, 255, .35), rgba(255, 255, 255, .08), rgba(255, 255, 255, .20)) 1;
  position: relative;
}

.liquid-glass-rounded {
  background: linear-gradient(135deg, rgba(255, 255, 255, .12) 0%, rgba(255, 255, 255, .04) 40%, rgba(255, 255, 255, .08) 100%);
  backdrop-filter: blur(24px) saturate(180%) brightness(1.1);
  -webkit-backdrop-filter: blur(24px) saturate(180%) brightness(1.1);
  border: 1px solid rgba(255, 255, 255, .20);
  position: relative;
  overflow: hidden;
}

/* Specular highlight */
.liquid-glass-rounded::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, .12) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

/* Edge refraction shimmer */
.liquid-glass-rounded::after {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(163, 205, 255, .20), transparent 40%, transparent 60%, rgba(74, 141, 248, .15));
  pointer-events: none;
  z-index: 0;
  opacity: .6;
}

/* ═══════════════ HEADER NAV ═══════════════ */
.header {
  position: fixed;
  top: 24px;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0;
  transition: top .3s var(--ease);
  /* No background on header itself — glass lives on the pill */
}

.header.scrolled {
  top: 12px;
}

/* ─── Liquid Glass Navbar Pill ─── */
.navbar__pill {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 12px;
  padding: 12px 12px 12px 28px;
  border-radius: 999px;
  /* Glass base */
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px) saturate(1.5);
  -webkit-backdrop-filter: blur(12px) saturate(1.5);
  /* Depth shadows — inset for glass look */
  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.15),
    inset 0 1px 2px rgba(255, 255, 255, 0.25),
    inset 0 -1px 1px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: box-shadow .3s var(--ease), background .3s var(--ease);
}

/* Specular radial glow overlay */
.navbar__pill::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.22), transparent 70%);
  opacity: 0.6;
  pointer-events: none;
  border-radius: inherit;
}

/* Top edge highlight */
.navbar__pill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 12px;
  right: 12px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  border-radius: inherit;
  pointer-events: none;
}

.navbar__pill:hover {
  background: rgba(255, 255, 255, 0.18);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.20),
    inset 0 2px 4px rgba(255, 255, 255, 0.30),
    inset 0 -1px 1px rgba(0, 0, 0, 0.08);
}

.header__logo {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: opacity .3s var(--ease);
}

.header__logo:hover {
  opacity: 0.8;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 8px
}

.header__link {
  padding: 8px 16px;
  font-size: .875rem;
  font-weight: 400;
  color: var(--w70);
  border-radius: var(--r-full);
  transition: color .25s, background .25s;
}

.header__link:hover {
  color: var(--white);
  background: var(--w08)
}

.header__cta {
  padding: 10px 24px;
  font-size: .875rem;
  font-weight: 500;
  font-family: var(--font);
  color: var(--blue-deep);
  background: var(--white);
  border: none;
  border-radius: var(--r-full);
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .15);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.header__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, .20)
}

/* ─── HAMBURGER BUTTON ─── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 110;
  -webkit-tap-highlight-color: transparent;
}
.hamburger__line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.hamburger.is-active .hamburger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.is-active .hamburger__line:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active .hamburger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─── MOBILE NAV DRAWER ─── */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100dvh;
  background: rgba(30, 70, 160, 0.97);
  backdrop-filter: blur(40px) saturate(1.6);
  -webkit-backdrop-filter: blur(40px) saturate(1.6);
  z-index: 105;
  padding: 100px 32px 40px;
  transform: translateX(100%);
  transition: transform .35s var(--ease);
}
.mobile-nav.is-open {
  transform: translateX(0);
}
.mobile-nav__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mobile-nav__link {
  display: block;
  padding: 16px 20px;
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--w90);
  border-radius: var(--r-md);
  transition: background .25s, color .25s;
  text-decoration: none;
}
.mobile-nav__link:hover,
.mobile-nav__link:active {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}
.mobile-nav__cta {
  margin-top: 16px;
  text-align: center;
  background: var(--white);
  color: var(--blue-deep) !important;
  font-weight: 500;
  border-radius: var(--r-full);
  padding: 16px 24px;
}
.mobile-nav__cta:hover {
  background: rgba(255,255,255,0.9);
}
.mobile-nav__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 104;
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.mobile-nav__overlay.is-visible {
  opacity: 1;
}

/* ─── HERO SOCIAL PROOF ─── */
.hero__proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
  animation: fadeUp .8s var(--ease) .65s both;
}
.hero__proof-avatars {
  display: flex;
}
.hero__proof-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2.5px solid rgba(255,255,255,0.5);
  margin-left: -10px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.hero__proof-avatar:first-child { margin-left: 0; }
.hero__proof-text {
  font-size: .875rem;
  font-weight: 300;
  color: var(--w70);
}
.hero__proof-text strong {
  font-weight: 500;
  color: var(--white);
}

/* ─── ACTIVE NAV STATE ─── */
.header__link.is-active {
  color: var(--white);
  background: var(--w08);
}

/* ─── BACK TO TOP ─── */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), background .25s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top:hover {
  background: rgba(255,255,255,0.25);
}
.back-to-top svg {
  width: 20px;
  height: 20px;
}

@media(max-width:768px) {
  .header__nav,
  .header__cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .mobile-nav {
    display: block;
  }
}

/* ═══════════════ HERO ═══════════════ */
.hero {
  background: linear-gradient(165deg, #2E6FDB 0%, #4A8DF8 50%, #5A9AFC 100%);
  padding-top: 160px;
  padding-bottom: 120px;
  text-align: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(163, 205, 255, .20), transparent),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(255, 255, 255, .08), transparent),
    radial-gradient(ellipse 40% 40% at 50% 50%, rgba(163, 205, 255, .10), transparent);
  pointer-events: none;
  animation: heroShift 12s ease-in-out infinite alternate;
}

@keyframes heroShift {
  0% {
    opacity: .7;
    transform: scale(1)
  }

  100% {
    opacity: 1;
    transform: scale(1.05)
  }
}

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

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px 8px 10px;
  margin-bottom: 40px;
  border-radius: var(--r-full);
  font-size: .8125rem;
  font-weight: 400;
  color: var(--w90);
  animation: fadeUp .8s var(--ease) .1s both;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6FE89D;
  box-shadow: 0 0 8px rgba(111, 232, 157, .50);
  animation: pulse 2s ease-in-out infinite
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .6;
    transform: scale(.85)
  }
}

.hero__headline {
  font-size: clamp(2.75rem, 7vw, 5rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 28px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeUp .8s var(--ease) .2s both;
}

.hero__headline em {
  font-style: normal;
  color: var(--blue-light)
}

.hero__sub {
  font-size: clamp(1.0625rem, 2.5vw, 1.25rem);
  font-weight: 300;
  color: var(--w70);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.7;
  animation: fadeUp .8s var(--ease) .35s both;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp .8s var(--ease) .5s both;
}

/* Shared button styles */
.btn-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 40px;
  font-size: 1.0625rem;
  font-weight: 500;
  font-family: var(--font);
  color: var(--blue-deep);
  background: var(--white);
  border: none;
  border-radius: var(--r-full);
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .18), 0 0 60px rgba(163, 205, 255, .12);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn-solid::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(163, 205, 255, .20), transparent 50%);
  opacity: 0;
  transition: opacity .3s
}

.btn-solid:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 36px rgba(0, 0, 0, .22), 0 0 80px rgba(163, 205, 255, .18)
}

.btn-solid:hover::before {
  opacity: 1
}

.btn-solid:active {
  transform: translateY(-1px)
}

.btn-solid:disabled {
  opacity: .5;
  cursor: not-allowed;
  transform: none
}

.btn-ghost {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 18px 32px;
  font-size: 1.0625rem;
  font-weight: 400;
  font-family: var(--font);
  color: var(--white);
  border-radius: var(--r-full);
  cursor: pointer;
  /* Glass base */
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px) saturate(1.5);
  -webkit-backdrop-filter: blur(12px) saturate(1.5);
  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.15),
    inset 0 1px 2px rgba(255, 255, 255, 0.25),
    inset 0 -1px 1px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: box-shadow .3s var(--ease), background .3s var(--ease), transform .3s var(--ease);
}

.btn-ghost::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.22), transparent 70%);
  opacity: 0.6;
  pointer-events: none;
  border-radius: inherit;
}

.btn-ghost::after {
  content: '';
  position: absolute;
  top: 0;
  left: 12px;
  right: 12px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  border-radius: inherit;
  pointer-events: none;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.20),
    inset 0 2px 4px rgba(255, 255, 255, 0.30),
    inset 0 -1px 1px rgba(0, 0, 0, 0.08);
}

.btn-ghost svg {
  width: 18px;
  height: 18px
}

/* ═══════════════ HOW IT WORKS ═══════════════ */
.how-it-works {
  background: linear-gradient(170deg, #3A7DE6 0%, #2E6FDB 100%);
  padding: 80px 0
}

.how-it-works__header {
  text-align: center;
  margin-bottom: 80px
}

.how-it-works__label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--blue-light);
  margin-bottom: 16px;
}

.how-it-works__title {
  margin-bottom: 16px
}

.how-it-works__sub {
  font-size: 1.0625rem;
  font-weight: 300;
  color: var(--w70);
  max-width: 480px;
  margin: 0 auto
}

/* Steps Grid layout */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .steps-grid { 
    grid-template-columns: repeat(3, 1fr); 
    gap: 32px; 
    align-items: flex-start;
  }
  /* Stagger the middle card for a less generic, dynamic look */
  .step-card:nth-child(2) { margin-top: 64px; }
}

.step-card {
  padding: 48px 32px;
  border-radius: var(--r-2xl);
  text-align: left;
  position: relative;
  overflow: hidden;
  z-index: 1;
  /* Rich Liquid Glass */
  background: 
    radial-gradient(circle at top left, rgba(255,255,255,0.12), transparent 50%),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.15),
    inset 0 1px 1px rgba(255, 255, 255, 0.2),
    inset 0 -1px 2px rgba(0, 0, 0, 0.05);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), background .4s, border-color .4s;
}
.step-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.25);
  background: 
    radial-gradient(circle at top left, rgba(255,255,255,0.20), transparent 60%),
    rgba(255, 255, 255, 0.08);
  box-shadow:
    0 32px 100px rgba(0, 0, 0, 0.25),
    inset 0 1px 2px rgba(255, 255, 255, 0.4),
    inset 0 -1px 2px rgba(0, 0, 0, 0.05);
}

/* Massive Typographic Watermarks */
.step-card::after {
  position: absolute;
  right: -10px;
  bottom: -40px;
  font-size: 16rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
  color: rgba(255, 255, 255, 0.03);
  z-index: -1;
  pointer-events: none;
  transition: color .4s, transform .4s var(--ease);
}
.step-card:hover::after {
  color: rgba(255, 255, 255, 0.06);
  transform: scale(1.05) translate(-10px, -10px);
}
.step-card:nth-child(1)::after { content: '1'; }
.step-card:nth-child(2)::after { content: '2'; }
.step-card:nth-child(3)::after { content: '3'; }

.step-card__icon {
  width: 64px; height: 64px;
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, rgba(255,255,255,0.25), rgba(255,255,255,0.05));
  border: 1px solid rgba(255,255,255,0.3);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1), inset 0 2px 4px rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  margin-bottom: 40px;
}
.step-card__icon svg { width: 28px; height: 28px; }
.step-card__label {
  font-size: .75rem; font-weight: 500; text-transform: uppercase;
  letter-spacing: .16em; color: var(--blue-light); margin-bottom: 12px;
}
.step-card__title {
  font-size: 1.5rem; font-weight: 500; color: var(--white); margin-bottom: 16px;
  letter-spacing: -0.02em; line-height: 1.2;
}
.step-card__desc {
  font-size: 1rem; font-weight: 300; color: var(--w70); line-height: 1.7;
}

/* ═══════════════ CHECKOUT (PRICING + EMAIL) ═══════════════ */
.checkout-section {
  background: linear-gradient(170deg, #4A8DF8, #3B7EE8);
  position: relative;
  padding: 120px 0
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

@media(min-width:900px) {
  .checkout-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
  }
}

.pricing__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(163, 205, 255, .12), transparent 65%);
  pointer-events: none;
  animation: orbFloat 14s ease-in-out infinite;
}

.pricing__card {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  padding: 48px 40px;
  border-radius: var(--r-2xl);
  text-align: left;
  position: relative;
  /* Liquid glass look */
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.25),
    inset 0 1px 2px rgba(255, 255, 255, 0.3),
    inset 0 -1px 2px rgba(0, 0, 0, 0.1);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}

.pricing__card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 32px 100px rgba(0, 0, 0, 0.30),
    inset 0 1px 2px rgba(255, 255, 255, 0.4),
    inset 0 -1px 2px rgba(0, 0, 0, 0.1);
}

/* Specular glow */
.pricing__card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.25), transparent 60%);
  pointer-events: none;
  border-radius: inherit;
}

.pricing__badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  font-size: .8125rem;
  font-weight: 500;
  border-radius: var(--r-full);
  margin-bottom: 24px;
}

.pricing__price-wrapper {
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 32px;
}

.pricing__original {
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--w50);
  text-decoration: line-through;
  margin-bottom: 4px
}

.pricing__current {
  font-size: 4.5rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.04em
}

.pricing__label {
  font-size: .875rem;
  font-weight: 400;
  color: var(--w90);
}

.pricing__features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--white);
  font-weight: 300;
}

.pricing__features svg {
  width: 20px;
  height: 20px;
  color: #6FE89D;
  flex-shrink: 0;
}

.pricing__microcopy {
  font-size: .8125rem;
  font-weight: 400;
  color: var(--w70);
  line-height: 1.6;
  text-align: center;
  margin-bottom: 16px;
}

.pricing__cta {
  width: 100%;
  padding: 18px;
  font-size: 1.0625rem;
  font-weight: 500;
  font-family: var(--font);
  color: var(--blue-deep);
  background: var(--white);
  border: none;
  border-radius: var(--r-lg);
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  position: relative;
  z-index: 2;
}

.pricing__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .25)
}

/* Email form inside checkout grid */
.email-section__inner {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
  padding: 56px 48px;
  border-radius: var(--r-2xl);
  position: relative;
  /* Liquid glass look */
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.25),
    inset 0 1px 2px rgba(255, 255, 255, 0.3),
    inset 0 -1px 2px rgba(0, 0, 0, 0.1);
}

.email-section__inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.25), transparent 60%);
  pointer-events: none;
  border-radius: inherit;
}

.email-section__inner>* {
  position: relative;
  z-index: 2;
}

.email-section__title {
  margin-bottom: 12px
}

.email-section__subtitle {
  margin-bottom: 40px
}

.email-form {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.email-form__input {
  flex: 1;
  padding: 16px 22px;
  font-size: 1rem;
  font-family: var(--font);
  font-weight: 400;
  color: var(--white);
  border-radius: var(--r-full);
  outline: none;
  /* Glass base */
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px) saturate(1.5);
  -webkit-backdrop-filter: blur(12px) saturate(1.5);
  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.15),
    inset 0 1px 2px rgba(255, 255, 255, 0.25),
    inset 0 -1px 1px rgba(0, 0, 0, 0.08);
  transition: box-shadow .3s var(--ease), background .3s var(--ease), border-color .3s;
}

.email-form__input::placeholder {
  color: var(--w70)
}

.email-form__input:focus {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.20),
    inset 0 2px 4px rgba(255, 255, 255, 0.30),
    inset 0 -1px 1px rgba(0, 0, 0, 0.08),
    0 0 0 3px rgba(255, 255, 255, 0.15);
}

.email-form__submit {
  flex-shrink: 0
}

.email-success {
  display: none;
  padding: 32px;
  border-radius: var(--r-xl);
  text-align: center;
  animation: fadeUp .5s var(--ease)
}

.email-success.is-visible {
  display: block
}

.email-success__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .12)
}

.email-success__icon svg {
  width: 26px;
  height: 26px;
  color: var(--blue-deep)
}

.email-success__title {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 8px
}

.email-success__text {
  font-size: .9375rem;
  font-weight: 300;
  color: var(--w70)
}

.email-form__error {
  display: none;
  font-size: .8125rem;
  color: var(--w90);
  text-align: center;
  margin-top: 4px
}

.email-form__error.is-visible {
  display: block
}

.btn-solid .spinner,
.pricing__cta .spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(46, 111, 219, .25);
  border-top-color: var(--blue-deep);
  border-radius: 50%;
  animation: spin .6s linear infinite
}

.btn-solid.is-loading .spinner {
  display: block
}

.btn-solid.is-loading .btn-text {
  opacity: 0
}

/* ═══════════════ FAQ ═══════════════ */
.faq {
  background: linear-gradient(170deg, #4A8DF8, #2E6FDB)
}

.faq__header {
  text-align: center;
  margin-bottom: 56px
}

.faq__label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--blue-light);
  margin-bottom: 16px
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 640px;
  margin: 0 auto
}

.faq__item {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  /* Glass base */
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px) saturate(1.5);
  -webkit-backdrop-filter: blur(12px) saturate(1.5);
  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.15),
    inset 0 1px 2px rgba(255, 255, 255, 0.25),
    inset 0 -1px 1px rgba(0, 0, 0, 0.08);
  transition: box-shadow .3s var(--ease), background .3s var(--ease);
}

.faq__item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.15), transparent 70%);
  opacity: 0.6;
  pointer-events: none;
  border-radius: inherit;
}

.faq__item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 12px;
  right: 12px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  border-radius: inherit;
  pointer-events: none;
}

.faq__item.is-open {
  background: rgba(255, 255, 255, 0.18);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.20),
    inset 0 2px 4px rgba(255, 255, 255, 0.30),
    inset 0 -1px 1px rgba(0, 0, 0, 0.08);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  font-size: 1rem;
  font-weight: 500;
  font-family: var(--font);
  color: var(--white);
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  position: relative;
  z-index: 2;
  /* Ensure text is above ::before overlay */
}

.faq__item.is-open .faq__question {
  background: transparent
}

.faq__chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--w50);
  transition: transform .3s var(--ease), color .3s
}

.faq__item.is-open .faq__chevron {
  transform: rotate(180deg);
  color: var(--white)
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease)
}

.faq__answer-inner {
  padding: 0 24px 22px;
  font-size: .9375rem;
  font-weight: 300;
  color: var(--w70);
  line-height: 1.8
}

/* ═══════════════ FOOTER ═══════════════ */
.footer {
  background: linear-gradient(170deg, #2E6FDB, #1B5ABF);
  padding: 80px 0 24px;
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.footer__glow {
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 1200px;
  height: 600px;
  background: radial-gradient(ellipse at bottom, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02), transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.footer .container {
  position: relative;
  z-index: 2;
}

.footer__top {
  margin-bottom: 64px;
  max-width: 840px;
}

.footer__top-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .875rem;
  font-weight: 500;
  color: var(--blue-light);
  margin-bottom: 24px;
}

.footer__top-label svg {
  width: 14px;
  height: 14px;
}

.footer__top-heading {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--white);
}

.footer__top-heading span {
  color: var(--w50);
}

.footer__middle {
  display: flex;
  flex-direction: column;
  gap: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 48px;
  margin-bottom: 32px;
}

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

.footer__contact-label {
  font-size: .8125rem;
  font-weight: 300;
  color: var(--w50);
  margin-bottom: 8px;
}

.footer__contact-email {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color .3s;
}

.footer__contact-email:hover {
  color: var(--blue-light);
}

.footer__contact-email svg {
  width: 18px;
  height: 18px;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 32px;
}

.footer__nav a {
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--white);
  text-decoration: none;
  transition: opacity .3s;
}

.footer__nav a:hover {
  opacity: 0.7;
}

.footer__huge-logo {
  font-size: 9.5vw;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--white);
  margin-bottom: 90px;
  white-space: nowrap;
}

@media(min-width:1400px) {
  .footer__huge-logo {
    font-size: 133px;
  }
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

@media(min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
  }
}

.footer__copy {
  font-size: .8125rem;
  font-weight: 300;
  color: var(--w50);
}

.footer__socials-text {
  display: flex;
  gap: 24px;
}

.footer__socials-text a {
  font-size: .8125rem;
  font-weight: 300;
  color: var(--w50);
  text-decoration: none;
  transition: color .3s;
}

.footer__socials-text a:hover {
  color: var(--white);
}

/* ═══════════════ ANIMATIONS ═══════════════ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

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

@keyframes orbFloat {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1)
  }

  50% {
    transform: translate(-50%, -50%) scale(1.1)
  }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0)
}

.reveal-delay-1 {
  transition-delay: .1s
}

.reveal-delay-2 {
  transition-delay: .2s
}

.reveal-delay-3 {
  transition-delay: .3s
}

/* ═══════════════ TABLET BREAKPOINT ═══════════════ */
@media(max-width:900px) {
  section {
    padding: 80px 0;
  }
  .hero {
    padding-top: 140px;
    padding-bottom: 100px;
    min-height: auto;
  }
  .hero__headline {
    font-size: clamp(2.25rem, 6vw, 3.5rem);
  }
  .hero__sub {
    font-size: 1.0625rem;
    margin-bottom: 36px;
  }
  .btn-solid {
    padding: 16px 32px;
    font-size: 1rem;
  }
  .btn-ghost {
    padding: 16px 24px;
    font-size: 1rem;
  }
  .how-it-works__header {
    margin-bottom: 48px;
  }
  .step-card {
    padding: 36px 28px;
  }
  .step-card::after {
    font-size: 10rem;
  }
  .checkout-section {
    padding: 80px 0;
  }
  .faq__question {
    padding: 20px 20px;
    font-size: .9375rem;
  }
  .footer__top {
    margin-bottom: 48px;
  }
  .footer__huge-logo {
    margin-bottom: 48px;
  }
}

/* ═══════════════ MOBILE BREAKPOINT ═══════════════ */
@media(max-width:480px) {
  section {
    padding: 60px 0;
  }
  .container {
    padding: 0 20px;
  }
  /* Header */
  .navbar__pill {
    padding: 10px 10px 10px 20px;
  }
  .header__logo {
    font-size: 1rem;
  }
  /* Hero */
  .hero {
    padding-top: 120px;
    padding-bottom: 72px;
    min-height: auto;
  }
  .hero__badge {
    font-size: .75rem;
    padding: 6px 14px 6px 8px;
    margin-bottom: 28px;
  }
  .hero__headline {
    font-size: 2.25rem;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
  }
  .hero__headline br {
    display: none;
  }
  .hero__sub {
    font-size: .9375rem;
    margin-bottom: 32px;
    line-height: 1.65;
  }
  .hero__actions {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
  .hero__actions .btn-solid,
  .hero__actions .btn-ghost {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
    font-size: 1rem;
  }
  .hero__proof {
    margin-top: 28px;
    gap: 10px;
  }
  .hero__proof-avatar {
    width: 30px;
    height: 30px;
  }
  .hero__proof-text {
    font-size: .8125rem;
  }
  /* How it works */
  .how-it-works {
    padding: 60px 0;
  }
  .how-it-works__header {
    margin-bottom: 36px;
  }
  .how-it-works__title {
    font-size: 1.5rem;
  }
  .how-it-works__sub {
    font-size: .9375rem;
  }
  .steps-grid {
    gap: 16px;
  }
  .step-card {
    padding: 32px 24px;
  }
  .step-card::after {
    font-size: 8rem;
    bottom: -24px;
    right: -8px;
  }
  .step-card__icon {
    width: 52px;
    height: 52px;
    margin-bottom: 28px;
  }
  .step-card__icon svg {
    width: 24px;
    height: 24px;
  }
  .step-card__title {
    font-size: 1.25rem;
    margin-bottom: 12px;
  }
  .step-card__desc {
    font-size: .875rem;
  }
  /* Checkout / Pricing */
  .checkout-section {
    padding: 60px 0;
  }
  .checkout-grid {
    gap: 24px;
  }
  .pricing__card {
    padding: 32px 24px;
  }
  .pricing__current {
    font-size: 3rem;
  }
  .pricing__features {
    gap: 12px;
    margin-bottom: 24px;
  }
  .pricing__features li {
    font-size: .9375rem;
  }
  .pricing__cta {
    padding: 16px;
    font-size: 1rem;
  }
  .email-section__inner {
    padding: 32px 20px;
  }
  .email-section__title {
    font-size: 1.5rem;
  }
  .email-section__subtitle {
    font-size: .9375rem;
    margin-bottom: 28px;
  }
  .email-form__input {
    padding: 14px 18px;
    font-size: .9375rem;
  }
  .email-form__submit {
    padding: 14px 24px;
    font-size: .9375rem;
  }
  /* FAQ */
  .faq {
    padding: 60px 0;
  }
  .faq__header {
    margin-bottom: 32px;
  }
  .faq__header .heading-lg {
    font-size: 1.5rem;
  }
  .faq__question {
    padding: 18px 16px;
    font-size: .9375rem;
    gap: 12px;
    min-height: 56px;
  }
  .faq__answer-inner {
    padding: 0 16px 18px;
    font-size: .875rem;
  }
  /* Footer */
  .footer {
    padding: 60px 0 20px;
  }
  .footer__top {
    margin-bottom: 36px;
  }
  .footer__top-heading {
    font-size: 1.75rem;
    line-height: 1.15;
  }
  .footer__middle {
    gap: 32px;
    padding-bottom: 32px;
    margin-bottom: 16px;
  }
  .footer__contact-email {
    font-size: 1.0625rem;
  }
  .footer__nav {
    gap: 16px 24px;
  }
  .footer__nav a {
    font-size: 1rem;
  }
  .footer__huge-logo {
    font-size: 14vw;
    margin-bottom: 32px;
  }
  .footer__bottom {
    gap: 12px;
  }
  /* Back to top */
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
  }
  .back-to-top svg {
    width: 18px;
    height: 18px;
  }
}

/* ═══════════════ SMALL MOBILE ═══════════════ */
@media(max-width:360px) {
  .container {
    padding: 0 16px;
  }
  .hero__headline {
    font-size: 1.875rem;
  }
  .pricing__current {
    font-size: 2.5rem;
  }
  .step-card {
    padding: 28px 20px;
  }
  .footer__huge-logo {
    font-size: 12vw;
  }
}