/* =============================================================
   genealogy.css — Genealogy Tree MLM Software Page
   Global MLM Software Solutions | https://global-mlm.com
   All class names match genealogy-tree-mlm-software.html
   ============================================================= */

/* ── CSS CUSTOM PROPERTIES ── */
:root {
  --geo-primary:     #0d9488;
  --geo-primary-d:   #0f766e;
  --geo-primary-l:   #14b8a6;
  --geo-primary-xl:  #5eead4;
  --geo-accent:      #8b5cf6;
  --geo-accent-d:    #7c3aed;
  --geo-accent-l:    #a78bfa;
  --geo-gold:        #f59e0b;
  --geo-dark:        #0f172a;
  --geo-dark-2:      #1e293b;
  --geo-dark-3:      #334155;
  --geo-mid:         #475569;
  --geo-muted:       #94a3b8;
  --geo-light:       #f1f5f9;
  --geo-lighter:     #f8fafc;
  --geo-white:       #ffffff;
  --geo-border:      #e2e8f0;
  --geo-border-d:    #cbd5e1;
  --geo-node-root:   #0d9488;
  --geo-node-l1:     #8b5cf6;
  --geo-node-l2:     #f59e0b;
  --geo-node-l3:     #06b6d4;
  --geo-node-l4:     #ec4899;
  --geo-r-sm:        0.375rem;
  --geo-r:           0.75rem;
  --geo-r-lg:        1.25rem;
  --geo-r-xl:        2rem;
  --geo-sh-sm:       0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --geo-sh:          0 4px 16px rgba(0,0,0,.10);
  --geo-sh-lg:       0 12px 40px rgba(0,0,0,.14);
  --geo-sh-xl:       0 24px 64px rgba(0,0,0,.18);
  --geo-glow:        0 0 28px rgba(13,148,136,.28);
  --geo-glow-p:      0 0 28px rgba(139,92,246,.25);
  --geo-t:           0.28s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--geo-white);
  color: var(--geo-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }

/* ── CONTAINER ── */
.geo-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── SECTION BASE ── */
.geo-section         { padding: 5.5rem 0; }
.geo-section-light   { background: var(--geo-lighter); }
.geo-section-dark    { background: var(--geo-dark); color: #fff; }
.geo-section-mid     { background: var(--geo-dark-2); color: #fff; }
.geo-section-gradient {
  background: linear-gradient(135deg, #0f172a 0%, #1a103a 60%, #0f172a 100%);
  color: #fff;
}
.geo-section-cta {
  background: linear-gradient(135deg, var(--geo-primary-d) 0%, #0e7490 50%, var(--geo-primary) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.geo-section-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(255,255,255,.06) 0%, transparent 70%);
  pointer-events: none;
}

/* ── SECTION HEADER ── */
.geo-section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.geo-section-header-light { color: #fff; }
.geo-section-header h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.7rem);
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 0.9rem;
}
.geo-section-header-light h2 { color: #fff; }
.geo-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--geo-primary);
  background: rgba(13,148,136,.1);
  border: 1px solid rgba(13,148,136,.25);
  border-radius: 99px;
  padding: 0.32rem 0.9rem;
  margin-bottom: 0.9rem;
}
.geo-tag-light {
  color: var(--geo-primary-xl);
  background: rgba(13,148,136,.18);
  border-color: rgba(13,148,136,.35);
}
.geo-section-sub {
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  color: var(--geo-mid);
  line-height: 1.75;
  max-width: 640px;
  margin: 0 auto;
}
.geo-sub-light { color: rgba(255,255,255,.65); }

/* ── BUTTONS ── */
.geo-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--geo-r);
  font-size: 0.9rem;
  font-weight: 700;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--geo-t);
  white-space: nowrap;
  font-family: inherit;
  text-decoration: none;
}
.geo-btn-primary {
  background: linear-gradient(135deg, var(--geo-primary), var(--geo-primary-d));
  color: #fff;
  box-shadow: 0 4px 16px rgba(13,148,136,.35);
}
.geo-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(13,148,136,.5); color: #fff; }
.geo-btn-outline {
  background: transparent;
  color: var(--geo-primary);
  border-color: var(--geo-primary);
}
.geo-btn-outline:hover { background: var(--geo-primary); color: #fff; transform: translateY(-2px); }
.geo-btn-lg   { padding: 1.1rem 2.5rem; font-size: 1rem; }
.geo-btn-sm   { padding: 0.55rem 1.25rem; font-size: 0.82rem; }
.geo-btn-full { width: 100%; justify-content: center; }

.geo-inline-link       { color: var(--geo-primary); text-decoration: underline; text-underline-offset: 3px; }
.geo-inline-link:hover { color: var(--geo-primary-d); }
.geo-inline-link-light       { color: var(--geo-primary-xl); text-decoration: underline; text-underline-offset: 3px; }
.geo-inline-link-light:hover { color: #fff; }

/* ══════════════════════════════════════════════════════
   BREADCRUMB
══════════════════════════════════════════════════════ */
.geo-breadcrumb {
  background: var(--geo-lighter);
  border-bottom: 1px solid var(--geo-border);
  padding: 0.75rem 0;
}
.geo-breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  list-style: none;
  flex-wrap: wrap;
  font-size: 0.8rem;
}
.geo-breadcrumb-list li               { display: flex; align-items: center; gap: 0.4rem; color: var(--geo-muted); }
.geo-breadcrumb-list li a             { color: var(--geo-primary); }
.geo-breadcrumb-list li a:hover       { color: var(--geo-primary-d); }
.geo-breadcrumb-list .fa-chevron-right { font-size: 0.55rem; color: var(--geo-border-d); }
.geo-breadcrumb-list [aria-current="page"] { color: var(--geo-dark); font-weight: 600; }

/* ══════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════ */
.geo-hero {
  position: relative;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 45%, #1a103a 100%);
  overflow: hidden;
  padding: 6rem 0 5rem;
  min-height: 92vh;
  display: flex;
  align-items: center;
}
.geo-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 68% 40%, rgba(139,92,246,.2) 0%, transparent 65%),
    radial-gradient(ellipse 45% 40% at 20% 75%, rgba(13,148,136,.14) 0%, transparent 60%);
  pointer-events: none;
}
.geo-hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(139,92,246,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139,92,246,.05) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.geo-hero-particles { position: absolute; inset: 0; pointer-events: none; }

.geo-hero-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.geo-hero-text { color: #fff; }

.geo-hero-badge {
  display: inline-flex;
  align-items: center; gap: 0.5rem;
  background: rgba(139,92,246,.15);
  border: 1px solid rgba(139,92,246,.35);
  border-radius: 99px;
  padding: 0.4rem 1rem;
  font-size: 0.72rem; font-weight: 700;
  color: var(--geo-accent-l);
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.geo-hero-text h1 {
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  font-weight: 900;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}
.geo-hero-highlight {
  background: linear-gradient(135deg, var(--geo-primary-l), var(--geo-accent-l));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
.geo-hero-sub {
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  color: rgba(255,255,255,.72);
  line-height: 1.78;
  margin-bottom: 1.5rem;
  max-width: 520px;
}
.geo-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin-bottom: 2rem;
}
.geo-hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,.75);
  font-weight: 600;
}
.geo-hero-trust-item .fa-check-circle { color: var(--geo-primary-l); font-size: 0.85rem; }
.geo-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.geo-hero-cta .geo-btn-outline {
  color: rgba(255,255,255,.9);
  border-color: rgba(255,255,255,.4);
}
.geo-hero-cta .geo-btn-outline:hover { background: rgba(255,255,255,.15); color: #fff; border-color: #fff; }

/* Stats bar */
.geo-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.12);
  align-items: center;
}
.geo-stat-item  { display: flex; flex-direction: column; }
.geo-stat-num   { font-size: 1.9rem; font-weight: 900; color: var(--geo-primary-l); line-height: 1; }
.geo-stat-suffix{ font-size: 1.25rem; font-weight: 900; color: var(--geo-primary-l); }
.geo-stat-label { font-size: 0.68rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: 0.07em; margin-top: 0.2rem; }
.geo-stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,.12); }

/* ── Hero Visual — Animated Tree Diagram ── */
.geo-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.geo-tree-diagram {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--geo-r-xl);
  padding: 2rem 1.5rem 1.5rem;
  backdrop-filter: blur(12px);
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
  box-shadow: var(--geo-sh-xl), 0 0 60px rgba(139,92,246,.12);
}
.geo-tree-diagram::before {
  content: '';
  position: absolute; inset: -1px;
  border-radius: var(--geo-r-xl);
  background: linear-gradient(135deg, rgba(13,148,136,.2), rgba(139,92,246,.2), transparent);
  z-index: -1;
  opacity: 0;
  transition: opacity var(--geo-t);
}
.geo-tree-diagram:hover::before { opacity: 1; }

.geo-tree-level {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
}
.geo-tree-root-row, .geo-tree-l1-row, .geo-tree-l2-row, .geo-tree-l3-row { margin-bottom: 0; }

.geo-tree-connector {
  width: 2px;
  height: 22px;
  background: linear-gradient(to bottom, rgba(13,148,136,.6), rgba(139,92,246,.4));
  margin: 2px auto;
}
.geo-conn-l1 {
  width: 78%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(139,92,246,.45), transparent);
  margin: 0 auto 2px;
}
.geo-conn-l2 {
  width: 90%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(245,158,11,.35), transparent);
  margin: 0 auto 2px;
}
.geo-tree-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  cursor: default;
  position: relative;
  transition: transform var(--geo-t);
}
.geo-tree-node:hover { transform: translateY(-3px); }
.geo-node-avatar {
  width: 2.4rem; height: 2.4rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: #fff;
  box-shadow: 0 3px 10px rgba(0,0,0,.35);
  transition: all var(--geo-t);
}
.geo-tree-node:hover .geo-node-avatar { transform: scale(1.12); }
.geo-node-root .geo-node-avatar  { background: var(--geo-primary); width: 3.1rem; height: 3.1rem; font-size: 1.1rem; box-shadow: var(--geo-glow); }
.geo-node-l1   .geo-node-avatar  { background: var(--geo-accent); box-shadow: var(--geo-glow-p); }
.geo-node-l2   .geo-node-avatar  { background: var(--geo-gold); }
.geo-node-l3   .geo-node-avatar  { background: var(--geo-node-l3); width: 2rem; height: 2rem; font-size: 0.7rem; }
.geo-node-mini .geo-node-avatar  { display: none; }

.geo-node-info { display: flex; flex-direction: column; align-items: center; gap: 0.05rem; }
.geo-node-name { font-size: 0.58rem; font-weight: 700; color: rgba(255,255,255,.85); white-space: nowrap; }
.geo-node-rank { font-size: 0.5rem;  color: rgba(255,255,255,.45); white-space: nowrap; }
.geo-node-badge {
  font-size: 0.48rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  border-radius: 99px; padding: 0.15rem 0.45rem; line-height: 1;
}
.geo-badge-active   { background: rgba(34,197,94,.2);   color: #4ade80; border: 1px solid rgba(34,197,94,.35); }
.geo-badge-inactive { background: rgba(148,163,184,.15); color: rgba(255,255,255,.4); border: 1px solid rgba(148,163,184,.2); }

.geo-node-mini {
  display: flex; flex-direction: row;
  align-items: center; gap: 0.3rem;
  background: rgba(255,255,255,.06);
  border: 1px dashed rgba(255,255,255,.15);
  border-radius: var(--geo-r);
  padding: 0.3rem 0.55rem;
  font-size: 0.55rem; color: rgba(255,255,255,.55); font-weight: 600;
}
.geo-node-mini i { font-size: 0.6rem; color: var(--geo-primary-l); }
.geo-tree-labels {
  display: flex;
  justify-content: space-around;
  width: 100%;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255,255,255,.07);
}
.geo-level-label {
  font-size: 0.52rem; font-weight: 700;
  color: rgba(255,255,255,.35);
  text-transform: uppercase; letter-spacing: 0.06em;
}

/* ══════════════════════════════════════════════════════
   SECTION 2: WHAT IS
══════════════════════════════════════════════════════ */
.geo-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.geo-col-text p {
  color: var(--geo-mid);
  line-height: 1.82;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}
.geo-col-text p:last-child { margin-bottom: 0; }
.geo-col-text strong       { color: var(--geo-dark); }

.geo-info-cards { display: flex; flex-direction: column; gap: 1rem; }
.geo-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--geo-white);
  border: 1px solid var(--geo-border);
  border-radius: var(--geo-r-lg);
  padding: 1.25rem;
  transition: all var(--geo-t);
  box-shadow: var(--geo-sh-sm);
}
.geo-info-card:hover { transform: translateX(5px); box-shadow: var(--geo-sh); border-color: var(--geo-primary-l); }
.geo-info-icon {
  width: 2.8rem; height: 2.8rem;
  flex-shrink: 0;
  border-radius: var(--geo-r);
  background: linear-gradient(135deg, rgba(13,148,136,.1), rgba(13,148,136,.2));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--geo-primary);
  transition: all var(--geo-t);
}
.geo-info-card:hover .geo-info-icon { background: linear-gradient(135deg, var(--geo-primary), var(--geo-primary-d)); color: #fff; }
.geo-info-content h3 { font-size: 0.95rem; font-weight: 800; color: var(--geo-dark); margin-bottom: 0.3rem; }
.geo-info-content p  { font-size: 0.82rem; color: var(--geo-mid); line-height: 1.65; margin: 0; }

/* ══════════════════════════════════════════════════════
   SECTION 3: HOW IT WORKS — STEPS
══════════════════════════════════════════════════════ */
.geo-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.geo-step {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--geo-r-lg);
  padding: 2rem 1.75rem;
  transition: all var(--geo-t);
  position: relative;
  overflow: hidden;
}
.geo-step::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--geo-primary), var(--geo-accent));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--geo-t);
}
.geo-step:hover { background: rgba(13,148,136,.08); border-color: rgba(13,148,136,.25); transform: translateY(-5px); }
.geo-step:hover::after { transform: scaleX(1); }
.geo-step-num {
  font-size: 3.2rem; font-weight: 900;
  color: rgba(13,148,136,.15); line-height: 1;
  margin-bottom: 0.5rem;
  font-family: 'Poppins', sans-serif;
}
.geo-step-icon {
  width: 3.25rem; height: 3.25rem;
  border-radius: var(--geo-r);
  background: linear-gradient(135deg, var(--geo-primary), var(--geo-primary-d));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; color: #fff;
  margin-bottom: 1.1rem;
  box-shadow: 0 4px 16px rgba(13,148,136,.3);
  transition: all var(--geo-t);
}
.geo-step:nth-child(even) .geo-step-icon { background: linear-gradient(135deg, var(--geo-accent), var(--geo-accent-d)); box-shadow: 0 4px 16px rgba(139,92,246,.3); }
.geo-step:hover .geo-step-icon { transform: rotate(-5deg) scale(1.08); }
.geo-step h3 { font-size: 1.05rem; font-weight: 800; color: #fff; margin-bottom: 0.6rem; }
.geo-step p  { font-size: 0.85rem; color: rgba(255,255,255,.6); line-height: 1.72; }
.geo-step p a { color: var(--geo-primary-l); text-decoration: underline; text-underline-offset: 2px; }

/* ══════════════════════════════════════════════════════
   SECTIONS 4 & 7: TABS
══════════════════════════════════════════════════════ */
.geo-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.5rem;
  padding: 0.5rem;
  background: rgba(13,148,136,.06);
  border: 1px solid rgba(13,148,136,.15);
  border-radius: var(--geo-r-lg);
}
.geo-tabs-dark {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.1);
}
.geo-tab {
  display: flex; align-items: center; gap: 0.45rem;
  padding: 0.65rem 1.25rem;
  border: none; border-radius: var(--geo-r);
  background: transparent;
  color: var(--geo-mid);
  font-size: 0.875rem; font-weight: 600;
  cursor: pointer;
  transition: all var(--geo-t);
  white-space: nowrap;
  font-family: inherit;
}
.geo-tabs-dark .geo-tab { color: rgba(255,255,255,.55); }
.geo-tab i     { font-size: 0.8rem; }
.geo-tab:hover { background: rgba(13,148,136,.1); color: var(--geo-primary); }
.geo-tabs-dark .geo-tab:hover { background: rgba(13,148,136,.15); color: var(--geo-primary-l); }
.geo-tab-active {
  background: linear-gradient(135deg, var(--geo-primary), var(--geo-primary-d)) !important;
  color: #fff !important;
  box-shadow: 0 4px 14px rgba(13,148,136,.35);
}

/* Tab panels */
.geo-tab-panel { display: none; }
.geo-tab-panel-active { display: block; animation: geo-tab-in .35s ease both; }
@keyframes geo-tab-in { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:translateY(0); } }

.geo-tab-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
  background: var(--geo-white);
  border: 1px solid var(--geo-border);
  border-radius: var(--geo-r-xl);
  padding: 2.5rem;
  box-shadow: var(--geo-sh);
}
.geo-tab-panels-dark .geo-tab-content {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.08);
}
.geo-tab-text h3 { font-size: 1.3rem; font-weight: 900; color: var(--geo-dark); margin-bottom: 0.75rem; }
.geo-tab-panels-dark .geo-tab-text h3 { color: #fff; }
.geo-tab-text h4 {
  font-size: 0.85rem; font-weight: 800;
  color: var(--geo-dark-3); margin: 1.25rem 0 0.65rem;
  text-transform: uppercase; letter-spacing: 0.07em;
}
.geo-tab-panels-dark .geo-tab-text h4 { color: rgba(255,255,255,.55); }
.geo-tab-text p { font-size: 0.9rem; color: var(--geo-mid); line-height: 1.78; margin-bottom: 0.75rem; }
.geo-tab-panels-dark .geo-tab-text p { color: rgba(255,255,255,.65); }

/* Feature list in tabs */
.geo-feature-list { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; margin-bottom: 1.5rem; }
.geo-feature-list li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.85rem; color: var(--geo-mid); }
.geo-feature-list li .fa-check { color: var(--geo-primary); font-size: 0.75rem; flex-shrink: 0; }
.geo-tab-panels-dark .geo-feature-list li { color: rgba(255,255,255,.65); }

/* Mini tree visual in tabs */
.geo-tab-visual { display: flex; align-items: center; justify-content: center; }
.geo-mini-tree {
  background: var(--geo-dark);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--geo-r-lg);
  padding: 1.75rem;
  width: 100%;
  display: flex; flex-direction: column; align-items: center; gap: 0.25rem;
}
.geo-mt-root {
  background: var(--geo-primary); color: #fff;
  border-radius: var(--geo-r);
  padding: 0.5rem 1.25rem;
  font-size: 0.75rem; font-weight: 800;
  display: flex; align-items: center; gap: 0.4rem;
  box-shadow: var(--geo-glow);
  margin-bottom: 0.25rem;
}
.geo-mt-diamond { background: linear-gradient(135deg, var(--geo-primary), var(--geo-accent)); }
.geo-mt-row { display: flex; justify-content: center; gap: 0.5rem; width: 100%; }
.geo-mt-wide { gap: 0.35rem; }
.geo-mt-node {
  border-radius: var(--geo-r);
  padding: 0.4rem 0.75rem;
  font-size: 0.65rem; font-weight: 700; color: #fff;
  display: flex; align-items: center; gap: 0.3rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.12);
  white-space: nowrap;
  transition: all var(--geo-t);
}
.geo-mt-node:hover   { transform: scale(1.05); }
.geo-mt-left         { background: rgba(139,92,246,.3); border-color: rgba(139,92,246,.5); }
.geo-mt-right        { background: rgba(6,182,212,.3);  border-color: rgba(6,182,212,.5); }
.geo-mt-gold         { background: rgba(245,158,11,.3); border-color: rgba(245,158,11,.5); }
.geo-mt-sm           { padding: 0.3rem 0.5rem; font-size: 0.58rem; }
.geo-mt-xs           { padding: 0.22rem 0.4rem; font-size: 0.52rem; }
.geo-mt-tag-bin      { background: rgba(139,92,246,.3); border-color: rgba(139,92,246,.5); }
.geo-mt-tag-uni      { background: rgba(13,148,136,.3); border-color: rgba(13,148,136,.5); }
.geo-mt-label {
  margin-top: 0.75rem;
  font-size: 0.58rem; color: rgba(255,255,255,.35);
  text-align: center;
  text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600;
}

/* ══════════════════════════════════════════════════════
   SECTION 5: INTERACTIVE VIZ TREE
══════════════════════════════════════════════════════ */
.geo-viz-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.geo-viz-btn {
  display: flex; align-items: center; gap: 0.4rem;
  padding: 0.5rem 1.1rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--geo-r-sm);
  font-size: 0.8rem; font-weight: 600;
  color: rgba(255,255,255,.8);
  cursor: pointer; transition: all var(--geo-t);
  font-family: inherit;
}
.geo-viz-btn:hover  { background: rgba(13,148,136,.2); border-color: rgba(13,148,136,.45); color: var(--geo-primary-l); }
.geo-viz-btn.active { background: rgba(13,148,136,.3); border-color: var(--geo-primary); color: var(--geo-primary-l); box-shadow: 0 0 0 2px rgba(13,148,136,.25); }
.geo-viz-btn i      { font-size: 0.72rem; }

.geo-viz-search {
  margin-left: auto;
  display: flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--geo-r-sm);
  padding: 0.5rem 1rem;
  transition: border-color var(--geo-t);
}
.geo-viz-search:focus-within { border-color: var(--geo-primary); background: rgba(13,148,136,.08); }
.geo-viz-search i { font-size: 0.75rem; color: rgba(255,255,255,.4); }
.geo-viz-search input {
  background: none; border: none; outline: none;
  font-size: 0.8rem; color: rgba(255,255,255,.85);
  width: 180px; font-family: inherit;
}
.geo-viz-search input::placeholder { color: rgba(255,255,255,.3); }

/* Wrapper */
.geo-viz-wrapper {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--geo-r-xl);
  padding: 2rem 2rem 1.5rem;
  overflow: hidden;
  position: relative;
  box-shadow: var(--geo-sh-lg);
}
.geo-viz-wrapper::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 20%, rgba(139,92,246,.1) 0%, transparent 65%);
  pointer-events: none;
}

/* Legend */
.geo-viz-legend {
  display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap;
  margin-bottom: 1.5rem; padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
  position: relative; z-index: 2;
}
.geo-viz-legend-item {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.72rem; color: rgba(255,255,255,.6); font-weight: 600;
}
.geo-viz-legend-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }

/* Canvas DIV */
.geo-viz-canvas-div {
  position: relative; z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  min-height: 280px;
}

/* Empty state */
.geo-viz-empty {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 0.75rem;
  padding: 3rem 0; color: rgba(255,255,255,.35);
  position: relative; z-index: 2;
}
.geo-viz-empty i { font-size: 2rem; color: rgba(255,255,255,.2); }
.geo-viz-empty p { font-size: 0.88rem; }

/* ── Tree rows & nodes ── */
.geo-viz-row {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: nowrap;
}
.geo-viz-node {
  display: flex; flex-direction: column; align-items: center;
  cursor: pointer; position: relative;
  padding: 0 0.3rem;
  transition: transform var(--geo-t);
}
.geo-viz-node:hover { transform: translateY(-3px); }
.geo-viz-node-inner { display: flex; flex-direction: column; align-items: center; }

/* Avatar dot */
.geo-viz-node-dot {
  width: 3rem; height: 3rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 800; color: #fff;
  transition: all var(--geo-t);
  position: relative; z-index: 2;
  box-shadow: 0 4px 14px rgba(0,0,0,.4);
  border: 2px solid rgba(255,255,255,.15);
}
.geo-viz-node-dot.root-dot {
  background: var(--geo-primary); width:3.75rem; height:3.75rem; font-size:.85rem;
  box-shadow: 0 0 0 4px rgba(13,148,136,.25), var(--geo-glow);
  border-color: rgba(13,148,136,.5);
}
.geo-viz-node-dot.l1-dot {
  background: var(--geo-node-l1);
  box-shadow: 0 0 0 3px rgba(139,92,246,.2), var(--geo-glow-p);
  border-color: rgba(139,92,246,.4);
}
.geo-viz-node-dot.l2-dot     { background: var(--geo-node-l2); border-color: rgba(245,158,11,.35); }
.geo-viz-node-dot.l3-dot     { background: var(--geo-node-l3); border-color: rgba(6,182,212,.35); }
.geo-viz-node-dot.l4-dot     { background: var(--geo-node-l4); }
.geo-viz-node-dot.inactive-dot { background: #374151; border-color: rgba(255,255,255,.1); }
.geo-viz-node:hover .geo-viz-node-dot { transform: scale(1.14); box-shadow: 0 6px 20px rgba(0,0,0,.5); }

/* Collapsed indicator */
.geo-viz-node.collapsed .geo-viz-node-dot::after {
  content: '+';
  position: absolute; bottom: -4px; right: -4px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--geo-accent); color: #fff;
  font-size: 0.65rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,.4);
}

/* Node labels */
.geo-viz-node-name   { font-size: 0.62rem; font-weight: 700; color: rgba(255,255,255,.85); margin-top: 0.4rem; text-align: center; white-space: nowrap; }
.geo-viz-node-vol    { font-size: 0.55rem; color: rgba(255,255,255,.45); text-align: center; white-space: nowrap; margin-top: 0.05rem; }
.geo-viz-node-status { font-size: 0.5rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-top: 0.15rem; }
.geo-viz-node-status.active-s   { color: #4ade80; }
.geo-viz-node-status.inactive-s { color: #f87171; }

/* Connector lines */
.geo-viz-vline {
  width: 2px; height: 20px;
  background: linear-gradient(to bottom, rgba(255,255,255,.2), rgba(255,255,255,.35));
  margin: 0 auto;
}
.geo-viz-hbar-wrap {
  display: flex; align-items: flex-end;
  justify-content: center; width: 100%; gap: 0;
}
.geo-viz-hline { height: 2px; background: rgba(255,255,255,.2); transition: background var(--geo-t); }

/* Tooltip */
.geo-viz-node-tooltip {
  position: absolute; bottom: calc(100% + 10px); left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--geo-dark-2);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--geo-r);
  padding: 0.75rem 1rem;
  min-width: 160px; font-size: 0.74rem;
  color: rgba(255,255,255,.88);
  pointer-events: none; opacity: 0;
  transition: opacity var(--geo-t), transform var(--geo-t);
  z-index: 50; white-space: nowrap;
  box-shadow: var(--geo-sh-lg);
}
.geo-viz-node:hover .geo-viz-node-tooltip { opacity: 1; transform: translateX(-50%) translateY(0); }
.geo-viz-node-tooltip strong { color: #fff; display: block; margin-bottom: 0.3rem; font-size: 0.78rem; }
.geo-viz-node-tooltip .tip-vol  { display: flex; align-items: center; gap: 0.35rem; color: var(--geo-primary-l); }
.geo-viz-node-tooltip .tip-stat { display: flex; align-items: center; gap: 0.35rem; margin-top: 0.2rem; }
.geo-viz-node-tooltip .tip-stat.active   { color: #4ade80; }
.geo-viz-node-tooltip .tip-stat.inactive { color: #f87171; }

/* Search highlight */
.geo-viz-node.search-match .geo-viz-node-dot {
  box-shadow: 0 0 0 4px var(--geo-gold), 0 0 20px rgba(245,158,11,.4) !important;
}

/* Caption */
.geo-viz-caption {
  font-size: 0.8rem; color: rgba(255,255,255,.5);
  text-align: center; margin-top: 1.25rem; line-height: 1.6;
}

/* ══════════════════════════════════════════════════════
   SECTION 6: BENEFITS
══════════════════════════════════════════════════════ */
.geo-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.geo-benefit-card {
  background: var(--geo-white);
  border: 1px solid var(--geo-border);
  border-radius: var(--geo-r-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--geo-t);
  position: relative;
  overflow: hidden;
}
.geo-benefit-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--geo-primary), var(--geo-accent));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--geo-t);
}
.geo-benefit-card:hover { transform: translateY(-5px); box-shadow: var(--geo-sh-lg); border-color: rgba(13,148,136,.3); }
.geo-benefit-card:hover::before { transform: scaleX(1); }
.geo-benefit-icon {
  width: 3.5rem; height: 3.5rem; border-radius: 50%;
  background: linear-gradient(135deg, rgba(13,148,136,.1), rgba(13,148,136,.2));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--geo-primary);
  margin: 0 auto 1.1rem;
  transition: all var(--geo-t);
}
.geo-benefit-card:hover .geo-benefit-icon { background: linear-gradient(135deg, var(--geo-primary), var(--geo-primary-d)); color: #fff; transform: scale(1.1) rotate(5deg); }
.geo-benefit-card h3 { font-size: 0.95rem; font-weight: 800; color: var(--geo-dark); margin-bottom: 0.5rem; }
.geo-benefit-card p  { font-size: 0.82rem; color: var(--geo-mid); line-height: 1.68; }
.geo-benefit-card a  { color: var(--geo-primary); text-decoration: underline; text-underline-offset: 2px; }

/* ══════════════════════════════════════════════════════
   SECTION 7: FEATURES GRID
══════════════════════════════════════════════════════ */
.geo-feat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.geo-feat-item {
  display: flex; align-items: flex-start; gap: 0.85rem;
  padding: 1.15rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--geo-r-lg);
  transition: all var(--geo-t);
}
.geo-feat-item:hover { background: rgba(13,148,136,.08); border-color: rgba(13,148,136,.2); }
.geo-feat-item .fa-check-circle { color: var(--geo-primary-l); font-size: 1.1rem; flex-shrink: 0; margin-top: 0.15rem; }
.geo-feat-item h4 { font-size: 0.88rem; font-weight: 800; color: #fff; margin-bottom: 0.35rem; }
.geo-feat-item p  { font-size: 0.8rem; color: rgba(255,255,255,.55); line-height: 1.65; margin: 0; }

/* ══════════════════════════════════════════════════════
   SECTION 8: ARCHITECTURE
══════════════════════════════════════════════════════ */
.geo-arch-diagram {
  background: var(--geo-dark);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--geo-r-xl);
  padding: 2.5rem 2rem;
  margin-bottom: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.geo-arch-layer {
  width: 100%; max-width: 700px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--geo-r-lg);
  padding: 1.25rem 1.5rem;
  transition: all var(--geo-t);
}
.geo-arch-layer:hover { border-color: rgba(13,148,136,.35); background: rgba(13,148,136,.04); }
.geo-arch-layer-1 { border-color: rgba(139,92,246,.3); background: rgba(139,92,246,.06); }
.geo-arch-layer-2 { border-color: rgba(13,148,136,.3);  background: rgba(13,148,136,.06); }
.geo-arch-layer-3 { border-color: rgba(245,158,11,.3);  background: rgba(245,158,11,.05); }
.geo-arch-layer-4 { border-color: rgba(6,182,212,.3);   background: rgba(6,182,212,.05); }
.geo-arch-label {
  font-size: 0.72rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: rgba(255,255,255,.5);
  margin-bottom: 0.85rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.geo-arch-layer-1 .geo-arch-label { color: var(--geo-accent-l); }
.geo-arch-layer-2 .geo-arch-label { color: var(--geo-primary-l); }
.geo-arch-layer-3 .geo-arch-label { color: var(--geo-gold); }
.geo-arch-layer-4 .geo-arch-label { color: var(--geo-node-l3); }
.geo-arch-nodes   { display: flex; gap: 1rem; flex-wrap: wrap; }
.geo-arch-node {
  display: flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--geo-r);
  padding: 0.45rem 0.9rem;
  font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,.75);
  transition: all var(--geo-t); white-space: nowrap;
}
.geo-arch-node:hover { background: rgba(13,148,136,.15); border-color: rgba(13,148,136,.35); color: var(--geo-primary-l); }
.geo-arch-node i    { font-size: 0.75rem; }
.geo-arch-node span { font-size: 0.72rem; }
.geo-arch-arrow { padding: 0.35rem 0; color: rgba(255,255,255,.25); font-size: 0.9rem; }

/* Tech Stack Grid */
.geo-tech-heading { font-size: 1.3rem; font-weight: 900; color: var(--geo-dark); margin-bottom: 2rem; text-align: center; }
.geo-tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.geo-tech-card {
  background: var(--geo-white);
  border: 1px solid var(--geo-border);
  border-radius: var(--geo-r-lg);
  padding: 1.75rem;
  transition: all var(--geo-t);
  position: relative; overflow: hidden;
}
.geo-tech-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--geo-primary), var(--geo-accent));
  transform: scaleX(0); transition: transform var(--geo-t);
}
.geo-tech-card:hover { transform: translateY(-4px); box-shadow: var(--geo-sh-lg); border-color: var(--geo-primary-l); }
.geo-tech-card:hover::after { transform: scaleX(1); }
.geo-tech-card > i { font-size: 1.6rem; color: var(--geo-primary); margin-bottom: 0.9rem; display: block; }
.geo-tech-card h4  { font-size: 0.95rem; font-weight: 800; color: var(--geo-dark); margin-bottom: 0.6rem; }
.geo-tech-card p   { font-size: 0.82rem; color: var(--geo-mid); line-height: 1.7; }

/* ══════════════════════════════════════════════════════
   SECTION 9: WHY CHOOSE
══════════════════════════════════════════════════════ */
.geo-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.geo-why-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--geo-r-xl);
  padding: 2rem 1.75rem;
  transition: all var(--geo-t);
  position: relative; overflow: hidden;
}
.geo-why-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--geo-primary), var(--geo-accent));
  transform: scaleX(0); transition: transform var(--geo-t);
}
.geo-why-card:hover { transform: translateY(-6px); background: rgba(255,255,255,.08); border-color: rgba(13,148,136,.35); }
.geo-why-card:hover::before { transform: scaleX(1); }
.geo-why-num { font-size: 2.8rem; font-weight: 900; color: rgba(13,148,136,.15); line-height: 1; font-family: 'Poppins', sans-serif; margin-bottom: 0.25rem; }
.geo-why-icon { font-size: 1.5rem; color: var(--geo-primary-l); margin-bottom: 1rem; display: block; transition: all var(--geo-t); }
.geo-why-card:hover .geo-why-icon { transform: scale(1.15) rotate(-5deg); color: var(--geo-primary-xl); }
.geo-why-card h3 { font-size: 1rem; font-weight: 800; color: #fff; margin-bottom: 0.65rem; }
.geo-why-card p  { font-size: 0.84rem; color: rgba(255,255,255,.6); line-height: 1.75; }
.geo-why-card a  { color: var(--geo-primary-l); text-decoration: underline; text-underline-offset: 2px; }

/* ══════════════════════════════════════════════════════
   SECTION 10: CASE STUDY
══════════════════════════════════════════════════════ */
.geo-case-study {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.geo-cs-column { display: flex; flex-direction: column; gap: 1.5rem; }
.geo-cs-block {
  border-radius: var(--geo-r-lg);
  padding: 2rem; border: 1px solid;
}
.geo-cs-problem { background: rgba(239,68,68,.05); border-color: rgba(239,68,68,.2); }
.geo-cs-solution { background: rgba(13,148,136,.05); border-color: rgba(13,148,136,.2); }
.geo-cs-block h3 {
  font-size: 1.1rem; font-weight: 800; color: var(--geo-dark);
  margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.5rem;
}
.geo-cs-problem h3 .fa-exclamation-triangle { color: #ef4444; }
.geo-cs-solution h3 .fa-lightbulb           { color: var(--geo-primary); }
.geo-cs-block > p { font-size: 0.88rem; color: var(--geo-mid); line-height: 1.72; margin-bottom: 1rem; }
.geo-cs-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.geo-cs-list li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.83rem; color: var(--geo-mid); line-height: 1.6; }
.geo-cs-list li .fa-times-circle { color: #ef4444; flex-shrink: 0; margin-top: .15rem; }
.geo-cs-list li .fa-check-circle { color: var(--geo-primary); flex-shrink: 0; margin-top: .15rem; }

.geo-cs-results {
  background: linear-gradient(135deg, var(--geo-dark) 0%, #1a103a 100%);
  border-radius: var(--geo-r-xl);
  padding: 2.5rem;
  border: 1px solid rgba(255,255,255,.07);
  box-shadow: var(--geo-sh-xl);
}
.geo-cs-results h3 { font-size: 1.15rem; font-weight: 900; color: #fff; margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.5rem; }
.geo-cs-results h3 .fa-chart-line { color: var(--geo-primary-l); }
.geo-cs-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.geo-cs-metric {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--geo-r-lg);
  padding: 1.25rem 1rem; text-align: center;
  transition: all var(--geo-t);
}
.geo-cs-metric:hover { background: rgba(13,148,136,.15); border-color: rgba(13,148,136,.35); transform: translateY(-3px); }
.geo-cs-metric-num  { font-size: 2.2rem; font-weight: 900; color: var(--geo-primary-l); line-height: 1; display: inline; }
.geo-cs-metric-unit { font-size: 1.3rem; font-weight: 900; color: var(--geo-primary-l); }
.geo-cs-metric-label { display: block; margin-top: 0.5rem; font-size: 0.68rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: 0.06em; line-height: 1.4; }
.geo-cs-metric-label small { font-size: 0.6rem; color: rgba(255,255,255,.35); display: block; margin-top: 0.2rem; }
.geo-cs-quote { border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.5rem; }
.geo-cs-quote p      { font-size: 0.9rem; color: rgba(255,255,255,.7); line-height: 1.78; font-style: italic; margin-bottom: 0.75rem; }
.geo-cs-quote footer { font-size: 0.82rem; color: rgba(255,255,255,.55); }
.geo-cs-quote strong { color: #fff; }

/* ══════════════════════════════════════════════════════
   SECTION 11: COMPARISON TABLE
══════════════════════════════════════════════════════ */
.geo-table-wrapper {
  overflow-x: auto;
  border-radius: var(--geo-r-lg);
  box-shadow: 0 0 0 1px rgba(255,255,255,.08);
}
.geo-comparison-table {
  width: 100%; min-width: 680px;
  border-collapse: collapse;
  background: var(--geo-dark-2);
  font-size: 0.87rem;
}
.geo-comparison-table thead tr { background: var(--geo-dark); }
.geo-comparison-table th {
  padding: 1.1rem 1.5rem; text-align: left;
  font-size: 0.82rem; font-weight: 700; color: rgba(255,255,255,.75);
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.geo-th-old { color: rgba(239,68,68,.8) !important; }
.geo-th-new { color: var(--geo-primary-l) !important; background: rgba(13,148,136,.1); }
.geo-comparison-table td {
  padding: 0.9rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
  color: rgba(255,255,255,.55); vertical-align: middle;
}
.geo-comparison-table td:first-child { color: rgba(255,255,255,.85); font-weight: 600; }
.geo-comparison-table tr:last-child td { border-bottom: none; }
.geo-comparison-table tr:hover td { background: rgba(255,255,255,.02); }
.geo-td-no  { color: rgba(239,68,68,.7) !important; }
.geo-td-yes { color: var(--geo-primary-l) !important; font-weight: 700 !important; background: rgba(13,148,136,.06) !important; }
.geo-td-no .fa-times-circle   { margin-right: 0.4rem; }
.geo-td-yes .fa-check-circle  { margin-right: 0.4rem; }

/* ══════════════════════════════════════════════════════
   SECTION 12: SECURITY / UPTIME
══════════════════════════════════════════════════════ */
.geo-security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.geo-sec-card {
  background: var(--geo-white);
  border: 1px solid var(--geo-border);
  border-radius: var(--geo-r-lg);
  padding: 2rem 1.75rem; text-align: center;
  transition: all var(--geo-t);
  position: relative; overflow: hidden;
}
.geo-sec-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--geo-primary), var(--geo-accent));
  transform: scaleX(0); transition: transform var(--geo-t);
}
.geo-sec-card:hover { transform: translateY(-5px); box-shadow: var(--geo-sh-lg); }
.geo-sec-card:hover::after { transform: scaleX(1); }
.geo-sec-icon {
  width: 3.5rem; height: 3.5rem; border-radius: 50%;
  background: linear-gradient(135deg, rgba(13,148,136,.1), rgba(13,148,136,.2));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--geo-primary);
  margin: 0 auto 1.1rem; transition: all var(--geo-t);
}
.geo-sec-card:hover .geo-sec-icon { background: linear-gradient(135deg, var(--geo-primary), var(--geo-primary-d)); color: #fff; transform: scale(1.1) rotate(-5deg); }
.geo-sec-card h3 { font-size: 0.95rem; font-weight: 800; color: var(--geo-dark); margin-bottom: 0.5rem; }
.geo-sec-card p  { font-size: 0.82rem; color: var(--geo-mid); line-height: 1.7; }

.geo-uptime-row { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
.geo-uptime-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(13,148,136,.08);
  border: 1px solid rgba(13,148,136,.2);
  border-radius: 99px;
  padding: 0.4rem 1rem;
  font-size: 0.78rem; font-weight: 700; color: var(--geo-primary);
}
.geo-uptime-badge .fa-circle-check { color: var(--geo-primary); }

/* ══════════════════════════════════════════════════════
   SECTION 13: TESTIMONIALS SLIDER
══════════════════════════════════════════════════════ */
.geo-slider-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--geo-r-xl);
}
.geo-slides {
  display: flex;
  transition: transform .55s cubic-bezier(.4,0,.2,1);
}
.geo-slide { min-width: 100%; padding: 0 0.5rem; }
.geo-testimonial {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--geo-r-xl);
  padding: 2.75rem 3rem;
  max-width: 820px; margin: 0 auto;
  position: relative;
  transition: all var(--geo-t);
}
.geo-testimonial::before {
  content: '\201C';
  position: absolute; top: 1.25rem; left: 2rem;
  font-size: 6rem; color: var(--geo-primary); opacity: .12;
  font-family: Georgia, serif; line-height: 1;
  pointer-events: none;
}
.geo-test-stars    { display: flex; gap: 0.2rem; margin-bottom: 1.25rem; }
.geo-test-stars i  { color: var(--geo-gold); font-size: 0.9rem; }
.geo-test-quote {
  font-size: 1.02rem; color: rgba(255,255,255,.82);
  line-height: 1.82; font-style: italic;
  margin-bottom: 1.5rem;
  position: relative; z-index: 1;
  border: none; padding: 0;
}
.geo-test-author {
  display: flex; align-items: center; gap: 1rem;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.25rem;
}
.geo-test-avatar {
  width: 3rem; height: 3rem; border-radius: 50%;
  background: linear-gradient(135deg, var(--geo-primary), var(--geo-primary-d));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: #fff; flex-shrink: 0;
}
.geo-test-info strong { display: block; font-size: 0.9rem; font-weight: 800; color: #fff; }
.geo-test-info span   { font-size: 0.78rem; color: rgba(255,255,255,.5); }

.geo-slider-prev,
.geo-slider-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 2.75rem; height: 2.75rem; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,.75);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  transition: all var(--geo-t); z-index: 5;
}
.geo-slider-prev { left: 0.5rem; }
.geo-slider-next { right: 0.5rem; }
.geo-slider-prev:hover,
.geo-slider-next:hover { background: var(--geo-primary); border-color: var(--geo-primary); color: #fff; transform: translateY(-50%) scale(1.1); }

.geo-slider-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 1.75rem; }
.geo-dot {
  width: 8px; height: 8px; border-radius: 99px;
  background: rgba(255,255,255,.2);
  border: none; cursor: pointer; transition: all var(--geo-t);
}
.geo-dot-active { background: var(--geo-primary); width: 24px; }

/* ══════════════════════════════════════════════════════
   SECTION 14: FAQ ACCORDION
══════════════════════════════════════════════════════ */
.geo-faq-list {
  display: flex; flex-direction: column; gap: 0.75rem;
  max-width: 900px; margin: 0 auto;
}
.geo-faq-item {
  background: var(--geo-white);
  border: 1px solid var(--geo-border);
  border-radius: var(--geo-r-lg);
  overflow: hidden; transition: all var(--geo-t);
}
.geo-faq-item:hover { box-shadow: var(--geo-sh); }
.geo-faq-item.open  { border-color: rgba(13,148,136,.35); box-shadow: 0 0 0 3px rgba(13,148,136,.07); }
.geo-faq-q {
  width: 100%; background: none; border: none;
  padding: 1.2rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  cursor: pointer; text-align: left;
  font-size: 0.93rem; font-weight: 700; color: var(--geo-dark);
  transition: color var(--geo-t); font-family: inherit;
}
.geo-faq-q span  { flex: 1; }
.geo-faq-q:hover { color: var(--geo-primary); }
.geo-faq-item.open .geo-faq-q { color: var(--geo-primary); }
.geo-faq-chevron { flex-shrink: 0; font-size: 0.78rem; color: var(--geo-muted); transition: transform var(--geo-t), color var(--geo-t); }
.geo-faq-item.open .geo-faq-chevron { transform: rotate(180deg); color: var(--geo-primary); }
.geo-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s cubic-bezier(.4,0,.2,1);
  padding: 0 1.5rem;
}
.geo-faq-a p { font-size: 0.87rem; color: var(--geo-mid); line-height: 1.82; padding-bottom: 1.25rem; }
.geo-faq-item.open .geo-faq-a { max-height: 600px; }
.geo-faq-a a { color: var(--geo-primary); text-decoration: underline; text-underline-offset: 2px; }

/* ══════════════════════════════════════════════════════
   SECTION 15: CTA / DEMO FORM
══════════════════════════════════════════════════════ */
.geo-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  position: relative; z-index: 1;
}
.geo-cta-tag {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 99px; padding: 0.3rem 0.9rem; margin-bottom: 1rem;
}
.geo-cta-text h2 {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 900; color: #fff; line-height: 1.15; margin-bottom: 1rem;
}
.geo-cta-text > p { font-size: 1rem; color: rgba(255,255,255,.75); line-height: 1.78; margin-bottom: 1.75rem; }
.geo-cta-features { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 2rem; }
.geo-cta-feat { display: flex; align-items: center; gap: 0.6rem; font-size: 0.88rem; color: rgba(255,255,255,.82); font-weight: 500; }
.geo-cta-feat .fa-check-circle { color: var(--geo-primary-xl); }
.geo-trust-logos { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.geo-trust-logo {
  display: flex; align-items: center; gap: 0.4rem;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--geo-r); padding: 0.4rem 0.9rem;
  font-size: 0.78rem; font-weight: 700; color: rgba(255,255,255,.75);
  transition: all var(--geo-t);
}
.geo-trust-logo:hover { background: rgba(255,255,255,.18); color: #fff; }

/* Demo Form Card */
.geo-form-card {
  background: #fff;
  border-radius: var(--geo-r-xl);
  padding: 2.5rem;
  box-shadow: 0 30px 80px rgba(0,0,0,.25);
}
.geo-form-card h3 { font-size: 1.3rem; font-weight: 900; color: var(--geo-dark); margin-bottom: 0.4rem; display: flex; align-items: center; gap: 0.5rem; }
.geo-form-card h3 i { color: var(--geo-primary); }
.geo-form-sub { font-size: 0.85rem; color: var(--geo-mid); margin-bottom: 1.5rem; line-height: 1.6; }
.geo-demo-form { display: flex; flex-direction: column; gap: 1rem; }
.geo-form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.geo-form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.geo-form-group label { font-size: 0.8rem; font-weight: 700; color: var(--geo-dark-3); }
.geo-req { color: #ef4444; }
.geo-form-group input,
.geo-form-group select,
.geo-form-group textarea {
  width: 100%; padding: 0.75rem 1rem;
  border: 1.5px solid var(--geo-border);
  border-radius: var(--geo-r);
  font-size: 0.88rem; color: var(--geo-dark);
  font-family: inherit;
  transition: border-color var(--geo-t), box-shadow var(--geo-t);
  background: var(--geo-lighter); outline: none; resize: vertical;
}
.geo-form-group input:focus,
.geo-form-group select:focus,
.geo-form-group textarea:focus {
  border-color: var(--geo-primary);
  box-shadow: 0 0 0 3px rgba(13,148,136,.12);
  background: #fff;
}
.geo-form-group input.error,
.geo-form-group select.error { border-color: #ef4444; }
.geo-form-privacy {
  font-size: 0.75rem; color: var(--geo-muted);
  text-align: center; display: flex; align-items: center; justify-content: center; gap: 0.35rem;
}
.geo-form-privacy i { color: var(--geo-primary); }
.geo-form-success { text-align: center; padding: 2rem; }
.geo-success-icon { font-size: 3rem; color: var(--geo-primary); margin-bottom: 1rem; display: block; }
.geo-form-success h4 { font-size: 1.25rem; font-weight: 900; color: var(--geo-dark); margin-bottom: 0.5rem; }
.geo-form-success p  { font-size: 0.88rem; color: var(--geo-mid); line-height: 1.7; }

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
.geo-footer {
  background: var(--geo-dark);
  color: rgba(255,255,255,.65);
  padding: 4.5rem 0 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.geo-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.3fr 1.3fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.geo-footer-logo {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1rem; text-decoration: none;
}
.geo-logo-icon-sm {
  width: 2.4rem; height: 2.4rem; border-radius: var(--geo-r);
  background: linear-gradient(135deg, var(--geo-primary), var(--geo-primary-d));
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: #fff; flex-shrink: 0;
}
.geo-footer-logo-main { display: block; font-size: 1rem; font-weight: 800; color: #fff; line-height: 1; }
.geo-footer-logo-sub  { display: block; font-size: 0.65rem; color: rgba(255,255,255,.45); margin-top: 0.1rem; }
.geo-footer-desc { font-size: 0.83rem; color: rgba(255,255,255,.5); line-height: 1.72; margin-bottom: 1.25rem; }
.geo-footer-contact { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.25rem; }
.geo-footer-contact-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; color: rgba(255,255,255,.55);
  text-decoration: none; transition: color var(--geo-t);
}
.geo-footer-contact-item i     { color: var(--geo-primary-l); width: 1rem; text-align: center; font-size: 0.8rem; }
.geo-footer-contact-item:hover { color: var(--geo-primary-l); }
.geo-social-links { display: flex; gap: 0.6rem; }
.geo-social-link {
  width: 2.2rem; height: 2.2rem; border-radius: 50%;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; color: rgba(255,255,255,.6);
  transition: all var(--geo-t); text-decoration: none;
}
.geo-social-link:hover { background: var(--geo-primary); border-color: var(--geo-primary); color: #fff; transform: translateY(-2px); }
.geo-footer-col h4 {
  font-size: 0.82rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: rgba(255,255,255,.8); margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.4rem;
}
.geo-footer-col h4 i { font-size: 0.75rem; color: var(--geo-primary-l); }
.geo-footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.geo-footer-col ul li a {
  font-size: 0.82rem; color: rgba(255,255,255,.5);
  display: flex; align-items: center; gap: 0.4rem;
  transition: color var(--geo-t); text-decoration: none;
}
.geo-footer-col ul li a:hover { color: var(--geo-primary-l); }
.geo-footer-col ul li a i { font-size: 0.6rem; color: rgba(255,255,255,.2); }
.geo-footer-trust-badges { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; }
.geo-footer-badge {
  display: flex; align-items: center; gap: 0.45rem;
  font-size: 0.78rem; color: rgba(255,255,255,.55); font-weight: 500;
}
.geo-footer-badge .fa-circle-check { color: var(--geo-primary-l); font-size: 0.75rem; }
.geo-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 1.5rem 0; text-align: center;
}
.geo-footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,.4); margin-bottom: 0.35rem; }
.geo-footer-bottom a  { color: var(--geo-primary-l); }
.geo-footer-bottom a:hover { color: #fff; }
.geo-footer-note { font-size: 0.72rem !important; color: rgba(255,255,255,.28) !important; margin-top: 0.25rem; }

/* ══════════════════════════════════════════════════════
   BACK TO TOP
══════════════════════════════════════════════════════ */
.geo-back-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 3rem; height: 3rem;
  border-radius: 50%;
  background: var(--geo-primary);
  color: #fff; border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; cursor: pointer;
  box-shadow: 0 4px 20px rgba(13,148,136,.45);
  opacity: 0; pointer-events: none;
  transform: translateY(10px);
  transition: all var(--geo-t); z-index: 900;
}
.geo-back-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.geo-back-top:hover   { background: var(--geo-primary-d); transform: translateY(-3px); box-shadow: 0 8px 28px rgba(13,148,136,.5); }

/* ══════════════════════════════════════════════════════
   STICKY CTA BAR (mobile)
══════════════════════════════════════════════════════ */
.geo-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--geo-dark);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 0.75rem 1rem;
  gap: 0.75rem; z-index: 800;
  box-shadow: 0 -4px 20px rgba(0,0,0,.3);
}
.geo-sticky-btn {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.7rem 1rem;
  border-radius: var(--geo-r);
  font-size: 0.85rem; font-weight: 700;
  text-decoration: none; transition: all var(--geo-t);
}
.geo-sticky-call { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); color: #fff; }
.geo-sticky-demo { background: var(--geo-primary); color: #fff; box-shadow: 0 2px 12px rgba(13,148,136,.4); }
.geo-sticky-demo:hover { background: var(--geo-primary-d); color: #fff; }

/* ══════════════════════════════════════════════════════
   SCROLL ANIMATIONS
══════════════════════════════════════════════════════ */
.geo-animate-up, .geo-animate-left, .geo-animate-right {
  opacity: 0;
  transition: opacity .65s ease, transform .65s ease;
  transition-delay: var(--delay, 0s);
}
.geo-animate-up    { transform: translateY(32px); }
.geo-animate-left  { transform: translateX(-32px); }
.geo-animate-right { transform: translateX(32px); }
.geo-animate-up.visible,
.geo-animate-left.visible,
.geo-animate-right.visible { opacity: 1; transform: none; }

/* ══════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .geo-benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .geo-footer-grid   { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .geo-tech-grid     { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .geo-hero-inner      { grid-template-columns: 1fr; gap: 3rem; }
  .geo-hero-visual     { display: none; }
  .geo-hero            { min-height: auto; padding: 5rem 0 4rem; }
  .geo-two-col         { grid-template-columns: 1fr; gap: 2.5rem; }
  .geo-steps           { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .geo-tab-content     { grid-template-columns: 1fr; gap: 2rem; }
  .geo-tab-visual      { order: -1; }
  .geo-case-study      { grid-template-columns: 1fr; }
  .geo-cta-inner       { grid-template-columns: 1fr; gap: 2.5rem; }
  .geo-why-grid        { grid-template-columns: repeat(2, 1fr); }
  .geo-security-grid   { grid-template-columns: repeat(2, 1fr); }
  .geo-feat-grid       { grid-template-columns: 1fr; }
  .geo-tech-grid       { grid-template-columns: 1fr 1fr; }
  .geo-arch-nodes      { flex-wrap: wrap; }
}

@media (max-width: 640px) {
  .geo-section         { padding: 3.5rem 0; }
  .geo-hero            { padding: 4rem 0 3rem; }
  .geo-steps           { grid-template-columns: 1fr; }
  .geo-benefits-grid   { grid-template-columns: 1fr; }
  .geo-why-grid        { grid-template-columns: 1fr; }
  .geo-security-grid   { grid-template-columns: 1fr; }
  .geo-cs-metrics      { grid-template-columns: 1fr 1fr; }
  .geo-footer-grid     { grid-template-columns: 1fr; }
  .geo-hero-stats      { gap: 1rem 1.5rem; }
  .geo-tabs            { gap: 0.35rem; }
  .geo-tab             { padding: 0.55rem 0.85rem; font-size: 0.78rem; }
  .geo-testimonial     { padding: 2rem 1.5rem; }
  .geo-form-row        { grid-template-columns: 1fr; }
  .geo-form-card       { padding: 1.75rem 1.25rem; }
  .geo-tech-grid       { grid-template-columns: 1fr; }
  .geo-sticky-cta      { display: flex; }
  body                 { padding-bottom: 4.5rem; }
  .geo-hero-trust      { display: none; }
  .geo-arch-layer      { padding: 1rem; }
  .geo-viz-search      { margin-left: 0; width: 100%; }
  .geo-viz-search input { width: 100%; }
}

@media (max-width: 420px) {
  .geo-hero-stats .geo-stat-divider { display: none; }
  .geo-cs-metrics { grid-template-columns: 1fr; }
  .geo-viz-controls { flex-direction: column; align-items: stretch; }
}
