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

:root {
  --bg:        #0a0f1e;
  --bg-alt:    #111827;
  --fg:        #f0f0f0;
  --muted:     #9ca3af;
  --accent:    #f59e0b;
  --accent-lo: #1f1a0f;
  --border:    #1e2a3a;
  --green:     #22c55e;
  --green-lo:  #0f1f14;
  --font-head: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; display: block; }

/* ─── Nav ─── */
.top-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  background: rgba(10, 15, 30, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
}

.nav-cta {
  font-size: 0.85rem;
  font-weight: 500;
  color: #fff;
  background: var(--accent);
  border-radius: 100px;
  padding: 8px 20px;
  transition: background 0.2s;
}
.nav-cta:hover { background: #c94d03; text-decoration: none; }

/* ─── Buttons ─── */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s, transform 0.1s;
  text-decoration: none;
}
.btn-primary:hover { background: #c94d03; text-decoration: none; transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 12px 28px;
  border-radius: 12px;
  border: 2px solid var(--border);
  cursor: pointer;
  text-align: center;
  transition: border-color 0.2s, background 0.2s;
  text-decoration: none;
}
.btn-secondary:hover { border-color: var(--accent); text-decoration: none; }

/* ─── Hero ─── */
.hero {
  padding: 80px 48px 100px;
  overflow: hidden;
}

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

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-lo);
  border: 1px solid rgba(232,93,4,0.2);
  border-radius: 100px;
  padding: 6px 14px;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-sub {
  font-size: 1.2rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 620px;
  margin: 0 auto 40px;
  font-weight: 300;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}

.trust-badges {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-badge {
  font-size: 0.8rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.trust-badge svg { flex-shrink: 0; }

.hero-trust-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 8px;
}

.trust-divider {
  color: var(--border);
  font-size: 1.1rem;
}

.hero-image {
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.12);
}

.hero-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

/* ─── Pain Section ─── */
.pain {
  padding: 90px 48px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  text-align: center;
}

.section-headline {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.pain-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 28px;
}

.pain-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--accent-lo);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.pain-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
  line-height: 1.3;
}

.pain-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 300;
}

.pain-photo {
  max-width: 1100px;
  margin: 48px auto 0;
  border-radius: 16px;
  overflow: hidden;
}

.pain-photo img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.pain-photo-caption {
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 10px;
  font-style: italic;
}

/* ─── Solution Section ─── */
.solution {
  padding: 90px 48px;
}

.solution-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.solution-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 16px;
  line-height: 1.15;
}

.solution-text p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 36px;
}

.value-props {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.value-prop {
  display: flex;
  align-items: center;
  gap: 14px;
}

.vp-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green-lo);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vp-text {
  font-size: 0.95rem;
  color: var(--fg);
  font-weight: 500;
}

.solution-visual {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}

.solution-visual img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* ─── Features ─── */
.features {
  padding: 90px 48px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
}

.feat-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--accent-lo);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
  line-height: 1.3;
}

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

/* ─── Social Proof ─── */
.social-proof {
  padding: 90px 48px;
}

.social-proof-inner {
  max-width: 1100px;
  margin: 0 auto;
}

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

.testimonial-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
}

.testimonial-quote {
  font-family: var(--font-head);
  font-size: 1rem;
  font-style: italic;
  font-weight: 400;
  color: var(--fg);
  line-height: 1.6;
  margin-bottom: 20px;
}

.testimonial-quote::before { content: '"'; }
.testimonial-quote::after  { content: '"'; }

.testimonial-author {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
}

.stat-badge {
  text-align: center;
  background: var(--accent-lo);
  border: 1px solid rgba(232,93,4,0.2);
  border-radius: 16px;
  padding: 24px 32px;
}

.stat-badge p {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
}

/* ─── Pricing ─── */
.pricing {
  padding: 90px 48px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pricing-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.price-box {
  background: var(--bg);
  border: 2px solid var(--accent);
  border-radius: 24px;
  padding: 48px 40px;
  margin-bottom: 24px;
}

.price-amount {
  font-family: var(--font-head);
  font-size: 4rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 4px;
}

.price-period {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 32px;
}

.price-includes {
  list-style: none;
  margin-bottom: 32px;
  text-align: left;
  display: inline-block;
}

.price-includes li {
  font-size: 0.9rem;
  color: var(--fg);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.price-includes li svg { flex-shrink: 0; color: var(--green); }

.pricing-reassurance {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 440px;
  margin: 0 auto 16px;
}

.pricing-small {
  font-size: 0.75rem;
  color: var(--muted);
}

/* ─── Pricing Page ─── */
.pricing-page {
  max-width: 960px;
  margin: 0 auto;
  padding: 72px 24px 100px;
}

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

.pricing-headline {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.pricing-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
  font-weight: 300;
}

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

.pricing-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  text-align: center;
  position: relative;
}

.pricing-card-featured {
  border-color: var(--accent);
  background: var(--bg);
}

.pricing-card-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  background: rgba(245, 158, 11, 0.12);
  color: var(--accent);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: 100px;
  padding: 4px 12px;
  margin-bottom: 20px;
}

.pricing-card-badge-featured {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.pricing-card-title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
}

.pricing-card-amount {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-card-amount span {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--muted);
}

.pricing-card-billing {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 8px;
}

.pricing-card-trial {
  font-size: 0.8rem;
  color: var(--green);
  font-weight: 500;
  margin-bottom: 20px;
}

.pricing-card-cta {
  display: block;
  width: 100%;
  margin-bottom: 24px;
}

.pricing-card-features {
  list-style: none;
  text-align: left;
  margin-bottom: 20px;
}

.pricing-card-features li {
  font-size: 0.85rem;
  color: var(--fg);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.pricing-card-features li svg { flex-shrink: 0; color: var(--green); }

.pricing-reassurance {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--green);
  font-weight: 500;
}

.pricing-extra-reassurance {
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.pricing-testimonial {
  max-width: 600px;
  margin: 0 auto 72px;
  text-align: center;
}

.pricing-testimonial-quote {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--fg);
  line-height: 1.7;
  margin-bottom: 16px;
}

.pricing-testimonial-author {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
}

.pricing-faq {
  max-width: 700px;
  margin: 0 auto;
}

.pricing-faq-title {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--fg);
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: -0.02em;
}

.pricing-faq .faq-item {
  border-top: 1px solid var(--border);
  padding: 22px 0;
  cursor: pointer;
}

.pricing-faq .faq-item:last-child {
  border-bottom: 1px solid var(--border);
}

.pricing-faq .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--fg);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-body);
}

.pricing-faq .faq-toggle {
  font-size: 1.4rem;
  color: var(--accent);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.pricing-faq .faq-item.open .faq-toggle {
  transform: rotate(45deg);
}

.pricing-faq .faq-answer {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
  padding-top: 10px;
  display: none;
}

.pricing-faq .faq-item.open .faq-answer {
  display: block;
}

/* ─── FAQ ─── */
.faq {
  padding: 90px 48px;
}

.faq-inner {
  max-width: 760px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  cursor: pointer;
}

.faq-item:last-child { border-bottom: 1px solid var(--border); }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-body);
}

.faq-toggle {
  font-size: 1.4rem;
  color: var(--accent);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item.open .faq-toggle { transform: rotate(45deg); }

.faq-answer {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
  padding-top: 12px;
  display: none;
}

.faq-item.open .faq-answer { display: block; }

/* ─── Footer CTA ─── */
.footer-cta {
  padding: 100px 48px;
  text-align: center;
  background: var(--bg);
}

.footer-cta-inner {
  max-width: 760px;
  margin: 0 auto;
}

.footer-cta h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 16px;
}

.footer-cta p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  font-weight: 300;
  margin-bottom: 40px;
}

.footer-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin-top: 16px;
}

/* ─── Footer ─── */
.site-footer {
  padding: 40px 48px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-logo {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ─── Legal Pages (/terms, /privacy) ─── */
.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 72px 24px 100px;
}

.legal-hero {
  text-align: center;
  margin-bottom: 32px;
}

.legal-headline {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 12px;
}

.legal-meta {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 300;
}

.legal-banner {
  background: rgba(245, 158, 11, 0.10);
  border: 1px solid rgba(245, 158, 11, 0.30);
  color: var(--accent);
  border-radius: 12px;
  padding: 14px 20px;
  font-size: 0.92rem;
  margin-bottom: 48px;
  text-align: center;
}

.legal-body {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--fg);
}

.legal-section {
  margin-bottom: 36px;
}

.legal-section h2 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.legal-section p {
  margin: 0 0 12px;
  font-weight: 300;
}

.legal-section ul {
  margin: 0 0 12px;
  padding-left: 22px;
  font-weight: 300;
}

.legal-section li {
  margin-bottom: 6px;
}

.legal-section a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-footer-line {
  margin-top: 64px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
}

.legal-footer-line a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-footer-line a:hover {
  color: var(--fg);
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .top-nav { padding: 16px 24px; }
  .hero { padding: 56px 24px 72px; }

  .hero-cta-group .btn-primary {
    width: 100%;
    min-height: 52px;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .pain { padding: 56px 24px; }
  .pain-grid { grid-template-columns: 1fr; }
  .solution { padding: 56px 24px; }
  .solution-inner { grid-template-columns: 1fr; gap: 40px; }
  .features { padding: 56px 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .social-proof { padding: 56px 24px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing { padding: 56px 24px; }
  .faq { padding: 56px 24px; }
  .footer-cta { padding: 64px 24px; }
  .site-footer { padding: 40px 24px; }
}