/* Audit&Fix CRO Reports - Landing Page Styles */

/* ── Design Tokens ───────────────────────────────────────────── */
/* Canonical color palette — reference these throughout the codebase.
   scanner.css and legal.css use these same values.                  */
:root {
  /* Brand colors */
  --color-navy: #1a365d; /* primary dark navy — headers, CTAs, nav bg */
  --color-navy-deep: #112240; /* footer background, deeper navy contexts  */
  --color-navy-mid: #2d5fa3; /* gradient midpoint, hover states           */
  --color-orange: #e05d26; /* accent orange — CTAs, highlights, borders */
  --color-orange-dark: #c44d1e; /* orange hover state                        */

  /* Text grays */
  --color-text-dark: #2d3748; /* body text */
  --color-text-mid: #4a5568; /* secondary text, descriptions */
  --color-text-muted: #718096; /* captions, metadata, subdued labels */
  --color-text-faint: #a0aec0; /* hints, placeholders */

  /* Surfaces */
  --color-surface: #ffffff;
  --color-surface-alt: #f7fafc; /* section alternating background */
  --color-border: #e2e8f0; /* input borders, dividers */

  /* Semantic / status */
  --color-link: #3182ce;
  --color-success: #38a169;
  --color-success-bg: #f0fff4;
  --color-success-bdr: #c6f6d5;

  /* Scanner-specific (documented here for reference, defined in scanner.css) */
  /* --color-scan-good:   #48bb78  — factor dot / status: good  */
  /* --color-scan-fair:   #ed8936  — factor dot / status: fair  */
  /* --color-scan-bad:    #fc8181  — factor dot / status: needs_work */
  /* --color-scan-blue:   #3182ce  — email gate border / button   */
}

/* ── Skip navigation link ────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: #fff;
  color: var(--color-navy);
  padding: 8px 16px;
  font-weight: 700;
  z-index: 9999;
  text-decoration: none;
  border-radius: 0 0 4px 0;
}
.skip-link:focus {
  top: 0;
}

/* ── Screen reader only ───────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ── First-visit discount banner (inline in header row) ────── */
.deal-banner {
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  font-size: 0.82rem;
  line-height: 1.3;
  flex: 1;
  padding: 0 16px;
}
.site-header--light-hero:not(.site-header--scrolled) .deal-banner {
  color: rgba(26, 42, 58, 0.8);
}

.deal-banner strong {
  color: #fbd38d;
}
.site-header--light-hero:not(.site-header--scrolled) .deal-banner strong {
  color: #e05d26;
}

#deal-timer {
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  color: #fbd38d;
  letter-spacing: 0.04em;
}
.site-header--light-hero:not(.site-header--scrolled) #deal-timer {
  color: #e05d26;
}

/* Discounted price display */
.price-original {
  text-decoration: line-through;
  opacity: 0.6;
  margin-right: 6px;
}

.price-discounted {
  color: #e05d26;
  font-weight: 700;
}

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

html, body {
  margin: 0;
  padding: 0;
}
body {
  font-family:
    -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, 'Noto Sans CJK SC',
    'Noto Sans CJK TC', 'Noto Sans CJK JP', 'Noto Sans CJK KR', 'PingFang SC', 'Hiragino Sans GB',
    'Microsoft YaHei', 'Meiryo', 'Malgun Gothic', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #2d3748;
  background: #ffffff;
  -webkit-text-size-adjust: 100%;
}

a {
  color: #3182ce;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

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

/* ── Navigation ─────────────────────────────────────────── */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 36px;
  width: auto;
}

.logo-text {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.logo-amp {
  color: #e05d26;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lang-switcher {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 5px;
  padding: 6px 10px;
  font-size: 0.82rem;
  cursor: pointer;
  appearance: auto;
}
.lang-switcher:hover {
  background: rgba(255, 255, 255, 0.2);
}
.lang-switcher option {
  background: #1a1a2e;
  color: #fff;
  font-family:
    system-ui,
    -apple-system,
    sans-serif;
}
.nav-cta {
  background: #e05d26;
  color: #fff;
  padding: 8px 20px;
  border-radius: 5px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}
.nav-cta:hover {
  background: #c44d1e;
  text-decoration: none;
}

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  margin-top: -76px;
  padding: 110px 0 60px;
  background:
    linear-gradient(
      to right,
      rgba(26, 54, 93, 0.96) 45%,
      rgba(26, 54, 93, 0.6) 70%,
      rgba(26, 54, 93, 0.25) 100%
    ),
    url('../img/hero-background.png') center/cover no-repeat;
  color: #ffffff;
}

.hero-body {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  max-width: 1100px;
  margin: 0;
  padding: 40px 40px 0 60px;
}

.hero-content {
  max-width: 540px;
}

.pre-headline {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #e05d26;
  margin-bottom: 12px;
}

.hero h1 {
  font-size: 2.6rem;
  line-height: 1.2;
  margin-bottom: 16px;
  font-weight: 800;
}

.subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 28px;
  line-height: 1.7;
}

.hero-usp {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.03em;
  margin-bottom: 16px;
  font-weight: 500;
}

.cta-sub {
  font-size: 0.85rem;
  opacity: 0.7;
  margin-top: 12px;
}

/* Trust bar — stats row */
.trust-bar {
  margin-top: 36px;
  display: flex;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  overflow: hidden;
}

.trust-item {
  flex: 1;
  text-align: center;
  padding: 14px 10px;
}

.trust-sep {
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.trust-num {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  color: #e05d26;
}

.trust-label {
  display: block;
  font-size: 0.75rem;
  opacity: 0.7;
  margin-top: 2px;
}

/* Hero report preview */
.hero-preview {
  position: relative;
  flex-shrink: 0;
  width: 340px;
}

.report-preview-img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.preview-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #e05d26;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── CTA Button ──────────────────────────────────────────── */
.cta-button {
  display: inline-block;
  background: #e05d26;
  color: #ffffff;
  padding: 16px 40px;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.1s;
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  background: #c44d1e;
  text-decoration: none;
  transform: translateY(-1px);
}

.cta-button--light {
  background: #ffffff;
  color: #1a365d;
}
.cta-button--light:hover {
  background: #f0f4f8;
}

/* ── Section shared ──────────────────────────────────────── */
.section-subhead {
  text-align: center;
  color: #718096;
  margin-bottom: 40px;
  font-size: 1rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Testimonials ────────────────────────────────────────── */
.testimonials {
  padding: 80px 20px;
  background: #f7fafc;
}

.testimonials-rating {
  text-align: center;
  color: #e05d26;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.testimonials h2 {
  text-align: center;
  color: #1a365d;
  margin-bottom: 40px;
  font-size: 1.8rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial {
  background: #ffffff;
  border-radius: 8px;
  padding: 28px 24px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  border-left: 4px solid #e05d26;
}

.stars {
  color: #e05d26;
  font-size: 1rem;
  margin-bottom: 12px;
}

.testimonial p {
  color: #4a5568;
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 16px;
}

.testimonial-author strong {
  display: block;
  color: #1a365d;
  font-size: 0.9rem;
}

.testimonial-author span {
  color: #718096;
  font-size: 0.82rem;
}

/* ── Montage / Report Pages ──────────────────────────────── */
.montage-section {
  padding: 80px 20px;
  background: #ffffff;
}

.montage-section h2 {
  text-align: center;
  color: #1a365d;
  margin-bottom: 12px;
  font-size: 1.8rem;
}

.montage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto 32px;
}

.montage-item {
  text-align: center;
}

.montage-item img {
  width: 100%;
  height: 200px;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  border: 1px solid #e2e8f0;
  margin-bottom: 10px;
  background: #f7fafc;
  object-fit: cover;
  object-position: top;
  cursor: zoom-in;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.montage-item img:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22);
}

/* Lightbox overlay */
.montage-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  z-index: 9000;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
.montage-lightbox.is-open { display: flex; }
.montage-lightbox img {
  max-width: 84vw;
  max-height: 88vh;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
  object-fit: contain;
  cursor: default;
}
.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s;
  z-index: 1;
}
.lb-nav:hover { background: rgba(255, 255, 255, 0.3); }
.lb-nav--prev { left: 16px; }
.lb-nav--next { right: 16px; }
.lb-counter {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  pointer-events: none;
}

.montage-item p {
  font-size: 0.85rem;
  color: #718096;
}

.sample-download {
  text-align: center;
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-secondary {
  display: inline-block;
  background: #1a365d;
  color: #fff;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-secondary:hover {
  background: #153050;
  text-decoration: none;
}

.sample-note {
  color: #718096;
  font-size: 0.82rem;
}

/* ── Value Props ─────────────────────────────────────────── */
.value-props {
  padding: 80px 20px;
  background: #f7fafc;
}

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

.prop {
  text-align: center;
}
.prop-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.prop h3 {
  color: #1a365d;
  margin-bottom: 8px;
  font-size: 1.05rem;
}
.prop p {
  color: #4a5568;
  font-size: 0.92rem;
}

/* ── What's Included ─────────────────────────────────────── */
.included {
  padding: 80px 20px;
}

.included h2 {
  text-align: center;
  color: #1a365d;
  margin-bottom: 12px;
  font-size: 1.8rem;
}

.checklist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px;
  max-width: 760px;
  margin: 0 auto;
}

.check-item {
  padding: 12px 16px;
  background: #f7fafc;
  border-radius: 6px;
  font-size: 0.93rem;
  color: #2d3748;
}

.ci {
  color: #16a34a;
  font-size: 1.4em;
  font-weight: 700;
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
  margin-right: 4px;
}

.included-footer {
  text-align: center;
  margin-top: 32px;
  color: #4a5568;
  font-size: 0.9rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ── USP ─────────────────────────────────────────────────── */
.usp {
  padding: 80px 20px;
  background: #1a365d;
  color: #ffffff;
  text-align: center;
}
.usp h2 {
  margin-bottom: 20px;
  font-size: 1.6rem;
}
.usp p {
  max-width: 640px;
  margin: 0 auto;
  opacity: 0.9;
  font-size: 1rem;
}
.usp p + p {
  margin-top: 14px;
}

/* ── Urgency CTA ─────────────────────────────────────────── */
.urgency-section {
  padding: 60px 20px;
  background: #fff8f5;
  border-top: 3px solid #e05d26;
  border-bottom: 3px solid #e05d26;
}

.urgency-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.urgency-text {
  flex: 1;
  min-width: 260px;
}

.urgency-text h2 {
  color: #1a365d;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.urgency-text p {
  color: #4a5568;
  font-size: 0.95rem;
}

.urgency-cta {
  text-align: center;
  flex-shrink: 0;
}

.urgency-scarcity {
  margin-top: 12px;
  font-size: 0.88rem;
  color: #c44d1e;
  font-weight: 600;
}

.urgency-note {
  font-size: 0.8rem;
  color: #718096;
  margin-top: 8px;
}

/* ── Meet Expert ─────────────────────────────────────────── */
.meet-expert {
  padding: 80px 20px;
  background: #ffffff;
}

.expert-card {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  max-width: 800px;
  margin: 0 auto;
}

.expert-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 4px solid #e2e8f0;
}

.expert-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #e05d26;
  font-weight: 600;
  margin-bottom: 4px;
}

.expert-bio h2 {
  color: #1a365d;
  font-size: 1.5rem;
  margin-bottom: 2px;
}

.expert-title {
  color: #718096;
  font-size: 0.88rem;
  font-style: italic;
  margin-bottom: 16px;
}

.expert-bio p {
  color: #4a5568;
  font-size: 0.93rem;
}
.expert-bio p + p {
  margin-top: 10px;
}

/* ── Order Section ───────────────────────────────────────── */
.order-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #1a365d 0%, #2a4a7f 100%);
}
.order-icon {
  text-align: center;
  margin-bottom: 16px;
}
.order-icon-img {
  width: 72px;
  height: 72px;
  filter: drop-shadow(0 4px 12px rgba(224, 93, 38, 0.3));
}
.order-section h2 {
  text-align: center;
  color: #ffffff;
  margin-bottom: 8px;
  font-size: 1.8rem;
}
.order-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 40px;
}

.audit-form {
  max-width: 500px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.09);
}

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.88rem;
  color: #4a5568;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.2s;
  background: #ffffff;
}

.form-group input:focus,
.form-group select:focus {
  outline: 3px solid var(--color-blue-focus, #3182ce);
  outline-offset: 2px;
  border-color: #3182ce;
  box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.1);
}

.price-display {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  margin-bottom: 20px;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.price-label {
  font-size: 1rem;
  color: #718096;
}
.price-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a365d;
}
.price-meta {
  font-size: 0.78rem;
  color: #718096;
  text-align: right;
  line-height: 1.4;
}
.order-deal-banner {
  background: #fff8f0;
  border: 1px solid #e05d26;
  border-radius: 6px;
  padding: 10px 14px;
  margin-bottom: 16px;
  font-size: 0.9rem;
  color: #c44d1e;
  text-align: center;
}

.order-deal-banner strong {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
}

.label-hint {
  font-weight: 400;
  color: #a0aec0;
  font-size: 0.82rem;
}

#paypal-button-container {
  margin: 20px 0;
}

.field-hint {
  font-size: 0.78rem;
  color: #a0aec0;
  margin-top: 5px;
}

.order-guarantee--delivery {
  margin-top: 10px;
}

.form-note {
  font-size: 0.8rem;
  color: #a0aec0;
  text-align: center;
  margin-top: 12px;
}

.form-error {
  background: #fed7d7;
  color: #c53030;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 0.9rem;
  margin-bottom: 16px;
  display: none;
}

/* Guarantee box below form */
.order-guarantee {
  max-width: 500px;
  margin: 24px auto 0;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #f0fff4;
  border: 1px solid #c6f6d5;
  border-radius: 8px;
  padding: 16px 20px;
}

.guarantee-icon {
  font-size: 1.2rem;
  color: #38a169;
  flex-shrink: 0;
  font-weight: 700;
}

.order-guarantee strong {
  display: block;
  color: #276749;
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.order-guarantee p {
  color: #4a5568;
  font-size: 0.85rem;
}

/* ── FAQ ─────────────────────────────────────────────────── */
.faq {
  padding: 80px 20px;
}
.faq h2 {
  text-align: center;
  color: #1a365d;
  margin-bottom: 40px;
  font-size: 1.8rem;
}

.faq-item {
  max-width: 700px;
  margin: 0 auto 16px;
  padding: 20px 24px;
  background: #f7fafc;
  border-radius: 8px;
}

.faq-item h3 {
  color: #1a365d;
  margin-bottom: 8px;
  font-size: 1rem;
}
.faq-item p {
  color: #4a5568;
  font-size: 0.92rem;
}

/* ── Footer CTA ──────────────────────────────────────────── */
.footer-cta {
  padding: 80px 20px;
  background: #1a365d;
  color: #ffffff;
  text-align: center;
}

.footer-cta h2 {
  font-size: 1.8rem;
  margin-bottom: 24px;
}

.footer-cta p {
  margin-top: 16px;
  opacity: 0.6;
  font-size: 0.88rem;
}

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  padding: 40px 20px;
  background: #112240;
  color: #a0aec0;
  text-align: center;
  font-size: 0.88rem;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 12px;
  opacity: 0.85;
}
.footer-logo:hover {
  opacity: 1;
}
.footer-logo-img {
  height: 56px;
  width: auto;
}
.footer-contact {
  margin-top: 6px;
}
.footer-privacy {
  margin-top: 8px;
  font-size: 0.78rem;
  opacity: 1;
  color: #8899aa;
}
.footer a {
  color: #63b3ed;
}
.footer-links {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.footer-legal {
  margin-top: 16px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.footer-legal a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}
.footer-legal a:hover {
  color: #63b3ed;
}

.hero-short {
  padding-bottom: 30px;
}

/* ── Blog ────────────────────────────────────────────────── */

.blog-header {
  background:
    linear-gradient(to right, rgba(26,54,93,0.92) 40%, rgba(26,54,93,0.55) 75%, rgba(26,54,93,0.25) 100%),
    url('../img/blog-hero.png') center/cover no-repeat;
  color: #ffffff;
  padding: 60px 24px 48px;
  text-align: center;
}
.blog-header h1 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.blog-header p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
}

/* ── Outreach Landing Page (/a/) ─────────────────────────── */

.outreach-score-reveal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin: 1.5rem 0;
}

.outreach-score-gauge {
  position: relative;
  width: 200px;
}

.outreach-score-gauge .score-gauge {
  width: 200px;
  height: auto;
  display: block;
}

.outreach-score-gauge .score-grade-wrap {
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.outreach-score-gauge .score-grade {
  display: inline-block;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

.outreach-score-gauge .score-grade.grade-a {
  color: #48bb78;
}
.outreach-score-gauge .score-grade.grade-b {
  color: #68d391;
}
.outreach-score-gauge .score-grade.grade-c {
  color: #ed8936;
}
.outreach-score-gauge .score-grade.grade-d {
  color: #fc8181;
}
.outreach-score-gauge .score-grade.grade-f {
  color: #fc8181;
}

.outreach-score-gauge .score-number-wrap {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  white-space: nowrap;
}

.outreach-score-gauge .score-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.outreach-score-gauge .score-denom {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  vertical-align: bottom;
  margin-left: 2px;
}

.outreach-score-context {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  text-align: center;
  max-width: 420px;
  line-height: 1.5;
  margin: 0;
}

.outreach-factors {
  padding: 60px 20px;
  background: #fff;
}

/* ── Thank You Page ──────────────────────────────────────── */
.thank-you-content {
  padding: 60px 20px;
}

.thank-you-box {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  background: #ffffff;
  padding: 50px 40px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.check-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #38a169;
  color: #ffffff;
  font-size: 2.5rem;
  line-height: 80px;
  margin: 0 auto 20px;
}

.thank-you-box h2 {
  color: #1a365d;
  margin-bottom: 16px;
}
.thank-you-box > p {
  color: #4a5568;
  margin-bottom: 30px;
}

.steps {
  text-align: left;
  margin: 30px 0;
}

.step {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  color: #4a5568;
}

.step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #1a365d;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 28px;
  text-align: center;
  flex-shrink: 0;
}

.spam-notice {
  background: #ebf8ff;
  padding: 14px 20px;
  border-radius: 6px;
  margin: 25px 0;
  color: #2b6cb0;
  font-size: 0.9rem;
}

.contact-info {
  color: #718096;
  font-size: 0.9rem;
  margin-top: 20px;
}

.thankyou-referral,
.thankyou-upsell {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  border-radius: 8px;
  text-align: left;
}
.thankyou-referral {
  background: #f0f4f8;
  border-left: 3px solid var(--color-navy);
}
.thankyou-upsell {
  background: #fff8f5;
  border-left: 3px solid var(--color-orange);
}
.thankyou-referral h3,
.thankyou-upsell h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--color-navy);
}
.thankyou-referral p,
.thankyou-upsell p {
  margin: 0;
  font-size: 0.95rem;
  color: #4a5568;
  line-height: 1.5;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 860px) {
  .hero-body {
    padding: 30px 16px 0;
  }
  .hero-content {
    max-width: 100%;
  }
  .trust-bar {
    justify-content: center;
  }
  .urgency-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 1.9rem;
  }
  .nav {
    padding: 15px 20px;
  }
  .cta-button {
    padding: 14px 28px;
    font-size: 1rem;
  }
  .audit-form {
    padding: 24px 20px;
  }
  .expert-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }
  .prop-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .montage-grid {
    grid-template-columns: 1fr 1fr;
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .footer-cta h2 {
    font-size: 1.4rem;
  }
}

@media (max-width: 400px) {
  .prop-grid {
    grid-template-columns: 1fr;
  }
  .montage-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   RTL overrides (ar, he, fa, ur)
   Mirrors only the directional rules that actually exist above.
   Centering rules (margin: auto, left: 50% + translateX) work
   in both directions and are intentionally not mirrored.
   ============================================================ */
[dir="rtl"] body {
  text-align: right;
}
[dir="rtl"] .skip-link {
  left: auto;
  right: 0;
}
[dir="rtl"] .price-original {
  margin-right: 0;
  margin-left: 6px;
}
[dir="rtl"] .preview-badge {
  right: auto;
  left: -10px;
}
[dir="rtl"] .testimonial {
  border-left: none;
  border-right: 4px solid #e05d26;
}
[dir="rtl"] .ci {
  margin-right: 0;
  margin-left: 4px;
}
[dir="rtl"] .price-meta {
  text-align: left;
}
[dir="rtl"] .steps,
[dir="rtl"] .thankyou-referral,
[dir="rtl"] .thankyou-upsell {
  text-align: right;
}
[dir="rtl"] .thankyou-referral {
  border-left: none;
  border-right: 3px solid var(--color-navy);
}
[dir="rtl"] .thankyou-upsell {
  border-left: none;
  border-right: 3px solid var(--color-orange);
}
[dir="rtl"] .outreach-score-gauge .score-denom {
  margin-left: 0;
  margin-right: 2px;
}
/* Currency / pricing markers — keep numbers LTR */
[dir="rtl"] .price-original,
[dir="rtl"] .price-current,
[dir="rtl"] .price-meta,
[dir="rtl"] code,
[dir="rtl"] pre {
  unicode-bidi: plaintext;
}
