/* ============================================================
   EASTLINK MEDIA — SEO & GEO AUTHORITY SYSTEM PAGE
   css/geo.css
   ============================================================ */

/* ============================================================
   GEO HERO
   ============================================================ */
.geo-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 10rem 0 6rem;
  overflow: hidden;
}

.geo-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.geo-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.35;
}
.geo-hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10,10,10,0.6) 0%,
    rgba(10,10,10,0.3) 40%,
    rgba(10,10,10,0.85) 100%
  );
}

/* Animated orbs */
.geo-hero__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  animation: geo-orb-float 8s ease-in-out infinite alternate;
}
.geo-hero__orb--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(124,95,245,0.25), transparent 70%);
  top: -10%; right: -5%;
  animation-duration: 9s;
}
.geo-hero__orb--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(168,131,255,0.18), transparent 70%);
  bottom: 5%; left: -5%;
  animation-duration: 12s;
  animation-delay: -4s;
}
@keyframes geo-orb-float {
  from { transform: translateY(0) scale(1); }
  to   { transform: translateY(-40px) scale(1.08); }
}

.geo-hero__content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.geo-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 2rem;
  background: rgba(124,95,245,0.1);
  border: 1px solid rgba(124,95,245,0.25);
  border-radius: 2rem;
  padding: 0.45em 1.1em;
}
.geo-hero__eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-accent);
  animation: geo-dot-pulse 2s ease-in-out infinite;
}
@keyframes geo-dot-pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.6); }
}

.geo-hero__heading {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7vw, 6rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--c-white);
  margin-bottom: 1.75rem;
}
.geo-hero__heading em {
  font-style: normal;
  background: linear-gradient(135deg, var(--c-accent), var(--c-accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.geo-hero__sub {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--c-muted);
  line-height: 1.75;
  max-width: 620px;
  margin-bottom: 2.5rem;
}
.geo-hero__sub strong { color: var(--c-white); }

.geo-hero__actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

/* AI Platform badges */
.geo-hero__platforms {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.geo-platform-label {
  font-size: 0.75rem;
  color: var(--c-muted);
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.geo-platforms {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.geo-platform {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--c-white);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 2rem;
  padding: 0.35em 0.85em;
  display: flex;
  align-items: center;
  gap: 0.4em;
  transition: border-color 0.25s, background 0.25s;
}
.geo-platform:hover {
  border-color: var(--c-accent);
  background: rgba(124,95,245,0.1);
}
.geo-platform i { color: var(--c-accent); font-size: 0.65rem; }

/* Scroll indicator */
.geo-hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.geo-hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--c-accent), transparent);
  margin: 0 auto;
  animation: geo-scroll-line 2s ease-in-out infinite;
}
@keyframes geo-scroll-line {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50%  { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

/* ============================================================
   PROBLEM STATEMENT
   ============================================================ */
.geo-problem__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.geo-problem__body {
  font-size: 1.05rem;
  color: var(--c-muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.geo-problem__body strong { color: var(--c-white); }

/* Stat cards */
.geo-stat-stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.geo-stat-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem 1.75rem;
  border-radius: 12px;
  border: 1px solid var(--c-border);
  background: rgba(255,255,255,0.02);
  transition: border-color 0.3s, transform 0.3s;
}
.geo-stat-card:hover { transform: translateX(6px); }
.geo-stat-card--warn { border-left: 3px solid rgba(239,68,68,0.6); }
.geo-stat-card--good { border-left: 3px solid rgba(34,197,94,0.6); }
.geo-stat-card__icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.geo-stat-card--warn .geo-stat-card__icon { color: #f87171; }
.geo-stat-card--good .geo-stat-card__icon { color: #4ade80; }
.geo-stat-card__num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--c-white);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.geo-stat-card__label {
  font-size: 0.9rem;
  color: var(--c-muted);
  line-height: 1.55;
}

/* ============================================================
   GEO EXPLAINER
   ============================================================ */
.geo-explainer__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 4rem;
}
.geo-explainer__img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(124,95,245,0.2);
  display: block;
}
.geo-explainer__img-caption {
  font-size: 0.75rem;
  color: var(--c-muted);
  text-align: center;
  margin-top: 0.75rem;
  letter-spacing: 0.04em;
}

.geo-pillar {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--c-border);
}
.geo-pillar:last-child { border-bottom: none; }
.geo-pillar__num {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--c-accent);
  opacity: 0.7;
  flex-shrink: 0;
  padding-top: 0.15rem;
  min-width: 2rem;
}
.geo-pillar__body h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 0.6rem;
}
.geo-pillar__body p {
  font-size: 0.95rem;
  color: var(--c-muted);
  line-height: 1.75;
}

/* ============================================================
   SERVICE PHASES
   ============================================================ */
.section-sub {
  font-size: 1.05rem;
  color: var(--c-muted);
  max-width: 560px;
  line-height: 1.75;
  margin: 0 auto;
}
.section-header .section-sub { text-align: center; margin-top: 1rem; }

.geo-phase {
  margin-top: 4rem;
  border: 1px solid var(--c-border);
  border-radius: 20px;
  overflow: hidden;
  background: var(--c-surface);
}
.geo-phase--build { margin-top: 2.5rem; }

.geo-phase__header {
  padding: 2.5rem 3rem;
  border-bottom: 1px solid var(--c-border);
  background: rgba(124,95,245,0.04);
}
.geo-phase__badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 2rem;
  padding: 0.3em 0.9em;
  margin-bottom: 1rem;
}
.geo-phase__badge--1 {
  background: rgba(239,68,68,0.12);
  color: #f87171;
  border: 1px solid rgba(239,68,68,0.25);
}
.geo-phase__badge--2 {
  background: rgba(34,197,94,0.12);
  color: #4ade80;
  border: 1px solid rgba(34,197,94,0.25);
}
.geo-phase__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--c-white);
  margin-bottom: 0.75rem;
}
.geo-phase__sub {
  font-size: 1rem;
  color: var(--c-muted);
  line-height: 1.75;
  max-width: 680px;
}

.geo-phase__body {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 0;
}
.geo-phase__body--reverse {
  grid-template-columns: 1.3fr 1fr;
}
.geo-phase__body--reverse .geo-phase__visual { order: 2; }
.geo-phase__body--reverse .geo-phase__deliverables { order: 1; }

.geo-phase__visual {
  position: relative;
  padding: 2.5rem;
  border-right: 1px solid var(--c-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  background: rgba(255,255,255,0.01);
}
.geo-phase__body--reverse .geo-phase__visual {
  border-right: none;
  border-left: 1px solid var(--c-border);
}
.geo-phase__img {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(124,95,245,0.15);
  display: block;
}

/* Score overlay */
.geo-phase__score-overlay {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  width: 100%;
  justify-content: center;
}
.geo-score-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}
.geo-score-pill__num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}
.geo-score-pill__label {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-muted);
}
.geo-score-pill--before .geo-score-pill__num { color: #f87171; }
.geo-score-pill--after  .geo-score-pill__num { color: #4ade80; }
.geo-score-arrow { font-size: 1.25rem; color: var(--c-muted); }
.geo-score-context {
  font-size: 0.7rem;
  color: var(--c-muted);
  text-align: center;
  margin-top: 0.5rem;
  width: 100%;
}

/* Build badges */
.geo-build-badges {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}
.geo-build-badge {
  display: flex;
  align-items: center;
  gap: 0.6em;
  font-size: 0.85rem;
  color: var(--c-muted);
  padding: 0.5rem 0.75rem;
  background: rgba(34,197,94,0.06);
  border: 1px solid rgba(34,197,94,0.15);
  border-radius: 6px;
}
.geo-build-badge i { color: #4ade80; font-size: 0.75rem; }

/* Deliverables */
.geo-phase__deliverables {
  padding: 2.5rem 3rem;
}
.geo-phase__deliverables-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 1.5rem;
}

.geo-audit-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.geo-audit-list li {
  display: flex;
  gap: 1.25rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--c-border);
  align-items: flex-start;
}
.geo-audit-list li:last-child { border-bottom: none; }
.geo-audit-list__icon {
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  background: rgba(124,95,245,0.12);
  border: 1px solid rgba(124,95,245,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-accent);
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.geo-audit-list__body {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.geo-audit-list__body strong {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--c-white);
  display: block;
}
.geo-audit-list__body span {
  font-size: 0.875rem;
  color: var(--c-muted);
  line-height: 1.65;
}

.geo-phase__cta {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.geo-phase__cta-note {
  font-size: 0.8rem;
  color: var(--c-muted);
  line-height: 1.5;
}

/* ============================================================
   CASE STUDY
   ============================================================ */
.geo-case__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--c-border);
  border-radius: 20px;
  overflow: hidden;
  background: var(--c-surface);
  margin-top: 3rem;
}
.geo-case__left {
  padding: 3rem 3.5rem;
  border-right: 1px solid var(--c-border);
}
.geo-case__client-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 0.75rem;
}
.geo-case__client {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--c-white);
  margin-bottom: 0.5rem;
}
.geo-case__sector {
  font-size: 0.85rem;
  color: var(--c-muted);
  display: flex;
  align-items: center;
  gap: 0.5em;
  margin-bottom: 2rem;
}
.geo-case__challenge h4,
.geo-case__approach h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 0.75rem;
}
.geo-case__challenge p {
  font-size: 0.95rem;
  color: var(--c-muted);
  line-height: 1.75;
  margin-bottom: 2rem;
}
.geo-case__approach {
  margin-top: 1.5rem;
}
.geo-case__approach ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.geo-case__approach ul li {
  font-size: 0.9rem;
  color: var(--c-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.6em;
  line-height: 1.55;
}
.geo-case__approach ul li::before {
  content: '↗';
  color: var(--c-accent);
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.geo-case__right {
  display: flex;
  flex-direction: column;
}
.geo-case__img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid var(--c-border);
}
.geo-case__results {
  padding: 2rem 2.5rem;
  flex: 1;
}
.geo-case__result-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 1.5rem;
}
.geo-case__metrics {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.geo-metric {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--c-border);
  border-radius: 8px;
}
.geo-metric__before,
.geo-metric__after {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}
.geo-metric__arrow { color: var(--c-muted); font-size: 0.9rem; }
.geo-metric__label {
  font-size: 0.72rem;
  color: var(--c-muted);
  letter-spacing: 0.04em;
  text-align: center;
}
.geo-metric--single { flex-direction: column; align-items: flex-start; gap: 0.25rem; }
.geo-metric__value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--c-white);
}
.geo-metric--single .geo-metric__label { text-align: left; }

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.geo-compare__table {
  margin-top: 3rem;
  border: 1px solid var(--c-border);
  border-radius: 16px;
  overflow: hidden;
}
.geo-compare__header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: var(--c-surface);
  border-bottom: 1px solid var(--c-border);
}
.geo-compare__col {
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
}
.geo-compare__col--ours {
  background: rgba(124,95,245,0.07);
  border-left: 1px solid rgba(124,95,245,0.2);
}
.geo-compare__col-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--c-white);
}
.geo-compare__col-badge {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(124,95,245,0.2);
  color: var(--c-accent);
  border: 1px solid rgba(124,95,245,0.3);
  border-radius: 2rem;
  padding: 0.2em 0.7em;
}

.geo-compare__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid var(--c-border);
  transition: background 0.2s;
}
.geo-compare__row:last-child { border-bottom: none; }
.geo-compare__row:hover { background: rgba(255,255,255,0.02); }

.geo-compare__feature,
.geo-compare__theirs,
.geo-compare__ours {
  padding: 1rem 1.5rem;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.6em;
}
.geo-compare__feature {
  color: var(--c-text);
  font-weight: 500;
  border-right: 1px solid var(--c-border);
}
.geo-compare__theirs {
  color: var(--c-muted);
  border-right: 1px solid var(--c-border);
}
.geo-compare__ours {
  background: rgba(124,95,245,0.04);
  color: var(--c-white);
  font-weight: 500;
}
.geo-check { color: #9ca3af; }
.geo-check--ours { color: #4ade80; }
.geo-cross { color: #f87171; }

/* ============================================================
   WHO IS THIS FOR
   ============================================================ */
.geo-who__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
.geo-who__card {
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid var(--c-border);
}
.geo-who__card--yes { border-color: rgba(34,197,94,0.25); background: rgba(34,197,94,0.04); }
.geo-who__card--no  { border-color: rgba(239,68,68,0.2); background: rgba(239,68,68,0.03); }

.geo-who__card-icon {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}
.geo-who__card--yes .geo-who__card-icon { color: #4ade80; }
.geo-who__card--no  .geo-who__card-icon { color: #f87171; }

.geo-who__card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 1.25rem;
}
.geo-who__card ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.geo-who__card ul li {
  font-size: 0.92rem;
  color: var(--c-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.6em;
  line-height: 1.55;
}
.geo-who__card--yes ul li::before {
  content: '✓';
  color: #4ade80;
  font-weight: 700;
  flex-shrink: 0;
}
.geo-who__card--no ul li::before {
  content: '✕';
  color: #f87171;
  font-weight: 700;
  flex-shrink: 0;
}
.geo-who__card-note {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  color: var(--c-muted);
  line-height: 1.65;
  border-top: 1px solid rgba(239,68,68,0.15);
  padding-top: 1.25rem;
}

/* ============================================================
   TIMELINE
   ============================================================ */
.geo-timeline__track {
  position: relative;
  margin-top: 3.5rem;
  padding-left: 2rem;
}
.geo-timeline__track::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--c-accent), transparent);
}
.geo-timeline__step {
  display: flex;
  gap: 2rem;
  padding: 0 0 2.5rem 2.5rem;
  position: relative;
}
.geo-timeline__step::before {
  content: '';
  position: absolute;
  left: -0.45rem;
  top: 0.5rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--c-accent);
  box-shadow: 0 0 0 3px rgba(124,95,245,0.2);
}
.geo-timeline__step-num {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--c-accent);
  opacity: 0.7;
  flex-shrink: 0;
  width: 2rem;
  padding-top: 0.2rem;
}
.geo-timeline__step-content { flex: 1; }
.geo-timeline__step-week {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 0.4rem;
}
.geo-timeline__step-content h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 0.5rem;
}
.geo-timeline__step-content p {
  font-size: 0.9rem;
  color: var(--c-muted);
  line-height: 1.7;
  max-width: 560px;
}

/* ============================================================
   FAQ
   ============================================================ */
.geo-faq__list {
  margin-top: 3rem;
  border: 1px solid var(--c-border);
  border-radius: 16px;
  overflow: hidden;
}
.geo-faq__item {
  border-bottom: 1px solid var(--c-border);
}
.geo-faq__item:last-child { border-bottom: none; }

.geo-faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--c-white);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.25s, color 0.25s;
}
.geo-faq__q:hover { background: rgba(124,95,245,0.06); }
.geo-faq__q[aria-expanded="true"] { color: var(--c-accent); background: rgba(124,95,245,0.06); }
.geo-faq__icon {
  font-size: 0.75rem;
  color: var(--c-accent);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.geo-faq__q[aria-expanded="true"] .geo-faq__icon { transform: rotate(45deg); }

.geo-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.3s;
}
.geo-faq__a.is-open {
  max-height: 400px;
  padding: 0 2rem 1.5rem;
}
.geo-faq__a p {
  font-size: 0.95rem;
  color: var(--c-muted);
  line-height: 1.8;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.geo-cta { overflow: hidden; }
.geo-cta__inner {
  position: relative;
  text-align: center;
  padding: 5rem 2rem;
  border: 1px solid rgba(124,95,245,0.2);
  border-radius: 24px;
  background: rgba(124,95,245,0.04);
  overflow: hidden;
}
.geo-cta__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}
.geo-cta__orb--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(124,95,245,0.2), transparent 70%);
  top: -30%; right: -10%;
}
.geo-cta__orb--2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(168,131,255,0.15), transparent 70%);
  bottom: -20%; left: -5%;
}
.geo-cta__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}
.geo-cta__heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--c-white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}
.geo-cta__heading em {
  font-style: normal;
  background: linear-gradient(135deg, var(--c-accent), var(--c-accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.geo-cta__sub {
  font-size: 1.05rem;
  color: var(--c-muted);
  line-height: 1.75;
  max-width: 520px;
  margin: 0 auto 2.5rem;
  position: relative;
  z-index: 1;
}
.geo-cta__actions {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}
.geo-cta__trust {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.geo-cta__trust-item {
  font-size: 0.8rem;
  color: var(--c-muted);
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.geo-cta__trust-item i { color: var(--c-accent); }

/* ============================================================
   LIGHT THEME OVERRIDES
   ============================================================ */
body.theme-light .geo-hero__bg-img { opacity: 0.15; }
body.theme-light .geo-hero__bg-overlay {
  background: linear-gradient(180deg, rgba(245,245,247,0.7) 0%, rgba(245,245,247,0.4) 40%, rgba(245,245,247,0.92) 100%);
}
body.theme-light .geo-hero__heading { color: var(--c-heading); }
body.theme-light .geo-hero__sub { color: var(--c-muted); }
body.theme-light .geo-hero__sub strong { color: var(--c-heading); }
body.theme-light .geo-platform { background: rgba(0,0,0,0.04); border-color: rgba(0,0,0,0.1); color: var(--c-text); }

body.theme-light .geo-stat-card { background: var(--c-surface); }
body.theme-light .geo-stat-card__num { color: var(--c-heading); }
body.theme-light .geo-phase { background: var(--c-surface); }
body.theme-light .geo-phase__header { background: rgba(124,95,245,0.04); }
body.theme-light .geo-phase__title { color: var(--c-heading); }
body.theme-light .geo-audit-list__body strong { color: var(--c-heading); }
body.theme-light .geo-case__card { background: var(--c-surface); }
body.theme-light .geo-case__client { color: var(--c-heading); }
body.theme-light .geo-metric { background: rgba(0,0,0,0.02); }
body.theme-light .geo-metric__value { color: var(--c-heading); }
body.theme-light .geo-compare__table { background: var(--c-surface); }
body.theme-light .geo-compare__header { background: rgba(124,95,245,0.05); }
body.theme-light .geo-compare__col-label { color: var(--c-heading); }
body.theme-light .geo-compare__feature { color: var(--c-text); }
body.theme-light .geo-compare__ours { background: rgba(124,95,245,0.05); color: var(--c-heading); }
body.theme-light .geo-who__card h3 { color: var(--c-heading); }
body.theme-light .geo-timeline__step-content h3 { color: var(--c-heading); }
body.theme-light .geo-faq__q { color: var(--c-heading); }
body.theme-light .geo-faq__list { background: var(--c-surface); }
body.theme-light .geo-cta__inner { background: rgba(124,95,245,0.04); border-color: rgba(124,95,245,0.15); }
body.theme-light .geo-cta__heading { color: var(--c-heading); }
body.theme-light .geo-pillar__body h3 { color: var(--c-heading); }
body.theme-light .geo-problem__body strong { color: var(--c-heading); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .geo-problem__grid     { grid-template-columns: 1fr; gap: 3rem; }
  .geo-explainer__layout { grid-template-columns: 1fr; }
  .geo-phase__body,
  .geo-phase__body--reverse { grid-template-columns: 1fr; }
  .geo-phase__body--reverse .geo-phase__visual { order: 0; }
  .geo-phase__body--reverse .geo-phase__deliverables { order: 0; }
  .geo-phase__visual {
    border-right: none;
    border-left: none !important;
    border-bottom: 1px solid var(--c-border);
  }
  .geo-case__card        { grid-template-columns: 1fr; }
  .geo-case__left        { border-right: none; border-bottom: 1px solid var(--c-border); }
  .geo-compare__table    { overflow-x: auto; }
  .geo-who__grid         { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .geo-hero { padding: 8rem 0 5rem; }
  .geo-hero__heading { font-size: clamp(2.6rem, 10vw, 4rem); }
  .geo-hero__actions { flex-direction: column; align-items: flex-start; }
  .geo-hero__platforms { flex-direction: column; align-items: flex-start; }

  .geo-phase__header { padding: 2rem; }
  .geo-phase__deliverables { padding: 2rem; }

  .geo-compare__header,
  .geo-compare__row {
    grid-template-columns: 1.2fr 1fr 1fr;
    font-size: 0.8rem;
  }
  .geo-compare__feature,
  .geo-compare__theirs,
  .geo-compare__ours { padding: 0.75rem 1rem; }

  .geo-timeline__track { padding-left: 1.25rem; }
  .geo-timeline__step  { padding-left: 1.5rem; gap: 1rem; }

  .geo-faq__q { padding: 1.25rem 1.5rem; font-size: 0.95rem; }
  .geo-faq__a.is-open { padding: 0 1.5rem 1.25rem; }

  .geo-cta__inner { padding: 3.5rem 1.5rem; }
  .geo-cta__actions { flex-direction: column; align-items: center; }
  .geo-cta__trust { gap: 1rem; }

  .geo-case__left { padding: 2rem; }
  .geo-case__results { padding: 1.5rem 2rem; }
}
