/* ============================================================
   MDVIP — Main Stylesheet (Desktop-first, Phase 1)
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  /* ── 玫瑰金（Logo MD 圓）────────────────────────────────── */
  --rose:        #C4828A;
  --rose-light:  #D9A0A7;
  --rose-dark:   #9E6068;
  --rose-pale:   #F5E8EA;

  /* ── 金色（Logo VIP 圓）──────────────────────────────────── */
  --gold:        #C9A84C;
  --gold-light:  #E2C97A;
  --gold-dark:   #A07830;

  /* ── 深色背景 ────────────────────────────────────────────── */
  --deep:        #2D1520;
  --deep-mid:    #3D1E28;
  --deep-light:  #4E2830;

  /* ── 中性色 ──────────────────────────────────────────────── */
  --white:       #FFFFFF;
  --off-white:   #FDF8F5;
  --cream:       #F7F0EA;
  --blush:       #FBF0F2;

  /* ── 文字色 ──────────────────────────────────────────────── */
  --text:        #2C2020;
  --text-muted:  #7A6B6D;

  /* ── 功能色 ──────────────────────────────────────────────── */
  --wa-green:    #25D366;
  --wa-dark:     #128C7E;

  /* ── Border / Shadow ─────────────────────────────────────── */
  --border:      rgba(196, 130, 138, 0.22);
  --border-light:rgba(232, 213, 176, 0.30);
  --shadow-sm:   0 2px 8px rgba(45, 21, 32, 0.08);
  --shadow-md:   0 8px 32px rgba(45, 21, 32, 0.12);
  --shadow-lg:   0 20px 60px rgba(45, 21, 32, 0.18);

  /* ── 圓角 ─────────────────────────────────────────────────── */
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   40px;

  /* ── 字型 ─────────────────────────────────────────────────── */
  --font-serif:  'Noto Serif TC', serif;
  --font-sans:   'Noto Sans TC', 'PingFang TC', 'Microsoft JhengHei', sans-serif;

  /* ── 其他 ─────────────────────────────────────────────────── */
  --max-w:       1200px;
  --nav-h:       72px;
  --section-py:  72px;
  --transition:  0.25s ease;

  /* ── Brand System (new) ── */
  --brand-rose:       #C4877A;
  --brand-gold:       #9A7840;
  --bg-primary:       #F7EEF0;
  --bg-secondary:     #F0E4E6;
  --bg-gold-tint:     #EDE0C8;
  --bg-footer:        #3D2A2A;
  --card-bg:          #FFFFFF;
  --card-border:      #EDD5D8;
  --text-primary:     #3D2A2A;
  --text-secondary:   #8C6B6B;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 17px; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background-color: #F4E2DE;
  background-image: url('../images/hero-clouds.png');
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
  background-repeat: no-repeat;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ── Utility ────────────────────────────────────────────────── */
/* ── Background sparkles ────────────────────────────────────── */
.bg-sparkles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.sparkle {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: calc(65px * var(--s));
  height: calc(65px * var(--s));
  background: url('../images/sparkle.png') center / contain no-repeat;
  animation: sparkle-twinkle 4.5s ease-in-out infinite;
  animation-delay: var(--d);
}
@keyframes sparkle-twinkle {
  0%, 100% { opacity: 0.15; transform: scale(0.8) rotate(0deg); }
  50%       { opacity: 1.00; transform: scale(1.30) rotate(20deg); }
}

/* ── Background mist ─────────────────────────────────────────── */
.bg-mist {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.mist {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}
.mist--1 {
  width: 580px;
  height: 380px;
  background: radial-gradient(ellipse, rgba(196,130,138,0.38) 0%, transparent 70%);
  left: -180px;
  top: 22%;
  opacity: 0.70;
  animation: mist-drift-1 55s ease-in-out infinite;
}
.mist--2 {
  width: 480px;
  height: 340px;
  background: radial-gradient(ellipse, rgba(201,169,110,0.28) 0%, transparent 70%);
  right: -140px;
  top: 45%;
  opacity: 0.65;
  animation: mist-drift-2 65s ease-in-out infinite;
}
.mist--3 {
  width: 420px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(220,180,190,0.35) 0%, transparent 70%);
  left: 8%;
  bottom: 12%;
  opacity: 0.60;
  animation: mist-drift-3 48s ease-in-out infinite;
}
@keyframes mist-drift-1 {
  0%, 100% { transform: translate(0, 0); }
  33%      { transform: translate(55px, -45px); }
  66%      { transform: translate(-25px, 55px); }
}
@keyframes mist-drift-2 {
  0%, 100% { transform: translate(0, 0); }
  33%      { transform: translate(-50px, 35px); }
  66%      { transform: translate(38px, -52px); }
}
@keyframes mist-drift-3 {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(48px, -32px); }
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

.section-tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-gold);
  border: 1px solid rgba(201, 169, 110, 0.35);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(6px);
}
.section-tag::before,
.section-tag::after {
  content: ' ✦ ';
  font-size: 9px;
  opacity: 0.75;
  vertical-align: middle;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header--light .section-title,
.section-header--light .section-sub {
  color: var(--white);
}
.section-header--light .section-tag {
  color: var(--gold-light);
  border-color: rgba(232, 201, 122, 0.35);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.25;
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}
.section-title::after { display: none; }

.section-deco {
  display: block;
  width: 40px;
  height: 1.5px;
  background: #C9A96E;
  margin: 14px auto 24px;
  border-radius: 2px;
}
.section-title em { font-style: normal; color: var(--rose); }

.section-sub {
  font-size: 1.0625rem;
  color: #4A3020;
  max-width: 520px;
  margin: 0 auto;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
  font-size: 1rem;
  padding: 14px 28px;
  line-height: 1;
}
.btn--sm  { font-size: 0.875rem; padding: 10px 20px; }
.btn--lg  { font-size: 1.0625rem; padding: 18px 36px; border-radius: var(--radius-md); }
.btn--full { width: 100%; }

.btn--primary {
  background: #C4877A;
  color: var(--white);
  border: 1.5px solid #9A7840;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(196, 130, 138, 0.35);
}
.btn--primary:hover {
  background: #B3726A;
  border-color: #B8945A;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(196, 130, 138, 0.5);
}
.btn--primary:active { transform: translateY(0); }

.btn--whatsapp {
  background: linear-gradient(135deg, var(--wa-green) 0%, var(--wa-dark) 100%);
  color: var(--white);
  border-color: var(--wa-green);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}
.btn--whatsapp:hover {
  background: linear-gradient(135deg, #2edb72 0%, #159882 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
}

.btn--outline {
  background: transparent;
  color: var(--rose);
  border-color: var(--rose);
}
.btn--outline:hover {
  background: var(--rose);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--rose);
  border-color: var(--border);
  font-size: 0.875rem;
  padding: 8px 16px;
}
.btn--ghost:hover { background: rgba(196, 130, 138, 0.08); }

/* ── Badge ──────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(196, 130, 138, 0.15);
  color: var(--gold-light);
  border: 1px solid rgba(196, 130, 138, 0.3);
  backdrop-filter: blur(8px);
}
.badge--gold {
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: var(--white);
  border-color: transparent;
}

/* ── NAV ────────────────────────────────────────────────────── */
.nav {
  position: relative;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.is-scrolled {
  background: rgba(247, 238, 240, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 16px rgba(61, 42, 42, 0.06);
}
.site-header.is-scrolled .top-bar {
  background: transparent;
  border-bottom-color: transparent;
}
.site-header.is-scrolled .nav {
  border-top: 0.5px solid #EDD5D8;
}
.nav__inner {
  display: flex;
  align-items: center;
  width: 100%;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
  margin-right: 36px;
}
.nav__links a {
  font-size: 0.9375rem;
  color: rgba(60, 28, 24, 0.70);
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--brand-rose); }
.nav__cta-link { color: var(--brand-rose) !important; font-weight: 600; }
.nav__cta {
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(196, 130, 138, 0.40);
}
.nav__cta:hover {
  background: linear-gradient(135deg, var(--rose-dark) 0%, #7A4850 100%);
  box-shadow: 0 6px 28px rgba(196, 130, 138, 0.55);
  transform: translateY(-2px);
}
.nav.is-scrolled .nav__links a       { color: var(--text-primary); }
.nav.is-scrolled .nav__links a:hover { color: var(--brand-rose); }
.nav.is-scrolled .nav__cta-link      { color: var(--brand-rose) !important; }

/* Hamburger hidden on desktop */
.nav__hamburger { display: none; }
.nav__mobile-menu {
  display: none;
  flex-direction: column;
  width: 100%;
  background: rgba(255,248,245,0.97);
  backdrop-filter: blur(16px);
  padding: 16px 24px 24px;
  border-top: 1px solid rgba(196,130,138,0.15);
}
.nav__mobile-menu.is-open { display: flex; }
.nav__mobile-link {
  padding: 14px 0;
  font-size: 1rem;
  color: var(--text-primary);
  text-decoration: none;
  border-bottom: 1px solid rgba(196,130,138,0.12);
  letter-spacing: 0.04em;
}
.nav__mobile-link:last-of-type { border-bottom: none; }
.nav__mobile-cta {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  align-self: center;
  margin-top: 16px;
  padding: 13px 32px;
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
  color: white;
  border-radius: 9999px;
  border: 1.5px solid rgba(201, 169, 110, 0.45);
  box-shadow: 0 6px 24px rgba(196,130,138,0.40), inset 0 1px 0 rgba(255,255,255,0.18);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: all var(--transition);
}
.nav__mobile-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  background: linear-gradient(180deg, rgba(255,255,255,0.18) 0%, transparent 55%);
  pointer-events: none;
}

/* ── HERO ───────────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding-top: var(--nav-h);
  background: transparent;
}

/* ── Cloud layers ── */
.hero__clouds {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero__cloud {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
}
.hero__cloud--1 {
  width: 700px; height: 400px;
  background: rgba(255,255,255,0.55);
  top: -80px; left: -120px;
}
.hero__cloud--2 {
  width: 500px; height: 320px;
  background: rgba(255,255,255,0.40);
  bottom: -60px; left: 20%;
}
.hero__cloud--3 {
  width: 400px; height: 300px;
  background: rgba(255,240,238,0.50);
  top: 30%; right: -80px;
}
.hero__cloud--4 {
  width: 300px; height: 200px;
  background: rgba(255,255,255,0.30);
  bottom: 20%; right: 30%;
}

/* ── Split inner grid ── */
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  align-items: center;
  min-height: calc(100vh - var(--nav-h));
  gap: 32px;
}

/* ── Left: text column ── */
.hero__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 48px 20px 56px 0;
}

.hero__brand {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: fit-content;
  margin-bottom: 22px;
  gap: 16px;
}
.hero__logo-wrap {
  display: flex;
  align-items: center;
  gap: 0;
}
.hero__mamidaily-logo {
  height: 52px;
  width: auto;
  display: block;
}
.hero__logo-x {
  font-size: 1.1rem;
  color: rgba(80, 40, 36, 0.35);
  margin: 0 14px;
}
.hero__logo-img {
  width: 100%;
  height: auto;
  max-height: 110px;
  object-fit: contain;
  object-position: left center;
  display: block;
}
.hero__eyebrow {
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--rose-dark);
  white-space: nowrap;
}
.hero__headline {
  margin-bottom: 28px;
}
.hero__headline-img {
  width: 108%;
  max-width: 774px;
  height: auto;
  display: block;
}
.hero__sub {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 10px;
  font-size: 1.05rem;
  color: rgba(80, 40, 36, 0.60);
  margin-bottom: 24px;
  letter-spacing: 0.08em;
  justify-content: space-between;
}
/* Desktop: hide per-item ✦, show sep ✦ between items */
.hero__sub-item > span[aria-hidden] { display: none; }
.hero__sub-sep {
  color: var(--rose);
  opacity: 0.55;
  font-size: 0.65rem;
}
/* Head ✦ and tail ✦ */
.hero__sub::before,
.hero__sub::after {
  content: '✦';
  color: var(--rose);
  opacity: 0.55;
  font-size: 0.65rem;
  flex: none;
}

/* Badge pill */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1.5px solid rgba(201,169,110,0.55);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--brand-gold);
  letter-spacing: 0.04em;
  margin-bottom: 24px;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(8px);
}
.hero__badge svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--brand-gold);
}

/* Headline as text */
.hero__headline-text {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.3;
  color: #3D1F1F;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.hero__headline-rose {
  display: block;
  color: var(--rose);
}

/* Divider */
.hero__divider {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 24px;
  letter-spacing: 0.3em;
}

/* Feature bullets */
.hero__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.hero__feature {
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero__feature-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 250, 244, 0.50);
  border: 1px solid rgba(201, 169, 110, 0.22);
  box-shadow: 0 2px 10px rgba(201, 169, 110, 0.10);
}
.hero__feature-icon svg {
  width: 24px;
  height: 24px;
  color: #C9A84C;
  stroke: currentColor;
  fill: none;
}
.hero__feature-body strong {
  display: block;
  font-size: 1.0625rem;
  font-weight: 700;
  font-family: var(--font-sans);
  color: #3D1F1F;
  margin-bottom: 4px;
}
.hero__feature-body span {
  font-size: 0.9rem;
  font-family: var(--font-sans);
  color: rgba(80,40,36,0.60);
}

/* ── Proof bar ── */
.hero__proof {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(196,130,138,0.25);
  border-radius: 999px;
  padding: 16px 28px;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}
.hero__proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
}
.hero__proof-item strong {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--rose-dark);
  line-height: 1;
}
.hero__proof-item strong span { font-size: 0.875rem; }
.hero__proof-item > span {
  font-size: 0.8rem;
  color: rgba(80,40,36,0.60);
  margin-top: 4px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.hero__proof-divider {
  width: 1px;
  height: 32px;
  background: rgba(196,130,138,0.28);
}

/* ── Hero CTA button ── */
.btn--hero {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 9999px;
  border: 1.5px solid rgba(201, 169, 110, 0.45);
  box-shadow: 0 6px 24px rgba(196,130,138,0.40), inset 0 1px 0 rgba(255,255,255,0.18);
  transition: all var(--transition);
  margin-bottom: 16px;
}
/* static glass highlight at top */
.btn--hero::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  background: linear-gradient(180deg, rgba(255,255,255,0.18) 0%, transparent 55%);
  pointer-events: none;
}
/* shimmer sweep on hover */
.btn--hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.30) 50%, transparent 100%);
  transform: skewX(-15deg);
  transition: none;
  pointer-events: none;
}
.btn--hero:hover::before {
  animation: btn-shimmer 0.65s ease forwards;
}
@keyframes btn-shimmer {
  from { left: -75%; }
  to   { left: 125%; }
}
.btn--hero:hover {
  background: linear-gradient(135deg, var(--rose-dark) 0%, #7A4850 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(196,130,138,0.50), inset 0 1px 0 rgba(255,255,255,0.18);
}

.hero__trust {
  font-size: 0.75rem;
  color: rgba(80,40,36,0.45);
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ── Right: VIP card stack ── */
.hero__vip-stack {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 817px;
  transform: scale(0.95);
  transform-origin: center center;
}

/* ── VIP Card ── */
.vip-card {
  position: absolute;
  width: 460px;
  height: 704px;
  border-radius: var(--radius-lg);
  text-decoration: none;
  overflow: hidden;
  border: 1.5px solid rgba(201, 168, 76, 0.40);
  box-shadow:
    0 0 0 1px rgba(201, 168, 76, 0.22),
    0 4px 24px rgba(230, 180, 190, 0.30),
    0 8px 48px rgba(201, 168, 76, 0.10),
    0 20px 80px rgba(220, 160, 170, 0.10),
    0 48px 120px rgba(45, 21, 32, 0.08);
  transition: transform 0.85s cubic-bezier(0.4, 0, 0.2, 1),
              opacity  0.75s ease;
}

/* Soft light streak — acrylic sheen */
.vip-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background: linear-gradient(
    118deg,
    transparent          22%,
    rgba(255,255,255,0.06) 36%,
    rgba(255,255,255,0.20) 45%,
    rgba(255,255,255,0.28) 50%,
    rgba(255,255,255,0.20) 55%,
    rgba(255,255,255,0.06) 64%,
    transparent          78%
  );
}

/* Edge highlight — top-left bright, bottom-right subtle */
.vip-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  border-radius: inherit;
  box-shadow:
    inset 2px  2px  0    rgba(255, 248, 220, 0.45),
    inset 3px  3px  12px rgba(255, 230, 160, 0.15),
    inset -1.5px -1.5px 0   rgba(201, 168, 76, 0.25),
    inset -2px -2px  10px rgba(201, 168, 76, 0.10),
    inset 0    0     40px rgba(255, 240, 180, 0.05);
}

.vip-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* States driven by JS via data-state attribute */
.vip-card[data-state="front"] {
  transform: rotate(-3deg) translate(-20px, 8px);
  z-index: 3;
  opacity: 1;
  pointer-events: auto;
}
.vip-card[data-state="back"] {
  transform: rotate(6deg) translate(80px, 32px);
  z-index: 2;
  opacity: 0.88;
  pointer-events: auto;
}
.vip-card[data-state="back2"] {
  transform: rotate(13deg) translate(152px, 60px);
  z-index: 1;
  opacity: 0.45;
  pointer-events: auto;
}
.vip-card[data-state="hidden"] {
  transform: rotate(13deg) translate(152px, 60px);
  z-index: 0;
  opacity: 0;
  pointer-events: none;
}
.vip-card[data-state="leaving"] {
  transform: rotate(-3deg) translate(-20px, 8px) scale(0.97);
  z-index: 1;
  opacity: 0;
  pointer-events: none;
}

/* Front card hover lift */
.vip-card[data-state="front"]:hover {
  transform: rotate(-3deg) translate(-20px, -6px);
}
.vip-card[data-state="back"]:hover {
  transform: rotate(5deg) translate(84px, 22px);
}


/* Name + tag footer overlay */
.vip-card__footer {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 56px 16px 18px;
  background: linear-gradient(to top, rgba(45,21,32,0.82) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  pointer-events: none;
  z-index: 5;
}
.vip-card__name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
}
.vip-card__tag {
  font-size: 0.875rem;
  color: var(--gold-light);
  letter-spacing: 0.07em;
}


/* ── Scroll hint ── */
.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(80,40,36,0.40);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bobble 2.5s ease-in-out infinite;
}
.hero__scroll-arrow {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, rgba(160,96,104,0.4), transparent);
}
@keyframes bobble {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}


/* ── VALUES GRID ────────────────────────────────────────────── */
.values {
  padding: var(--section-py) 0;
  background: transparent;
}
.values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
}
.values__card {
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(201, 169, 110, 0.38);
  border-radius: 20px;
  padding: 36px 24px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(201, 169, 110, 0.10),
    0 4px 24px rgba(230, 180, 190, 0.18),
    0 8px 40px rgba(201, 169, 110, 0.07);
}
/* diagonal light streak — same as VIP card */
.values__card::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    118deg,
    transparent            22%,
    rgba(255,255,255,0.05) 36%,
    rgba(255,255,255,0.16) 45%,
    rgba(255,255,255,0.22) 50%,
    rgba(255,255,255,0.16) 55%,
    rgba(255,255,255,0.05) 64%,
    transparent            78%
  );
}
/* top-left edge highlight */
.values__card::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow:
    inset 1.5px 1.5px 0   rgba(255,255,255,0.72),
    inset -1px  -1px  0   rgba(255,255,255,0.10),
    inset 0     0     24px rgba(255,255,255,0.04);
}
.values__card:hover {
  background: rgba(255, 255, 255, 0.88);
  transform: translateY(-8px);
  box-shadow:
    0 0 0 1px rgba(201, 169, 110, 0.18),
    0 20px 48px rgba(196, 130, 138, 0.20),
    0 8px 32px rgba(201, 169, 110, 0.10);
}

/* icon — PNG already includes circle, just display as-is */
.values__card .benefit-icon-wrap {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  flex-shrink: 0;
  transition: transform 0.3s ease, filter 0.3s ease;
}
.values__card .benefit-icon-wrap img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}
.values__card:hover .benefit-icon-wrap {
  transform: scale(1.08);
  filter: brightness(1.08) drop-shadow(0 4px 12px rgba(196, 130, 138, 0.40));
}

.values__card h3 {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
  min-height: unset;
  line-height: 1.65;
}
.values__card > p {
  font-size: 0.9rem;
  color: #9A7272;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 10px;
}
.values__card .benefit-badge {
  display: inline-block;
  font-size: 14px;
  padding: 4px 14px;
  border-radius: 100px;
  background: #EDE0C8;
  color: #8A6030;
  letter-spacing: 0.02em;
  margin-top: 0;
}

/* ── MEMBERS ────────────────────────────────────────────────── */
.members {
  padding: var(--section-py) 0;
  background: transparent;
}

/* ── Members carousel wrap ── */
.members__carousel-wrap {
  position: relative;
  margin-bottom: 48px;
}
.members__grid {
  display: flex;
  gap: 24px;
  overflow: clip; /* clip instead of hidden — doesn't create scroll container */
}
.member-card {
  flex: 0 0 calc(25% - 18px);
  min-width: 0;
}

/* ── Arrow buttons ── */
.members__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.90);
  border: 1px solid rgba(196,130,138,0.30);
  color: var(--rose-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, opacity 0.2s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}
.members__arrow:hover {
  background: rgba(255,255,255,1);
  box-shadow: 0 4px 20px rgba(196,130,138,0.25);
}
.members__arrow--prev { left: -56px; }
.members__arrow--next { right: -56px; }
.members__arrow[disabled] { opacity: 0.3; pointer-events: none; }
.members__arrow[hidden] { display: none !important; }

.member-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(201, 169, 110, 0.65);
  cursor: pointer;
  box-shadow:
    0 0 0 1px rgba(201, 169, 110, 0.18),
    0 4px 28px rgba(230, 180, 190, 0.35),
    0 10px 48px rgba(201, 169, 110, 0.18);
  /* entrance animation */
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.member-card.in-view {
  opacity: 1;
  transform: translateY(0);
}
.member-card:nth-child(1) { transition-delay: 0s; }
.member-card:nth-child(2) { transition-delay: 0.15s; }
.member-card:nth-child(3) { transition-delay: 0.30s; }
.member-card:nth-child(4) { transition-delay: 0.45s; }
.member-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(61,42,42,0.12);
  border-color: rgba(196, 130, 138, 0.5);
}
.member-card.in-view:hover {
  transform: translateY(-8px);
}

.member-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #EDD5D8;
}
.member-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.member-card:hover .member-card__media img { transform: scale(1.05); }

.member-card__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse-play 2s ease-in-out infinite;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.member-card:hover .member-card__play {
  animation: none;
  opacity: 0.15;
  transform: translate(-50%, -50%) scale(1.12);
}
@keyframes pulse-play {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50%       { transform: translate(-50%, -50%) scale(1.08); }
}

.member-card__info {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
}
.member-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--rose);
  flex-shrink: 0;
  background: var(--deep-mid);
}
.member-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.member-card__info strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-primary);
  font-weight: 600;
}
.member-card__info span {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.members__ig-cta {
  text-align: center;
}

/* ── BENEFITS ───────────────────────────────────────────────── */
.benefits {
  padding: var(--section-py) 0;
  background: transparent;
}

.benefits__layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.benefits__visual-inner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.benefits__visual-inner img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.benefits__badge-float {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
}

/* ── Benefits stacked card ── */
.benefits__visual {
  position: relative;
}

.benefits__card-stack {
  position: relative;
  padding: 20px 28px 20px 0;
}

/* Back decorative cards */
.benefits__back-card {
  position: absolute;
  inset: 20px 28px 20px 0;
  border-radius: 20px;
}
.benefits__back-card--1 {
  transform: rotate(4deg) translate(14px, 10px);
  background: rgba(255,255,255,0.50);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1.5px solid rgba(201,169,110,0.28);
  box-shadow: 0 4px 20px rgba(196,130,138,0.10);
  z-index: 2;
  opacity: 0.80;
}
.benefits__back-card--2 {
  transform: rotate(8deg) translate(26px, 18px);
  background: rgba(255,255,255,0.28);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1.5px solid rgba(201,169,110,0.18);
  z-index: 1;
  opacity: 0.55;
}

/* Front photo card — VIP card border/glow */
.benefits__photo-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  transform: rotate(-3deg);
  border: 1.5px solid rgba(201,168,76,0.40);
  box-shadow:
    0 0 0 1px rgba(201,168,76,0.22),
    0 4px 24px rgba(230,180,190,0.30),
    0 8px 48px rgba(201,168,76,0.10),
    0 20px 80px rgba(220,160,170,0.10),
    0 48px 120px rgba(45,21,32,0.08);
  z-index: 3;
}

/* Light streak — same as VIP card */
.benefits__photo-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background: linear-gradient(
    118deg,
    transparent            22%,
    rgba(255,255,255,0.06) 36%,
    rgba(255,255,255,0.20) 45%,
    rgba(255,255,255,0.28) 50%,
    rgba(255,255,255,0.20) 55%,
    rgba(255,255,255,0.06) 64%,
    transparent            78%
  );
}

/* Edge highlight — same as VIP card */
.benefits__photo-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  border-radius: inherit;
  box-shadow:
    inset 1.5px 1.5px 0   rgba(255,255,255,0.65),
    inset -1px  -1px  0   rgba(255,255,255,0.12),
    inset 0     0     28px rgba(255,255,255,0.05);
}

/* Carousel inside card */
.benefits__photo-carousel {
  position: absolute;
  inset: 0;
}
.benefits__photo-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.benefits__photo-slide.is-active { opacity: 1; }
.benefits__photo-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.benefits__carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
  padding-right: 28px;
}
.benefits__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(201,169,110,0.35);
  transition: background var(--transition), transform var(--transition);
  cursor: pointer;
}
.benefits__dot.is-active {
  background: var(--rose);
  transform: scale(1.35);
}

/* Card footer overlay */
.benefits__card-footer {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 80px 20px 26px;
  background: linear-gradient(
    to top,
    rgba(196, 100, 118, 0.62) 0%,
    rgba(218, 140, 158, 0.28) 55%,
    transparent 100%
  );
  z-index: 5;
  pointer-events: none;
}
.benefit-card-slogan {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.95);
  letter-spacing: 0.04em;
  text-align: center;
  text-shadow: 0 1px 8px rgba(150,60,80,0.30);
}

/* ── Benefit list (right side) ── */
.benefits__list { display: flex; flex-direction: column; gap: 12px; }

.benefits__list .benefit-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.45);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border: 1px solid rgba(255,255,255,0.70);
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(196,130,138,0.08), inset 0 1px 0 rgba(255,255,255,0.80);
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.benefits__list .benefit-item.in-view {
  opacity: 1;
  transform: translateX(0);
}
.benefits__list .benefit-item:hover {
  box-shadow: 0 6px 24px rgba(196,130,138,0.18);
  background: rgba(255,255,255,0.92);
}

.benefits__list .benefit-icon-wrap {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 0;
  transition: transform 0.3s ease, filter 0.3s ease;
}
.benefits__list .benefit-icon-wrap img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}
.benefits__list .benefit-item:hover .benefit-icon-wrap {
  transform: scale(1.08);
  filter: drop-shadow(0 4px 10px rgba(196,130,138,0.40));
}

.benefit-text h4 {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 5px;
}
.benefit-text p {
  font-size: 0.9375rem;
  color: #4A3020;
  line-height: 1.65;
}

/* Staggered entrance delays for benefit items */
.benefits__list .benefit-item:nth-child(1) { transition-delay: 0s; }
.benefits__list .benefit-item:nth-child(2) { transition-delay: 0.10s; }
.benefits__list .benefit-item:nth-child(3) { transition-delay: 0.20s; }
.benefits__list .benefit-item:nth-child(4) { transition-delay: 0.30s; }
.benefits__list .benefit-item:nth-child(5) { transition-delay: 0.40s; }

/* ── BRANDS ─────────────────────────────────────────────────── */
.brands {
  padding: var(--section-py) 0;
  background: transparent;
}
.brands__marquee {
  overflow: hidden;
  padding: 12px 0;
  margin: -12px 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.brands__track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee-scroll 22s linear infinite;
}
.brands__track:hover { animation-play-state: paused; }
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.brand-logo {
  width: 200px;
  aspect-ratio: 5 / 3;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(201,169,110,0.45);
  border-radius: 20px;
  box-shadow:
    0 0 0 1px rgba(201,169,110,0.12),
    0 4px 20px rgba(201,169,110,0.08),
    inset 0 1px 0 rgba(255,255,255,0.75);
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.brand-logo:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow:
    0 0 0 1px rgba(201,169,110,0.30),
    0 8px 28px rgba(201,169,110,0.18),
    inset 0 1px 0 rgba(255,255,255,0.85);
}
.brand-logo img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

/* ── CTA APPLY ───────────────────────────────────────────────── */
.cta-apply {
  padding: var(--section-py) 0;
  background: transparent;
  position: relative;
  overflow: hidden;
}
.cta-apply::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 640px;
  background: radial-gradient(ellipse,
    rgba(196,130,138,0.20) 0%,
    rgba(201,169,110,0.09) 42%,
    transparent 68%
  );
  pointer-events: none;
  z-index: 0;
}
.cta-apply::after {
  content: none;
}
.cta-apply .container {
  position: relative;
  z-index: 1;
}
.cta-apply__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
}

/* ── Section star decoration ── */
.section-star {
  color: #C9A96E;
  font-size: 20px;
  text-align: center;
  margin-bottom: 12px;
}

/* ── Steps container ── */
.steps-container {
  background: rgba(255,255,255,0.32);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(201,169,110,0.35);
  border-radius: 20px;
  padding: 40px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  max-width: 860px;
  margin: 0 auto 40px;
  box-shadow: 0 8px 32px rgba(196,130,138,0.12), 0 2px 8px rgba(201,169,110,0.08), inset 0 1px 0 rgba(255,255,255,0.85);
}
.step-connector {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, #C9A96E, rgba(201,169,110,0.20));
  flex-shrink: 0;
}
.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}
.step-icon-wrap {
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border-radius: 50%;
  background: rgba(237,224,200,0.45);
  border: 1.5px solid rgba(201,169,110,0.45);
  box-shadow: 0 2px 10px rgba(201,169,110,0.12);
  transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
}
.step-item:hover .step-icon-wrap {
  box-shadow: 0 6px 18px rgba(201,169,110,0.22);
}
.step-item:hover .step-icon-wrap {
  transform: translateY(-4px);
  filter: drop-shadow(0 6px 16px rgba(201,169,110,0.30));
}
.step-icon-wrap img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}
.step-number {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--rose-dark);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.step-title {
  font-family: var(--font-serif);
  font-size: 0.9375rem;
  font-weight: 700;
  color: #4A3020;
  margin-bottom: 6px;
}
.step-desc {
  font-size: 0.8125rem;
  color: #4A3020;
  line-height: 1.65;
}


/* ── CTA lead + trust ── */
.cta-lead {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  letter-spacing: 0.02em;
}
.trust-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 0.75rem;
  color: rgba(80,40,36,0.50);
  letter-spacing: 0.02em;
}

/* ── Bottom benefits ── */
.bottom-benefits {
  display: flex;
  justify-content: center;
  gap: 64px;
  margin-top: 48px;
}
.bottom-benefit-item {
  text-align: center;
}
.bb-icon {
  font-size: 20px;
  color: #C9A96E;
  display: block;
  margin-bottom: 6px;
}
.bb-title {
  font-size: 14px;
  font-weight: 600;
  color: #2A1A1A;
  margin-bottom: 4px;
}
.bb-desc {
  font-size: 12px;
  color: #8C6B6B;
}
.cta-apply__checklist {
  display: flex;
  gap: 48px;
}
.cta-apply__checklist li {
  position: relative;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  padding-left: 20px;
  letter-spacing: 0.02em;
}
.cta-apply__checklist li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--brand-gold);
}

/* ── APPLY SECTION ──────────────────────────────────────────── */
.apply {
  padding: var(--section-py) 0;
  background: transparent;
}

.apply__layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: start;
}

.apply__pitch {
  position: sticky;
  top: calc(var(--nav-h) + 40px);
}
.apply__pitch .section-tag { margin-bottom: 20px; }
.apply__pitch h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 2.5vw, 2.5rem);
  font-weight: 700;
  color: var(--deep);
  line-height: 1.25;
  margin-bottom: 40px;
}
.apply__pitch h2 em { font-style: normal; color: var(--rose); }

.apply__points {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}
.apply__points li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.apply__point-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--rose);
  flex-shrink: 0;
  margin-top: 2px;
  letter-spacing: 0.04em;
}
.apply__points strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 4px;
}
.apply__points p { font-size: 0.9rem; color: var(--text-muted); }

.apply__privacy {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ── FORM ───────────────────────────────────────────────────── */
.apply-form {
  background: rgba(255,255,255,0.52);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1.5px solid rgba(201,169,110,0.30);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: 0 8px 40px rgba(196,130,138,0.10), inset 0 1px 0 rgba(255,255,255,0.85);
}

.form-group {
  margin-bottom: 8px;
}
.form-group--inline {
  margin-bottom: 0;
}
.form-group label {
  display: block;
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-weight: 700;
  color: #4A3020;
  margin-bottom: 5px;
}
.form-group .checkbox-item {
  display: flex;
}
.required { color: var(--rose); }

.form-group input,
.form-group select {
  width: 100%;
  padding: 11px 18px;
  border: 1.5px solid rgba(201,169,110,0.35);
  border-radius: 12px;
  font-size: 0.9375rem;
  color: var(--text);
  background: rgba(255,255,255,0.60);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%23C4828A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-color: rgba(255,255,255,0.60);
  padding-right: 44px;
  cursor: pointer;
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--rose);
  background: rgba(255,255,255,0.85);
  box-shadow: 0 0 0 3px rgba(196,130,138,0.14);
}
.form-group input.is-error,
.form-group select.is-error {
  border-color: #E53E3E;
  box-shadow: 0 0 0 3px rgba(229,62,62,0.10);
}
.form-group input::placeholder { color: rgba(122,107,109,0.60); }

.form-error {
  display: block;
  font-size: 0.8125rem;
  color: #E53E3E;
  margin-top: 5px;
  min-height: 18px;
}
.form-optional {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-muted);
}
.pregnancy-check {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.50);
  border: 1px solid rgba(201,169,110,0.25);
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.9rem;
  font-family: var(--font-sans);
  color: var(--text);
}
.form-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  margin-top: -4px;
  font-style: italic;
}

/* Checkbox grid */
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.checkbox-grid--2col {
  grid-template-columns: repeat(2, 1fr);
}
.checkbox-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border: 1.5px solid rgba(201,169,110,0.30);
  border-radius: 12px;
  cursor: pointer;
  transition: all var(--transition);
  font-size: 0.875rem;
  font-family: var(--font-sans) !important;
  background: rgba(255,255,255,0.50);
  backdrop-filter: blur(10px);
  user-select: none;
  color: var(--text);
  position: relative;
  text-align: center;
}
.checkbox-item:hover {
  border-color: var(--rose);
  background: rgba(255,255,255,0.70);
  box-shadow: 0 2px 12px rgba(196,130,138,0.12);
}
.checkbox-item svg {
  display: block;
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  opacity: 0.75;
}
.interest-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.interest-item svg,
.interest-item img,
.interest-item i {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}
.interest-item span {
  line-height: 1;
  vertical-align: middle;
}
.checkbox-item input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.checkbox-item:has(input:checked) {
  border-color: var(--rose);
  background: rgba(196,130,138,0.12);
  box-shadow: 0 0 0 1px rgba(196,130,138,0.20), inset 0 1px 0 rgba(255,255,255,0.80);
}

/* Privacy / single checkbox — simple inline dot */
.form-group--checkbox-single .checkbox-item {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 4px 0;
  font-size: 0.8125rem;
  font-family: var(--font-sans);
  line-height: 1.55;
  backdrop-filter: none;
  gap: 8px;
  color: var(--text-muted);
  justify-content: flex-start;
  align-items: center;
  text-align: left;
}
.form-group--checkbox-single .checkbox-item::before {
  content: '';
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  min-width: 16px;
  border-radius: 3px;
  border: 1.5px solid rgba(150,100,105,0.50);
  background: rgba(255,255,255,0.70);
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  line-height: 16px;
  text-align: center;
  transition: background var(--transition), border-color var(--transition);
}
.form-group--checkbox-single .checkbox-item:has(input:checked) {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}
.form-group--checkbox-single .checkbox-item:has(input:checked)::before {
  content: '✓';
  background: var(--rose);
  border-color: var(--rose);
}
.form-group--checkbox-single .checkbox-item:hover::before {
  border-color: var(--rose);
}
.form-group--checkbox-single .checkbox-item a {
  color: var(--rose-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Child entries */
.child-entry {
  border: 1.5px solid rgba(201,169,110,0.30);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 12px;
  background: rgba(255,255,255,0.45);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 12px rgba(196,130,138,0.06), inset 0 1px 0 rgba(255,255,255,0.80);
  position: relative;
}
.child-entry__fields {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  align-items: end;
}
.child-entry__remove {
  position: absolute;
  top: 12px; right: 12px;
  color: var(--text-muted);
  font-size: 0.8rem;
  padding: 4px 8px;
  border-radius: 4px;
  transition: all var(--transition);
}
.child-entry__remove:hover { color: #E53E3E; background: rgba(229,62,62,0.08); }

.add-child-btn { margin-top: 4px; }

/* Submit button loading state */
.btn__loading { display: none; }
.btn--loading .btn__text  { display: none; }
.btn--loading .btn__loading { display: inline-flex; align-items: center; gap: 8px; }
.spinner { animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.form-global-error {
  background: rgba(229,62,62,0.1);
  border: 1px solid rgba(229,62,62,0.3);
  color: #C53030;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 0.9rem;
  margin-top: 16px;
}

/* ── SUCCESS OVERLAY ────────────────────────────────────────── */
/* ── MODALS (Thank You + Exit Intent) ───────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(44, 27, 30, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: modalFadeIn 0.3s ease;
}
.modal-overlay[hidden] { display: none; }
@keyframes modalFadeIn { from { opacity: 0; } to { opacity: 1; } }

.modal-card {
  position: relative;
  background: rgba(255, 248, 245, 0.86);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-radius: 28px;
  padding: 48px 40px 40px;
  text-align: center;
  max-width: 480px;
  width: 100%;
  animation: modalSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow:
    0 0 0 1px rgba(201, 168, 76, 0.20),
    0 8px 40px rgba(61, 30, 30, 0.25),
    0 24px 80px rgba(61, 30, 30, 0.20),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
  overflow: hidden;
}
/* Top glass highlight streak */
.modal-card::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(
    160deg,
    rgba(255,255,255,0.30) 0%,
    rgba(255,255,255,0.08) 40%,
    transparent 70%
  );
  border-radius: inherit;
}
/* Gold edge highlight */
.modal-card::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  border-radius: inherit;
  box-shadow:
    inset 1.5px 1.5px 0 rgba(255, 248, 220, 0.50),
    inset -1px -1px 0  rgba(201, 168, 76, 0.20);
}
.modal-card > * {
  position: relative;
  z-index: 1;
}
@keyframes modalSlideUp {
  from { opacity: 0; transform: translateY(40px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-deco {
  font-size: 1.6rem;
  color: var(--gold);
  opacity: 0.8;
  margin-bottom: 12px;
  letter-spacing: 8px;
}
.modal-logo {
  display: block;
  margin: 0 auto 20px;
  width: 160px;
  height: auto;
}
.modal-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--deep);
  margin-bottom: 12px;
  line-height: 1.3;
}
.modal-body {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 20px;
}
.modal-body strong {
  color: var(--rose-dark);
  font-weight: 700;
}
.modal-divider {
  width: 40px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  border-radius: 2px;
  margin: 0 auto 16px;
}
.modal-hint {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 20px;
}
.modal-perks {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px;
  font-size: 0.88rem;
  color: var(--rose-dark);
  font-weight: 500;
}
.modal-ig-btn,
.modal-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0;
  font-size: 0.95rem;
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1rem;
  color: rgba(122, 80, 70, 0.4);
  cursor: pointer;
  padding: 4px 8px;
  transition: color var(--transition);
}
.modal-close:hover { color: var(--rose-dark); }
.modal-close--ghost {
  position: static;
  display: block;
  margin: 14px auto 0;
  font-size: 0.82rem;
  color: rgba(122, 80, 70, 0.45);
  text-decoration: underline;
  font-weight: 400;
}

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: var(--bg-footer);
  padding: 60px 0 32px;
  color: rgba(255,255,255,0.6);
}
.footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__brand p {
  font-size: 0.875rem;
  margin-top: 12px;
  color: rgba(255,255,255,0.45);
}
.footer__brand-logos {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 10px;
}
.footer__pl-logo {
  height: 48px;
  width: auto;
  opacity: 0.85;
}
.footer__mdvip-logo {
  height: 48px;
  width: auto;
}
.footer__logo-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.3);
  margin: 0 16px;
}
.footer__mamidaily-logo {
  height: 48px;
  width: auto;
  opacity: 0.75;
}
.footer__logo-x {
  font-size: 1rem;
  color: rgba(255,255,255,0.35);
  margin: 0 12px;
}
.footer__links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.footer__links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--gold-light); }

.footer__ig {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
  color: #fff !important;
  font-weight: 500;
  box-shadow: 0 4px 14px rgba(196, 130, 138, 0.40);
  transition: opacity var(--transition), transform var(--transition), box-shadow var(--transition) !important;
}
.footer__ig:hover {
  opacity: 0.88;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(196, 130, 138, 0.55) !important;
  color: #fff !important;
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.3);
}
.footer__bottom a { color: rgba(255,255,255,0.4); transition: color var(--transition); }
.footer__bottom a:hover { color: var(--gold-light); }


/* ── SCROLL ANIMATIONS ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }

/* ── FORM SUBMIT BUTTON ─────────────────────────────────────── */
#form-submit {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
  border: 1.5px solid rgba(201, 169, 110, 0.45);
  border-radius: 9999px;
  box-shadow: 0 6px 24px rgba(196,130,138,0.40), inset 0 1px 0 rgba(255,255,255,0.18);
  color: var(--white);
  font-weight: 700;
  font-family: var(--font-sans);
}
#form-submit::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  background: linear-gradient(180deg, rgba(255,255,255,0.18) 0%, transparent 55%);
  pointer-events: none;
}
#form-submit:hover {
  background: linear-gradient(135deg, var(--rose-dark) 0%, #7A4850 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(196,130,138,0.50), inset 0 1px 0 rgba(255,255,255,0.18);
}

/* ── BENEFIT CARDS (Section 2 new style) ── */
.benefit-badge {
  display: inline-block;
  font-size: 14px;
  padding: 2px 10px;
  border-radius: 6px;
  background: #EDE0C8;
  color: #9A7840;
  margin-top: 8px;
}

/* ── VIDEO / MEMBER CARDS (Section 3 light bg) ── */
.video-quote {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  font-style: italic;
  margin-top: 6px;
  padding: 0 20px 16px;
}

/* ── BENEFITS GRID (Section 4 new layout) ── */
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.benefit-card {
  background: var(--card-bg);
  border: 0.5px solid var(--card-border);
  border-radius: 12px;
  padding: 28px 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(61,42,42,0.10);
}
.benefit-card--featured {
  background: var(--brand-rose);
  border-color: var(--brand-rose);
  color: white;
  grid-column: span 2;
}
.benefit-card__icon {
  font-size: 1.5rem;
  margin-bottom: 12px;
  display: block;
}
.benefit-card__title {
  font-family: 'Noto Serif TC', serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.benefit-card--featured .benefit-card__title { color: white; }
.benefit-card__desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 10px;
}
.benefit-card--featured .benefit-card__desc { color: rgba(255,255,255,0.82); }
.benefit-card__badge {
  display: inline-block;
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 6px;
  background: var(--bg-secondary);
  color: var(--text-secondary);
}
.benefit-card--featured .benefit-card__badge {
  background: rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.9);
}

/* ── BRANDS GOLD BG ── */

/* ── CTA APPLY LIGHT ── */
.cta-apply-steps {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 40px;
}
.cta-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  flex: 1;
}
.cta-step__num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand-rose);
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-step__title {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}
.cta-step__sub {
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

/* Nav progress bar — desktop hidden, mobile shown */
.nav__progress {
  display: none;
}
.nav__progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--rose) 0%, var(--rose-dark) 100%);
  border-radius: 0 2px 2px 0;
  transition: width 0.35s ease;
}

/* ── FORM PROGRESS ── */

.form-progress {
  margin-bottom: 28px;
}
.form-progress > span {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.progress-bar {
  height: 4px;
  background: var(--card-border);
  border-radius: 2px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: var(--brand-rose);
  border-radius: 2px;
  transition: width 0.3s ease;
}

/* ── APPLY LEFT COLUMN CHECKMARKS ── */
.apply__checklist {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.apply__checklist li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.9375rem;
  color: var(--text-primary);
}
.apply__checklist li::before {
  content: '✓';
  color: var(--brand-rose);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.apply__checklist strong {
  display: block;
  font-weight: 600;
}
.apply__checklist p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin: 2px 0 0;
}

/* ── CHILD FIELD NOTE ── */
.child-field-note {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 8px;
  line-height: 1.5;
}

/* ── SUCCESS SHARE MODULE ── */
.success-share {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--card-border);
}
.success-share h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.success-share p {
  font-size: 0.875rem !important;
  color: var(--text-secondary) !important;
  margin-bottom: 16px !important;
}
.btn--whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: white;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: background 0.25s ease;
}
.btn--whatsapp:hover { background: #1ebe5d; }

/* ── BENEFIT ICON WRAP ── */
.benefit-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

/* ── VIDEO CARD ── */
.video-card {
  background: var(--card-bg);
  border: 0.5px solid var(--card-border);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(61,42,42,0.10);
}

/* ── PART 3 — Global refinements ── */

/* 3-1 Heading depth */
h1, h2 { color: #2A1A1A; }

/* 3-2 Card border sharpness */
.benefit-card,
.video-card,
.logo-item,

/* 3-3 Section separators */
/* section separators removed */

/* 3-4 Gold data numbers */
.stat-number,
.hero-stat-num,
.hero__proof-item strong { color: #9A7840; font-weight: 600; }

/* 3-5 Section tag already updated above */

/* 3-6 Decorative divider line */
.section-divider {
  background: #9A7840;
  height: 2px;
  width: 40px;
  margin: 8px auto 0;
}

/* 3-7 Featured benefit card */
.benefit-card--featured {
  background: #C4877A;
  color: #FFFFFF;
  border: none;
}
.benefit-card--featured .benefit-card__badge {
  background: rgba(255,255,255,0.20);
  color: #FFFFFF;
}

/* 3-8 Step icons */
.cta-step__num {
  background: #C4877A;
  color: #FFFFFF;
}

/* ── PART 4 — Gold accents ── */

/* Hero proof numbers gold */
.hero__proof-item strong { color: #9A7840; font-weight: 600; }
.hero__proof-item > span { color: #8C6B6B; }

/* Site header wrapper (top bar + nav) */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
}

/* Top bar */
.top-bar {
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  text-align: center;
  padding: 7px 0;
  transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
  max-height: 60px;
  overflow: hidden;
}
.top-bar__link {
  display: inline-flex;
  align-items: center;
  opacity: 0.75;
  transition: opacity 0.2s;
}
.top-bar__link:hover { opacity: 1; }
.top-bar__logo {
  height: 30px;
  width: auto;
  display: block;
}

/* Scrolled: collapse top bar only */
.site-header.is-scrolled .top-bar {
  max-height: 0;
  padding: 0;
  opacity: 0;
  border-bottom-color: transparent;
}

/* Nav MamiDaily logo */
.nav__mamidaily-logo {
  height: 42px !important;
  width: auto;
}

/* Navbar logo */
.nav__logo {
  display: flex;
  align-items: center;
  border: none;
  outline: none;
  text-decoration: none;
}
.nav__logo img {
  display: block;
  height: 44px;
  width: auto;
}
.nav__pl-logo {
  height: 44px !important;
  width: auto;
  opacity: 0.85;
}

/* Navbar logo divider */
.nav__logo-divider {
  width: 1px;
  height: 28px;
  background: #9A7840;
  margin: 0 14px;
  opacity: 0.5;
  display: inline-block;
  vertical-align: middle;
}

/* Featured benefit card inner elements */
.benefit-card--featured .benefit-card__icon + .benefit-icon-wrap {
  background: rgba(255,255,255,0.20);
  color: #FFFFFF;
}
.benefit-card--featured .benefit-card__badge {
  background: rgba(255,255,255,0.20);
  color: #FFFFFF;
}

/* Benefit card badge on non-highlight cards */
.benefit-card:not(.benefit-card--featured) .benefit-card__badge {
  background: #EDE0C8;
  color: #9A7840;
}

/* ── Cursor sparkle trail ───────────────────────────────────── */
.cursor-sparkle {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  width: var(--size, 14px);
  height: var(--size, 14px);
  transform: translate(-50%, -50%) rotate(var(--rot, 0deg));
  animation: cursor-sparkle-out 0.6s ease-out forwards;
}
.cursor-sparkle svg {
  width: 100%;
  height: 100%;
}
@keyframes cursor-sparkle-out {
  0%   { opacity: 1;   transform: translate(-50%, -50%) rotate(var(--rot, 0deg)) scale(1); }
  100% { opacity: 0;   transform: translate(-50%, -50%) rotate(calc(var(--rot, 0deg) + 40deg)) scale(0.3); }
}


/* ============================================================
   MOBILE — 768px and below
   ============================================================ */
@media (max-width: 768px) {

  :root {
    --nav-h:      64px;
    --section-py: 28px;
  }

  .top-bar { padding: 5px 0; }
  .top-bar__logo { height: 20px; }

  html { font-size: 15px; overflow-x: hidden; max-width: 100vw; }
  body { overflow-x: hidden; max-width: 100vw; }
  .container { padding: 0 20px; max-width: 100%; }
  section, .apply, .apply__layout, .apply__form-wrap { max-width: 100%; }

  /* Section vertical padding */
  :root { --section-py: 28px; }

  /* Prevent iOS auto-zoom on input focus (requires font-size >= 16px) */
  .form-group input,
  .form-group select {
    font-size: 16px;
  }

  /* Nav progress bar — at bottom of fixed header */
  /* Nav progress bar — mobile only, at header bottom */
  .nav__progress {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(196, 130, 138, 0.15);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
  }
  .nav__progress.is-visible {
    opacity: 1;
  }

  /* Hide in-form progress on mobile (nav bar handles it) */
  .form-progress { display: none; }

  /* Modal adjustments for mobile */
  .modal-card {
    padding: 40px 24px 32px;
    border-radius: 22px;
  }
  .modal-title { font-size: 1.35rem; }
  .modal-perks { font-size: 0.85rem; }

  /* Mobile background — fixed pseudo-element avoids iOS Safari bugs */
  body {
    background-color: #F4E2DE;
  }
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    background-image: url('../images/hero-clouds-mobile.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
  }

  /* ── Nav ────────────────────────────────────────────────── */
  .nav {
    background: rgba(250, 238, 236, 0.97) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1.5px solid rgba(196,130,138,0.30);
    box-shadow: 0 2px 20px rgba(61,30,30,0.12);
    height: auto;
    overflow: visible;
    flex-direction: column;
    align-items: stretch;
  }

  /* Mobile nav: logo left, hamburger right */
  .nav__inner {
    justify-content: space-between;
    height: var(--nav-h);
    flex-shrink: 0;
  }

  .nav__logo { display: flex !important; }

  .nav__hamburger {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
  }
  .nav__hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--rose-dark);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .nav__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__hamburger.is-open span:nth-child(2) { opacity: 0; }
  .nav__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Hide desktop nav links and CTA on mobile */
  .nav__links { display: none !important; }
  .nav__cta   { display: none !important; }

  /* ── Hero ───────────────────────────────────────────────── */
  .hero {
    height: auto;
    min-height: 0;
    padding-top: var(--nav-h);
    padding-bottom: 40px;
    overflow: visible;
    display: flex;
    flex-direction: column;
    position: relative;
    background: transparent;
  }

  /* Hide CSS blur clouds on mobile — real photo background used instead */
  .hero__clouds { display: none; }

  .hero__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 100%;
    flex: 1;
    gap: 0;
    min-height: 0;
    text-align: center;
    padding: 20px 0 0;
  }

  /* Text block — slides in first */
  .hero__text {
    width: 100%;
    max-width: 100%;
    flex: 1;
    order: 1;
    padding: 0 24px;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .hero__text.is-revealed {
    opacity: 1;
    transform: translateY(0);
  }

  /* Hide duplicate logo in hero — logo already in header */
  .hero__logo-wrap { display: none !important; }

  .hero__brand {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
    width: 100%;
  }
  .hero__eyebrow      { font-size: 0.75rem; text-align: center; width: 100%; }

  /* Headline image — smaller on mobile */
  .hero__headline     { margin-bottom: 4px; }
  .hero__headline-img { width: 77%; height: auto; margin: 0 auto; display: block; }

  /* Sub text — vertical list on mobile */
  .hero__sub {
    font-size: 0.95rem;
    text-align: center;
    width: 100%;
    margin-bottom: 8px;
    margin-top: 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
  }
  .hero__sub-item { display: block; }
  .hero__sub-item > span[aria-hidden] { display: inline; } /* restore ✦ on mobile */
  .hero__sub-sep  { display: none; }
  .hero__sub::before,
  .hero__sub::after { display: none; }

  /* Proof — three separate cards */
  .hero__proof {
    width: 100%;
    background: none;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    padding: 0;
    gap: 8px;
    margin: 0 auto 12px;
    justify-content: center;
  }
  .hero__proof-item {
    flex: 1;
    background: rgba(255,255,255,0.70);
    border: 1px solid rgba(196,130,138,0.25);
    border-radius: 12px;
    padding: 8px 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
  }
  .hero__proof-item strong { font-size: 1rem; }
  .hero__proof-item > span { font-size: 0.58rem; white-space: normal; text-align: center; line-height: 1.3; }
  .hero__proof-divider { display: none; }
  .hero__trust        { text-align: center; width: 100%; margin-top: 8px; font-size: 0.68rem; justify-content: center; }

  /* CTA button */
  .hero__text .btn--hero {
    display: inline-flex;
    width: fit-content;
    margin: 0 auto;
    font-size: 1rem;
    padding: 14px 32px;
  }

  /* Text fills the first viewport — VIP cards scroll into view below */
  .hero__text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0;
    padding-top: 12px;
    padding-bottom: 24px;
    flex: 0 0 auto;
    min-height: calc(100svh - var(--nav-h) - 20px);
  }

  /* VIP stack — 3 cards static fan layout */
  .hero__vip-stack {
    flex: 0 0 66vw;
    width: 100%;
    max-width: 100%;
    height: 66vw;
    min-height: 0;
    order: 2;
    position: relative;
    margin-top: 4px;
    overflow: hidden;
    animation: stack-fade-in 0.7s ease 0.5s both;
  }
  @keyframes stack-fade-in {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* Mobile carousel — fan layout with data-state */
  .vip-card {
    position: absolute !important;
    left: 50% !important;
    bottom: 0 !important;
    top: auto !important;
    border: 0.8px solid rgba(201, 168, 76, 0.30) !important;
    transition: transform 0.65s cubic-bezier(0.4,0,0.2,1),
                width 0.65s ease,
                height 0.65s ease,
                opacity 0.65s ease !important;
  }

  .vip-card__img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
  }
  .vip-card__name { font-size: 0.875rem; }
  .vip-card__tag  { font-size: 0.6875rem; }

  /* Front — center, large */
  .vip-card[data-state="front"] {
    width: 44vw !important;
    height: 62vw !important;
    transform: translateX(-50%) !important;
    z-index: 3 !important;
    opacity: 1 !important;
  }

  /* Back — right side, small */
  .vip-card[data-state="back"] {
    width: 33vw !important;
    height: 46vw !important;
    transform: translateX(calc(-50% + 28vw)) rotate(6deg) !important;
    transform-origin: bottom center;
    z-index: 2 !important;
    opacity: 0.9 !important;
  }

  /* Back2 — left side, small */
  .vip-card[data-state="back2"] {
    width: 33vw !important;
    height: 46vw !important;
    transform: translateX(calc(-50% - 28vw)) rotate(-6deg) !important;
    transform-origin: bottom center;
    z-index: 2 !important;
    opacity: 0.9 !important;
  }

  /* Leaving — shrink and fade */
  .vip-card[data-state="leaving"] {
    width: 33vw !important;
    height: 46vw !important;
    transform: translateX(-50%) scale(0.8) !important;
    z-index: 1 !important;
    opacity: 0 !important;
  }

  /* Hidden */
  .vip-card[data-state="hidden"] {
    opacity: 0 !important;
    pointer-events: none;
    z-index: 0 !important;
  }

  .hero__sub {
    font-size: 0.8rem;
    white-space: normal;
    justify-content: center;
    margin-bottom: 10px;
  }

  .hero__proof-item strong { font-size: 1.3rem; }
  .hero__proof-item span   { font-size: 0.72rem; }
  .hero__proof-divider     { height: 24px; }

  .btn--hero { font-size: 0.88rem; padding: 12px 22px; }
  .hero__trust { font-size: 0.72rem; margin-top: 8px; }
  .hero__scroll-hint { display: none; }

  /* ── Section headers ─────────────────────────────────────── */
  .section-title  { font-size: 1.55rem; }
  .section-sub    { font-size: 0.88rem; }
  .section-tag    { font-size: 11px; }
  .section-header { margin-bottom: 28px; }

  /* ── Values (1-col, compact cards) ──────────────────────── */
  .values__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .values__card {
    padding: 20px 18px;
  }
  .values__card .benefit-icon-wrap {
    width: 56px;
    height: 56px;
    margin-bottom: 10px;
  }
  .values__card .benefit-icon-wrap img {
    width: 56px;
    height: 56px;
  }
  .values__card h3 {
    font-size: 1.15rem;
    line-height: 1.45;
    min-height: 0;
    margin-bottom: 8px;
  }
  .values__card > p {
    font-size: 0.83rem;
    flex: none;
    margin-bottom: 12px;
  }
  .benefit-badge { font-size: 11px; }

  /* ── Members (swipe carousel) ────────────────────────────── */
  .members__grid {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scroll-padding-left: 20px;
    touch-action: pan-x;
    gap: 16px;
    padding: 0 20px 20px;
    margin-left: -20px;
    margin-right: -20px;
    width: calc(100% + 40px);
    scrollbar-width: none;
    -webkit-scrollbar-width: none;
  }
  .members__grid::-webkit-scrollbar { display: none; }
  .members__arrow { display: none !important; }

  .member-card {
    flex: 0 0 78vw;
    max-width: 290px;
    scroll-snap-align: start;
  }

  .members__ig-cta { margin-top: 24px; }
  .members__ig-cta .btn { font-size: 0.88rem; padding: 12px 20px; }

  /* ── Benefits ────────────────────────────────────────────── */
  .benefits__layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }
  .benefits__visual { display: none; }
  .benefits__list   { width: 100%; }
  .benefits__list .benefit-item {
    padding: 16px 18px;
    gap: 14px;
  }
  .benefits__list .benefit-icon-wrap,
  .benefits__list .benefit-icon-wrap img {
    width: 48px;
    height: 48px;
  }
  .benefit-text h4  { font-size: 0.95rem; margin-bottom: 3px; }
  .benefit-text p   { font-size: 0.83rem; line-height: 1.55; }

  /* ── Brands (2-col grid, same card style as desktop) ────── */
  .brands__marquee {
    overflow: hidden;
    padding: 10px 0;
    margin: -10px 0;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  }
  .brands__track {
    display: flex;
    gap: 14px;
    width: max-content;
    animation: marquee-scroll 18s linear infinite;
  }
  /* Restore all logos */
  .brands__track .brand-logo:nth-child(n+7) { display: flex; }

  /* Smaller cards on mobile */
  .brand-logo {
    width: 140px;
    aspect-ratio: 5 / 3;
    flex-shrink: 0;
    border-radius: 14px;
  }
  .brand-logo img {
    width: 90%;
    height: 90%;
  }

  /* ── CTA Steps — number left, icon mid, text right ─────── */
  .steps-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 28px 28px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
  .step-item {
    display: grid;
    grid-template-columns: 44px 50px auto;
    grid-template-rows: auto auto;
    column-gap: 12px;
    row-gap: 3px;
    align-items: center;
    text-align: left;
  }
  /* Big number left, spans both rows */
  .step-number {
    grid-column: 1;
    grid-row: 1 / 3;
    align-self: center;
    font-size: 2.4rem;
    margin-bottom: 0;
    line-height: 1;
    letter-spacing: 0.02em;
  }
  /* Icon middle, spans both rows */
  .step-icon-wrap {
    grid-column: 2;
    grid-row: 1 / 3;
    width: 50px;
    height: 50px;
    margin-bottom: 0;
    align-self: center;
  }
  .step-icon-wrap img { width: 46px; height: 46px; }
  /* Title */
  .step-title {
    grid-column: 3; grid-row: 1;
    font-size: 1.05rem;
    margin-bottom: 0;
  }
  /* Description — suppress <br> so text flows on one line */
  .step-desc {
    grid-column: 3; grid-row: 2;
    font-size: 0.88rem;
    line-height: 1.5;
  }
  .step-desc br { display: none; }
  .step-connector {
    width: 2px;
    height: 18px;
    background: linear-gradient(to bottom, rgba(201,168,76,0.5), rgba(201,168,76,0.1));
    margin: 5px 0 5px 22px;
  }

  /* ── Apply form (pitch top, form bottom) ────────────────── */
  .apply__layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .apply__pitch {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: static; /* override sticky */
  }
  .apply__pitch .hero__headline-text {
    font-size: 2.4rem;
    text-align: center;
    width: 100%;
  }
  .apply__pitch .hero__features {
    width: fit-content;
    max-width: 100%;
    margin-bottom: 32px;
    text-align: left;
  }
  .apply__pitch .hero__feature-body strong { white-space: nowrap; }
  .apply__pitch .apply__privacy {
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    text-align: center;
    max-width: 100%;
  }

  .apply__form-wrap {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }
  .apply-form {
    padding: 28px 20px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }
  .child-entry {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    padding: 16px;
  }
  .child-entry__fields {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
  }
  .form-group--inline {
    width: 100%;
    min-width: 0;
  }
  .form-group--inline select {
    min-width: 0;
    width: 100%;
    padding-left: 10px;
    padding-right: 32px;
    font-size: 16px;
  }

  .checkbox-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .checkbox-item { font-size: 0.82rem; padding: 10px; }

  /* section-title / section-sub already set above */

  /* ── Footer ──────────────────────────────────────────────── */
  .footer__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
  }
  .footer__brand p { font-size: 0.85rem; }
  .footer__links {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 14px;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    text-align: left;
    font-size: 0.78rem;
  }

  /* ── Background sparkles: off on mobile ──────────────────── */
  .bg-sparkles { display: none; }

}

/* ── Very small screens (below 390px) ───────────────────────── */
@media (max-width: 390px) {
  .checkbox-grid { grid-template-columns: 1fr 1fr; }
  .member-card   { flex: 0 0 88vw; }
}
