/* GSC Analytics Suite – Shared Stylesheet */

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

:root {
  --blue: #1a73e8;
  --blue-dark: #1557b0;
  --navy: #0b3a62;
  --green: #137333;
  --bg: #f5f7fa;
  --white: #ffffff;
  --text: #1e293b;
  --muted: #64748b;
  --border: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.12);
  --radius: 12px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

/* ── NAV ─────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-text { font-weight: 800; font-size: 17px; color: var(--navy); letter-spacing: -0.3px; }
.logo-text span { color: var(--blue); }
.nav-links { display: flex; gap: 4px; list-style: none; flex: 1; }
.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: background .15s, color .15s;
}
.nav-links a:hover, .nav-links a.active { background: var(--bg); color: var(--blue); }
.nav-ctas { display: flex; align-items: center; gap: 10px; margin-left: auto; }
/* ── FEATURES DROPDOWN ────────────────────────────── */
.has-dropdown { position: relative; }
.has-dropdown > a { display: flex !important; align-items: center; gap: 3px; }
.has-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 0; height: 0;
  border-left: 3.5px solid transparent;
  border-right: 3.5px solid transparent;
  border-top: 4px solid currentColor;
  opacity: .5;
  flex-shrink: 0;
  transition: transform .2s;
  margin-top: 1px;
}
.has-dropdown:hover > a::after,
.has-dropdown:focus-within > a::after { transform: rotate(180deg); }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  list-style: none;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  min-width: 210px;
  padding: 6px;
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .15s, transform .15s;
}
.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.nav-dropdown li a {
  display: block;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  border-radius: 8px;
  background: none;
  transition: background .12s, color .12s;
}
.nav-dropdown li a:hover,
.nav-dropdown li a.active { background: var(--bg); color: var(--blue); }
/* Mobile drawer: accordion, closed by default */
.mobile-nav-links .has-dropdown > a::after {
  display: inline-block;
  margin-left: auto;
  transition: transform .25s;
}
.mobile-nav-links .has-dropdown.open > a::after { transform: rotate(180deg); }
.mobile-nav-links .nav-dropdown {
  position: static;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: none;
  box-shadow: none;
  border: none;
  border-radius: 0;
  background: transparent;
  padding: 0 0 0 14px;
  min-width: 0;
  transition: max-height .25s ease, opacity .2s;
}
.mobile-nav-links .has-dropdown.open .nav-dropdown {
  max-height: 280px;
  opacity: 1;
  pointer-events: all;
  padding: 2px 0 6px 14px;
}
.mobile-nav-links .nav-dropdown li a {
  padding: 7px 14px;
  font-size: 14px;
  color: rgba(255,255,255,.55);
  background: none;
}
.mobile-nav-links .nav-dropdown li a:hover {
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.9);
}
.mobile-nav-links .nav-dropdown li a.active {
  background: rgba(26,115,232,.3);
  color: #fff;
}

/* ── BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all .18s;
  white-space: nowrap;
  font-family: var(--font);
}
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-ghost:hover { background: var(--bg); border-color: #cbd5e1; }
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 2px 8px rgba(26,115,232,.35); }
.btn-primary:hover { background: var(--blue-dark); box-shadow: 0 4px 16px rgba(26,115,232,.4); transform: translateY(-1px); }
.btn-lg { padding: 14px 30px; font-size: 16px; border-radius: 10px; }
.btn-outline { background: transparent; color: var(--blue); border: 2px solid var(--blue); }
.btn-outline:hover { background: var(--blue); color: #fff; }
.btn-white { background: #fff; color: var(--blue); font-weight: 700; }
.btn-white:hover { background: #f0f6ff; }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.5); }
.btn-outline-white:hover { background: rgba(255,255,255,.12); }

/* ── LANDING HERO ────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, #0b3a62 0%, #1557b0 50%, #1a73e8 100%);
  padding: 100px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before, .feature-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  letter-spacing: .3px;
}
.hero h1 {
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.hero h1 em { font-style: normal; color: #93c5fd; }
.hero p {
  font-size: clamp(17px, 2.5vw, 21px);
  color: rgba(255,255,255,.82);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-note { margin-top: 20px; color: rgba(255,255,255,.55); font-size: 13px; }

/* ── FEATURE HERO ────────────────────────────────── */
.feature-hero {
  background: linear-gradient(135deg, #0b3a62 0%, #1557b0 50%, #1a73e8 100%);
  padding: 56px 24px 72px;
  position: relative;
  overflow: hidden;
}
.feature-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.55);
  margin-bottom: 32px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}
.feature-breadcrumb a { color: rgba(255,255,255,.55); text-decoration: none; transition: color .15s; }
.feature-breadcrumb a:hover { color: #fff; }
.feature-breadcrumb .sep { color: rgba(255,255,255,.3); }
.feature-breadcrumb .current { color: rgba(255,255,255,.85); }
.feature-hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.feature-hero-text .feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #93c5fd;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.feature-hero-text h1 {
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.feature-hero-text h1 em { font-style: normal; color: #93c5fd; }
.feature-hero-text p {
  font-size: 17px;
  color: rgba(255,255,255,.8);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 460px;
}
.feature-hero-visual {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.3);
}

/* ── LOGO BAR ─────────────────────────────────────── */
.logobar { border-bottom: 1px solid var(--border); padding: 28px 24px; background: var(--white); }
.logobar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: center;
}
.logobar-label { font-size: 13px; color: var(--muted); font-weight: 500; white-space: nowrap; }
.logobar-logos { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; justify-content: center; }
.logobar-logos span { font-size: 15px; font-weight: 700; color: #94a3b8; letter-spacing: .5px; }

/* ── SECTIONS GENERAL ─────────────────────────────── */
section { padding: 96px 24px; }
.container { max-width: 1200px; margin: 0 auto; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
h2.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 18px;
}
.section-sub { font-size: 18px; color: var(--muted); max-width: 580px; line-height: 1.7; }

/* ── FEATURE ROWS (landing page) ─────────────────── */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
}
.feature-row + .feature-row { border-top: 1px solid var(--border); }
.feature-row.reverse .feature-text { order: 2; }
.feature-row.reverse .feature-visual { order: 1; }
.feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--blue);
  background: #eff6ff;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.feature-text h3 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  letter-spacing: -.6px;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 16px;
}
.feature-text p { font-size: 16px; color: var(--muted); line-height: 1.75; margin-bottom: 24px; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.feature-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--text); }
.feature-list li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: #dcfce7;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 10l3.5 3.5L15 7' stroke='%23137333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.feature-visual {
  background: var(--bg);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* ── MOCK SCREEN COMPONENTS ──────────────────────── */
.mock-screen {
  width: 100%;
  height: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mock-topbar { display: flex; gap: 6px; margin-bottom: 4px; }
.mock-dot { width: 10px; height: 10px; border-radius: 50%; }
.mock-dot.red { background: #f87171; }
.mock-dot.yellow { background: #fbbf24; }
.mock-dot.green { background: #34d399; }
.mock-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.mock-kpi { background: #fff; border-radius: 8px; padding: 12px; box-shadow: var(--shadow-sm); }
.mock-kpi-label { font-size: 10px; color: #94a3b8; font-weight: 600; margin-bottom: 4px; }
.mock-kpi-val { font-size: 18px; font-weight: 800; color: var(--navy); }
.mock-kpi-delta { font-size: 10px; font-weight: 600; }
.mock-kpi-delta.up { color: var(--green); }
.mock-kpi-delta.down { color: #dc2626; }
.mock-chart {
  background: #fff;
  border-radius: 8px;
  padding: 14px;
  flex: 1;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-end;
  gap: 8px;
}
.mock-bar { flex: 1; border-radius: 4px 4px 0 0; background: var(--blue); opacity: 0.8; }
.mock-bar.muted { background: #cbd5e1; opacity: 1; }
.mock-bar.accent { background: #34d399; }
.mock-table { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-sm); flex: 1; }
.mock-thead {
  background: #f8fafc;
  padding: 8px 12px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 8px;
  border-bottom: 1px solid var(--border);
}
.mock-th { font-size: 9px; font-weight: 700; color: #94a3b8; text-transform: uppercase; letter-spacing: .5px; }
.mock-row {
  padding: 8px 12px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 8px;
  align-items: center;
  border-bottom: 1px solid #f1f5f9;
}
.mock-row:last-child { border-bottom: none; }
.mock-cell { font-size: 10px; color: var(--text); }
.mock-cell.url { color: var(--blue); font-weight: 500; }
.mock-pill { display: inline-block; padding: 2px 7px; border-radius: 100px; font-size: 9px; font-weight: 700; }
.mock-pill.red { background: #fee2e2; color: #dc2626; }
.mock-pill.green { background: #dcfce7; color: var(--green); }
.mock-pill.amber { background: #fef3c7; color: #92400e; }
.mock-scores { display: flex; flex-direction: column; gap: 10px; flex: 1; }
.mock-score-row {
  background: #fff;
  border-radius: 8px;
  padding: 10px 14px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 12px;
}
.mock-score-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
}
.score-high { background: #dcfce7; color: var(--green); }
.score-mid { background: #fef3c7; color: #92400e; }
.score-low { background: #fee2e2; color: #dc2626; }
.mock-score-info { flex: 1; }
.mock-score-url { font-size: 10px; color: var(--blue); font-weight: 500; margin-bottom: 3px; }
.mock-score-bar-wrap { height: 5px; background: #f1f5f9; border-radius: 3px; overflow: hidden; }
.mock-score-bar { height: 100%; border-radius: 3px; background: var(--blue); }
.mock-trend-wrap { flex: 1; background: #fff; border-radius: 8px; padding: 14px; box-shadow: var(--shadow-sm); position: relative; overflow: hidden; }
.mock-trend-line { width: 100%; height: 60px; }
.mock-timeline { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.mock-update-row {
  background: #fff;
  border-radius: 8px;
  padding: 10px 14px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 10px;
}
.mock-update-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.mock-update-name { font-size: 10px; font-weight: 600; color: var(--navy); flex: 1; }
.mock-update-delta { font-size: 11px; font-weight: 700; }
.delta-pos { color: var(--green); }
.delta-neg { color: #dc2626; }
.mock-mini-bar-wrap { width: 60px; height: 6px; background: #f1f5f9; border-radius: 3px; overflow: hidden; }
.mock-mini-bar { height: 100%; border-radius: 3px; }
.bar-pos { background: var(--green); }
.bar-neg { background: #f87171; }

/* ── STATS SECTION ────────────────────────────────── */
.stats-section { background: var(--navy); padding: 72px 24px; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.stat-num { font-size: 48px; font-weight: 900; color: #fff; letter-spacing: -2px; line-height: 1; }
.stat-num span { color: #93c5fd; }
.stat-label { margin-top: 8px; font-size: 14px; color: rgba(255,255,255,.6); font-weight: 500; }

/* ── TESTIMONIALS ─────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.testi-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .2s, box-shadow .2s;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testi-stars { display: flex; gap: 3px; }
.testi-stars span { color: #f59e0b; font-size: 16px; }
.testi-quote { font-size: 15px; line-height: 1.7; color: var(--text); flex: 1; }
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.av1 { background: linear-gradient(135deg, #1a73e8, #0b3a62); }
.av2 { background: linear-gradient(135deg, #137333, #0d5c2e); }
.av3 { background: linear-gradient(135deg, #7c3aed, #4c1d95); }
.av4 { background: linear-gradient(135deg, #dc2626, #7f1d1d); }
.av5 { background: linear-gradient(135deg, #d97706, #78350f); }
.av6 { background: linear-gradient(135deg, #0891b2, #164e63); }
.testi-name { font-weight: 700; font-size: 14px; color: var(--navy); }
.testi-role { font-size: 12px; color: var(--muted); }

/* ── PRICING ──────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  align-items: start;
}
.pricing-card {
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--border);
  position: relative;
  background: var(--white);
  transition: transform .2s, box-shadow .2s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card.featured { background: var(--navy); border-color: transparent; color: #fff; }
.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.pricing-tier { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.pricing-tier.light { color: var(--muted); }
.pricing-tier.featured-tier { color: #93c5fd; }
.pricing-price { font-size: 44px; font-weight: 900; letter-spacing: -2px; line-height: 1; color: var(--navy); margin-bottom: 4px; }
.pricing-price.featured { color: #fff; }
.pricing-price sup { font-size: 20px; font-weight: 700; letter-spacing: 0; vertical-align: super; }
.pricing-price sub { font-size: 16px; font-weight: 500; letter-spacing: 0; }
.pricing-desc { font-size: 14px; color: var(--muted); margin-bottom: 28px; }
.pricing-desc.featured { color: rgba(255,255,255,.6); }
.pricing-cta { width: 100%; justify-content: center; }
.pricing-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
}
.pricing-features-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text); }
.pricing-features-list.featured-list li { color: rgba(255,255,255,.85); }
.pricing-features-list li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='9' cy='9' r='9' fill='%231a73e8' fill-opacity='.15'/%3E%3Cpath d='M5 9l2.5 2.5L13 6' stroke='%231a73e8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
}
.pricing-features-list.featured-list li::before {
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='9' cy='9' r='9' fill='%23ffffff' fill-opacity='.2'/%3E%3Cpath d='M5 9l2.5 2.5L13 6' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* ── CTA BANNER ───────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, #1557b0 0%, #1a73e8 100%);
  border-radius: 20px;
  padding: 64px 48px;
  text-align: center;
  margin: 0 24px 96px;
}
.cta-banner h2 {
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
  margin-bottom: 14px;
}
.cta-banner p { color: rgba(255,255,255,.75); font-size: 18px; margin-bottom: 36px; }
.cta-banner-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── FAQ ──────────────────────────────────────────── */
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.faq-item summary {
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}
.faq-item summary::after { content: '+'; font-size: 22px; font-weight: 400; color: var(--blue); transition: transform .2s; flex-shrink: 0; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 16px 24px 20px; font-size: 15px; color: var(--muted); line-height: 1.7; border-top: 1px solid var(--border); }

/* ── FOOTER ───────────────────────────────────────── */
footer { background: var(--navy); color: rgba(255,255,255,.7); padding: 64px 24px 32px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .logo-text { color: #fff; }
.footer-brand p { margin-top: 12px; font-size: 14px; line-height: 1.7; max-width: 260px; }
.footer-col h4 { font-size: 13px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: .8px; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { color: rgba(255,255,255,.6); text-decoration: none; font-size: 14px; transition: color .15s; }
.footer-col ul a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 28px; font-size: 13px; }
.footer-bottom a { color: rgba(255,255,255,.5); text-decoration: none; }
.footer-bottom a:hover { color: #fff; }

/* ── FEATURE PAGE: STEPS ──────────────────────────── */
.steps-section { background: var(--bg); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.step-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 4px 12px rgba(26,115,232,.35);
}
.step-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.step-card p { font-size: 14px; color: var(--muted); line-height: 1.75; }

/* ── FEATURE PAGE: CAPABILITIES ──────────────────── */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.capability-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.capability-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #bfdbfe; }
.capability-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #eff6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 18px;
}
.capability-card h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.capability-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── FEATURE PAGE: SIGNAL BREAKDOWN ──────────────── */
.signal-list { display: flex; flex-direction: column; gap: 14px; margin-top: 32px; }
.signal-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border-radius: 12px;
  padding: 16px 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.signal-pct { font-size: 20px; font-weight: 800; color: var(--blue); width: 52px; flex-shrink: 0; text-align: center; }
.signal-bar-wrap { flex: 1; height: 6px; background: #e2e8f0; border-radius: 3px; overflow: hidden; margin: 0 12px; }
.signal-bar { height: 100%; border-radius: 3px; background: var(--blue); }
.signal-info h4 { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 3px; }
.signal-info p { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* ── FEATURE PAGE: DETAIL SPLIT ──────────────────── */
.detail-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 48px;
}
.detail-list { list-style: none; display: flex; flex-direction: column; gap: 16px; margin-top: 20px; }
.detail-list li { display: flex; gap: 14px; align-items: flex-start; }
.detail-list-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #eff6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.detail-list-text h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.detail-list-text p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── FEATURE PAGE: HIGHLIGHT BOX ─────────────────── */
.highlight-box {
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border: 1px solid #bfdbfe;
  border-radius: 16px;
  padding: 32px;
  margin-top: 32px;
}
.highlight-box h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.highlight-box p { font-size: 15px; color: #1e40af; line-height: 1.7; }

/* ── FEATURE PAGE: RELATED ────────────────────────── */
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.related-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px;
  border: 1px solid var(--border);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.related-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--blue); }
.related-card-tag { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: var(--blue); }
.related-card h3 { font-size: 17px; font-weight: 700; color: var(--navy); }
.related-card p { font-size: 14px; color: var(--muted); line-height: 1.6; flex: 1; }
.related-card-arrow { color: var(--blue); font-weight: 700; font-size: 18px; margin-top: 4px; }

/* ── FEATURE PAGE: HERO MOCK UI VARIANTS ─────────── */
.fhero-mock-inner {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fhero-picker {
  display: flex;
  gap: 8px;
  margin-bottom: 4px;
}
.fhero-select {
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.9);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 6px;
}
.fhero-kpis { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; }
.fhero-kpi {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  padding: 10px;
}
.fhero-kpi-label { font-size: 9px; color: rgba(255,255,255,.6); font-weight: 600; margin-bottom: 3px; }
.fhero-kpi-val { font-size: 16px; font-weight: 800; color: #fff; }
.fhero-kpi-delta { font-size: 9px; font-weight: 600; }
.fhero-kpi-delta.up { color: #86efac; }
.fhero-kpi-delta.down { color: #fca5a5; }
.fhero-chart {
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  padding: 12px;
  flex: 1;
  display: flex;
  align-items: flex-end;
  gap: 6px;
}
.fhero-bar { flex: 1; border-radius: 3px 3px 0 0; }
.fhero-bar.curr { background: rgba(255,255,255,.8); }
.fhero-bar.prev { background: rgba(255,255,255,.25); }
.fhero-score-list { display: flex; flex-direction: column; gap: 8px; }
.fhero-score-row {
  background: rgba(255,255,255,.1);
  border-radius: 8px;
  padding: 9px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.fhero-score-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
  color: #fff;
}
.fscore-h { background: rgba(19,115,51,.6); }
.fscore-m { background: rgba(217,119,6,.6); }
.fscore-l { background: rgba(220,38,38,.5); }
.fhero-score-url { font-size: 9px; color: rgba(255,255,255,.8); flex: 1; }
.fhero-bar-mini-wrap { width: 50px; height: 5px; background: rgba(255,255,255,.15); border-radius: 3px; overflow: hidden; }
.fhero-bar-mini { height: 100%; border-radius: 3px; background: rgba(255,255,255,.7); }
.fhero-decay-list { display: flex; flex-direction: column; gap: 8px; }
.fhero-decay-row {
  background: rgba(255,255,255,.1);
  border-radius: 8px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.fhero-decay-icon { font-size: 14px; flex-shrink: 0; }
.fhero-decay-url { font-size: 9px; color: rgba(255,255,255,.8); flex: 1; }
.fhero-decay-stat { font-size: 11px; font-weight: 700; }
.fhero-decay-stat.neg { color: #fca5a5; }
.fhero-decay-stat.pos { color: #86efac; }
.fhero-decay-badge {
  font-size: 8px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 100px;
  text-transform: uppercase;
}
.fhero-decay-badge.crit { background: rgba(239,68,68,.3); color: #fca5a5; }
.fhero-decay-badge.warn { background: rgba(245,158,11,.3); color: #fcd34d; }
.fhero-decay-badge.ok { background: rgba(16,185,129,.3); color: #6ee7b7; }
.fhero-update-list { display: flex; flex-direction: column; gap: 8px; }
.fhero-update-row {
  background: rgba(255,255,255,.1);
  border-radius: 8px;
  padding: 9px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.fhero-update-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.fhero-update-name { font-size: 9px; font-weight: 600; color: rgba(255,255,255,.85); flex: 1; }
.fhero-update-bar-wrap { width: 55px; height: 5px; background: rgba(255,255,255,.15); border-radius: 3px; overflow: hidden; }
.fhero-update-bar { height: 100%; border-radius: 3px; }
.fhero-update-delta { font-size: 11px; font-weight: 700; width: 44px; text-align: right; }
.fhero-health-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.fhero-health-card {
  background: rgba(255,255,255,.1);
  border-radius: 8px;
  padding: 12px;
}
.fhero-health-label { font-size: 9px; color: rgba(255,255,255,.6); font-weight: 600; margin-bottom: 4px; }
.fhero-health-val { font-size: 18px; font-weight: 800; color: #fff; }
.fhero-health-sub { font-size: 9px; color: rgba(255,255,255,.5); margin-top: 2px; }
.fhero-health-bar-stack { display: flex; flex-direction: column; gap: 4px; background: rgba(255,255,255,.08); border-radius: 8px; padding: 10px; }
.fhero-health-bucket { display: flex; align-items: center; gap: 8px; }
.fhero-health-bucket-label { font-size: 9px; color: rgba(255,255,255,.6); width: 40px; flex-shrink: 0; }
.fhero-health-bucket-bar-wrap { flex: 1; height: 7px; background: rgba(255,255,255,.12); border-radius: 3px; overflow: hidden; }
.fhero-health-bucket-bar { height: 100%; border-radius: 3px; }
.fhero-health-bucket-val { font-size: 9px; color: rgba(255,255,255,.7); font-weight: 600; width: 28px; text-align: right; }

/* ── REVEAL ANIMATION ─────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s ease, transform .5s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 1024px) {
  .feature-row { grid-template-columns: 1fr; gap: 40px; }
  .feature-row.reverse .feature-text { order: 0; }
  .feature-row.reverse .feature-visual { order: 0; }
  .feature-hero-content { grid-template-columns: 1fr; gap: 40px; }
  .feature-hero-visual { order: -1; max-width: 540px; margin: 0 auto; width: 100%; }
  .steps-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .detail-split { grid-template-columns: 1fr; gap: 40px; }
}
/* ── MOBILE NAV (injected by site.js) ──────────────── */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  margin-left: auto;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .25s, opacity .2s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
}
.mobile-nav.open { pointer-events: all; }
.mobile-nav-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
  opacity: 0;
  transition: opacity .25s;
  backdrop-filter: blur(2px);
}
.mobile-nav.open .mobile-nav-overlay { opacity: 1; }
.mobile-nav-drawer {
  position: absolute;
  top: 0; right: 0;
  width: min(320px, 85vw);
  height: 100%;
  background: var(--navy);
  padding: 20px;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-nav.open .mobile-nav-drawer { transform: none; }
.mobile-nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.mobile-nav-logo { display: flex; align-items: center; gap: 9px; text-decoration: none; }
.mobile-nav-logo-icon {
  width: 30px; height: 30px; background: var(--blue); border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
}
.mobile-nav-logo-text { font-weight: 800; font-size: 15px; color: #fff; }
.mobile-nav-logo-text span { color: #93c5fd; }
.mobile-nav-close {
  width: 34px; height: 34px; border-radius: 8px; background: rgba(255,255,255,.1);
  border: none; color: rgba(255,255,255,.8); font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.mobile-nav-close:hover { background: rgba(255,255,255,.18); color: #fff; }
.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
.mobile-nav-links a {
  display: block;
  padding: 12px 14px;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  border-radius: 10px;
  transition: background .15s, color .15s;
}
.mobile-nav-links a:hover, .mobile-nav-links a.active { background: rgba(255,255,255,.1); color: #fff; }
.mobile-nav-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.mobile-nav-ctas a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: all .15s;
}
.mobile-cta-primary { background: var(--blue); color: #fff; }
.mobile-cta-primary:hover { background: var(--blue-dark); }
.mobile-cta-ghost { background: rgba(255,255,255,.08); color: rgba(255,255,255,.8); border: 1px solid rgba(255,255,255,.15); }
.mobile-cta-ghost:hover { background: rgba(255,255,255,.14); color: #fff; }

@media (max-width: 768px) {
  section { padding: 64px 20px; }
  .nav-links { display: none; }
  .nav-ctas { display: none; }
  .nav-toggle { display: flex; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .capabilities-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .mock-kpis { grid-template-columns: repeat(2, 1fr); }
  .fhero-kpis { grid-template-columns: repeat(2,1fr); }
  .cta-banner { padding: 48px 24px; }
}
@media (max-width: 520px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .stat-num { font-size: 36px; }
  .footer-top { grid-template-columns: 1fr; }
  .fhero-kpis { grid-template-columns: repeat(2,1fr); }
}
