:root {
  --blue: #0057B8;
  --green: #00B74F;
  --ink: #30261D;
  --navy: #0D1B2E;
  --canvas: #F4F7FB;
  --white: #FFFFFF;
  --body-ink: rgba(48, 38, 29, 0.78);
  --muted: rgba(48, 38, 29, 0.60);
  --faint: rgba(48, 38, 29, 0.44);
  --line: rgba(13, 27, 46, 0.10);
  --blue-tint: #E7F0FA;
  --green-tint: #E4F8ED;
  --on-navy-muted: rgba(244, 247, 251, 0.72);
  --on-navy-line: rgba(244, 247, 251, 0.14);
  --r-card: 22px;
  --r-big: 28px;
  --shadow-sm: 0 1px 2px rgba(13, 27, 46, 0.05);
  --shadow-md: 0 14px 34px -18px rgba(13, 27, 46, 0.18);
  --shadow-lg: 0 28px 60px -30px rgba(13, 27, 46, 0.28);
  --maxw: 1300px;
  --cm: max(28px, calc((100vw - var(--maxw)) / 2 + 28px));
  --edge: clamp(16px, 2.5vw, 48px);
  --display: 'Geist', sans-serif;
  --body: 'Geist', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
section { scroll-margin-top: 96px; }

body {
  background:
    radial-gradient(2400px 1800px at 10% -8%, rgba(0, 183, 79, 0.09), rgba(0, 183, 79, 0.04) 34%, rgba(0, 183, 79, 0) 72%),
    var(--canvas);
  color: var(--body-ink);
  font-family: var(--body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
::selection { background: var(--blue); color: #fff; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--ink);
}

#hdr .brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}
#hdr .brand svg.mark {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    display: block;
}
#hdr .brand svg.wm {
    width: 170px;
    height: auto;
    flex-shrink: 0;
    display: block;
}

/* ==========================================================================
   Header Layout & Sticky/Fixed Behavior
   ========================================================================== */

/* 1. Header wrapper - strip duplicate backgrounds if .wrap has it, OR unify here */
#hdr {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 999 !important;
    background: #ffffff !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.05);
    transition: transform 0.25s ease, background-color 0.2s ease;
}

/* 2. Neutralize the auto-hide script (if you want the bar to stay visible at all times) */
#hdr.nav-hidden {
    transform: none !important; /* Stops the JS from sliding it off-screen */
}

/* 3. Strip any redundant box/shadow from the inner container so it doesn't double-render */
#hdr .wrap.nav {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    padding-top: 14px;
    padding-bottom: 14px;
}

/* 4. Offset body so top hero section isn't covered */
body {
    padding-top: 76px !important;
}

/* 5. Firefox & Admin Bar alignment */
body.admin-bar #hdr {
    top: 32px !important;
}

@media screen and (max-width: 782px) {
    body.admin-bar #hdr {
        top: 46px !important;
    }
}

/* Ensure Logo scales safely */
#hdr .brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

/* Container for links and CTA on Desktop */
.nav-content {
    display: flex;
    align-items: center;
    gap: 32px;
}
/* ==========================================================================
   WordPress Primary Navigation & Dropdowns
   ========================================================================== */

/* Top-level menu list */
.navlinks .nav-menu {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Base top-level items */
.navlinks .nav-menu > li {
    position: relative; /* Anchor container for the dropdown */
    list-style: none;
    margin: 0;
    padding: 0;
}

.navlinks .nav-menu > li > a {
    display: inline-flex;
    align-items: center;
    padding: 8px 0;
    color: var(--ink, #111);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.15s ease;
}

/* Optional caret/chevron on parent item */
.navlinks .nav-menu > li.menu-item-has-children > a::after {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    margin-left: 6px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform 0.2s ease;
}

.navlinks .nav-menu > li.menu-item-has-children:hover > a::after {
    transform: rotate(225deg) translateY(-2px);
}

/* --- Dropdown Sub-Menu --- */
.navlinks .sub-menu {
    position: absolute;
    top: calc(100% + 4px);
    left: 0; /* Aligns flush with the left of the parent link */
    min-width: 220px;
    background: #ffffff;
    border: 1px solid var(--line, #e2e8f0);
    border-radius: 12px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.12), 0 8px 10px -6px rgba(0, 0, 0, 0.08);
    padding: 8px 0;
    list-style: none;
    margin: 0;
    z-index: 1000;

    /* Hidden state */
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

/* Invisible bridge so mouse hover doesn't drop between parent and dropdown */
.navlinks .sub-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
}

/* Reveal dropdown on hover and keyboard focus */
.navlinks .nav-menu > li.menu-item-has-children:hover > .sub-menu,
.navlinks .nav-menu > li.menu-item-has-children:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* Links inside dropdown */
.navlinks .sub-menu li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.navlinks .sub-menu a {
    display: block !important;
    padding: 9px 18px !important;
    font-size: 14px !important;
    font-weight: 500;
    color: var(--muted, #4b5563) !important;
    white-space: nowrap;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease;
}

.navlinks .sub-menu a:hover {
    background: var(--canvas, #f8fafc) !important;
    color: var(--blue, #0057B8) !important;
}

/* Prevent menu items from ever breaking into 2 lines */
.navlinks .nav-menu > li > a {
    white-space: nowrap !important;
    font-size: clamp(13px, 0.95vw, 15px); /* Scales slightly on intermediate screens */
    line-height: 1.2;
}

/* Make gap fluid so longer languages compress gracefully before mobile breakpoint */
.navlinks .nav-menu {
    display: flex;
    align-items: center;
    gap: clamp(10px, 1.2vw, 22px) !important;
}

/* Reduce gap between nav links and the right-hand CTA block */
.nav-content {
    gap: clamp(12px, 1.5vw, 24px) !important;
}

/* Reduce button padding slightly on tight screens */
.nav-cta .btn {
    padding-left: 12px;
    padding-right: 12px;
    white-space: nowrap;
}

/* ==========================================================================
   Mobile Drawer View (under 992px)
   ========================================================================== */
@media (max-width: 992px) {
    .navlinks .nav-menu {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
    }

    .navlinks .nav-menu > li {
        width: 100%;
        text-align: center;
    }

    .navlinks .nav-menu > li > a {
        justify-content: center;
    }

    /* Un-nest dropdown into flat vertical list on mobile */
    .navlinks .sub-menu {
        position: static;
        box-shadow: none;
        border: none;
        background: transparent;
        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: auto;
        padding: 4px 0 8px 0;
        min-width: unset;
        width: 100%;
        text-align: center;
    }

    .navlinks .sub-menu::before {
        display: none;
    }

    .navlinks .sub-menu a {
        font-size: 15px !important;
        padding: 6px 0 !important;
        color: var(--muted, #64748b) !important;
    }
}

/* --- The New Login Button --- */
.login-btn {
    border: 1px solid var(--navy, #001f3f);
    color: var(--navy, #001f3f);
    background: transparent;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    margin-right: 12px;
}
.login-btn:hover {
    background: var(--navy, #001f3f);
    color: #ffffff;
}

/* --- Mobile Hamburger Hidden on Desktop --- */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}
.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px 0;
    background: #111;
    transition: 0.3s;
}

/* Hamburger Animation */
.hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; }
.hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- Mobile Responsive Fixes --- */
@media (max-width: 992px) {
    .hamburger {
        display: block; /* Show hamburger */
    }
	
    /* Force the navlinks container to show up on mobile */
    #hdr .navlinks {
        display: flex !important;
        flex-direction: column !important;
        width: 100%;
    }
    
    /* Ensure the individual links are visible and styled */
    #hdr .navlinks a {
        display: block !important;
        padding: 10px 0;
        text-align: center;
        font-size: 18px;
        color: var(--ink, #111);
    }

    /* Transform nav-content into a dropdown */
    .nav-content {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 24px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        gap: 20px;
        
        /* Hide smoothly by default */
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }

    /* Show when hamburger is clicked */
    .nav-content.is-active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    /* Stack links vertically */
    .navlinks {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        width: 100%;
    }

    /* Stack CTA buttons vertically */
    .nav-cta {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        border-top: 1px solid #eee;
        padding-top: 20px;
        gap: 16px;
    }

    /* Make buttons full width on mobile */
    .nav-cta .btn {
        width: 100%;
        text-align: center;
        margin: 0; 
    }
}

.eyebrow {
  font-family: var(--body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
}

.sec { padding: 110px 0; }
#value { padding-top: 0; }
.sec-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.sec-head h2 { font-size: clamp(28px, 3.4vw, 40px); margin-top: 14px; }
.sec-head p { color: var(--muted); font-size: 17px; margin-top: 14px; max-width: 560px; }

/* Card Container Setup */
.vcard {
    position: relative;
    overflow: hidden; /* Keeps the background image bound to the card's rounded corners */
}

/* Background Image Layer */
.vcard-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15; /* Fades the image out heavily */
    z-index: 0;
    pointer-events: none;
}

/* Elevate the text/icons above the background image */
.vcard .ic, 
.vcard h3, 
.vcard p {
    position: relative;
    z-index: 1;
}

/* Buttons */
.btn {
  font-family: var(--body);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.16s, filter 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
}
.btn-primary { background: var(--blue); color: #fff; padding: 14px 26px; }
.btn-primary:hover { filter: brightness(1.12); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid rgba(13, 27, 46, 0.22); padding: 13px 25px; }
.btn-ghost:hover { border-color: var(--ink); }
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-link { font-weight: 600; color: var(--blue); display: inline-flex; align-items: center; gap: 8px; transition: gap 0.18s; }
.btn-link:hover { gap: 11px; }

/* Logo Lockup */
.mark { width: 30px; height: 30px; flex: none; }
.brand { display: flex; align-items: center; gap: 12px; }
.wm { height: 15px; width: auto; display: block; }

/* Header & Nav */
header {
  position: sticky;
  top: 14px;
  z-index: 60;
  padding: 0 max(16px, calc((100vw - var(--maxw)) / 2 - 52px));
  margin-top: 16px;
  transition: transform 0.34s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform;
}
header.nav-hidden {
  transform: translateY(calc(-100% - 26px));
  transition: transform 0.18s cubic-bezier(0.55, 0, 0.8, 0.2);
}
.nav {
  max-width: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 20px;
  background: transparent;
  backdrop-filter: blur(0px);
  border: 1px solid transparent;
  border-radius: 18px;
  box-shadow: none;
  padding: 0 16px 0 28px;
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
}
header.scrolled .nav {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-color: rgba(13, 27, 46, 0.07);
  box-shadow: 0 12px 34px -14px rgba(13, 27, 46, 0.22);
}
header:not(.scrolled) .navlinks a { color: rgba(48, 38, 29, 0.76); }
.navlinks { display: flex; gap: 28px; font-size: 14.5px; font-weight: 500; color: var(--muted); }
.navlinks a { transition: color 0.2s; padding: 4px 0; }
.navlinks a:hover { color: var(--ink); }
.nav-cta { display: flex; gap: 10px; align-items: center; }

/* Hero Section */
.fold {
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 86px);
  min-height: min(calc(100svh - 86px), 1000px);
  padding-bottom: clamp(24px, 3.5svh, 48px);
}
.fold-head { padding-top: clamp(28px, 4svh, 52px); }
.fold .sec-head { display: block; text-align: center; margin-bottom: 0; }
.fold .sec-head h2 { max-width: none; }
.fold .sec-head .btn-link { margin-top: 18px; }
.hero { flex: 1; display: flex; flex-direction: column; justify-content: center; padding: 24px 0 20px; overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: calc(50vw - 48px - var(--cm)) 1fr;
  gap: 48px;
  align-items: center;
  margin-left: var(--cm);
}
.hero h1 { font-size: clamp(32px, 3.1vw, 46px); font-weight: 700; max-width: 520px; }
.hero p.lead { font-size: 17px; color: var(--muted); max-width: 480px; margin: 20px 0 28px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust { margin-top: 24px; font-size: 13.5px; color: var(--faint); font-weight: 500; }
.hero-trust b { color: var(--muted); font-weight: 600; }

.hero-media { margin-right: -56px; }
.media-frame {
  position: relative;
  border-radius: var(--r-big) 0 0 var(--r-big);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.media-frame img { display: block; width: 100%; height: clamp(340px, 40svh, 470px); object-fit: cover; }
.media-tag {
  position: absolute;
  top: 14px;
  left: 16px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(13, 27, 46, 0.33);
  backdrop-filter: blur(6px);
  border-radius: 8px;
  padding: 5px 12px;
}
.media-caption {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 16px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted);
}
.cap-item { display: inline-flex; align-items: center; gap: 9px; }
.cap-item .ic {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.cap-item .ic svg { width: 12px; height: 12px; color: var(--green); }
.cap-dot { color: var(--faint); }

/* Marquee */
.marquee-sec { padding: clamp(20px, 3svh, 34px) 0 8px; }
.marquee-label {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 16px;
}
.marquee {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent var(--cm), #000 calc(var(--cm) + 120px), #000 calc(100% - var(--cm) - 120px), transparent calc(100% - var(--cm)));
  mask-image: linear-gradient(90deg, transparent var(--cm), #000 calc(var(--cm) + 120px), #000 calc(100% - var(--cm) - 120px), transparent calc(100% - var(--cm)));
}
.marquee-track { display: flex; gap: 64px; width: max-content; animation: scroll 68s linear infinite; align-items: center; }
.marquee-track span {
  font-family: var(--display);
  font-weight: 700;
  font-size: 19px;
  color: var(--faint);
  white-space: nowrap;
  letter-spacing: -0.01em;
}
@keyframes scroll { to { transform: translateX(-50%); } }

/* Value Cards */
.vcards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.vcard {
  background: var(--white);
  border-radius: var(--r-card);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s, box-shadow 0.22s;
}
.vcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.vcard.vcard-media { padding: 0; overflow: hidden; background: var(--navy); }
.vcard-media img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center 46%; }
.vcard .ic {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: var(--blue-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.vcard .ic svg { width: 26px; height: 26px; color: var(--blue); }
.vcard h3 { font-size: 21px; margin-bottom: 12px; }
.vcard p { font-size: 15px; color: var(--muted); }

/* Network Band */
.band {
  background: var(--white);
  border-radius: var(--r-big);
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  box-shadow: var(--shadow-sm);
}
.band h2 { font-size: clamp(28px, 3.4vw, 42px); margin: 14px 0 18px; }
.band p { color: var(--muted); font-size: 16.5px; margin-bottom: 22px; }
.band ul { list-style: none; display: flex; flex-direction: column; gap: 13px; margin-bottom: 28px; }
.band li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--body-ink); }
.band li .tick {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  margin-top: 1px;
}
.band li .tick svg { width: 11px; height: 11px; color: var(--green); }
.corridor { background: var(--canvas); border-radius: var(--r-card); padding: 30px 26px; }
.corridor svg { display: block; width: 100%; height: auto; }

/* Questions Grid */
.qgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.qcard {
  background: var(--white);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-sm);
  padding: 34px 30px;
  transition: transform 0.22s, box-shadow 0.22s;
}
.qcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.qcard .qnum {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--blue-tint);
  color: var(--blue);
  font-weight: 700;
  font-size: 13.5px;
  margin-bottom: 18px;
  font-family: var(--display);
}
.qcard .fear { font-size: 16px; color: var(--muted); font-style: italic; margin-bottom: 12px; }
.qcard .answer { font-size: 17px; font-weight: 600; color: var(--ink); line-height: 1.45; }

/* Economics & TCO */
.econ { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
.econ h2 { font-size: clamp(30px, 3.8vw, 46px); margin: 14px 0 18px; }
.econ p { color: var(--muted); font-size: 16.5px; margin-bottom: 18px; }
.tco { background: var(--white); border-radius: var(--r-card); box-shadow: var(--shadow-md); overflow: hidden; }
.tco-cols { display: grid; grid-template-columns: 1fr 1fr; }
.tco-col { padding: 34px 32px; text-align: center; }
.tco-col.d { border-right: 1px solid var(--line); }
.tco-col .lbl { font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--faint); margin-bottom: 12px; }
.tco-col .num { font-family: var(--display); font-weight: 700; font-size: 44px; color: var(--ink); letter-spacing: -0.02em; }
.tco-col .num small { font-size: 18px; color: var(--muted); font-weight: 600; }
.tco-col.p .num { color: var(--blue); }
.tco-col .sub { font-size: 13.5px; color: var(--muted); margin-top: 8px; }
.tco-keep { background: var(--green-tint); padding: 18px 24px; text-align: center; font-weight: 600; color: var(--ink); font-size: 15.5px; }
.tco-note { padding: 14px 24px; text-align: center; font-size: 12.5px; color: var(--faint); }

/* KPI Grid */
.kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; text-align: center; }
.kpi { padding: 10px 8px; }
.kpi .num { font-family: var(--display); font-weight: 700; font-size: clamp(38px, 4.6vw, 58px); color: var(--ink); letter-spacing: -0.03em; line-height: 1; }
.kpi .num em { font-style: normal; color: var(--blue); }
.kpi .bar { width: 34px; height: 4px; border-radius: 2px; background: var(--green); margin: 16px auto 12px; }
.kpi .lbl { font-size: 14.5px; color: var(--muted); }
.kpis.three { grid-template-columns: repeat(3, 1fr); }

/* Timeline & Video */
.fleet-video { border-radius: var(--r-big); overflow: hidden; box-shadow: var(--shadow-lg); margin: 0; background: var(--navy); aspect-ratio: 16 / 9; }
.video-split { display: grid; grid-template-columns: 1.6fr 1fr; gap: 44px; align-items: center; }
.video-side h3 { font-size: 26px; margin: 10px 0 12px; }
.video-side p { color: var(--muted); font-size: 16.5px; line-height: 1.55; margin-bottom: 16px; }
.fleet-video video { display: block; width: 100%; height: 100%; object-fit: cover; }
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; margin-top: 8px; }
.tstep { position: relative; padding: 0 18px; text-align: center; }
.tstep .dot {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--blue);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  margin: 0 auto 18px;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-sm);
}
.tstep:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 23px;
  left: calc(50% + 23px);
  right: calc(-50% + 23px);
  height: 2px;
  background: var(--line);
  z-index: 1;
}
.tstep h3 { font-size: 18px; margin-bottom: 8px; }
.tstep p { font-size: 14px; color: var(--muted); }

/* Contracts */
.contracts { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.ccard {
  background: var(--white);
  border-radius: var(--r-card);
  padding: 36px 34px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: transform 0.22s, box-shadow 0.22s;
}
.ccard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.ccard .tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-tint);
  border-radius: 999px;
  padding: 5px 12px;
}
.ccard h3 { font-size: 25px; margin: 16px 0 4px; }
.ccard .rate { font-size: 14.5px; font-weight: 600; color: var(--green); filter: brightness(0.72); margin-bottom: 14px; }
.ccard .desc { font-size: 15px; color: var(--muted); margin-bottom: 20px; }
.clist { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.clist li { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; color: var(--body-ink); }
.clist .tick {
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: var(--green-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  margin-top: 1px;
}
.clist .tick svg { width: 10px; height: 10px; color: var(--green); }
.clist li.off { color: var(--faint); }
.clist li.off .tick { background: rgba(13, 27, 46, 0.06); }
.clist li.off .tick svg { color: var(--faint); }

/* Pricing Calculator  background: var(--navy) url('../images/img-fleet-economics.jpg') center/cover no-repeat; */
.pricing {
  position: relative;
  isolation: isolate;
  color: #fff;
  border-radius: var(--r-card);
  box-shadow: var(--shadow-lg);
  padding: 34px 34px 30px;
  margin-top: 22px;
  overflow: hidden;
  background-color:;
  }
.pricing::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(155deg, rgba(9, 17, 30, 0.80) 0%, rgba(9, 17, 30, 0.58) 50%, rgba(9, 17, 30, 0.76) 100%);
}
.pricing > * { position: relative; }
.pricing-head { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.pricing-head .eyebrow { color: var(--on-navy-muted); }
.pricing-head h3 { font-size: 24px; color: #fff; margin-top: 2px; }
.geo-toggle { display: inline-flex; background: rgba(255, 255, 255, 0.08); border: 1px solid var(--on-navy-line); border-radius: 999px; padding: 4px; }
.geo-btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--on-navy-muted);
  font-family: var(--display);
  font-weight: 600;
  font-size: 14px;
  padding: 9px 20px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.geo-btn:hover { color: #fff; }
.geo-btn.is-on { background: var(--green); color: #062a17; }
.pricing-body {
  display: flex;
  align-items: baseline;
  gap: 30px;
  flex-wrap: wrap;
  margin: 24px 0 26px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--on-navy-line);
}
.price-figure { display: flex; align-items: baseline; font-family: var(--display); font-weight: 700; line-height: 1; letter-spacing: -0.02em; }
.price-figure .cur { font-size: 38px; color: var(--green); margin-right: 2px; }
.price-figure .amt { font-size: 72px; color: #fff; font-variant-numeric: tabular-nums; }
.price-figure .per { font-size: 26px; color: var(--on-navy-muted); font-weight: 600; margin-left: 4px; }
.price-ctx { flex: 1; min-width: 280px; }
.price-geo { font-size: 16px; font-weight: 600; color: #fff; margin-bottom: 6px; }
.price-basis { font-size: 14.5px; color: var(--on-navy-muted); line-height: 1.55; max-width: 520px; }
.price-basis strong { color: #fff; }
.price-extra { font-size: 13.5px; color: var(--green); font-weight: 600; margin-top: 10px; }
.price-incl .pi-title { font-family: var(--display); font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--on-navy-muted); }
.price-incl ul { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 28px; margin-top: 14px; }
.price-incl li { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; color: rgba(255, 255, 255, 0.9); }
.price-incl .tick {
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: rgba(0, 183, 79, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  margin-top: 1px;
}
.price-incl .tick svg { width: 10px; height: 10px; color: var(--green); }
.price-note { font-size: 12px; color: var(--on-navy-muted); line-height: 1.55; margin-top: 24px; }
/* 1. Ensure the image is pushed behind all inner content */
.pricing-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0 !important;
  opacity: 0.65; /* Adjust opacity as needed */
  pointer-events: none;
}
/* 2. Place the dark readability gradient between the image and the text */
.pricing::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1 !important;
  background: linear-gradient(155deg, rgba(9, 17, 30, 0.60) 0%, rgba(9, 17, 30, 0.30) 50%, rgba(9, 17, 30, 0.55) 100%);
  pointer-events: none;
}

/* 3. Elevate all text blocks, buttons, and inclusions above both layers */
.pricing-head,
.pricing-body,
.price-incl,
.price-note {
  position: relative !important;
  z-index: 2 !important;
}
/* --- UPDATED PROPERTIES --- */

/* 1. Bright white /km */
.price-figure .per { 
  font-size: 26px; 
  color: #ffffff; /* Bright white like amount */
  font-weight: 600; 
  margin-left: 4px; 
}

/* 2. Bigger, bright white "Every rate includes" */
.price-incl .pi-title { 
  font-family: var(--display); 
  font-size: 15px; /* Increased from 12px */
  font-weight: 700; 
  letter-spacing: 0.08em; 
  text-transform: uppercase; 
  color: #ffffff; /* Bright white */
  display: block;
}

/* 3. Base pill container adjustment */
.geo-toggle { 
  display: inline-flex; 
  background: rgba(255, 255, 255, 0.08); 
  border: 1px solid var(--on-navy-line); 
  border-radius: 999px; 
  padding: 4px; 
  max-width: 100%;
}


/* --- MOBILE RESPONSIVE FIXES (Screens 768px and below) --- */
@media (max-width: 768px) {
  .pricing {
    padding: 24px 18px 20px; /* Reduce padding on narrow screens */
  }

  /* Fix Portugal clipping: Allow smooth swipe scroll while keeping pill design */
  .geo-toggle {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    scrollbar-width: none; /* Hide scrollbar Firefox */
    width: 100%;
  }
  .geo-toggle::-webkit-scrollbar {
    display: none; /* Hide scrollbar Chrome/Safari */
  }

  .geo-btn {
    padding: 8px 14px; /* Slightly tighter touch targets to show more tabs */
    font-size: 13px;
    flex-shrink: 0; /* Prevents text crunching */
  }

  /* Reset hardcoded widths on mobile */
  .price-figure {
    min-width: 0 !important;
  }
  .price-ctx {
    min-width: 0 !important;
  }

  /* Single column inclusions on mobile so text doesn't squish */
  .price-incl ul {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
/* Stories */
.stories { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.story {
  background: var(--white);
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.22s, box-shadow 0.22s;
}
.story:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.story .thumb { height: 190px; position: relative; background: var(--navy); }
.story .thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.story .thumb .pin {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  z-index: 2;
}
.story .sbody { padding: 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.story h3 { font-size: 18.5px; line-height: 1.25; }
.story p { font-size: 14px; color: var(--muted); }
.story .btn-link { margin-top: auto; font-size: 14.5px; }

/* News */
.news-list { background: var(--white); border-radius: var(--r-card); box-shadow: var(--shadow-sm); overflow: hidden; }
.nrow { display: grid; grid-template-columns: 150px 1fr auto; gap: 24px; align-items: center; padding: 26px 32px; border-bottom: 1px solid var(--line); transition: background 0.2s; }
.nrow:last-child { border-bottom: none; }
.nrow:hover { background: var(--canvas); }
.nrow .cat { font-size: 11.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue); }
.nrow h3 { font-size: 17.5px; font-weight: 700; }
.nrow .date { font-size: 13px; color: var(--faint); white-space: nowrap; }

/* Contact Form */
.contact { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: start; }
.contact h2 { font-size: clamp(30px, 3.8vw, 46px); margin: 14px 0 18px; }
.contact p { color: var(--muted); font-size: 16.5px; margin-bottom: 20px; max-width: 440px; }
.contact .mini { font-size: 13.5px; color: var(--faint); }
.form { background: var(--white); border-radius: var(--r-card); box-shadow: var(--shadow-md); padding: 36px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.fgroup { display: flex; flex-direction: column; gap: 7px; }
.fgroup.full { grid-column: 1 / -1; }
.fgroup label { font-size: 13px; font-weight: 600; color: var(--ink); }
.fgroup input, .fgroup select, .fgroup textarea {
  font-family: var(--body);
  font-size: 14.5px;
  color: var(--ink);
  background: var(--canvas);
  border: 1.5px solid transparent;
  border-radius: 12px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.fgroup input:focus, .fgroup select:focus, .fgroup textarea:focus { border-color: var(--blue); background: #fff; }
.fgroup textarea { resize: vertical; min-height: 88px; }
.form .btn-primary { width: 100%; justify-content: center; margin-top: 6px; }

/* Footer */
footer { background: var(--navy); color: var(--on-navy-muted); padding: 64px 0 40px; margin-top: 110px; }
.foot-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 48px; }
.foot-top p { font-size: 14px; max-width: 280px; margin-top: 16px; }
.fcol h4 { font-size: 11.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(244, 247, 251, 0.5); margin-bottom: 16px; }
.fcol a { display: block; font-size: 14px; margin-bottom: 10px; transition: color 0.2s; }
.fcol a:hover { color: #fff; }
.foot-bot {
  border-top: 1px solid var(--on-navy-line);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
  color: rgba(244, 247, 251, 0.5);
}

/* Reveal Transitions */
.rv { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.rv.in { opacity: 1; transform: none; }

/* Language Switcher */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  background: rgba(13, 27, 46, 0.06);
  border-radius: 999px;
  padding: 3px;
  gap: 2px;
}
.lang-btn {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--muted);
  text-decoration: none;
  line-height: 1;
  transition: all 0.2s ease;
}
.lang-btn:hover {
  color: var(--ink);
}
.lang-btn.is-active {
  background: var(--white);
  color: var(--blue);
  box-shadow: var(--shadow-sm);
}
header.scrolled .lang-switcher {
  background: rgba(13, 27, 46, 0.08);
}

/* WordPress Native Block Styling for Sub-Pages */
.page-content {
    max-width: 1000px !important;
    margin: 0 auto;
}
.page-content p {
    font-size: 17px;
    color: var(--ink);
    margin-bottom: 24px;
    line-height: 1.55;
}
.page-content h1, .page-content h2, .page-content h3 {
    margin-top: 48px;
    margin-bottom: 24px;
}
.page-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--r-card);
    margin: 32px 0;
    box-shadow: var(--shadow-sm);
}
.page-content ul {
    margin-bottom: 24px;
    padding-left: 24px;
    font-size: 16.5px;
    color: var(--body-ink);
}
.page-content li {
    margin-bottom: 12px;
}

/* Team Card Modifiers for Portrait Headshots */
.team-card .thumb {
    height: 320px; /* Taller box for portraits */
}
.team-card .thumb img {
    object-position: top center; /* Prevents heads from being cropped */
}

/* --- Fix Single Press & News Header Isolation --- */
.single-press-sec,
.single-news-sec {
    display: block !important;
    width: 100% !important;
}

.single-press-sec .wrap,
.single-news-sec .wrap {
    display: block !important;
    max-width: 860px !important;
    margin: 0 auto !important;
    float: none !important;
}

.single-press-sec article,
.single-news-sec article {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
}

/* Override any global 'header' selector styling the inner press header */
.single-press-sec header.press-header,
.single-news-sec header.press-header {
    display: block !important;
    position: static !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    float: none !important;
    transform: none !important;
    writing-mode: horizontal-tb !important;
    text-orientation: mixed !important;
}

/* Force the H1 to stay strictly horizontal and full width */
.single-press-sec h1.press-title,
.single-news-sec h1.press-title {
    display: block !important;
    position: static !important;
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
    transform: none !important;
    rotate: 0deg !important;
    writing-mode: horizontal-tb !important;
    white-space: normal !important;
    word-break: normal !important;
}

/* Defeat any post-type class collisions with .press */
body.single-press article#post-175,
body.single-press article.press,
body.single-news article.news {
    all: unset !important;
    display: block !important;
    width: 100% !important;
    max-width: 860px !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
}

body.single-press .press-header,
body.single-press h1.press-title {
    display: block !important;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
}

/* Styling for Gutenberg File / PDF downloads inside press releases */
.single-article-main .wp-block-file {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 20px;
    background: #f8fafc;
    border: 1px solid var(--line, #e2e8f0);
    border-radius: 8px;
    margin: 28px 0;
}

.single-article-main .wp-block-file a:first-of-type {
    font-weight: 600;
    color: var(--navy, #001f3f);
    text-decoration: none;
    font-size: 15px;
    word-break: break-word;
}

.single-article-main .wp-block-file a:first-of-type:hover {
    text-decoration: underline;
}

.single-article-main .wp-block-file .wp-block-file__button {
    background: var(--navy, #001f3f);
    color: #fff;
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s;
}

.single-article-main .wp-block-file .wp-block-file__button:hover {
    opacity: 0.9;
}

/* Responsive Layout */
@media (max-width: 960px) {
  .navlinks { display: none; }
  .vcards, .stories { grid-template-columns: 1fr 1fr; }
  .band { grid-template-columns: 1fr; padding: 40px 32px; gap: 36px; }
  .econ, .contact { grid-template-columns: 1fr; gap: 36px; }
  .kpis { grid-template-columns: 1fr 1fr; gap: 34px; }
  .foot-top { grid-template-columns: 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; margin: 0 24px; }
  .hero-media { margin-right: -24px; }
  .media-frame { border-radius: var(--r-card) 0 0 var(--r-card); }
  .media-frame img { height: min(52vw, 380px); }
  .fold { min-height: auto; display: block; padding-bottom: 20px; }
  .hero { padding: 32px 0 44px; display: block; }
}

@media (max-width: 760px) {
  .timeline { grid-template-columns: 1fr; gap: 26px; }
  .tstep:not(:last-child)::after { display: none; }
  .contracts { grid-template-columns: 1fr; }
  .nrow { grid-template-columns: 1fr; gap: 8px; }
}

@media (max-width: 640px) {
  .wrap { padding: 0 20px; }
  .sec { padding: 76px 0; }
  .vcards, .stories, .qgrid { grid-template-columns: 1fr; }
  .frow { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr; }
  .tco-cols { grid-template-columns: 1fr; }
  .tco-col.d { border-right: none; border-bottom: 1px solid var(--line); }
  .price-incl ul { grid-template-columns: 1fr; }
  .price-figure .amt { font-size: 58px; }
  .media-caption { flex-direction: column; align-items: flex-start; gap: 10px; }
  .cap-dot { display: none; }
  .hero-grid { margin: 0 20px; }
  .hero-media { margin-right: -20px; }
  .media-tag { left: 12px; top: 10px; padding: 4px 10px; font-size: 10.5px; }
}

@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
  header { transition: none; }
  html { scroll-behavior: auto; }
  }
  
 @media (max-width: 992px) {
    /* Force the KPIs / By-the-Numbers section to stack single-column */
    .kpis {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        width: 100% !important;
        box-sizing: border-box;
    }

    /* Target the Proof section container and force vertical column stacking */
    #proof .band, #proof .econ, #proof [class*="grid"], #proof [class*="split"] {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        gap: 24px !important;
    }

    /* Force video frames and text blocks inside proof/econ sections to full width */
    #proof iframe, #proof video, #proof .media-frame, #proof img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
    }
}
@media (max-width: 992px) {
    .video-split {
        display: flex !important;
        flex-direction: column !important;
        gap: 24px !important;
        width: 100% !important;
    }
    
    .video-split > div {
        width: 100% !important;
        max-width: 100% !important;
    }

    .fleet-video video {
        width: 100% !important;
        height: auto !important;
        display: block;
    }
}
/* ============ SOFTWARE PAGE ============ */

  /* HERO - text-led, schedule graphic beneath */
  .sw-hero{padding:clamp(56px,9svh,110px) 0 0}
  .sw-hero-copy{max-width:720px;margin:0 auto;text-align:center}
  .sw-hero h1{font-size:clamp(36px,4.4vw,60px);letter-spacing:-0.035em}
  .sw-hero p.lead{font-size:18px;color:var(--muted);max-width:560px;margin:22px auto 30px}
  .sw-hero .hero-cta{justify-content:center}
  .sw-sched{margin:clamp(44px,7svh,76px) 0 clamp(72px,10svh,110px);
    -webkit-mask-image:linear-gradient(90deg,transparent 0,#000 12%,#000 88%,transparent 100%);
            mask-image:linear-gradient(90deg,transparent 0,#000 12%,#000 88%,transparent 100%)}
  .sw-sched img,.sw-sched svg {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

  /* WHY - narrow prose */
  .sw-why{max-width:680px;margin:clamp(70px,10svh,110px) auto 0}
  .sw-why h2{font-size:clamp(28px,3.4vw,40px);margin:14px 0 22px}
  .sw-why p{font-size:17px;color:var(--body-ink);margin-bottom:18px;line-height:1.65}
  .sw-why-kicker{font-family:var(--display);font-weight:700;font-size:19px;color:var(--ink);margin-top:4px}

  /* BRIDGE - navy band */
  .sw-bridge{background:var(--navy);border-radius:var(--r-big);box-shadow:var(--shadow-lg);padding:clamp(44px,6vw,72px);text-align:center;color:#fff}
  .sw-bridge h2{color:#fff;font-size:clamp(28px,3.6vw,44px)}
  .sw-bridge p{color:var(--on-navy-muted);font-size:16.5px;max-width:620px;margin:18px auto 36px}
  .sw-halves{display:grid;grid-template-columns:1fr 1fr;gap:18px;max-width:820px;margin:0 auto}
  .sw-half{display:flex;flex-direction:column;align-items:flex-start;text-align:left;gap:6px;background:rgba(255,255,255,.05);border:1px solid var(--on-navy-line);border-radius:var(--r-card);padding:26px 28px;transition:background .2s,border-color .2s,transform .22s}
  .sw-half:hover{background:rgba(255,255,255,.09);border-color:rgba(244,247,251,.28);transform:translateY(-3px)}
  .sw-half-num{font-family:var(--display);font-weight:700;font-size:14px;color:var(--green);letter-spacing:.06em}
  .sw-half-lbl{font-size:12px;font-weight:700;letter-spacing:.14em;text-transform:uppercase;color:var(--on-navy-muted)}
  .sw-half-name{font-family:var(--display);font-weight:700;font-size:19px;color:#fff;letter-spacing:-.01em}
  @media(max-width:700px){.sw-halves{grid-template-columns:1fr}}


  /* hero half-cards */
  .sw-halves2{display:grid;grid-template-columns:1fr 1fr;gap:18px;max-width:780px;margin:34px auto 0}
  .sw-half2{display:flex;flex-direction:column;align-items:flex-start;text-align:left;gap:7px;background:var(--white);border-radius:var(--r-card);box-shadow:var(--shadow-sm);padding:26px 28px;transition:transform .22s,box-shadow .22s}
  .sw-half2:hover{transform:translateY(-4px);box-shadow:var(--shadow-md)}
  .sw-half2-lbl{font-size:11.5px;font-weight:700;letter-spacing:.13em;text-transform:uppercase;color:var(--green)}
  .sw-half2-name{font-family:var(--display);font-weight:700;font-size:20px;color:var(--ink);letter-spacing:-.015em}
  .sw-half2-sub{font-size:14px;color:var(--muted)}
  @media(max-width:700px){.sw-halves2{grid-template-columns:1fr}}

  /* FEP flow */
  /* FEP steps: stacked rows, image right */
  .sw-flow2{display:flex;flex-direction:column;gap:22px;margin-top:8px}
  .fstep{display:grid;grid-template-columns:minmax(0,5fr) minmax(0,7fr);align-items:center;background:var(--white);border-radius:var(--r-card);box-shadow:var(--shadow-sm);transition:transform .22s,box-shadow .22s}
  .fstep:hover{transform:translateY(-4px);box-shadow:var(--shadow-md)}
  .ftxt{padding:36px 14px 36px 38px}
  .fshot{aspect-ratio:16/9;margin:18px;border-radius:14px;background:rgba(0,87,184,.045);border:1px dashed rgba(0,87,184,.22);display:flex;align-items:center;justify-content:center;padding:0 18px;overflow:hidden}
  .fshot span{font-size:11px;font-weight:700;letter-spacing:.11em;text-transform:uppercase;color:rgba(0,87,184,.42);text-align:center}
  .fshot img,.fshot svg{width:100%;height:100%;object-fit:cover;display:block}
  .fshot.filled{border:none;background:transparent;padding:0}
  .fnum{width:38px;height:38px;border-radius:50%;background:var(--white);border:2px solid var(--blue);color:var(--blue);display:flex;align-items:center;justify-content:center;font-family:var(--display);font-weight:700;font-size:15px;margin:0 0 18px;box-shadow:var(--shadow-sm)}
  .fstep h3{font-size:21px;margin:0 0 6px}
  .fstep p.fsub{font-family:var(--display);font-weight:600;font-size:15.5px;color:var(--ink);letter-spacing:-.005em;margin:0 0 14px;max-width:400px}
  .fstep p{font-size:15px;color:var(--muted);margin:0;max-width:400px}
  .flink{margin-top:16px !important}
  .flink a{font-size:14px;font-weight:600;color:var(--blue)}
  @media(max-width:820px){
    .fstep{grid-template-columns:1fr}
    .ftxt{padding:30px 30px 0}
    .fshot{margin:20px 20px 22px}
  }

  .sw-flow{grid-template-columns:repeat(3,1fr)}
  @media(max-width:760px){.sw-flow{grid-template-columns:1fr}}
  .sw-fep-note{margin-top:20px;font-size:12.5px;line-height:1.6;color:rgba(48,38,29,.46)}
  .sw-fep-close{display:flex;align-items:center;justify-content:space-between;gap:28px;flex-wrap:wrap;margin-top:clamp(40px,6svh,60px)}
  .sw-fep-close p{font-family:var(--display);font-weight:700;font-size:clamp(19px,1.7vw,22px);color:var(--ink);letter-spacing:-.015em}
  .sw-fep-link{font-size:15.5px;font-weight:600;color:var(--blue);white-space:nowrap;transition:opacity .18s}
  .sw-fep-link:hover{opacity:.68}

  /* PCCE staggered cards */
  .sw-engine{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;align-items:start}
  .sw-ecard{background:var(--white);border-radius:var(--r-card);padding:34px 30px;box-shadow:var(--shadow-sm);transition:transform .22s,box-shadow .22s}
  .sw-ecard:hover{transform:translateY(-4px);box-shadow:var(--shadow-md)}
  .sw-ecard .ic{width:56px;height:56px;border-radius:18px;background:var(--blue-tint);display:flex;align-items:center;justify-content:center;margin-bottom:22px}
  .sw-ecard .ic svg{width:26px;height:26px;color:var(--blue)}
  .sw-ecard-mid{margin-top:34px}
  .sw-ecard-mid .ic{background:var(--green-tint)}
  .sw-ecard-mid .ic svg{color:var(--green)}
  .sw-ecard h3{font-size:21px;margin-bottom:12px}
  .sw-ecard p{font-size:15px;color:var(--muted)}
  .sw-engine-note{max-width:640px;margin:44px auto 0;text-align:center;font-size:16.5px;color:var(--body-ink)}
  @media(max-width:960px){.sw-engine{grid-template-columns:1fr}.sw-ecard-mid{margin-top:0}}


  /* PCCE behaviour cards with mini-diagrams */
  .sw-engine2{display:grid;grid-template-columns:1fr 1fr;gap:22px}
  .sw-bcard{background:var(--white);border-radius:var(--r-card);padding:30px 30px 26px;box-shadow:var(--shadow-sm);transition:transform .22s,box-shadow .22s}
  .sw-bcard:hover{transform:translateY(-4px);box-shadow:var(--shadow-md)}
  .sw-bcard h3{font-size:21px;margin-bottom:10px}
  .sw-bcard>p{font-size:15px;color:var(--muted);margin-bottom:20px}
  .sw-bcard svg{display:block;width:100%;height:auto}
  .sw-bwide{grid-column:1/-1}
  .sw-bpair{display:grid;grid-template-columns:1fr 1fr;gap:82px;margin-top:4px}
  .sw-cap{font-size:11px;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--muted);margin:0 0 12px}
  @media(max-width:860px){.sw-engine2{grid-template-columns:1fr}.sw-bpair{grid-template-columns:1fr}}

  /* PCCE mark + ecosystem diagram */
  .pcce-inline{display:inline-block;margin-left:.36em;vertical-align:-0.16em}
  .pcce-inline svg{height:1.1em;width:auto;display:block}
  .sw-eco{max-width:980px;margin:10px auto clamp(44px,6svh,68px)}
  .sw-eco svg{display:block;width:100%;height:auto}


  /* PROOF navy card */
  .sw-proof{background:var(--navy);border-radius:var(--r-big);box-shadow:var(--shadow-lg);padding:clamp(44px,6vw,64px);color:#fff}
  .sw-proof .eyebrow{color:var(--green)}
  .sw-proof h2{color:#fff;font-size:clamp(28px,3.6vw,42px);margin-top:14px;max-width:640px}
  .sw-proof-grid{display:grid;grid-template-columns:1fr 1.05fr;gap:48px;align-items:center;margin-top:44px}
  .sw-proof-kpis{display:flex;flex-direction:column;gap:30px}
  .pkpi .num{font-family:var(--display);font-weight:700;font-size:clamp(32px,3.6vw,46px);color:#fff;letter-spacing:-.03em;line-height:1}
  .pkpi .num em{font-style:normal;color:var(--green)}
  .pkpi .num small{font-size:.5em;font-weight:600;color:var(--on-navy-muted);letter-spacing:0}
  .pkpi .lbl{font-size:14.5px;color:var(--on-navy-muted);margin-top:8px;max-width:340px}
  .sw-proof-shot{border-radius:var(--r-card);border:1px dashed rgba(244,247,251,.28);background:rgba(255,255,255,.04);aspect-ratio:16/10;position:relative}
  .sw-proof-shot .ph{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;text-align:center;padding:0 24px;color:rgba(244,247,251,.45);font-size:12.5px;font-weight:600;letter-spacing:.08em;text-transform:uppercase}
  .sw-proof-note{margin-top:40px;padding-top:26px;border-top:1px solid var(--on-navy-line);font-size:15.5px;color:rgba(244,247,251,.85);max-width:640px}
  @media(max-width:860px){.sw-proof-grid{grid-template-columns:1fr;gap:36px}}

/* ==========================================================================
   Charging & Hubs Page Components
   ========================================================================== */

/* Hero Video Frame */
.media-frame.is-video {
  height: auto;
  aspect-ratio: 16/9;
  background: var(--navy, #0D1B2E);
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: var(--navy, #0D1B2E);
}
@media (max-width: 960px) {
  .media-frame.is-video {
    height: auto;
  }
}

/* 3-Stage Reveal Slider */
.reveal-slider {
  background: var(--white, #fff);
  border: 1px solid var(--line, rgba(13, 27, 46, 0.1));
  border-radius: var(--r-big, 28px);
  box-shadow: var(--shadow-md, 0 14px 34px -18px rgba(13, 27, 46, 0.18));
  overflow: hidden;
}
.rs-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--canvas, #F4F7FB);
}
.rs-stage {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .6s ease;
  will-change: opacity;
  pointer-events: none;
}
.rs-stage.is-on {
  opacity: 1;
}
.rs-stage img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  padding: 14px;
}
.rs-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 5;
  background: rgba(255, 255, 255, 0.95);
  color: var(--blue, #0057B8);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 7px 15px;
}
.rs-body {
  padding: 24px 28px 28px;
}
.rs-cap {
  font-size: 15px;
  color: var(--muted, rgba(48, 38, 29, 0.6));
  min-height: 46px;
  margin-bottom: 20px;
  line-height: 1.55;
}
.rs-dots {
  display: flex;
  gap: 10px;
}
.rs-dot {
  flex: 1;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted, rgba(48, 38, 29, 0.6));
  background: var(--canvas, #F4F7FB);
  border: 1px solid var(--line, rgba(13, 27, 46, 0.1));
  border-radius: 999px;
  padding: 10px;
  cursor: pointer;
  transition: .18s;
  text-align: center;
}
.rs-dot:hover {
  border-color: var(--blue, #0057B8);
  color: var(--ink, #30261D);
}
.rs-dot.is-on {
  background: var(--blue, #0057B8);
  color: #fff;
  border-color: var(--blue, #0057B8);
}
@media (max-width: 820px) {
  .rs-body {
    padding: 20px 18px 22px;
  }
}

/* Night / Rest Concept Grid */
.night {
  background: var(--navy, #0D1B2E);
  border-radius: var(--r-big, 28px);
  padding: 56px;
  color: var(--white, #fff);
}
.night .eyebrow {
  color: var(--green, #00B74F);
}
.night h2 {
  color: #fff;
  font-size: clamp(26px, 3vw, 38px);
  margin: 14px 0 12px;
}
.night > p {
  color: var(--on-navy-muted, rgba(244, 247, 251, 0.72));
  font-size: 16.5px;
  max-width: 640px;
}
.night-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-top: 38px;
}
.night-item .nic {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(0, 183, 79, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.night-item .nic svg {
  width: 22px;
  height: 22px;
  color: var(--green, #00B74F);
}
.night-item h3 {
  color: #fff;
  font-size: 16.5px;
  margin-bottom: 8px;
}
.night-item p {
  color: var(--on-navy-muted, rgba(244, 247, 251, 0.72));
  font-size: 13.5px;
  line-height: 1.5;
}
@media (max-width: 820px) {
  .night {
    padding: 40px 32px;
  }
  .night-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}
@media (max-width: 520px) {
  .night-grid {
    grid-template-columns: 1fr;
  }
}
/* ==========================================================================
   Truck Leasing Page Components
   ========================================================================== */

/* Duty Cards */
.vcards-duty .vcard {
  display: flex;
  flex-direction: column;
}
/* ==========================================================================
   Duty Cycles 50/50 Split (Cards Left, Photo Right)
   ========================================================================== */
.duty-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.duty-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.duty-cards .vcard {
  margin: 0;
  height: 100%;
}

.duty-photo {
  border-radius: var(--r-big, 16px);
  overflow: hidden;
  border: 1px solid var(--line, #e2e8f0);
  box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.05));
  background: var(--canvas, #f8fafc);
}

.duty-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 860px) {
  .duty-split {
    grid-template-columns: 1fr;
  }
  .duty-photo {
    height: 320px;
  }
}
/* Showcase Spotlight */
.spot {
  background: var(--white);
  border-radius: var(--r-big);
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  overflow: hidden;
}
.spot-copy {
  padding: 48px;
  display: flex;
  flex-direction: column;
}
.spot-copy h2 {
  font-size: clamp(28px, 3.2vw, 38px);
  margin: 12px 0 16px;
}
.spot-copy p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
  margin-bottom: 28px;
}
.spot-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  margin-top: auto;
}
.spot-spec .k {
  font-family: var(--display);
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.spot-spec .v {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 3px;
}
.spot-media {
  position: relative;
  background: var(--navy);
  min-height: 380px;
}
.spot-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 960px) {
  .spot { grid-template-columns: 1fr; }
  .spot-media { min-height: 300px; }
  .spot-copy { padding: 36px 28px; }
}
@media (max-width: 640px) {
  .spot-specs { grid-template-columns: 1fr 1fr; }
}

/* Why Lease (Risk Cards) */
.carry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.ccarry {
  background: var(--white);
  border-radius: var(--r-card);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.22s, box-shadow 0.22s;
}
.ccarry:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.ccarry .ctag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  filter: brightness(0.85);
  margin-bottom: 16px;
}
.ccarry .ctag .tick {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green-tint);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ccarry .ctag .tick svg {
  width: 10px;
  height: 10px;
  color: var(--green);
}
.ccarry h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.ccarry p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.55;
}
@media (max-width: 960px) {
  .carry { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .carry { grid-template-columns: 1fr; }
}

/* Range Performance Table */
.stbl-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-big);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.stbl-scroll {
  overflow-x: auto;
}
table.stbl {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
  min-width: 720px;
}
table.stbl th,
table.stbl td {
  text-align: left;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
table.stbl th {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--faint);
  background: var(--canvas);
  white-space: nowrap;
}
table.stbl tbody tr:last-child td {
  border-bottom: none;
}
table.stbl .mdl {
  font-weight: 600;
  color: var(--ink);
}
table.stbl .rng {
  color: var(--blue);
  font-weight: 600;
  white-space: nowrap;
}
table.stbl .sub {
  display: block;
  font-size: 12.5px;
  color: var(--faint);
  margin-top: 3px;
  font-weight: 400;
}
.stbl-note {
  padding: 14px 24px;
  font-size: 12.5px;
  color: var(--faint);
  background: var(--canvas);
}

/* ==========================================================================
   Universal Mobile Viewport & Media Overflow Protection
   ========================================================================== */

/* 1. Prevent the root HTML/body from blowing out horizontally */
html, body {
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
}

/* 2. Global media containment - guarantees no image/video can exceed parent width */
img, 
video, 
iframe, 
svg, 
canvas {
  max-width: 100%;
  height: auto;
}

/* 3. The CSS Grid blowout killer:
   By default, grid items have min-width: auto, which refuses to shrink smaller 
   than child content. Setting min-width: 0 allows all grids to shrink on mobile. */
*,
*::before,
*::after {
  box-sizing: border-box;
}

.wrap,
.sec,
.hero-grid,
.spot,
.duty-split,
.contracts,
.vcards,
.night-grid,
.standards-bar {
  min-width: 0;
}

/* 4. Ensure wrappers never exceed device screen */
.wrap {
  width: 100%;
  max-width: var(--wrap, 1200px);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(16px, 4vw, 24px);
  padding-right: clamp(16px, 4vw, 24px);
}
  /* CLOSE */
  .sw-close{max-width:680px;margin:0 auto;text-align:center}
  .sw-close h2{font-size:clamp(30px,3.8vw,46px)}
  .sw-close p{color:var(--muted);font-size:17px;margin:18px 0 30px}