﻿/* ============================================================
   GEO Optimization Page â€” geo-optimization.css
   All classes use geo- prefix to avoid global style conflicts.
   ============================================================ */

:root {
  --geo-blue: #0057ff;
  --geo-blue-dark: #0040cc;
  --geo-blue-50: #e6efff;
  --geo-purple: #6366F1;
  --geo-purple-dark: #4f46e5;
  --geo-ink: #0B0B12;
  --geo-gray-900: #1B1B25;
  --geo-gray-700: #3A3A48;
  --geo-gray-500: #6B6B7B;
  --geo-gray-400: #9396A6;
  --geo-gray-300: #D7D8E0;
  --geo-gray-200: #E8E8EE;
  --geo-gray-100: #F2F2F6;
  --geo-grad: linear-gradient(90deg, #0057ff, #7c3aed);
}

/* ============================================================
   GLOBAL RESETS / UTILITIES
   ============================================================ */

.geo-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 130px;
}

.geo-section-eyebrow {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--geo-blue);
  margin-bottom: 14px;
}

.geo-eyebrow-light {
  color: #818cf8;
}

.geo-h2 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.12;
  color: var(--geo-ink);
  margin: 0 0 18px;
}

.geo-h2-white {
  color: #fff;
}

.geo-section-sub {
  font-size: 16px;
  color: var(--geo-gray-500);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

/* Buttons */
.geo-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14.5px;
  padding: 13px 22px;
  border-radius: 10px;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease;
  text-decoration: none;
  border: none;
}
.geo-btn:hover { transform: translateY(-1px); }

.geo-btn-dark {
  background: var(--geo-ink);
  color: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,.22);
}
.geo-btn-dark:hover { background: #1e1e2e; }

.geo-btn-ghost {
  background: transparent;
  color: var(--geo-ink);
  border: 1.5px solid var(--geo-gray-300);
}
.geo-btn-ghost:hover { background: var(--geo-gray-100); }

.geo-btn-light-solid {
  background: #fff;
  color: var(--geo-blue);
  box-shadow: 0 4px 16px rgba(0,0,0,.18);
}
.geo-btn-light-solid:hover { background: #eef4ff; }

.geo-arr { width: 14px; height: 14px; flex-shrink: 0; }

/* ============================================================
   SECTION 1 â€” HERO
   ============================================================ */

.geo-hero {
  background-color: #f1f2f3;
  background-image: url('https://cdn.prod.website-files.com/65c292289fb0ea1ff3a84bd3/69e74f4f8065c619d9f6af08_hero-bg.avif');
  background-position: 50% -2%;
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
  overflow-x:clip;
  padding: 80px 0 72px;
}

/* Orbs */
.geo-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  pointer-events: none;
  z-index: 0;
}
.geo-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,87,255,.12), transparent 70%);
  top: -100px; left: -120px;
  animation: geoOrb1 9s ease-in-out infinite;
}
.geo-orb-2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(99,102,241,.10), transparent 70%);
  top: 8%; right: -90px;
  animation: geoOrb2 11s ease-in-out infinite;
}
.geo-orb-3 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(0,87,255,.07), transparent 70%);
  bottom: -40px; left: 42%;
  animation: geoOrb3 13s ease-in-out infinite;
}
.geo-hero > *:not(.geo-orb) { position: relative; z-index: 1; }

@keyframes geoOrb1 { 0%,100%{transform:translate(0,0);} 50%{transform:translate(28px,18px);} }
@keyframes geoOrb2 { 0%,100%{transform:translate(0,0);} 50%{transform:translate(-18px,22px);} }
@keyframes geoOrb3 { 0%,100%{transform:translate(0,0);} 50%{transform:translate(14px,-14px);} }

/* Hero grid */
.geo-hero-grid {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1.05fr);
  gap: 52px;
  align-items: center;
}

/* Eyebrow pill */
.geo-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--geo-blue);
  background: var(--geo-blue-50);
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.geo-eyebrow-plus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 17px; height: 17px;
  background: var(--geo-blue);
  color: #fff;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

/* H1 */
.geo-h1 {
  font-size: 54px;
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--geo-ink);
  margin: 0 0 22px;
}

/* "GEO" gradient text */
.geo-accent {
  background: var(--geo-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.geo-hero-sub {
  font-size: 16.5px;
  color: var(--geo-gray-500);
  max-width: 440px;
  margin: 0 0 32px;
  line-height: 1.6;
}

/* CTAs */
.geo-hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.geo-play-ic { width: 18px; height: 18px; flex-shrink: 0; }

/* Trust row */
.geo-trust-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.geo-avatars {
  display: flex;
}
.geo-avatars img {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2px solid #fff;
  object-fit: cover;
  margin-left: -8px;
}
.geo-avatars img:first-child { margin-left: 0; }
.geo-trust-text {
  font-size: 13px;
  color: var(--geo-gray-500);
  line-height: 1.45;
  margin: 0;
}

/* â”€â”€ HERO WIDGET â”€â”€ */
.geo-hero-widget {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 28px 60px -16px rgba(0,50,200,.16), 0 6px 18px -6px rgba(0,50,200,.08);
  border: 1px solid #dde8f8;
}

.geo-compare-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 14px;
  align-items: center;
}

/* Traditional Search card */
.geo-compare-card {
  border-radius: 14px;
  padding: 16px;
  border: 1.5px solid var(--geo-gray-200);
}
.geo-compare-traditional { background: #fafafa; }

.geo-compare-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.geo-compare-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--geo-gray-500);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.geo-search-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--geo-gray-300);
  border-radius: 8px;
  padding: 7px 12px;
  font-size: 12.5px;
  color: var(--geo-gray-700);
  margin-bottom: 14px;
}

/* Skeleton result lines */
.geo-skeleton-results { display: flex; flex-direction: column; gap: 5px; }
.geo-skel {
  height: 8px;
  border-radius: 4px;
  background: linear-gradient(90deg, #e8e8ee 25%, #f2f2f6 50%, #e8e8ee 75%);
  background-size: 200% 100%;
  animation: geoSkelShimmer 1.8s infinite;
}
.geo-skel-url { width: 55%; height: 6px; background-color: #c8d9f8; }
.geo-skel-title { width: 80%; height: 9px; }
.geo-skel-desc { width: 95%; height: 7px; }
.geo-skel-short { width: 40%; }
.geo-skel-med { width: 68%; }
.geo-skel-sm { width: 88%; }
.geo-skel-long { width: 90%; }

@keyframes geoSkelShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Arrow between cards */
.geo-compare-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* AI card */
.geo-compare-ai {
  background: linear-gradient(160deg, #eef4ff 0%, #f5f3ff 100%);
  border-color: #c7d2fe;
}
.geo-ai-card-header {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 10px;
}
.geo-ai-star {
  width: 22px; height: 22px;
  background: var(--geo-grad);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.geo-ai-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--geo-purple);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.geo-ai-answer-text {
  font-size: 12.5px;
  color: var(--geo-gray-700);
  line-height: 1.55;
  margin: 0 0 12px;
}

.geo-ai-sources { display: flex; flex-direction: column; gap: 6px; margin-bottom: 10px; }
.geo-ai-source {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  color: var(--geo-gray-600);
}
.geo-source-icon {
  width: 20px; height: 20px;
  border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.geo-source-blue { background: #2563eb; }
.geo-source-red { background: #dc2626; }
.geo-source-teal { background: #0d9488; }

.geo-source-name { font-weight: 600; color: var(--geo-gray-700); }
.geo-source-domain { font-weight: 600; color: var(--geo-gray-700); }
.geo-source-url { color: var(--geo-gray-400); font-size: 11px; }

.geo-ai-caption {
  font-size: 10.5px;
  color: var(--geo-gray-400);
  margin: 0;
  font-style: italic;
}

/* ============================================================
   SECTION 2 â€” THE SHIFT (DARK)
   ============================================================ */

.geo-shift {
  background: #07040e;
  position: relative;
  overflow: hidden;
  padding: 84px 0;
}

.geo-dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.geo-glow {
  position: absolute;
  top: 0;
  left: -10%;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse 60% 80% at 30% 50%, rgba(0,87,255,.18) 0%, transparent 70%);
  pointer-events: none;
}

.geo-shift-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.geo-shift-copy {
  color: #fff;
}

.geo-shift-text {
  font-size: 16px;
  color: #a8a3c0;
  line-height: 1.65;
  margin: 0 0 32px;
  max-width: 440px;
}

/* Stat boxes */
.geo-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.geo-stat-box {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 16px 14px;
}
.geo-stat-val {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 6px;
}
.geo-stat-label {
  font-size: 12px;
  color: #9c97b8;
  line-height: 1.5;
}

/* Dark card (right side) */
.geo-shift-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  padding: 26px;
}

.geo-shift-flow { display: flex; flex-direction: column; gap: 14px; }

.geo-shift-from-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #9c97b8;
  margin-bottom: 8px;
}
.geo-shift-from-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 12.5px;
  color: #6b6b7b;
  margin-bottom: 8px;
}
.geo-shift-links { display: flex; flex-direction: column; gap: 5px; }
.geo-skel-dark {
  height: 7px;
  background: rgba(255,255,255,.08);
  border-radius: 4px;
  width: 90%;
}
.geo-skel-dark-sm { width: 72%; }
.geo-skel-dark-xs { width: 55%; }

.geo-shift-arrow-down {
  display: flex;
  align-items: center;
  justify-content: center;
}

.geo-shift-ai-box {
  background: rgba(99,102,241,.1);
  border: 1px solid rgba(99,102,241,.3);
  border-radius: 12px;
  padding: 16px;
}
.geo-ai-box-header {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 700;
  color: #c7d2fe;
}
.geo-ai-box-text {
  font-size: 12.5px;
  color: #a8a3c0;
  line-height: 1.5;
  margin: 0 0 12px;
}

.geo-ai-rec-rows { display: flex; flex-direction: column; gap: 8px; }
.geo-ai-rec-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: #d4d4e8;
}
.geo-check-ic { flex-shrink: 0; }

.geo-ai-box-footer {
  margin-top: 12px;
  font-size: 10.5px;
  color: #6b6b7b;
  font-style: italic;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,.07);
}

/* ============================================================
   SECTION 3 â€” WHAT IS GEO
   ============================================================ */

.geo-what {
  background: #fff;
  padding: 84px 0;
}

.geo-what-inner {
  text-align: center;
}

.geo-pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
  margin-top: 8px;
}

.geo-pillar-card {
  padding: 30px 26px;
  border-radius: 16px;
  background: var(--geo-gray-100);
  transition: transform .2s ease, box-shadow .2s ease;
}
.geo-pillar-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0,50,200,.08);
}

.geo-pillar-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.geo-icon-lav { background: #ede9fe; color: #7c3aed; }
.geo-icon-purple { background: #e0e7ff; color: var(--geo-purple); }
.geo-icon-blue { background: var(--geo-blue-50); color: var(--geo-blue); }

.geo-pillar-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--geo-ink);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.geo-pillar-desc {
  font-size: 14px;
  color: var(--geo-gray-500);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   SECTION 4 â€” HOW AI UNDERSTANDS
   ============================================================ */

.geo-understand {
  background: #f8f8fc;
  padding: 84px 0;
}

.geo-understand-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.geo-understand-text {
  font-size: 15px;
  color: var(--geo-gray-500);
  line-height: 1.65;
  margin: 0 0 28px;
}

.geo-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.geo-checklist-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--geo-ink);
}
.geo-check-badge {
  width: 22px; height: 22px;
  background: var(--geo-blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* Relationship diagram */
.geo-diagram-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.geo-diagram {
  position: relative;
  width: 380px;
  height: 380px;
}

.geo-diag-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Center node */
.geo-diag-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 110px; height: 110px;
  background: #fff;
  border: 2.5px solid var(--geo-purple);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13.5px;
  font-weight: 800;
  color: var(--geo-ink);
  text-align: center;
  box-shadow: 0 6px 24px rgba(99,102,241,.18);
  z-index: 2;
}

/* Surrounding nodes */
.geo-diag-node {
  position: absolute;
  background: #fff;
  border: 1px solid rgba(99,102,241,.25);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--geo-gray-700);
  box-shadow: 0 2px 10px rgba(99,102,241,.12);
  white-space: nowrap;
  z-index: 2;
}
/* Positioned to match SVG line endpoints */
.geo-node-top { top: 22px; left: 50%; transform: translateX(-50%); }
.geo-node-left { top: 140px; left: 6px; }
.geo-node-right { top: 140px; right: 6px; }
.geo-node-bot-left { bottom: 40px; left: 32px; }
.geo-node-bot-right { bottom: 40px; right: 32px; }

/* ============================================================
   SECTION 5 â€” GEO FRAMEWORK
   ============================================================ */

.geo-framework {
  background: #fff;
  padding: 84px 0;
}

.geo-framework-inner {
  text-align: center;
}

.geo-framework-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: left;
  margin-top: 8px;
}

.geo-fw-card {
  background: #fff;
  border: 1px solid var(--geo-gray-200);
  border-radius: 16px;
  padding: 26px 22px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.geo-fw-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0,50,200,.08);
  border-color: #c8d9f8;
}

.geo-fw-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.geo-fw-icon-blue { background: var(--geo-blue-50); color: var(--geo-blue); }
.geo-fw-icon-purple { background: #e0e7ff; color: var(--geo-purple); }
.geo-fw-icon-teal { background: #ccfbf1; color: #0d9488; }
.geo-fw-icon-orange { background: #fff7ed; color: #ea580c; }

.geo-fw-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--geo-ink);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.geo-fw-desc {
  font-size: 13.5px;
  color: var(--geo-gray-500);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   SECTION 6 â€” BEFORE VS AFTER
   ============================================================ */

.geo-bva {
  background: #fff;
  padding: 84px 0;
}

.geo-bva-inner {
  text-align: center;
}

.geo-bva-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  margin-top: 8px;
  text-align: left;
}

.geo-bva-panel {
  border-radius: 16px;
  padding: 28px 26px;
}
.geo-bva-before {
  background: #fff5f5;
  border: 1.5px solid #fecaca;
}
.geo-bva-after {
  background: #f0fdf4;
  border: 1.5px solid #bbf7d0;
}

.geo-bva-panel-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--geo-ink);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}

.geo-bva-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.geo-bva-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
}
.geo-bva-bad { color: #991b1b; }
.geo-bva-good { color: #166534; }

.geo-bva-x, .geo-bva-check {
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 700;
  margin-top: 1px;
}
.geo-bva-x { color: #dc2626; }
.geo-bva-check { color: #16a34a; }

.geo-bva-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   SECTION 7 â€” CASE STUDY
   ============================================================ */

.geo-case {
  background: #f8f8fc;
  padding: 84px 0;
}

.geo-case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}

.geo-case-text {
  font-size: 15px;
  color: var(--geo-gray-500);
  line-height: 1.65;
  margin: 0 0 28px;
}

.geo-case-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.geo-case-stat {
  background: #fff;
  border: 1px solid var(--geo-gray-200);
  border-radius: 12px;
  padding: 16px 14px;
  text-align: center;
}
.geo-case-stat-val {
  font-size: 22px;
  font-weight: 800;
  color: var(--geo-blue);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
}
.geo-case-stat-label {
  font-size: 11.5px;
  color: var(--geo-gray-500);
  line-height: 1.45;
}

/* Quote card */
.geo-case-quote-card {
  background: #fff;
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 20px 50px -12px rgba(0,50,200,.12), 0 4px 12px -4px rgba(0,50,200,.06);
  border: 1px solid var(--geo-gray-200);
}

.geo-quote-mark {
  font-size: 64px;
  font-family: Georgia, serif;
  line-height: .8;
  color: var(--geo-blue);
  opacity: .25;
  margin-bottom: 12px;
}

.geo-quote-text {
  font-size: 17px;
  font-weight: 600;
  color: var(--geo-ink);
  line-height: 1.6;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
}

.geo-quote-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.geo-quote-author img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.geo-quote-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--geo-ink);
}
.geo-quote-role {
  font-size: 12.5px;
  color: var(--geo-gray-500);
}

/* ============================================================
   SECTION 8 â€” FAQ
   ============================================================ */

.geo-faq {
  background: #fff;
  padding: 84px 0;
}

.geo-faq-inner {
  text-align: center;
}

.geo-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  text-align: left;
  margin-top: 16px;
}

.geo-faq-item {
  background: #fff;
  border: 1px solid var(--geo-gray-200);
  border-radius: 12px;
  padding: 18px 20px;
  box-shadow: 0 1px 2px rgba(0,30,80,.05);
}

.geo-faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--geo-ink);
  cursor: pointer;
  user-select: none;
}

.geo-faq-toggle {
  width: 22px; height: 22px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--geo-gray-500);
  transition: transform .25s ease;
}

.geo-faq-item.open .geo-faq-toggle {
  transform: rotate(45deg);
  color: var(--geo-blue);
}

.geo-faq-a {
  font-size: 14px;
  color: var(--geo-gray-500);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, margin .3s ease;
}
.geo-faq-item.open .geo-faq-a {
  margin-top: 12px;
  max-height: 300px;
}

/* ============================================================
   SECTION 9 â€” CTA BAR
   ============================================================ */

.geo-cta-bar {
  background: linear-gradient(135deg, #0a0a12 0%, #1a0a3e 100%);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.geo-cta-bar::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  background: radial-gradient(ellipse 60% 80% at 100% 50%, rgba(99,102,241,.25) 0%, transparent 60%);
  pointer-events: none;
}

.geo-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.geo-cta-copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.geo-cta-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, rgba(99,102,241,.3), rgba(0,87,255,.2));
  border: 1px solid rgba(99,102,241,.4);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
}

.geo-cta-h2 {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 0;
}

.geo-cta-sub {
  font-size: 15px;
  color: #a8a3c0;
  margin: 0;
  line-height: 1.6;
}

.geo-cta-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.geo-cta-trust {
  display: flex;
  align-items: center;
  gap: 12px;
}

.geo-avatars-dark img {
  border-color: rgba(255,255,255,.2) !important;
}

.geo-cta-trust-text {
  font-size: 13px;
  color: #a8a3c0;
  line-height: 1.45;
  margin: 0;
}

/* ============================================================
   RESPONSIVE â€” 1080px
   ============================================================ */

@media (max-width: 1080px) {
  .geo-container { padding: 0 28px; }

  .geo-h1 { font-size: 46px; }
  .geo-h2 { font-size: 30px; }

  .geo-framework-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .geo-compare-grid { gap: 10px; }
  .geo-stat-row { grid-template-columns: 1fr; gap: 10px; }
}

/* ============================================================
   RESPONSIVE â€” 860px
   ============================================================ */

@media (max-width: 860px) {
  .geo-hero { padding: 60px 0 52px; }

  /* Hero single column */
  .geo-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .geo-hero-widget { max-width: 600px; }

  /* Compare widget: stack */
  .geo-compare-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .geo-compare-arrow {
    transform: rotate(90deg);
    justify-self: center;
  }

  /* Dark section stacks */
  .geo-shift-grid { grid-template-columns: 1fr; gap: 44px; }
  .geo-stat-row { grid-template-columns: repeat(3, 1fr); gap: 12px; }

  /* What is GEO: stacks */
  .geo-pillar-grid { grid-template-columns: 1fr; gap: 16px; }

  /* How AI understands: stacks */
  .geo-understand-grid { grid-template-columns: 1fr; gap: 44px; }
  .geo-diagram { width: 320px; height: 320px; }
  .geo-diag-center { width: 90px; height: 90px; font-size: 12px; }

  /* Framework: 2 cols */
  .geo-framework-grid { grid-template-columns: repeat(2, 1fr); }

  /* Before vs After: stacks */
  .geo-bva-grid { grid-template-columns: 1fr; gap: 16px; }
  .geo-bva-arrow { transform: rotate(90deg); }

  /* Case study: stacks */
  .geo-case-grid { grid-template-columns: 1fr; gap: 40px; }

  /* CTA: stacks */
  .geo-cta-grid { grid-template-columns: 1fr; gap: 36px; }
  .geo-cta-right { align-items: stretch; }
  .geo-btn-light-solid { text-align: center; justify-content: center; }
}

/* ============================================================
   RESPONSIVE â€” 600px (mobile)
   ============================================================ */

@media (max-width: 600px) {
  .geo-container { padding: 0 18px; }

  .geo-hero { padding: 44px 0 40px; }
  .geo-h1 { font-size: 34px; line-height: 1.08; }
  .geo-h2 { font-size: 24px; }
  .geo-hero-sub { font-size: 15px; }

  .geo-hero-ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .geo-hero-ctas .geo-btn { justify-content: center; }

  .geo-trust-row { flex-direction: column; align-items: flex-start; gap: 10px; }

  .geo-compare-grid { gap: 10px; }

  .geo-shift { padding: 56px 0; }
  .geo-stat-row { grid-template-columns: 1fr; }

  .geo-what { padding: 56px 0; }
  .geo-pillar-grid { grid-template-columns: 1fr; }

  .geo-understand { padding: 56px 0; }
  .geo-diagram-wrap { display: none; }

  .geo-framework { padding: 56px 0; }
  .geo-framework-grid { grid-template-columns: 1fr; gap: 14px; }

  .geo-bva { padding: 56px 0; }

  .geo-case { padding: 56px 0; }
  .geo-case-stats { grid-template-columns: 1fr; gap: 10px; }

  .geo-faq { padding: 56px 0; }
  .geo-faq-grid { grid-template-columns: 1fr; }
  .geo-faq-q { font-size: 14px; }

  .geo-cta-bar { padding: 52px 0; }
  .geo-cta-h2 { font-size: 24px; }
  .geo-cta-grid { gap: 28px; }

  .geo-case-quote-card { padding: 22px; }
  .geo-quote-text { font-size: 15px; }
}


/* ============================================================
   GEO DEPTH SECTION
   ============================================================ */
.geo-depth{padding:0;}
.geo-depth .depth-right{padding:64px 60px;}
.geo-depth .depth-left{padding:72px 52px;}
@media(max-width:1100px){
  .geo-depth .depth-left{padding:60px 40px;}
  .geo-depth .depth-right{padding:56px 44px;}
}
@media(max-width:860px){
  .geo-depth .depth-left{padding:52px 32px;}
  .geo-depth .depth-right{padding:48px 32px;}
}
@media(max-width:600px){
  .geo-depth .depth-left{padding:44px 22px;}
  .geo-depth .depth-right{padding:40px 22px;}
}

/* GEO vs SEO comparison table */
.geo-table-wrap{overflow-x:auto;margin:24px 0 20px;}
.geo-seo-table{width:100%;border-collapse:collapse;font-size:14px;}
.geo-seo-table th{background:#0057ff;color:#fff;padding:12px 16px;text-align:left;font-weight:700;}
.geo-seo-table th:last-child{background:#0047d9;}
.geo-seo-table td{padding:10px 16px;border-bottom:1px solid #e5e7eb;color:#374151;}
.geo-seo-table tr:nth-child(even) td{background:#f9fafb;}
.geo-table-note{font-size:14.5px;color:#6B6B7B;line-height:1.7;margin:0 0 40px;font-style:italic;}

