/* MedSpa Landing Page — Light Luxury Rose Gold Theme */
:root {
  --bg: #fdf9f6;
  --bg-warm: #faf5f0;
  --bg-card: #ffffff;
  --fg: #1c1917;
  --fg-muted: #78716c;
  --fg-dim: #a8a29e;
  --accent: #c9a87c;
  --accent-rose: #d4a5a5;
  --accent-blush: #edd9d9;
  --accent-blush-dim: rgba(237, 217, 217, 0.5);
  --border: rgba(201, 168, 124, 0.2);
  --border-strong: rgba(201, 168, 124, 0.35);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 100px;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(253, 249, 246, 0.92);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon { font-size: 22px; }
.logo-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.3px;
  color: var(--fg);
}

.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-cta {
  padding: 9px 22px;
  border-radius: var(--radius-pill);
  background: var(--fg);
  color: var(--bg);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}
.nav-cta:hover { background: #2c2725; transform: translateY(-1px); }

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 40px 80px;
  overflow: hidden;
  background: var(--bg);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(212, 165, 165, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 50%, rgba(201, 168, 124, 0.08) 0%, transparent 60%),
    var(--bg);
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 860px;
  text-align: center;
}

.hero-eyebrow {
  display: inline-block;
  padding: 7px 18px;
  border-radius: var(--radius-pill);
  background: var(--accent-blush);
  color: #8b5e5e;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 36px;
  border: 1px solid rgba(212, 165, 165, 0.3);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 72px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -1px;
  color: var(--fg);
  margin-bottom: 28px;
}

.text-accent { color: var(--accent-rose); }
.text-gold { color: var(--accent); }

.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.75;
  max-width: 620px;
  margin: 0 auto 48px;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 36px;
  background: var(--fg);
  color: var(--bg);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 24px rgba(28, 25, 23, 0.15);
}
.btn-primary:hover { background: #2c2725; box-shadow: 0 8px 32px rgba(28, 25, 23, 0.2); transform: translateY(-2px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  background: transparent;
  color: var(--fg-muted);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid var(--border-strong);
  transition: all 0.25s ease;
}
.btn-secondary:hover { border-color: var(--accent); color: var(--fg); background: var(--accent-blush-dim); }

/* HERO IMAGE */
.hero-image-wrap {
  margin: 56px auto 0;
  max-width: 780px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 80px rgba(201, 168, 124, 0.15), 0 4px 24px rgba(0,0,0,0.06);
  position: relative;
  z-index: 2;
}

.hero-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

/* STATS BAR */
.stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 28px 48px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-top: 56px;
  box-shadow: 0 4px 24px rgba(201, 168, 124, 0.08);
  position: relative;
  z-index: 2;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 48px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--accent-rose);
  line-height: 1;
}

.stat-lbl {
  font-size: 12px;
  color: var(--fg-dim);
  text-align: center;
  line-height: 1.4;
  max-width: 120px;
  letter-spacing: 0.3px;
}

.stat-div { width: 1px; height: 44px; background: var(--border); flex-shrink: 0; }

/* SECTION COMMON */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent-rose);
  margin-bottom: 16px;
}

section h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--fg);
}

/* HOW IT WORKS */
.how-it-works { padding: 100px 0; background: var(--bg-warm); }
.how-header { text-align: center; margin-bottom: 64px; }
.how-header h2 { max-width: 540px; margin: 0 auto 16px; }

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.step-card {
  padding: 40px 36px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all 0.3s;
  position: relative;
}

.step-card:hover {
  border-color: var(--border-strong);
  box-shadow: 0 12px 40px rgba(201, 168, 124, 0.1);
  transform: translateY(-4px);
}

.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-blush);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--accent-rose);
  margin-bottom: 24px;
}

.step-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
}

.step-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* FEATURES */
.features { padding: 100px 0; background: var(--bg); }
.features-header { text-align: center; margin-bottom: 64px; }
.features-header h2 { max-width: 600px; margin: 0 auto 16px; }
.features-header p { font-size: 16px; color: var(--fg-muted); max-width: 520px; margin: 0 auto; }

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

.feature-card {
  padding: 36px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: flex;
  gap: 20px;
  transition: all 0.3s;
}

.feature-card:hover { border-color: var(--border-strong); box-shadow: 0 8px 32px rgba(201, 168, 124, 0.08); }

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-blush);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  border: 1px solid var(--border);
}

.feature-content h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 8px;
}

.feature-content p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* CASE STUDY */
.case-study {
  padding: 100px 0;
  background: var(--bg-warm);
}

.case-study-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.case-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: var(--accent-blush);
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #8b5e5e;
  margin-bottom: 24px;
}

.case-study h2 {
  margin-bottom: 24px;
}

.case-study-text {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 36px;
}

.case-metrics {
  display: flex;
  gap: 32px;
}

.case-metric { display: flex; flex-direction: column; gap: 4px; }

.case-metric-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  color: var(--accent);
}

.case-metric-lbl {
  font-size: 12px;
  color: var(--fg-dim);
  letter-spacing: 0.5px;
}

.case-visual {
  background: var(--bg-card);
  border-radius: 20px;
  border: 1px solid var(--border);
  padding: 48px 40px;
  text-align: center;
  box-shadow: 0 8px 40px rgba(201, 168, 124, 0.08);
}

.case-visual-number {
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 600;
  color: var(--accent-rose);
  line-height: 1;
  margin-bottom: 8px;
}

.case-visual-label {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--fg-muted);
  margin-bottom: 32px;
}

.case-bar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.case-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.case-bar-lbl {
  font-size: 12px;
  color: var(--fg-dim);
  min-width: 130px;
  text-align: right;
}

.case-bar-track {
  flex: 1;
  height: 8px;
  background: var(--accent-blush-dim);
  border-radius: 10px;
  overflow: hidden;
}

.case-bar-fill {
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--accent-rose), var(--accent));
}

.case-visual-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: transparent;
  color: var(--accent-rose);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid var(--border-strong);
  transition: all 0.2s;
}
.case-visual-cta:hover { background: var(--accent-blush); }

/* PRICING */
.pricing { padding: 100px 0; background: var(--bg); position: relative; overflow: hidden; }
.pricing-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(237, 217, 217, 0.3) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}

.pricing-header { text-align: center; margin-bottom: 56px; position: relative; z-index: 2; }
.pricing-header h2 { max-width: 560px; margin: 0 auto 16px; }

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.pricing-card {
  padding: 44px 40px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  transition: all 0.3s;
  position: relative;
}

.pricing-card:hover { border-color: var(--border-strong); box-shadow: 0 16px 48px rgba(201, 168, 124, 0.1); transform: translateY(-4px); }

.pricing-card--featured {
  border-color: var(--accent);
  background: linear-gradient(160deg, rgba(237, 217, 217, 0.15) 0%, var(--bg-card) 50%);
  box-shadow: 0 16px 48px rgba(201, 168, 124, 0.15);
}

.pricing-card-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  padding: 5px 18px;
  background: var(--accent-rose);
  color: white;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.pricing-tier {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 4px;
}

.pricing-desc {
  font-size: 13px;
  color: var(--fg-dim);
  margin-bottom: 28px;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}

.pricing-dollar {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--fg-muted);
  align-self: flex-start;
  margin-top: 6px;
}

.pricing-value {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 600;
  letter-spacing: -2px;
  line-height: 1;
  color: var(--fg);
}

.pricing-period {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--fg-dim);
  margin-left: 2px;
}

.pricing-original {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--fg-dim);
  text-decoration: line-through;
  margin-bottom: 24px;
}

.pricing-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 24px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.pricing-features li {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.5;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.pricing-features li::before {
  content: '✓';
  color: var(--accent-rose);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-cta {
  display: block;
  text-align: center;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
  background: var(--bg-warm);
  color: var(--fg);
  border: 1.5px solid var(--border);
}

.pricing-cta:hover { border-color: var(--accent); color: var(--accent-rose); background: var(--accent-blush-dim); }

.pricing-cta--featured {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
}
.pricing-cta--featured:hover { background: #2c2725; box-shadow: 0 8px 24px rgba(28, 25, 23, 0.2); }

.pricing-note {
  text-align: center;
  font-size: 13px;
  color: var(--fg-dim);
  max-width: 520px;
  margin: 40px auto 0;
  line-height: 1.65;
  position: relative;
  z-index: 2;
}

.pricing-highlight {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: var(--accent-blush);
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  font-size: 12px;
  font-weight: 600;
  color: #8b5e5e;
  margin-bottom: 20px;
}

/* CTA SECTION */
.cta-section {
  padding: 100px 0;
  background: var(--bg-warm);
  text-align: center;
}

.cta-section h2 {
  max-width: 600px;
  margin: 0 auto 20px;
}

.cta-section p {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* FOOTER */
.footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-tagline { font-size: 14px; color: var(--fg-muted); margin-bottom: 8px; }
.footer-copy { font-size: 13px; color: var(--fg-dim); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-inner { padding: 0 20px; }
  .hero { padding: 100px 20px 60px; }
  .how-steps { grid-template-columns: 1fr; gap: 20px; }
  .features-grid { grid-template-columns: 1fr; }
  .case-study-inner { grid-template-columns: 1fr; gap: 48px; }
  .pricing-cards { grid-template-columns: 1fr; }
  .hero-stats-bar, .stats-bar {
    flex-direction: column;
    gap: 20px;
    padding: 28px 24px;
  }
  .stat-div { width: 48px; height: 1px; }
  .case-metrics { flex-wrap: wrap; gap: 24px; }
  .section-inner { padding: 0 20px; }
  .pricing { padding: 80px 0; }
  .features, .how-it-works, .case-study, .cta-section { padding: 80px 0; }
  .footer-inner { padding: 0 20px; }
}

@media (max-width: 480px) {
  .hero h1 { letter-spacing: -0.5px; }
  .btn-primary, .btn-secondary { width: 100%; max-width: 320px; justify-content: center; }
  .cta-group { flex-direction: column; align-items: center; }
  .pricing-value { font-size: 44px; }
  .case-visual-number { font-size: 60px; }
}