/* ============================================================
   AI SEARCH OPTIMIZATION INDIA PAGE - DESIGN SYSTEM
   Conceptial Media
   ============================================================ */

/* --- CSS VARIABLES & 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);
}

/* ============================================================
   SHARED & UTILITY STYLES
   ============================================================ */
.container {
  max-width: 1200px;
}

.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: 700;
  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.2;
  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;
}

/* ============================================================
   1. HERO SECTION
   ============================================================ */
.ai-hero {
  background: var(--gradient-premium-dark);
  padding: 140px 0 0;
  position: relative;
  overflow: hidden;
  min-height: auto;
  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;
}

.ai-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;
}

.ai-hero .container {
  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%;
  margin: 0 auto;
  padding-bottom: 0;
}

.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;
}

.ai-hero .hero-title {
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 24px;
}

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

.ai-hero .hero-desc {
  max-width: 900px;
  margin: 0 auto 32px;
  color: #cbd5e1;
  font-size: 1.2rem;
  line-height: 1.8;
}

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

.btn-primary {
  background: var(--geo-primary);
  color: #fff;
  padding: 15px 38px;
  border-radius: 60px;
  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;
  margin-top: 50px;
  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-value {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.1;
}

.stat-desc {
  font-size: 0.78rem;
  color: #64748b;
  font-weight: 500;
  max-width: 220px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Floating Enquire Badge */
.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. AI PLATFORMS SECTION
   ============================================================ */
.ai-platforms-section {
  padding: 100px 24px;
  background: #f8fafc;
  position: relative;
  overflow: visible;
}

.ai-platforms-section .container {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  column-gap: clamp(42px, 7vw, 96px);
  align-items: start;
}

/* =========================
   LEFT SIDE - STICKY
========================= */

.ai-platforms-section .section-header {
  position: sticky;
  top: 120px;
  align-self: start;

  max-width: none;
  margin: 0;
  text-align: left;

  height: fit-content;
}

.ai-platforms-section .section-title {
  text-align: left;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
}

.ai-platforms-section .section-subtitle {
  max-width: 440px;
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

/* =========================
   RIGHT SIDE - SLIDING CARDS
========================= */

.ai-platforms-section .platform-grid {
  width: 100%;
  max-width: none;
  margin: 0;

  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;

  /* Important */
  overflow: visible;
}

/* =========================
   PLATFORM CARD
========================= */

.ai-platforms-section .platform-card {
  position: relative;

  display: grid;
  grid-template-columns: 58px 1fr;
  column-gap: 20px;
  align-items: start;

  padding: 28px 30px;

  border: 1px solid #e2e8f0;
  border-left: 4px solid transparent;
  border-radius: 20px;

  background: #fff;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);

  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease;

  will-change: transform;
}

/* Hover */
.ai-platforms-section .platform-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.07);
  transform: translateY(-6px);
}

/* =========================
   ICON
========================= */

.ai-platforms-section .platform-icon {
  grid-row: 1 / span 3;

  width: 54px;
  height: 54px;

  margin: 0;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;

  background: rgba(231, 24, 27, 0.05);
  color: var(--geo-primary);

  font-size: 1.1rem;

  transition: all 0.3s ease;
}

.ai-platforms-section .platform-card:hover .platform-icon {
  background: var(--geo-primary);
  color: #fff;
}

/* =========================
   CARD TEXT
========================= */

.ai-platforms-section .platform-card h3 {
  font-size: 1.05rem;
  font-weight: 700;

  color: var(--geo-text);

  margin-top: 2px;
  margin-bottom: 10px;

  position: relative;
  padding-bottom: 10px;
}

.ai-platforms-section .platform-card p {
  font-size: 0.86rem;

  color: var(--geo-text-secondary);

  line-height: 1.55;

  margin-bottom: 12px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
  .ai-platforms-section .container {
    grid-template-columns: 1fr;
    row-gap: 50px;
  }

  .ai-platforms-section .section-header {
    position: relative;
    top: auto;
  }

  .ai-platforms-section .platform-grid {
    overflow: visible;
  }
}

/* ============================================================
   3. ABOUT AI SEARCH OPTIMISATION SECTION
   ============================================================ */
.about-ai-section {
  padding: 100px 24px;
  background: #fff;
}

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

.about-ai-left .section-title {
  text-align: left;
  margin-bottom: 18px;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
}

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

.about-ai-stat {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 28px;
  padding: 24px;
  background: var(--geo-white);
  border-radius: 18px;
  border-left: 4px solid var(--geo-primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.about-ai-stat .stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--geo-primary);
  line-height: 1;
}

.about-ai-stat .stat-label {
  font-size: 0.9rem;
  color: var(--geo-text-secondary);
  line-height: 1.4;
}

.aeo-geo-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.aeo-geo-card {
  background: var(--geo-white);
  border: 1px solid var(--geo-border);
  border-radius: 20px;
  padding: 35px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: all 0.35s ease;
}

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

.aeo-geo-card .card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.aeo-geo-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  background: var(--geo-primary);
  padding: 4px 12px;
  border-radius: 20px;
}

.aeo-geo-tag.geo {
  background: var(--geo-dark);
}

.card-arrow {
  color: var(--geo-text-muted);
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.aeo-geo-card:hover .card-arrow {
  color: var(--geo-primary);
  transform: translateX(4px);
}

.aeo-geo-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--geo-text);
  margin-bottom: 10px;
  line-height: 1.3;
}

.aeo-geo-card p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--geo-text-secondary);
  margin-bottom: 14px;
}

.aeo-tactics {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.aeo-tactics li {
  font-size: 0.82rem;
  color: var(--geo-text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.aeo-tactics li i {
  color: var(--geo-primary);
  font-size: 0.7rem;
}

/* ============================================================
   4. WHY INDIAN BUSINESSES SECTION
   ============================================================ */
.why-ai-section {
  position: relative;
  overflow: hidden;
  padding: 100px 24px;
  background: var(--gradient-premium-dark);
}

.why-ai-section::after {
  content: "01";
  position: absolute;
  right: 7%;
  bottom: -34px;
  color: rgba(255, 255, 255, 0.045);
  font-size: 13rem;
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
}

.why-ai-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.why-ai-content .badge-red {
  color: #ff716d;
  background: rgba(231, 24, 27, 0.13);
  border-color: rgba(255, 113, 109, 0.25);
}

.why-ai-content .section-title {
  text-align: left;
  margin-bottom: 18px;
  color: #fff;
  font-size: 2.5rem;
  font-weight: 600;
}

.why-ai-content .section-title .highlight {
  color: #ff716d;
}

.why-ai-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: #b9c5cc;
  margin-bottom: 18px;
  max-width: 900px;
}

.why-ai-desc strong {
  color: #fff;
}

.why-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
  max-width: 900px;
}

.why-stat-item {
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.why-stat-number {
  display: block;
  font-size: 2.35rem;
  font-weight: 800;
  color: #ff716d;
  line-height: 1.2;
  margin-bottom: 6px;
}

.why-stat-desc {
  font-size: 0.85rem;
  color: #aab8c0;
  line-height: 1.4;
  max-width: 180px;
}

/* ============================================================
   5. AI VISIBILITY SIGNALS SECTION
   ============================================================ */
.ais-signals-section {
  position: relative;
  overflow: hidden;
  padding: 100px 24px;
  background: #f8fafc;
}

.ais-signals-section::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -180px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(231, 24, 27, 0.1) 0%,
    transparent 68%
  );
  pointer-events: none;
}

.ais-signals-header {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto 58px;
  text-align: center;
}

.ais-signals-header .section-title {
  margin-bottom: 16px;
}

.ais-signals-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 70px;
  max-width: 1200px;
  margin: 0 auto;
}

.ais-signals-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.ais-signal-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 25px 24px;
  border: 1px solid var(--geo-border);
  border-radius: 20px;
  background: #fff;
  transition: all 0.35s ease;
}

.ais-signal-item:hover {
  border-color: rgba(231, 24, 27, 0.3);
  box-shadow: var(--shadow-lg);
  transform: translateX(6px);
}

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

.ais-signal-item:hover .ais-signal-icon {
  color: #ffffff;
  background: var(--geo-primary);
  transform: scale(1.08);
}

.ais-signal-label {
  display: block;
  margin-bottom: 5px;
  color: var(--geo-primary);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.ais-signal-item h3 {
  margin: 0 0 7px;
  color: var(--geo-text);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
}

.ais-signal-item p {
  margin: 0;
  color: var(--geo-text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Visibility Card */
.ais-visibility-card {
  position: relative;
  overflow: hidden;
  padding: 32px 30px;
  border: 1px solid rgba(231, 24, 27, 0.3);
  border-radius: 20px;
  color: #ffffff;
  background:
    linear-gradient(145deg, rgba(231, 24, 27, 0.16), transparent 45%),
    var(--geo-dark);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.16);
}

.ais-visibility-card::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -110px;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(231, 24, 27, 0.24);
  border-radius: 50%;
  box-shadow:
    0 0 0 25px rgba(231, 24, 27, 0.04),
    0 0 0 50px rgba(231, 24, 27, 0.03);
  pointer-events: none;
}

.ais-card-top {
  display: flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.ais-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #42d392;
  box-shadow: 0 0 0 5px rgba(66, 211, 146, 0.12);
}

.ais-card-status {
  margin-left: auto;
  color: #42d392;
  font-size: 0.62rem;
}

.ais-score-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px 0;
}

.ais-score-circle {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex: 0 0 105px;
  width: 105px;
  height: 105px;
  padding-top: 36px;
  border: 7px solid var(--geo-primary);
  border-right-color: rgba(231, 24, 27, 0.25);
  border-radius: 50%;
}

.ais-score-circle strong {
  color: #ffffff;
  font-size: 2rem;
  line-height: 1;
}

.ais-score-circle span {
  color: #94a3b8;
  font-size: 0.75rem;
}

.ais-score-wrap h3 {
  margin: 0 0 7px;
  color: #ffffff;
  font-size: 1.1rem;
}

.ais-score-wrap p {
  margin: 0;
  color: #94a3b8;
  font-size: 0.85rem;
  line-height: 1.5;
}

.ais-progress-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.ais-progress-row > div:first-child {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  color: #cbd5e1;
  font-size: 0.78rem;
}

.ais-progress-row strong {
  color: #ffffff;
}

.ais-progress-bar {
  height: 6px;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
}

.ais-progress-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #e7181b, #ff6769);
}

.ais-card-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #94a3b8;
  font-size: 0.78rem;
}

.ais-card-footer i {
  color: #42d392;
}

/* ============================================================
   6. PROCESS (METHODOLOGY) SECTION
   ============================================================ */
.process-section {
  padding: 100px 24px;

  background: rgba(133, 2, 2, 0.03);




}

.process-layout {
  display: block;
}

.process-intro {
  max-width: 760px;

  margin: 0 auto 52px;

  text-align: center;
}

.process-intro .section-title {
  text-align: center;

  font-size: 2.5rem;

  font-weight: 600;

  line-height: 1.2;
}

.process-intro .section-subtitle {
  max-width: 700px;

  margin-left: auto;

  margin-right: auto;

  text-align: center;
}

.process-intro-note {
  display: none;
}

.process-slider {
  max-height: none;

  overflow: visible;

  padding: 0;
}

.process-slider .process-timeline {
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 30px;
}

.process-slider .process-step {
  min-height: 326px;

  display: block;

  padding: 40px 30px;

  border: 1px solid #e2e8f0;

  border-radius: 20px;

  background: #fff;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);

  transition: all 0.3s ease;
}

.process-slider .process-step:hover {
  border-color: rgba(231, 24, 27, 0.15);

  background: #fff;

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.07);

  transform: translateY(-8px);
}

.process-slider .step-visual {
  display: none;
}

.process-slider .step-content {
  padding: 0;
}

.process-slider .step-icon-wrap {
  width: 60px;

  height: 60px;

  margin-bottom: 26px;

  border-radius: 12px;

  background: rgba(231, 24, 27, 0.05);

  color: var(--geo-primary);

  font-size: 1.35rem;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  transition:
    background 0.3s ease,
    color 0.3s ease;
}

/* =========================
   CARD HOVER
   ICON = RED BACKGROUND
   ICON = WHITE
========================= */

.process-slider .process-step:hover .step-icon-wrap {
  background: var(--geo-primary);

  color: #fff;
}

/* =========================
   HEADING
========================= */

.process-slider .step-content h4 {
  padding-bottom: 12px;

  border-bottom: 2px solid #f1f5f9;

  color: var(--geo-text);

  font-size: 1.35rem;

  font-weight: 600;

  position: relative;
}

/* =========================
   RED LINE
========================= */

.process-slider .step-content h4::after {
  content: "";

  display: block;

  width: 40px;

  height: 2px;

  margin-top: 12px;

  margin-bottom: -14px;

  background: var(--geo-primary);

  transition: width 0.3s ease;
}

/* =========================
   HOVER
   RED LINE +10PX
========================= */

.process-slider .process-step:hover .step-content h4::after {
  width: 50px;
}

/* =========================
   SUB HEADING
========================= */

.process-slider .step-sub {
  margin-top: 18px;

  color: var(--geo-text-muted);

  font-size: 0.8rem;

  font-weight: 600;

  text-transform: uppercase;

  letter-spacing: 0.8px;

  margin-bottom: 10px;
}

/* =========================
   DESCRIPTION
========================= */

.process-slider .step-content p {
  color: var(--geo-text-secondary);

  font-size: 0.92rem;

  line-height: 1.65;

  margin: 0;
}

/* =========================
   TABLET
========================= */

@media (max-width: 900px) {
  .process-slider .process-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {
  .process-section {
    padding: 70px 18px;
  }

  .process-slider .process-timeline {
    grid-template-columns: 1fr;

    gap: 20px;
  }

  .process-slider .process-step {
    padding: 30px 24px;
  }

  .process-intro .section-title {
    font-size: 2rem;
  }
}
/* ============================================================
   7. INDUSTRIES SECTION
   ============================================================ */

.industries-section {
  padding: 100px 24px;
  background: #fff;
}

.industries-section .container {
  display: block;
}

.industries-section .industries-header {
  max-width: 760px;
  margin: 0 auto 52px;
  text-align: center;
}

.industries-section .industries-header .section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
}

.industries-section .industries-desc {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--geo-text-secondary);
}

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

.industries-section .industry-card {
  display: block;
  min-height: 305px;
  padding: 40px 30px;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}

.industries-section .industry-card:hover {
  border-color: rgba(231, 24, 27, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.07);
  transform: translateY(-8px);
}

.industries-section .industry-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 28px;
  border-radius: 12px;
  background: rgba(231, 24, 27, 0.05);
  color: var(--geo-primary);
  font-size: 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.industries-section .industry-name {
  display: block;
  padding: 0 0 12px;
  border-top: 0;

  font-size: 1.25rem;
  font-weight: 600;
  color: var(--geo-text);
}

.industries-section .industry-card p {
  margin: 18px 0 0;
  color: var(--geo-text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Only color fix */
.industries-section .industry-card {
  background: #fff !important;
  color: var(--geo-text) !important;
}

.industries-section .industry-card::before,
.industries-section .industry-card::after {
  background: transparent !important;
  opacity: 0 !important;
}

.industries-section .industry-name {
  color: var(--geo-text) !important;
}

.industries-section .industry-card p {
  color: var(--geo-text-secondary) !important;
}

.industries-section .industry-icon {
  background: rgba(231, 24, 27, 0.05) !important;
  color: var(--geo-primary) !important;
}

.industries-section .industry-card:hover .industry-icon {
  background: var(--geo-primary) !important;
  color: #fff !important;
}

/* ============================================================
   8. RESULTS & IMPACT SECTION
   ============================================================ */
.results-section {
  padding: 100px 24px;
  background: rgba(133, 2, 2, 0.03);

}

.results-header {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.results-header .section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
}

.results-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--geo-text-secondary);
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

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

.result-card {
  background: #f8fafc;
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--geo-border);
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

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

.result-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--geo-primary);
  line-height: 1.1;
  margin-bottom: 10px;
}

.result-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--geo-text);
  margin-bottom: 8px;
}

.result-card p {
  font-size: 0.88rem;
  color: var(--geo-text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* ============================================================
   9. FAQ SECTION (RESPONSIVE STYLES)
   ============================================================ */
/* Default desktop styles are handled in global main.css / style.css.
   Responsive overrides are grouped below in the media queries. */

/* ============================================================
   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 MEDIA QUERIES
   ============================================================ */

/* --- 1200px (Large Tablets & Small Desktops) --- */
@media (max-width: 1200px) {
  .ai-hero .hero-title {
    font-size: 3rem;
  }
  .about-ai-grid {
    gap: 50px;
  }
}

/* --- 1024px (Tablets landscape) --- */
@media (max-width: 1024px) {
  .about-ai-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ais-signals-layout {
    grid-template-columns: 1fr;
    gap: 45px;
    max-width: 720px;
  }
  .ais-visibility-card {
    max-width: 560px;
    width: 100%;
    margin: 0 auto;
  }
}

/* --- 991px (Tablets portrait) --- */
@media (max-width: 991px) {
  .ai-hero {
    padding: 120px 0px 0;
    min-height: auto;
  }
  .ai-hero .hero-title {
    font-size: 2.6rem;
  }
  .ai-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;
  }

  .about-ai-section,
  .why-ai-section,
  .process-section,
  .industries-section,
  .results-section,
  .faq-section,
  .ai-platforms-section {
    padding: 80px 20px;
  }

  .about-ai-left {
    text-align: center;
  }
  .about-ai-left .section-title {
    text-align: center;
  }
  .why-ai-content .section-title {
    text-align: center;
  }
  .industries-header .section-title {
    text-align: center;
  }
  .results-header .section-title {
    text-align: center;
  }
  .industries-desc,
  .results-desc {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .about-ai-stat {
    justify-content: center;
    text-align: left;
  }
  .why-stats-row {
    grid-template-columns: repeat(3, 1fr);
    max-width: 100%;
  }
  .industries-grid {
    justify-items: center;
  }
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Editorial & Layout adjustments */
  .ai-platforms-section .container,
  .industries-section .container,
  .process-layout {
    display: block;
  }

  .ai-platforms-section .section-header,
  .industries-section .industries-header,
  .process-intro {
    position: static;
    margin-bottom: 44px;
  }

  .ai-platforms-section .section-title,
  .industries-section .section-title,
  .process-intro .section-title,
  .about-ai-left .section-title {
    text-align: center;
    font-size: 2.1rem;
  }

  .ai-platforms-section .section-subtitle,
  .industries-section .industries-desc,
  .process-intro .section-subtitle {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .process-intro-note {
    margin-left: auto;
    margin-right: auto;
  }

  .process-slider {
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }

  .process-slider .process-timeline,
  .industries-section .industries-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* --- 768px (Smartphones landscape & Small Tablets) --- */
@media (max-width: 768px) {
  .ai-hero .hero-title {
    font-size: 2.3rem !important;
  }
  .ai-hero .hero-desc {
    font-size: 1rem !important;
    line-height: 1.7 !important;
  }
  .section-title {
    font-size: 1.9rem !important;
  }
  .float-enquire {
    display: none;
  }
  .stat-value {
    font-size: 1.8rem;
  }
  .why-stats-row {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    gap: 12px;
  }
  .why-stat-item,
  .why-stat-item:last-child {
    min-height: 116px;
    padding: 22px 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
  }
  .results-grid {
    grid-template-columns: 1fr 1fr;
  }
  .faq-form-card {
    padding: 30px 24px;
  }
}

/* --- 600px (Small Mobile Landscape) --- */
@media (max-width: 600px) {
  .ai-platforms-section .platform-card,
  .process-slider .process-step {
    grid-template-columns: 46px 1fr;
    column-gap: 14px;
    padding: 22px 18px;
  }

  .ai-platforms-section .platform-icon {
    width: 44px;
    height: 44px;
  }

  .process-slider .step-number {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }

  .process-slider .process-timeline,
  .industries-section .industries-grid {
    grid-template-columns: 1fr;
  }

  .industries-section .industries-grid {
    justify-items: stretch;
  }

  .process-slider .process-step {
    min-height: 0;
  }

  .industries-section .industry-card {
    min-height: 0;
    padding: 30px 24px;
    border-radius: 16px;
  }

  .industries-section .industry-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 16px;
    font-size: 0.85rem;
  }

  .industries-section .industry-name {
    font-size: 0.85rem;
  }
}

/* --- 480px (Smartphones portrait) --- */
@media (max-width: 480px) {
  .ai-hero {
    padding: 100px 0px 0px;
  }
  .ai-hero .hero-title {
    font-size: 1.9rem !important;
  }
  .ai-hero .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  .ai-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.5rem;
  }
  .stat-desc {
    font-size: 0.7rem;
  }

  .about-ai-section,
  .why-ai-section,
  .process-section,
  .industries-section,
  .results-section,
  .faq-section,
  .ai-platforms-section {
    padding: 60px 16px;
  }

  .aeo-geo-card {
    padding: 26px 22px;
  }
  .faq-form-card {
    padding: 24px 20px;
  }
  .faq-form-card h3 {
    font-size: 1.4rem;
  }
  .results-grid {
    grid-template-columns: 1fr;
  }
  .ais-visibility-card {
    padding: 24px 18px;
  }
  .ais-score-circle {
    flex-basis: 88px;
    width: 88px;
    height: 88px;
    padding-top: 28px;
  }
  .ais-score-circle strong {
    font-size: 1.65rem;
  }
  .ais-signal-item {
    padding: 22px 18px;
  }
  .ais-signal-icon {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }
  .faq-trigger {
    padding: 14px 18px;
    font-size: 0.9rem;
  }
  .faq-content {
    padding: 0 18px 18px;
  }
}

/* ============================================================
   MOBILE TYPOGRAPHY OVERRIDES
   ============================================================ */
@media (max-width: 768px) {
  .ai-hero .hero-title {
    font-size: 1.85rem !important;
    font-weight: 700 !important;
  }
  .section-title {
    font-size: 1.75rem !important;
    font-weight: 700 !important;
  }
  .aeo-geo-card h4,
  .step-content h4,
  .faq-form-card h3,
  .result-card h4 {
    font-size: 1.15rem !important;
    font-weight: 700 !important;
  }
  .ai-hero .hero-desc,
  .section-subtitle,
  .about-ai-desc,
  .why-ai-desc,
  .aeo-geo-card p,
  .step-content p,
  .industries-desc,
  .faq-content p,
  .results-desc,
  .platform-card p,
  .result-card p {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
  }
}

@media (max-width: 480px) {
  .ai-hero .hero-title {
    font-size: 1.55rem !important;
  }
  .section-title {
    font-size: 1.5rem !important;
  }
  .aeo-geo-card h4,
  .step-content h4,
  .result-card h4 {
    font-size: 1.1rem !important;
  }
  .ai-hero .hero-desc,
  .section-subtitle,
  .about-ai-desc,
  .why-ai-desc,
  .aeo-geo-card p,
  .step-content p,
  .industries-desc,
  .faq-content p,
  .results-desc,
  .platform-card p,
  .result-card p {
    font-size: 0.9rem !important;
    line-height: 1.55 !important;
  }
  .result-number {
    font-size: 2.2rem;
  }
}
