/* ─── Variables ─────────────────────────────────────────── */
:root {
  --bg: #F8F5F0;
  --fg: #1A1A1A;
  --accent: #C4551A;
  --accent-hover: #A84815;
  --accent-light: #F0E6DC;
  --muted: #6B6560;
  --border: #DDD8D0;
  --success: #16A34A;
  --white: #FFFFFF;
  --nav-bg: rgba(248, 245, 240, 0.92);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─── Shared Utilities ─────────────────────────────────── */
.section-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--muted);
  margin-bottom: 16px;
}

.section-headline {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: var(--fg);
  margin-bottom: 48px;
}

.section-headline:not(:first-child) { margin-top: 0; }

/* ─── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.btn-large { padding: 14px 28px; font-size: 15px; }

.btn-cta {
  background: var(--accent);
  color: var(--white);
}
.btn-cta:hover { background: var(--accent-hover); }

.btn-ghost {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: var(--accent-light);
  color: var(--accent);
  border-color: transparent;
}

.btn-pricing-outline {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px 24px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  color: var(--fg);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.15s ease;
}
.btn-pricing-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-pricing-cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px 24px;
  border-radius: 8px;
  background: var(--accent);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.15s ease;
}
.btn-pricing-cta:hover { background: var(--accent-hover); }

/* ─── Nav ───────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 48px;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-brand { display: flex; align-items: center; gap: 16px; text-decoration: none; }
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.5px;
  color: var(--fg);
}
.nav-tagline {
  font-size: 12px;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-left: 1px solid var(--border);
  padding-left: 16px;
}
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-link:hover { color: var(--fg); }
.nav-actions { display: flex; gap: 10px; align-items: center; }

/* ─── Hero ──────────────────────────────────────────────── */
.hero {
  padding: 96px 48px 80px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-light);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 28px;
  letter-spacing: 0.3px;
}
.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(40px, 5.5vw, 62px);
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 440px;
  margin-bottom: 36px;
}

.hero-actions { display: flex; gap: 12px; align-items: center; margin-bottom: 16px; }
.hero-footnote {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.2px;
}

/* Hero card */
.hero-card {
  background: var(--fg);
  color: var(--bg);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.14), 0 8px 24px rgba(0,0,0,0.08);
}
.hc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.hc-status { display: flex; align-items: center; gap: 8px; }
.hc-dot {
  width: 8px;
  height: 8px;
  background: #4ADE80;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(74,222,128,0.2);
  animation: pulse 2.5s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(74,222,128,0.2); }
  50% { box-shadow: 0 0 0 6px rgba(74,222,128,0.08); }
}
.hc-status span {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #4ADE80;
}
.hc-time { font-size: 12px; color: rgba(255,255,255,0.4); }

.hc-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 20px;
}
.hc-metric { }
.hc-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: white;
  line-height: 1;
}
.hc-label { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 4px; }

.hc-progress { margin-bottom: 20px; }
.hc-progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}
.hc-progress-label span:last-child { color: var(--accent); font-weight: 600; }
.hc-progress-track {
  height: 5px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  overflow: hidden;
}
.hc-progress-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 3px;
  transition: width 0.5s ease;
}

.hc-activity { display: flex; flex-direction: column; gap: 14px; }
.hc-activity-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
}
.hc-check {
  width: 20px;
  height: 20px;
  background: rgba(74,222,128,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4ADE80;
  font-size: 10px;
  flex-shrink: 0;
  margin-top: 1px;
}
.hc-act-name { font-weight: 600; color: white; line-height: 1.3; }
.hc-act-sub { font-size: 12px; color: rgba(255,255,255,0.45); margin-top: 1px; }

/* ─── What It Is / How It Works ─────────────────────────── */
.what-it-is {
  background: var(--fg);
  color: var(--bg);
  padding: 96px 48px;
}
.what-it-is-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.what-it-is .section-label { color: rgba(255,255,255,0.4); }
.what-it-is .section-headline { color: white; }

.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
  margin-top: 0;
}
.step-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 32px;
  position: relative;
}
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 20px;
  opacity: 0.8;
}
.step-icon {
  width: 48px;
  height: 48px;
  background: rgba(196,85,26,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}
.step-title {
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
}
.step-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}
.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.2);
  font-size: 28px;
  padding: 0 24px;
  padding-top: 80px;
}

/* ─── Features ──────────────────────────────────────────── */
.features {
  padding: 96px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.feature-card {
  background: var(--bg);
  padding: 28px;
  transition: background 0.2s;
}
.feature-card:hover { background: var(--white); }
.feature-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 18px;
}
.feature-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}
.feature-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ─── Difference ────────────────────────────────────────── */
.difference {
  background: var(--accent-light);
  padding: 96px 48px;
}
.difference-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.diff-quote blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 30px);
  font-style: italic;
  font-weight: 700;
  line-height: 1.4;
  color: var(--fg);
  border-left: 3px solid var(--accent);
  padding-left: 28px;
}
.diff-points { display: flex; flex-direction: column; gap: 28px; }
.diff-point { display: flex; align-items: baseline; gap: 20px; }
.diff-stat {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  min-width: 80px;
}
.diff-text { font-size: 15px; color: var(--fg); line-height: 1.5; }

/* ─── Testimonials ───────────────────────────────────────── */
.testimonials {
  padding: 96px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}
.tc-quote {
  font-size: 16px;
  line-height: 1.65;
  color: var(--fg);
  margin-bottom: 24px;
  font-style: italic;
}
.tc-author { display: flex; align-items: center; gap: 14px; }
.tc-avatar {
  width: 44px;
  height: 44px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--accent);
  flex-shrink: 0;
}
.tc-name { font-size: 14px; font-weight: 700; color: var(--fg); }
.tc-role { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* ─── Pricing ───────────────────────────────────────────── */
.pricing {
  background: var(--fg);
  color: var(--bg);
  padding: 96px 48px;
}
.pricing-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.pricing .section-label { color: rgba(255,255,255,0.4); }
.pricing .section-headline { color: white; }
.pricing-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  margin-top: -36px;
  margin-bottom: 56px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.pricing-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
.pricing-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 28px;
  position: relative;
}
.pricing-card.pc-featured {
  background: rgba(196,85,26,0.12);
  border-color: var(--accent);
}
.pricing-card.pc-tier-highlight {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
}
.pricing-card.pc-tier-scale {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}
.pc-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.pc-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 12px;
}
.pc-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 12px;
}
.pc-amount {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 900;
  color: white;
  line-height: 1;
}
.pc-period {
  font-size: 15px;
  color: rgba(255,255,255,0.45);
}
.pc-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
  margin-bottom: 28px;
  min-height: 42px;
}
.pc-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.pc-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}
.pc-features svg { color: #4ADE80; flex-shrink: 0; }

.pricing-note {
  text-align: center;
  font-size: 14px;
  color: rgba(255,255,255,0.4);
}
.pricing-note a {
  color: var(--accent);
  text-decoration: none;
}
.pricing-note a:hover { text-decoration: underline; }

/* ─── Closing CTA ───────────────────────────────────────── */
.closing {
  padding: 100px 48px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.closing-inner { max-width: 640px; margin: 0 auto; }
.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 20px;
}
.closing-body {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 44px;
}
.closing-cta { display: flex; flex-direction: column; align-items: center; gap: 0; }
.closing-footnote {
  margin-top: 16px;
  font-size: 13px;
  color: var(--muted);
}

/* ─── Footer ────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 48px 32px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 32px;
}
.footer-brand { display: flex; flex-direction: column; gap: 8px; }
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 18px;
}
.footer-copy { font-size: 13px; color: var(--muted); }
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; align-items: center; }
.footer-link {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-link:hover { color: var(--accent); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--muted);
}

/* ─── Responsive ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid-4 { grid-template-columns: 1fr 1fr; }
  .pricing-grid { max-width: none; }
}

@media (max-width: 900px) {
  .nav { padding: 0 24px; }
  .nav-tagline { display: none; }
  .nav-links { display: none; }

  .hero { padding: 64px 24px 56px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }

  .what-it-is { padding: 72px 24px; }
  .steps-grid { grid-template-columns: 1fr; gap: 16px; }
  .step-arrow { display: none; }
  .step-card { padding: 24px; }

  .features { padding: 72px 24px; }
  .features-grid { grid-template-columns: 1fr 1fr; }

  .difference { padding: 72px 24px; }
  .diff-grid { grid-template-columns: 1fr; gap: 48px; }

  .testimonials { padding: 72px 24px; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .pricing { padding: 72px 24px; }
  .pricing-grid { grid-template-columns: 1fr; }

  .closing { padding: 72px 24px; }
  .footer { padding: 40px 24px 24px; }
  .footer-inner { flex-direction: column; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ─── FAQ ────────────────────────────────────────────────── */
.faq {
  padding: 96px 48px;
  max-width: 800px;
  margin: 0 auto;
}
.faq-inner {}
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--fg);
  text-align: left;
  transition: color 0.15s;
}
.faq-question:hover { color: var(--accent); }
.faq-chevron {
  flex-shrink: 0;
  color: var(--muted);
  transition: transform 0.2s ease;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, padding 0.25s ease;
}
.faq-item.open .faq-answer { max-height: 200px; }
.faq-answer p {
  padding-bottom: 24px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

/* ─── Floating CTA (mobile) ──────────────────────────────── */
.mobile-float-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 20px;
  background: var(--fg);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-float-cta a {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px;
  background: var(--accent);
  color: white;
  font-size: 16px;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(196,85,26,0.4);
}

/* ─── Responsive ──────────────────────────────────────────── */
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 36px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .mobile-float-cta { display: block; }
  .faq { padding: 72px 24px; }
}