
/* Hero Section */
.hero {
    background: url("../images/eam/apm.png") no-repeat center center/cover;
    position: relative;
    padding: 150px 20px;
    color: var(--white);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Darker overlay for text readability */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.overview-text {
    font-size: 1.15em;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}



:root {
    --primary-color: #007bff;
    --secondary-color: #1a237e;
    /* Dark blue for titles */
    --accent-color: #28a745;
    /* Green for success */
    --light-bg: #f8f9fa;
    --dark-bg: #e9ecef;
    --text-color: #343a40;
    --light-text: #6c757d;
    --white: #fff;
    --border-radius: 8px;
    --shadow-light: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 20px rgba(0, 0, 0, 0.15);
    --who-maxw-mobility: 1200px;
    --who-gutter-mobility: clamp(16px, 4vw, 28px);
    --who-title-fs-mobility: clamp(22px, 2.6vw, 28px);
    --who-icon-size-mobility: 28px;
    --who-blue-mobility: #127bff;
    /* bright product blue (like your ref) */
    --who-card-bg-mobility: #f7f9fb;
    --who-card-shadow-mobility: 0 6px 20px rgba(15, 23, 42, 0.06);
    --gf-maxw-mobility: 1200px;
    --gf-padx-mobility: clamp(16px, 5vw, 32px);
    --gf-title-fs-mobility: clamp(22px, 2.8vw, 32px);
    --gf-text-fs-mobility: clamp(14px, 1.9vw, 16px);
    --gf-pill-bg-mobility: #e6f1ef;
    --gf-pill-color-mobility: #0f766e;
      --better-maxw-mobility:1200px;
  --better-gutter-mobility:clamp(16px,4vw,32px);
  --better-radius-mobility:14px;
  --better-pill-bg-mobility:#e6f1ef;
  --better-pill-dot-mobility:#0f766e;
  --better-title-mobility:clamp(26px,3.6vw,36px);
  --better-h3-mobility:clamp(18px,2.4vw,22px);
  --better-text-mobility:clamp(14px,1.9vw,16px);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-bg);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Root scale (optional) */
:root {
    --hero-maxw-mobility: 1200px;
    --hero-padx-mobility: clamp(16px, 4vw, 32px);
    --hero-pady-mobility: clamp(56px, 10vw, 120px);
    --hero-title-mobility: clamp(28px, 5vw, 64px);
    --hero-title-lh-mobility: 1.12;
    --hero-badge-fs-mobility: clamp(12px, 1.6vw, 16px);
    --hero-badge-h-mobility: 36px;
    --overlay-alpha-mobility: 0.55;
}

/* Section wrapper */
.hero-mobility {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #0b1f1a;
    /* fallback while image loads */
}

/* Media layer */
.hero-media-mobility {
    position: relative;
    width: 100%;
    height: min(78vh, 680px);
    min-height: 360px;
}

.hero-img-mobility {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* full image coverage */
    object-position: center;
    display: block;
}

.hero-overlay-mobility {
    position: absolute;
    inset: 0;
    background: #062b24;
    /* deep green tint to match the snip */
    opacity: var(--overlay-alpha-mobility);
    mix-blend-mode: multiply;
    pointer-events: none;
}

/* Content container */
.hero-inner-mobility {
    position: absolute;
    inset: 0;
    display: grid;
    /*  | 1fr gutter | centered column (max 1200) | 1fr gutter |  */
    grid-template-columns: 1fr minmax(0, var(--hero-maxw-mobility)) 1fr;
    align-content: center;
    padding: var(--hero-pady-mobility) var(--hero-padx-mobility);
    z-index: 2;
    /* keep above image/overlay */
}

.hero-inner-mobility::before {
    content: "";
    position: absolute;
    inset: 0;
    /* Subtle gradient from top for readability like the reference */
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.15) 0%,
            rgba(0, 0, 0, 0.10) 40%,
            rgba(0, 0, 0, 0.00) 100%);
    pointer-events: none;
}

/* Constrain text block to 1200px */
.hero-inner-mobility>* {
    grid-column: 2;
    justify-self: start;
    width: 100%;
    margin: 0;
    /* remove auto-centering */
}

@media (max-width: 768px) {
    .hero-inner-mobility {
        grid-template-columns: 1fr minmax(0, 100%) 1fr;
        /* use full width on phones */
    }
}

/* Badge ("Projects") */
.badge-mobility {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: var(--hero-badge-h-mobility);
    padding: 0 14px 0 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(2px);
    color: #e8f3ef;
    font-size: var(--hero-badge-fs-mobility);
    line-height: 1;
    margin-bottom: clamp(16px, 3vw, 28px);
}

.badge-dot-mobility {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #a7f3d0;
    /* soft green dot */
    flex: 0 0 8px;
}

.badge-text-mobility {
    letter-spacing: 0.2px;
    font-weight: 600;
}

/* Title */
.title-mobility {
    margin: 0;
    color: #ffffff;
    font-weight: 700;
    font-size: var(--hero-title-mobility);
    line-height: var(--hero-title-lh-mobility);
    text-wrap: balance;
    max-width: 22ch;
    /* similar compact line-length to the snip */
}

.description-mobility {
    font-size: 1rem;
    color: white;
    padding: 20px 40px 20px 20px;
    /* padding-top: 20px; */



}

/* Keeps a deliberate line break on wide screens (no effect on small) */
.title-linebreak-mobility {
    display: block;
}

/* ---------- Responsive tweaks ---------- */
@media (max-width: 1024px) {
    .hero-media-mobility {
        height: min(72vh, 600px);
    }

    .title-mobility {
        max-width: 26ch;
    }
}

@media (max-width: 768px) {
    .hero-media-mobility {
        height: 64vh;
        min-height: 420px;
    }

    .badge-mobility {
        gap: 8px;
        padding: 0 12px 0 8px;
    }

    .title-mobility {
        max-width: 28ch;
    }
}

@media (max-width: 480px) {
    .hero-media-mobility {
        height: 56vh;
        min-height: 360px;
    }

    .title-mobility {
        max-width: 30ch;
    }
}



/* --- Base button: both look identical in the default state --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1;
    text-decoration: none;

    /* same for both buttons until hover */
    color: #ffffff;
    background: rgba(0, 0, 0, 0.65);
    border: 2px solid rgba(255, 255, 255, 0.18);

    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

/* icon spacing (if you use <i> or svg) */
.btn i,
.btn svg {
    margin-right: 10px;
}

/* remove the old color differences */
.btn-primary,
.btn-secondary {
    background: rgba(0, 0, 0, 0.65);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.18);
}

/* --- Hover states (only on hover they look different + pop) --- */
.btn-primary:hover {
    background: #0a0a0a;
    border-color: #1283ff;
    /* blue edge */
    box-shadow: 0 8px 22px rgba(18, 131, 255, 0.35);
    transform: translateY(-3px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.18);
    /* light tint */
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
    transform: translateY(-3px);
}

/* focus-visible for keyboard users */
.btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(18, 131, 255, 0.6);
}


/*section 2 */

.who-mobility {
    padding: clamp(28px, .5vw, 44px) 0;
    background: #ffffff;
}

.who-wrap-mobility {
    max-width: var(--who-maxw-mobility);
    margin: 0 auto;
    padding: 0 var(--who-gutter-mobility);
}

.who-title-mobility {
    margin: 0 0 clamp(18px, 3.2vw, 28px);
    text-align: center;
    /* centered heading */
    font-size: var(--who-title-fs-mobility);
    font-weight: 700;
    color: #0f172a;
}

/* Grid */
.who-grid-mobility {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(16px, 2.8vw, 28px);
}

/* Card */
.who-card-mobility {
    background: var(--who-card-bg-mobility);
    border-radius: 18px;
    padding: clamp(18px, 3.2vw, 28px);
    text-align: center;
    box-shadow: var(--who-card-shadow-mobility);
    border: 1px solid rgba(2, 6, 23, 0.06);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.who-card-mobility:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.12);
}

/* Icon */
.who-icon-mobility {
    width: 56px;
    height: 56px;
    margin: 0 auto 14px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(18, 123, 255, 0.12);
}

.who-icon-mobility i {
    font-size: var(--who-icon-size-mobility);
    color: var(--who-blue-mobility);
}

/* Text */
.who-card-title-mobility {
    margin: 6px 0 10px;
    font-size: clamp(18px, 2.1vw, 22px);
    font-weight: 700;
    color: #1f2937;
}

.who-card-text-mobility {
    margin: 0;
    color: #4b5563;
    line-height: 1.6;
    font-size: clamp(14px, 1.8vw, 16px);
}

/* Responsive: 3 → 2 → 1 columns */
@media (max-width: 1024px) {
    .who-grid-mobility {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .who-grid-mobility {
        grid-template-columns: 1fr;
    }

    .who-icon-mobility {
        width: 52px;
        height: 52px;
    }
}
:root {
  --outcomes-maxw-mobility: 1200px;
  --outcomes-padx-mobility: clamp(16px, 5vw, 32px);
  --outcome-bg-mobility: #eaf4f2;
  --outcome-color-mobility: #065f46;
}

.outcomes-mobility {
  padding: clamp(40px, 7vw, 80px) 0;
  background: #f9fafb;
}

.outcomes-wrap-mobility {
  max-width: var(--outcomes-maxw-mobility);
  margin: 0 auto;
  padding: 0 var(--outcomes-padx-mobility);
  text-align: center;
}

.outcomes-title-mobility {
  margin: 0 0 28px;
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 700;
  color: #0f172a;
}

/* List container */
.outcomes-list-mobility {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  text-align: center; /* align text left globally */
}

/* Each outcome pill */
.outcome-mobility {
  display: flex;
  align-items: flex-start;
  gap: 12px;

  background: var(--outcome-bg-mobility);
  color: var(--outcome-color-mobility);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;

  padding: 16px 20px;
  border-radius: 12px;
  width: 100%; /* full width inside container */
}

/* Icon left side */
.outcome-icon-mobility {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  background: #d1fae5;
  color: #059669;
  border-radius: 50%;
  font-size: 12px;
  margin-top: 3px;
}

:root{
  --wp-maxw-planning: 1200px;
  --wp-gutter-planning: clamp(16px, 4vw, 28px);
  --wp-title-fs-planning: clamp(22px, 3.2vw, 34px);
  --wp-h3-fs-planning: clamp(26px, 4.2vw, 44px);
  --wp-text-fs-planning: clamp(14px, 1.9vw, 16px);
  --wp-pill-bg-planning: #f3f6f7;
  --wp-pill-stroke-planning: #d9e2e6;
  --wp-pill-active-bg-planning: #e1f1ec;
  --wp-pill-active-text-planning: #0f766e;
}

/* Section shell */
.workplans-planning{
  background:#fff;
  padding: clamp(16px, 1vw, 18px) 0;
}
.workplans-wrap-planning{
  max-width: var(--wp-maxw-planning);
  margin: 0 auto;
  padding: 0 var(--wp-gutter-planning);
}

/* Heading */
.workplans-heading-planning{
  margin: 0 0 18px;
  text-align: center;
  font-size: var(--wp-title-fs-planning);
  font-weight: 800;
  color:#0f172a;
}

/* Tabs */
.tabs-planning{
  display: inline-flex;
  gap: 18px;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid var(--wp-pill-stroke-planning);
  background: #fff;
  box-shadow: 0 6px 18px rgba(15,23,42,.06);

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


.tab-btn-planning{
  appearance: none;
  border: 0;
  background: var(--wp-pill-bg-planning);
  color:#334155;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .12s ease;
  outline: none;
}
.tab-btn-planning:focus-visible{
  box-shadow: 0 0 0 3px rgba(16,185,129,.35);
}
.tab-btn-planning:hover{
  transform: translateY(-1px);
}
.tab-btn-planning.is-active-planning{
  background: var(--wp-pill-active-bg-planning);
  color: var(--wp-pill-active-text-planning);
}

/* Panels */
.panels-planning{
  margin-top: clamp(12px, 2vw, 20px);
}
.panel-planning{
 max-width: 760px;
  /* margin: 0 auto;        */
  text-align: center;   /* <-- center text inside */
  padding: 6px 0 0;
 
  margin: 0 auto;
  /* text-align: center; */

}
.panel-text-planning {
  margin: 0 auto;
  max-width: 640px;
}
.workplans-wrap-planning {
  max-width: var(--wp-maxw-planning);
  margin: 0 auto;
  padding: 0 var(--wp-gutter-planning);
  text-align: center;   /* <-- center all child text */
}
.panel-title-planning{
  margin: 0 0 10px;
  font-size: var(--wp-h3-fs-planning);
  font-weight: 800;
  color:#0b1320;
  line-height: 1.1;
  text-align: center;
}
.panel-text-planning{
  margin: 0;
  font-size: var(--wp-text-fs-planning);
  line-height: 1.7;
  color:#4b5563;
  max-width: 640px;
  text-align: center;
}

/* Center panels on large; full width on small */
@media (min-width: 680px){
  .panel-planning{ margin-left: 0; }
}
@media (max-width: 679px){
  .panel-planning{
    max-width: 100%;
  }
}

/* Reveal animation (down & up) */
.reveal-planning{
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .45s ease, transform .45s ease;
  will-change: opacity, transform;
}
.reveal-planning.is-visible-planning{
  opacity: 1;
  transform: none;
}

/* Hide/Show panels controlled by JS */
.is-visible-panel-planning{ display: block; }
.panel-planning[hidden]{ display: none !important; }
/* Center the whole panels container */
.panels-planning {
  display: flex;
  flex-direction: column;
  align-items: center;   /* ✅ center children horizontally */
  text-align: center;    /* ✅ center text inside */
}

/* Individual panel */
.panel-planning {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;    /* ensure heading + paragraph centered */
}

/* Title */
.panel-title-planning {
  margin: 0 0 10px;
  font-size: var(--wp-h3-fs-planning);
  font-weight: 800;
  color: #0b1320;
  line-height: 1.2;
}

/* Text */
.panel-text-planning {
  margin: 0 auto;
  max-width: 640px;
  font-size: var(--wp-text-fs-planning);
  line-height: 1.7;
  color: #4b5563;
}
/* ===== Plan Design block (inside a panel) ===== */
:root{
  --wp-primary-planning: #1459ff;    /* icon accent (blue) */
  --wp-ink-planning: #0b1320;        /* title color */
  --wp-muted-planning: #4b5563;      /* paragraph color */
  --wp-ico-bg-planning: #eaf1ff;     /* soft blue behind icon */
}

.planblock-planning{
  /* centers within your already-centered panel */
  max-width: 760px;
  margin: 0 auto;
  text-align: left;                  /* list looks better left-aligned */
}

.planblock-title-planning{
  margin: 0 0 8px;
  font-weight: 800;
  font-size: clamp(18px, 2.1vw, 20px);
  color: var(--wp-ink-planning);
}

.planblock-sub-planning{
  margin: 0 0 14px;
  color: var(--wp-muted-planning);
  font-size: clamp(14px, 1.8vw, 15px);
  line-height: 1.6;
}

/* List */
.planlist-planning{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

/* Row */
.planitem-planning{
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 12px;
  padding: 10px 0;
  border-radius: 10px;
}

/* Icon box */
.planitem-ico-planning{
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--wp-ico-bg-planning);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  box-shadow: 0 2px 8px rgba(20, 89, 255, .08);
}
.planitem-ico-planning img,
.planitem-ico-planning svg{
  width: 20px;
  height: 20px;
  display: block;
}

/* Text */
.planitem-text-planning{
  margin: 0;
  color: var(--wp-muted-planning);
  font-size: clamp(14px, 1.8vw, 15px);
  line-height: 1.6;
}
.planitem-text-planning strong{
  color: #163b7a;                    /* a darker blue for labels */
  font-weight: 800;
}

/* Responsive */
@media (max-width: 560px){
  .planitem-ico-planning{ width: 34px; height: 34px; }
  .planitem-ico-planning img{ width: 18px; height: 18px; }
}


/* key features */
/* ===== Key features (mobility) ===== */
:root{
  --kf-maxw-mobility: 1200px;
  --kf-gutter-mobility: clamp(16px,4vw,28px);
  --kf-blue-mobility: #1776ff;
  --kf-card-bg-mobility: #eef2f7;
  --kf-title-fs-mobility: clamp(22px,3vw,36px);
}

.key-features-mobility{
  background:#fff;
  padding: clamp(32px,2vw,80px) 0;
}

.kf-wrap-mobility{
  max-width: var(--kf-maxw-mobility);
  margin: 0 auto;
  padding: 0 var(--kf-gutter-mobility);
}

.kf-title-mobility{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  font-size: var(--kf-title-fs-mobility);
  font-weight: 800;
  color:#172554;
  text-align:center;
  margin: 0 0 clamp(18px,3vw,28px);
}

.kf-titleicon-mobility{
  width:38px;height:38px;border-radius:10px;
  display:grid;place-items:center;
  background:#e7f0ff;color:var(--kf-blue-mobility);
}
.kf-titleicon-mobility i{ font-size:18px; }

/* Grid: 4 columns on desktop */
.kf-grid-mobility{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: clamp(14px,2.4vw,22px);
}

/* Center the last two cards in row 2 (desktop only) */
.kf-grid-mobility > .kf-card-mobility:nth-child(5){ grid-column: 2; }
.kf-grid-mobility > .kf-card-mobility:nth-child(6){ grid-column: 3; }

.kf-card-mobility{
  background: var(--kf-card-bg-mobility);
  border-radius: 14px;
  padding: 24px 18px;
  text-align:center;
  box-shadow: 0 6px 16px rgba(0,0,0,.06);
  transition: transform .18s ease, box-shadow .18s ease;
}
.kf-card-mobility:hover{
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,.12);
}

.kf-icon-mobility{
  width:56px;height:56px;border-radius:14px;
  background:#e7f0ff;color:var(--kf-blue-mobility);
  display:grid;place-items:center;
  margin: 0 auto 12px;
}
.kf-icon-mobility i{ font-size:24px; }

.kf-label-mobility{
  margin:0;
  font-size: clamp(14px,1.8vw,16px);
  font-weight: 600;
  color:#0f172a;
  line-height:1.3;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px){
  .kf-grid-mobility{
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
  /* reset manual centering on tablet/phone */
  .kf-grid-mobility > .kf-card-mobility:nth-child(5),
  .kf-grid-mobility > .kf-card-mobility:nth-child(6){
    grid-column: auto;
  }
}

@media (max-width: 560px){
  .kf-grid-mobility{ grid-template-columns: 1fr; }
}
/* ponts */
/* ===== Proof points ===== */
:root{
  --pp-maxw-proof-points-planning: 1200px;
  --pp-gutter-proof-points-planning: clamp(16px, 4vw, 28px);
  --pp-surface-proof-points-planning: #eef2f5;   /* section bg */
  --pp-blue-proof-points-planning: #1e3a8a;      /* title blue */
  --pp-accent-proof-points-planning: #2563eb;    /* icon blue */
  --pp-card-bg-proof-points-planning: #ffffff;   /* card bg */
}

.proof-points-planning{
  background: var(--pp-surface-proof-points-planning);
  padding: clamp(32px, 2vw, 72px) 0;
}

.pp-wrap-proof-points-planning{
  max-width: var(--pp-maxw-proof-points-planning);
  margin: 0 auto;
  padding: 0 var(--pp-gutter-proof-points-planning);
}

/* Title */
.pp-title-proof-points-planning{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 0 clamp(18px, 3vw, 28px);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  color: var(--pp-blue-proof-points-planning);
  text-align: center;
}
.pp-icon-proof-points-planning{
  width: 36px; height: 36px;
  border-radius: 10px;
  display: grid; place-items: center;
  background: #e7f0ff;
  color: var(--pp-accent-proof-points-planning);
}

/* Grid */
.pp-grid-proof-points-planning{
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: clamp(16px, 2.6vw, 24px);
}

/* Card */
.pp-card-proof-points-planning{
  background: var(--pp-card-bg-proof-points-planning);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  padding: clamp(16px, 3vw, 22px);
  text-align: center;
  border: 1px solid rgba(0,0,0,.06);
}

.pp-card-title-proof-points-planning{
  margin: 0 0 8px;
  font-size: clamp(16px, 2.2vw, 20px);
  font-weight: 800;
  color: var(--pp-blue-proof-points-planning);
}

.pp-card-text-proof-points-planning{
  margin: 0;
  color: #4b5563;
  font-size: clamp(14px, 1.9vw, 16px);
  line-height: 1.65;
}

/* Responsive */
@media (max-width: 820px){
  .pp-grid-proof-points-planning{
    grid-template-columns: 1fr;   /* stack cards */
  }
}

/* KPI highlight */

/* ===== KPI Highlights ===== */
:root{
  --kpi-maxw-kpi-highlight: 1200px;
  --kpi-gutter-kpi-highlight: clamp(16px, 4vw, 28px);
  --kpi-surface-kpi-highlight: #edf1f5;      /* section background */
  --kpi-primary-kpi-highlight: #1d4ed8;      /* blue for numbers */
  --kpi-title-kpi-highlight: #1f2a44;        /* deep title color */
  --kpi-card-bg-kpi-highlight: #ffffff;
}

.kpi-highlight{
  background: var(--kpi-surface-kpi-highlight);
  padding: clamp(32px, 2vw, 84px) 0;
}

.wrap-kpi-highlight{
  max-width: var(--kpi-maxw-kpi-highlight);
  margin: 0 auto;
  padding: 0 var(--kpi-gutter-kpi-highlight);
}

/* Title */
.title-kpi-highlight{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  margin: 0 0 clamp(18px, 3.2vw, 28px);
  font-size: clamp(22px, 3vw, 40px);
  font-weight: 800;
  color: var(--kpi-title-kpi-highlight);
  text-align:center;
}
.icon-kpi-highlight{
  width:40px;height:40px;border-radius:12px;
  display:grid;place-items:center;
  color:#1e40af; /* icon color */
  background:#e4edff;
}

/* Grid of cards */
.grid-kpi-highlight{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.6vw, 24px);
  justify-items: center;
}

.card-kpi-highlight{
  width: 100%;
  background: var(--kpi-card-bg-kpi-highlight);
  border-radius: 12px;
  padding: clamp(22px, 3vw, 28px) clamp(18px, 2.4vw, 24px);
  text-align: center;
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
  border: 1px solid rgba(0,0,0,.06);
}

.value-kpi-highlight{
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 800;
  color: var(--kpi-primary-kpi-highlight);
  line-height: 1;
  margin-bottom: 10px;
}

.label-kpi-highlight{
  font-size: clamp(13px, 1.8vw, 15px);
  color: #4b5563;
}

/* Footnote */
.note-kpi-highlight{
  text-align:center;
  margin: clamp(18px, 3.2vw, 28px) 0 0;
  font-style: italic;
  color:#6b7280;
  font-size: clamp(12px, 1.6vw, 14px);
}

/* Responsive */
@media (max-width: 980px){
  .grid-kpi-highlight{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 560px){
  .grid-kpi-highlight{ grid-template-columns: 1fr; }
}
/* FAQs */


/* Section */
.faq-mobility{
  background: var(--faq-surface-mobility);
  padding: clamp(24px, 2vw, 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; }
}


/* last section */


/* 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, 2vw, 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;
}

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

/* --- Offline Section --- */
.offline {
    background-color: #1a237e;
    color: var(--white);
    text-align: center;
    padding: 60px 20px;
}

.offline h2 {
    color: var(--white);
    font-size: 2em;
    margin-top: 20px;
}

.offline-icon {
    font-size: 4em;
    color: var(--primary-color);
}

.offline-content p {
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

/* --- Add-ons Section --- */
.add-ons {
    background-color: var(--white);
}

.add-ons-grid {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.add-on-card {
    flex: 1;
    min-width: 300px;
    background: var(--light-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.add-on-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.add-on-icon {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* === CTA buttons: unified outline style + clean stacking === */
.cta-buttons{
  margin-top: 20px;
  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); }
}