/* =========================================
   VERORA TRANSIT
   FULL REPLACEMENT STYLESHEET
   CSS PART 1 OF 2
   Paste Part 2 directly underneath this.
========================================= */


/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: #f5f8fc;
    color: #0a1628;
    overflow-x: hidden;
}

img,
svg {
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

button {
    border: none;
}

ul {
    list-style: none;
}


/* =========================================
   VARIABLES
========================================= */

:root {
    --navy: #071425;
    --navy-soft: #0d203a;
    --navy-light: #15345c;

    --blue: #1478ff;
    --blue-bright: #36a7ff;
    --blue-dark: #0757d4;
    --blue-soft: #eaf4ff;

    --white: #ffffff;
    --off-white: #f7f9fc;
    --light-gray: #eef3f9;
    --border: rgba(10, 22, 40, 0.1);

    --text: #0a1628;
    --text-soft: #536176;
    --text-light: #7b8798;

    --shadow-small: 0 12px 35px rgba(7, 20, 37, 0.08);
    --shadow-medium: 0 24px 65px rgba(7, 20, 37, 0.13);
    --shadow-large: 0 40px 100px rgba(7, 20, 37, 0.2);

    --radius-small: 14px;
    --radius-medium: 24px;
    --radius-large: 34px;

    --max-width: 1320px;
}


/* =========================================
   GLOBAL SECTION STYLES
========================================= */

.section {
    padding: 130px 6%;
}

.sectionEyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2.4px;
    text-transform: uppercase;
}

.sectionEyebrow span {
    width: 34px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--blue), var(--blue-bright));
}

.sectionEyebrow.light {
    color: #9ed6ff;
}

.sectionEyebrow.light span {
    background: linear-gradient(90deg, #9ed6ff, #ffffff);
}

.textLink {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 34px;
    color: var(--blue);
    font-size: 15px;
    font-weight: 800;
    transition: 0.3s ease;
}

.textLink svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: 0.3s ease;
}

.textLink:hover {
    color: var(--blue-dark);
}

.textLink:hover svg {
    transform: translateX(5px);
}


/* =========================================
   HERO
========================================= */

.hero {
    position: relative;
    min-height: 100vh;
    padding: 28px 5% 80px;
    overflow: hidden;
    background:
        radial-gradient(circle at 80% 25%, rgba(30, 137, 255, 0.24), transparent 33%),
        radial-gradient(circle at 15% 80%, rgba(30, 137, 255, 0.14), transparent 35%),
        linear-gradient(135deg, #06101e 0%, #0a1e36 55%, #0d2d50 100%);
    color: var(--white);
}

.heroBackground {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.heroGlow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.5;
}

.glowOne {
    width: 500px;
    height: 500px;
    right: -100px;
    top: 50px;
    background: rgba(34, 151, 255, 0.32);
    animation: driftOne 9s ease-in-out infinite;
}

.glowTwo {
    width: 380px;
    height: 380px;
    left: -140px;
    bottom: 20px;
    background: rgba(0, 91, 255, 0.2);
    animation: driftTwo 11s ease-in-out infinite;
}

.gridOverlay {
    position: absolute;
    inset: 0;
    opacity: 0.16;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, black, transparent 85%);
}


/* =========================================
   NAVIGATION
========================================= */

.navbar {
    position: relative;
    z-index: 20;
    width: min(100%, var(--max-width));
    margin: 0 auto;
    min-height: 86px;
    padding: 12px 18px 12px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    background: rgba(8, 23, 42, 0.64);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.logoContainer {
    width: 66px;
    height: 66px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.16);
}

.logoContainer img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 5px;
}

.brandText h2 {
    color: var(--white);
    font-size: 19px;
    font-weight: 800;
    letter-spacing: -0.4px;
}

.brandText p {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.55px;
    text-transform: uppercase;
}

.navLinks {
    display: flex;
    align-items: center;
    gap: 28px;
}

.navLinks a {
    position: relative;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    font-weight: 600;
    transition: 0.25s ease;
}

.navLinks a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -9px;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: var(--blue-bright);
    transition: 0.25s ease;
}

.navLinks a:hover {
    color: var(--white);
}

.navLinks a:hover::after {
    width: 100%;
}

.quoteButton {
    min-height: 50px;
    padding: 0 21px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--blue-bright), var(--blue));
    color: var(--white);
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 14px 30px rgba(20, 120, 255, 0.28);
    transition: 0.3s ease;
    flex-shrink: 0;
}

.quoteButton svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.quoteButton:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 38px rgba(20, 120, 255, 0.38);
}


/* =========================================
   HERO INNER
========================================= */

.heroInner {
    position: relative;
    z-index: 5;
    width: min(100%, var(--max-width));
    min-height: calc(100vh - 150px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
    align-items: center;
    gap: 80px;
    padding: 80px 0 60px;
}

.heroContent {
    max-width: 650px;
}

.heroBadge {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    padding: 10px 15px;
    margin-bottom: 28px;
    border: 1px solid rgba(124, 200, 255, 0.22);
    border-radius: 999px;
    background: rgba(18, 90, 160, 0.16);
    color: #ccecff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.heroBadge span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ac6ff;
    box-shadow: 0 0 0 6px rgba(74, 198, 255, 0.12);
}

.heroContent h1 {
    white-space: pre-line;
    font-size: clamp(64px, 6.6vw, 98px);
    line-height: 0.94;
    letter-spacing: -5px;
    font-weight: 900;
}

.heroContent h1 span {
    display: inline-block;
    color: transparent;
    background: linear-gradient(90deg, #ffffff, #55b9ff);
    -webkit-background-clip: text;
    background-clip: text;
}

.heroContent > p {
    max-width: 590px;
    margin-top: 30px;
    color: rgba(255, 255, 255, 0.67);
    font-size: 18px;
    line-height: 1.8;
}

.heroButtons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 38px;
}

.primaryButton,
.secondaryButton {
    min-height: 58px;
    padding: 0 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 16px;
    font-size: 15px;
    font-weight: 800;
    transition: 0.3s ease;
}

.primaryButton {
    color: var(--white);
    background: linear-gradient(135deg, var(--blue-bright), var(--blue));
    box-shadow: 0 18px 40px rgba(20, 120, 255, 0.3);
}

.primaryButton svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: 0.3s ease;
}

.primaryButton:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 50px rgba(20, 120, 255, 0.42);
}

.primaryButton:hover svg {
    transform: translateX(4px);
}

.secondaryButton {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
}

.secondaryButton:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.11);
    border-color: rgba(255, 255, 255, 0.28);
}

.heroTrust {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 42px;
}

.trustAvatars {
    display: flex;
    align-items: center;
}

.trustAvatars span {
    width: 40px;
    height: 40px;
    margin-left: -8px;
    display: grid;
    place-items: center;
    border: 3px solid #0a1e36;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffffff, #a9d9ff);
    color: #0d4c92;
    font-size: 12px;
    font-weight: 900;
}

.trustAvatars span:first-child {
    margin-left: 0;
}

.heroTrust strong {
    display: block;
    color: var(--white);
    font-size: 14px;
}

.heroTrust p {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}


/* =========================================
   HERO VISUAL
========================================= */

.heroVisual {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visualGlow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(38, 153, 255, 0.18);
    filter: blur(55px);
}

.mainTransportCard {
    position: relative;
    z-index: 3;
    width: min(100%, 650px);
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 34px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.05));
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    animation: cardFloat 6s ease-in-out infinite;
}

.transportCardHeader {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.transportCardHeader > div:first-child span {
    color: #8dccff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.transportCardHeader h3 {
    margin-top: 7px;
    color: var(--white);
    font-size: 22px;
    letter-spacing: -0.7px;
}

.liveStatus {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 12px;
    border: 1px solid rgba(100, 255, 175, 0.16);
    border-radius: 999px;
    background: rgba(46, 213, 138, 0.09);
    color: #8dffc6;
    font-size: 11px;
    font-weight: 800;
    white-space: nowrap;
}

.liveStatus span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #5effad;
    box-shadow: 0 0 0 5px rgba(94, 255, 173, 0.1);
}

.transportIllustration {
    position: relative;
    min-height: 355px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 26px;
    background:
        radial-gradient(circle at 50% 0%, rgba(81, 182, 255, 0.18), transparent 55%),
        linear-gradient(180deg, rgba(5, 25, 47, 0.92), rgba(5, 19, 36, 0.98));
}

.transportIllustration::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 42px;
    height: 85px;
    background: linear-gradient(180deg, #102f50, #071726);
    transform: perspective(300px) rotateX(35deg);
    transform-origin: bottom;
}

.transportIllustration::after {
    content: "";
    position: absolute;
    bottom: 64px;
    width: 72%;
    height: 4px;
    border-radius: 999px;
    background: repeating-linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.85) 0 42px,
        transparent 42px 78px
    );
    opacity: 0.55;
}

.coachIllustration {
    position: relative;
    z-index: 4;
    width: 93%;
    filter: drop-shadow(0 28px 25px rgba(0, 0, 0, 0.42));
}

.roadLine {
    position: absolute;
    bottom: 23px;
    height: 1px;
    background: rgba(116, 199, 255, 0.18);
}

.roadLineOne {
    width: 92%;
}

.roadLineTwo {
    width: 70%;
    bottom: 12px;
}

.transportMetrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 16px;
}

.transportMetrics > div {
    padding: 17px 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.055);
}

.transportMetrics span {
    display: block;
    color: rgba(255, 255, 255, 0.44);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.transportMetrics strong {
    display: block;
    margin-top: 7px;
    color: var(--white);
    font-size: 14px;
}

.routeCard {
    position: absolute;
    z-index: 6;
    min-width: 245px;
    padding: 17px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 20px;
    background: rgba(8, 25, 47, 0.76);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.routeCardTop {
    top: 58px;
    right: -12px;
    animation: floatSmall 5s ease-in-out infinite;
}

.routeCardBottom {
    left: -28px;
    bottom: 63px;
    justify-content: space-between;
    animation: floatSmall 5.7s ease-in-out infinite reverse;
}

.routeCard span {
    display: block;
    color: rgba(255, 255, 255, 0.46);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.routeCard strong {
    display: block;
    margin-top: 5px;
    color: var(--white);
    font-size: 13px;
}

.routeIcon,
.supportIcon {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(54, 167, 255, 0.25), rgba(20, 120, 255, 0.12));
    color: #79c8ff;
}

.routeIcon svg,
.supportIcon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.scrollIndicator {
    position: absolute;
    z-index: 5;
    left: 50%;
    bottom: 25px;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.38);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.scrollIndicator span {
    width: 1px;
    height: 36px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}


/* =========================================
   TRUST STRIP
========================================= */

.trustStrip {
    position: relative;
    z-index: 8;
    width: min(calc(100% - 12%), var(--max-width));
    margin: -32px auto 0;
    padding: 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    border: 1px solid var(--border);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-medium);
    backdrop-filter: blur(18px);
}

.trustItem {
    min-height: 92px;
    padding: 15px 17px;
    display: flex;
    align-items: center;
    gap: 14px;
    border-radius: 18px;
    transition: 0.3s ease;
}

.trustItem:hover {
    background: var(--blue-soft);
    transform: translateY(-4px);
}

.trustIcon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--blue), var(--blue-bright));
    color: var(--white);
    box-shadow: 0 12px 24px rgba(20, 120, 255, 0.2);
}

.trustIcon svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.trustItem h3 {
    color: var(--text);
    font-size: 15px;
    font-weight: 800;
}

.trustItem p {
    margin-top: 5px;
    color: var(--text-light);
    font-size: 12px;
}


/* =========================================
   INTRO
========================================= */

.intro {
    background: var(--off-white);
}

.introLayout {
    width: min(100%, var(--max-width));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(470px, 1.1fr);
    align-items: center;
    gap: 90px;
}

.introContent h2 {
    max-width: 650px;
    font-size: clamp(48px, 5vw, 74px);
    line-height: 1.02;
    letter-spacing: -3.7px;
    color: var(--text);
}

.introContent > p {
    max-width: 610px;
    margin-top: 28px;
    color: var(--text-soft);
    font-size: 18px;
    line-height: 1.85;
}

.introVisual {
    position: relative;
}

.routeMapCard {
    position: relative;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 32px;
    background: var(--white);
    box-shadow: var(--shadow-large);
    overflow: hidden;
}

.routeMapCard::before {
    content: "";
    position: absolute;
    width: 290px;
    height: 290px;
    top: -140px;
    right: -90px;
    border-radius: 50%;
    background: rgba(54, 167, 255, 0.11);
    filter: blur(8px);
}

.mapHeader {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.mapHeader span {
    color: var(--blue);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.mapHeader h3 {
    max-width: 330px;
    margin-top: 8px;
    color: var(--text);
    font-size: 25px;
    line-height: 1.25;
    letter-spacing: -0.8px;
}

.mapStatus {
    padding: 9px 13px;
    border-radius: 999px;
    background: #e8fff4;
    color: #11915c;
    font-size: 11px;
    font-weight: 800;
}

.routeMap {
    position: relative;
    min-height: 330px;
    margin-top: 25px;
    border: 1px solid rgba(13, 50, 92, 0.08);
    border-radius: 24px;
    overflow: hidden;
    background:
        linear-gradient(rgba(20, 120, 255, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(20, 120, 255, 0.055) 1px, transparent 1px),
        linear-gradient(145deg, #f8fbff, #edf5fe);
    background-size: 38px 38px;
}

.routePath {
    position: absolute;
    left: 28%;
    top: 19%;
    width: 46%;
    height: 62%;
    border: 4px dashed rgba(20, 120, 255, 0.45);
    border-left-color: transparent;
    border-bottom-color: transparent;
    border-radius: 50%;
    transform: rotate(19deg);
}

.mapPoint {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
}

.mapPoint > span {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    border: 5px solid var(--white);
    border-radius: 50%;
    background: var(--blue);
    box-shadow: 0 0 0 2px rgba(20, 120, 255, 0.15), 0 8px 18px rgba(20, 120, 255, 0.24);
}

.mapPoint strong {
    color: var(--text);
    font-size: 13px;
}

.mapPoint p {
    margin-top: 4px;
    color: var(--text-light);
    font-size: 11px;
}

.mapPointStart {
    left: 40px;
    bottom: 58px;
}

.mapPointEnd {
    right: 38px;
    top: 50px;
}

.routeBus {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--blue), var(--blue-bright));
    color: var(--white);
    box-shadow: 0 18px 30px rgba(20, 120, 255, 0.32);
    transform: translate(-50%, -50%) rotate(-8deg);
}

.routeBus svg {
    width: 29px;
    height: 29px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mapFooter {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 16px;
}

.mapFooter > div {
    padding: 16px;
    border-radius: 16px;
    background: var(--light-gray);
}

.mapFooter span {
    display: block;
    color: var(--text-light);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.mapFooter strong {
    display: block;
    margin-top: 6px;
    color: var(--text);
    font-size: 13px;
}


/* =========================================
   STATS / STANDARD
========================================= */

.stats {
    background:
        radial-gradient(circle at 90% 10%, rgba(38, 154, 255, 0.16), transparent 28%),
        linear-gradient(135deg, #06101e, #0b2340);
    color: var(--white);
}

.statsHeader,
.statsGrid {
    width: min(100%, var(--max-width));
    margin-left: auto;
    margin-right: auto;
}

.statsHeader {
    max-width: var(--max-width);
    margin-bottom: 55px;
}

.statsHeader h2 {
    max-width: 760px;
    font-size: clamp(46px, 5vw, 72px);
    line-height: 1.02;
    letter-spacing: -3.5px;
}

.statsGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.statCard {
    min-height: 305px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.055);
    backdrop-filter: blur(12px);
    transition: 0.35s ease;
}

.statCard:hover {
    transform: translateY(-9px);
    border-color: rgba(95, 189, 255, 0.3);
    background: rgba(255, 255, 255, 0.085);
}

.statNumber {
    margin-bottom: 65px;
    color: #72c4ff;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1.8px;
}

.statCard h3 {
    font-size: 21px;
    letter-spacing: -0.5px;
}

.statCard p {
    margin-top: 17px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
    line-height: 1.75;
}


/* =========================================
   FLEET
========================================= */

.fleet {
    background: var(--white);
}

.sectionHeadingRow {
    width: min(100%, var(--max-width));
    margin: 0 auto 58px;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(330px, 0.6fr);
    align-items: end;
    gap: 80px;
}

.sectionHeadingRow h2 {
    max-width: 680px;
    font-size: clamp(48px, 5vw, 75px);
    line-height: 1.02;
    letter-spacing: -3.8px;
}

.sectionHeadingRow > p {
    color: var(--text-soft);
    font-size: 16px;
    line-height: 1.8;
}

.fleetGrid {
    width: min(100%, var(--max-width));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.fleetCard {
    position: relative;
    min-height: 560px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 28px;
    background: linear-gradient(180deg, #ffffff, #f8fbff);
    box-shadow: var(--shadow-small);
    transition: 0.35s ease;
}

.fleetCard::before {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    right: -110px;
    top: -110px;
    border-radius: 50%;
    background: rgba(20, 120, 255, 0.07);
    transition: 0.35s ease;
}

.fleetCard:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.fleetCard:hover::before {
    transform: scale(1.2);
}

.featuredFleetCard {
    color: var(--white);
    border-color: transparent;
    background:
        radial-gradient(circle at 90% 5%, rgba(73, 186, 255, 0.24), transparent 35%),
        linear-gradient(145deg, #071526, #0b3158);
    box-shadow: 0 30px 70px rgba(7, 20, 37, 0.22);
}

.fleetCardTop {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 45px;
}

.fleetIcon {
    width: 95px;
    height: 95px;
    display: grid;
    place-items: center;
    border-radius: 25px;
    background: linear-gradient(135deg, var(--blue), var(--blue-bright));
    color: var(--white);
    box-shadow: 0 20px 38px rgba(20, 120, 255, 0.25);
}

.fleetIcon svg {
    width: 61px;
    height: 61px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.fleetType {
    padding: 9px 12px;
    border-radius: 999px;
    background: var(--blue-soft);
    color: var(--blue);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.featuredFleetCard .fleetType {
    background: rgba(255, 255, 255, 0.1);
    color: #b6e2ff;
}

.fleetCard h3 {
    position: relative;
    z-index: 2;
    font-size: 29px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.fleetCard > p {
    position: relative;
    z-index: 2;
    margin-top: 20px;
    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.8;
}

.featuredFleetCard > p {
    color: rgba(255, 255, 255, 0.58);
}

.fleetFeatures {
    position: relative;
    z-index: 2;
    margin-top: auto;
    padding-top: 34px;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.fleetFeatures span {
    min-height: 48px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 14px;
    background: var(--light-gray);
    color: var(--text);
    font-size: 13px;
    font-weight: 700;
}

.featuredFleetCard .fleetFeatures span {
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.86);
}

.fleetFeatures svg {
    width: 19px;
    height: 19px;
    flex-shrink: 0;
    fill: none;
    stroke: var(--blue);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.featuredFleetCard .fleetFeatures svg {
    stroke: #72c7ff;
}


/* =========================================
   SERVICES
========================================= */

.services {
    background:
        radial-gradient(circle at 15% 15%, rgba(54, 167, 255, 0.13), transparent 28%),
        linear-gradient(135deg, #071425, #0d2a4a);
    color: var(--white);
}

.servicesLayout {
    width: min(100%, var(--max-width));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(340px, 0.78fr) minmax(0, 1.22fr);
    align-items: start;
    gap: 90px;
}

.servicesSticky {
    position: sticky;
    top: 35px;
}

.servicesSticky h2 {
    max-width: 620px;
    font-size: clamp(48px, 5vw, 74px);
    line-height: 1.02;
    letter-spacing: -3.8px;
}

.servicesSticky > p {
    max-width: 540px;
    margin-top: 27px;
    color: rgba(255, 255, 255, 0.59);
    font-size: 17px;
    line-height: 1.8;
}

.servicesSticky .primaryButton {
    margin-top: 36px;
}

.servicesList {
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.serviceCard {
    position: relative;
    min-height: 180px;
    padding: 28px;
    display: grid;
    grid-template-columns: auto auto 1fr;
    align-items: center;
    gap: 23px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.055);
    backdrop-filter: blur(15px);
    transition: 0.35s ease;
}

.serviceCard::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    right: -80px;
    top: -80px;
    border-radius: 50%;
    background: rgba(54, 167, 255, 0.11);
    transition: 0.35s ease;
}

.serviceCard:hover {
    transform: translateX(8px);
    border-color: rgba(86, 187, 255, 0.28);
    background: rgba(255, 255, 255, 0.082);
}

.serviceCard:hover::after {
    transform: scale(1.25);
}

.serviceNumber {
    align-self: flex-start;
    color: rgba(125, 204, 255, 0.7);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.4px;
}

.serviceIcon {
    position: relative;
    z-index: 2;
    width: 68px;
    height: 68px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(54, 167, 255, 0.25), rgba(20, 120, 255, 0.12));
    color: #86d0ff;
}

.serviceIcon svg {
    width: 32px;
    height: 32px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.serviceCard h3 {
    position: relative;
    z-index: 2;
    font-size: 22px;
    letter-spacing: -0.6px;
}

.serviceCard p {
    position: relative;
    z-index: 2;
    max-width: 520px;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 14px;
    line-height: 1.75;
}


/* =========================================
   WHY VERORA
========================================= */

.why {
    background: var(--off-white);
}

.whyLayout {
    width: min(100%, var(--max-width));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(430px, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 100px;
}

.whyVisual {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.safetyPanel {
    position: relative;
    width: min(100%, 540px);
    padding: 42px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 34px;
    background:
        radial-gradient(circle at 85% 10%, rgba(61, 177, 255, 0.16), transparent 32%),
        linear-gradient(145deg, #ffffff, #edf6ff);
    box-shadow: var(--shadow-large);
}

.safetyPanel::before {
    content: "";
    position: absolute;
    inset: 20px;
    border: 1px solid rgba(20, 120, 255, 0.08);
    border-radius: 25px;
    pointer-events: none;
}

.safetyRing {
    position: relative;
    z-index: 2;
    width: 128px;
    height: 128px;
    margin-bottom: 34px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(20, 120, 255, 0.15);
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(20, 120, 255, 0.2), rgba(20, 120, 255, 0.05));
    box-shadow:
        0 0 0 15px rgba(20, 120, 255, 0.045),
        0 22px 50px rgba(20, 120, 255, 0.15);
}

.safetyRing svg {
    width: 58px;
    height: 58px;
    fill: none;
    stroke: var(--blue);
    stroke-width: 1.55;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.safetyPanel h3 {
    position: relative;
    z-index: 2;
    max-width: 420px;
    font-size: 34px;
    line-height: 1.15;
    letter-spacing: -1.4px;
}

.safetyPanel > p {
    position: relative;
    z-index: 2;
    max-width: 430px;
    margin-top: 20px;
    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.8;
}

.safetyChecklist {
    position: relative;
    z-index: 2;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.safetyChecklist > div {
    min-height: 54px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 13px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--text);
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(7, 20, 37, 0.05);
}

.safetyChecklist span {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: var(--blue-soft);
    color: var(--blue);
}

.safetyChecklist svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.miniInfoCard {
    position: absolute;
    right: -5px;
    bottom: 58px;
    z-index: 5;
    min-width: 260px;
    padding: 20px 22px;
    border: 1px solid rgba(20, 120, 255, 0.11);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-medium);
    backdrop-filter: blur(15px);
    animation: floatSmall 5.4s ease-in-out infinite;
}

.miniInfoCard span {
    display: block;
    color: var(--blue);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.miniInfoCard strong {
    display: block;
    margin-top: 7px;
    color: var(--text);
    font-size: 15px;
}

.whyContent h2 {
    max-width: 690px;
    font-size: clamp(48px, 5vw, 74px);
    line-height: 1.02;
    letter-spacing: -3.8px;
}

.whyContent > p {
    max-width: 620px;
    margin-top: 27px;
    color: var(--text-soft);
    font-size: 17px;
    line-height: 1.85;
}

.whyPoints {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.whyPoint {
    min-height: 110px;
    padding: 22px 24px;
    display: grid;
    grid-template-columns: 48px 1fr;
    align-items: start;
    gap: 18px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--white);
    box-shadow: var(--shadow-small);
    transition: 0.3s ease;
}

.whyPoint:hover {
    transform: translateX(7px);
    border-color: rgba(20, 120, 255, 0.2);
}

.whyPoint > span {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: var(--blue-soft);
    color: var(--blue);
    font-size: 12px;
    font-weight: 900;
}

.whyPoint h3 {
    font-size: 18px;
    letter-spacing: -0.4px;
}

.whyPoint p {
    margin-top: 8px;
    color: var(--text-soft);
    font-size: 13px;
    line-height: 1.7;
}


/* =========================================
   PROCESS
========================================= */

.process {
    background: var(--white);
}

.processHeader {
    width: min(100%, var(--max-width));
    margin: 0 auto 65px;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(310px, 0.55fr);
    align-items: end;
    gap: 70px;
}

.processHeader h2 {
    max-width: 760px;
    font-size: clamp(48px, 5vw, 74px);
    line-height: 1.02;
    letter-spacing: -3.7px;
}

.processHeader > p {
    color: var(--text-soft);
    font-size: 16px;
    line-height: 1.8;
}

.processGrid {
    width: min(100%, var(--max-width));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 75px 1fr 75px 1fr;
    align-items: center;
}

.processStep {
    position: relative;
    min-height: 385px;
    padding: 30px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 27px;
    background: linear-gradient(180deg, #ffffff, #f6faff);
    box-shadow: var(--shadow-small);
    transition: 0.35s ease;
}

.processStep::before {
    content: "";
    position: absolute;
    width: 210px;
    height: 210px;
    right: -110px;
    bottom: -110px;
    border-radius: 50%;
    background: rgba(20, 120, 255, 0.07);
}

.processStep:hover {
    transform: translateY(-9px);
    box-shadow: var(--shadow-medium);
}

.processNumber {
    color: var(--blue);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.6px;
}

.processIcon {
    width: 78px;
    height: 78px;
    margin-top: 58px;
    display: grid;
    place-items: center;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--blue), var(--blue-bright));
    color: var(--white);
    box-shadow: 0 20px 38px rgba(20, 120, 255, 0.22);
}

.processIcon svg {
    width: 36px;
    height: 36px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.processStep h3 {
    margin-top: 32px;
    font-size: 23px;
    letter-spacing: -0.7px;
}

.processStep p {
    margin-top: 16px;
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.75;
}

.processLine {
    position: relative;
    height: 2px;
    margin: 0 15px;
    background: linear-gradient(90deg, rgba(20, 120, 255, 0.15), var(--blue), rgba(20, 120, 255, 0.15));
}

.processLine::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 9px;
    height: 9px;
    border-top: 2px solid var(--blue);
    border-right: 2px solid var(--blue);
    transform: translateY(-50%) rotate(45deg);
}


/* =========================================
   QUOTE SECTION
========================================= */

.quoteSection {
    background:
        radial-gradient(circle at 10% 20%, rgba(54, 167, 255, 0.18), transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(20, 120, 255, 0.14), transparent 32%),
        linear-gradient(135deg, #06101e, #0b2b4e);
}

.quoteContainer {
    width: min(100%, var(--max-width));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(340px, 0.82fr) minmax(520px, 1.18fr);
    align-items: center;
    gap: 85px;
}

.quoteContent {
    color: var(--white);
}

.quoteContent h2 {
    max-width: 640px;
    font-size: clamp(50px, 5.5vw, 78px);
    line-height: 0.99;
    letter-spacing: -4px;
}

.quoteContent > p {
    max-width: 560px;
    margin-top: 27px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 17px;
    line-height: 1.8;
}

.quoteContact {
    margin-top: 42px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.quoteContact > div {
    width: 54px;
    height: 54px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.09);
    color: #8dd4ff;
}

.quoteContact svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.quoteContact strong {
    display: block;
    color: var(--white);
    font-size: 14px;
}

.quoteContact span {
    color: rgba(255, 255, 255, 0.46);
    font-size: 12px;
    line-height: 1.6;
}

.quoteForm {
    padding: 35px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.075);
    box-shadow: 0 38px 90px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.formRow {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.formGroup {
    margin-bottom: 17px;
}

.formGroup label {
    display: block;
    margin-bottom: 9px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 12px;
    font-weight: 700;
}

.formGroup input,
.formGroup textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    outline: none;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.075);
    color: var(--white);
    transition: 0.25s ease;
}

.formGroup input {
    height: 52px;
    padding: 0 15px;
}

.formGroup textarea {
    padding: 15px;
    resize: vertical;
    min-height: 130px;
}

.formGroup input::placeholder,
.formGroup textarea::placeholder {
    color: rgba(255, 255, 255, 0.31);
}

.formGroup input:focus,
.formGroup textarea:focus {
    border-color: rgba(88, 190, 255, 0.55);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 4px rgba(54, 167, 255, 0.08);
}

.formButton {
    width: 100%;
    min-height: 58px;
    margin-top: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 16px;
    cursor: pointer;
    background: linear-gradient(135deg, var(--blue-bright), var(--blue));
    color: var(--white);
    font-weight: 800;
    box-shadow: 0 18px 38px rgba(20, 120, 255, 0.27);
    transition: 0.3s ease;
}

.formButton svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.formButton:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 45px rgba(20, 120, 255, 0.4);
}


/* =========================================
   FOOTER
========================================= */

footer {
    padding: 80px 6% 30px;
    background: #040c16;
    color: var(--white);
}

.footerTop {
    width: min(100%, var(--max-width));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 0.65fr);
    gap: 70px;
    padding-bottom: 65px;
}

.footerBrand .brand {
    margin-bottom: 24px;
}

.footerBrand .logoContainer {
    width: 62px;
    height: 62px;
}

.footerBrand > p {
    max-width: 390px;
    color: rgba(255, 255, 255, 0.46);
    font-size: 14px;
    line-height: 1.8;
}

.footerColumn {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}

.footerColumn h3 {
    margin-bottom: 8px;
    color: var(--white);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.footerColumn a {
    position: relative;
    color: rgba(255, 255, 255, 0.47);
    font-size: 13px;
    transition: 0.25s ease;
}

.footerColumn a:hover {
    color: var(--white);
    transform: translateX(4px);
}

.footerBottom {
    width: min(100%, var(--max-width));
    margin: 0 auto;
    padding-top: 27px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footerBottom p,
.footerBottom a {
    color: rgba(255, 255, 255, 0.38);
    font-size: 12px;
}

.footerBottom > div {
    display: flex;
    align-items: center;
    gap: 9px;
}

.footerBottom svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: rgba(255, 255, 255, 0.52);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================
   ANIMATIONS
========================================= */

@keyframes cardFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes floatSmall {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes driftOne {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-35px, 30px) scale(1.08);
    }
}

@keyframes driftTwo {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, -25px) scale(1.1);
    }
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scaleY(0.7);
        transform-origin: top;
    }

    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}


/* =========================================
   RESPONSIVE - LARGE TABLETS
========================================= */

@media (max-width: 1180px) {

    .navLinks {
        gap: 18px;
    }

    .navLinks a {
        font-size: 13px;
    }

    .brandText p {
        display: none;
    }

    .heroInner {
        grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
        gap: 45px;
    }

    .heroContent h1 {
        font-size: clamp(58px, 7vw, 84px);
    }

    .heroVisual {
        min-height: 580px;
    }

    .routeCardTop {
        right: -5px;
    }

    .routeCardBottom {
        left: -5px;
    }

    .statsGrid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fleetGrid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fleetCard:last-child {
        grid-column: 1 / -1;
        max-width: calc(50% - 11px);
        width: 100%;
        justify-self: center;
    }

    .servicesLayout,
    .whyLayout,
    .quoteContainer {
        gap: 55px;
    }

    .processGrid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }

    .processLine {
        display: none;
    }

    .footerTop {
        grid-template-columns: 1.3fr repeat(3, 0.7fr);
        gap: 38px;
    }
}


/* =========================================
   RESPONSIVE - TABLETS
========================================= */

@media (max-width: 950px) {

    .section {
        padding: 100px 6%;
    }

    .navbar {
        padding: 12px 14px;
    }

    .navLinks {
        display: none;
    }

    .hero {
        min-height: auto;
        padding-bottom: 100px;
    }

    .heroInner {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 35px;
        padding-top: 75px;
    }

    .heroContent {
        max-width: 760px;
    }

    .heroContent h1 {
        font-size: clamp(64px, 10vw, 92px);
    }

    .heroVisual {
        width: min(100%, 720px);
        min-height: 620px;
        margin: 0 auto;
    }

    .scrollIndicator {
        display: none;
    }

    .trustStrip {
        grid-template-columns: repeat(2, 1fr);
        margin-top: -42px;
    }

    .introLayout,
    .whyLayout,
    .quoteContainer {
        grid-template-columns: 1fr;
    }

    .introLayout {
        gap: 55px;
    }

    .whyLayout {
        gap: 55px;
    }

    .whyVisual {
        min-height: 600px;
        order: 2;
    }

    .whyContent {
        order: 1;
    }

    .sectionHeadingRow,
    .processHeader {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .servicesLayout {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .servicesSticky {
        position: static;
    }

    .quoteContainer {
        gap: 55px;
    }

    .footerTop {
        grid-template-columns: repeat(2, 1fr);
    }

    .footerBrand {
        grid-column: 1 / -1;
    }
}


/* =========================================
   RESPONSIVE - MOBILE
========================================= */

@media (max-width: 700px) {

    .section {
        padding: 80px 5%;
    }

    .hero {
        padding: 18px 4% 85px;
    }

    .navbar {
        min-height: 72px;
        border-radius: 19px;
    }

    .logoContainer {
        width: 50px;
        height: 50px;
        border-radius: 14px;
    }

    .brandText h2 {
        font-size: 15px;
    }

    .brandText p {
        display: none;
    }

    .quoteButton {
        min-height: 44px;
        padding: 0 15px;
        font-size: 12px;
    }

    .quoteButton svg {
        display: none;
    }

    .heroInner {
        padding-top: 60px;
    }

    .heroBadge {
        margin-bottom: 22px;
        font-size: 11px;
    }

    .heroContent h1 {
        font-size: clamp(50px, 15vw, 72px);
        letter-spacing: -3px;
    }

    .heroContent > p {
        font-size: 15px;
        line-height: 1.75;
    }

    .heroButtons {
        flex-direction: column;
    }

    .primaryButton,
    .secondaryButton {
        width: 100%;
    }

    .heroTrust {
        align-items: flex-start;
    }

    .heroVisual {
        min-height: 475px;
    }

    .mainTransportCard {
        padding: 17px;
        border-radius: 25px;
    }

    .transportCardHeader {
        align-items: flex-start;
    }

    .transportCardHeader h3 {
        font-size: 18px;
    }

    .liveStatus {
        padding: 8px 10px;
        font-size: 9px;
    }

    .transportIllustration {
        min-height: 250px;
    }

    .transportMetrics {
        grid-template-columns: 1fr;
    }

    .routeCard {
        min-width: 195px;
        padding: 13px;
    }

    .routeCardTop {
        top: 18px;
        right: -8px;
    }

    .routeCardBottom {
        left: -8px;
        bottom: 18px;
    }

    .routeIcon,
    .supportIcon {
        width: 38px;
        height: 38px;
    }

    .trustStrip {
        width: calc(100% - 8%);
        grid-template-columns: 1fr;
        padding: 14px;
        border-radius: 22px;
    }

    .trustItem {
        min-height: 78px;
    }

    .introContent h2,
    .sectionHeadingRow h2,
    .servicesSticky h2,
    .whyContent h2,
    .processHeader h2,
    .statsHeader h2,
    .quoteContent h2 {
        font-size: clamp(42px, 12vw, 58px);
        letter-spacing: -2.5px;
    }

    .introContent > p,
    .servicesSticky > p,
    .whyContent > p,
    .quoteContent > p {
        font-size: 15px;
    }

    .routeMapCard {
        padding: 18px;
        border-radius: 24px;
    }

    .mapHeader {
        flex-direction: column;
    }

    .routeMap {
        min-height: 285px;
    }

    .mapPointStart {
        left: 22px;
        bottom: 36px;
    }

    .mapPointEnd {
        right: 18px;
        top: 40px;
    }

    .mapFooter {
        grid-template-columns: 1fr;
    }

    .statsGrid,
    .fleetGrid,
    .processGrid {
        grid-template-columns: 1fr;
    }

    .statCard {
        min-height: 245px;
    }

    .statNumber {
        margin-bottom: 42px;
    }

    .fleetCard,
    .fleetCard:last-child {
        min-height: 510px;
        max-width: none;
        grid-column: auto;
    }

    .serviceCard {
        grid-template-columns: auto 1fr;
        gap: 17px;
        padding: 22px;
    }

    .serviceNumber {
        display: none;
    }

    .serviceIcon {
        width: 58px;
        height: 58px;
    }

    .whyVisual {
        min-height: 545px;
    }

    .safetyPanel {
        padding: 28px;
    }

    .safetyPanel h3 {
        font-size: 28px;
    }

    .safetyRing {
        width: 100px;
        height: 100px;
    }

    .miniInfoCard {
        right: 0;
        bottom: 25px;
        min-width: 220px;
    }

    .whyPoint {
        grid-template-columns: 42px 1fr;
        padding: 18px;
    }

    .whyPoint > span {
        width: 42px;
        height: 42px;
    }

    .processStep {
        min-height: 335px;
    }

    .processIcon {
        margin-top: 40px;
    }

    .quoteForm {
        padding: 22px;
        border-radius: 24px;
    }

    .formRow {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .footerTop {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footerBrand {
        grid-column: auto;
    }

    .footerBottom {
        flex-direction: column;
        align-items: flex-start;
    }
}


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

@media (max-width: 430px) {

    .navbar {
        gap: 10px;
    }

    .brand {
        gap: 9px;
    }

    .brandText h2 {
        font-size: 13px;
    }

    .quoteButton {
        padding: 0 12px;
        font-size: 10px;
    }

    .heroContent h1 {
        font-size: 49px;
    }

    .heroVisual {
        min-height: 430px;
    }

    .routeCard {
        min-width: 175px;
    }

    .routeCard strong {
        font-size: 11px;
    }

    .routeCard span {
        font-size: 9px;
    }

    .transportIllustration {
        min-height: 220px;
    }

    .transportMetrics strong {
        font-size: 12px;
    }

    .routeMap {
        min-height: 250px;
    }

    .mapPoint div {
        display: none;
    }

    .fleetCard {
        padding: 22px;
    }

    .fleetIcon {
        width: 78px;
        height: 78px;
    }

    .fleetIcon svg {
        width: 51px;
        height: 51px;
    }

    .serviceCard {
        grid-template-columns: 1fr;
    }

    .miniInfoCard {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: -30px;
        margin-left: 20px;
        width: calc(100% - 40px);
    }
}


/* =========================================
   REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}