/* Eyevertise — Hero trace (Jun 3 2026 mockup: header + hero + trust bar) */
:root {
  --navy: #0b2340;
  --navy-mid: #1a3a5c;
  --blue: #1a5fa8;
  --blue-accent: #2088e0;
  --blue-soft: #eef6fc;
  --blue-pill: #1a5fa8;
  --orange: #ff8522;
  --orange-hover: #e07518;
  --green: #28a745;
  --reviews-gold: #e09020;
  --gap-neg: #c53030;
  --gap-neg-bg: #fde8ea;
  --gap-pos: #1a7a42;
  --gap-pos-bg: #e3f5ea;
  --purple: #7b4fbe;
  --text: #334155;
  --muted: #5c6b7a;
  --border: #dce6ef;
  --max: 1440px;
  --font: "Inter", system-ui, sans-serif;
  --ev-head-h: 82px;
}

*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; font-family: var(--font); color: var(--navy); background: #fff; }

.ev-wrap { max-width: var(--max); margin: 0 auto; padding: 0 32px; }

/* Header */
.ev-head {
  background: #fff;
  border-bottom: 1px solid #e8eef4;
}
.ev-head-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 6px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: var(--ev-head-h);
}
.ev-logo {
  display: block;
  line-height: 0;
  flex-shrink: 0;
}
/* Height drives scale (PNG is 243×83); prior width:190+height:52 capped visual size ~152px wide */
.ev-logo img {
  height: 76px;
  width: auto;
  max-width: none;
  display: block;
}
.ev-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.ev-nav a {
  color: var(--navy-mid);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  padding: 8px 16px;
}
.ev-nav a:hover { color: var(--blue); }
.ev-nav-chev { font-size: 11px; margin-left: 2px; opacity: 0.6; }

.ev-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 700;
  line-height: 1.2;
  border-radius: 12px;
  border: none;
  transition: background 0.15s ease, box-shadow 0.15s ease, transform 0.12s ease;
}
.ev-btn:hover { transform: translateY(-1px); }
.ev-btn-head,
.ev-btn-primary {
  padding: 14px 28px;
  font-size: 16px;
  color: #fff;
}
.ev-btn-head {
  padding: 12px 24px;
  flex-shrink: 0;
}
.ev-btn-primary span[aria-hidden="true"] {
  font-size: 1.05em;
  font-weight: 700;
  margin-left: 2px;
}
.ev-btn-call {
  padding: 14px 26px;
  font-size: 16px;
  background: #fff;
  color: var(--navy);
  border: 1.5px solid #c5d4e3;
  box-shadow: 0 2px 8px rgba(11, 35, 64, 0.06);
}
.ev-btn-call:hover {
  border-color: #9eb4c8;
  color: var(--navy);
  box-shadow: 0 3px 12px rgba(11, 35, 64, 0.1);
}
.ev-btn-call img { width: 20px; height: 20px; }

/* Hero — layout only; assets per docs/BUILD.md */
.ev-hero-block {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #e8f4fc 0%, #f6fbfe 50%, #fff 100%);
  display: flex;
  flex-direction: column;
  min-height: calc(100dvh - var(--ev-head-h));
  min-height: calc(100vh - var(--ev-head-h));
}
.ev-hero-block::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: min(55%, 780px);
  height: min(90%, 700px);
  transform: translateY(-50%);
  pointer-events: none;
  background: url("/images/blue-cirlce-for-background.webp") no-repeat right center / contain;
  opacity: 0.85;
  z-index: 0;
}
.ev-hero-block > * {
  position: relative;
  z-index: 1;
}

.ev-hero {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 36px 0 32px;
}

.ev-hero > .ev-wrap {
  width: 100%;
}

.ev-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 42%) minmax(0, 58%);
  gap: 24px 40px;
  align-items: center;
}

.ev-hero-copy {
  max-width: 520px;
}

.ev-hero-eyebrow {
  display: inline-block;
  margin: 0 0 18px;
  padding: 9px 18px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--blue-pill);
  border-radius: 999px;
}

.ev-hero-copy h1 {
  font-size: clamp(2.35rem, 4.2vw, 3.6rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--navy);
  margin: 0 0 22px;
  letter-spacing: -0.03em;
}
.ev-h1-br {
  display: block;
}
.ev-h1-accent {
  color: var(--blue-accent);
}
.ev-hero-lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 30px;
  max-width: 500px;
}
.ev-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}
.ev-proof {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
}
.ev-proof li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.ev-proof img { width: 18px; height: 18px; }

/* Scorecard — HTML + site icons (no low-res composite PNG) */
.ev-scorecard {
  width: 100%;
  margin: 0 auto;
  padding: 26px 28px 22px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 20px 48px rgba(11, 35, 64, 0.12), 0 4px 14px rgba(11, 35, 64, 0.06);
}

.ev-sc-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}
.ev-sc-title {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.3;
}
.ev-sc-pill {
  flex-shrink: 0;
  background: var(--orange);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 12px;
}

.ev-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 22px;
}

.ev-metric {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 12px 12px;
  text-align: center;
  background: #fafcfe;
}
.ev-metric-icon {
  width: 42px;
  height: 42px;
  margin: 0 auto 8px;
  object-fit: contain;
}
.ev-metric-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--navy-mid);
  line-height: 1.25;
  margin-bottom: 6px;
  min-height: 28px;
}
.ev-metric-val {
  font-size: 30px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}
.ev-metric-val em {
  font-style: normal;
  font-size: 16px;
  font-weight: 600;
  color: #94a3b8;
}
.ev-metric-val--blue { color: var(--blue); }
.ev-metric-val--reviews { color: var(--reviews-gold); }
.ev-metric-val--purple { color: var(--purple); }
.ev-metric-spark {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.ev-sc-compare {
  margin-top: 4px;
  padding: 18px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fafcfe;
}
.ev-sc-row {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 8px 12px;
  align-items: center;
  margin-bottom: 14px;
}
.ev-sc-row:last-child { margin-bottom: 0; }
.ev-sc-row-icon {
  grid-row: 1 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
}
.ev-sc-row-icon--you { background: var(--blue); }
.ev-sc-row-icon--avg { background: #6b7c8f; }
.ev-sc-row-label {
  grid-column: 2;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-mid);
}
.ev-sc-row-score {
  grid-column: 3;
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  white-space: nowrap;
}
.ev-sc-row-bar {
  grid-column: 2 / 4;
}
.ev-sc-row-bar img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 999px;
}

.ev-sc-foot {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.ev-sc-foot img { width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px; }
.ev-sc-foot p {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: #64748b;
}

/* Trust bar */
.ev-trust {
  background: #fff;
  border-top: 1px solid #e2ebf3;
  border-radius: 0;
  margin-top: auto;
  flex-shrink: 0;
  box-shadow: none;
}
.ev-trust-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 22px 32px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.ev-trust-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  text-align: left;
  padding: 8px 24px;
  border-right: 1px solid var(--border);
}
.ev-trust-item:last-child { border-right: 0; }
.ev-trust-item img {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  object-fit: contain;
}
.ev-trust-item p {
  margin: 0;
  line-height: 1.3;
}
.ev-trust-item p strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.35;
}

/* Section 2 — What Does AI Say (mockup trace) */
.ev-ai-say {
  background: #f4f7fb;
  padding: 64px 0 72px;
  border-top: 1px solid var(--border);
}
.ev-ai-say-eyebrow {
  display: table;
  margin: 0 auto 18px;
  padding: 8px 18px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  background: #e8f2fc;
  border-radius: 999px;
}
.ev-ai-say-title {
  margin: 0 0 14px;
  text-align: center;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.ev-ai-say-lead {
  margin: 0 auto 40px;
  max-width: 720px;
  text-align: center;
  font-size: 17px;
  line-height: 1.55;
  color: var(--muted);
}

.ev-eval-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 28px;
}
.ev-eval-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px 22px 26px;
  min-height: 420px;
  box-shadow: 0 12px 36px rgba(11, 35, 64, 0.08);
  display: flex;
  flex-direction: column;
}
.ev-eval-card-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.ev-eval-card-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  object-fit: contain;
}
.ev-eval-card-titles {
  flex: 1;
  min-width: 0;
}
.ev-eval-card-titles h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy-mid);
  line-height: 1.2;
}
.ev-eval-kicker {
  margin: 4px 0 0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94a3b8;
}
.ev-eval-pill {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 8px;
  line-height: 1;
}
.ev-eval-card--reviews .ev-eval-pill {
  color: var(--reviews-gold);
  background: #fef3e2;
}
.ev-eval-card--ai .ev-eval-pill {
  color: var(--purple);
  background: #f3ebfc;
}
.ev-eval-card--search .ev-eval-pill {
  color: var(--blue);
  background: #e8f2fc;
}

.ev-eval-score {
  margin: 0 0 12px;
  font-size: clamp(2.6rem, 4.2vw, 3.15rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}
.ev-eval-score em {
  font-style: normal;
  font-size: 0.45em;
  font-weight: 600;
  color: #94a3b8;
}
.ev-eval-card--reviews .ev-eval-score { color: var(--reviews-gold); }
.ev-eval-card--ai .ev-eval-score { color: var(--purple); }
.ev-eval-card--search .ev-eval-score { color: var(--blue); }

.ev-eval-status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.ev-stars {
  display: inline-flex;
  gap: 3px;
}
.ev-star {
  width: 18px;
  height: 18px;
  background: #e2e8f0;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.ev-eval-card--reviews .ev-star {
  width: 24px;
  height: 24px;
}
.ev-star--full { background: var(--reviews-gold); }
.ev-star--half {
  background: linear-gradient(90deg, var(--reviews-gold) 50%, #e2e8f0 50%);
}
.ev-eval-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--reviews-gold);
}
.ev-eval-badge {
  display: inline-block;
  margin: 0 0 14px;
  align-self: flex-start;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
}
.ev-eval-badge--warn {
  color: var(--purple);
  background: #f3ebfc;
}
.ev-eval-badge--strong {
  color: var(--blue);
  background: #e8f2fc;
}

.ev-eval-spark {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 0 18px;
  border-radius: 8px;
}

.ev-eval-foot {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #eef2f6;
}
.ev-eval-foot img {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  object-fit: contain;
}
.ev-eval-foot p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
  text-align: left;
}

/* Bottom CTA band */
.ev-score-cta {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 24px 28px;
  align-items: center;
  background: linear-gradient(180deg, #fff8f0 0%, #fff4e8 100%);
  border: 1px solid #f5dcc4;
  border-radius: 16px;
  padding: 28px 32px;
  box-shadow: 0 8px 28px rgba(244, 130, 33, 0.1);
}
.ev-score-cta-icon {
  width: 72px;
  height: 72px;
  object-fit: contain;
}
.ev-score-cta-copy h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
}
.ev-score-cta-copy p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
  max-width: 340px;
}
.ev-score-cta-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ev-score-cta-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
}
.ev-score-cta-list img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}
.ev-score-cta-action {
  text-align: center;
}
.ev-score-cta-action .ev-btn-primary {
  padding: 16px 28px;
  font-size: 16px;
  white-space: nowrap;
}
.ev-score-cta-note {
  margin: 10px 0 0;
  font-size: 12px;
  color: #94a3b8;
  font-weight: 500;
}

/* Section 3 — Visibility Is Relative (full-width mockup trace) */
.ev-compare-sec {
  background: #fff;
  padding: 56px 12px 72px;
  border-top: 1px solid var(--border);
}
.ev-compare-frame {
  width: 100%;
  max-width: min(1720px, 100%);
  margin: 0 auto;
}
.ev-compare-shell {
  width: 100%;
  border: 1px solid #cdd9e5;
  border-radius: 20px;
  background: #f6f9fc;
  padding: 36px 40px 40px;
  box-shadow: 0 20px 56px rgba(11, 35, 64, 0.08);
}
.ev-compare-intro {
  text-align: center;
  margin-bottom: 32px;
}
.ev-compare-eyebrow {
  display: table;
  margin: 0 auto 16px;
  padding: 8px 20px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 999px;
}
.ev-compare-title {
  margin: 0 0 12px;
  font-size: clamp(2rem, 3.5vw, 2.65rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.ev-compare-lead {
  margin: 0 auto;
  max-width: 820px;
  font-size: 18px;
  line-height: 1.55;
  color: var(--muted);
}

.ev-compare-grid {
  display: grid;
  grid-template-columns: minmax(260px, 26%) minmax(0, 74%);
  gap: 32px;
  margin-bottom: 32px;
  align-items: stretch;
}

.ev-compare-aside {
  background: linear-gradient(180deg, #e8f2fc 0%, #f4f9fd 100%);
  border: 1px solid #c5d9ea;
  border-radius: 16px;
  padding: 32px 28px;
}
.ev-compare-aside-icon {
  width: 52px;
  height: 52px;
  object-fit: contain;
  margin-bottom: 18px;
  display: block;
}
.ev-compare-aside h3 {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.3;
}
.ev-compare-aside > p {
  margin: 0 0 22px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
}
.ev-compare-aside-list {
  list-style: none;
  margin: 0;
  padding: 22px 0 0;
  border-top: 1px solid #c5d9ea;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ev-compare-aside-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}
.ev-compare-aside-list img {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.ev-compare-main {
  display: flex;
  flex-direction: column;
  gap: 28px;
  min-width: 0;
}

/* Story first — proof second */
.ev-compare-story {
  padding: 28px 32px;
  background: #fff;
  border: 1px solid #ecd4d8;
  border-left: 5px solid var(--gap-neg);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(197, 48, 48, 0.06);
}
.ev-compare-story-punch {
  margin: 0 0 22px;
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
  font-weight: 800;
  line-height: 1.35;
  color: var(--navy);
}
.ev-compare-story-punch strong {
  color: var(--purple);
}
.ev-compare-story-gaps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ev-compare-story-gaps li {
  display: grid;
  grid-template-columns: minmax(120px, 150px) auto minmax(0, 1fr);
  gap: 6px 14px;
  align-items: baseline;
  font-size: 15px;
  line-height: 1.4;
}
.ev-compare-story-label {
  font-weight: 800;
  color: var(--navy);
}
.ev-compare-story-gap {
  font-weight: 800;
  white-space: nowrap;
}
.ev-compare-story-gap--neg { color: var(--gap-neg); }
.ev-compare-story-gap--pos { color: var(--gap-pos); }
.ev-compare-story-note {
  color: var(--muted);
  font-weight: 500;
}

.ev-lb-story-lead {
  margin: 0 0 8px;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}
.ev-lb-story-lead strong {
  color: var(--blue);
}
.ev-lb-story-sub {
  margin: 0 0 20px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--muted);
}

.ev-compare-table-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(11, 35, 64, 0.08);
}
.ev-compare-table-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 32px;
  border-bottom: 1px solid var(--border);
}
.ev-compare-table-head img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.ev-compare-table-head h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy-mid);
}
.ev-compare-table-wrap {
  overflow-x: auto;
}
.ev-compare-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 18px;
}
.ev-compare-table thead th {
  text-align: left;
  padding: 20px 28px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #94a3b8;
  background: #f8fafc;
  border-bottom: 1px solid var(--border);
}
.ev-compare-table thead th:nth-child(1) { width: 34%; }
.ev-compare-table thead th:nth-child(2) { width: 22%; color: var(--blue); }
.ev-compare-table thead th:nth-child(3) { width: 22%; }
.ev-compare-table thead th:nth-child(4) { width: 14%; }
.ev-compare-table tbody td {
  padding: 26px 28px;
  border-bottom: 1px solid #eef2f6;
  color: var(--text);
  font-weight: 600;
  vertical-align: middle;
  font-size: 17px;
}
.ev-compare-table tbody tr:last-child td {
  border-bottom: 0;
}
.ev-compare-cat {
  display: flex;
  align-items: center;
  gap: 16px;
}
.ev-compare-cat img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  object-fit: contain;
}
.ev-compare-cat span {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ev-compare-cat strong {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
}
.ev-compare-cat small {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #94a3b8;
}
.ev-compare-you {
  font-weight: 600;
}
.ev-compare-you strong {
  font-size: clamp(2rem, 2.8vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}
.ev-compare-you em {
  font-style: normal;
  font-size: 1rem;
  color: #94a3b8;
  font-weight: 600;
}
.ev-compare-you--blue strong { color: var(--blue); }
.ev-compare-you--gold strong { color: var(--reviews-gold); }
.ev-compare-you--purple strong { color: var(--purple); }

.ev-gap {
  display: inline-block;
  min-width: 64px;
  text-align: center;
  font-size: 18px;
  font-weight: 800;
  padding: 10px 18px;
  border-radius: 10px;
}
.ev-gap--neg {
  color: var(--gap-neg);
  background: var(--gap-neg-bg);
}
.ev-gap--pos {
  color: var(--gap-pos);
  background: var(--gap-pos-bg);
}

.ev-compare-widgets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.ev-lb-widget,
.ev-insight-widget {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 32px;
  box-shadow: 0 10px 28px rgba(11, 35, 64, 0.08);
  min-height: 300px;
}
.ev-lb-widget-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
}
.ev-lb-widget-title {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ev-lb-widget-title img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.ev-lb-widget-title h3,
.ev-insight-head h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
}
.ev-lb-widget-kicker {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94a3b8;
}
.ev-lb-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ev-lb-list li {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 18px 16px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
}
.ev-lb-list li + li {
  margin-top: 8px;
}
.ev-lb-rank {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #eef2f6;
  color: var(--navy-mid);
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ev-lb-list li:first-child .ev-lb-rank {
  background: #fef3e2;
  color: var(--reviews-gold);
}
.ev-lb-score {
  font-weight: 700;
  font-size: 17px;
  color: #64748b;
  white-space: nowrap;
}
.ev-lb-you {
  background: var(--blue-soft);
  border: 1px solid #b8d4ef;
}
.ev-lb-you .ev-lb-rank {
  background: var(--blue);
  color: #fff;
}
.ev-lb-you .ev-lb-name,
.ev-lb-you .ev-lb-score {
  color: var(--blue);
  font-weight: 800;
}
.ev-lb-you .ev-lb-score strong {
  font-size: 22px;
}
.ev-lb-you .ev-lb-name {
  font-size: 19px;
}

.ev-insight-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.ev-insight-head img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.ev-insight-widget p {
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
}

.ev-compare-cta {
  display: grid;
  grid-template-columns: auto minmax(0, 1.2fr) auto auto;
  gap: 28px 40px;
  align-items: center;
  background: linear-gradient(180deg, #fff8f0 0%, #fff1e3 100%);
  border: 1px solid #f5dcc4;
  border-radius: 16px;
  padding: 32px 40px;
  width: 100%;
}
.ev-compare-cta-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
}
.ev-compare-cta-copy h3 {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
}
.ev-compare-cta-copy p {
  margin: 0;
  font-size: 17px;
  line-height: 1.5;
  color: var(--muted);
}
.ev-compare-cta-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ev-compare-cta-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
}
.ev-compare-cta-bullets img {
  width: 20px;
  height: 20px;
}
.ev-compare-cta-action {
  text-align: center;
}
.ev-compare-cta-action .ev-btn-primary {
  padding: 20px 36px;
  font-size: 18px;
}
.ev-compare-cta-note {
  margin: 10px 0 0;
  font-size: 13px;
  color: #94a3b8;
}

/* Lower sections paused */
.ev-paused { display: none !important; }

@media (max-width: 1100px) {
  .ev-eval-cards { grid-template-columns: 1fr; }
  .ev-eval-card { min-height: 0; }
  .ev-score-cta {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
  .ev-score-cta-copy p { max-width: none; }
  .ev-score-cta-list { align-items: flex-start; text-align: left; width: 100%; max-width: 360px; }
  .ev-eval-foot { text-align: left; }
  .ev-compare-shell { padding: 28px 24px; }
  .ev-compare-grid { grid-template-columns: 1fr; }
  .ev-compare-widgets { grid-template-columns: 1fr; }
  .ev-compare-table { table-layout: auto; }
  .ev-compare-cta {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
    padding: 28px 24px;
  }
  .ev-compare-cta-bullets { align-items: flex-start; text-align: left; }
  .ev-hero-block {
    min-height: auto;
  }
  .ev-h1-br { display: none; }
  .ev-hero-copy { max-width: none; }
  .ev-hero-block::after {
    width: 100%;
    height: 45%;
    top: auto;
    bottom: 0;
    transform: none;
    opacity: 0.6;
    background-position: center bottom;
  }
  .ev-hero {
    flex: none;
    align-items: stretch;
    padding: 28px 0 32px;
  }
  .ev-hero-grid {
    grid-template-columns: 1fr;
    align-items: start;
    text-align: center;
  }
  .ev-hero-eyebrow { margin-left: auto; margin-right: auto; }
  .ev-hero-lead { margin-left: auto; margin-right: auto; }
  .ev-hero-ctas,
  .ev-proof { justify-content: center; }
  .ev-metrics { grid-template-columns: repeat(2, 1fr); }
  .ev-trust { margin-top: 0; }
  .ev-trust-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .ev-trust-item {
    border-right: 0;
    border-bottom: 1px solid var(--border);
    padding: 12px 16px 20px;
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .ev-ai-say { padding: 48px 0 56px; }
  .ev-ai-say-lead { margin-bottom: 28px; }
  .ev-score-cta { padding: 24px 20px; gap: 20px; }
  .ev-score-cta-icon { width: 56px; height: 56px; }
  .ev-compare-sec { padding: 40px 10px 56px; }
  .ev-compare-shell { padding: 22px 18px; }
  .ev-compare-you strong { font-size: 2rem; }
  .ev-compare-table tbody td,
  .ev-compare-table thead th { padding: 16px 14px; }
  .ev-compare-story { padding: 22px 20px; }
  .ev-compare-story-gaps li {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .ev-nav { display: none; }
  .ev-head-inner { padding: 12px 20px; }
  .ev-wrap { padding: 0 20px; }
  .ev-trust-inner { grid-template-columns: 1fr; }
  .ev-trust-item { border-bottom: 1px solid var(--border); }
  .ev-trust-item:last-child { border-bottom: 0; }
  .ev-proof { flex-direction: column; align-items: center; gap: 10px; }
}

@media (max-width: 480px) {
  .ev-hero-ctas { flex-direction: column; width: 100%; }
  .ev-hero-ctas .ev-btn { width: 100%; }
}
