:root {
  --bg: #faf9f6;
  --fg: #1a1a2e;
  --accent: #fbbf24;
  --accent-dark: #d97706;
  --navy: #1a1a2e;
  --muted: #6b7280;
  --card-bg: #ffffff;
  --border: #e5e7eb;
}

/* === NAV === */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  padding: 0 2rem;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.02em;
}

/* === HERO === */
.hero {
  background: var(--navy);
  color: #fff;
  overflow: hidden;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.hero-headline {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  color: #fff;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2rem;
  max-width: 480px;
}
.hero-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.hero-tag {
  background: rgba(251,191,36,0.15);
  border: 1px solid rgba(251,191,36,0.4);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.75rem;
  border-radius: 2rem;
}

/* Hero card */
.hero-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 1.5rem;
  backdrop-filter: blur(8px);
}
.hero-card-top { margin-bottom: 0.5rem; }
.hero-card-top:last-of-type { margin-bottom: 0; }
.card-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.card-visual {
  height: 100px;
  border-radius: 8px;
}
.before-visual {
  background: linear-gradient(135deg, #4a4a4a 0%, #2a2a2a 50%, #555 100%);
  position: relative;
  overflow: hidden;
}
.before-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 8px,
    rgba(0,0,0,0.3) 8px,
    rgba(0,0,0,0.3) 10px
  ),
  radial-gradient(ellipse at 60% 40%, rgba(60,40,0,0.6) 0%, transparent 60%);
}
.after-visual {
  background: linear-gradient(135deg, #e8e0cc 0%, #f5f0e4 40%, #d8cfb8 100%);
  position: relative;
  overflow: hidden;
}
.after-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, transparent 60%);
}
.hero-card-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
}
.divider-line {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.15);
}
.divider-badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  background: rgba(251,191,36,0.12);
  border: 1px solid rgba(251,191,36,0.3);
  padding: 0.2rem 0.6rem;
  border-radius: 2rem;
}

/* Hero stats */
.hero-bottom-bar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 2rem 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 1rem;
}
.hero-stat { display: flex; flex-direction: column; gap: 0.25rem; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent);
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
}

/* === SECTIONS === */
.section-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-dark);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 3rem;
}

/* === SERVICES === */
.services { padding: 5rem 2rem; background: var(--bg); }
.services-inner { max-width: 1200px; margin: 0 auto; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.service-icon {
  color: var(--accent-dark);
  margin-bottom: 1rem;
}
.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

/* === HOW === */
.how { padding: 5rem 2rem; background: #fff; }
.how-inner { max-width: 1200px; margin: 0 auto; }
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  position: relative;
}
.how-steps::before {
  content: '';
  position: absolute;
  top: 1.5rem;
  left: calc(16.67% + 0.5rem);
  right: calc(16.67% + 0.5rem);
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    var(--accent) 0,
    var(--accent) 8px,
    transparent 8px,
    transparent 16px
  );
}
.step { position: relative; }
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 1rem;
  line-height: 1;
}
.step-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.step-body p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

/* === SUBSCRIPTION / PRICING === */
.subscription { padding: 5rem 2rem; background: var(--navy); }
.subscription .section-eyebrow { color: var(--accent); }
.subscription .section-title { color: #fff; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.pricing-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
}
.pricing-card.featured {
  background: rgba(251,191,36,0.08);
  border-color: rgba(251,191,36,0.4);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 2rem;
}
.pricing-header { margin-bottom: 1.5rem; }
.pricing-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 0.5rem;
}
.pricing-price {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
}
.pricing-price span {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  font-family: 'DM Sans', sans-serif;
}
.pricing-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.25rem;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.pricing-features li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  padding-left: 1.25rem;
  position: relative;
}
.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

/* === CLOSING === */
.closing {
  padding: 5rem 2rem;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.closing-visual {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.closing-shape {
  position: absolute;
  border-radius: 50%;
}
.shape-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(251,191,36,0.12) 0%, transparent 70%);
  top: -100px;
  right: -100px;
}
.shape-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(26,26,46,0.06) 0%, transparent 70%);
  bottom: -50px;
  left: 200px;
}
.shape-3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(251,191,36,0.08) 0%, transparent 70%);
  top: 50%;
  left: -50px;
}
.closing-content { max-width: 700px; }
.closing-content h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.closing-content p {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.closing-statement {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--navy) !important;
  font-weight: 600;
}

/* === FOOTER === */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.5);
  padding: 3rem 2rem 2rem;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { margin-bottom: 2rem; }
.footer-brand { max-width: 500px; }
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 0.75rem;
}
.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.6;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  font-size: 0.8rem;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 2.5rem 1.5rem 2rem;
  }
  .hero-bottom-bar {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem 1.5rem 2rem;
  }
  .how-steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .how-steps::before { display: none; }
  .services { padding: 4rem 1.5rem; }
  .how { padding: 4rem 1.5rem; }
  .subscription { padding: 4rem 1.5rem; }
  .closing { padding: 4rem 1.5rem; }
}
@media (max-width: 480px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .hero-tag-row { gap: 0.4rem; }
}