/* ============================================================
   Miestrella — Modern Chic Landing Page
   Editorial, expensive, quiet confidence.
   Think Bottega Veneta — not Canva.
   DM Serif Display for commanding headings
   DM Sans for clean body text
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&family=DM+Serif+Display:ital@0;1&display=swap');

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --bg:         #080810;
  --bg-deep:    #04040c;
  --bg-mid:     #0b0b1c;
  --bg-card:    #0f0f22;
  --bg-card-2:  #12122a;
  --gold:       #C9A84C;
  --gold-light: #d4b06a;
  --gold-dim:   rgba(201, 168, 76, 0.08);
  --gold-glow:  rgba(201, 168, 76, 0.20);
  --gold-line:  rgba(201, 168, 76, 0.18);
  --text:       #edeae2;
  --text-muted: #6b6882;
  --text-dim:   #3a3852;
  --border:     rgba(201, 168, 76, 0.10);
  --border-2:   rgba(255, 255, 255, 0.05);
  --radius:     6px;
  --section-pad: clamp(96px, 14vw, 160px);
  --container-pad: clamp(24px, 5vw, 80px);
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  color: var(--text);
  line-height: 1.1;
}
a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-light); }

/* ── Selection ─────────────────────────────────────────────── */
::selection { background: rgba(201, 168, 76, 0.18); color: var(--text); }

/* ── Scrollbar ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 2px; }

/* ── ─────────────────────────────────────────────────────────
   STAR BACKGROUND — atmospheric, not decorative
   ───────────────────────────────────────────────────────── */
.star-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.star-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 120% 60% at 50% -5%,  rgba(15, 12, 50, 0.98) 0%, transparent 60%),
    radial-gradient(ellipse 70% 45% at 90% 12%,  rgba(25, 18, 65, 0.40) 0%, transparent 55%),
    radial-gradient(ellipse 50% 35% at 8%  80%,  rgba(30, 20, 65, 0.30) 0%, transparent 60%),
    radial-gradient(ellipse 35% 25% at 55% 60%,  rgba(10, 8, 40, 0.50) 0%, transparent 70%);
}
.star-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, transparent 45%, rgba(8,8,16,0.50) 75%, var(--bg) 100%);
  z-index: 1;
}
.star-dot {
  position: absolute;
  width: 1px;
  height: 1px;
  background: rgba(237, 234, 226, 0.5);
  border-radius: 50%;
  opacity: 0;
  animation: star-twinkle var(--dur, 4s) var(--delay, 0s) infinite ease-in-out;
}
@keyframes star-twinkle {
  0%, 100% { opacity: 0.04; transform: scale(1); }
  50%       { opacity: 0.55; transform: scale(1.8); }
}

/* ── Layout ─────────────────────────────────────────────────── */
.container {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* ── ─────────────────────────────────────────────────────────
   PROMO ANNOUNCEMENT BAR — refined, not garish
   ───────────────────────────────────────────────────────── */
.promo-bar {
  position: relative;
  z-index: 200;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}
.promo-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.10em;
  color: var(--text-muted);
  text-align: center;
}

/* ── ─────────────────────────────────────────────────────────
   NAVIGATION — editorial, not corporate
   ───────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 38px; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
/* Hidden state: fades out and slides up when scrolling down */
.nav.nav-hidden {
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.2s;
}
.logo:hover { opacity: 0.75; color: var(--gold); }
.logo svg { flex-shrink: 0; }
.nav-links { display: flex; align-items: center; gap: 40px; list-style: none; }
.nav-links a {
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.25s;
}
.nav-links a:hover { color: var(--text); }

/* Outlined gold button — tactile, refined */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 26px;
  background: transparent;
  color: var(--gold);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid rgba(201, 168, 76, 0.45);
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.2s, box-shadow 0.3s;
}
.btn-primary:hover {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(201, 168, 76, 0.25);
}
.btn-primary:active { transform: translateY(0); }

/* Ghost button — quiet, not competing */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 22px;
  background: transparent;
  color: var(--text-muted);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: border-color 0.25s, color 0.25s, transform 0.2s;
}
.btn-ghost:hover {
  border-color: rgba(201, 168, 76, 0.30);
  color: var(--gold);
  transform: translateY(-1px);
}

/* ── ─────────────────────────────────────────────────────────
   HERO — editorial, commanding, spacious
   ───────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 160px 0 100px;
  position: relative;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-line);
  border-radius: 100px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 400;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 32px;
  width: fit-content;
}
.hero h1 {
  font-size: clamp(3.4rem, 7.5vw, 6.2rem);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
  line-height: 1.02;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold);
  display: inline-block;
}
.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 48px;
  max-width: 460px;
  letter-spacing: 0.01em;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── Star visual — atmospheric, not playful ── */
.hero-stars {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 480px;
}
.hero-stars-visual { position: relative; width: 480px; height: 480px; }
.hero-stars-visual::before {
  content: '';
  position: absolute;
  inset: -80px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(201,168,76,0.04) 0%, rgba(201,168,76,0.02) 40%, transparent 70%);
  animation: pulse-glow 6s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.04); }
}
.star-burst { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 200px; height: 200px; }
.star-burst-inner {
  width: 200px;
  height: 200px;
  animation: star-rotate 50s linear infinite;
  filter: drop-shadow(0 0 12px rgba(201, 168, 76, 0.15));
}
@keyframes star-rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.orbit {
  position: absolute;
  top: 50%; left: 50%;
  width: 340px; height: 340px;
  margin: -170px 0 0 -170px;
  border-radius: 50%;
  animation: orbit-spin var(--dur, 26s) linear infinite;
}
@keyframes orbit-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.orbit-dot {
  position: absolute;
  width: 2.5px; height: 2.5px;
  background: var(--gold);
  border-radius: 50%;
  top: 0; left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 8px var(--gold-glow);
  opacity: 0.6;
}
.constellation-star {
  position: absolute;
  width: 1px; height: 1px;
  background: rgba(237, 234, 226, 0.45);
  border-radius: 50%;
  animation: twinkle var(--d, 4s) var(--del, 0s) infinite ease-in-out;
}
@keyframes twinkle { 0%, 100% { opacity: 0.06; } 50% { opacity: 0.5; } }

/* ── ─────────────────────────────────────────────────────────
   TRUST ROW — editorial divider, not a marquee
   ───────────────────────────────────────────────────────── */
.trust-row {
  position: relative;
  z-index: 1;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-row-inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; }
.trust-item {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 4px 32px;
}
.trust-sep { color: var(--border); font-size: 0.5rem; letter-spacing: 0; line-height: 1; }

/* ── ─────────────────────────────────────────────────────────
   SECTION SHARED — generous, curated breathing room
   ───────────────────────────────────────────────────────── */
.section { padding: var(--section-pad) 0; position: relative; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  padding-top: 18px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
}
.section-title {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  margin-bottom: 20px;
  max-width: 680px;
  letter-spacing: -0.01em;
  line-height: 1.08;
}
.section-sub {
  font-size: clamp(1rem, 1.4vw, 1.08rem);
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.8;
  max-width: 520px;
}
.section-rule {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-line), transparent);
  margin: 0;
}

/* ── ─────────────────────────────────────────────────────────
   WHAT YOU GET — editorial card grid, elevated
   ───────────────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2px;
  margin-top: 72px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 2px);
  overflow: hidden;
}
.feature-card {
  background: var(--bg-card);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.3s;
  position: relative;
}
.feature-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to bottom, var(--gold-dim), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card:hover { background: var(--bg-card-2); }
.feature-card:hover::after { opacity: 1; }
.feature-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 4px; flex-shrink: 0;
}
.feature-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.01em;
  line-height: 1.3;
}
.feature-desc {
  font-size: 0.87rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.7;
}

/* ── ─────────────────────────────────────────────────────────
   SOCIAL PROOF — editorial, not salesy
   ───────────────────────────────────────────────────────── */
.social-proof-section {
  background: linear-gradient(to bottom, var(--bg), var(--bg-mid));
  padding: var(--section-pad) 0;
  position: relative;
}
.social-proof-section::before {
  content: '';
  position: absolute;
  top: 0; left: 20%; right: 20%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-line), transparent);
}
.sp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.sp-heading {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
  max-width: 580px;
}
.sp-body {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.85;
  max-width: 600px;
  margin-bottom: 48px;
  font-weight: 300;
}
.sp-testimonial-placeholder {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 28px;
  font-size: 0.92rem;
  color: var(--text-muted);
  font-style: italic;
  font-weight: 300;
  max-width: 460px;
}

/* ── ─────────────────────────────────────────────────────────
   PRICING — single card, premium, editorial
   ───────────────────────────────────────────────────────── */
.pricing-section { text-align: center; }
.pricing-box {
  display: inline-block;
  margin-top: 72px;
  padding: 72px 88px;
  background: var(--bg-card);
  border: 1px solid rgba(201, 168, 76, 0.22);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.pricing-box::before {
  content: '';
  position: absolute;
  top: 0; left: 20%; right: 20%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.pricing-box::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 40% at 50% 0%, rgba(201, 168, 76, 0.03) 0%, transparent 60%);
  pointer-events: none;
}
.pricing-star { margin-bottom: 20px; opacity: 0.5; filter: drop-shadow(0 0 8px var(--gold-glow)); }
.pricing-amount {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(4rem, 8vw, 5.5rem);
  font-weight: 400;
  color: var(--gold);
  letter-spacing: -0.02em;
  line-height: 1;
  text-shadow: 0 0 50px rgba(201, 168, 76, 0.12);
}
.pricing-period {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 10px;
}
.launch-badge {
  display: inline-block;
  padding: 5px 16px;
  background: var(--gold-dim);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 100px;
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.launch-regular {
  font-size: 1.75rem;
  color: var(--text-dim);
  font-weight: 300;
  text-decoration: line-through;
  margin-top: 10px;
  letter-spacing: 0.02em;
}
.pricing-spots {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  padding: 5px 14px;
  background: rgba(201, 168, 76, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.10em;
  color: var(--gold);
  text-transform: uppercase;
}
.pricing-tagline { font-size: 0.87rem; color: var(--gold); font-weight: 400; letter-spacing: 0.04em; margin-top: 12px; }
.pricing-deadline-note { font-size: 0.82rem; color: var(--text-muted); font-style: italic; font-weight: 300; margin-top: 8px; }
.pricing-note {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 36px;
  font-size: 0.87rem;
  color: var(--text-muted);
  font-weight: 300;
}
.pricing-note span { display: flex; align-items: center; gap: 10px; justify-content: center; }
.pricing-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
  padding: 14px 44px;
  background: transparent;
  color: var(--gold);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid rgba(201, 168, 76, 0.45);
  cursor: pointer;
  transition: background 0.3s, color 0.3s, transform 0.2s, box-shadow 0.3s;
}
.pricing-urgency { margin-top: 16px; font-size: 0.75rem; color: var(--text-dim); font-weight: 300; letter-spacing: 0.04em; font-style: italic; }
.pricing-cta:hover { background: var(--gold); color: var(--bg); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(201, 168, 76, 0.22); }

/* ── ─────────────────────────────────────────────────────────
   ADD-ONS — grid of treatments, not a list
   ───────────────────────────────────────────────────────── */
.addon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2px;
  margin-top: 64px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.addon-card {
  background: var(--bg-card);
  padding: 40px 32px;
  text-align: center;
  transition: background 0.3s;
}
.addon-card:hover { background: var(--bg-card-2); }
.addon-price {
  font-family: 'DM Serif Display', serif;
  font-size: 1.7rem;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 10px;
}
.addon-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1rem;
  color: var(--text);
  font-weight: 400;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
.addon-desc { font-size: 0.82rem; color: var(--text-muted); font-weight: 300; line-height: 1.6; }

/* ── ─────────────────────────────────────────────────────────
   CARE PLAN + CTA + CONTACT + FAQ + FOOTER + RESPONSIVE
   (full visual redesign — part 2)
   ───────────────────────────────────────────────────────── */
.who-section {
  background: linear-gradient(to bottom, var(--bg-mid), var(--bg));
  padding: var(--section-pad) 0;
  position: relative;
}
.who-section::before {
  content: '';
  position: absolute;
  top: 0; left: 20%; right: 20%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-line), transparent);
}
.cta-section { text-align: center; }
.cta-inner { display: flex; flex-direction: column; align-items: center; gap: 0; }
.cta-star { animation: pulse-star 4s ease-in-out infinite; margin-bottom: 24px; }
@keyframes pulse-star { 0%, 100% { transform: scale(1); opacity: 0.6; } 50% { transform: scale(1.08); opacity: 1; } }
.cta-heading { font-family: 'DM Serif Display', serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; color: var(--text); margin: 0 0 16px; letter-spacing: -0.01em; }
.cta-sub { font-size: 1rem; color: var(--text-muted); font-weight: 300; max-width: 460px; line-height: 1.7; margin: 0 0 40px; }
.cta-btn { font-size: 0.82rem; letter-spacing: 0.10em; padding: 14px 40px; }
.contact-section {
  background: linear-gradient(to bottom, var(--bg), var(--bg-mid));
  padding: var(--section-pad) 0;
  position: relative;
}
.contact-section::before {
  content: '';
  position: absolute;
  top: 0; left: 20%; right: 20%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-line), transparent);
}
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: center; }
.contact-links { display: flex; flex-direction: column; gap: 12px; margin-top: 44px; }
.contact-link {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  text-decoration: none;
  transition: border-color 0.3s, transform 0.25s;
  color: var(--text);
}
.contact-link:hover { border-color: var(--gold-line); transform: translateX(6px); color: var(--text); }
.contact-link-icon { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: var(--gold-dim); border-radius: 6px; flex-shrink: 0; }
.contact-link-label { font-family: 'DM Sans', sans-serif; font-size: 0.92rem; font-weight: 500; color: var(--gold); letter-spacing: 0.02em; }
.contact-link-sub { font-size: 0.78rem; color: var(--text-muted); font-weight: 300; margin-top: 3px; }
.contact-form { display: flex; flex-direction: column; gap: 24px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 0.65rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted); }
.form-group input, .form-group select {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input::placeholder { color: var(--text-dim); }
.form-group input:focus, .form-group select:focus { border-color: rgba(201, 168, 76, 0.30); box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.05); }
.form-group input.error, .form-group select.error { border-color: rgba(200, 100, 80, 0.4); }
.select-wrapper { position: relative; }
.select-wrapper select { padding-right: 44px; cursor: pointer; }
.select-arrow { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); color: var(--text-muted); pointer-events: none; }
.contact-submit {
  width: 100%;
  padding: 15px;
  background: transparent;
  color: var(--gold);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid rgba(201, 168, 76, 0.45);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.3s, color 0.3s, transform 0.2s;
}
.contact-submit:hover { background: var(--gold); color: var(--bg); transform: translateY(-1px); }
.contact-submit:disabled { opacity: 0.45; cursor: not-allowed; transform: none; }
.cf-success {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 400;
}
.cf-error {
  padding: 12px 18px;
  background: rgba(200, 80, 70, 0.06);
  border: 1px solid rgba(200, 80, 70, 0.2);
  border-radius: var(--radius);
  color: #d07060;
  font-size: 0.85rem;
}
.faq-section { padding: var(--section-pad) 0; border-top: 1px solid var(--border); }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border-2); }
.faq-item:first-child { border-top: 1px solid var(--border-2); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 32px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem;
  color: var(--text);
  text-align: left;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--gold); }
.faq-chevron { flex-shrink: 0; color: var(--gold); opacity: 0.5; transition: transform 0.3s ease, opacity 0.3s; }
.faq-q[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); opacity: 1; }
.faq-a { overflow: hidden; max-height: 0; transition: max-height 0.4s ease; }
.faq-a p { padding-bottom: 32px; color: var(--text-muted); font-size: 0.95rem; line-height: 1.85; font-weight: 300; }
.faq-item.open .faq-a { max-height: 200px; }
.footer { padding: 48px 0; border-top: 1px solid var(--border-2); display: flex; align-items: center; justify-content: space-between; }
.footer-logo { font-family: 'DM Serif Display', serif; font-size: 0.95rem; font-weight: 400; color: var(--gold); letter-spacing: 0.06em; }
.footer-copy { font-size: 0.78rem; color: var(--text-dim); font-weight: 300; margin-top: 4px; letter-spacing: 0.04em; }
.footer-social { display: flex; align-items: center; gap: 28px; }
.footer-social a { color: var(--text-dim); font-size: 0.78rem; font-weight: 300; letter-spacing: 0.04em; transition: color 0.2s; }
.footer-social a:hover { color: var(--gold); }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
/* ── ─────────────────────────────────────────────────────────
   REVIEWS — What Clients Are Saying
   ───────────────────────────────────────────────────────── */
.reviews-section {
  padding: var(--section-pad) 0;
  position: relative;
  border-top: 1px solid var(--border);
}
.reviews-header {
  text-align: center;
  margin-bottom: 72px;
}
.reviews-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.reviews-title {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.reviews-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.45;
  filter: drop-shadow(0 0 6px var(--gold-glow));
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: 8px;
  padding: 36px 32px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s;
  overflow: hidden;
}
.review-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold), rgba(201, 168, 76, 0.15));
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(201, 168, 76, 0.18);
  background: var(--bg-card-2);
}

/* Reviewer header row */
.review-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(237, 234, 226, 0.9);
  flex-shrink: 0;
  letter-spacing: 0.02em;
}
.reviewer-meta { min-width: 0; }
.reviewer-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.reviewer-role {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 300;
  margin-top: 2px;
}

/* Stars row */
.review-stars {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 8px;
}

/* Verified badge */
.review-verified {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.65;
  margin-bottom: 16px;
}

/* Review body */
.review-body {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.78;
}

/* ── Feature card — clickable ── */
.feature-card {
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  border-color: var(--gold-glow);
}

/* ── Feature modals ── */
.feature-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(4, 4, 12, 0.80);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.feature-modal-backdrop.active {
  opacity: 1;
  pointer-events: all;
}
.feature-modal {
  background: #0d0d1a;
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-top: 2px solid var(--gold);
  border-radius: 12px;
  padding: 40px;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.95);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 24px 64px rgba(0,0,0,0.6), 0 0 0 1px rgba(201,168,76,0.08);
}
.feature-modal-backdrop.active .feature-modal {
  transform: scale(1);
}
.feature-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  opacity: 0.8;
  transition: opacity 0.15s;
  font-family: 'DM Sans', sans-serif;
}
.feature-modal-close:hover { opacity: 1; }
.feature-modal-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-modal-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 8px;
}
.feature-modal-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.feature-modal-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
  max-width: 40px;
}
.feature-modal-body {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9375rem;
  line-height: 1.8;
  color: rgba(237, 234, 226, 0.75);
}
.feature-modal-body em { color: var(--gold-light); font-style: italic; }

@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-sub { max-width: 100%; }
  .hero-actions { justify-content: flex-start; }
  .hero-stars { display: none; }
  .nav-links { display: none; }
  .contact-inner { grid-template-columns: 1fr; gap: 56px; }
  .pricing-box { padding: 56px 48px; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
  .addon-grid { grid-template-columns: 1fr 1fr; }
  .footer { flex-direction: column; gap: 20px; text-align: center; }
  .trust-item { padding: 4px 20px; }
}
@media (max-width: 520px) {
  .features-grid { grid-template-columns: 1fr; }
  .addon-grid { grid-template-columns: 1fr; }
  .pricing-box { padding: 40px 28px; }
  .pricing-amount { font-size: 3.5rem; }
  .hero { padding: 120px 0 80px; }
  .reviews-grid { grid-template-columns: 1fr; }
}