:root {
  --bg: #f8f6fa;
  --bg-subtle: #efe9f5;
  --bg-card: #ffffff;
  --fg: #2d1b4e;
  --fg-muted: #6b5b7a;
  --accent: #8b5fbf;
  --accent-glow: rgba(139, 95, 191, 0.1);
  --accent-light: #a975d9;
  --border: rgba(139, 95, 191, 0.15);
  --radius: 12px;
  --font-display: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
}

* { 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: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background-color 0.3s ease;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* HERO */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, #4a2d6e 0%, #6b4a8f 100%);
}

.hero-inner {
  max-width: 780px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 32px;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  margin-bottom: 28px;
  color: #ffffff;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.hero h1 .accent {
  color: #e8d5f2;
  font-style: italic;
}

.lede {
  font-size: clamp(1.1rem, 2.2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.hero-glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* PROBLEM / SERVICES INTRO */
.problem {
  padding: 80px 24px;
  background: var(--bg);
}

.problem-inner {
  max-width: 960px;
  margin: 0 auto;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.stat-card {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(139, 95, 191, 0.08);
}

.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}

.stat-label {
  display: block;
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

.problem-statement {
  text-align: center;
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  color: var(--fg);
  max-width: 700px;
  margin: 0 auto;
  font-style: italic;
}

/* FEATURES / SERVICES */
.features {
  padding: 100px 24px;
  background: var(--bg-subtle);
}

.features-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.features h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 16px;
  color: var(--accent);
  font-family: 'Playfair Display', serif;
}

.features-subtitle {
  text-align: center;
  color: var(--fg-muted);
  font-size: 1.1rem;
  margin-bottom: 60px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.feature-card {
  background: var(--bg-card);
  border: 2px solid rgba(139, 95, 191, 0.2);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: 0 4px 12px rgba(139, 95, 191, 0.06);
}

.feature-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(139, 95, 191, 0.12);
  transform: translateY(-4px);
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4b5e8 0%, #e8d5f2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--accent);
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}

.feature-card p {
  color: var(--fg-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* HOW IT WORKS / ABOUT */
.how-it-works {
  padding: 100px 24px;
  background: var(--bg);
}

.how-inner {
  max-width: 800px;
  margin: 0 auto;
}

.how-it-works h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  text-align: center;
  margin-bottom: 60px;
  color: var(--accent);
  font-family: 'Playfair Display', serif;
}

.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-content h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--accent);
  font-family: 'Playfair Display', serif;
}

.about-content p {
  color: var(--fg-muted);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-image {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(139, 95, 191, 0.15);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.5;
  line-height: 1;
  min-width: 60px;
}

.step-content h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--accent);
  font-family: 'Playfair Display', serif;
}

.step-content p {
  color: var(--fg-muted);
  font-size: 0.95rem;
}

/* TESTIMONIALS */
.testimonials {
  padding: 100px 24px;
  background: var(--bg-subtle);
}

.testimonials-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.testimonials h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  text-align: center;
  margin-bottom: 60px;
  color: var(--accent);
  font-family: 'Playfair Display', serif;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 2px solid rgba(139, 95, 191, 0.2);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 4px 12px rgba(139, 95, 191, 0.06);
}

.testimonial-stars {
  color: #f59e0b;
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.testimonial-text {
  color: var(--fg);
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.8;
}

.testimonial-author {
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 4px;
}

.testimonial-location {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

/* CLOSING */
.closing {
  padding: 100px 24px;
  text-align: center;
  background: var(--bg);
}

.closing-inner {
  max-width: 680px;
  margin: 0 auto;
}

.closing h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 24px;
  color: var(--accent);
  font-family: 'Playfair Display', serif;
}

.closing p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  margin-bottom: 20px;
  line-height: 1.75;
}

.closing-vision {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2.2vw, 1.3rem);
  color: var(--accent);
  font-weight: 600;
  margin-top: 32px;
}

/* FOOTER */
.site-footer {
  padding: 40px 24px;
  border-top: 2px solid rgba(139, 95, 191, 0.2);
  background: linear-gradient(135deg, #4a2d6e 0%, #6b4a8f 100%);
}

.footer-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
}

.footer-contact {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

.footer-contact a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .stat-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 70vh;
    padding: 100px 20px 60px;
  }

  .about-section {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .step {
    flex-direction: column;
    gap: 12px;
  }

  .step-num {
    font-size: 2rem;
  }

  .footer-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}