/* ============================================================
   HEVA — Main Stylesheet v2
   Brand: Vital Blue #0056D6 · Lime #C3FB11 · Deep Trust #01327B
          Horizon Light Blue #3D96FE · Soft Grey #E9EBF2
   Font: Made Carving Soft (official brand font)
   Style: Hybrid — dark hero + clean white sections
   ============================================================ */

/* === FONT FACE === */
@font-face {
  font-family: 'Made Carving Soft';
  src: url('../fonts/MADECarvingSoft-Light.woff2') format('woff2'),
       url('../fonts/MADECarvingSoft-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Made Carving Soft';
  src: url('../fonts/MADECarvingSoft-Regular.woff2') format('woff2'),
       url('../fonts/MADECarvingSoft-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Made Carving Soft';
  src: url('../fonts/MADECarvingSoft-Medium.woff2') format('woff2'),
       url('../fonts/MADECarvingSoft-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Made Carving Soft';
  src: url('../fonts/MADECarvingSoft-SemiBold.woff2') format('woff2'),
       url('../fonts/MADECarvingSoft-SemiBold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Made Carving Soft';
  src: url('../fonts/MADECarvingSoft-Bold.woff2') format('woff2'),
       url('../fonts/MADECarvingSoft-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* === TOKENS === */
:root {
  /* Brand colors */
  --blue:      #0056D6;   /* Vital Blue — dominant */
  --blue-d:    #01327B;   /* Deep Trust — dark sections */
  --horizon:   #3D96FE;   /* Horizon Light Blue — accents */
  --lime:      #C3FB11;   /* Vibrant Lime — CTA accent only */
  --black:     #151C22;   /* Brand black */
  --white:     #FFFFFF;
  --soft-grey: #E9EBF2;   /* Soft Grey — alt light bg */
  --healing:   #EAFADF;   /* Healing Green — subtle bg */
  --pastel:    #9ECBFF;   /* Pastel Care */

  /* Hero-only dark palette */
  --hero-bg:   #040e22;

  /* UI helpers */
  --muted-dark:  rgba(255,255,255,0.60);
  --muted-light: rgba(21,28,34,0.58);

  /* Typography */
  --ff: 'Made Carving Soft', 'Quicksand', -apple-system, system-ui, sans-serif;
  --ff-d: var(--ff);
  --ff-b: var(--ff);

  /* Layout */
  --max-w: 1140px;
  --nav-h: 60px;
  --r:     14px;
  --r-lg:  22px;

  /* Spacing */
  --space-section:  clamp(72px, 11vw, 120px);
  --space-hero-top: clamp(48px, 9vw, 96px);

  /* Shadows */
  --shadow:      0 32px 72px rgba(0,0,0,0.34);
  --shadow-blue: 0 12px 40px rgba(0,86,214,0.30);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.10);
  --glow:        0 0 100px rgba(0,86,214,0.20);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff);
  background: var(--white);
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font: inherit; }
ul, ol { list-style: none; }

/* === TYPOGRAPHY === */
h1, h2, h3 {
  font-family: var(--ff);
  font-weight: 700;
  line-height: 1.07;
  letter-spacing: -0.028em;
}
h1 { font-size: clamp(2.4rem, 5.6vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 3.0rem); }
h3 { font-size: clamp(1.1rem, 1.8vw, 1.35rem); font-weight: 600; }
p  { line-height: 1.70; font-size: clamp(0.95rem, 1.2vw, 1.05rem); font-weight: 400; }

.eyebrow {
  font-family: var(--ff);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  display: block;
}

/* === LAYOUT === */
.wrap {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 52px);
}
.wrap--sm { max-width: 680px; }

/* Section skins */
.dark-s  { background: var(--blue-d); color: var(--white); }
.light-s { background: var(--white);  color: var(--black); }
.grey-s  { background: var(--soft-grey); color: var(--black); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
}
.nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 clamp(16px, 4vw, 48px);
  gap: 20px;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
.nav.scrolled .nav__inner {
  background: rgba(1, 50, 123, 0.92);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.08);
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.nav__logo img { height: 32px; width: auto; }
.nav__wordmark {
  font-family: var(--ff);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.04em;
}

/* Desktop links */
.nav__links {
  display: none;
  align-items: center;
  gap: 28px;
  margin: 0 auto;
}
.nav__links a {
  font-family: var(--ff);
  font-size: 0.84rem;
  font-weight: 600;
  color: rgba(255,255,255,0.70);
  transition: color 0.2s;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.nav__links a:hover { color: #fff; }

/* Active page indicator */
.nav__links a.active { color: #fff; }

/* Nav actions */
.nav__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

/* Language toggle */
.lang-btn {
  display: none;
  background: none;
  border: 1px solid rgba(255,255,255,0.20);
  color: rgba(255,255,255,0.58);
  font-family: var(--ff);
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: 20px;
  transition: all 0.2s;
}
.lang-btn:hover { border-color: rgba(255,255,255,0.48); color: #fff; }

/* Hamburger */
.nav__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}
.nav__burger span {
  display: block;
  width: 22px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.28s ease;
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav__drawer {
  display: none;
  flex-direction: column;
  background: rgba(1,50,123,0.97);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 12px 24px 28px;
  gap: 2px;
}
.nav__drawer.open { display: flex; }
.nav__drawer a {
  font-family: var(--ff);
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.78);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.2s;
}
.nav__drawer a:last-of-type { border-bottom: none; }
.nav__drawer a:hover { color: #fff; }
.nav__drawer .btn { margin-top: 16px; justify-content: center; }

@media (min-width: 780px) {
  .nav__links  { display: flex; }
  .lang-btn    { display: block; }
  .nav__burger { display: none; }
}

/* ============================================================
   BACK NAV (sub-pages)
   ============================================================ */
.back-nav {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  z-index: 800;
  pointer-events: none;
}
.back-nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px clamp(16px, 4vw, 48px);
  pointer-events: auto;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ff);
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.02em;
  transition: color 0.2s;
  padding: 5px 0;
}
.back-link svg { transition: transform 0.2s; }
.back-link:hover { color: rgba(255,255,255,0.90); }
.back-link:hover svg { transform: translateX(-3px); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--ff);
  font-size: 0.90rem;
  font-weight: 700;
  border: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  letter-spacing: 0.01em;
}
.btn:active { transform: scale(0.97); }
.btn-lg { padding: 17px 36px; font-size: 1rem; }
.btn-sm { padding: 9px 20px;  font-size: 0.80rem; }

/* WhatsApp */
.btn-wa {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.32);
}
.btn-wa:hover {
  background: #1dbd58;
  box-shadow: 0 8px 28px rgba(37,211,102,0.44);
  transform: translateY(-2px);
}

/* Primary blue */
.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover {
  background: #0047b8;
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0,86,214,0.38);
}

/* Outline white (dark backgrounds) */
.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.30);
}
.btn-outline:hover {
  border-color: rgba(255,255,255,0.68);
  background: rgba(255,255,255,0.07);
}

/* Outline dark (light sections) */
.btn-outline-dark {
  background: transparent;
  color: var(--black);
  border: 1.5px solid rgba(21,28,34,0.20);
}
.btn-outline-dark:hover {
  border-color: rgba(21,28,34,0.46);
  background: rgba(21,28,34,0.04);
}

/* Ghost (dark bg, subtle) */
.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--pastel);
  border: 1.5px solid rgba(158,203,255,0.22);
  padding: 11px 22px;
  font-size: 0.86rem;
}
.btn-ghost:hover {
  border-color: rgba(158,203,255,0.55);
  color: #fff;
  background: rgba(255,255,255,0.10);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(155deg, #040e22 0%, #01327B 55%, #030c1e 100%);
  padding-top: calc(var(--nav-h) + var(--space-hero-top));
  padding-bottom: clamp(64px, 9vw, 104px);
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  display: flex;
  align-items: center;
}

/* Subtle grid overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(61,150,254,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(61,150,254,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 90% 80% at 65% 30%, black 0%, transparent 72%);
  pointer-events: none;
}

/* Glow orbs */
.hero__orb {
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,86,214,0.18) 0%, transparent 68%);
  top: -180px; right: -140px;
  pointer-events: none;
}
.hero__orb-2 {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(195,251,17,0.07) 0%, transparent 70%);
  bottom: -60px; left: -60px;
  pointer-events: none;
}

.hero__grid {
  display: grid;
  gap: clamp(40px, 7vw, 80px);
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero__copy .eyebrow { color: var(--horizon); margin-bottom: 20px; }
.hero__title { color: #fff; margin-bottom: 20px; }
.hero__title .accent { color: var(--lime); }
.hero__sub {
  color: var(--muted-dark);
  max-width: 440px;
  margin-bottom: 40px;
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  font-weight: 400;
  line-height: 1.72;
}
.hero__ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 340px;
}
.hero__ctas .btn { justify-content: center; }

/* Product visual */
.hero__visual { position: relative; }
.hero__visual::after {
  content: '';
  position: absolute;
  inset: -25% -12%;
  background: radial-gradient(ellipse, rgba(0,86,214,0.17) 0%, transparent 62%);
  pointer-events: none;
  z-index: 0;
}

/* Bottom fade into next section */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.03));
  pointer-events: none;
}

@media (min-width: 860px) {
  .hero__grid         { grid-template-columns: 1fr 1fr; }
  .hero__ctas         { flex-direction: row; max-width: none; }
  .hero__ctas .btn    { justify-content: flex-start; }
  .hero__visual       { display: flex; justify-content: flex-end; }
}

/* ============================================================
   PRODUCT FRAMES
   ============================================================ */
.win-frame {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow), var(--glow);
  border: 1px solid rgba(255,255,255,0.10);
  position: relative;
  z-index: 1;
  max-width: 600px;
  width: 100%;
}
.win-frame--light {
  box-shadow: 0 32px 72px rgba(0,0,0,0.16), 0 0 60px rgba(0,86,214,0.08);
  border-color: rgba(0,0,0,0.07);
}
.win-frame__bar {
  height: 36px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 7px;
  flex-shrink: 0;
}
.win-frame__bar--dark  { background: #0d1a30; }
.win-frame__bar--light { background: #dde2e8; }
.win-frame__dot {
  width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0;
}
.win-frame__dot:nth-child(1) { background: #ff5f57; }
.win-frame__dot:nth-child(2) { background: #febc2e; }
.win-frame__dot:nth-child(3) { background: #28c840; }
.win-frame__url {
  flex: 1; text-align: center;
  font-size: 0.67rem;
  font-family: 'SF Mono', 'Courier New', monospace;
  letter-spacing: 0.01em;
}
.win-frame__bar--dark  .win-frame__url { color: rgba(255,255,255,0.25); }
.win-frame__bar--light .win-frame__url { color: rgba(0,0,0,0.30); }
.win-frame img {
  width: 100%;
  display: block;
  max-height: 380px;
  object-fit: cover;
  object-position: top;
}

/* Phone frame */
.phone-frame {
  width: 260px;
  aspect-ratio: 9/19.5;
  background: #0d1a30;
  border-radius: 46px;
  border: 10px solid #1a2540;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}
.phone-frame::before {
  content: '';
  position: absolute;
  top: 10px; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 5px;
  background: #2a3550;
  border-radius: 3px;
  z-index: 2;
}
.phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.phone-frame--light {
  border-color: #c8d0dc;
  background: #f5f7fa;
  box-shadow: 0 28px 64px rgba(0,0,0,0.16);
}
.phone-frame--light::before { background: #c8d0dc; }

/* ============================================================
   STAT HOOK
   ============================================================ */
.stat-hook { padding: var(--space-section) 0; text-align: center; }
.stat-hook__num {
  font-family: var(--ff);
  font-size: clamp(6rem, 17vw, 10.5rem);
  font-weight: 700;
  line-height: 1;
  color: var(--blue);
  margin-bottom: 20px;
  letter-spacing: -0.04em;
}
.stat-hook__num .sup {
  font-size: 0.40em;
  vertical-align: super;
  color: var(--lime);
  line-height: 0;
}
.stat-hook__text {
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  color: var(--black);
  max-width: 520px;
  margin: 0 auto 12px;
  line-height: 1.55;
  font-weight: 500;
}
.stat-hook__coda {
  font-family: var(--ff);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: -0.01em;
}

/* ============================================================
   FEATURE SECTIONS
   ============================================================ */
.feature { padding: var(--space-section) 0; }
.feature__grid {
  display: grid;
  gap: clamp(44px, 7vw, 88px);
  align-items: center;
}
@media (min-width: 800px) {
  .feature__grid                { grid-template-columns: 1fr 1fr; }
  .feature__grid.flip .f-copy   { order: 2; }
  .feature__grid.flip .f-visual { order: 1; }
}

.f-copy .eyebrow { margin-bottom: 16px; }
.f-copy h2  { margin-bottom: 16px; }
.f-copy p   { margin-bottom: 26px; max-width: 450px; }

/* Bullets */
.f-bullets {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.f-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--ff);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.45;
}
.bullet-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  border-radius: 50%;
  font-size: 0.60rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 2px;
}
.bullet-lime { background: var(--lime); color: var(--black); }
.bullet-blue { background: var(--blue); color: #fff; }

.f-visual { display: flex; justify-content: center; }

/* Section color overrides */
.light-s h2         { color: var(--black); }
.light-s p          { color: var(--black); }
.light-s .eyebrow   { color: var(--blue); }
.light-s .f-bullets li { color: var(--black); }
.light-s .muted     { color: var(--muted-light); }

.dark-s .eyebrow    { color: var(--horizon); }
.dark-s h2          { color: var(--white); }
.dark-s p           { color: var(--muted-dark); }
.dark-s .f-bullets li { color: rgba(255,255,255,0.88); }
.dark-s .muted      { color: var(--muted-dark); }

.grey-s .eyebrow    { color: var(--blue); }

/* ============================================================
   INSTAGRAM / RED HEVA
   ============================================================ */
.red-heva { padding: var(--space-section) 0; }
.red-heva__header {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 60px);
}
.red-heva__header .eyebrow { margin-bottom: 16px; }
.red-heva__header h2 { margin-bottom: 12px; }
.red-heva__header p  { max-width: 480px; margin: 0 auto; }

.ig-wrap { display: flex; justify-content: center; }
.ig-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  transition: transform 0.32s ease;
}
.ig-link:hover { transform: translateY(-6px); }
.ig-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ff);
  font-size: 0.90rem;
  font-weight: 700;
  color: var(--blue);
  transition: opacity 0.2s;
}
.ig-link:hover .ig-cta { opacity: 0.70; }

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final {
  background: linear-gradient(140deg, #0056D6 0%, #01327B 100%);
  padding: var(--space-section) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}
.cta-final .eyebrow { color: rgba(255,255,255,0.55); margin-bottom: 16px; }
.cta-final h2 { color: #fff; margin-bottom: 16px; }
.cta-final .sub {
  color: rgba(255,255,255,0.70);
  max-width: 480px;
  margin: 0 auto 40px;
  font-size: clamp(1rem, 1.4vw, 1.12rem);
}
.cta-final__btns {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 56px 0 30px;
}
.footer__top {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 40px;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.footer__logo img { height: 28px; }
.footer__wordmark {
  font-family: var(--ff);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.04em;
}
.footer__tag {
  font-family: var(--ff);
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(255,255,255,0.26);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
}
.footer__nav a {
  font-family: var(--ff);
  font-size: 0.86rem;
  font-weight: 600;
  color: rgba(255,255,255,0.44);
  transition: color 0.2s;
}
.footer__nav a:hover { color: #fff; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 6px;
}
.footer__bottom p {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.26);
}
.footer__bottom a { color: rgba(255,255,255,0.36); transition: color 0.2s; }
.footer__bottom a:hover { color: rgba(255,255,255,0.68); }

@media (min-width: 640px) {
  .footer__top { flex-direction: row; align-items: center; }
  .footer__nav { margin-left: auto; }
}

/* ============================================================
   SUB-PAGE HERO
   ============================================================ */
.subpage-hero {
  background: linear-gradient(155deg, #040e22 0%, #01327B 60%, #030c1e 100%);
  padding-top: calc(var(--nav-h) + 52px);
  padding-bottom: clamp(56px, 8vw, 96px);
  position: relative;
  overflow: hidden;
}
.subpage-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(61,150,254,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(61,150,254,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, black 0%, transparent 72%);
  pointer-events: none;
}
.subpage-hero__inner { position: relative; z-index: 1; text-align: center; }
.subpage-hero .eyebrow { color: var(--horizon); margin-bottom: 20px; }
.subpage-hero h1 { color: #fff; margin-bottom: 18px; max-width: 760px; margin-left: auto; margin-right: auto; }
.subpage-hero .sub {
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin: 0 auto 40px;
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  line-height: 1.7;
}
.subpage-hero__ctas {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ============================================================
   FEATURE CARDS (sub-pages)
   ============================================================ */
.feature-card {
  background: var(--white);
  border: 1px solid var(--soft-grey);
  border-radius: var(--r-lg);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-card);
}
.feature-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 56px;
}
@media (min-width: 680px) {
  .feature-card-grid { grid-template-columns: 1fr 1fr; }
}
.feature-card__icon {
  width: 44px; height: 44px;
  background: rgba(0,86,214,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.3rem;
}
.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 0.90rem;
  color: var(--muted-light);
  line-height: 1.65;
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity  0.72s cubic-bezier(0.25,0.46,0.45,0.94),
    transform 0.72s cubic-bezier(0.25,0.46,0.45,0.94);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 0.10s; }
.reveal.d2 { transition-delay: 0.22s; }
.reveal.d3 { transition-delay: 0.34s; }
.reveal.d4 { transition-delay: 0.46s; }

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

/* ============================================================
   3-COLUMN CARD GRID (BNPL platforms)
   ============================================================ */
.feature-card-grid--3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 56px;
}
@media (min-width: 680px) {
  .feature-card-grid--3 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1020px) {
  .feature-card-grid--3 { grid-template-columns: 1fr 1fr 1fr; }
}

/* ============================================================
   BNPL CARD INTERNALS
   ============================================================ */
.bnpl-card {
  display: flex;
  flex-direction: column;
}
.bnpl-card__platform {
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted-light);
  margin-bottom: 4px;
}
.bnpl-card__name {
  font-size: 1.30rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 20px;
}
.bnpl-card__plans {
  list-style: none;
  flex: 1;
  margin-bottom: 20px;
}
.bnpl-card__plan {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--soft-grey);
  font-size: 0.86rem;
  color: var(--black);
  line-height: 1.5;
}
.bnpl-card__plan:last-child { border-bottom: none; }
.bnpl-card__plan-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
  margin-top: 6px;
}
.bnpl-card__confirm {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.80rem;
  font-weight: 600;
  color: #1a7a3e;
  background: rgba(26,122,62,0.08);
  border-radius: 8px;
  padding: 10px 14px;
  margin-top: auto;
}

/* ============================================================
   STAT INSIGHT SECTION (ticket promedio)
   ============================================================ */
.stat-insight {
  background: var(--black);
  color: var(--white);
  padding: clamp(64px, 9vw, 108px) 0;
  text-align: center;
}
.stat-insight .eyebrow {
  color: var(--lime);
  margin-bottom: 28px;
  display: block;
}
.stat-insight__quote {
  font-size: clamp(1.35rem, 3.2vw, 2.0rem);
  font-weight: 600;
  line-height: 1.45;
  max-width: 760px;
  margin: 0 auto 52px;
  color: rgba(255,255,255,0.92);
}
.stat-insight__quote em {
  font-style: normal;
  color: var(--lime);
}
.stat-insight__metrics {
  display: flex;
  justify-content: center;
  gap: clamp(32px, 7vw, 96px);
  flex-wrap: wrap;
}
.stat-insight__metric { text-align: center; }
.stat-insight__val {
  font-size: clamp(2.8rem, 7vw, 4.5rem);
  font-weight: 700;
  color: var(--lime);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-insight__lbl {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  max-width: 140px;
  line-height: 1.4;
}

/* ============================================================
   HEVA STORE MOCKUP
   ============================================================ */
.store-mockup {
  background: #f8f9fb;
  border: 1.5px solid var(--soft-grey);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.09);
}
.store-mockup__bar {
  background: var(--blue);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.store-mockup__logo {
  width: 46px; height: 46px;
  background: rgba(255,255,255,0.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.store-mockup__doc { flex: 1; }
.store-mockup__doc-name { color: var(--white); font-size: 0.95rem; font-weight: 700; }
.store-mockup__doc-spec { color: rgba(255,255,255,0.65); font-size: 0.76rem; }
.store-mockup__subtitle {
  padding: 14px 22px 10px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted-light);
  letter-spacing: 0.04em;
}
.store-mockup__items { padding: 0 22px 18px; }
.store-mockup__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 0;
  border-bottom: 1px solid var(--soft-grey);
}
.store-mockup__item:last-child { border-bottom: none; }
.store-mockup__item-info { flex: 1; min-width: 0; }
.store-mockup__item-name {
  font-size: 0.88rem; font-weight: 600; color: var(--black);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.store-mockup__item-cat {
  font-size: 0.73rem; color: var(--muted-light);
}
.store-mockup__item-price {
  font-size: 0.92rem; font-weight: 700; color: var(--blue);
  white-space: nowrap;
}
.store-mockup__item-btn {
  background: var(--blue); color: var(--white);
  border: none; border-radius: 7px;
  padding: 6px 12px; font-size: 0.75rem; font-weight: 600;
  cursor: default; flex-shrink: 0;
}

/* Payment method comparison */
.pay-method-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 48px;
}
@media (min-width: 680px) {
  .pay-method-grid { grid-template-columns: 1fr 1fr; }
}
.pay-method-card {
  background: var(--white);
  border: 1.5px solid var(--soft-grey);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 36px);
  box-shadow: var(--shadow-card);
}
.pay-method-card__badge {
  display: inline-block;
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(0,86,214,0.08);
  border-radius: 6px;
  padding: 4px 10px;
  margin-bottom: 14px;
}
.pay-method-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
}
.pay-method-card p {
  font-size: 0.87rem;
  color: var(--muted-light);
  line-height: 1.65;
  margin-bottom: 16px;
}
.pay-method-card__use {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--black);
  opacity: 0.7;
}
