/* ============================================================
   AEO SERVICES INDIA PAGE - DESIGN SYSTEM
   Conceptial Media - Answer Engine Optimization
   ============================================================ */

/* --- TOKENS --- */
:root {
  --geo-primary: #e7181b;
  --geo-primary-hover: #bd1215;
  --geo-dark: #0a0a0a;
  --geo-dark-elevated: #111111;
  --geo-text: #0f172a;
  --geo-text-secondary: #475569;
  --geo-text-muted: #94a3b8;
  --geo-border: #e2e8f0;
  --geo-bg: #f8fafc;
  --geo-white: #ffffff;
  --radius: 16px;
  --radius-sm: 12px;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.08);
  --shadow-lg: 0 10px 25px -5px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 40px -10px rgb(0 0 0 / 0.15);
}

.container {
  max-width: 1200px;
}

/* ============================================================
   1. HERO SECTION
   ============================================================ */
.geo-hero {
  background: var(--gradient-premium-dark);
  padding: 140px 0px 0;
  position: relative;
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
}

.hero-grid-bg {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(#bf1a1a24 1px, transparent 1px),
    linear-gradient(90deg, #bf1a1a26 2px, transparent 2px);
  background-size: 60px 60px;
  animation: gridDrift 20s linear infinite;
}

.geo-hero .glow-blob-hero {
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(231, 24, 27, 0.1) 0%,
    transparent 65%
  );
  top: -20%;
  right: -15%;
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.geo-hero .container {
  /* max-width: 900px; */
  margin: 0 auto;
  /* display: flex; */
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  flex: 1;
}

.hero-content-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--geo-white);
  width: 100%;
  padding-bottom: 60px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  color: var(--geo-white);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.hero-badge .badge-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--geo-primary);
  animation: badgePulse 2s infinite;
}

.geo-hero .hero-title {
  font-size: 3.4rem;
  font-weight: 600;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 24px;
  /* max-width: 850px; */
}

.geo-hero .hero-title .highlight {
  color: var(--geo-primary);
}

.geo-hero .hero-desc {
  max-width: 900px;
  margin: 0 auto 32px;
  color: #94a3b8;
  font-size: 1.08rem;
  line-height: 1.75;
}

.geo-hero .hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.btn-primary {
  background: var(--geo-primary);
  color: #fff;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--geo-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(231, 24, 27, 0.35);
}

/* Hero Stats Bar */
.hero-stats-bar {
  position: relative;
  z-index: 3;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 32px 24px;
}

.stats-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 0 20px;
}

.stat-divider {
  width: 1px;
  height: 55px;
  background: rgba(255, 255, 255, 0.08);
}

.stat-label {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--geo-primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.1;
}

.stat-desc {
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 500;
}

/* Floating Enquire */
.float-enquire {
  position: fixed;
  right: 0;
  top: 40%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: right bottom;
  background: var(--geo-primary);
  color: var(--geo-white);
  padding: 14px 28px;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 8px 8px 0 0;
  z-index: 999;
  box-shadow: -4px 0 20px rgba(231, 24, 27, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.float-enquire:hover {
  background: var(--geo-primary-hover);
  padding-bottom: 34px;
}

/* ============================================================
   2. SECTION HEADERS
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 55px;
}

.badge-red {
  display: inline-block;
  color: var(--geo-primary);
  background: rgba(231, 24, 27, 0.06);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  border: 1px solid rgba(231, 24, 27, 0.12);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--geo-text);
  line-height: 1.15;
  margin-bottom: 14px;
}

.section-title .highlight {
  color: var(--geo-primary);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--geo-text-secondary);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ============================================================
   AEO PROCESS SECTION
   ============================================================ */
.aes-process-section {
  position: relative;
  overflow: hidden;
  padding: 105px 24px;
  background: #0a0a0a;
  isolation: isolate;
}
.aes-process-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(231, 24, 27, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(231, 24, 27, 0.08) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}
.aes-process-section::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  top: -240px;
  right: -180px;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(231, 24, 27, 0.22) 0%,
    rgba(231, 24, 27, 0.04) 42%,
    transparent 72%
  );
  pointer-events: none;
}
.aes-process-container {
  max-width: 1200px;
  margin: 0 auto;
}
.aes-process-header {
  max-width: 760px;
  margin: 0 auto 58px;
  text-align: center;
}
.aes-process-badge {
  display: inline-block;
  margin-bottom: 16px;
  padding: 7px 16px;
  border: 1px solid rgba(231, 24, 27, 0.35);
  border-radius: 999px;
  color: #ff5558;
  background: rgba(231, 24, 27, 0.1);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.aes-process-title {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  line-height: 1.15;
}
.aes-process-title span {
  color: #e7181b;
}
.aes-process-subtitle {
  max-width: 680px;
  margin: 0 auto;
  color: #94a3b8;
  font-size: 1rem;
  line-height: 1.75;
}
.aes-process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.aes-process-grid::before {
  content: "";
  position: absolute;
  top: 43px;
  right: 11%;
  left: 11%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(231, 24, 27, 0.65),
    transparent
  );
}
.aes-process-card {
  position: relative;
  z-index: 1;
  min-height: 300px;
  padding: 30px 24px 26px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(12px);
  transition: all 0.35s ease;
}
.aes-process-card:hover {
  border-color: rgba(231, 24, 27, 0.65);
  background: rgba(231, 24, 27, 0.08);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
  transform: translateY(-8px);
}
.aes-process-number {
  position: absolute;
  top: 14px;
  right: 18px;
  color: rgba(255, 255, 255, 0.18);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
}
.aes-process-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 25px;
  border: 1px solid rgba(231, 24, 27, 0.35);
  border-radius: 50%;
  color: #e7181b;
  background: rgba(231, 24, 27, 0.12);
  font-size: 1.25rem;
  transition: all 0.35s ease;
}
.aes-process-card:hover .aes-process-icon {
  color: #ffffff;
  background: #e7181b;
  transform: rotate(-8deg) scale(1.08);
}
.aes-process-card h3 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 600;
}
.aes-process-card p {
  margin: 0 0 22px;
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.65;
}
.aes-process-tag {
  display: inline-block;
  color: #ff6769;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.aes-process-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 58px;
  padding: 26px 30px;
  border: 1px solid rgba(231, 24, 27, 0.25);
  border-radius: 14px;
  background: linear-gradient(
    100deg,
    rgba(231, 24, 27, 0.14),
    rgba(255, 255, 255, 0.04)
  );
}
.aes-process-cta strong {
  display: block;
  margin-bottom: 7px;
  color: #ffffff;
  font-size: 1.05rem;
}
.aes-process-cta span {
  color: #94a3b8;
  font-size: 0.9rem;
}
.aes-process-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  padding: 13px 21px;
  border-radius: 8px;
  color: #ffffff;
  background: #e7181b;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.aes-process-button:hover {
  color: #ffffff;
  background: #bd1215;
  box-shadow: 0 10px 25px rgba(231, 24, 27, 0.3);
  transform: translateY(-2px);
}
@media (max-width: 992px) {
  .aes-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .aes-process-grid::before {
    display: none;
  }
}
@media (max-width: 600px) {
  .aes-process-section {
    padding: 70px 18px;
  }
  .aes-process-header {
    margin-bottom: 40px;
  }
  .aes-process-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .aes-process-card {
    min-height: auto;
  }
  .aes-process-cta {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 35px;
    padding: 24px 20px;
  }
  .aes-process-button {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   3. WHY CHOOSE AEO SECTION
   ============================================================ */
.why-geo-section {
  padding: 100px 24px;
  background: var(--geo-white);
}

.why-geo-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.why-geo-left .badge-red {
  margin-bottom: 14px;
}

.why-geo-left .section-title {
  text-align: left;
  margin-bottom: 18px;
}

.why-geo-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--geo-text-secondary);
  margin-bottom: 24px;
}

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

.geo-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--geo-text);
  line-height: 1.5;
  font-weight: 500;
}

.geo-checklist li i {
  color: var(--geo-primary);
  margin-top: 2px;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.why-geo-right {
  display: flex;
  justify-content: center;
}

.why-geo-right img {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--geo-border);
}

/* ============================================================
   4. SERVICES GRID SECTION
   ============================================================ */
.services-grid-section {
  padding: 100px 24px;
  background: var(--geo-bg);
}

.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--geo-white);
  border: 1px solid var(--geo-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover {
  border-color: rgba(231, 24, 27, 0.2);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--geo-text);
  padding-bottom: 12px;
  margin-bottom: 14px;
  border-bottom: 2px solid #f1f5f9;
  position: relative;
  line-height: 1.3;
}

.service-card h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 40px;
  height: 2px;
  background: var(--geo-primary);
  transition: width 0.3s ease;
}

.service-card:hover h3::after {
  width: 80px;
}

.service-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--geo-text-secondary);
}

/* ============================================================
   GXS SECTOR SECTION — Completely Unique Namespace
   ============================================================ */
.gxs-sector-section {
  padding: 100px 24px;
  background: var(--geo-white, #ffffff);
}

.gxs-container {
  max-width: 1200px;
  margin: 0 auto;
}

.gxs-header {
  text-align: center;
  margin-bottom: 56px;
}

.gxs-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(231, 24, 27, 0.08);
  color: #e7181b;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.gxs-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 600;
  color: var(--geo-text, #1a1a1a);
  line-height: 1.2;
  margin-bottom: 16px;
}

.gxs-accent {
  color: var(--geo-primary, #e7181b);
}

.gxs-subtitle {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--geo-text-secondary, #555555);
}

/* ---- Grid ---- */
.gxs-sector-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ---- Card ---- */
.gxs-sector-card {
  background: var(--geo-white, #ffffff);
  border: 1px solid var(--geo-border, #e5e5e5);
  border-radius: var(--radius, 16px);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gxs-sector-card:hover {
  border-color: rgba(231, 24, 27, 0.2);
  box-shadow: 0 20px 40px -12px rgba(231, 24, 27, 0.12);
  transform: translateY(-6px);
}

/* ---- Icon (Image jaisa circular soft bg) ---- */
.gxs-sector-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(231, 24, 27, 0.08);
  color: var(--geo-primary, #e7181b);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.35s ease;
}

.gxs-sector-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 2;
}

.gxs-sector-card:hover .gxs-sector-icon {
  background: var(--geo-primary, #e7181b);
  color: #ffffff;
  transform: scale(1.08);
}

/* ---- Typography ---- */
.gxs-sector-name {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--geo-text, #1a1a1a);
  margin-bottom: 12px;
}

.gxs-sector-desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--geo-text-secondary, #555555);
  margin: 0;
}

/* ---- Responsive ---- */
@media (max-width: 992px) {
  .gxs-sector-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .gxs-sector-grid {
    grid-template-columns: 1fr;
  }

  .gxs-sector-section {
    padding: 70px 18px;
  }

  .gxs-sector-card {
    padding: 28px 22px;
  }
}

/* ============================================================
   6. WHY US SECTION
   ============================================================ */
.why-us-section {
  padding: 100px 24px;
  background: var(--geo-bg);
}

.why-us-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 70px;
  align-items: start;
}

.why-us-left {
  position: sticky;
  top: 120px;
}

.why-us-left .badge-red {
  margin-bottom: 14px;
}

.why-us-left .section-title {
  text-align: left;
  margin-bottom: 18px;
}

.why-us-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--geo-text-secondary);
  margin-bottom: 24px;
}

.why-us-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.benefit-card {
  background: var(--geo-white);
  border: 1px solid var(--geo-border);
  border-radius: var(--radius-sm);
  padding: 26px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  border-color: rgba(231, 24, 27, 0.15);
  box-shadow: var(--shadow-md);
  transform: translateX(5px);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(231, 24, 27, 0.06);
  color: var(--geo-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  background: var(--geo-primary);
  color: var(--geo-white);
}

.benefit-content {
  flex: 1;
}

.benefit-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--geo-text);
  margin-bottom: 6px;
  line-height: 1.3;
}

.benefit-content p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--geo-text-secondary);
}

/* Responsive */
@media (max-width: 991px) {
  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .why-us-left {
    position: static;
  }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes gridDrift {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 60px 60px;
  }
}

@keyframes badgePulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}

.animate-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   RESPONSIVE: 1200px
   ============================================================ */
@media (max-width: 1200px) {
  .geo-hero .hero-title {
    font-size: 3rem;
  }

  .why-geo-grid,
  .why-us-grid,
  .faq-grid {
    gap: 50px;
  }

  .faq-main-heading {
    font-size: 2rem;
  }
}

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

  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .why-us-left {
    position: static;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .faq-info-col {
    position: static;
    order: 2;
  }

  .faq-accordion-col {
    order: 1;
  }
}

/* ============================================================
   RESPONSIVE: 991px
   ============================================================ */
@media (max-width: 991px) {
  .geo-hero {
    padding: 120px 0px 0;
    min-height: auto;
  }

  .geo-hero .hero-title {
    font-size: 2.6rem;
  }

  .geo-hero .hero-desc {
    font-size: 1rem;
  }

  .stats-grid {
    flex-wrap: wrap;
    gap: 20px;
  }

  .stat-item {
    flex: 1 1 40%;
    padding: 0 10px;
  }

  .stat-divider {
    display: none;
  }

  .why-geo-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .why-geo-left .section-title {
    text-align: center;
  }

  .geo-checklist {
    align-items: center;
  }

  .geo-checklist li {
    justify-content: center;
    text-align: left;
  }

  .why-geo-right img {
    max-width: 440px;
  }

  .geo-hero,
  .why-geo-section,
  .services-grid-section,
  .gxs-sector-section,
  .why-us-section,
  .faq-section {
    padding: 80px 20px;
  }
}

/* ============================================================
   RESPONSIVE: 768px
   ============================================================ */
@media (max-width: 768px) {
  .geo-hero .hero-title {
    font-size: 2.1rem;
  }

  .geo-hero .hero-desc {
    font-size: 0.95rem;
  }

  .section-title,
  .faq-main-heading {
    font-size: 1.9rem;
  }

  .services-grid,
  .gxs-sector-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card,
  .gxs-sector-card {
    padding: 26px 22px;
  }

  .faq-trigger {
    font-size: 0.95rem;
    padding: 18px 0;
  }

  .float-enquire {
    display: none;
  }
}

/* ============================================================
   RESPONSIVE: 480px
   ============================================================ */
@media (max-width: 480px) {
  .geo-hero {
    padding: 100px 16px 0;
  }

  .geo-hero .hero-title {
    font-size: 1.75rem;
  }

  .geo-hero .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .geo-hero .btn-primary {
    width: 100%;
    justify-content: center;
  }

  .hero-stats-bar {
    padding: 24px 16px;
  }

  .stat-item {
    flex: 1 1 45%;
    padding: 0 5px;
  }

  .stat-value {
    font-size: 1.3rem;
  }

  .stat-desc {
    font-size: 0.7rem;
  }

  .section-title,
  .faq-main-heading {
    font-size: 1.6rem;
  }

  .why-geo-section,
  .services-grid-section,
  .gxs-sector-section,
  .why-us-section,
  .faq-section {
    padding: 60px 16px;
  }

  .geo-checklist li {
    font-size: 0.9rem;
  }

  .benefit-card {
    padding: 22px 20px;
  }

  .faq-form-card {
    padding: 24px 20px;
  }

  .faq-form-card h3 {
    font-size: 1.4rem;
  }
}

/* ============================================================
   MOBILE TYPOGRAPHY OVERRIDES
   ============================================================ */
@media (max-width: 768px) {
  .geo-hero .hero-title {
    font-size: 1.85rem !important;
    font-weight: 600 !important;
  }

  .section-title,
  .faq-main-heading {
    font-size: 1.75rem !important;
    font-weight: 600 !important;
  }

  .service-card h3,
  .gxs-sector-name,
  .benefit-card h4,
  .faq-form-card h3 {
    font-size: 1.15rem !important;
    font-weight: 600 !important;
  }

  .geo-hero .hero-desc,
  .section-subtitle,
  .why-geo-desc,
  .why-us-desc,
  .service-card p,
  .gxs-sector-desc,
  .benefit-card p,
  .faq-content p,
  .geo-checklist li {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
  }
}

@media (max-width: 480px) {
  .geo-hero .hero-title {
    font-size: 1.55rem !important;
  }

  .section-title,
  .faq-main-heading {
    font-size: 1.5rem !important;
  }

  .service-card h3,
  .gxs-sector-name,
  .benefit-card h4 {
    font-size: 1.1rem !important;
  }

  .geo-hero .hero-desc,
  .section-subtitle,
  .why-geo-desc,
  .why-us-desc,
  .service-card p,
  .gxs-sector-desc,
  .benefit-card p,
  .faq-content p,
  .geo-checklist li {
    font-size: 0.9rem !important;
    line-height: 1.55 !important;
  }
}
