/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brand:       #7F1D1D;
  --brand-mid:   #991B1B;
  --brand-light: #FAF7F2;
  --brand-tint:  #F5EDEB;
  --gold:        #C4952A;
  --gold-light:  #F5E9C8;
  --dark:        #1A1212;
  --gray-dark:   #4A3F3F;
  --gray:        #7A6A6A;
  --gray-light:  #F7F4F4;
  --border:      #E8E0DC;
  --white:       #FFFFFF;
  --cream:       #FAF7F2;
  --radius:      12px;
  --shadow:      0 4px 24px rgba(127,29,29,0.08);
  --shadow-lg:   0 12px 48px rgba(127,29,29,0.14);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--dark);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  white-space: nowrap;
  letter-spacing: 0.1px;
}

.btn-primary {
  background: var(--brand);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--brand-mid);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(127,29,29,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--brand);
  border: 2px solid var(--brand);
}
.btn-outline:hover { background: var(--brand-tint); }

.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover {
  background: #b8872a;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(196,149,42,0.35);
}

.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-sm { padding: 10px 20px; font-size: 14px; }

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,247,242,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: -0.5px;
  font-family: 'Georgia', 'Times New Roman', serif;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--brand); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-login {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-dark);
  padding: 8px 16px;
  border-radius: 6px;
  transition: background 0.2s;
}
.nav-login:hover { background: var(--brand-tint); color: var(--brand); }

/* Hero */
.hero {
  padding: 100px 0 88px;
  text-align: center;
  background: linear-gradient(175deg, var(--cream) 0%, var(--brand-tint) 50%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(127,29,29,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand);
  margin-bottom: 28px;
  box-shadow: var(--shadow);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
}

.hero h1 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -2px;
  color: var(--dark);
  max-width: 780px;
  margin: 0 auto 22px;
  font-family: 'Georgia', 'Times New Roman', serif;
}

.hero h1 em {
  font-style: normal;
  color: var(--brand);
}

.hero h1 strong {
  font-style: normal;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-mid) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 18px;
  color: var(--gray);
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero-note {
  font-size: 13px;
  color: var(--gray);
}

.hero-note strong { color: var(--brand); font-weight: 600; }

/* Stats */
.stats {
  padding: 52px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--cream);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-value {
  font-size: 38px;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: -1.5px;
  font-family: 'Georgia', serif;
}

.stat-label {
  font-size: 14px;
  color: var(--gray);
  margin-top: 4px;
  font-weight: 500;
}

/* How it works */
.how {
  padding: 96px 0;
  background: var(--white);
}

.section-tag {
  display: inline-block;
  background: var(--brand-tint);
  color: var(--brand);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -1.5px;
  color: var(--dark);
  margin-bottom: 14px;
  font-family: 'Georgia', 'Times New Roman', serif;
  line-height: 1.2;
}

.section-sub {
  font-size: 17px;
  color: var(--gray);
  max-width: 480px;
  line-height: 1.7;
}

.how-header { margin-bottom: 64px; }

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

.step {
  text-align: center;
  padding: 36px 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}
.step:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
  border-color: rgba(127,29,29,0.2);
}

.step-number {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-mid) 100%);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  margin: 0 auto 20px;
  font-family: 'Georgia', serif;
  box-shadow: 0 4px 12px rgba(127,29,29,0.3);
}

.step-icon {
  font-size: 28px;
  margin-bottom: 16px;
}

.step h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}

.step p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}

/* Features */
.features {
  padding: 96px 0;
  background: var(--cream);
}

.features-header {
  margin-bottom: 64px;
}

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

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}
.feature-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
  border-color: rgba(127,29,29,0.2);
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--brand-tint);
  border: 1px solid rgba(127,29,29,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}

.feature-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.65;
}

/* Pricing */
.pricing {
  padding: 96px 0;
  background: var(--white);
}

.pricing-header {
  text-align: center;
  margin-bottom: 64px;
}

.pricing-header .section-sub {
  margin: 0 auto;
}

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

.plan-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.plan-card:hover { border-color: rgba(127,29,29,0.25); }

.plan-card--featured {
  border-color: var(--brand);
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: scale(1.04);
  background: linear-gradient(170deg, var(--brand-tint) 0%, var(--white) 60%);
}

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold) 0%, #b8872a 100%);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 3px 10px rgba(196,149,42,0.4);
}

.plan-name {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray);
  margin-bottom: 10px;
}

.plan-price {
  font-size: 44px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 4px;
  font-family: 'Georgia', serif;
}

.plan-price sup {
  font-size: 18px;
  font-weight: 700;
  vertical-align: top;
  margin-top: 10px;
  display: inline-block;
  font-family: 'Inter', sans-serif;
}

.plan-price-period {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 28px;
}

.plan-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin-bottom: 24px;
}

.plan-features {
  list-style: none;
  margin-bottom: 32px;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-dark);
  padding: 7px 0;
  border-bottom: 1px solid var(--gray-light);
}

.plan-features li:last-child { border-bottom: none; }

.plan-features li::before {
  content: '✓';
  color: var(--brand);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background: var(--brand-tint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.plan-cta { width: 100%; }

/* Testimonial */
.testimonials {
  padding: 96px 0;
  background: var(--brand);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 32px;
  font-size: 240px;
  font-family: 'Georgia', serif;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  pointer-events: none;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 56px;
}

.testimonials-header .section-tag {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
}

.testimonials-header .section-title {
  color: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 32px 28px;
  backdrop-filter: blur(4px);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 15px;
  color: rgba(255,255,255,0.9);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}

.testimonial-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}

.testimonial-role {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-top: 2px;
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(150deg, var(--cream) 0%, var(--brand-tint) 100%);
  text-align: center;
  border-top: 1px solid var(--border);
}

.cta-section h2 {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -1.5px;
  margin-bottom: 16px;
  font-family: 'Georgia', 'Times New Roman', serif;
  line-height: 1.2;
}

.cta-section h2 em {
  font-style: normal;
  color: var(--brand);
}

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

.cta-note {
  font-size: 13px;
  color: var(--gray);
  margin-top: 16px;
}

.cta-note strong { color: var(--brand); }

/* Footer */
.footer {
  background: var(--dark);
  color: rgba(250,247,242,0.55);
  padding: 56px 0 32px;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .footer-logo {
  font-size: 24px;
  font-weight: 800;
  color: var(--cream);
  margin-bottom: 10px;
  display: block;
  font-family: 'Georgia', serif;
  letter-spacing: -0.5px;
}

.footer-brand p {
  font-size: 13px;
  max-width: 220px;
  line-height: 1.7;
}

.footer-links h4 {
  font-size: 11px;
  font-weight: 700;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(250,247,242,0.55);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--cream); }

.footer-bottom {
  border-top: 1px solid rgba(250,247,242,0.08);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
}

.footer-bottom-brand { color: var(--brand-mid); font-weight: 600; }

/* Divider ornament */
.section-ornament {
  text-align: center;
  margin-bottom: 20px;
}

.section-ornament span {
  display: inline-block;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--brand) 0%, var(--gold) 100%);
  border-radius: 3px;
}

/* Responsive */
@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid .testimonial-card:last-child { display: none; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }

  .stats-grid { gap: 12px; }
  .stat-value { font-size: 28px; }

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

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

  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-grid .testimonial-card:last-child { display: block; }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }

  .plan-card--featured { transform: none; }

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

  .hero-actions { flex-direction: column; align-items: stretch; max-width: 320px; margin: 0 auto 20px; }
  .hero-actions .btn { justify-content: center; }
}
