/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0e0e0e;
  --bg-alt: #161412;
  --bg-light: #f4f3ee;
  --fg: #f4f3ee;
  --fg-muted: #9a9590;
  --accent: #ff4d00;
  --accent-dim: rgba(255, 77, 0, 0.08);
  --border: rgba(244, 243, 238, 0.08);
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --max-w: 1140px;
  --section-pad: 96px;
}

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

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: inherit; text-decoration: none; }

/* ===== NAV ===== */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 32px;
  background: rgba(14, 14, 14, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  color: var(--fg);
}
.nav-logo-accent { color: var(--accent); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg-muted);
  transition: color 0.2s;
  text-decoration: none;
}
.nav-link:hover { color: var(--fg); }
.btn-nav-cta {
  display: inline-block;
  padding: 8px 20px;
  background: var(--accent);
  color: #fff;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 0.2s, transform 0.1s;
}
.btn-nav-cta:hover {
  background: #e05a1e;
  color: #fff;
  transform: translateY(-1px);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 15, 0.3) 0%,
    rgba(10, 10, 15, 0.5) 40%,
    rgba(10, 10, 15, 0.85) 80%,
    rgba(10, 10, 15, 1) 100%
  );
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,77,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,77,0,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 100px 32px 120px;
  width: 100%;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: #ffffff;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero-sub {
  font-size: 1.125rem;
  color: rgba(244, 243, 238, 0.85);
  line-height: 1.65;
  max-width: 600px;
  margin-bottom: 40px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(255, 77, 0, 0.3);
}
.btn-primary:hover {
  background: #e05a1e;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(255, 77, 0, 0.4);
}

.btn-ghost {
  display: inline-block;
  padding: 14px 32px;
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  transition: border-color 0.2s, background 0.2s, transform 0.1s;
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.08);
  color: #fff;
  transform: translateY(-1px);
}

.btn-large {
  padding: 16px 40px;
  font-size: 1.0625rem;
}

/* ===== SCORE SECTION ===== */
.score-section {
  background: var(--bg-alt);
  padding: var(--section-pad) 32px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.score-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.score-headline {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 3rem);
  line-height: 1.1;
  letter-spacing: 0.01em;
}
.score-body {
  color: var(--fg-muted);
  line-height: 1.7;
  font-size: 1.0625rem;
  margin-bottom: 36px;
}
.score-factors {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.factor-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--fg);
}
.factor-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ===== SHARED SECTION STYLES ===== */
.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 16px;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin-bottom: 64px;
}

/* ===== PROCESS ===== */
.process-section {
  padding: var(--section-pad) 32px;
}
.process-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.process-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
}
.step {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}
.step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--accent);
  opacity: 0.6;
  line-height: 1;
  margin-bottom: 16px;
}
.step-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.step-desc {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.6;
}
.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  padding-top: 80px;
}
.step-connector::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0.3;
}

/* ===== REPORT SECTION ===== */
.report-section {
  background: var(--bg-alt);
  padding: var(--section-pad) 32px;
  border-top: 1px solid var(--border);
}
.report-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.report-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.report-block {
  padding: 36px 32px;
  border: 1px solid var(--border);
  border-radius: 12px;
  margin: -1px 0 0 -1px;
}
.report-block-title {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 12px;
}
.report-block-desc {
  font-size: 0.9375rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ===== PRICING ===== */
.pricing-section {
  padding: var(--section-pad) 32px;
}
.pricing-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.pricing-tiers {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
}
.pricing-tier {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pricing-tier-top {
  border-color: rgba(255,77,0,0.3);
  background: rgba(255,77,0,0.04);
}
.tier-name {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 500;
  margin-bottom: 16px;
}
.tier-price {
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 1;
  color: var(--fg);
  margin-bottom: 8px;
}
.pricing-tier-free .tier-price { color: var(--fg-muted); opacity: 0.6; }
.tier-tagline {
  font-size: 0.875rem;
  color: var(--fg-muted);
  margin-bottom: 28px;
  line-height: 1.4;
}
.tier-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  flex: 1;
}
.tier-features li {
  font-size: 0.9375rem;
  color: var(--fg);
  padding-left: 20px;
  position: relative;
}
.tier-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.7;
}
.tier-note {
  font-size: 0.8125rem;
  color: var(--fg-muted);
  line-height: 1.55;
  border-top: 1px solid var(--border);
  padding-top: 20px;
  margin-top: auto;
}
.tier-recommended {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  background: var(--accent);
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
}
.tier-cta {
  display: block;
  text-align: center;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  margin-top: 24px;
  transition: all 0.2s;
}
.tier-cta-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 16px rgba(255,77,0,0.25);
}
.tier-cta-primary:hover {
  background: #e05a1e;
  color: #fff;
  transform: translateY(-1px);
}
.tier-cta-ghost {
  background: transparent;
  color: var(--fg);
  border: 1.5px solid var(--border);
}
.tier-cta-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.pricing-tier-mid {
  border-color: rgba(255,77,0,0.3);
  background: rgba(255,77,0,0.03);
}

/* ===== DISCLAIMER ===== */
.disclaimer-section {
  padding: 48px 32px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.disclaimer-inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.disclaimer-icon {
  font-size: 1.5rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.disclaimer-text {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
}
.disclaimer-text strong { color: var(--fg); font-weight: 600; }

/* ===== CLOSING ===== */
.closing-section {
  padding: 120px 32px;
}
.closing-dark {
  background: #0A0A0F;
  border-top: 1px solid var(--border);
}
.closing-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin-bottom: 28px;
}
.closing-body {
  font-size: 1.125rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto 40px;
}
.closing-cta {
  display: inline-block;
}

/* ===== FOOTER ===== */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 64px 32px 40px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer-brand {
  margin-bottom: 48px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 12px;
}
.footer-logo-accent { color: var(--accent); }
.footer-tagline {
  font-size: 0.875rem;
  color: var(--fg-muted);
  max-width: 340px;
  line-height: 1.5;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-bottom: 48px;
}
.footer-link {
  font-size: 0.875rem;
  color: var(--fg-muted);
  transition: color 0.2s;
}
.footer-link:hover { color: var(--fg); }
.footer-legal {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  font-size: 0.8rem;
  color: var(--fg-muted);
}
.footer-legal-link {
  color: var(--fg-muted);
  transition: color 0.2s;
}
.footer-legal-link:hover { color: var(--fg); }

/* ===== TRUST BAR ===== */
.trust-bar {
  background: #f4f3ee;
  padding: 40px 32px;
}
.trust-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.trust-stat {
  flex: 1;
  text-align: center;
  padding: 0 32px;
}
.trust-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--bg);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 8px;
}
.trust-label {
  font-size: 0.9375rem;
  color: #6b6b6b;
  font-weight: 400;
}
.trust-divider {
  width: 1px;
  height: 60px;
  background: rgba(14, 14, 14, 0.15);
  flex-shrink: 0;
}

/* ===== ROI CTA ===== */
.roi-cta-section {
  padding: var(--section-pad) 32px;
  background: var(--bg);
  text-align: center;
}
.roi-cta-inner {
  max-width: 700px;
  margin: 0 auto;
}
.roi-cta-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}
.roi-cta-body {
  font-size: 1.0625rem;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 36px;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: var(--bg-alt);
  padding: var(--section-pad) 32px;
  border-top: 1px solid var(--border);
}
.testimonials-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.testimonial-quote {
  font-size: 0.9375rem;
  color: var(--fg);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
  quotes: "\u201C" "\u201D";
}
.testimonial-quote::before { content: open-quote; }
.testimonial-quote::after { content: close-quote; }
.testimonial-attr {
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.testimonial-name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 4px;
}
.testimonial-title {
  font-size: 0.8125rem;
  color: var(--fg-muted);
}

/* ===== SAMPLE PROMO ===== */
.sample-promo-section {
  padding: var(--section-pad) 32px;
  border-top: 1px solid var(--border);
}
.sample-promo-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}
.sample-promo-sub {
  font-size: 1.0625rem;
  color: var(--fg-muted);
  margin-top: -40px;
  margin-bottom: 48px;
}
.sample-promo-pages {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.report-page-thumb {
  text-align: center;
}
.thumb-preview {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 20px;
  margin-bottom: 12px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}
.thumb-preview::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
}
.thumb-1::before { background: #ff4d00; }
.thumb-2::before { background: #3a8fff; }
.thumb-3::before { background: #00c87a; }
.thumb-4::before { background: #9b59b6; }
.thumb-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 500;
  margin-bottom: 8px;
}
.thumb-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 6px;
}
.thumb-desc {
  font-size: 0.8125rem;
  color: var(--fg-muted);
  line-height: 1.5;
}
.thumb-number {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--border);
  line-height: 1;
}

/* ===== FAQ ===== */
.faq-section {
  padding: var(--section-pad) 32px;
}
.faq-inner {
  max-width: 800px;
  margin: 0 auto;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child {
  border-top: 1px solid var(--border);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--fg);
  cursor: pointer;
  user-select: none;
}
.faq-q:hover { color: var(--accent); }
.faq-toggle {
  font-size: 1.5rem;
  color: var(--accent);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-a {
  display: none;
  padding: 0 0 24px;
  font-size: 0.9375rem;
  color: var(--fg-muted);
  line-height: 1.7;
}
.faq-item.open .faq-a { display: block; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  :root { --section-pad: 72px; }
  .site-nav { padding: 16px 24px; }
  .nav-links { gap: 16px; }
  .nav-link { display: none; }
  .trust-inner { flex-direction: column; gap: 20px; }
  .trust-divider { display: none; }
  .sample-promo-pages { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .score-inner { grid-template-columns: 1fr; gap: 40px; }
  .process-steps { grid-template-columns: 1fr; gap: 16px; }
  .step-connector { display: none; }
  .report-grid { grid-template-columns: 1fr 1fr; }
  .pricing-tiers { grid-template-columns: 1fr; }
  .report-block:last-child { grid-column: span 2; }
}
@media (max-width: 600px) {
  :root { --section-pad: 56px; }
  .hero-inner { padding: 80px 24px 80px; }
  .hero-headline { font-size: 2.4rem; }
  .hero-ctas { flex-direction: column; }
  .btn-primary, .btn-ghost { text-align: center; }
  .sample-promo-pages { grid-template-columns: 1fr; }
  .report-grid { grid-template-columns: 1fr; }
  .report-block:last-child { grid-column: auto; }
  .footer-links { gap: 8px 16px; }
  .btn-nav-cta { display: none; }
}