/* Website Clarity — Modern Foundation Styles
   Clean, spacious, trust-building. 2026 feel.
   Navy + teal-blue. Generous whitespace. Visual proof.
*/

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

:root {
  --navy:        #0f1d35;
  --navy-mid:    #162442;
  --navy-light:  #1e3055;
  --teal:        #22a094;
  --teal-hover:  #1b8a7f;
  --teal-light:  #e6f5f3;
  --amber:       #f59e0b;
  --amber-light: #fef3c7;
  --teal-glow:   rgba(34,160,148,0.12);
  --bg:          #fafbfc;
  --bg-alt:      #f3f4f6;
  --bg-card:     #ffffff;
  --border:      #e5e7eb;
  --border-light:#f0f1f3;
  --text:        #1f2937;
  --text-mid:    #4b5563;
  --text-light:  #6b7280;
  --text-muted:  #9ca3af;
  --white:       #ffffff;
  --max-w:       1120px;
  --max-w-text:  680px;
  --radius:      10px;
  --radius-lg:   16px;
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md:   0 4px 12px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
  --shadow-lg:   0 12px 40px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
}

html { font-size: 100%; scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: var(--teal); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--teal-hover); }

/* ── Typography ──────────────────────────────────── */
h1, h2, h3, h4 {
  color: var(--navy);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 5vw, 2.75rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2rem); margin-bottom: 1rem; }
h3 { font-size: 1.1875rem; margin-bottom: 0.75rem; }
p  { margin-bottom: 1rem; }
.lead { font-size: 1.125rem; color: var(--text-mid); line-height: 1.75; }

/* ── Layout ──────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container--narrow {
  max-width: var(--max-w-text);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section { padding: 5rem 0; }
.section--alt { background: var(--bg-alt); }

/* ── Navigation ──────────────────────────────────── */
.site-nav {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.site-nav__logo {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.site-nav__logo span { color: var(--teal); }
.site-nav__links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}
.site-nav__links a {
  color: var(--text-mid);
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}
.site-nav__links a:hover { color: var(--navy); }
.site-nav__links a.btn--primary, .site-nav__links a.btn--primary:hover { color: var(--white); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.nav-toggle span {
  display: block; width: 22px; height: 2px; background: var(--navy);
  margin: 5px 0; transition: 0.3s; border-radius: 1px;
}
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .site-nav__links {
    display: none; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 1.25rem 1.5rem;
    gap: 1rem;
    box-shadow: var(--shadow-md);
  }
  .site-nav__links.active { display: flex; }
}

/* ── Buttons ──────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  line-height: 1.4;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(34,160,148,0.25);
}
.btn--primary:hover {
  background: var(--teal-hover);
  box-shadow: 0 4px 16px rgba(34,160,148,0.3);
}
.btn--outline {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
}
.btn--outline:hover { background: var(--teal-light); }
.btn--white {
  background: var(--white);
  color: var(--navy);
}
.btn--white:hover { background: #f0f1f3; }
.btn--small { padding: 0.5rem 1.25rem; font-size: 0.875rem; }
.btn--lg { padding: 1rem 2.5rem; font-size: 1.0625rem; }

/* ── Hero ─────────────────────────────────────────── */
.hero {
  background: linear-gradient(168deg, var(--navy) 0%, var(--navy-mid) 60%, var(--navy-light) 100%);
  padding: 5rem 0 4rem;
  color: var(--white);
  overflow: hidden;
  position: relative;
}
.hero::after {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(34,160,148,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero__content { max-width: 540px; }
.hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: clamp(1.875rem, 4.5vw, 2.5rem);
}
.hero__subtitle {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin-bottom: 2rem;
}
.hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
}
.hero__price {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.5);
}

/* Hero visual — mock dashboard */
.hero__visual {
  position: relative;
}
.hero__dashboard {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  backdrop-filter: blur(8px);
}
.hero__dashboard-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}
.hero__mini-stat {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.hero__stat-card {
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 1rem;
}
.hero__stat-card .number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  display: block;
}
.hero__stat-card .label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.25rem;
  display: block;
}
.hero__chart-placeholder {
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  height: 100px;
  position: relative;
  overflow: hidden;
}
.hero__chart-line {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 100%;
}

@media (max-width: 768px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .hero { padding: 3.5rem 0 3rem; text-align: center; }
  .hero__content { max-width: 100%; }
  .hero__cta-group { justify-content: center; }
  .hero__price { display: block; text-align: center; }
}

/* ── Trust Bar ────────────────────────────────────── */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}
.trust-bar__items {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  list-style: none;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-mid);
}
.trust-bar__items li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.trust-bar__check {
  width: 20px; height: 20px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-bar__check svg {
  width: 12px; height: 12px;
  stroke: var(--teal);
  stroke-width: 2.5;
  fill: none;
}

/* ── Content Sections ─────────────────────────────── */
.content-section {
  max-width: var(--max-w-text);
  margin: 0 auto;
}

/* ── Tick List ────────────────────────────────────── */
.tick-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}
.tick-list li {
  padding: 0.625rem 0 0.625rem 2.25rem;
  position: relative;
  font-size: 1.0625rem;
  color: var(--text);
}
.tick-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.75rem;
  width: 22px; height: 22px;
  background: var(--teal-light);
  border-radius: 50%;
}
.tick-list li::after {
  content: "\2713";
  position: absolute;
  left: 5px; top: 0.7rem;
  color: var(--teal);
  font-size: 0.8125rem;
  font-weight: 700;
}

/* ── Question List ────────────────────────────────── */
.question-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}
.question-list li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
  color: var(--text-mid);
}
.question-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 6px; height: 6px;
  background: var(--teal);
  border-radius: 50%;
  transform: translateY(-50%);
}

/* ── Results / Proof Section ──────────────────────── */
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin: 2rem 0;
}
@media (max-width: 768px) {
  .results-grid { grid-template-columns: repeat(2, 1fr); }
}
.result-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.result-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.result-card__icon {
  width: 44px; height: 44px;
  background: var(--teal-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.result-card__icon svg {
  width: 22px; height: 22px;
  stroke: var(--teal);
  stroke-width: 2;
  fill: none;
}
.result-card__number {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  display: block;
}
.result-card__label {
  font-size: 0.8125rem;
  color: var(--text-light);
  margin-top: 0.25rem;
  line-height: 1.4;
}
.result-card__period {
  font-size: 0.6875rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  display: block;
}

/* ── Screenshot Proof Section ─────────────────────── */
.proof-screenshots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}
@media (max-width: 600px) {
  .proof-screenshots { grid-template-columns: 1fr; }
}
.proof-shot {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.proof-shot__header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--text-light);
}
.proof-shot__dots {
  display: flex;
  gap: 4px;
}
.proof-shot__dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
}
.proof-shot__body {
  padding: 1.25rem;
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.8125rem;
  position: relative;
}
.proof-shot__body img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

/* ── Report Preview ───────────────────────────────── */
.report-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (max-width: 768px) {
  .report-preview { grid-template-columns: 1fr; }
}
.report-mockup {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 2rem;
  position: relative;
}
.report-mockup::before {
  content: 'Website Visibility Review';
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--navy);
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--teal);
  margin-bottom: 1.25rem;
}

/* ── Feature Cards ────────────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.feature-card__icon {
  width: 48px; height: 48px;
  background: var(--teal-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.feature-card__icon svg {
  width: 24px; height: 24px;
  stroke: var(--teal);
  stroke-width: 2;
  fill: none;
}
.feature-card h3 { font-size: 1.125rem; margin-bottom: 0.5rem; }
.feature-card p { color: var(--text-mid); font-size: 0.9375rem; margin-bottom: 0; }

/* ── Steps ────────────────────────────────────────── */
.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
}
.steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1.25rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.steps li:last-child { border-bottom: none; }
.steps li > * { grid-column: 2; }
.steps li::before {
  grid-column: 1;
  grid-row: 1 / span 3;
  content: counter(step);
  width: 48px; height: 48px;
  background: var(--teal-light);
  color: var(--teal);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.125rem;
}
.steps li h3 { margin-bottom: 0.375rem; }
.steps li p { color: var(--text-mid); margin-bottom: 0; }

/* ── Cards ────────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: box-shadow 0.2s;
}
.card:hover { box-shadow: var(--shadow-md); }

/* ── Info Box ─────────────────────────────────────── */
.info-box {
  background: var(--teal-light);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  font-size: 0.9375rem;
  color: var(--text);
}
.info-box strong { color: var(--navy); }

/* ── FAQ ──────────────────────────────────────────── */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}
.faq-item:first-child { padding-top: 0; }
.faq-item h3 {
  font-size: 1.0625rem;
  margin-bottom: 0.5rem;
  color: var(--navy);
}
.faq-item p { color: var(--text-mid); margin-bottom: 0; }

/* ── Guide Cards ──────────────────────────────────── */
.guide-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.guide-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.guide-card__meta {
  display: flex;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-light);
  margin-bottom: 0.875rem;
}
.guide-card__meta span {
  background: var(--bg-alt);
  padding: 0.25rem 0.625rem;
  border-radius: 100px;
  font-weight: 500;
}
.guide-card h3 { font-size: 1.0625rem; margin-bottom: 0.5rem; }
.guide-card p { font-size: 0.9375rem; color: var(--text-mid); margin-bottom: 0; }

/* ── About Stats ──────────────────────────────────── */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
  margin: 2rem 0;
}
.stat {
  text-align: center;
  padding: 1.75rem 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.stat__number {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--teal);
  display: block;
  letter-spacing: -0.02em;
}
.stat__label {
  font-size: 0.8125rem;
  color: var(--text-light);
  margin-top: 0.375rem;
  line-height: 1.4;
}

/* ── Final CTA ────────────────────────────────────── */
.final-cta {
  text-align: center;
  padding: 5rem 0;
  background: linear-gradient(168deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
}
.final-cta h2 {
  color: var(--white);
  margin-bottom: 1rem;
}
.final-cta p {
  color: rgba(255,255,255,0.7);
  max-width: 540px;
  margin: 0 auto 2rem;
  font-size: 1.0625rem;
}

/* ── Page Header (inner pages) ────────────────────── */
.page-header {
  background: linear-gradient(168deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 3.5rem 0;
  text-align: center;
}
.page-header h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-header p {
  color: rgba(255,255,255,0.65);
  font-size: 1.125rem;
  max-width: 540px;
  margin: 0 auto;
}

/* ── Footer ───────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.5);
  padding: 2.5rem 0;
  font-size: 0.875rem;
}
.site-footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  list-style: none;
  padding-left: 0;
}
.site-footer__links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.site-footer__links a:hover { color: var(--white); }

/* ── Utility ──────────────────────────────────────── */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }

/* ── Eyebrow ──────────────────────────────────────── */
.eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--amber);
  margin-bottom: 0.75rem;
  display: block;
}

/* ── Section Header ───────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}
.section-header p { color: var(--text-mid); }

/* ── Divider ──────────────────────────────────────── */
.section-divider {
  width: 48px;
  height: 3px;
  background: var(--teal);
  border-radius: 2px;
  margin: 0 auto 2rem;
}


/* ── Warmth pass (18 Jul 2026) ─────────────────── */
.feature-grid .feature-card:nth-child(2) .feature-card__icon,
.check-grid .check-item:nth-child(2) h3 { }
.feature-grid .feature-card:nth-child(2) .feature-card__icon { background: var(--amber-light); }
.feature-grid .feature-card:nth-child(2) .feature-card__icon svg { stroke: var(--amber); }
.section--alt { background: linear-gradient(180deg, #f3f7f6 0%, #f6f6f8 100%); }
.hero__stat-card .number { color: var(--teal); }
.hero__stat-card:nth-child(3) .number, .result-card:nth-child(3) .result-card__number { color: var(--amber); }

@media(max-width:400px){ .nav-reviews-label{ display:none; } }

/* ── Mobile overflow guards (15 Sep 2026) ───────────
   A wide table or code block used to push the whole page
   past the screen edge on a phone (the guide on why a site
   isn't showing on Google measured 420px inside a 390px
   viewport). These let the wide element scroll inside its
   own box instead of dragging the page with it. */
.guide-content, .content-section { min-width: 0; }
.guide-content img, .content-section img { max-width: 100%; height: auto; }
.guide-content pre, .content-section pre {
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 700px) {
  .guide-content table, .content-section table, .compare-table {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
