/* ════════════════════════════════════════════════════════
   geo.css — GEO service page
   Loaded only on /geo/
════════════════════════════════════════════════════════ */

/* ── Label ── */
.geo-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f59e0b;
  margin-bottom: 14px;
}
.geo-label-dark { color: #f59e0b; }

/* ── Hero ── */
.geo-hero {
  background: #0a1628;
  padding: 100px 24px 80px;
  text-align: center;
}
.geo-hero-inner {
  max-width: 740px;
  margin: 0 auto;
}
.geo-title {
  font-family: Inter, sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin: 0 0 20px;
}
.geo-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.70);
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.geo-hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Buttons ── */
.geo-btn {
  display: inline-block;
  background: #f59e0b;
  color: #0a1628;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 32px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 20px rgba(245,158,11,0.3);
}
.geo-btn:hover {
  background: #fbbf24;
  box-shadow: 0 6px 28px rgba(245,158,11,0.45);
}
.geo-btn-outline {
  display: inline-block;
  background: transparent;
  color: rgba(255,255,255,0.75);
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 28px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 0;
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s;
}
.geo-btn-outline:hover {
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}
.geo-btn-lg {
  font-size: 17px;
  padding: 18px 36px;
}

/* ── Sections ── */
.geo-section { padding: 80px 24px; }
.geo-section-white { background: #ffffff; }
.geo-section-navy  { background: #0a1628; }
.geo-section-grey  { background: #f8fafc; border-top: 1px solid #e2e8f0; }
.geo-inner { max-width: 1100px; margin: 0 auto; }
.geo-narrow { max-width: 760px; }
.geo-section-title {
  font-family: Inter, sans-serif;
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin: 8px 0 16px;
}
.geo-dark { color: #0a1628 !important; }
.geo-section-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  margin-bottom: 0;
}
.geo-section-sub.geo-dark { color: #475569 !important; }

/* ── Compare grid ── */
.geo-compare {
  display: flex;
  gap: 24px;
  margin-top: 48px;
  align-items: stretch;
  flex-wrap: wrap;
}
.geo-compare-col {
  flex: 1;
  min-width: 260px;
  padding: 28px;
  border: 1px solid #e2e8f0;
}
.geo-compare-old {
  background: #f8fafc;
  border-top: 3px solid #94a3b8;
}
.geo-compare-new {
  background: #fff8e6;
  border-top: 3px solid #f59e0b;
}
.geo-compare-arrow {
  font-size: 32px;
  color: #f59e0b;
  display: flex;
  align-items: center;
  font-weight: 300;
  opacity: 0.5;
  flex-shrink: 0;
}
.geo-compare-label {
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 12px;
}
.geo-compare-label-new { color: #f59e0b; }
.geo-compare-col p {
  font-size: 15px;
  color: #0a1628;
  font-weight: 600;
  margin: 0 0 16px;
  line-height: 1.5;
}
.geo-compare-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.geo-compare-col ul li {
  font-size: 14px;
  color: #475569;
  padding: 5px 0;
  padding-left: 20px;
  position: relative;
}
.geo-compare-col ul li::before {
  content: '·';
  position: absolute;
  left: 6px;
  color: #f59e0b;
}

/* ── Signals grid ── */
.geo-signals {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 52px;
}
.geo-signal {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 3px solid #f59e0b;
  padding: 28px 24px;
}
.geo-signal-num {
  font-size: 38px;
  font-weight: 900;
  color: #f59e0b;
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 12px;
}
.geo-signal h3 {
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 10px;
}
.geo-signal p {
  font-size: 14px;
  color: rgba(255,255,255,0.60);
  line-height: 1.65;
  margin: 0;
}

/* ── Proof box ── */
.geo-proof-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-left: 4px solid #f59e0b;
  padding: 28px 28px 20px;
  margin-top: 36px;
}
.geo-proof-prompt {
  font-size: 16px;
  color: #0a1628;
  line-height: 1.6;
}
.geo-proof-prompt strong { color: #f59e0b; }
.geo-proof-note {
  margin: 20px 0 0;
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.6;
  border-top: 1px solid #e2e8f0;
  padding-top: 16px;
}
.geo-proof-checklist {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.geo-proof-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.geo-proof-status {
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: #0a1628;
  color: #f59e0b;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.geo-proof-status-wip {
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  color: #64748b;
}
.geo-proof-item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}
.geo-proof-item p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

/* ── Tier cards ── */
.geo-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 52px;
  align-items: start;
}
.geo-tier {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-top: 3px solid #e2e8f0;
  padding: 32px 28px;
  position: relative;
}
.geo-tier-featured {
  border-top-color: #f59e0b;
  box-shadow: 0 4px 32px rgba(245,158,11,0.12);
}
.geo-tier-badge {
  display: inline-block;
  background: #f59e0b;
  color: #0a1628;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  margin-bottom: 16px;
}
.geo-tier-name {
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0a1628;
  margin-bottom: 8px;
}
.geo-tier-price {
  font-size: 36px;
  font-weight: 900;
  color: #f59e0b;
  letter-spacing: -1px;
  margin-bottom: 16px;
  line-height: 1;
}
.geo-tier-price span {
  font-size: 14px;
  font-weight: 400;
  color: #94a3b8;
  letter-spacing: 0;
  margin-left: 4px;
}
.geo-tier > p {
  font-size: 14px;
  color: #475569;
  line-height: 1.65;
  margin: 0 0 20px;
}
.geo-tier-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.geo-tier-includes li {
  font-size: 14px;
  color: #0a1628;
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  border-bottom: 1px solid #f1f5f9;
}
.geo-tier-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #f59e0b;
  font-weight: 700;
}
.geo-tier-btn {
  display: block;
  background: #f59e0b;
  color: #0a1628;
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 24px;
  text-decoration: none;
  text-align: center;
  transition: background 0.15s;
}
.geo-tier-btn:hover { background: #fbbf24; }

/* ── Process steps ── */
.geo-process {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 52px;
  flex-wrap: wrap;
  justify-content: center;
}
.geo-process-step {
  flex: 1;
  min-width: 180px;
  max-width: 220px;
  text-align: center;
}
.geo-process-num {
  font-size: 44px;
  font-weight: 900;
  color: #f59e0b;
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 12px;
}
.geo-process-step h3 {
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px;
}
.geo-process-step p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin: 0;
}
.geo-process-arrow {
  font-size: 28px;
  color: #f59e0b;
  opacity: 0.4;
  margin-top: 38px;
  flex-shrink: 0;
}

/* ── FAQ ── */
.geo-faq { margin-top: 44px; }
.geo-faq-item { border-bottom: 1px solid #e2e8f0; }
.geo-faq-item:first-child { border-top: 1px solid #e2e8f0; }
.geo-faq-item summary {
  padding: 20px 4px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #0a1628;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.geo-faq-item summary::-webkit-details-marker { display: none; }
.geo-faq-item summary::after {
  content: '+';
  font-size: 22px;
  color: #f59e0b;
  font-weight: 300;
  flex-shrink: 0;
  margin-left: 12px;
}
.geo-faq-item[open] summary::after { content: '−'; }
.geo-faq-item p {
  padding: 0 4px 20px;
  font-size: 15px;
  color: #475569;
  line-height: 1.65;
  margin: 0;
}

/* ── Final CTA ── */
.geo-final-cta {
  background: #f8fafc;
  padding: 80px 24px;
  border-top: 1px solid #e2e8f0;
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .geo-hero { padding: 80px 20px 60px; }
  .geo-compare-arrow { display: none; }
  .geo-process-arrow { display: none; }
  .geo-process { gap: 32px; }
  .geo-tiers { gap: 28px; }
}
