/* ============================================
   LinkRadar — Main Stylesheet
   ============================================ */

/* --- Custom Properties --- */
:root {
  --color-primary: #1e3a5f;
  --color-primary-dark: #0f172a;
  --color-accent: #2563eb;
  --color-accent-hover: #1d4ed8;
  --color-accent-light: #eff6ff;
  --color-text: #334155;
  --color-text-light: #64748b;
  --color-text-dark: #0f172a;
  --color-bg: #ffffff;
  --color-bg-alt: #f8fafc;
  --color-bg-dark: #0f172a;
  --color-border: #e2e8f0;
  --color-success: #059669;
  --color-star: #f59e0b;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
  --shadow: 0 1px 3px rgba(0,0,0,.1), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.06);
  --shadow-lg: 0 10px 15px rgba(0,0,0,.1), 0 4px 6px rgba(0,0,0,.05);
  --shadow-xl: 0 20px 25px rgba(0,0,0,.1), 0 8px 10px rgba(0,0,0,.04);
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --max-width: 1200px;
  --transition: all .2s ease;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--color-accent); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--color-accent-hover); }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: inherit; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  color: var(--color-text-dark);
  line-height: 1.25;
  font-weight: 700;
}
h1 { font-size: 3rem; font-weight: 800; letter-spacing: -.025em; }
h2 { font-size: 2.25rem; letter-spacing: -.02em; }
h3 { font-size: 1.25rem; font-weight: 600; }
h4 { font-size: 1.125rem; font-weight: 600; }
.section-label {
  display: inline-block;
  font-size: .8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--color-accent);
  margin-bottom: .75rem;
}
.section-title { margin-bottom: 1rem; }
.section-subtitle {
  font-size: 1.125rem;
  color: var(--color-text-light);
  max-width: 640px;
  margin: 0 auto;
}

/* --- Layout --- */
.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-alt { background: var(--color-bg-alt); }
.text-center { text-align: center; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  font-size: .9375rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 1px 2px rgba(37,99,235,.3);
}
.btn-primary:hover {
  background: var(--color-accent-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37,99,235,.35);
}
.btn-secondary {
  background: #fff;
  color: var(--color-accent);
  border: 1.5px solid var(--color-accent);
}
.btn-secondary:hover {
  background: var(--color-accent-light);
  color: var(--color-accent-hover);
}
.btn-lg { padding: 1rem 2.25rem; font-size: 1.0625rem; border-radius: var(--radius-lg); }
.btn-sm { padding: .5rem 1.25rem; font-size: .875rem; }
.btn-white { background: #fff; color: var(--color-accent); }
.btn-white:hover { background: #f0f4ff; color: var(--color-accent-hover); transform: translateY(-1px); }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: var(--transition);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: .625rem;
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--color-text-dark);
  letter-spacing: -.02em;
}
.nav-logo:hover { color: var(--color-text-dark); }
.nav-logo svg { flex-shrink: 0; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-size: .9375rem;
  font-weight: 500;
  color: var(--color-text);
}
.nav-links a:hover { color: var(--color-accent); }
.nav-actions { display: flex; align-items: center; gap: 1rem; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--color-text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: 9rem 0 4.5rem;
  background: var(--color-bg-alt);
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
  position: relative;
}
.hero .container { position: relative; z-index: 1; }
.hero h1 {
  color: var(--color-text-dark);
  font-size: 2.75rem;
  max-width: 640px;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.125rem;
  color: var(--color-text-light);
  max-width: 560px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-form {
  display: flex;
  max-width: 560px;
  background: #fff;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: .375rem;
  box-shadow: var(--shadow);
}
.hero-form:focus-within {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(37,99,235,.1);
}
.hero-form input {
  flex: 1;
  border: none;
  outline: none;
  padding: .875rem 1.25rem;
  font-size: 1rem;
  color: var(--color-text-dark);
  background: transparent;
  border-radius: var(--radius-lg);
  min-width: 0;
}
.hero-form input::placeholder { color: var(--color-text-light); }
.hero-form .btn { flex-shrink: 0; }
.hero-form .btn:disabled { opacity: .6; cursor: not-allowed; transform: none !important; }
.hero-note {
  margin-top: 1rem;
  font-size: .8125rem;
  color: var(--color-text-light);
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  padding: 3rem 0;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg);
}
.trust-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.trust-item-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-text-dark);
  margin-bottom: .25rem;
}
.trust-item-label {
  font-size: .875rem;
  color: var(--color-text-light);
  font-weight: 500;
}
.trust-stars { color: var(--color-star); letter-spacing: 2px; }

/* ============================================
   HOW IT WORKS
   ============================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 3.5rem;
}
.step {
  text-align: center;
  position: relative;
}
.step-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--color-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.step-icon svg { color: var(--color-accent); }
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  font-size: .8125rem;
  font-weight: 700;
  margin-bottom: .75rem;
}
.step h3 { margin-bottom: .75rem; }
.step p { color: var(--color-text-light); font-size: .9375rem; }

/* ============================================
   FEATURES
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.feature-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  transition: var(--transition);
}
.feature-card:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--color-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.feature-icon svg { color: var(--color-accent); }
.feature-card h3 { font-size: 1rem; margin-bottom: .5rem; }
.feature-card p { font-size: .875rem; color: var(--color-text-light); line-height: 1.6; }

/* ============================================
   SAMPLE REPORT
   ============================================ */
.report-preview {
  margin-top: 3.5rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.report-header {
  background: linear-gradient(135deg, #0f172a, #1e3a5f);
  color: #fff;
  padding: 2rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.report-header h3 { color: #fff; font-size: 1.125rem; }
.report-header span { font-size: .8125rem; color: rgba(255,255,255,.6); }
.report-body { padding: 2rem 2.5rem; }
.report-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.report-stat {
  text-align: center;
  padding: 1.25rem;
  background: var(--color-bg-alt);
  border-radius: var(--radius);
}
.report-stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-text-dark);
}
.report-stat-label {
  font-size: .75rem;
  color: var(--color-text-light);
  font-weight: 500;
  margin-top: .25rem;
}
.report-table { width: 100%; border-collapse: collapse; }
.report-table th {
  text-align: left;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--color-text-light);
  padding: .75rem 1rem;
  border-bottom: 2px solid var(--color-border);
}
.report-table td {
  padding: .75rem 1rem;
  font-size: .875rem;
  border-bottom: 1px solid var(--color-border);
}
.report-table tr:last-child td { border-bottom: none; }
.report-badge {
  display: inline-block;
  padding: .2rem .6rem;
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 600;
}
.report-badge-green { background: #d1fae5; color: #065f46; }
.report-badge-gray { background: #f1f5f9; color: #475569; }
.report-blur {
  position: relative;
}
.report-blur::after {
  content: 'Purchase a report to see full data';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(transparent, white);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 1rem;
  font-size: .875rem;
  font-weight: 500;
  color: var(--color-text-light);
}

/* ============================================
   PRICING
   ============================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.pricing-card {
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  position: relative;
  transition: var(--transition);
}
.pricing-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.pricing-card.popular {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 1px var(--color-accent), var(--shadow-lg);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: .35rem 1.25rem;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: .5rem;
}
.pricing-price {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--color-text-dark);
  line-height: 1.1;
  margin-bottom: .25rem;
}
.pricing-price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text-light);
}
.pricing-per {
  font-size: .9375rem;
  color: var(--color-text-light);
}
.pricing-toggle {
  display: inline-flex;
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: 100px;
  padding: .25rem;
  margin-bottom: 2.5rem;
}
.pricing-toggle-btn {
  padding: .625rem 1.5rem;
  font-size: .9375rem;
  font-weight: 600;
  color: var(--color-text);
  border-radius: 100px;
  transition: var(--transition);
}
.pricing-toggle-btn.active { background: var(--color-text-dark); color: #fff; }
.pricing-toggle-btn:hover:not(.active) { color: var(--color-text-dark); }
.pricing-tab { display: none; }
.pricing-tab.active { display: block; }
.pricing-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.pricing-per-highlight {
  font-size: .9375rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-top: .5rem;
}
.pricing-per-sub {
  font-size: .8125rem;
  color: var(--color-text-light);
  margin-top: .25rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}
.pricing-features { margin-bottom: 2rem; }
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: .625rem;
  font-size: .9375rem;
  padding: .5rem 0;
  color: var(--color-text);
}
.pricing-features svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--color-success);
}
.pricing-card .btn { width: 100%; }
.pricing-guarantee {
  margin-top: 2.5rem;
  text-align: center;
  font-size: .875rem;
  color: var(--color-text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.testimonial-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.testimonial-stars {
  color: var(--color-star);
  font-size: 1rem;
  margin-bottom: 1rem;
}
.testimonial-text {
  font-size: .9375rem;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .875rem;
  color: var(--color-accent);
  flex-shrink: 0;
}
.testimonial-name {
  font-weight: 600;
  font-size: .9375rem;
  color: var(--color-text-dark);
}
.testimonial-role {
  font-size: .8125rem;
  color: var(--color-text-light);
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
  max-width: 768px;
  margin: 3.5rem auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-dark);
  text-align: left;
  cursor: pointer;
  gap: 1rem;
}
.faq-question:hover { color: var(--color-accent); }
.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s ease;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-answer p {
  padding-bottom: 1.25rem;
  font-size: .9375rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
  color: #fff;
}
.cta-section h2 { color: #fff; margin-bottom: 1rem; }
.cta-section p {
  color: rgba(255,255,255,.7);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--color-bg-dark);
  color: rgba(255,255,255,.6);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p {
  font-size: .9375rem;
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 300px;
}
.footer-heading {
  font-size: .8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.4);
  margin-bottom: 1.25rem;
}
.footer-links li { margin-bottom: .625rem; }
.footer-links a {
  font-size: .9375rem;
  color: rgba(255,255,255,.6);
}
.footer-links a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8125rem;
}
.footer-bottom a { color: rgba(255,255,255,.4); margin-left: 1.5rem; }
.footer-bottom a:hover { color: #fff; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
}

/* ============================================
   CHECKOUT PAGE
   ============================================ */
.checkout-page { padding: 8rem 0 5rem; }
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3rem;
  align-items: start;
}
.checkout-form-section { }
.checkout-form-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: .5rem;
}
.form-input {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  font-size: .9375rem;
  color: var(--color-text-dark);
  background: var(--color-bg);
  transition: var(--transition);
  outline: none;
}
.form-input:focus { border-color: var(--color-accent); box-shadow: 0 0 0 3px rgba(37,99,235,.1); }
.form-input.error { border-color: #ef4444; }
.form-error {
  font-size: .8125rem;
  color: #ef4444;
  margin-top: .375rem;
  display: none;
}
.form-error.visible { display: block; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.stripe-element {
  padding: .8rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-bg);
  transition: var(--transition);
}
.stripe-element.StripeElement--focus { border-color: var(--color-accent); box-shadow: 0 0 0 3px rgba(37,99,235,.1); }
.stripe-element.StripeElement--invalid { border-color: #ef4444; }
#card-errors {
  font-size: .8125rem;
  color: #ef4444;
  margin-top: .375rem;
  min-height: 1.25rem;
}
.checkout-submit {
  width: 100%;
  margin-top: 1.5rem;
}
.checkout-submit:disabled {
  opacity: .6;
  cursor: not-allowed;
  transform: none !important;
}
.checkout-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin-top: 1rem;
  font-size: .8125rem;
  color: var(--color-text-light);
}
.order-summary {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  position: sticky;
  top: 96px;
}
.order-summary h3 { font-size: 1.125rem; margin-bottom: 1.5rem; }
.order-item {
  display: flex;
  justify-content: space-between;
  padding: .75rem 0;
  font-size: .9375rem;
}
.order-item-name { color: var(--color-text); }
.order-item-price { font-weight: 600; color: var(--color-text-dark); }
.order-total {
  border-top: 2px solid var(--color-border);
  margin-top: .75rem;
  padding-top: .75rem;
}
.order-total .order-item-name { font-weight: 700; color: var(--color-text-dark); }
.order-total .order-item-price { font-size: 1.125rem; color: var(--color-accent); }
.order-features {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}
.order-features li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8125rem;
  color: var(--color-text-light);
  padding: .375rem 0;
}
.order-features svg { color: var(--color-success); flex-shrink: 0; }

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-page {
  padding: 8rem 0 5rem;
}
.legal-content {
  max-width: 768px;
  margin: 0 auto;
}
.legal-content h1 {
  font-size: 2.5rem;
  margin-bottom: .75rem;
}
.legal-updated {
  font-size: .875rem;
  color: var(--color-text-light);
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);
}
.legal-content h2 {
  font-size: 1.375rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}
.legal-content p {
  margin-bottom: 1rem;
  color: var(--color-text);
}
.legal-content ul, .legal-content ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}
.legal-content ul { list-style: disc; }
.legal-content ol { list-style: decimal; }
.legal-content li {
  margin-bottom: .5rem;
  color: var(--color-text);
}
.legal-content a { text-decoration: underline; }

/* ============================================
   THANK YOU PAGE
   ============================================ */
.thankyou-page {
  padding: 10rem 0 5rem;
  text-align: center;
  min-height: 80vh;
  display: flex;
  align-items: center;
}
.thankyou-icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #d1fae5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}
.thankyou-icon svg { color: var(--color-success); }
.thankyou-page h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.thankyou-page > .container > p {
  font-size: 1.125rem;
  color: var(--color-text-light);
  max-width: 520px;
  margin: 0 auto 2.5rem;
}
.thankyou-details {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 2rem 2.5rem;
  max-width: 480px;
  margin: 0 auto 2.5rem;
  text-align: left;
}
.thankyou-details h3 { margin-bottom: 1rem; font-size: 1rem; }
.thankyou-details li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .5rem 0;
  font-size: .9375rem;
  color: var(--color-text);
}
.thankyou-details svg { color: var(--color-accent); flex-shrink: 0; margin-top: 3px; }
.thankyou-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   PRICING PAGE (standalone)
   ============================================ */
.pricing-hero {
  padding: 8rem 0 3rem;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff;
  text-align: center;
}
.pricing-hero h1 { color: #fff; margin-bottom: 1rem; }
.pricing-hero p { color: rgba(255,255,255,.7); font-size: 1.125rem; }
.pricing-page-section { padding: 4rem 0 5rem; }

.pricing-comparison {
  margin-top: 4rem;
  overflow-x: auto;
}
.pricing-comparison table {
  width: 100%;
  border-collapse: collapse;
}
.pricing-comparison th,
.pricing-comparison td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
  font-size: .9375rem;
}
.pricing-comparison th {
  font-weight: 600;
  color: var(--color-text-dark);
  background: var(--color-bg-alt);
}
.pricing-comparison td { color: var(--color-text); }
.pricing-comparison .check { color: var(--color-success); font-weight: 700; }

/* ============================================
   LIVE PREVIEW
   ============================================ */
.preview-section { background: var(--color-bg); }
.preview-cta {
  text-align: center;
  padding: 2rem 0 .5rem;
  border-top: 1px solid var(--color-border);
  margin-top: 1.5rem;
}
.preview-cta p {
  color: var(--color-text-light);
  font-size: .9375rem;
  margin-bottom: 1.25rem;
}
.anchor-bar-row {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .5rem;
}
.anchor-bar-label {
  width: 160px;
  text-align: right;
  color: var(--color-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex-shrink: 0;
  font-size: .8125rem;
}
.anchor-bar-track {
  flex: 1;
  height: 22px;
  background: var(--color-bg-alt);
  border-radius: 4px;
  overflow: hidden;
}
.anchor-bar-fill {
  height: 100%;
  background: var(--color-accent);
  border-radius: 4px;
  transition: width .8s ease;
}
.anchor-bar-value {
  width: 36px;
  font-size: .8125rem;
  color: var(--color-text-light);
  font-weight: 600;
}

/* ============================================
   UTILITIES
   ============================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Spinner */
.spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  .hero h1 { font-size: 2.25rem; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .checkout-grid { grid-template-columns: 1fr; }
  .order-summary { position: static; }
}

@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  .hero { padding: 7rem 0 4rem; }
  .hero h1 { font-size: 2.125rem; }
  .hero p { font-size: 1.0625rem; }
  .hero-form { flex-direction: column; }
  .hero-form .btn { width: 100%; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--color-border);
    padding: 1.5rem;
    gap: .75rem;
    box-shadow: var(--shadow-lg);
  }
  .nav-actions .btn { display: none; }
  .trust-items { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .steps-grid { grid-template-columns: 1fr; gap: 2rem; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .pricing-grid-3 { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .report-stats { grid-template-columns: repeat(2, 1fr); }
  .anchor-bar-label { width: 100px; font-size: .75rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .footer-bottom a { margin-left: 0; margin: 0 .75rem; }
  .checkout-page { padding: 6rem 0 3rem; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  h1 { font-size: 1.75rem; }
  .hero h1 { font-size: 1.75rem; }
  .pricing-price { font-size: 2.25rem; }
  .report-body { padding: 1.25rem; }
  .report-header { padding: 1.25rem; }
  .legal-content h1 { font-size: 2rem; }
}
