/* ROOT VARIABLES */
:root {
    --primary-orange: #ff5200;
    --primary-blue: #003651;
    --dark-blue: #002334;
    --light-blue: #d9edf1;
    --bg-beige: #f6f3ed;
    --white: #ffffff;
    --text-color: #003651;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --border-radius: 20px;
    --shadow-sm: 0 2px 8px rgba(0, 54, 81, 0.06);
    --shadow-md: 0 8px 24px rgba(0, 54, 81, 0.08);
    --shadow-lg: 0 16px 48px rgba(0, 54, 81, 0.12);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* RESET & GLOBAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--bg-beige);
    line-height: 1.5;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

.text-orange {
    color: var(--primary-orange);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-orange);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #e64a00;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 82, 0, 0.3);
}

/* TYPOGRAPHY */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
}

/* HEADER */
.site-header {
    background-color: var(--bg-beige);
    padding: 18px 40px;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: box-shadow var(--transition), background-color var(--transition);
}
.site-header.scrolled {
    box-shadow: var(--shadow-md);
}
.site-header.scrolled .custom-logo {
    width: 100%;
    height: 45px;
}
.header-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.site-branding a {
    font-size: 24px;
    color: var(--primary-orange);
    display: flex;
    align-items: baseline;
    gap: 6px;
    transition: opacity var(--transition);
}
.site-branding a:hover {
    opacity: 0.85;
}
.site-branding strong {
    font-size: 28px;
    font-weight: 800;
}

.custom-logo{
    width: 100%;
    height: 80px;
}

.primary-navigation .nav-list {
    display: flex;
    gap: 50px;
    font-weight: 600;
    font-size: 18px;
}
.primary-navigation .nav-list > li {
    position: relative;
}
.primary-navigation .nav-list a {
    color: var(--text-color);
    transition: color var(--transition);
}
.primary-navigation .nav-list a:hover {
    color: var(--primary-orange);
}
.primary-navigation .has-children > a,
.primary-navigation .menu-item-has-children > a {
    display: flex;
    align-items: center;
    gap: 8px;
}
.primary-navigation .has-children > a::after,
.primary-navigation .menu-item-has-children > a::after {
    content: "";
    display: inline-block;
    width: 9px;
    height: 7px;
    background: var(--primary-orange);
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    transform: translateY(1px);
    transition: transform var(--transition);
}
.primary-navigation .has-children.is-open > a::after,
.primary-navigation .menu-item-has-children.is-open > a::after {
    transform: rotate(180deg);
}
.primary-navigation .nav-list .sub-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    min-width: 240px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 54, 81, 0.08);
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
    z-index: 120;
}
.primary-navigation .nav-list .sub-menu li {
    border: 0;
}
.primary-navigation .nav-list .sub-menu a {
    display: block;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.35;
}
.primary-navigation .nav-list .sub-menu a:hover {
    background: rgba(0, 54, 81, 0.04);
    color: var(--primary-orange);
}
.primary-navigation .has-children.is-open > .sub-menu,
.primary-navigation .menu-item-has-children.is-open > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}
@media (min-width: 901px) {
    .primary-navigation .has-children:hover > .sub-menu,
    .primary-navigation .menu-item-has-children:hover > .sub-menu,
    .primary-navigation .has-children:focus-within > .sub-menu,
    .primary-navigation .menu-item-has-children:focus-within > .sub-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }
    .primary-navigation .has-children:hover > a::after,
    .primary-navigation .menu-item-has-children:hover > a::after,
    .primary-navigation .has-children:focus-within > a::after,
    .primary-navigation .menu-item-has-children:focus-within > a::after {
        transform: rotate(180deg);
    }
}
.header-actions .btn {
    padding: 12px 24px;
    font-size: 14px;
    white-space: nowrap;
}
.header-actions .btn-primary {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transform: translateY(0) scale(1);
    box-shadow: 0 8px 20px rgba(255, 82, 0, 0.24);
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s ease, background-color 0.28s ease;
}
.header-actions .btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -130%;
    width: 48%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.55) 48%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg);
    pointer-events: none;
    z-index: 1;
}
.header-actions .btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 14px 28px rgba(255, 82, 0, 0.32);
}
.header-actions .btn-primary:hover::before {
    animation: header-btn-sheen 700ms ease-out forwards;
}
.header-actions .btn-primary:active {
    transform: translateY(0) scale(0.99);
}
.header-actions .btn-primary:focus-visible {
    outline: 3px solid rgba(0, 54, 81, 0.35);
    outline-offset: 2px;
}

@keyframes header-btn-sheen {
    0% {
        left: -130%;
    }
    100% {
        left: 155%;
    }
}

/* HERO SECTION */
.breaze-hero {
    padding: 60px 20px 0;
    position: relative;
    z-index: 1;
    max-width: none;
    margin: 0;
    background-color: var(--bg-beige);
    isolation: isolate;
    overflow: hidden;
}
.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding-bottom: 40px;
}
.hero-content {
    max-width: 960px;
    position: relative;
    z-index: 2;
    padding-top: 48px;
}
.hero-title {
    font-size: clamp(40px, 5vw, 66px);
    font-weight: 800;
    font-style: italic;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--primary-blue);
    margin-bottom: 20px;
}
.hero-subtitle {
    font-size: clamp(17px, 1.5vw, 20px);
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 32px;
    line-height: 1.5;
}
.hero-integrations {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 80px;
}
.hero-integration-logo {
    height: 36px;
    width: auto;
    opacity: 0.85;
    transition: opacity var(--transition);
}
.hero-integration-logo:hover {
    opacity: 1;
}
.hero-images {
    position: relative;
    width: 100%;
    z-index: 1;
}
.hero-collage {
    position: relative;
    width: 100%;
}
.hero-collage .hero-img-left,
.hero-collage .hero-img-right {
    border-radius: 60px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--white);
    z-index: 2;
}
.hero-collage .hero-img-left {
    position: relative;
    display: inline-block;
    width: 280px;
    height: 340px;
}
.hero-collage .hero-img-right {
    position: absolute;
    right: -40px;
    top: -170px;
    width: 500px;
    height: 350px;
}
.placeholder-img {
    width: 100%;
    height: 100%;
    background-color: #ccc;
    background-size: cover;
    background-position: center;
}
.hero-dots-pattern {
    position: absolute;
    right: 0;
    top: 0;
    width: 400px;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background-image: radial-gradient(circle, var(--primary-orange) 2.5px, transparent 2.5px);
    background-size: 18px 18px;
    opacity: 0.15;
}
.hero-dots-pattern img {
    display: none;
}
.hero-cta {
    position: absolute;
    left: 0;
    right: 0;
    top: 330px;
    width: max-content;
    max-width: calc(100% - 40px);
    margin-left: auto;
    margin-right: auto;
    z-index: 3;
    min-width: 210px;
    padding: 14px 34px;
    box-shadow: 0 10px 24px rgba(255, 82, 0, 0.28);
    /* .is-visible sets transform: translateY(0) on reveal-*; avoid overriding horizontal centering */
    transform: none;
}
.breaze-hero .hero-cta.is-visible {
    transform: none;
}

@media (max-width: 1100px) {
    .hero-collage .hero-img-left {
        width: 220px;
        height: 280px;
    }
    .hero-collage .hero-img-right {
        width: 300px;
        height: 190px;
        top: -240px;
    }
}

/* SECTION PATH LINES (SVG Anim) */
.path-container {
    position: absolute;
    pointer-events: none;
    z-index: -1;
}
.breaze-hero .path-container {
    z-index: 0;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
}
.anim-svg-path {
    width: 100%;
    height: 100%;
    overflow: visible;
}
.draw-line {
    fill: none;
    stroke: var(--primary-orange);
    stroke-width: 6px;
    vector-effect: non-scaling-stroke;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.moving-arrow {
    filter: drop-shadow(0 0.5px 1px rgba(0, 34, 51, 0.12));
}

.path-travel-dot,
.hero-collage-line__dot {
    filter: drop-shadow(0 0 6px rgba(255, 82, 0, 0.6)) drop-shadow(0 0 12px rgba(255, 82, 0, 0.3));
}

/* Position SVGs for context */
.path-hero {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/* Hero decorative route: fully static (no scroll / dash animation — no .draw-line inside) */
.path-hero--static .hero-path-route {
    fill: none;
    stroke: var(--primary-orange);
    stroke-width: 6px;
    vector-effect: non-scaling-stroke;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.path-hero--static .hero-path-arrow {
    fill: var(--primary-orange);
}
.path-hero--static .hero-path-node {
    fill: var(--primary-orange);
}
.hero-path-svg {
    overflow: visible;
}
.path-statement,
.path-statement-2,
.path-network,
.path-trusted,
.path-features {
    inset: 0;
    width: 100%;
    height: 100%;
}
.breaze-trusted-by,
.breaze-driver-seat,
.breaze-why-choose-us {
    position: relative;
}

/* BANNERS */
.breaze-statement {
    padding: 80px 20px;
    text-align: center;
    position: relative;
}
.breaze-statement h2 {
    font-size: 45px;
    max-width: 1025px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.dark-banner {
    background: linear-gradient(180deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    margin-top: 0;
    padding-top: 80px;
    position: relative;
    z-index: 0;
    --statement-orange-t: 0;
}

/* Overlap hero (left boxes image) like design ref — desktop only */
@media (min-width: 901px) {
    .breaze-statement.dark-banner {
        margin-top: clamp(-132px, -11vw, -88px);
        z-index: 2;
        padding-top: clamp(88px, 7vw, 104px);
    }
}

/* Highlight: --statement-orange-t 0→1 (scroll-scrubbed via GSAP ScrollTrigger in main.js) */
.breaze-statement.dark-banner h2 .text-orange {
    color: color-mix(
        in srgb,
        var(--white) calc((1 - var(--statement-orange-t)) * 100%),
        var(--primary-orange) calc(var(--statement-orange-t) * 100%)
    );
}

@media (prefers-reduced-motion: reduce) {
    .breaze-statement.dark-banner {
        --statement-orange-t: 1;
    }
}

.light-blue-bg {
    background-color: var(--light-blue);
}
.beige-bg {
    background-color: var(--bg-beige);
}

/* DRIVER NETWORK */
.breaze-driver-network {
    padding: 60px 20px 100px;
    position: relative;
    /* Pull the connector SVG up through section padding so the line reaches the
       light-banner → card gap (path was only as tall as the card, so it stopped “in air”). */
    --network-path-bridge: 100px;
}
/* Line above card gradient, under laptop + copy; full viewport width so x=450 lines up with connectors above. */
.breaze-driver-network .network-card {
    isolation: isolate;
    overflow: visible;
}
.breaze-driver-network .network-card > .path-container.path-network {
    z-index: 1;
    inset: unset;
    left: 50%;
    top: calc(-1 * var(--network-path-bridge));
    bottom: auto;
    width: 100vw;
    max-width: none;
    height: calc(100% + var(--network-path-bridge));
    transform: translateX(-50%);
}
.network-card {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    max-width: 1200px;
    margin: 0 auto;
    border-radius: var(--border-radius);
    padding: 60px;
    display: flex;
    gap: 60px;
    align-items: center;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}
.network-image {
    flex: 1;
    position: relative;
    z-index: 2;
}
.network-image img {
    max-width: 130%;
    margin-left: -20%;
    will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
    .breaze-driver-network .network-image img {
        will-change: auto;
    }
}
.network-text {
    flex: 1;
    position: relative;
    z-index: 2;
}
.network-text h3 {
    font-size: 48px;
    margin-bottom: 30px;
}
.network-title .network-title-word {
    display: inline-block;
    opacity: 0;
    transform: translate3d(0, 0.42em, 0);
    transition:
        opacity 0.65s cubic-bezier(0.2, 0.8, 0.2, 1),
        transform 0.65s cubic-bezier(0.2, 0.8, 0.2, 1);
    transition-delay: calc(var(--i, 0) * 0.11s);
}
.network-title.is-visible .network-title-word {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}
@media (prefers-reduced-motion: reduce) {
    .network-title .network-title-word {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
.network-text ul {
    list-style: none;
}
.network-text li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 15px;
    font-size: 18px;
}
.network-text li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--white);
    font-size: 24px;
    line-height: 1;
}

/* TRUSTED BY */
.breaze-trusted-by {
    background-color: var(--light-blue);
    padding: 100px 20px;
    text-align: center;
    position: relative;
}
.breaze-trusted-by h2 {
    font-size: 42px;
    margin-bottom: 60px;
}
.trusted-track {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}
.testimonial-item {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
}
.brand-logo {
    width: 200px;
    padding: 20px;
    border-radius: 10px;
}
.timeline-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--primary-orange);
}
.testimonial-quote {
    text-align: left;
    flex: 1;
    font-size: 22px;
    font-weight: 500;
}

/* Trusted slider: desktop — clips non-active slides */
.trusted-slider {
    position: relative;
    overflow: hidden;
    contain: paint;
}
/* Vertical timeline: same x as driver-network path (450 / 1000 × 100vw), full slider height */
.breaze-trusted-by .trusted-slider > .path-container.path-trusted {
    inset: unset;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 100vw;
    max-width: none;
    height: 100%;
    transform: translateX(-50%);
    z-index: 0;
}
.breaze-trusted-by .trusted-slider > .path-container.path-trusted .anim-svg-path {
    display: block;
    width: 100%;
    height: 100%;
}
/* Align dot centres with driver-network vertical (45vw); grid max-width 800px centred */
@media (min-width: 901px) {
    .breaze-trusted-by .testimonial-item {
        position: relative;
        display: grid;
        grid-template-columns: minmax(200px, 240px) 1fr;
        column-gap: 40px;
        align-items: center;
        text-align: left;
        max-width: 800px;
        width: 100%;
    }
    .breaze-trusted-by .brand-logo {
        grid-column: 1;
        justify-self: start;
    }
    .breaze-trusted-by .timeline-dot {
        position: absolute;
        left: calc(400px - 5vw - 6px);
        top: 50%;
        transform: translateY(-50%);
        z-index: 2;
        flex-shrink: 0;
    }
    .breaze-trusted-by .testimonial-quote {
        grid-column: 2;
        position: relative;
        z-index: 1;
        margin-left: 0;
        justify-self: start;
        max-width: 100%;
        padding-left: max(0px, calc(400px - 5vw + 48px - 240px));
    }
}
.trusted-slider-dots {
    display: none !important;
}
.trusted-slider-dots[hidden] {
    display: none !important;
}
.trusted-slider-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(0, 54, 81, 0.22);
    cursor: pointer;
    transition: transform var(--transition), background-color var(--transition);
}
.trusted-slider-dot:hover {
    background: rgba(0, 54, 81, 0.35);
}
.trusted-slider-dot.is-active {
    background: var(--primary-orange);
    transform: scale(1.25);
}

.author {
    font-size: 14px;
    color: var(--primary-orange);
    margin-top: 10px;
    font-weight: 700;
}

/* CUSTOMERS CAROUSEL */
.breaze-why-customers {
    padding: 80px 20px;
    background-color: var(--bg-beige);
    text-align: center;
}
.breaze-why-customers h2 {
    font-size: 42px;
    margin-bottom: 50px;
}
.carousel-wrapper {
    overflow-x: auto;
    padding: 20px 0 50px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}
.carousel-wrapper::-webkit-scrollbar {
    height: 8px;
}
.carousel-wrapper::-webkit-scrollbar-track {
    background: rgba(0, 54, 81, 0.06);
    border-radius: 4px;
}
.carousel-wrapper::-webkit-scrollbar-thumb {
    background: rgba(0, 54, 81, 0.2);
    border-radius: 4px;
}
.carousel-wrapper::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 54, 81, 0.35);
}
.testimonials-carousel {
    display: flex;
    gap: 20px;
    width: max-content;
    padding: 0 40px;
    /* Center the review strip inside the section on large screens */
    margin-left: auto;
    margin-right: auto;
}
.customer-card {
    background: var(--white);
    width: 320px;
    min-width: 320px;
    border-radius: var(--border-radius);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    text-align: left;
    transition: transform var(--transition), box-shadow var(--transition);
}
.customer-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}
.brand-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #008cc9;
}
.stars {
    color: #ffb400;
    margin-bottom: 15px;
    letter-spacing: 2px;
}
.view-google {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    font-size: 14px;
    font-weight: 500;
}
.view-google img {
    width: 18px;
}

/* STORAGE, PICKING & PACKING */
.breaze-storage {
    padding: 80px 20px 0px;
}
.storage-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}
.storage-content {
    flex: 1 1 45%;
    max-width: 500px;
}
.storage-title {
    font-size: clamp(38px, 4.5vw, 56px);
    font-weight: 800;
    font-style: italic;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--primary-blue);
    margin-bottom: 20px;
}
.storage-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
}
.storage-list li {
    position: relative;
    padding-left: 18px;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 6px;
    color: var(--primary-blue);
}
.storage-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-size: 20px;
    line-height: 1;
    top: 3px;
}
.btn-rounded {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 999px;
    text-decoration: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}
.btn-rounded:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}
.storage-image {
    flex: 1 1 55%;
    display: flex;
    justify-content: flex-end;
}
.storage-image-photo {
    width: 100%;
    max-width: 540px;
    height: auto;
    display: block;
    border-radius: 28px;
}

@media (max-width: 980px) {
    .storage-inner {
        flex-direction: column;
        gap: 36px;
        align-items: flex-start;
    }
    .storage-content {
        max-width: 100%;
    }
    .storage-image {
        width: 100%;
        justify-content: center;
    }
    .storage-image-photo {
        max-width: 100%;
    }
    .breaze-storage {
        padding: 56px 20px;
    }
}

@media (max-width: 480px) {
    .storage-title {
        font-size: clamp(30px, 9vw, 42px);
    }
    .breaze-storage {
        padding: 44px 16px;
    }
}

/* DRIVER SEAT */
.split-bg {
    background: var(--light-blue);
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}
.container.reverse {
    flex-direction: row-reverse;
}

.breaze-driver-seat {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px clamp(72px, 6vw, 100px);
    min-height: clamp(580px, 62vh, 760px);
    background: transparent;
    isolation: isolate;
    overflow: visible;
}
.breaze-driver-seat__split-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: flex;
    flex-direction: column;
    pointer-events: none;
}
.breaze-driver-seat__split-half {
    flex: 1 1 50%;
    min-height: 0;
}
.breaze-driver-seat__split-half--top {
    background: var(--light-blue);
}
.breaze-driver-seat__split-half--bottom {
    background: #F7E6CD;
}
.breaze-driver-seat__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}
.driver-seat-card {
    background: var(--white);
    border-radius: 36px;
    box-shadow: var(--shadow-lg);
    padding: 60px 64px;
    display: flex;
    align-items: center;
    gap: 56px;
    position: relative;
    overflow: visible;
}
.driver-seat-image {
    flex: 0 0 388px;
}
.driver-seat-image-placeholder {
    width: 100%;
    aspect-ratio: 1 / 1.05;
    background: #94aeb8;
    border-radius: 24px;
}

/* 3D bike: scroll journey → settles in card (WebGL canvas) */
.driver-seat-bike-host {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1.05;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(160deg, #b8ccd4 0%, #94aeb8 100%);
    isolation: isolate;
}

/* Street map behind the 3D bike (low opacity so gradient still reads) */
.driver-seat-bike-host::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url('../images/webp/street-map-town.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.2;
    pointer-events: none;
}

.driver-seat-bike-host canvas {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
}
.driver-seat-content {
    flex: 1;
}
.driver-seat-title {
    font-size: clamp(34px, 3.8vw, 50px);
    font-weight: 800;
    font-style: italic;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--primary-blue);
    margin-bottom: 16px;
}
.driver-seat-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}
.driver-seat-list li {
    position: relative;
    padding-left: 18px;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 6px;
    color: var(--primary-blue);
}
.driver-seat-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-size: 20px;
    line-height: 1;
    top: 3px;
}

@media (max-width: 980px) {
    .driver-seat-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 36px 28px;
        gap: 28px;
    }
    .driver-seat-image {
        flex: none;
        width: 100%;
        max-width: 380px;
        align-self: center;
    }
    .breaze-driver-seat {
        min-height: auto;
        padding: 40px 20px 56px;
    }
}

/* WHY CHOOSE US */
.breaze-why-choose-us {
    padding: 100px 20px;
    text-align: center;
    background-color: #F7E6CD;
    overflow: hidden;
}
.breaze-why-choose-us h2 {
    font-size: 42px;
    margin-bottom: 80px;
}
.breaze-why-choose-us .path-container {
    /* Put connectors above the section background, but behind the icons/text. */
    z-index: 0;
}
.breaze-why-choose-us .features-grid,
.breaze-why-choose-us h2 {
    position: relative;
    z-index: 1;
}
/* Fine-tune connector placement for the "Why choose us" layout */
.breaze-why-choose-us .path-features-left {
    transform: translateX(-140px);
}
.breaze-why-choose-us .path-features-right {
    transform: translateX(0px);
}
.breaze-why-choose-us .path-container.path-driver-seat-flow {
    inset: unset;
    left: 50%;
    top: -420px;
    width: 100vw;
    max-width: none;
    height: 820px;
    transform: translateX(-50%);
    z-index: 0;
}
.breaze-why-choose-us .path-driver-seat-flow .draw-line {
    stroke-dasharray: none !important;
    stroke-dashoffset: 0 !important;
    opacity: 1 !important;
}
.breaze-why-choose-us .path-driver-seat-flow .anim-svg-path {
    width: 100%;
    height: 100%;
    overflow: visible;
}
.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 40px;
    text-align: left;
    justify-items: center;
}
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 26px;
    max-width: 470px;
    width: 100%;
    transition: transform var(--transition);
}
.feature-item:hover {
    transform: translateX(4px);
}
.feature-item--managed {
    position: relative;
}
.feature-item--managed .feature-icon,
.feature-item--managed .feature-text {
    position: relative;
    z-index: 1;
}
.managed-services-line {
    position: absolute;
    top: 108px;
    left: 0;
    width: min(78vw, 820px);
    height: 360px;
    z-index: 0;
    pointer-events: none;
}
.managed-services-line__svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}
.managed-services-line__path {
    fill: none;
    stroke: var(--primary-orange);
    stroke-width: 6px;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.feature-icon {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background-color: var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(255, 82, 0, 0.22);
}
.feature-icon img {
    width: 40%;
}
.feature-text h4 {
    font-size: 24px;
    color: var(--primary-orange);
    margin-bottom: 10px;
}
.feature-text p {
    font-size: 16px;
    font-weight: 500;
}

/* PARTNERS */
.breaze-partners {
    padding: 84px 20px 100px;
}
.partners-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.breaze-partners h2 {
    text-align: center;
    font-size: clamp(42px, 4.4vw, 56px);
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 42px;
}
.partners-grid {
    display: grid;
    align-items: center;
    justify-items: center;
    gap: 32px 40px;
}
.partners-grid--top {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 54px;
}
.partners-grid--bottom {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    justify-items: center;
}
.partners-grid--bottom img:nth-last-child(2) {
    grid-column: 2;
}
.partners-grid--bottom img:last-child {
    grid-column: 3;
}
.partners-divider {
    border: 0;
    border-top: 1px solid rgba(0, 54, 81, 0.24);
    margin: 0 0 54px;
}
.partners-grid img {
    max-width: 100%;
    max-height: 78px;
    width: auto;
    height: auto;
    object-fit: contain;
}
.partners-grid img.partner-logo--featured {
    max-height: 100%;
}

/* FOOTER */
.site-footer {
    background: var(--dark-blue);
    color: var(--white);
    padding: 120px 40px 34px;
}
.footer-container {
    max-width: 1320px;
    margin: 0 auto;
}
.footer-columns {
    display: grid;
    grid-template-columns: repeat(6, minmax(92px, 1fr)) minmax(250px, 1.65fr);
    gap: 18px;
    margin-bottom: 34px;
    align-items: start;
}
.footer-logo {
    margin-bottom: 14px;
    display: block;
}
.footer-logo strong { font-weight: 800; }
.footer-col h4 {
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 16px;
    font-weight: 700;
    color: #f7e6cd;
}
.footer-col ul li {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.4;
    color: #f7e6cd;
}
.footer-list--arrow li {
    position: relative;
    padding-left: 16px;
}
.footer-list--arrow li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.48em;
    width: 8px;
    height: 8px;
    background: url(../images/footer-arrow.png) no-repeat center / contain;
}
.footer-list--arrow li a {
    display: inline;
}
.footer-list--contact li {
    margin-bottom: 12px;
}
.footer-contact-whatsapp {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.footer-contact-whatsapp-icon {
    flex-shrink: 0;
    width: 20px;
    height: auto;
    margin-top: 2px;
}
.footer-col ul li a {
    transition: color var(--transition);
}
.footer-col ul li a:hover {
    color: var(--primary-orange);
}
.footer-col--brand {
    justify-self: end;
    text-align: right;
    margin-top: -70px;;
}
.footer-brand-tagline {
    font-size: 19px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #f4f8fb;
}
.footer-brand-tagline span {
    color: var(--primary-orange);
    font-weight: 800;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(202, 223, 236, 0.45);
    padding-top: 40px;
}
.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 12px;
    transition: transform var(--transition), background-color var(--transition);
    text-decoration: none;
}
.social-icon:hover {
    transform: scale(1.08);
    background-color: #e64a00;
}
.social-icon img {
    display: block;
    width: 22px;
    height: auto;
}
.social-icon--linkedin {
    background-color: transparent;
    width: 48px;
    height: 48px;
    padding: 0;
}
.social-icon--linkedin:hover {
    background-color: transparent;
}
.social-icon--linkedin img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}
.track-btn .btn {
    padding: 14px 28px;
    min-width: 215px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    border-radius: 999px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.16);
}

/* -- ANIMATIONS -- */
.reveal-text, .reveal-slide-up, .reveal-fade {
    opacity: 0;
    will-change: transform, opacity;
}
.reveal-text {
    transform: translateY(30px);
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.8s ease;
}
.reveal-slide-up {
    transform: translateY(50px);
    transition: transform 1s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 1s ease;
}
.reveal-fade {
    transition: opacity 1.2s ease;
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Path drawing CSS animation */
.draw-line {
    /* JS updates strokeDashoffset on scroll; remove CSS transition to avoid jitter/lag. */
    transition: none;
    will-change: stroke-dashoffset;
}

/* MOBILE MENU - hidden on desktop */
@media (min-width: 901px) {
    .mobile-menu-toggle {
        display: none !important;
    }
}
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 110;
    transition: opacity var(--transition);
}
.mobile-menu-toggle:hover {
    opacity: 0.8;
}
.mobile-menu-toggle .hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--primary-blue);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}
.mobile-menu-toggle[aria-expanded="true"] .hamburger:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.mobile-menu-toggle[aria-expanded="true"] .hamburger:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle[aria-expanded="true"] .hamburger:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .site-header {
        padding: 12px 16px;
    }
    .header-container {
        gap: 10px;
        justify-content: flex-start;
    }
    .mobile-menu-toggle {
        order: 0;
        flex-shrink: 0;
    }
    .site-branding {
        flex: 1;
        min-width: 0;
        order: 1;
    }
    .header-actions {
        order: 2;
        margin-left: auto;
        flex-shrink: 0;
    }
    .custom-logo {
        width: 154px;
        height: auto;
        max-height: 44px;
        object-fit: contain;
    }
    .header-actions .btn {
        padding: 8px 12px;
        font-size: 12px;
        border-radius: 999px;
    }
    .mobile-menu-toggle {
        width: 40px;
        height: 40px;
        padding: 8px;
    }
    .path-container,
    .draw-line,
    .moving-arrow {
        display: none !important;
    }
    .mobile-menu-toggle {
        display: flex;
    }
    .mobile-menu-toggle .hamburger {
        width: 20px;
    }
    .primary-navigation {
        order: 3;
        position: fixed;
        top: 0;
        left: 0;
        width: 280px;
        max-width: 85vw;
        height: 100vh;
        background: var(--white);
        padding: 80px 24px 24px;
        box-shadow: 4px 0 24px rgba(0,0,0,0.1);
        transform: translateX(-100%);
        transition: transform var(--transition);
        z-index: 105;
    }
    .primary-navigation.is-open {
        transform: translateX(0);
    }
    .primary-navigation .nav-list {
        flex-direction: column;
        gap: 0;
    }
    .primary-navigation .nav-list li {
        border-bottom: 1px solid rgba(0, 54, 81, 0.08);
    }
    .primary-navigation .nav-list a {
        display: block;
        padding: 16px 0;
        font-size: 16px;
    }
    .primary-navigation .nav-list > .menu-item-has-children > a,
    .primary-navigation .nav-list > .has-children > a {
        justify-content: space-between;
    }
    .primary-navigation .nav-list .sub-menu {
        position: static;
        min-width: 0;
        border: 0;
        box-shadow: none;
        border-radius: 12px;
        margin: 0 0 10px;
        padding: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: auto;
        max-height: 0;
        overflow: hidden;
        background: rgba(0, 54, 81, 0.04);
        transition: max-height var(--transition), padding var(--transition);
    }
    .primary-navigation .menu-item-has-children.is-open > .sub-menu,
    .primary-navigation .has-children.is-open > .sub-menu {
        max-height: 420px;
        padding: 8px 0;
    }
    .primary-navigation .nav-list .sub-menu a {
        padding: 10px 16px 10px 22px;
        font-size: 15px;
    }
    .container {
        flex-direction: column;
        gap: 28px;
    }
    .container.reverse { flex-direction: column; }
    .breaze-hero {
        padding: 32px 20px 28px;
    }
    .hero-inner {
        padding-bottom: 8px;
    }
    .hero-content {
        max-width: 100%;
        text-align: center;
        padding-top: 8px;
    }
    .hero-title {
        font-size: clamp(28px, 8.2vw, 34px);
        line-height: 1.08;
        margin-bottom: 12px;
    }
    .hero-subtitle {
        margin-bottom: 20px;
        max-width: 22em;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-integrations {
        justify-content: center;
        align-items: center;
        gap: clamp(10px, 3vw, 18px);
        margin-bottom: 28px;
        flex-wrap: nowrap;
    }
    .hero-integration-logo {
        height: clamp(22px, 5.5vw, 28px);
        width: auto;
        flex-shrink: 0;
    }
    /* Collage: small card top-left, main image centered below (reference layout) */
    .hero-images {
        max-width: 400px;
        margin: 0 auto;
    }
    .hero-collage {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 18px;
        position: relative;
        padding: 0 4px 4px;
    }
    .hero-dots-pattern {
        opacity: 0.07;
        width: 200px;
        right: -12px;
        top: 20%;
    }
    .hero-collage .hero-img-left,
    .hero-collage .hero-img-right {
        border-radius: 32px;
        box-shadow: 0 12px 32px rgba(0, 54, 81, 0.1);
    }
    .hero-collage .hero-img-left {
        position: relative;
        align-self: flex-start;
        margin-left: 0;
        width: min(46vw, 200px);
        height: auto;
        aspect-ratio: 4 / 3;
        max-height: 148px;
        overflow: visible;
        z-index: 2;
    }
    .hero-collage .hero-img-left .placeholder-img {
        border-radius: 28px;
        overflow: hidden;
        box-shadow: 0 8px 24px rgba(0, 54, 81, 0.12);
    }
    .hero-collage .hero-img-left::after {
        content: "";
        position: absolute;
        right: -10px;
        bottom: -8px;
        width: 56px;
        height: 48px;
        background: var(--primary-orange);
        border-radius: 16px;
        z-index: -1;
        pointer-events: none;
    }
    .hero-collage .hero-img-right {
        position: relative;
        top: auto;
        right: auto;
        display: block;
        width: 100%;
        max-width: 100%;
        height: auto;
        aspect-ratio: 16 / 10;
        max-height: 220px;
        margin: 0;
        overflow: hidden;
    }
    .hero-collage .hero-img-right .placeholder-img {
        border-radius: 32px;
    }
    .hero-cta {
        position: static;
        transform: none;
        margin: 22px auto 0;
        display: block;
        width: max-content;
        max-width: 100%;
        min-width: 180px;
        padding: 12px 28px;
    }
    .network-card {
        flex-direction: column;
        padding: 28px 18px;
        gap: 22px;
        border-radius: 18px;
    }
    .breaze-driver-network {
        --network-path-bridge: 0;
        padding: 32px 14px 54px;
    }
    .network-image img {
        max-width: 100%;
        margin-left: 0;
    }
    .network-text h3 {
        font-size: 30px;
        line-height: 1.05;
        margin-bottom: 18px;
    }
    .network-text li {
        font-size: 16px;
        margin-bottom: 10px;
    }
    .features-grid { grid-template-columns: 1fr; }
    .footer-columns {
        grid-template-columns: 1fr 1fr;
        gap: 28px 20px;
        align-items: start;
    }
    .footer-col:last-child {
        grid-column: 1 / -1;
        justify-self: center;
        text-align: center;
        max-width: 320px;
    }
    .footer-brand-tagline {
        font-size: 30px;
    }
    .footer-col h4 {
        margin-bottom: 14px;
        font-size: 16px;
    }
    .footer-col ul li {
        font-size: 14px;
    }
    .track-btn .btn {
        min-width: 180px;
        font-size: 16px;
        padding: 12px 24px;
    }
    .site-footer {
        padding: 56px 20px 32px;
    }
    .breaze-statement {
        padding: 56px 16px;
    }
    .dark-banner {
        margin-top: 0;
        padding-top: 64px;
    }
    .breaze-trusted-by {
        padding: 64px 16px;
        overflow: hidden;
    }
    .breaze-trusted-by h2 {
        margin-bottom: 30px;
    }

    /* Trusted by — horizontal snap slider (mobile) */
    .trusted-slider {
        width: 100vw;
        max-width: 100vw;
        margin-left: calc(50% - 50vw);
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        overscroll-behavior-x: contain;
    }
    .trusted-slider::-webkit-scrollbar {
        display: none;
    }
    .trusted-track {
        display: flex;
        flex-direction: row;
        align-items: stretch;
        gap: 14px;
        max-width: none;
        margin: 0;
        padding: 4px max(0px, calc((100vw - min(86vw, 360px)) / 2));
        width: max-content;
        min-height: 1px;
        transition: none;
        transform: none !important;
    }
    .breaze-trusted-by .testimonial-item {
        display: flex;
        flex: 0 0 min(86vw, 360px);
        scroll-snap-align: center;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 14px;
        padding: 20px 18px 24px;
        background: rgba(255, 255, 255, 0.65);
        border-radius: var(--border-radius);
        box-shadow: var(--shadow-sm);
    }
    .breaze-trusted-by .brand-logo {
        width: min(200px, 70vw);
        padding: 16px;
        margin: 0 auto;
    }
    .breaze-trusted-by .timeline-dot {
        display: none;
    }
    .breaze-trusted-by .trusted-slider > .path-container.path-trusted {
        display: none;
    }
    .breaze-trusted-by .testimonial-quote {
        font-size: 17px;
        text-align: center;
        width: 100%;
        margin-left: 0;
        padding-left: 0;
    }
    .trusted-slider-dots {
        margin-top: 20px;
        padding: 0 16px;
    }
    .trusted-slider-dot {
        width: 8px;
        height: 8px;
    }
    .breaze-driver-seat {
        min-height: 0;
        padding: 44px 12px 50px;
    }
    .breaze-driver-seat__inner {
        padding-left: 0;
        padding-right: 0;
        max-width: none;
    }
    .driver-seat-card {
        width: 100%;
        max-width: 100%;
        padding: 24px 16px 28px;
        border-radius: 20px;
        gap: 20px;
    }
    .driver-seat-image {
        flex: none;
        width: 100%;
        max-width: min(100%, 320px);
        align-self: center;
        margin-left: auto;
        margin-right: auto;
    }
    .driver-seat-image-placeholder,
    .driver-seat-bike-host {
        margin: 0 auto;
    }
    .driver-seat-card .btn {
        width: 100%;
        max-width: 240px;
    }
    .breaze-why-choose-us {
        padding: 60px 16px;
    }
    .breaze-why-choose-us h2 {
        margin-bottom: 42px;
    }
    .breaze-partners {
        padding: 64px 16px 76px;
    }
    .breaze-partners h2 {
        margin-bottom: 28px;
    }
    .partners-grid--top {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 36px;
    }
    .partners-divider {
        margin-bottom: 36px;
    }
    .partners-grid--bottom {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px 18px;
    }
    .partners-grid img {
        max-height: 56px;
    }
    .partners-grid img.partner-logo--featured {
        max-height: 70px;
    }
    .features-grid {
        gap: 26px;
    }
    .feature-item {
        max-width: none;
        gap: 16px;
    }
    .managed-services-line {
        display: none;
    }
    .feature-icon {
        width: 70px;
        height: 70px;
    }
    .feature-text h4 {
        font-size: 20px;
    }
    .breaze-statement h2,
    .breaze-trusted-by h2,
    .breaze-why-customers h2,
    .driver-seat-title,
    .breaze-why-choose-us h2 {
        font-size: 28px;
    }
}

@media (max-width: 600px) {
    .site-header {
        padding: 10px 12px;
    }
    .custom-logo {
        width: 165px;
        max-height: 80px;
    }
    .header-actions .btn {
        padding: 7px 10px;
        font-size: 11px;
    }
}

.footer-col--brand {
    margin-top: -20px;
}
