/* General Styles & Typography */
:root {
  --primary-color: #007bff;
  --secondary-color: #6c757d;
  --text-color: #333;
  --dark-bg: #0d1a26;
  --light-bg: #f8f9fa;
  --light-text: #fff;
  --accent-color: #28a745;
  /* For positive changes */
  --gutter: clamp(12px, 2vw, 24px);
}

body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--light-bg);
}


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

.section {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.section:nth-child(even) {
  background-color: #f4f4f4;
}

.section-title,
.section-title-left {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 50px;
  text-align: center;
  color: var(--dark-bg);
}

.section-title-left {
  text-align: left;
  margin-bottom: 20px;
}

/* 1. hero section */



/* ---------- HERO (no horizontal overflow, fully fluid) ---------- */
:root {
  --primary-color: #0ea5e9;
  --light-text: #fff;
  --dark-bg: #0b1220;
  --gutter: clamp(14px, 4vw, 28px);
}

/* Global safety net (optional but helpful) */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

/* Container hero */
.hero {
  position: relative;
  inline-size: 100%;
  min-block-size: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--light-text);
  padding-block: clamp(24px, 8vh, 96px);
  padding-inline: var(--gutter);
  background: url("../images/banner/carl-gis.png") no-repeat center center/cover;
  background-color: var(--dark-bg);
  /* fallback if image fails to load */
  overflow: hidden;
  isolation: isolate;
}

@supports (min-height: 100svh) {
  .hero {
    min-block-size: 100svh;
  }
}

/* Background video fills without pushing layout width */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-width: 0;
  /* <- prevents “wider than parent” calc bugs */
  min-height: 0;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
  background: var(--dark-bg);
}

/* Overlay for contrast */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(0, 0, 0, .55), rgba(0, 0, 0, .55));
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  margin-inline: auto;
  inline-size: min(100%, 1000px);
  display: grid;
  gap: clamp(10px, 2.2vw, 20px);
  padding-inline: 0;
  /* rely on .hero padding to avoid double-gutter */
}

/* Fluid type */
.hero-content h1 {
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(24px, 6.5vw, 44px);
  line-height: 1.15;
  text-wrap: balance;
}

.hero-content p {
  margin: 0 0 clamp(12px, 3.5vw, 28px);
  font-size: clamp(14px, 3.8vw, 18px);
  line-height: 1.6;
  font-weight: 300;
  opacity: .95;
}

/* === CTA buttons: unified outline style + clean stacking === */
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(8px, 2.2vw, 16px);
}

/* Base button (same for all three) */
.cta-buttons .btn,
.cta-buttons a {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(10px, 1.6vw, 14px) clamp(18px, 2.6vw, 24px);
  border-radius: 999px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, .9);
  background: transparent;
  color: var(--light-text);
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease, color .2s ease;
  flex: 0 1 auto;
  min-width: max-content;
}

/* Normalize legacy variants so all look identical by default */
.cta-buttons .btn-primary,
.cta-buttons .btn-secondary,
.cta-buttons .btn-tertiary {
  background: transparent !important;
  color: var(--light-text) !important;
  border-color: rgba(255, 255, 255, .9) !important;
}

/* REMOVE any variant-specific :hover you had before */

/* Unified hover/focus for ALL buttons (wins over globals) */
.cta-buttons .btn:is(:hover, :focus-visible) {
  background: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: #002a3a !important;
  /* readable on blue */
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .25);
}

/* Small screens: stack cleanly */
@media (max-width: 640px) {
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: min(100%, 22rem);
  }
}

/* Variants */
.btn-primary {
  background: var(--primary-color);
  color: #002a3a;
  border-color: var(--primary-color);
}

.btn-secondary {
  background: transparent;
  color: var(--light-text);
  border-color: var(--light-text);
}

/* Respect motion prefs */
@media (prefers-reduced-motion: reduce) {
  .hero-video {
    display: none;
  }
}

/* Ultra-small devices: tighter padding */
@media (max-width: 360px) {
  .hero {
    padding-inline: 12px;
  }
}


/* section work  */
/* ===== CTA Section (mobility) ===== */
:root {
  --cta-bg-mobility: #071626;
  --cta-title-fs-mobility: clamp(22px, 3vw, 32px);
  --cta-text-fs-mobility: clamp(14px, 1.8vw, 16px);
  --cta-green-mobility: #059669;
}

.cta-mobility {
  padding: clamp(40px, 7vw, 80px) 0;
  background: var(--cta-bg-mobility);
  border-radius: 12px;
  text-align: center;
  color: #fff;
  margin: clamp(20px, 4vw, 40px) auto;
  max-width: 1200px;
}

.cta-wrap-mobility {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 16px;
}

.cta-title-mobility {
  margin: 0 0 12px;
  font-size: var(--cta-title-fs-mobility);
  font-weight: 700;
  color: white;
}

.cta-text-mobility {
  margin: 0 0 28px;
  font-size: var(--cta-text-fs-mobility);
  color: #d1d5db;
  line-height: 1.6;
}

/* Button */
.cta-btn-mobility {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--cta-green-mobility);
  color: #fff;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.cta-btn-mobility:hover {
  background: #047857;
  transform: translateY(-2px);
}

.cta-dot-mobility {
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  display: inline-block;
}

/* Reveal animation */
.reveal-mobility {
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  transition:
    opacity 420ms ease,
    transform 420ms ease;
  transition-delay: var(--delay-mobility, 0ms);
  will-change: opacity, transform;
}

.reveal-mobility.is-visible-mobility {
  opacity: 1;
  transform: none;
}

/* Container for the entire section */
.carl-verticalizations-section {
  padding: 50px 20px;
  background-color: #f8f9fa;
  /* Light grey background */
  font-family: Arial, sans-serif;
}

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

/* gis section 1 for enables */

/* ===============================
   GIS / Map — features list
   =============================== */
:root {
  --bg-start: #ffffff;
  --bg-end: #ffffff;
  --primary: #5b9dff;
  --primary-2: #7cf7e2;
  --text: #0e1b2b;
  --rail: #e6eef7;
  --shadow: rgba(2, 8, 23, .06);
}

.section-gis-map {
  background: linear-gradient(180deg, var(--bg-start), var(--bg-end));
  color: var(--text);
  padding: clamp(2rem, 4vw, 3.5rem) 1rem;
}

.container-gis-map {
  max-width: 1050px;
  margin: 0 auto;
}

.head-gis-map h2 {
  margin: 0 0 .75rem;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  font-weight: 800;
  color: #0e1b2b;
  letter-spacing: .2px;
  display: inline-flex;
  gap: .5rem;
  align-items: center;
}

.emoji-gis-map {
  font-size: 1.15em;
}

/* Responsive list: 1 col → 2 col */
.features-gis-map {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(14px, 2vw, 18px);
  position: relative;
}

/* Two columns on wider screens */
@media (min-width: 820px) {
  .features-gis-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(22px, 3vw, 36px);
    row-gap: clamp(16px, 2vw, 22px);
  }
}

/* Each item uses a custom pin bullet and connector */
.item-gis-map {
  position: relative;
  padding-left: 46px;
  /* bullet space */
  background: #ffffff;
  border: 1px solid rgba(14, 27, 43, .08);
  border-radius: 14px;
  box-shadow: 0 10px 24px var(--shadow);
  padding-top: .9rem;
  padding-bottom: .9rem;
  padding-right: 1rem;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  overflow: hidden;
  isolation: isolate;
}

/* pin bullet */
.item-gis-map::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 16px;
  width: 22px;
  height: 22px;
  border-radius: 50% 50% 50% 0;
  /* teardrop */
  transform: rotate(-45deg);
  background:
    linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 0 0 3px #fff inset, 0 4px 12px rgba(16, 24, 39, .18);
}

/* subtle shine on hover */
.item-gis-map::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(420px 200px at 15% 0%, rgba(91, 157, 255, .07), transparent 60%),
    radial-gradient(420px 200px at 90% 15%, rgba(124, 247, 226, .07), transparent 65%);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}

.item-gis-map:hover {
  transform: translateY(-4px);
  border-color: rgba(91, 157, 255, .28);
  box-shadow: 0 16px 36px rgba(2, 8, 23, .12);
}

.item-gis-map:hover::after {
  opacity: 1;
}

/* Titles & text */
.item-gis-map h3 {
  margin: 0 0 .25rem;
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  font-weight: 800;
  color: #0e1b2b;
  letter-spacing: .2px;
}

.item-gis-map p {
  margin: 0;
  color: #0e1b2b;
  opacity: .88;
  line-height: 1.65;
  font-size: .98rem;
}

/* Tighten padding on very small screens */
@media (max-width: 520px) {
  .item-gis-map {
    padding-left: 42px;
  }

  .item-gis-map::before {
    left: 10px;
    top: 14px;
    width: 20px;
    height: 20px;
  }
}

/* ===============================
   Shared palette
   =============================== */
:root {
  --bg-start: #ffffff;
  --bg-end: #ffffff;
  --primary: #5b9dff;
  --primary-2: #7cf7e2;
  --text: #0e1b2b;
  --rule: rgba(14, 27, 43, .08);
  --shadow: rgba(2, 8, 23, .08);
}

/* Section wrappers */
.section-gis-standards,
.section-standards-gis-standards {
  background: linear-gradient(180deg, var(--bg-start), var(--bg-end));
  color: var(--text);
  padding: clamp(2rem, 2vw, 2rem) 1rem;
}

.container-gis-standards {
  max-width: 1120px;
  margin: 0 auto;
}

.head-gis-standards {
  margin-bottom: clamp(1.1rem, 3vw, 1.8rem);
}

.head-gis-standards h2 {
  margin: 0 0 .4rem;
  font-size: clamp(1.7rem, 2.6vw, 2.5rem);
  font-weight: 800;
  color: #0e1b2b;
  letter-spacing: .2px;
}

.head-gis-standards p {
  margin: 0;
  max-width: 72ch;
  color: #0e1b2b;
  opacity: .9;
  font-size: clamp(.98rem, 1.2vw, 1.05rem);
}

/* Split layout: image + platforms */
.layout-gis-standards {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 2.6vw, 28px);
}

@media (min-width: 900px) {
  .layout-gis-standards {
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.3fr);
    align-items: start;
  }
}

/* Image block */
.figure-gis-standards {
  margin: 0;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 16px;
  box-shadow: 0 12px 28px var(--shadow);
  overflow: hidden;
}

.img-gis-standards {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/10;
  object-fit: cover;
  background: linear-gradient(135deg, rgba(91, 157, 255, .12), rgba(124, 247, 226, .12));
}

.figure-gis-standards figcaption {
  padding: .6rem .9rem;
  font-size: .85rem;
  color: #0e1b2b;
  opacity: .75;
  border-top: 1px solid var(--rule);
}

/* Platforms content */
.content-gis-standards {
  position: relative;
}

.ribbon-gis-standards {
  margin: .25rem 0 .9rem;
  font-size: clamp(1.1rem, 1.4vw, 1.3rem);
  font-weight: 900;
  color: #0e1b2b;
  letter-spacing: .3px;
  position: relative;
  padding-left: 14px;
}

.ribbon-gis-standards::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 18px;
  transform: translateY(-50%);
  border-radius: 3px;
  background: linear-gradient(180deg, var(--primary), var(--primary-2));
}

/* Groups (ArcGIS / MapGuide / OGC) */
.group-gis-standards {
  padding: .6rem 0 .85rem;
  border-bottom: 1px dashed var(--rule);
}

.group-gis-standards:last-of-type {
  border-bottom: none;
}

.group-title-gis-standards {
  margin: 0 0 .35rem;
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  font-weight: 800;
  color: #0e1b2b;
}

/* SIMPLE ROUND POINT bullets (no half-moon) */
.list-gis-standards {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: .5rem;
}

@media (min-width: 700px) {
  .group-gis-standards .list-gis-standards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(18px, 3vw, 32px);
  }
}

.list-gis-standards li {
  position: relative;
  padding-left: 22px;
  color: #0e1b2b;
  opacity: .92;
  line-height: 1.65;
  font-size: .98rem;
}

.list-gis-standards li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: .75em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  transform: translateY(-50%);
}

/* ======= STANDARDS (separate section) ======= */
.section-standards-gis-standards {
  padding-top: 0;
  /* sits right under previous section */
}

.list-standards-gis-standards {
  list-style: none;
  padding: 0;
  margin: .25rem 0 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: .6rem;
}

.list-standards-gis-standards li {
  position: relative;
  padding-left: 22px;
  color: #0e1b2b;
  line-height: 1.68;
  font-size: .98rem;
}

.list-standards-gis-standards li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: .85em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary-2);
  /* different color to distinguish this section */
  transform: translateY(-50%);
}

/* ===============================
   Integration Patterns — styles
   =============================== */
:root {
  --bg-start: #ffffff;
  --bg-end: #ffffff;
  --primary: #5b9dff;
  /* accent blue */
  --primary-2: #7cf7e2;
  /* teal accent  */
  --text: #0e1b2b;
  --shadow: rgba(2, 8, 23, .10);
  --rule: rgba(14, 27, 43, .10);
}

.section-gis-pattern {
  background: linear-gradient(180deg, var(--bg-start), var(--bg-end));
  color: var(--text);
  padding: clamp(2rem, 4vw, 4rem) 1rem;
}

.container-gis-pattern {
  max-width: 1100px;
  margin: 0 auto;
}

.head-gis-pattern {
  text-align: left;
  margin-bottom: clamp(1.2rem, 2.6vw, 2rem);
}

.head-gis-pattern h2 {
  margin: 0 0 .4rem;
  font-size: clamp(1.7rem, 2.5vw, 2.4rem);
  font-weight: 800;
  color: #0e1b2b;
  letter-spacing: .2px;
}

.head-gis-pattern p {
  margin: 0;
  max-width: 72ch;
  color: #0e1b2b;
  opacity: .9;
  font-size: clamp(.98rem, 1.2vw, 1.05rem);
}

/* Grid of patterns */
.patterns-gis-pattern {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(14px, 2vw, 22px);
}

/* Pattern item (soft tile, not heavy card) */
.pattern-gis-pattern {
  position: relative;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 16px;
  padding: 1.05rem 1.15rem 1.15rem;
  box-shadow: 0 10px 24px var(--shadow);
  transition: transform .28s cubic-bezier(.2, .8, .2, 1),
    box-shadow .28s ease,
    border-color .28s ease;
  overflow: hidden;
  isolation: isolate;
}

/* accent line */
.pattern-gis-pattern::before {
  content: "";
  position: absolute;
  inset: -1px -1px auto -1px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  transform: scaleX(.6);
  transform-origin: left;
  transition: transform .4s ease;
}

/* hover glow */
.pattern-gis-pattern::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(480px 220px at 15% 0%, rgba(91, 157, 255, .08), transparent 60%),
    radial-gradient(480px 220px at 90% 15%, rgba(124, 247, 226, .08), transparent 65%);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}

.pattern-gis-pattern:hover {
  transform: translateY(-6px) scale(1.012);
  border-color: rgba(91, 157, 255, .28);
  box-shadow: 0 18px 38px rgba(2, 8, 23, .16);
}

.pattern-gis-pattern:hover::before {
  transform: scaleX(1);
}

.pattern-gis-pattern:hover::after {
  opacity: 1;
}

/* icon chip */
.icon-gis-pattern {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--text);
  background: linear-gradient(135deg, rgba(91, 157, 255, .18), rgba(124, 247, 226, .18));
  border: 1px solid var(--rule);
  box-shadow: 0 6px 16px rgba(16, 24, 39, .10) inset;
  margin-bottom: .6rem;
}

/* titles & copy */
.pattern-gis-pattern h3 {
  margin: .2rem 0 .35rem;
  font-size: clamp(1.02rem, 1.2vw, 1.15rem);
  font-weight: 800;
  color: #0e1b2b;
  letter-spacing: .2px;
  position: relative;
}

.pattern-gis-pattern h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
}

.pattern-gis-pattern p {
  margin: .7rem 0 0;
  color: #0e1b2b;
  opacity: .88;
  line-height: 1.65;
  font-size: .98rem;
}

/* Small-screen tightening */
@media (max-width: 560px) {
  .pattern-gis-pattern {
    padding: .9rem 1rem;
  }

  .icon-gis-pattern {
    width: 40px;
    height: 40px;
  }
}

/* ===============================
   Core Capabilities — styles
   =============================== */
:root {
  --bg-start: #ffffff;
  --bg-end: #ffffff;
  --primary: #5b9dff;
  /* accent blue  */
  --primary-2: #7cf7e2;
  /* teal accent   */
  --text: #0e1b2b;
  --rule: rgba(14, 27, 43, .10);
}

.section-core-gis {
  background: linear-gradient(180deg, var(--bg-start), var(--bg-end));
  color: var(--text);
  padding: clamp(2rem, 2vw, 2rem) 1rem;
}

.container-core-gis {
  max-width: 1100px;
  margin: 0 auto;
}

.head-core-gis h2 {
  margin: 0 0 .8rem;
  font-size: clamp(1.6rem, 2.4vw, 2.3rem);
  font-weight: 800;
  color: #0e1b2b;
  letter-spacing: .2px;
}

/* Responsive two-column list (no cards) */
.list-core-gis {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(12px, 1.8vw, 16px);
}

@media (min-width: 820px) {
  .list-core-gis {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(24px, 3vw, 38px);
    row-gap: clamp(14px, 2vw, 18px);
  }
}

/* Each line item with custom gradient dot bullet */
.item-core-gis {
  position: relative;
  padding-left: 28px;
  /* space for bullet */
  line-height: 1.65;
  border-left: 2px solid transparent;
  /* reserved for focus style */
  transition: transform .22s ease, border-color .22s ease;
}

.item-core-gis::before {
  content: "";
  position: absolute;
  left: 6px;
  top: .9em;
  /* vertically align with first line of text */
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 0 0 3px #fff inset, 0 2px 8px rgba(16, 24, 39, .15);
}

/* subtle hover motion */
.item-core-gis:hover {
  transform: translateX(4px);
  border-color: rgba(91, 157, 255, .30);
}

/* Label + description */
.label-core-gis {
  font-weight: 800;
  color: #0e1b2b;
  /* heading/text color */
}

.desc-core-gis {
  color: #0e1b2b;
  /* body text color */
  opacity: .9;
}

/* Small-screen spacing */
@media (max-width: 520px) {
  .item-core-gis {
    padding-left: 24px;
  }

  .item-core-gis::before {
    width: 8px;
    height: 8px;
    left: 5px;
  }
}



/* image seperation */

/* ===============================
   Separator Image + CTAs (scoped)
   =============================== */
:root {
  --primary: #5b9dff;
  --primary-2: #7cf7e2;
  --text: #0e1b2b;
}

.section-cta-sep {
  margin: clamp(20px, 4vw, 40px) 0;
  /* space between sections */
}

.wrap-cta-sep {
  width: 100%;
}

/* Image container */
.media-cta-sep {
  position: relative;
  height: clamp(220px, 36vw, 380px);
  /* responsive height */
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(2, 8, 23, .18);
}

/* Background image */
.media-cta-sep>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

/* Readability overlay + subtle gradient edge */
.media-cta-sep::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 320px at 15% 10%, rgba(91, 157, 255, .18), transparent 60%),
    radial-gradient(700px 300px at 85% 15%, rgba(124, 247, 226, .16), transparent 62%),
    linear-gradient(0deg, rgba(0, 0, 0, .52), rgba(0, 0, 0, .18) 40%, rgba(0, 0, 0, .05) 70%);
  pointer-events: none;
}

/* Centered button group */
.overlay-cta-sep {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
}

.btns-cta-sep {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(10px, 2vw, 16px);
  justify-content: center;
}

/* ---------- CTA Buttons: screenshot-style hover ---------- */
:root {
  /* optional: add these if not present */
  --primary-hover: #0ea5e9;
  /* hover cyan */
  --primary-active: #0284c7;
  /* pressed */
}

/* Base: pill + a bit more weight */
.section-cta-sep .btn {
  border-radius: 999px;
  /* pill */
  padding: .85rem 1.25rem;
  font-weight: 700;
}

/* Primary (left) */
.section-cta-sep .btn-primary {
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  border: 2px solid rgba(255, 255, 255, .35);
  box-shadow: 0 10px 24px rgba(2, 8, 23, .35);
}

.section-cta-sep .btn-primary:hover {
  background: var(--primary-hover);
  /* solid cyan on hover */
  border-color: var(--primary-hover);
  box-shadow: 0 14px 34px rgba(14, 165, 233, .45);
  transform: translateY(-2px);
}

.section-cta-sep .btn-primary:active {
  background: var(--primary-active);
  border-color: var(--primary-active);
  transform: translateY(0);
}

/* Secondary (right) — clean white outline */
.section-cta-sep .btn-secondary {
  color: #fff;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, .55);
  box-shadow: 0 10px 20px rgba(2, 8, 23, .25) inset, 0 6px 18px rgba(2, 8, 23, .22);
}

.section-cta-sep .btn-secondary:hover {
  border-color: #fff;
  /* brighter outline */
  background: rgba(255, 255, 255, .08);
  /* subtle fill on hover */
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(2, 8, 23, .4);
}

.section-cta-sep .btn-secondary:active {
  background: rgba(255, 255, 255, .14);
  transform: translateY(0);
}

/* Accessibility focus ring */
.section-cta-sep .btn:focus-visible {
  outline: 2px solid transparent;
  box-shadow: 0 0 0 3px rgba(14, 165, 233, .65), 0 0 0 6px rgba(255, 255, 255, .5);
}

/* ===== Unified CTA button style (applies to BOTH links) ===== */
:root {
  --primary: #ffffff;
  /* base gradient start */
  --primary-2: #ffffff;
  /* base gradient end   */
  --primary-hover: #0ea5e9;
  /* hover cyan */
  --primary-active: #0284c7;
  /* pressed */
}

.section-cta-sep a.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: .9rem 1.25rem;
  border-radius: 999px;
  /* pill */
  font-weight: 700;
  letter-spacing: .2px;
  text-decoration: none;
  color: #000000;
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  border: 2px solid transparent;
  box-shadow: 0 10px 24px rgba(2, 8, 23, .35);
  transition: transform .25s ease, box-shadow .25s ease,
    background .25s ease, border-color .25s ease;
  backdrop-filter: blur(2px);
  font-size: clamp(.95rem, 1.1vw, 1rem);
}

.section-cta-sep a.btn:hover {
  background: var(--primary-hover);
  /* same hover for both */
  border-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(14, 165, 233, .45);
}

.section-cta-sep a.btn:active {
  background: var(--primary-active);
  border-color: var(--primary-active);
  transform: translateY(0);
}

.section-cta-sep a.btn:focus-visible {
  outline: 2px solid transparent;
  box-shadow: 0 0 0 3px rgba(14, 165, 233, .65), 0 0 0 6px rgba(255, 255, 255, .5);
}

/* FAQ */


/* section 6 FAQ*/

:root {
  --faq-maxw-mobility: 1200px;
  --faq-gutter-mobility: clamp(16px, 4vw, 28px);
  --faq-surface-mobility: #f3f5f7;
  --faq-card-bg-mobility: #ffffff;
  --faq-border-mobility: rgba(0, 0, 0, 0.08);
  --faq-shadow-mobility: 0 8px 20px rgba(0, 0, 0, 0.06);
  --faq-title-fs-mobility: clamp(18px, 2.6vw, 24px);
  --faq-q-fs-mobility: clamp(15px, 2.1vw, 16px);
  --faq-a-fs-mobility: clamp(14px, 1.9vw, 15px);
  --faq-blue-mobility: #1776ff;
}

/* Section */
.faq-mobility {
  background: var(--faq-surface-mobility);
  padding: clamp(24px, 6vw, 56px) 0;
}

.faq-wrap-mobility {
  max-width: 800px;
  /* narrower container */
  margin: 0 auto;
  /* center horizontally */
  padding: 0 16px;
  text-align: center;
}

/* Heading */
.faq-title-mobility {
  display: inline-flex;
  /* keep icon + text inline */
  align-items: center;
  justify-content: center;
  gap: 10px;

  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 800;
  color: #1f2937;

  text-align: center;
  margin: 0 auto 24px;
}

.faq-title-icon-mobility {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--faq-blue-mobility);
  color: #fff;
  font-weight: 700;
}

/* Item */
.faq-item-mobility {
  background: var(--faq-card-bg-mobility);
  border: 1px solid var(--faq-border-mobility);
  border-radius: 12px;
  box-shadow: var(--faq-shadow-mobility);
  padding: 0;
  margin: 12px 0;
  overflow: hidden;
}

/* Question row (button) */
.faq-q-mobility {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: 0;
  padding: 16px 18px;
  text-align: left;
  font-size: var(--faq-q-fs-mobility);
  font-weight: 700;
  color: #111827;
  cursor: pointer;
}

/* + / - toggle icon */
.faq-toggle-mobility {
  position: relative;
  width: 22px;
  height: 22px;
  border-radius: 8px;
  background: #eef2f7;
}

.faq-toggle-mobility::before,
.faq-toggle-mobility::after {
  content: "";
  position: absolute;
  background: #6b7280;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}

.faq-toggle-mobility::before {
  width: 12px;
  height: 2px;
  /* horizontal bar */
}

.faq-toggle-mobility::after {
  width: 2px;
  height: 12px;
  /* vertical bar (to make +) */
}

/* Answer panel (animated height) */
.faq-a-mobility {
  font-size: var(--faq-a-fs-mobility);
  color: #4b5563;
  line-height: 1.6;
  padding: 0 18px 16px;
  text-align: left;
}

/* Expanded state styles (driven by [aria-expanded="true"]) */
.faq-q-mobility[aria-expanded="true"]+.faq-a-mobility {
  /* the panel is unhidden by JS; padding already applied */
}

.faq-q-mobility[aria-expanded="true"] .faq-toggle-mobility::after {
  transform: translate(-50%, -50%) scaleY(0);
  /* hide vertical to become "-" */
}

/* Small screens */
@media (max-width: 560px) {
  .faq-q-mobility {
    padding: 14px 14px;
  }

  .faq-a-mobility {
    padding: 0 14px 14px;
  }
}