/* ================================================================
   Aestyx Shared CSS — V2: Earthy Purple, Modern Sophistication
   Extracted from index.html styles (lines 12–1137) + new components.
   ================================================================ */

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

/* ── CSS VARIABLES ── */
:root {
  --bg:        #F4F3F5;
  --bg-2:      #EDECED;
  --bg-card:   #FFFFFF;
  --purple:    #4A3B4F;
  --purple-l:  #6D5B73;
  --purple-ll: #9A8A9F;
  --gold:      #C9B99C;
  --gold-l:    #E0D4C3;
  --lavender:  #B8AEBF;
  --text:      #1E1822;
  --text-s:    #5A5060;
  --white:     #FFFFFF;
  --banner-h:  38px;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── CONSTRUCTION BANNER ── */
.construction-banner {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 102;
  height: var(--banner-h);
  background: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.phase-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201,185,156,0.15);
  border: 1px solid rgba(201,185,156,0.45);
  color: var(--gold);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
}

.phase-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2s ease-in-out infinite;
}

.banner-text {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.35; transform: scale(0.7); }
}

/* ── NAV ── */
nav {
  position: fixed;
  top: var(--banner-h); left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  height: 68px;
  background: rgba(244,243,245,0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(74,59,79,0.08);
}

.nav-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  color: var(--purple);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

.nav-links { display: flex; gap: 2.2rem; list-style: none; }

.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-s);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--purple); }

.nav-right { display: flex; align-items: center; gap: 1rem; }

.lang-selector { display: flex; gap: 4px; }

.lang-btn {
  background: none;
  border: 1px solid rgba(74,59,79,0.18);
  color: var(--text-s);
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 9px;
  border-radius: 4px;
  transition: all 0.2s;
}

.lang-btn:hover { border-color: var(--purple); color: var(--purple); }
.lang-btn.active { background: var(--purple); color: var(--white); border-color: var(--purple); }

.nav-cta {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 22px;
  background: var(--purple);
  color: var(--white);
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.25s, transform 0.2s;
}

.nav-cta:hover { background: var(--text); transform: translateY(-1px); }

/* ── Nav specialist ghost link ── */
.nav-specialist {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple);
  text-decoration: none;
  border: 1px solid rgba(74,59,79,0.35);
  padding: 7px 16px;
  border-radius: 4px;
  white-space: nowrap;
  transition: all 0.2s;
}
.nav-specialist:hover,
.nav-specialist.active {
  background: rgba(74,59,79,0.07);
  border-color: var(--purple);
}

/* ── Mobile nav toggle ── */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--purple);
  padding: 6px;
  border-radius: 6px;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.nav-toggle:hover { background: rgba(74,59,79,0.07); }
.nav-toggle svg { width: 22px; height: 22px; display: block; stroke-width: 1.8; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  padding: calc(var(--banner-h) + 110px) 5vw 80px;
  gap: 5rem;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,185,156,0.1);
  border: 1px solid rgba(201,185,156,0.35);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 2rem;
}

.eyebrow-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); animation: pulse-dot 2s ease-in-out infinite; }

.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.6rem, 4.2vw, 4rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 1.8rem;
  letter-spacing: -0.025em;
}

.hero h1 .highlight {
  color: var(--purple);
  position: relative;
  display: inline-block;
}

.hero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 3px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
}

.hero-sub {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-s);
  line-height: 1.85;
  margin-bottom: 2.4rem;
  max-width: 500px;
}

/* ── WAITLIST FORM ── */
.waitlist-form {
  display: flex;
  gap: 10px;
  max-width: 460px;
}

.waitlist-input {
  flex: 1;
  padding: 14px 18px;
  border: 1px solid rgba(74,59,79,0.2);
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.waitlist-input:focus { border-color: var(--purple); box-shadow: 0 0 0 3px rgba(74,59,79,0.08); }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 15px 28px;
  background: var(--purple);
  color: var(--white);
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid var(--purple);
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary:hover { background: var(--text); border-color: var(--text); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(74,59,79,0.2); }
.btn-primary svg { width: 14px; height: 14px; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 15px 32px;
  background: transparent;
  color: var(--purple);
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid rgba(74,59,79,0.3);
  transition: border-color 0.25s, background 0.25s;
  cursor: pointer;
}

.btn-outline:hover { border-color: var(--purple); background: rgba(74,59,79,0.04); }

.waitlist-success {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--purple);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ── HERO VISUAL: BLUEPRINT CARD ── */
.hero-visual { position: relative; }

.blueprint-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(74,59,79,0.12), 0 8px 24px rgba(74,59,79,0.06);
  border: 1px solid rgba(74,59,79,0.06);
}

.bp-header {
  background: var(--purple);
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bp-header-left { display: flex; align-items: center; gap: 12px; }

.ui-dots { display: flex; gap: 6px; }
.ui-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.22); }
.ui-dot:first-child { background: rgba(255,255,255,0.6); }

.bp-header-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

.bp-score-badge {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.bp-score-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.bp-score-lbl {
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.bp-body { padding: 28px; }

.bp-goal-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bp-goal-tag::before { content: ''; width: 20px; height: 1px; background: var(--gold); }

.bp-categories { display: flex; flex-direction: column; gap: 0; margin-bottom: 24px; }

.bpc-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--bg-2);
}

.bpc-row:last-child { border-bottom: none; }

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

.bpc-dot.secondary { background: var(--lavender); }

.bpc-info { flex: 1; }

.bpc-cat {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

.bpc-proc { font-size: 0.72rem; color: var(--text-s); }

.bpc-tag {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
}

.tag-high { background: rgba(74,59,79,0.1); color: var(--purple); }
.tag-med  { background: rgba(184,174,191,0.2); color: var(--purple-ll); }
.tag-opt  { background: rgba(201,185,156,0.15); color: var(--gold); }

.bp-cta-row { display: flex; gap: 8px; }

.mini-btn {
  flex: 1;
  padding: 10px;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: transform 0.2s;
}

.mini-btn:hover { transform: translateY(-1px); }
.mini-btn.solid { background: var(--purple); color: var(--white); }
.mini-btn.ghost { background: var(--bg); color: var(--purple); border: 1px solid rgba(74,59,79,0.18); }

.floating-card {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--white);
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 12px 32px rgba(74,59,79,0.12);
  border: 1px solid rgba(74,59,79,0.06);
  display: flex;
  align-items: center;
  gap: 14px;
}

.fc-icon { width: 36px; height: 36px; border-radius: 50%; background: rgba(74,59,79,0.08); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.fc-label { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--purple-ll); }
.fc-val { font-family: 'Montserrat', sans-serif; font-size: 0.92rem; font-weight: 700; color: var(--purple); }

.hero-stat {
  position: absolute;
  top: 20px; left: -30px;
  background: var(--purple);
  border-radius: 10px;
  padding: 14px 18px;
  color: var(--white);
}

.stat-num { font-family: 'Montserrat', sans-serif; font-size: 1.5rem; font-weight: 700; }
.stat-label { font-size: 0.62rem; color: rgba(255,255,255,0.55); letter-spacing: 0.08em; }

/* ── SECTION SHARED ── */
section { padding: 96px 5vw; }

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-kicker::before { content: ''; width: 24px; height: 1px; background: var(--gold); }

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.9rem, 2.8vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 1.2rem;
}

.section-title .accent { color: var(--purple); }

.section-lead {
  font-size: 0.95rem;
  color: var(--text-s);
  line-height: 1.85;
}

/* ── VALUE PROPS (ARBITRAGE) ── */
.value-props { background: var(--white); }

.vp-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 4rem;
}

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

.vp-card {
  background: var(--bg);
  border-radius: 16px;
  padding: 40px 32px;
  border: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  text-align: center;
  cursor: default;
}

.vp-card:hover { border-color: rgba(74,59,79,0.1); box-shadow: 0 12px 32px rgba(74,59,79,0.07); transform: translateY(-4px); }

.vp-icon { font-size: 1.6rem; margin-bottom: 1.2rem; display: block; }

.vp-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--purple);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.vp-unit { color: var(--gold); font-size: 1.8rem; }

.vp-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.vp-desc { font-size: 0.8rem; color: var(--text-s); line-height: 1.75; }

/* ── PATIENT JOURNEY ── */
.journey { padding: 96px 5vw; }

.journey-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  margin-top: 4rem;
}

.journey-steps { display: flex; flex-direction: column; gap: 0; }

.js-item {
  display: flex;
  gap: 1.8rem;
  padding-bottom: 2.6rem;
}

.js-item:last-child { padding-bottom: 0; }

.js-left { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }

.js-node {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.js-line { width: 1px; flex: 1; background: rgba(74,59,79,0.12); margin-top: 8px; }
.js-item:last-child .js-line { display: none; }

.js-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
  margin-top: 8px;
}

.js-desc { font-size: 0.85rem; color: var(--text-s); line-height: 1.78; }

/* ── JOURNEY VISUAL CARD ── */
.journey-visual { position: relative; }

.j-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(74,59,79,0.06);
  box-shadow: 0 20px 60px rgba(74,59,79,0.1);
}

.jc-header {
  background: linear-gradient(135deg, var(--purple) 0%, #6D5B73 100%);
  padding: 32px 32px 28px;
  position: relative;
  overflow: hidden;
}

.jc-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.jc-headline {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.jc-body { padding: 28px 32px; }

.jc-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--bg-2);
}

.jc-row:last-child { border-bottom: none; }

.jc-check {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(74,59,79,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.75rem;
  color: var(--purple);
  font-weight: 700;
}

.jc-row-title { font-size: 0.85rem; font-weight: 600; color: var(--text); }
.jc-row-sub { font-size: 0.75rem; color: var(--text-s); }

/* ── PROCEDURES ── */
.procedures { background: var(--purple); }

.proc-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 4rem;
}

.procedures .section-kicker { color: var(--gold); }
.procedures .section-kicker::before { background: var(--gold); }
.procedures .section-title { color: var(--white); }
.proc-header .section-lead { color: rgba(255,255,255,0.55); }

.proc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.proc-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 36px 32px;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
  cursor: default;
}

.proc-card:hover { background: rgba(255,255,255,0.09); border-color: rgba(201,185,156,0.35); transform: translateY(-4px); }

.proc-icon { font-size: 1.8rem; margin-bottom: 1.4rem; display: block; }

.proc-category {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.proc-tagline {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-bottom: 1.4rem;
}

.proc-list { list-style: none; display: flex; flex-direction: column; gap: 0; }

.proc-list li {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.2s;
}

.proc-list li:last-child { border-bottom: none; }
.proc-card:hover .proc-list li { color: rgba(255,255,255,0.7); }

.proc-list li::before {
  content: '';
  width: 16px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.proc-footer {
  margin-top: 1.6rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.3s, transform 0.3s;
}

.proc-card:hover .proc-footer { opacity: 1; transform: translateY(0); }

/* ── WHY BRAZIL ── */
.why-brazil { background: var(--bg); }

.wb-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  margin-top: 4rem;
}

.wb-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 3rem;
}

.wb-stat-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px 24px;
  border: 1px solid rgba(74,59,79,0.06);
  box-shadow: 0 4px 16px rgba(74,59,79,0.05);
}

.wb-stat-card.full { grid-column: 1 / -1; }

.wb-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--purple);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.wb-unit { color: var(--gold); font-size: 1.4rem; }

.wb-label { font-size: 0.78rem; color: var(--text-s); line-height: 1.5; }

.wb-points { display: flex; flex-direction: column; gap: 1.2rem; }

.wb-point {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.wb-check {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 700;
  margin-top: 2px;
}

.wb-point-title { font-size: 0.88rem; font-weight: 600; color: var(--text); margin-bottom: 3px; }
.wb-point-desc { font-size: 0.78rem; color: var(--text-s); line-height: 1.65; }

/* ── SAFETY VAULT ── */
.safety-vault { background: var(--white); }

.sv-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 4rem;
}

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

.sv-card {
  background: var(--bg);
  border-radius: 16px;
  padding: 40px 36px;
  border: 1px solid rgba(74,59,79,0.06);
  display: flex;
  gap: 1.6rem;
  align-items: flex-start;
  transition: box-shadow 0.3s, transform 0.3s;
}

.sv-card:hover { box-shadow: 0 14px 36px rgba(74,59,79,0.09); transform: translateY(-4px); }

.sv-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sv-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.55rem;
}

.sv-desc { font-size: 0.82rem; color: var(--text-s); line-height: 1.78; }

.sv-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 0.9rem;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,185,156,0.12);
  border: 1px solid rgba(201,185,156,0.3);
  padding: 4px 10px;
  border-radius: 20px;
}

/* ── PARTNERS ── */
.partners { background: var(--white); }

.partners-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 4rem;
}

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

.pb-card {
  background: var(--bg);
  border-radius: 12px;
  padding: 36px 28px;
  border: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.pb-card:hover { border-color: rgba(74,59,79,0.1); box-shadow: 0 10px 28px rgba(74,59,79,0.07); transform: translateY(-3px); }

.pb-icon { font-size: 1.5rem; margin-bottom: 1.4rem; display: block; }
.pb-icon svg { width: 26px; height: 26px; stroke: var(--purple); stroke-width: 1.5; }

.pb-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.8rem;
}

.pb-desc { font-size: 0.82rem; color: var(--text-s); line-height: 1.78; }

.partner-cta-bar {
  background: var(--purple);
  border-radius: 16px;
  padding: 48px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 4rem;
}

.pcb-kicker {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.pcb-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.pcb-form { display: flex; gap: 10px; flex-shrink: 0; }

.pcb-input {
  padding: 13px 18px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.2s;
  width: 260px;
}

.pcb-input::placeholder { color: rgba(255,255,255,0.35); }
.pcb-input:focus { border-color: var(--gold); }

.btn-gold {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 24px;
  background: var(--gold);
  color: var(--purple);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
  white-space: nowrap;
}

.btn-gold:hover { background: var(--gold-l); transform: translateY(-1px); }

/* ── CTA / WAITLIST ── */
.cta-section { text-align: center; padding: 120px 5vw; }

.cta-section .section-kicker { justify-content: center; }
.cta-section .section-kicker::before { display: none; }

.cta-section .section-title { max-width: 600px; margin: 0 auto 1rem; }
.cta-section .section-lead { max-width: 500px; margin: 0 auto 3rem; }

.cta-waitlist-form {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.cta-waitlist-form .waitlist-input { max-width: 300px; }

.cta-note { font-size: 0.75rem; color: var(--text-s); margin-top: 1.6rem; letter-spacing: 0.02em; }

/* ── FOOTER ── */
footer {
  background: var(--text);
  padding: 64px 5vw 48px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 5rem;
  align-items: start;
}

.footer-minimal {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 32px 5vw;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-s);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.footer-logo .logo-dot { background: var(--gold); }

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

.footer-col-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }

.footer-links a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--lavender);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover,
.footer-links a.active { color: var(--gold); }

.footer-copy { font-size: 0.7rem; color: rgba(255,255,255,0.22); }

/* ── PAGE HERO (partners/financing) ── */
.page-hero {
  padding: calc(var(--banner-h) + 110px) 5vw 80px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 5rem;
  min-height: 52vh;
}

.page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,185,156,0.1);
  border: 1px solid rgba(201,185,156,0.35);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 1.8rem;
}

.page-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.4rem, 3.8vw, 3.6rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 1.6rem;
  letter-spacing: -0.025em;
}

.page-hero h1 .highlight {
  color: var(--purple);
  position: relative;
  display: inline-block;
}

.page-hero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 3px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
}

.page-hero-sub {
  font-size: 1rem;
  color: var(--text-s);
  line-height: 1.85;
  max-width: 500px;
  margin-bottom: 2.4rem;
}

/* ── PH-VISUAL: stat cards in page hero ── */
.ph-visual { display: flex; flex-direction: column; gap: 1rem; }

.ph-stat-card {
  background: var(--white);
  border-radius: 14px;
  padding: 24px 28px;
  border: 1px solid rgba(74,59,79,0.07);
  box-shadow: 0 6px 24px rgba(74,59,79,0.07);
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.ph-stat-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ph-stat-icon svg { width: 22px; height: 22px; stroke: var(--white); stroke-width: 1.5; }

.ph-stat-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-s); margin-bottom: 2px; }
.ph-stat-val { font-family: 'Montserrat', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--text); }

/* ── VERIFICATION PROCESS ── */
.verification { background: var(--bg); }

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

.ver-card {
  background: var(--white);
  border-radius: 14px;
  padding: 36px 30px;
  border: 1px solid rgba(74,59,79,0.06);
  text-align: center;
  position: relative;
}

.ver-step {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(74,59,79,0.08);
  line-height: 1;
  margin-bottom: 1rem;
}

.ver-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
}

.ver-icon svg { width: 20px; height: 20px; stroke: var(--white); stroke-width: 1.5; }

.ver-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.ver-desc { font-size: 0.8rem; color: var(--text-s); line-height: 1.75; }

.ver-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 1rem;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,185,156,0.12);
  border: 1px solid rgba(201,185,156,0.3);
  padding: 4px 10px;
  border-radius: 20px;
}

/* ── LUCIDE ICON SIZING ── */
.vp-icon svg     { width: 28px; height: 28px; stroke: var(--purple); stroke-width: 1.5; }
.proc-icon svg   { width: 30px; height: 30px; stroke: var(--gold);   stroke-width: 1.5; }
.pb-icon svg     { width: 26px; height: 26px; stroke: var(--purple); stroke-width: 1.5; }
.fc-icon svg     { width: 20px; height: 20px; stroke: var(--purple); stroke-width: 1.75; }
.sv-icon-wrap svg{ width: 24px; height: 24px; stroke: var(--white);  stroke-width: 1.5; }

/* ── SCORE TOOLTIP ── */
.score-row { display: flex; align-items: center; gap: 7px; }
.score-info { position: relative; display: flex; align-items: center; cursor: pointer; outline: none; }
.score-info svg { width: 13px; height: 13px; stroke: rgba(255,255,255,0.4); stroke-width: 2; flex-shrink: 0; }
.score-tooltip {
  position: absolute;
  bottom: calc(100% + 10px);
  right: -8px;
  width: 238px;
  background: var(--text);
  color: rgba(255,255,255,0.75);
  font-size: 0.71rem;
  line-height: 1.65;
  padding: 12px 14px;
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  z-index: 30;
  letter-spacing: 0.01em;
}
.score-tooltip::after {
  content: '';
  position: absolute;
  top: 100%; right: 14px;
  border: 6px solid transparent;
  border-top-color: var(--text);
}
.score-info:hover .score-tooltip,
.score-info:focus-within .score-tooltip { opacity: 1; pointer-events: auto; }

/* ── VERIFICATION BADGES ROW ── */
.verify-row {
  background: var(--white);
  border-top: 1px solid rgba(74,59,79,0.06);
  border-bottom: 1px solid rgba(74,59,79,0.06);
  padding: 22px 5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.verify-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 36px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple-ll);
}
.verify-badge svg { width: 15px; height: 15px; stroke: var(--gold); stroke-width: 2; }
.verify-divider { width: 1px; height: 24px; background: rgba(74,59,79,0.12); }

/* ── FAQ SECTION ── */
.faq-section { background: var(--bg); }
.faq-intro { margin-bottom: 3rem; }
.faq-list { display: flex; flex-direction: column; gap: 0; max-width: 800px; }
.faq-item {
  border-bottom: 1px solid rgba(74,59,79,0.1);
  overflow: hidden;
}
.faq-item:first-child { border-top: 1px solid rgba(74,59,79,0.1); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 22px 0;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  transition: color 0.2s;
  list-style: none;
  user-select: none;
}
.faq-q:hover { color: var(--purple); }
.faq-q svg { width: 18px; height: 18px; stroke: var(--gold); stroke-width: 2; flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a {
  font-size: 0.88rem;
  color: var(--text-s);
  line-height: 1.85;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-a { max-height: 600px; padding-bottom: 22px; }

/* ── DREAM CALCULATOR: AESTYX FLEX™ ── */
.calculator-section { background: var(--white); }
.calc-intro { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }
.calc-selector {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.proc-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 8px;
  border: 1px solid rgba(74,59,79,0.18);
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-s);
  background: var(--bg);
  transition: all 0.25s;
}
.proc-btn:hover { border-color: var(--purple); color: var(--purple); }
.proc-btn.active { background: var(--purple); color: var(--white); border-color: var(--purple); }
.proc-btn svg { width: 16px; height: 16px; }
.calc-comparison {
  display: grid;
  grid-template-columns: 1fr 180px 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 2.5rem;
}
.compare-card {
  background: var(--bg);
  border-radius: 20px;
  padding: 36px 32px;
  border: 1px solid rgba(74,59,79,0.08);
}
.compare-br {
  background: var(--purple);
  border-color: var(--purple);
  box-shadow: 0 24px 60px rgba(74,59,79,0.22);
}
.cc-badge {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-s);
  background: rgba(74,59,79,0.08);
  border-radius: 20px;
  padding: 4px 12px;
  display: inline-block;
  margin-bottom: 1.4rem;
}
.cc-badge-gold { color: var(--gold); background: rgba(201,185,156,0.15); }
.cc-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.compare-br .cc-price { color: var(--white); }
.cc-label { font-size: 0.75rem; color: var(--text-s); margin-bottom: 1.4rem; }
.compare-br .cc-label { color: rgba(255,255,255,0.5); }
.cc-installment {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1.6rem;
}
.cc-details { display: flex; flex-direction: column; gap: 10px; }
.cc-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--text-s);
}
.compare-br .cc-detail { color: rgba(255,255,255,0.65); }
.cc-detail svg { width: 14px; height: 14px; flex-shrink: 0; }
.savings-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 1.5rem;
}
.savings-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.savings-pct {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--purple);
  line-height: 1;
  margin-bottom: 1rem;
}
.savings-bar-bg {
  width: 100%;
  height: 6px;
  background: var(--bg-2);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 1.2rem;
}
.savings-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--purple), var(--gold));
  border-radius: 3px;
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.savings-reallocated {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.3rem;
}
.savings-sub { font-size: 0.68rem; color: var(--text-s); line-height: 1.5; max-width: 140px; }
.calc-disclaimer {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-s);
  max-width: 600px;
  margin: 0 auto;
  letter-spacing: 0.01em;
}

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

.hero-content { animation: fadeUp 0.8s ease both; }
.hero-visual  { animation: fadeUp 0.9s 0.18s ease both; }
.page-hero-content { animation: fadeUp 0.8s ease both; }
.ph-visual { animation: fadeUp 0.9s 0.18s ease both; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  /* Hero */
  .hero { grid-template-columns: 1fr; padding: calc(var(--banner-h) + 110px) 5vw 60px; }
  .hero-visual { display: none; }

  /* Page hero */
  .page-hero { grid-template-columns: 1fr; padding: calc(var(--banner-h) + 110px) 5vw 60px; }
  .ph-visual { display: none; }

  /* Sections */
  .vp-intro { grid-template-columns: 1fr; gap: 2rem; }
  .vp-grid { grid-template-columns: 1fr; }
  .journey-layout { grid-template-columns: 1fr; gap: 3rem; }
  .proc-header { grid-template-columns: 1fr; gap: 2rem; }
  .proc-grid { grid-template-columns: 1fr; }
  .wb-layout { grid-template-columns: 1fr; gap: 3rem; }
  .wb-stats { grid-template-columns: 1fr 1fr; }
  .sv-intro { grid-template-columns: 1fr; gap: 2rem; }
  .sv-grid { grid-template-columns: 1fr; }
  .sv-card { flex-direction: column; gap: 1rem; }

  /* Partners */
  .partners-header { grid-template-columns: 1fr; gap: 2rem; }
  .partner-benefits { grid-template-columns: 1fr; }
  .partner-cta-bar { flex-direction: column; text-align: center; }
  .pcb-input { width: 100%; }

  /* Verification */
  .ver-grid { grid-template-columns: 1fr; }

  /* Calculator */
  .calc-comparison { grid-template-columns: 1fr; }
  .savings-center { padding: 2rem 0; flex-direction: row; gap: 2rem; text-align: left; }
  .savings-bar-bg { flex: 1; }

  /* Verify badges row */
  .verify-row { flex-wrap: wrap; gap: 16px; padding: 20px 5vw; }
  .verify-badge { padding: 0 16px; }
  .verify-divider { display: none; }

  /* Footer / Nav */
  footer { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .nav-specialist { display: none; }
  nav .nav-links { display: none; }
  nav.nav-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0; right: 0;
    background: rgba(244,243,245,0.97);
    backdrop-filter: blur(18px);
    padding: 0.6rem 5vw 1.2rem;
    gap: 0;
    border-bottom: 1px solid rgba(74,59,79,0.1);
    z-index: 99;
  }
  nav.nav-open .nav-links li { border-bottom: 1px solid rgba(74,59,79,0.07); }
  nav.nav-open .nav-links li:last-child { border-bottom: none; }
  nav.nav-open .nav-links a { display: block; padding: 0.85rem 0; font-size: 0.9rem; }
  .nav-toggle { display: flex; }
  .waitlist-form { flex-direction: column; }

  /* Product Stack */
  .ps-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .ps-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ── PRODUCT STACK (5 Pillars) ── */
.product-stack { background: var(--bg-2); }

.ps-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.ps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
}

@media (max-width: 1200px) {
  .ps-grid { grid-template-columns: repeat(3, 1fr); }
}

.ps-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem 1.6rem;
  border: 1px solid rgba(74,59,79,0.07);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.ps-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(74,59,79,0.1);
  border-color: rgba(74,59,79,0.15);
}

.ps-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(74,59,79,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  margin-bottom: 0.2rem;
  flex-shrink: 0;
}

.ps-icon svg { width: 20px; height: 20px; stroke: var(--purple); stroke-width: 1.75; }

.ps-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.1rem;
}

.ps-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}

.ps-desc {
  font-size: 0.79rem;
  color: var(--text-s);
  line-height: 1.7;
  flex: 1;
}

.ps-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple);
  text-decoration: none;
  margin-top: 0.4rem;
  transition: gap 0.2s;
}

.ps-link::after { content: '→'; }
.ps-link:hover { gap: 9px; }

/* ── CLUB PAGE ── */
.club-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

@media (max-width: 960px) {
  .club-grid { grid-template-columns: 1fr; }
}

.club-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(74,59,79,0.07);
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
}

.club-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(74,59,79,0.09); }

.club-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(74,59,79,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.4rem;
  color: var(--purple);
}

.club-icon svg { width: 24px; height: 24px; stroke: var(--purple); stroke-width: 1.75; }

.club-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.7rem;
}

.club-desc { font-size: 0.82rem; color: var(--text-s); line-height: 1.75; }

/* ── HOW IT WORKS: JOURNEY SECTION ── */
.hiw-section { background: var(--white); }
.hiw-brazil { background: var(--bg); }

/* ── ARBITRAGE SECTION ── */
.arb-section { background: var(--white); }

.arb-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}

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

.arb-card {
  background: var(--bg);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(74,59,79,0.07);
  transition: box-shadow 0.3s, transform 0.3s;
}

.arb-card:hover {
  box-shadow: 0 20px 60px rgba(74,59,79,0.1);
  transform: translateY(-5px);
}

.arb-card-header {
  background: var(--purple);
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.arb-proc-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.arb-card-body { padding: 24px 28px 28px; }

.arb-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid rgba(74,59,79,0.08);
}

.arb-row.featured-row {
  background: rgba(74,59,79,0.05);
  padding: 14px 12px;
  border-radius: 10px;
  margin: 6px 0 0;
  border-bottom: none;
}

.arb-loc {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-s);
}

.arb-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-s);
  text-decoration: line-through;
  opacity: 0.5;
}

.arb-price.featured {
  font-size: 1.4rem;
  color: var(--purple);
  text-decoration: none;
  opacity: 1;
}

.arb-savings {
  margin-top: 1.4rem;
  padding: 14px 16px;
  background: var(--white);
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid rgba(74,59,79,0.07);
}

.arb-save-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-s);
  margin-bottom: 3px;
}

.arb-save-amount {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
}

.arb-save-pct {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--purple);
  line-height: 1;
}

.arb-save-pct span { font-size: 1rem; color: var(--gold); }

.arb-disclaimer {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.72rem;
  color: var(--text-s);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
  padding-top: 2rem;
  border-top: 1px solid rgba(74,59,79,0.08);
}

/* ── CONCIERGE SECTION ── */
.concierge-section {
  background: var(--text);
  padding: 96px 5vw;
}

.concierge-section .section-kicker { color: var(--gold); }
.concierge-section .section-kicker::before { background: var(--gold); }
.concierge-section .section-title { color: var(--white); }

.con-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 4rem;
}

.con-header .section-lead { color: rgba(255,255,255,0.45); }

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

.con-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 32px 26px;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.con-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(201,185,156,0.35);
  transform: translateY(-4px);
}

.con-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: rgba(201,185,156,0.18);
  line-height: 1;
  margin-bottom: 1.4rem;
}

.con-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(201,185,156,0.1);
  border: 1px solid rgba(201,185,156,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
}

.con-icon svg { width: 20px; height: 20px; stroke: var(--gold); stroke-width: 1.75; }

.con-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.65rem;
}

.con-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.48);
  line-height: 1.8;
}

@media (max-width: 960px) {
  .arb-grid { grid-template-columns: 1fr; }
  .con-header { grid-template-columns: 1fr; gap: 2rem; }
  .concierge-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .concierge-grid { grid-template-columns: 1fr; }
}

/* ── ECOSYSTEM SECTION ── */
.eco-section { background: var(--bg); }

.eco-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}

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

.eco-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 32px;
  border: 1px solid rgba(74,59,79,0.07);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.eco-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(74,59,79,0.1);
  border-color: rgba(74,59,79,0.15);
}

.eco-card.featured {
  background: var(--purple);
  border-color: transparent;
  box-shadow: 0 32px 80px rgba(74,59,79,0.22);
  transform: translateY(-16px);
}

.eco-card.featured:hover {
  transform: translateY(-22px);
  box-shadow: 0 44px 100px rgba(74,59,79,0.3);
}

.eco-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  border-radius: 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  width: fit-content;
  margin-bottom: 0.4rem;
}

.eco-card:not(.featured) .eco-tag {
  background: rgba(74,59,79,0.08);
  color: var(--purple);
}

.eco-card.featured .eco-tag {
  background: rgba(201,185,156,0.18);
  color: var(--gold);
  border: 1px solid rgba(201,185,156,0.3);
}

.eco-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.4rem;
}

.eco-card:not(.featured) .eco-icon { background: rgba(74,59,79,0.06); }
.eco-card.featured .eco-icon { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.12); }

.eco-icon svg { width: 24px; height: 24px; stroke-width: 1.5; }
.eco-card:not(.featured) .eco-icon svg { stroke: var(--purple); }
.eco-card.featured .eco-icon svg { stroke: var(--gold); }

.eco-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.eco-card:not(.featured) .eco-name { color: var(--text); }
.eco-card.featured .eco-name { color: var(--white); }

.eco-desc { font-size: 0.83rem; line-height: 1.8; flex: 1; }
.eco-card:not(.featured) .eco-desc { color: var(--text-s); }
.eco-card.featured .eco-desc { color: rgba(255,255,255,0.6); }

.eco-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  margin-top: 0.8rem;
  transition: gap 0.2s;
}

.eco-card:not(.featured) .eco-cta-link { color: var(--purple); }
.eco-card.featured .eco-cta-link { color: var(--gold); }
.eco-cta-link::after { content: ' →'; }
.eco-cta-link:hover { gap: 10px; }

/* ── HERO CTA ROW ── */
.hero-cta-row { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }

@media (max-width: 960px) {
  .eco-grid { grid-template-columns: 1fr; }
  .eco-card.featured { transform: none; }
  .eco-card.featured:hover { transform: translateY(-6px); }
}

@media (max-width: 480px) {
  .hero-cta-row { flex-direction: column; align-items: stretch; }
  .hero-cta-row .btn-outline { text-align: center; justify-content: center; }
}

/* ── BEFORE / AFTER GALLERY ── */
.ba-section {
  padding: 96px 5vw;
  background: var(--bg);
}

.ba-section .arb-intro {
  margin-bottom: 3.5rem;
}

.ba-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
}

.ba-card {
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid rgba(74,59,79,0.08);
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.ba-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(74,59,79,0.14);
}

.ba-img-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.ba-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.45s ease;
  display: block;
}

.ba-card:hover .ba-img-wrap img {
  transform: scale(1.06);
}

.ba-overlay {
  position: absolute;
  inset: 0;
  background: rgba(74,59,79,0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.3s;
  color: var(--white);
}

.ba-card:hover .ba-overlay { opacity: 1; }

.ba-overlay svg {
  width: 32px; height: 32px;
  stroke: var(--gold);
}

.ba-overlay span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
}

.ba-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  gap: 8px;
}

.ba-proc {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text);
}

@media (max-width: 1100px) {
  .ba-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .ba-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 440px) {
  .ba-grid { grid-template-columns: 1fr; }
}

/* ── LIGHTBOX ── */
.lb-backdrop {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(14,10,18,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  padding: 5vw;
}

.lb-backdrop.lb-open {
  opacity: 1;
  pointer-events: all;
}

.lb-close {
  position: absolute;
  top: 24px; right: 28px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--white);
  transition: background 0.2s;
}
.lb-close:hover { background: rgba(255,255,255,0.2); }
.lb-close svg { width: 18px; height: 18px; stroke: var(--white); }

.lb-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-height: 90vh;
  max-width: 880px;
  width: 100%;
}

.lb-inner img {
  max-height: 78vh;
  max-width: 100%;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
  display: block;
}

.lb-caption {
  text-align: center;
}

.lb-caption-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}


.lb-caption-sub {
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.06em;
}

/* ── COMPACT HERO ── */
.hero.hero-compact {
  min-height: auto !important;
  display: block !important;
  grid-template-columns: unset !important;
  padding: calc(var(--banner-h) + 100px) 5vw 56px;
  text-align: center;
}
.hero.hero-compact .hero-content {
  max-width: 760px;
  margin: 0 auto;
}
.hero.hero-compact .hero-eyebrow { display: inline-flex; margin-bottom: 1.6rem; }
.hero.hero-compact h1 { font-size: clamp(2.4rem, 5vw, 4rem); margin-bottom: 1.4rem; }
.hero.hero-compact .hero-sub { max-width: 620px; margin: 0 auto 2rem; font-size: 1.05rem; }
.hero.hero-compact .hero-cta-row { justify-content: center; }

.hero-proof-row {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid rgba(74,59,79,0.1);
  border-radius: 12px;
  padding: 20px 32px;
  max-width: 540px;
  margin: 0 auto 2.4rem;
}
.hero-proof-item { flex: 1; text-align: center; }
.hero-proof-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem; font-weight: 700;
  color: var(--purple); line-height: 1; margin-bottom: 4px;
}
.hero-proof-num span { font-size: 1rem; color: var(--gold); }
.hero-proof-lbl { font-size: 0.7rem; font-weight: 500; color: var(--text-s); letter-spacing: 0.04em; }
.hero-proof-div { width: 1px; height: 40px; background: rgba(74,59,79,0.12); flex-shrink: 0; }

/* ── INLINE BEFORE/AFTER (hero-adjacent) ── */
.ba-hero-section {
  padding: 0 5vw 72px;
  background: var(--bg);
}
.ba-hero-header { text-align: center; margin-bottom: 2rem; }
.ba-hero-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
@media (max-width: 1100px) { .ba-hero-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px)  { .ba-hero-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 440px)  { .ba-hero-grid { grid-template-columns: 1fr; } }

/* ── FAQ SECTION ── */
.faq-section {
  padding: 96px 5vw;
  background: var(--bg);
}
.faq-intro { text-align: center; margin-bottom: 3rem; }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid rgba(74,59,79,0.1); }
.faq-item:first-child { border-top: 1px solid rgba(74,59,79,0.1); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 20px 0; background: none; border: none; cursor: pointer;
  font-family: 'Montserrat', sans-serif; font-size: 0.95rem; font-weight: 600;
  color: var(--text); text-align: left;
}
.faq-q svg { width: 18px; height: 18px; flex-shrink: 0; stroke: var(--purple); transition: transform 0.3s; }
.faq-item.faq-open .faq-q svg { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.faq-open .faq-a { max-height: 600px; }
.faq-a p { padding: 0 0 20px; font-size: 0.92rem; color: var(--text-s); line-height: 1.75; }
.faq-a strong { color: var(--purple); }

/* ── CONTACT MODAL ── */
.contact-backdrop {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(14,10,18,0.88);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s; padding: 5vw;
}
.contact-backdrop.lb-open { opacity: 1; pointer-events: all; }
.contact-modal-inner {
  background: var(--white); border-radius: 20px; padding: 48px 40px;
  max-width: 480px; width: 100%; position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,0.3); text-align: center;
}
.contact-icon { width: 56px; height: 56px; background: rgba(74,59,79,0.08);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem; }
.contact-icon svg { width: 26px; height: 26px; stroke: var(--purple); }
.contact-title { font-family: 'Montserrat',sans-serif; font-size: 1.4rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.contact-sub { font-size: 0.9rem; color: var(--text-s); margin-bottom: 2rem; line-height: 1.6; }
.contact-options { display: flex; flex-direction: column; gap: 12px; margin-bottom: 1.5rem; }
.contact-option {
  display: flex; align-items: center; gap: 16px; padding: 16px 20px;
  border: 1px solid rgba(74,59,79,0.12); border-radius: 12px;
  text-decoration: none; transition: background 0.2s, border-color 0.2s;
}
.contact-option:hover { background: rgba(74,59,79,0.04); border-color: var(--purple); }
.contact-opt-icon { width: 40px; height: 40px; background: rgba(74,59,79,0.08);
  border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-opt-icon svg { width: 18px; height: 18px; stroke: var(--purple); }
.contact-opt-body { flex: 1; text-align: left; }
.contact-opt-label { font-size: 0.72rem; color: var(--text-s); letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600; }
.contact-opt-val { font-size: 0.95rem; font-weight: 600; color: var(--text); }
.contact-opt-arrow { width: 16px; height: 16px; stroke: var(--text-s); flex-shrink: 0; }
.contact-note { font-size: 0.8rem; color: var(--text-s); }
.contact-note a { color: var(--purple); text-decoration: underline; }

/* ── FOOTER V2 ── */
.footer-v2 { background: #0E0A12; color: rgba(255,255,255,0.7); }
.footer-top {
  display: grid; grid-template-columns: 260px 1fr;
  gap: 4rem; padding: 72px 5vw 48px;
}
.footer-brand-col .footer-logo { display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Montserrat',sans-serif; font-weight: 700; font-size: 1rem;
  color: var(--white); letter-spacing: 0.14em; text-decoration: none; margin-bottom: 16px; }
.footer-tagline { font-size: 0.85rem; line-height: 1.7; color: rgba(255,255,255,0.5); margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 12px; }
.footer-social-link {
  width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); transition: border-color 0.2s, color 0.2s; text-decoration: none;
}
.footer-social-link:hover { border-color: var(--gold); color: var(--gold); }
.footer-social-link svg { width: 15px; height: 15px; stroke: currentColor; }
.footer-nav-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; }
.footer-v2 .footer-col-title { font-family: 'Montserrat',sans-serif; font-size: 0.7rem;
  font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); margin-bottom: 1rem; }
.footer-v2 .footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-v2 .footer-links a, .footer-link-btn {
  font-size: 0.85rem; color: rgba(255,255,255,0.6);
  text-decoration: none; background: none; border: none; cursor: pointer;
  padding: 0; font-family: inherit; transition: color 0.2s; text-align: left;
}
.footer-v2 .footer-links a:hover, .footer-link-btn:hover { color: var(--white); }
.footer-disclaimer {
  font-size: 0.78rem; color: rgba(255,255,255,0.35); line-height: 1.8;
  padding: 24px 5vw; border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-disclaimer strong { color: rgba(255,255,255,0.55); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 5vw; border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.78rem; color: rgba(255,255,255,0.3);
}
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-nav-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 480px) {
  .footer-nav-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
}

/* ── ARB 5-COLUMN GRID ── */
.arb-grid-5 {
  grid-template-columns: repeat(5, 1fr);
}
@media (max-width: 1100px) {
  .arb-grid-5 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .arb-grid-5 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .arb-grid-5 { grid-template-columns: 1fr; }
}
