/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #070B2A;
  --navy-mid: #0D1240;
  --navy-card: #111640;
  --blue: #2563EB;
  --blue-light: #3B82F6;
  --orange: #F97316;
  --orange-dark: #EA6D08;
  --white: #FFFFFF;
  --gray-100: #F8FAFC;
  --gray-200: #E2E8F0;
  --gray-400: #94A3B8;
  --gray-600: #64748B;
  --gray-800: #1E293B;
  --text: #1A1A2E;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.14);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TYPOGRAPHY HELPERS ===== */
.text-orange { color: var(--orange); }
.text-blue   { color: var(--blue-light); }
.ml-4 { margin-left: 8px; }

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: 100px;
  padding: 4px 14px;
  margin-bottom: 16px;
}

.section-label-light {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(249,115,22,0.15);
  border: 1px solid rgba(249,115,22,0.3);
  border-radius: 100px;
  padding: 4px 14px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title-light {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--gray-600);
  max-width: 620px;
  margin-bottom: 48px;
}

.section-sub-light {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin: 0 auto 48px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-primary:hover { background: #0e1450; border-color: #0e1450; }

.btn-orange {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: 0 4px 20px rgba(249,115,22,0.35);
}
.btn-orange:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(249,115,22,0.45);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--gray-200);
}
.btn-outline:hover { border-color: var(--gray-400); background: var(--gray-100); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }

.btn-sm  { font-size: 13px; padding: 9px 18px; }
.btn-lg  { font-size: 16px; padding: 15px 28px; width: 100%; justify-content: center; }

/* ===== BADGES ===== */
.badge-new {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--orange);
  color: #fff;
  padding: 2px 8px;
  border-radius: 100px;
  vertical-align: middle;
}

/* ===== NAV ===== */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 68px;
}

.logo {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}
.logo-geo   { color: var(--blue); }
.logo-mogul { color: var(--navy); }
.logo-mogul-white { color: var(--white); }
.logo-sm { font-size: 20px; }

.nav-links {
  display: flex;
  gap: 4px;
  margin-left: auto;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  padding: 6px 12px;
  border-radius: 6px;
  transition: all 0.15s;
}
.nav-links a:hover { color: var(--text); background: var(--gray-100); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  margin-left: auto;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #F0F4FF 0%, #FFF7F0 50%, #F0F4FF 100%);
  padding: 80px 0 72px;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 64px;
  align-items: center;
}

.hero-content { }

.hero-content .badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 20px;
}

.hero-content h1 {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-sub {
  font-size: 17px;
  color: var(--gray-600);
  max-width: 500px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.stat-num {
  display: block;
  font-size: 32px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 12px;
  color: var(--gray-600);
  margin-top: 4px;
}

/* HERO CARD */
.hero-card-wrap {
  position: relative;
}

.hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dot-green { background: #22C55E; }

.card-title-sm {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-600);
}

.card-quote {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.4;
}

.card-body-sm {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 16px;
}

.card-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.chip {
  font-size: 12px;
  font-weight: 600;
  background: #EFF6FF;
  color: var(--blue);
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid #BFDBFE;
}

.chip-orange {
  background: #FFF7ED;
  color: var(--orange);
  border-color: #FED7AA;
}

.card-bot {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}

.bot-logo {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--blue), #8B5CF6);
  color: #fff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
}

/* ===== TRUSTED BY ===== */
.trusted {
  background: var(--navy);
  padding: 72px 0;
  text-align: center;
}

.trusted-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 12px;
}

.trusted-title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 40px;
}

.logo-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.brand-logo {
  font-size: 16px;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  letter-spacing: -0.3px;
  transition: color 0.2s;
}
.brand-logo:hover { color: rgba(255,255,255,0.8); }

.trusted-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.tstat-num {
  display: block;
  font-size: 44px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.tstat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

/* ===== SERVICES ===== */
.services {
  padding: 96px 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.2s;
}
.service-card:hover {
  border-color: #BFDBFE;
  box-shadow: 0 4px 24px rgba(37,99,235,0.08);
  transform: translateY(-2px);
}

.service-card:last-child {
  grid-column: span 2;
}

.service-card--highlight {
  background: linear-gradient(135deg, #EFF6FF, #F0F9FF);
  border-color: #BFDBFE;
}

.service-icon {
  font-size: 28px;
  margin-bottom: 14px;
}

.service-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}

.service-card--link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  cursor: pointer;
}

.service-card-cta {
  display: inline-block;
  margin-top: auto;
  padding-top: 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  transition: gap 0.2s;
}

.service-card--link:hover .service-card-cta {
  text-decoration: underline;
}

/* ===== FULL-STACK ===== */
.full-stack {
  padding: 80px 0;
  background: var(--gray-100);
}

.fs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.fs-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.2s;
}
.fs-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }

.fs-icon {
  font-size: 24px;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.fs-icon.blue   { background: #EFF6FF; }
.fs-icon.orange { background: #FFF7ED; }

.fs-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.fs-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ===== HOW GEO WORKS ===== */
.how-works {
  background: var(--navy);
  padding: 96px 0;
  text-align: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 48px;
  left: calc(16.67% + 24px);
  right: calc(16.67% + 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--blue-light));
  z-index: 0;
}

.step-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 32px 24px;
  position: relative;
  text-align: left;
  transition: all 0.2s;
}
.step-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-size: 20px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.step-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.step-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* ===== WHY GEO ===== */
.why-geo {
  padding: 96px 0;
  background: var(--white);
}

.compare-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.compare-table thead tr {
  background: var(--navy);
}

.compare-table th {
  padding: 18px 24px;
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.compare-table th.col-geo {
  color: var(--orange);
}

.compare-table tbody tr {
  border-bottom: 1px solid var(--gray-200);
  transition: background 0.15s;
}
.compare-table tbody tr:last-child { border-bottom: none; }
.compare-table tbody tr:hover { background: var(--gray-100); }

.compare-table td {
  padding: 16px 24px;
  color: var(--gray-600);
}

.compare-table td:first-child {
  font-weight: 600;
  color: var(--text);
}

.compare-table td.col-geo {
  color: var(--blue);
  font-weight: 600;
}

/* ===== RESULTS ===== */
.results {
  padding: 96px 0;
  background: var(--gray-100);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.result-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.2s;
}
.result-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }

.result-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
}

.tag-blue   { background: #EFF6FF; color: var(--blue); }
.tag-green  { background: #F0FDF4; color: #16A34A; }
.tag-orange { background: #FFF7ED; color: var(--orange); }

.result-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.4;
}

.result-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 20px;
}

.result-metrics {
  display: flex;
  gap: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
}

.metric-num {
  display: block;
  font-size: 26px;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
}

.metric-label {
  display: block;
  font-size: 12px;
  color: var(--gray-400);
  margin-top: 4px;
}

/* ===== WHY US ===== */
.why-us {
  padding: 96px 0;
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  padding: 28px 24px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: all 0.2s;
}
.why-card:hover {
  border-color: #BFDBFE;
  background: #FAFCFF;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.why-icon {
  font-size: 28px;
  margin-bottom: 14px;
}

.why-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 96px 0;
  background: linear-gradient(135deg, #F0F4FF, #FFF7F0, #F0F4FF);
}

.cta-box {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.cta-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.2;
}

.cta-sub {
  font-size: 16px;
  color: var(--gray-600);
  margin-bottom: 36px;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.cta-form input {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}
.cta-form input:focus { border-color: var(--blue-light); box-shadow: 0 0 0 3px rgba(59,130,246,0.1); }
.cta-form input::placeholder { color: var(--gray-400); }

.form-note {
  font-size: 13px;
  color: var(--gray-400);
  text-align: center;
}

/* ===== FOOTER CTA BANNER ===== */
.footer-cta {
  background: var(--navy);
  padding: 80px 0;
}

.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.footer-cta-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.footer-cta-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 12px;
}

.footer-cta-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  max-width: 500px;
}

.footer-cta-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

/* ===== FOOTER ===== */
.footer {
  background: #040714;
  padding: 64px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  margin-top: 12px;
  max-width: 260px;
  line-height: 1.6;
}

.social-row {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.2s;
}
.social-link:hover { background: var(--blue); color: #fff; }

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

.footer-bottom a {
  color: rgba(255,255,255,0.5);
  margin-left: 16px;
}

.footer-bottom-badges {
  display: flex;
  gap: 10px;
}

.fbadge {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  padding: 4px 12px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 860px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-card-wrap { display: none; }

  .trusted-stats {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-card:last-child {
    grid-column: span 1;
  }

  .fs-grid,
  .steps-grid,
  .results-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid::before { display: none; }

  .footer-cta-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

  .footer-cta-btns {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav .btn-primary { display: none; }

  .hero { padding: 56px 0; }
  .hero-stats { flex-direction: column; gap: 20px; }

  .logo-row { gap: 24px; }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up {
  animation: fadeUp 0.6s ease both;
}

.fade-up-d1 { animation-delay: 0.1s; }
.fade-up-d2 { animation-delay: 0.2s; }
.fade-up-d3 { animation-delay: 0.3s; }
