@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=Inter:wght@300;400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
svg { display: inline-block; flex-shrink: 0; vertical-align: middle; }

:root {
  --bg:      #080808;
  --card:    #0f0f0f;
  --card2:   #141414;
  --border:  #1f1f1f;
  --gold:    hsl(46,65%,52%);
  --gold-dim: hsl(46,65%,42%);
  --gold-bg: rgba(212,175,55,.10);
  --gold-bg2: rgba(212,175,55,.05);
  --text:    #fafafa;
  --muted:   #a6a6a6;
  --red:     #f03e3e;
  --wa:      #25D366;
  --wa-dark: #1ebd5a;
  --serif:   'Cormorant Garamond', Georgia, serif;
  --sans:    'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ── UTILITIES ── */
.serif   { font-family: var(--serif); }
.gold    { color: var(--gold); }
.muted   { color: var(--muted); }
.center  { text-align: center; }
.italic  { font-style: italic; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 24px;
  height: 44px;
  border-radius: 8px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all .2s;
  white-space: nowrap;
  text-decoration: none;
}
.btn-gold  { background: var(--gold); color: #000; border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-dim); border-color: var(--gold-dim); }
.btn-wa    { background: var(--wa); color: #fff; border-color: var(--wa); box-shadow: 0 0 18px rgba(37,211,102,.25); }
.btn-wa:hover { background: var(--wa-dark); border-color: var(--wa-dark); }
.btn-outline { background: transparent; color: var(--gold); border-color: rgba(212,175,55,.4); }
.btn-outline:hover { background: var(--gold-bg); }
.btn-outline-white { background: transparent; color: var(--muted); border-color: rgba(255,255,255,.15); }
.btn-outline-white:hover { border-color: rgba(212,175,55,.4); color: var(--gold); }
.btn-ghost { background: transparent; color: rgba(250,250,250,.75); border-color: transparent; }
.btn-ghost:hover { color: var(--text); }
.btn-lg { height: 56px; padding: 0 32px; font-size: 16px; }
.btn-sm { height: 36px; padding: 0 16px; font-size: 13px; }

/* ── URGENCY BAR ── */
.urgency-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--gold);
  color: #000;
  padding: 8px 24px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .03em;
}
.urgency-bar .inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.urgency-bar .timer-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}
.urgency-bar .timer {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,0,0,.2);
  padding: 4px 10px;
  border-radius: 6px;
  font-family: monospace;
  font-size: 15px;
}
.urgency-bar .timer svg { width:16px; height:16px; }
.urgency-bar .claim-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #000;
  color: #fff;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s;
}
.urgency-bar .claim-btn:hover { background: #1a1a1a; }

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 40px;
  z-index: 90;
  background: rgba(8,8,8,.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all .3s;
}
.site-header.scrolled {
  background: rgba(8,8,8,.96);
  border-color: var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,.5);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo { flex-shrink: 0; }
.logo-name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  white-space: nowrap;
}
.logo-tag {
  font-size: 9px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .25em;
  margin-top: 3px;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
.desktop-nav a {
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(250,250,250,.7);
  border-radius: 6px;
  transition: all .2s;
  white-space: nowrap;
}
.desktop-nav a:hover { color: var(--gold); background: var(--gold-bg2); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  padding: 6px;
}
.hamburger svg { width: 22px; height: 22px; }
.mobile-nav {
  display: none;
  background: var(--card);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,.06);
  color: var(--text);
  transition: color .2s;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 24px;
}
.mobile-nav-actions .btn { justify-content: center; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .4;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8,8,8,.8) 0%, rgba(8,8,8,.55) 50%, rgba(8,8,8,1) 100%);
}
.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(212,175,55,.08) 0%, transparent 70%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  padding: 100px 24px 60px;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border: 1px solid rgba(212,175,55,.3);
  background: rgba(212,175,55,.1);
  color: var(--gold);
  border-radius: 99px;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 28px;
}
.hero-badge svg { width: 12px; height: 12px; fill: var(--gold); }
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero h1 em {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}
.hero-sub {
  font-size: 18px;
  color: rgba(250,250,250,.8);
  margin-bottom: 36px;
  font-weight: 300;
  line-height: 1.7;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  font-size: 13px;
  color: var(--muted);
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
}
.trust-badge svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }

/* Ticker */
.ticker-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(15,15,15,.85);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--border);
  overflow: hidden;
  padding: 10px 0;
  z-index: 3;
}
.ticker-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
  width: max-content;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(250,250,250,.85);
}
.ticker-item.hot { color: var(--red); }
.ticker-item.gold { color: var(--gold); }
.ticker-item svg { width: 14px; height: 14px; }
.ticker-dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(212,175,55,.4); }

/* ── LOCATION SEO ── */
.location-seo {
  padding: 40px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.location-seo .label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .18em;
  margin-bottom: 20px;
}
.location-seo .label svg { width: 14px; height: 14px; }
.area-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.area-pill {
  font-size: 14px;
  color: rgba(250,250,250,.7);
  background: var(--card);
  border: 1px solid var(--border);
  padding: 7px 18px;
  border-radius: 99px;
  transition: all .2s;
  cursor: default;
}
.area-pill:hover { border-color: rgba(212,175,55,.4); color: var(--gold); }

/* ── INTENT MATCH ── */
.intent-match {
  padding: 80px 0;
  background: var(--card);
  position: relative;
}
.intent-match::after {
  content: '';
  position: absolute;
  right: 0; top: 0;
  width: 50%; height: 100%;
  background: linear-gradient(to left, rgba(212,175,55,.04), transparent);
  pointer-events: none;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.intent-match h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  margin-bottom: 20px;
}
.intent-match .sub {
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 28px;
}
.feature-list { margin-bottom: 32px; }
.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(250,250,250,.9);
  padding: 8px 0;
}
.feature-list li svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }
.img-frame {
  position: relative;
}
.img-frame img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.08);
  object-fit: cover;
}
.img-frame-overlay {
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: linear-gradient(to top, rgba(8,8,8,.9) 0%, transparent 60%);
}
.float-badge {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--bg);
  border: 1px solid rgba(212,175,55,.3);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 16px 32px rgba(0,0,0,.7);
  max-width: 280px;
}
.float-badge .stars { display: flex; gap: 4px; margin-bottom: 8px; }
.float-badge .stars svg { width: 16px; height: 16px; fill: var(--gold); color: var(--gold); }
.float-badge p { font-size: 13px; font-style: italic; color: rgba(250,250,250,.9); }

/* ── VIP ── */
.vip-section { position: relative; overflow: hidden; }
.vip-img-wrap { position: relative; height: 480px; }
.vip-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.vip-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8,8,8,.55) 0%, rgba(8,8,8,.35) 40%, rgba(8,8,8,1) 100%);
}
.vip-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}
.vip-icon {
  width: 60px; height: 60px;
  background: rgba(212,175,55,.1);
  border: 1px solid rgba(212,175,55,.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  backdrop-filter: blur(6px);
}
.vip-icon svg { width: 28px; height: 28px; color: var(--gold); }
.vip-overlay h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 700;
  margin-bottom: 12px;
  text-shadow: 0 2px 20px rgba(0,0,0,.5);
}
.vip-badge {
  display: inline-block;
  background: var(--gold);
  color: #000;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .15em;
  padding: 5px 14px;
  border-radius: 4px;
  margin-bottom: 16px;
}
.vip-overlay p {
  color: rgba(250,250,250,.8);
  font-size: 18px;
  font-weight: 300;
  max-width: 620px;
  line-height: 1.7;
}
.vip-bottom {
  padding: 60px 0;
  background: var(--bg);
}
.vip-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}
.vip-feature {
  padding: 18px 14px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color .2s;
}
.vip-feature:hover { border-color: rgba(212,175,55,.3); }
.vip-feature svg { width: 18px; height: 18px; color: rgba(212,175,55,.7); margin: 0 auto 8px; }
.vip-feature span { font-size: 13px; font-weight: 500; }
.vip-scarcity {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--card);
  border: 1px solid rgba(240,62,62,.3);
  padding: 10px 20px;
  border-radius: 8px;
  color: var(--red);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 36px;
  box-shadow: 0 0 12px rgba(240,62,62,.1);
}
.pulse-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--red);
  position: relative;
}
.pulse-dot::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: var(--red);
  opacity: .4;
  animation: pulse 1.5s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: .4; }
  100% { transform: scale(2.2); opacity: 0; }
}
.vip-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

/* ── FLASH DEALS ── */
.flash-deals {
  padding: 80px 0;
  background: var(--card);
}
.section-heading {
  text-align: center;
  margin-bottom: 56px;
}
.section-heading h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  margin-bottom: 12px;
}
.section-heading p { color: var(--muted); font-size: 17px; }
.deals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.deal-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all .3s;
}
.deal-card:hover { border-color: rgba(212,175,55,.4); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,.5); }
.deal-card.featured { border-color: rgba(212,175,55,.4); box-shadow: 0 0 20px rgba(212,175,55,.08); }
.deal-img { position: relative; height: 180px; overflow: hidden; }
.deal-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.deal-card:hover .deal-img img { transform: scale(1.06); }
.deal-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.6), transparent); }
.deal-badge {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 1;
  padding: 4px 10px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 700;
}
.badge-romantic { background: #7f1d1d; color: #fff; }
.badge-choice   { background: #3f3f46; color: #fff; }
.badge-value    { background: #3f3f46; color: #fff; }
.deal-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.deal-body h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}
.deal-body .deal-sub { color: var(--muted); font-size: 13px; margin-bottom: 14px; }
.deal-urgency {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}
.deal-urgency.red { color: var(--red); }
.deal-urgency.gold { color: var(--gold); }
.deal-urgency svg { width: 14px; height: 14px; }
.deal-includes { margin-bottom: 20px; flex: 1; }
.deal-includes li {
  display: flex;
  align-items: start;
  gap: 8px;
  font-size: 13px;
  padding: 5px 0;
  color: rgba(250,250,250,.85);
}
.deal-includes li svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.deal-cta { display: block; width: 100%; text-align: center; justify-content: center; }
.deal-divider {
  margin-top: 32px;
  padding: 14px;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  background: rgba(250,250,250,.03);
  border-top: 1px solid var(--border);
  border-radius: 0 0 8px 8px;
}
.deal-divider strong { color: var(--text); }

/* ── TREATMENT CARDS ── */
.treatments {
  padding: 80px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.treatments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
.tx-card {
  background: #111;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all .3s;
}
.tx-card:hover {
  border-color: rgba(212,175,55,.5);
  transform: translateY(-4px);
  box-shadow: 0 0 28px rgba(212,175,55,.12);
}
.tx-img { position: relative; height: 190px; overflow: hidden; flex-shrink: 0; }
.tx-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.tx-card:hover .tx-img img { transform: scale(1.06); }
.tx-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, rgba(0,0,0,.15) 40%, rgba(0,0,0,.18) 100%);
}
.tx-badge {
  position: absolute;
  top: 12px; left: 12px; z-index: 1;
  padding: 3px 10px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
}
.tx-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0; z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 12px;
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(4px);
  font-size: 12px;
}
.tx-bar .duration { font-weight: 600; }
.tx-bar .wa-hint { color: var(--gold); font-weight: 500; }
.tx-body { padding: 16px; display: flex; flex-direction: column; flex: 1; gap: 10px; }
.tx-body h3 { font-family: var(--serif); font-size: 18px; font-weight: 700; }
.tx-body .tx-desc { font-size: 13px; color: rgba(250,250,250,.6); line-height: 1.5; }
.tx-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.tx-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: rgba(250,250,250,.7);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  padding: 3px 10px;
  border-radius: 99px;
}
.tx-chip svg { width: 11px; height: 11px; color: var(--gold); flex-shrink: 0; }
.tx-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  margin-top: auto;
}
.tx-urgency {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #f59e0b;
  font-weight: 600;
}
.tx-urgency svg { width: 12px; height: 12px; }
.tx-social {
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(250,250,250,.4);
}
.tx-social svg { width: 12px; height: 12px; }
.tx-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px;
  background: var(--wa);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  border-radius: 8px;
  transition: background .2s;
}
.tx-wa-btn:hover { background: var(--wa-dark); }
.tx-secondary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.tx-sec-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  font-size: 12px;
  color: rgba(250,250,250,.55);
  transition: all .2s;
}
.tx-sec-btn:hover { border-color: rgba(255,255,255,.2); color: var(--text); }
.tx-sec-btn svg { width: 13px; height: 13px; }
.treatments-cta { text-align: center; }
.treatments-cta p { color: rgba(250,250,250,.8); font-size: 17px; margin-bottom: 6px; }
.treatments-cta .sub { color: var(--muted); font-size: 14px; margin-bottom: 24px; }

/* ── TRUST ── */
.trust-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--card);
}
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.trust-img { position: relative; min-height: 360px; }
.trust-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.trust-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent, rgba(20,20,20,.8));
}
.trust-content {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.trust-content .icon-row {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  margin-bottom: 16px;
}
.trust-content .icon-row svg { width: 28px; height: 28px; }
.trust-content h2 { font-family: var(--serif); font-size: 26px; font-weight: 700; margin-bottom: 12px; }
.trust-content .sub { color: var(--muted); font-size: 14px; margin-bottom: 32px; }
.trust-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
}
.trust-point {
  display: flex;
  align-items: center;
  gap: 12px;
}
.trust-point .icon-wrap {
  width: 36px; height: 36px;
  background: var(--bg);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(250,250,250,.6);
  flex-shrink: 0;
}
.trust-point .icon-wrap svg { width: 16px; height: 16px; }
.trust-point span { font-size: 13px; font-weight: 500; }

/* ── MID URGENCY ── */
.mid-urgency {
  padding: 80px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.mid-urgency::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(212,175,55,.04);
  pointer-events: none;
}
.mid-urgency .inner { max-width: 720px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.mid-urgency .clock-icon {
  width: 52px; height: 52px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
}
.mid-urgency .clock-icon svg { width: 22px; height: 22px; color: var(--gold); }
.mid-urgency h2 { font-family: var(--serif); font-size: clamp(28px, 4vw, 48px); font-weight: 700; margin-bottom: 16px; }
.mid-urgency h2 span { color: var(--red); }
.mid-urgency .sub { color: var(--muted); font-size: 17px; margin-bottom: 32px; }
.reasons-box {
  background: rgba(15,15,15,.8);
  border: 1px solid rgba(212,175,55,.2);
  border-radius: 14px;
  padding: 28px 32px;
  margin-bottom: 36px;
  text-align: left;
}
.reasons-box h4 { font-weight: 600; margin-bottom: 16px; }
.reasons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}
.reason-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(250,250,250,.8);
}
.reason-item svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; }

/* ── COUPLE ── */
.couple-section {
  padding: 80px 0;
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.couple-img-wrap {
  position: relative;
}
.couple-img-wrap img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(212,175,55,.2);
}
.couple-img-overlay {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(to top, rgba(8,8,8,.8) 0%, transparent 50%);
}
.couple-float {
  position: absolute;
  bottom: -24px; right: -24px;
  background: var(--bg);
  border: 1px solid rgba(212,175,55,.3);
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 16px 32px rgba(0,0,0,.7);
  max-width: 220px;
}
.couple-float svg { width: 28px; height: 28px; color: var(--gold); margin-bottom: 10px; }
.couple-float h4 { font-family: var(--serif); font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.couple-float p { font-size: 12px; color: var(--muted); font-style: italic; }
.couple-content .tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border: 1px solid rgba(212,175,55,.3);
  background: rgba(212,175,55,.08);
  color: var(--gold);
  border-radius: 99px;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 20px;
}
.couple-content .tag svg { width: 12px; height: 12px; }
.couple-content h2 { font-family: var(--serif); font-size: clamp(28px, 4vw, 46px); font-weight: 700; margin-bottom: 20px; }
.couple-content .desc { color: var(--muted); font-size: 17px; margin-bottom: 28px; }
.couple-includes h4 { font-weight: 600; margin-bottom: 16px; }
.couple-includes ul { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.couple-includes li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: rgba(250,250,250,.8);
}
.couple-includes li .icon-circle {
  width: 32px; height: 32px;
  background: rgba(212,175,55,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.couple-includes li .icon-circle svg { width: 14px; height: 14px; color: var(--gold); }
.couple-alert {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(240,62,62,.08);
  border: 1px solid rgba(240,62,62,.3);
  padding: 12px 16px;
  border-radius: 8px;
  color: var(--red);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 28px;
}
.couple-alert svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ── TESTIMONIALS ── */
.testimonials { position: relative; overflow: hidden; }
.testimonials-hero {
  position: relative;
  height: 240px;
}
.testimonials-hero img { width: 100%; height: 100%; object-fit: cover; }
.testimonials-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8,8,8,.5) 0%, rgba(8,8,8,.55) 50%, rgba(8,8,8,1) 100%);
}
.testimonials-hero .overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}
.testimonials-hero h2 { font-family: var(--serif); font-size: clamp(26px, 4vw, 46px); font-weight: 700; text-shadow: 0 2px 16px rgba(0,0,0,.5); margin-bottom: 6px; }
.testimonials-hero .italic { font-family: var(--serif); font-size: clamp(20px, 3vw, 32px); color: var(--gold); }
.star-row { display: flex; align-items: center; gap: 4px; justify-content: center; margin-top: 10px; }
.star-row svg { width: 18px; height: 18px; fill: var(--gold); color: var(--gold); }
.star-row span { font-size: 13px; color: rgba(250,250,250,.6); margin-left: 8px; }
.reviews-body { background: var(--bg); padding: 60px 0; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  transition: border-color .2s;
}
.review-card:hover { border-color: rgba(212,175,55,.3); }
.review-quote svg { width: 28px; height: 28px; color: rgba(212,175,55,.18); margin-bottom: 16px; }
.review-text { font-size: 14px; font-style: italic; color: rgba(250,250,250,.9); line-height: 1.7; margin-bottom: 20px; }
.review-footer { display: flex; align-items: center; justify-content: space-between; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-initials {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(212,175,55,.15);
  border: 1px solid rgba(212,175,55,.25);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.review-name { font-size: 13px; font-weight: 600; }
.review-stars { display: flex; gap: 2px; }
.review-stars svg { width: 11px; height: 11px; fill: var(--gold); color: var(--gold); }

/* ── MAP ── */
.location-section { padding: 80px 0; background: var(--card); }
.location-section h2 { font-family: var(--serif); font-size: clamp(28px, 4vw, 46px); font-weight: 700; margin-bottom: 40px; }
.location-two { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.location-info .item {
  display: flex;
  align-items: start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: 14px;
  color: rgba(250,250,250,.8);
}
.location-info .item svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.map-frame iframe {
  width: 100%;
  height: 320px;
  border: 1px solid var(--border);
  border-radius: 12px;
  filter: invert(90%) hue-rotate(175deg) saturate(60%) brightness(0.8);
}

/* ── BOOKING PROCESS ── */
.booking-section { padding: 80px 0; background: var(--bg); }
.booking-section h2 { font-family: var(--serif); font-size: clamp(28px, 4vw, 46px); font-weight: 700; margin-bottom: 8px; }
.booking-section .sub { color: var(--muted); font-size: 17px; margin-bottom: 56px; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  height: 1px;
  background: var(--border);
  transform: translateY(-50%);
  z-index: 0;
}
.step-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: transform .2s;
}
.step-card:hover { transform: translateY(-4px); }
.step-icon {
  width: 60px; height: 60px;
  background: var(--bg);
  border: 1px solid rgba(212,175,55,.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 0 14px rgba(212,175,55,.12);
}
.step-icon svg { width: 24px; height: 24px; color: var(--gold); }
.step-num { font-size: 11px; font-weight: 700; color: var(--gold); letter-spacing: .18em; margin-bottom: 8px; }
.step-card h3 { font-family: var(--serif); font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.step-card p { font-size: 13px; color: var(--muted); }

/* ── FAQ ── */
.faq-section { padding: 80px 0; background: var(--card); border-top: 1px solid var(--border); }
.faq-section h2 { font-family: var(--serif); font-size: clamp(28px, 4vw, 46px); font-weight: 700; margin-bottom: 40px; }
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: color .2s;
}
.faq-question:hover { color: var(--gold); }
.faq-question .chevron { width: 18px; height: 18px; flex-shrink: 0; transition: transform .25s; }
.faq-question.open .chevron { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 0 18px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
}
.faq-answer.open { display: block; }

/* ── FINAL CONVERSION ── */
.final-section {
  padding: 80px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
}
.final-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 280px;
  background: rgba(212,175,55,.08);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.final-section .inner { max-width: 800px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border: 1px solid rgba(212,175,55,.3);
  background: rgba(212,175,55,.08);
  color: var(--gold);
  border-radius: 99px;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 28px;
}
.live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  position: relative;
}
.live-dot::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: var(--gold);
  opacity: .4;
  animation: pulse 1.5s ease-out infinite;
}
.final-section h2 { font-family: var(--serif); font-size: clamp(32px, 5vw, 58px); font-weight: 700; margin-bottom: 20px; line-height: 1.15; }
.final-section .desc { font-size: 19px; color: var(--muted); margin-bottom: 40px; font-weight: 300; }
.final-ctas { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 48px; }
.final-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  font-size: 14px;
  color: rgba(250,250,250,.65);
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 32px;
}
.final-trust span { display: flex; align-items: center; gap: 6px; }
.final-trust svg { width: 16px; height: 16px; color: var(--gold); }

/* ── FOOTER ── */
.site-footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 14px;
}
.footer-brand p { color: var(--muted); font-size: 14px; max-width: 300px; margin-bottom: 20px; line-height: 1.65; }
.footer-col h4 { font-weight: 600; font-size: 14px; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li, .footer-col a { font-size: 14px; color: var(--muted); transition: color .2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--muted);
}
.footer-bottom a:hover { color: var(--gold); }
.footer-links { display: flex; gap: 20px; }

/* ── FLOATING WA ── */
.float-wa {
  position: fixed;
  bottom: 28px; right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.float-wa .label {
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 5px 12px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0,0,0,.5);
}
.float-wa-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  transition: transform .2s, box-shadow .2s;
}
.float-wa-btn:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,.6); }
.float-wa-btn svg { width: 28px !important; height: 28px !important; }
.float-wa-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,.4);
  animation: ring 2s ease-out infinite;
}
@keyframes ring {
  0% { transform: scale(1); opacity: .6; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ── MOBILE CTA BAR ── */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9998;
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 10px 12px;
  gap: 8px;
  box-shadow: 0 -4px 16px rgba(0,0,0,.5);
}
.mobile-cta-bar .mcta {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 8px 6px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: opacity .2s;
}
.mobile-cta-bar .mcta:hover { opacity: .85; }
.mobile-cta-bar .mcta svg { width: 20px; height: 20px; }
.mcta-wa  { background: var(--wa); color: #fff; }
.mcta-call { background: var(--gold); color: #000; }
.mcta-dir  { background: var(--card2); color: var(--text); border: 1px solid var(--border); }

/* ── EXIT POPUP ── */
.exit-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.exit-overlay.show { display: flex; }
.exit-popup {
  background: var(--card);
  border: 1px solid rgba(212,175,55,.3);
  border-radius: 16px;
  padding: 36px 32px;
  max-width: 480px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0 24px 64px rgba(0,0,0,.8), 0 0 40px rgba(212,175,55,.08);
}
.exit-close {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(255,255,255,.07);
  border: none;
  color: var(--muted);
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 18px;
  transition: background .2s;
}
.exit-close:hover { background: rgba(255,255,255,.12); color: var(--text); }
.exit-popup .warn { font-size: 13px; color: var(--red); font-weight: 700; letter-spacing: .08em; margin-bottom: 12px; }
.exit-popup h3 { font-family: var(--serif); font-size: 28px; font-weight: 700; margin-bottom: 20px; }
.exit-perks { display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; text-align: left; }
.exit-perk { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.exit-perk svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }

/* ── SVG SIZE OVERRIDES (safety net for specific contexts) ── */
.btn svg                { width: 16px; height: 16px; flex-shrink: 0; }
.btn-lg svg             { width: 18px; height: 18px; }
.btn-sm svg             { width: 14px; height: 14px; }
.urgency-bar svg        { width: 15px; height: 15px; }
.tx-chip svg            { width: 11px; height: 11px; }
.tx-urgency svg         { width: 13px; height: 13px; }
.tx-social svg          { width: 13px; height: 13px; }
.tx-wa-btn svg          { width: 17px; height: 17px; }
.tx-sec-btn svg         { width: 13px; height: 13px; }
.trust-badge svg        { width: 15px; height: 15px; }
.trust-point .icon-wrap svg { width: 16px; height: 16px; }
.ticker-item svg        { width: 13px; height: 13px; }
.ticker-dot             { flex-shrink: 0; }
.vip-feature svg        { width: 17px; height: 17px; display: block; }
.star-row svg           { width: 18px; height: 18px; }
.review-stars svg       { width: 11px; height: 11px; }
.review-quote svg       { width: 26px; height: 26px; }
.feature-list li svg    { width: 17px; height: 17px; }
.deal-urgency svg       { width: 14px; height: 14px; }
.deal-includes li svg   { width: 14px; height: 14px; }
.hero-badge svg         { width: 11px; height: 11px; }
.hero-ctas svg          { width: 18px; height: 18px; }
.trust-badges svg       { width: 14px; height: 14px; }
.footer-bottom svg      { display: none; }
.couple-float svg       { width: 26px; height: 26px; display: block; }
.exit-perk svg          { width: 15px; height: 15px; }
.exit-popup .btn svg    { width: 18px; height: 18px; }
.mcta svg               { width: 20px; height: 20px; }
.mobile-nav-actions svg { width: 18px; height: 18px; }
.location-info .item svg { width: 17px; height: 17px; margin-top: 3px; }
.couple-alert svg       { width: 17px; height: 17px; }
.couple-includes li .icon-circle svg { width: 13px; height: 13px; }
.float-badge .stars svg { width: 14px; height: 14px; }
.live-badge svg         { width: 0; height: 0; }
.final-trust svg        { width: 15px; height: 15px; }
.reason-item svg        { width: 13px; height: 13px; }
.mid-urgency .clock-icon svg { width: 22px; height: 22px; }
.vip-icon svg           { width: 28px; height: 28px; }
.trust-content .icon-row svg { width: 26px; height: 26px; }
.step-icon svg          { width: 24px; height: 24px; }
.footer-brand .btn svg  { width: 15px; height: 15px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .two-col, .location-two { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-img { min-height: 260px; }
  .trust-img::after { background: linear-gradient(to top, rgba(20,20,20,.9), transparent); }
  .deals-grid, .treatments-grid, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .vip-features { grid-template-columns: repeat(3, 1fr); }
  .float-badge { display: none; }
  .couple-float { bottom: -16px; right: -16px; }
}
@media (max-width: 768px) {
  .desktop-nav, .header-actions { display: none; }
  .hamburger { display: flex; }
  .deals-grid, .treatments-grid, .reviews-grid, .steps-grid, .footer-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .vip-features { grid-template-columns: repeat(2, 1fr); }
  .reasons-grid { grid-template-columns: 1fr; }
  .trust-points { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 72px; }
  .float-wa { bottom: 88px; }
  .two-col .img-frame { margin-top: 40px; }
}
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; }
  .vip-ctas { flex-direction: column; align-items: stretch; }
  .final-ctas { flex-direction: column; align-items: stretch; }
  .exit-popup { padding: 28px 20px; }
}
