﻿/* =========================================================
   BB Software Development Website Styles
   ========================================================= */

/* =========================================================
   01. Variables
   ========================================================= */

:root {
    --navy: #050B1F;
    --navy-soft: #0A1230;
    --blue: #1254FF;
    --cyan: #35C8FF;
    --lavender: #6C63FF;
    --white: #FFFFFF;
    --grey-bg: #F3F6FA;
    --slate: #2D3748;
    --muted: #8A94A6;
    --border: #E2E8F0;
    --dark-border: rgba(255, 255, 255, 0.12);
    --shadow: 0 18px 45px rgba(5, 11, 31, 0.12);
    --radius: 20px;
}

/* =========================================================
   02. Reset + Base
   ========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: 'Inter', Arial, sans-serif;
    color: var(--slate);
    background: var(--white);
    font-size: 16px;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

.site-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

/* =========================================================
   03. Header + Navigation
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: rgba(5, 11, 31, 0.96);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateY(0);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
    will-change: transform;
}

    .site-header.is-hidden {
        transform: translateY(-100%) !important;
    }

    .site-header.is-scrolled {
        box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
    }

body.mobile-menu-open {
    overflow: hidden;
}

    body.mobile-menu-open .site-header {
        transform: translateY(0) !important;
    }

/* Utility banner */

.header-utility {
    background: linear-gradient(90deg, rgba(18, 84, 255, 0.18), rgba(53, 200, 255, 0.06)), rgba(5, 11, 31, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-utility-inner {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.utility-label {
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.utility-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.utility-link,
.utility-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease, color 0.22s ease;
}

.utility-link {
    color: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.04);
}

    .utility-link:hover,
    .utility-link.is-active {
        transform: translateY(-2px);
        color: var(--white);
        border-color: rgba(53, 200, 255, 0.45);
        background: rgba(255, 255, 255, 0.08);
    }

.utility-cta {
    color: var(--white);
    background: var(--blue);
    box-shadow: 0 10px 24px rgba(18, 84, 255, 0.28);
}

    .utility-cta:hover,
    .utility-cta.is-active {
        transform: translateY(-2px);
        box-shadow: 0 14px 32px rgba(18, 84, 255, 0.42);
    }

/* Main header row */

.header-inner {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand,
.image-brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

    .image-brand img {
        width: auto;
        height: 54px;
        object-fit: contain;
    }

.site-header .image-brand img {
    max-width: 230px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 26px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.78);
}

    .main-nav a {
        position: relative;
        display: inline-flex;
        align-items: center;
        white-space: nowrap;
        transition: transform 0.22s ease, color 0.22s ease, font-weight 0.22s ease;
    }

        .main-nav a:hover {
            transform: translateY(-2px);
            color: var(--white);
        }

        .main-nav a.is-active {
            color: var(--white);
            font-weight: 800;
        }

            .main-nav a.is-active::after {
                content: "";
                position: absolute;
                left: 0;
                right: 0;
                bottom: -10px;
                height: 3px;
                border-radius: 999px;
                background: linear-gradient(90deg, var(--blue), var(--cyan));
                box-shadow: 0 0 14px rgba(53, 200, 255, 0.35);
            }

/* Mobile menu button */

.mobile-menu-button {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
    flex-shrink: 0;
}

    .mobile-menu-button span {
        display: block;
        width: 18px;
        height: 2px;
        margin: 4px auto;
        background: var(--white);
        border-radius: 999px;
    }

/* =========================================================
   04. Typography
   ========================================================= */

main h1,
main h2,
main h3 {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--navy);
    letter-spacing: -0.04em;
}

main h1 {
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.02;
    margin: 0 0 24px;
}

main h2 {
    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.1;
    margin: 0 0 18px;
}

main h3 {
    font-size: 24px;
    line-height: 1.2;
    margin: 0 0 12px;
}

main p {
    color: var(--slate);
}

.eyebrow {
    margin: 0 0 14px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--blue);
}

    .eyebrow.light {
        color: var(--cyan);
    }

/* =========================================================
   05. Buttons
   ========================================================= */

.btn,
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 20px;
    border-radius: 12px;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn-primary {
    color: var(--white);
    background: var(--blue);
    box-shadow: 0 14px 30px rgba(18, 84, 255, 0.28);
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 18px 40px rgba(18, 84, 255, 0.4);
    }

.btn-secondary {
    color: var(--navy);
    background: var(--white);
    border: 1px solid var(--border);
}

    .btn-secondary:hover {
        transform: translateY(-2px);
        border-color: var(--blue);
    }

.center-actions {
    justify-content: center;
}

/* =========================================================
   06. Global Sections + Layout
   ========================================================= */

.section {
    padding: 92px 0;
}

.light-section,
.timeline-section {
    background: var(--grey-bg);
}

.narrow {
    max-width: 850px;
    text-align: center;
}

    .narrow p {
        font-size: 18px;
    }

.section-heading {
    max-width: 760px;
    margin-bottom: 34px;
}

.centered-heading {
    max-width: 760px;
    margin: 0 auto 30px;
    text-align: center;
}

    .centered-heading p {
        margin-left: auto;
        margin-right: auto;
    }

.split-section {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 56px;
    align-items: center;
}

    .split-section.reverse {
        grid-template-columns: 0.9fr 1fr;
    }

    .split-section p {
        font-size: 17px;
    }

.feature-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 54px;
    align-items: center;
}

.card-grid {
    display: grid;
    gap: 22px;
}

.three-columns {
    grid-template-columns: repeat(3, 1fr);
}

/* =========================================================
   07. Hero Sections
   ========================================================= */

.hero-section {
    position: relative;
    overflow: hidden;
    padding: 110px 0 90px;
    color: var(--white);
    background: linear-gradient(135deg, rgba(5, 11, 31, 0.96) 0%, rgba(8, 20, 51, 0.92) 52%, rgba(5, 11, 31, 0.96) 100%), url("../Images/Backgrounds/hero-tech-background.png") center/cover no-repeat;
}

    .hero-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
        background-size: 54px 54px;
        opacity: 0.35;
    }

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 60px;
}

.hero-content h1 {
    color: var(--white);
    max-width: 760px;
}

.hero-text {
    max-width: 640px;
    margin: 0 0 30px;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.74);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

    .hero-points span {
        padding: 9px 12px;
        border-radius: 999px;
        font-size: 13px;
        color: rgba(255, 255, 255, 0.78);
        background: rgba(255, 255, 255, 0.07);
        border: 1px solid rgba(255, 255, 255, 0.11);
    }

.hero-visual {
    position: relative;
    min-height: 430px;
}

.page-hero {
    padding: 105px 0 95px;
}

.page-hero-content {
    position: relative;
    max-width: 900px;
}

    .page-hero-content h1 {
        color: var(--white);
        max-width: 850px;
    }

    .page-hero-content p {
        max-width: 760px;
        margin-bottom: 30px;
        font-size: 18px;
        color: rgba(255, 255, 255, 0.74);
    }

/* =========================================================
   08. Homepage Dashboard Visual
   ========================================================= */

.dashboard-card {
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
    backdrop-filter: blur(18px);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

    .dashboard-card:hover {
        transform: translateY(-4px);
        border-color: rgba(53, 200, 255, 0.28);
        box-shadow: 0 36px 100px rgba(0, 0, 0, 0.42);
    }

.main-dashboard {
    position: relative;
    z-index: 2;
    padding: 26px;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

    .dashboard-header span {
        font-family: 'Space Grotesk', sans-serif;
        font-weight: 700;
    }

    .dashboard-header small {
        color: var(--cyan);
        font-weight: 700;
    }

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 26px;
}

    .dashboard-stats div,
    .status-card {
        padding: 16px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.11);
    }

    .dashboard-stats strong {
        display: block;
        font-size: 26px;
        color: var(--white);
    }

    .dashboard-stats span,
    .status-card small {
        display: block;
        color: rgba(255, 255, 255, 0.62);
        font-size: 12px;
    }

.data-lines {
    display: grid;
    gap: 12px;
    margin-bottom: 24px;
}

    .data-lines span {
        height: 10px;
        border-radius: 999px;
        background: linear-gradient(90deg, var(--blue), var(--cyan), var(--lavender));
        box-shadow: 0 0 22px rgba(53, 200, 255, 0.28);
    }

.status-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.status-card strong {
    display: block;
    margin-top: 4px;
    color: var(--white);
}

.floating-card {
    position: absolute;
    z-index: 3;
    padding: 12px 16px;
    border-radius: 999px;
    color: var(--white);
    font-size: 13px;
    font-weight: 800;
    background: rgba(18, 84, 255, 0.72);
    border: 1px solid rgba(53, 200, 255, 0.32);
    box-shadow: 0 18px 40px rgba(18, 84, 255, 0.32);
}

.floating-card-one {
    top: 36px;
    left: -22px;
}

.floating-card-two {
    right: -10px;
    top: 170px;
}

.floating-card-three {
    left: 30px;
    bottom: 52px;
}

@media (min-width: 981px) {
    .hero-visual {
        padding: 28px 34px 36px;
    }

    .main-dashboard,
    .fms-dashboard-mockup {
        position: relative;
        z-index: 2;
    }

    .hero-visual .floating-card-one {
        top: 2px;
        left: 48px;
    }

    .hero-visual .floating-card-two {
        top: 188px;
        right: -4px;
    }

    .hero-visual .floating-card-three {
        left: 70px;
        bottom: 2px;
    }
}

@media (max-width: 1200px) and (min-width: 981px) {
    .hero-visual .floating-card-one {
        left: 36px;
    }

    .hero-visual .floating-card-two {
        right: 6px;
    }

    .hero-visual .floating-card-three {
        left: 52px;
    }
}

/* =========================================================
   09. Reusable Cards + Panels
   ========================================================= */

.feature-card {
    padding: 28px;
    border-radius: 24px;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: 0 14px 36px rgba(5, 11, 31, 0.06);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

    .feature-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow);
        border-color: rgba(18, 84, 255, 0.25);
    }

.card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
    color: var(--white);
    background: linear-gradient(135deg, var(--blue), var(--cyan), var(--lavender));
}

.interface-panel,
.stat-panel,
.support-status-panel,
.contact-form-card,
.contact-detail-card,
.portal-support-panel,
.survey-form-card,
.survey-side-card {
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.interface-panel {
    padding: 28px;
    border-radius: 28px;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

    .interface-panel:hover {
        transform: translateY(-4px);
        border-color: rgba(18, 84, 255, 0.22);
        box-shadow: 0 22px 55px rgba(5, 11, 31, 0.12);
    }

.interface-header {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border);
}

    .interface-header span {
        font-family: 'Space Grotesk', sans-serif;
        font-weight: 800;
        color: var(--navy);
    }

    .interface-header small {
        color: var(--blue);
        font-weight: 800;
    }

.stat-panel {
    display: grid;
    gap: 16px;
    padding: 26px;
    border-radius: 28px;
    background: radial-gradient(circle at top right, rgba(53, 200, 255, 0.16), transparent 34%), var(--navy);
    box-shadow: var(--shadow);
}

    .stat-panel:hover {
        transform: translateY(-4px);
        box-shadow: 0 22px 55px rgba(5, 11, 31, 0.14);
    }

    .stat-panel div {
        padding: 22px;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.12);
    }

    .stat-panel strong {
        display: block;
        font-family: 'Space Grotesk', sans-serif;
        font-size: 34px;
        color: var(--white);
    }

    .stat-panel span {
        color: rgba(255, 255, 255, 0.66);
    }

.capability-list,
.hardware-mini-grid,
.portal-support-list,
.support-status-grid,
.survey-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

    .capability-list span,
    .hardware-mini-grid span,
    .portal-support-list span {
        padding: 15px;
        border-radius: 16px;
        font-weight: 700;
        color: var(--navy);
        background: var(--grey-bg);
        border: 1px solid var(--border);
        transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
    }

        .capability-list span:hover,
        .hardware-mini-grid span:hover,
        .portal-support-list span:hover {
            transform: translateY(-3px);
            border-color: rgba(18, 84, 255, 0.28);
            background: var(--white);
        }

/* =========================================================
   10. Dark Feature Sections
   ========================================================= */

.dark-feature-section,
.support-highlight {
    color: var(--white);
    background: radial-gradient(circle at top right, rgba(53, 200, 255, 0.18), transparent 28%), var(--navy);
}

    .dark-feature-section h2,
    .support-highlight h2 {
        color: var(--white);
    }

    .dark-feature-section p,
    .support-highlight p {
        color: rgba(255, 255, 255, 0.72);
    }

.dark-card-stack,
.support-cards {
    display: grid;
    gap: 16px;
}

    .dark-card-stack div,
    .support-cards div {
        padding: 22px;
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.12);
        transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
    }

        .dark-card-stack div:hover,
        .support-cards div:hover {
            transform: translateX(6px);
            border-color: rgba(53, 200, 255, 0.28);
            background: rgba(255, 255, 255, 0.105);
            box-shadow: 0 16px 38px rgba(0, 0, 0, 0.16);
        }

    .dark-card-stack strong,
    .support-cards strong {
        display: block;
        margin-bottom: 6px;
        color: var(--white);
        font-size: 18px;
    }

    .dark-card-stack span,
    .support-cards span {
        color: rgba(255, 255, 255, 0.68);
    }

/* =========================================================
   11. Common Grids
   ========================================================= */

.trust-strip {
    padding: 28px 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

    .trust-grid div {
        padding: 18px;
        border-radius: 18px;
        background: var(--grey-bg);
        transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    }

        .trust-grid div:hover {
            transform: translateY(-5px);
            box-shadow: 0 18px 42px rgba(5, 11, 31, 0.10);
        }

    .trust-grid strong {
        display: block;
        font-family: 'Space Grotesk', sans-serif;
        font-size: 24px;
        color: var(--navy);
    }

    .trust-grid span {
        color: var(--muted);
        font-size: 14px;
    }

.industry-grid,
.problem-grid,
.support-category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

    .industry-grid span,
    .problem-grid span,
    .support-category-grid span {
        padding: 18px;
        border-radius: 18px;
        font-weight: 800;
        color: var(--navy);
        background: var(--white);
        border: 1px solid var(--border);
        transition: transform 0.26s ease, border-color 0.26s ease, background 0.26s ease, box-shadow 0.26s ease;
    }

    .problem-grid span,
    .support-category-grid span {
        background: var(--grey-bg);
    }

        .industry-grid span:hover,
        .problem-grid span:hover,
        .support-category-grid span:hover {
            transform: translateY(-4px);
            border-color: rgba(18, 84, 255, 0.25);
            background: var(--white);
            box-shadow: 0 16px 36px rgba(5, 11, 31, 0.08);
        }

.support-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
    align-items: center;
}

/* =========================================================
   12. Homepage Product Suite
   ========================================================= */

.home-product-suite-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-top: 34px;
}

.home-product-card {
    position: relative;
    padding: 30px;
    border-radius: 28px;
    background: radial-gradient(circle at top right, rgba(53, 200, 255, 0.12), transparent 34%), linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(243, 246, 250, 0.98));
    border: 1px solid rgba(18, 84, 255, 0.12);
    box-shadow: 0 24px 60px rgba(5, 11, 31, 0.10);
    overflow: hidden;
}

    .home-product-card::before {
        content: "";
        position: absolute;
        top: -80px;
        right: -80px;
        width: 190px;
        height: 190px;
        border-radius: 999px;
        background: rgba(53, 200, 255, 0.14);
    }

    .home-product-card > * {
        position: relative;
        z-index: 1;
    }

.home-product-label {
    display: inline-flex;
    color: var(--blue);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.home-product-card h3 {
    margin: 0 0 12px;
    color: var(--navy);
    font-size: 28px;
    line-height: 1.15;
}

.home-product-card p {
    color: var(--slate);
    line-height: 1.7;
    margin-bottom: 20px;
}

.home-product-points {
    display: grid;
    gap: 10px;
    margin-bottom: 22px;
}

    .home-product-points span {
        display: block;
        padding: 12px 14px;
        border-radius: 16px;
        background: rgba(18, 84, 255, 0.06);
        border: 1px solid rgba(18, 84, 255, 0.10);
        color: var(--navy);
        font-size: 14px;
        font-weight: 700;
    }

.home-product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.home-capability-intro {
    max-width: 760px;
    margin: 0 auto 34px;
    text-align: center;
}

    .home-capability-intro p {
        margin-bottom: 0;
    }

.home-bfueled-strip {
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

    .home-bfueled-strip div {
        padding: 18px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.10);
    }

    .home-bfueled-strip strong {
        display: block;
        color: var(--white);
        font-size: 16px;
        margin-bottom: 5px;
    }

    .home-bfueled-strip span {
        display: block;
        color: rgba(255, 255, 255, 0.66);
        font-size: 13px;
        line-height: 1.5;
    }

/* =========================================================
   13. About Page
   ========================================================= */

.about-intro,
.values-section {
    background: var(--white);
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

    .timeline-grid article {
        position: relative;
        padding: 26px;
        border-radius: 24px;
        background: var(--white);
        border: 1px solid var(--border);
        box-shadow: 0 14px 36px rgba(5, 11, 31, 0.06);
        transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    }

        .timeline-grid article:hover {
            transform: translateY(-5px);
            box-shadow: 0 18px 42px rgba(5, 11, 31, 0.10);
            border-color: rgba(18, 84, 255, 0.25);
        }

        .timeline-grid article span {
            display: inline-flex;
            width: 42px;
            height: 42px;
            margin-bottom: 18px;
            align-items: center;
            justify-content: center;
            border-radius: 14px;
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 800;
            color: var(--white);
            background: linear-gradient(135deg, var(--blue), var(--cyan), var(--lavender));
        }

        .timeline-grid article p {
            margin-bottom: 0;
        }

/* =========================================================
   14. Solutions Page
   ========================================================= */

.solutions-preview,
.industries-section {
    background: var(--grey-bg);
}

.solutions-tabs-section {
    background: var(--white);
}

.solutions-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 26px;
}

.solution-tab {
    padding: 13px 17px;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--slate);
    background: var(--white);
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease, color 0.24s ease, box-shadow 0.24s ease;
}

    .solution-tab:hover {
        transform: translateY(-2px);
        border-color: rgba(18, 84, 255, 0.35);
        box-shadow: 0 12px 26px rgba(5, 11, 31, 0.08);
    }

    .solution-tab.is-active {
        color: var(--white);
        border-color: var(--blue);
        background: var(--blue);
        box-shadow: 0 14px 30px rgba(18, 84, 255, 0.24);
    }

.solution-panels {
    padding: 30px;
    border-radius: 30px;
    background: radial-gradient(circle at top right, rgba(53, 200, 255, 0.16), transparent 32%), var(--grey-bg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.solution-panel {
    display: none;
    grid-template-columns: 1fr 0.85fr;
    gap: 40px;
    align-items: center;
}

    .solution-panel.is-active {
        display: grid;
    }

    .solution-panel h3 {
        font-size: clamp(30px, 3vw, 42px);
    }

    .solution-panel p {
        max-width: 680px;
        font-size: 17px;
    }

.solution-feature-list,
.hardware-flow {
    display: grid;
    gap: 14px;
}

    .solution-feature-list span {
        padding: 18px 20px;
        border-radius: 18px;
        color: var(--navy);
        font-weight: 800;
        background: var(--white);
        border: 1px solid var(--border);
        transition: transform 0.26s ease, border-color 0.26s ease, box-shadow 0.26s ease;
    }

        .solution-feature-list span:hover {
            transform: translateX(6px);
            border-color: rgba(18, 84, 255, 0.25);
            box-shadow: 0 14px 34px rgba(5, 11, 31, 0.08);
        }

.integrations-section {
    background: var(--white);
}

.integration-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

    .integration-grid span {
        padding: 18px;
        border-radius: 18px;
        color: var(--navy);
        font-weight: 800;
        background: var(--grey-bg);
        border: 1px solid var(--border);
        transition: transform 0.26s ease, border-color 0.26s ease, background 0.26s ease, box-shadow 0.26s ease;
    }

        .integration-grid span:hover {
            transform: translateY(-4px);
            border-color: rgba(18, 84, 255, 0.25);
            background: var(--white);
            box-shadow: 0 16px 36px rgba(5, 11, 31, 0.08);
        }

.hardware-flow div {
    padding: 18px 20px;
    border-radius: 18px;
    color: var(--white);
    font-weight: 800;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
}

    .hardware-flow div:hover {
        transform: translateX(6px);
        border-color: rgba(53, 200, 255, 0.28);
        background: rgba(255, 255, 255, 0.105);
        box-shadow: 0 16px 38px rgba(0, 0, 0, 0.16);
    }

.hardware-flow span {
    width: 2px;
    height: 22px;
    margin-left: 24px;
    background: linear-gradient(var(--blue), var(--cyan));
}

/* Hardware visual */

.hardware-visual-frame {
    position: relative;
    overflow: hidden;
    margin-top: 34px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

    .hardware-visual-frame:hover {
        transform: translateY(-5px);
        border-color: rgba(53, 200, 255, 0.3);
        box-shadow: 0 36px 100px rgba(0, 0, 0, 0.42);
    }

    .hardware-visual-frame img {
        width: 100%;
        height: auto;
        display: block;
    }

.hardware-support-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 22px;
}

    .hardware-support-points div {
        padding: 22px;
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.12);
        transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
    }

        .hardware-support-points div:hover {
            transform: translateY(-5px);
            border-color: rgba(53, 200, 255, 0.28);
            background: rgba(255, 255, 255, 0.105);
            box-shadow: 0 16px 38px rgba(0, 0, 0, 0.16);
        }

    .hardware-support-points strong {
        display: block;
        margin-bottom: 6px;
        color: var(--white);
        font-size: 18px;
    }

    .hardware-support-points span {
        color: rgba(255, 255, 255, 0.68);
    }

/* =========================================================
   15. BFueled FMS Page
   ========================================================= */

.fms-hero {
    padding: 105px 0 88px;
}

.fms-dashboard-mockup {
    position: relative;
    z-index: 2;
    padding: 28px;
    border-radius: 30px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
    backdrop-filter: blur(18px);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

    .fms-dashboard-mockup:hover {
        transform: translateY(-4px);
        border-color: rgba(53, 200, 255, 0.28);
        box-shadow: 0 36px 100px rgba(0, 0, 0, 0.42);
    }

.fuel-level-card {
    display: grid;
    gap: 12px;
    padding: 18px;
    margin-bottom: 14px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

    .fuel-level-card div {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .fuel-level-card small {
        color: rgba(255, 255, 255, 0.64);
    }

    .fuel-level-card strong {
        font-size: 24px;
    }

.fuel-bar {
    height: 10px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
}

    .fuel-bar i {
        display: block;
        height: 100%;
        border-radius: inherit;
        background: linear-gradient(90deg, var(--blue), var(--cyan), var(--lavender));
        box-shadow: 0 0 20px rgba(53, 200, 255, 0.28);
    }

.dashboard-alert {
    margin-top: 16px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(18, 84, 255, 0.16);
    border: 1px solid rgba(53, 200, 255, 0.2);
}

    .dashboard-alert strong {
        display: block;
        margin-bottom: 4px;
        color: var(--cyan);
    }

    .dashboard-alert span {
        color: rgba(255, 255, 255, 0.72);
    }

.fms-challenges,
.dashboards-section {
    background: var(--white);
}

.fms-product-card,
.dashboard-showcase-card,
.site-survey-cta-card {
    position: relative;
    padding: 30px;
    border-radius: 28px;
    background: radial-gradient(circle at top right, rgba(53, 200, 255, 0.14), transparent 34%), linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(243, 246, 250, 0.98));
    border: 1px solid rgba(18, 84, 255, 0.12);
    box-shadow: 0 24px 60px rgba(5, 11, 31, 0.10);
    overflow: hidden;
}

    .fms-product-card::before,
    .dashboard-showcase-card::before,
    .site-survey-cta-card::before {
        content: "";
        position: absolute;
        top: -80px;
        right: -80px;
        width: 190px;
        height: 190px;
        border-radius: 999px;
        background: rgba(53, 200, 255, 0.14);
    }

    .fms-product-card > *,
    .dashboard-showcase-card > *,
    .site-survey-cta-card > * {
        position: relative;
        z-index: 1;
    }

.fms-card-header {
    margin-bottom: 22px;
}

    .fms-card-header span {
        display: inline-flex;
        color: var(--blue);
        font-size: 12px;
        font-weight: 900;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        margin-bottom: 10px;
    }

    .fms-card-header h3 {
        margin: 0 0 10px;
        color: var(--navy);
        font-size: 28px;
        line-height: 1.15;
    }

    .fms-card-header p {
        margin: 0;
        color: var(--slate);
        font-size: 15px;
        line-height: 1.65;
    }

.fms-status-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 22px;
}

.fms-status-tile {
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(18, 84, 255, 0.10);
    box-shadow: 0 10px 26px rgba(5, 11, 31, 0.05);
}

    .fms-status-tile span {
        display: block;
        color: var(--slate);
        font-size: 12px;
        font-weight: 700;
        margin-bottom: 6px;
    }

    .fms-status-tile strong {
        display: block;
        color: var(--navy);
        font-size: 20px;
        line-height: 1.1;
    }

.fms-alert-note {
    margin-top: 16px;
    padding: 16px;
    border-radius: 18px;
    background: rgba(18, 84, 255, 0.06);
    border: 1px solid rgba(18, 84, 255, 0.12);
}

    .fms-alert-note strong {
        display: block;
        color: var(--navy);
        margin-bottom: 4px;
    }

    .fms-alert-note span {
        display: block;
        color: var(--slate);
        font-size: 14px;
        line-height: 1.5;
    }

/* FMS flow visual */

.flow-visual-frame {
    position: relative;
    overflow: hidden;
    margin-top: 34px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

    .flow-visual-frame:hover {
        transform: translateY(-5px);
        border-color: rgba(53, 200, 255, 0.3);
        box-shadow: 0 36px 100px rgba(0, 0, 0, 0.42);
    }

    .flow-visual-frame img {
        width: 100%;
        height: auto;
        display: block;
    }

.flow-support-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 22px;
}

    .flow-support-points div {
        padding: 22px;
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.12);
        transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
    }

        .flow-support-points div:hover {
            transform: translateY(-5px);
            border-color: rgba(53, 200, 255, 0.28);
            background: rgba(255, 255, 255, 0.105);
            box-shadow: 0 16px 38px rgba(0, 0, 0, 0.16);
        }

    .flow-support-points strong {
        display: block;
        margin-bottom: 6px;
        color: var(--white);
        font-size: 18px;
    }

    .flow-support-points span {
        color: rgba(255, 255, 255, 0.68);
    }

/* FMS dashboard showcase */

.dashboard-showcase-section {
    align-items: center;
}

.dashboard-feature-grid {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.dashboard-feature-card {
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.90);
    border: 1px solid rgba(18, 84, 255, 0.10);
    box-shadow: 0 10px 24px rgba(5, 11, 31, 0.05);
}

    .dashboard-feature-card strong {
        display: block;
        color: var(--navy);
        font-size: 16px;
        margin-bottom: 5px;
    }

    .dashboard-feature-card span {
        display: block;
        color: var(--slate);
        font-size: 14px;
        line-height: 1.5;
    }

.dashboard-showcase-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}

    .dashboard-showcase-header span {
        display: block;
        color: var(--navy);
        font-size: 18px;
        font-weight: 800;
        margin-bottom: 2px;
    }

    .dashboard-showcase-header small {
        color: var(--blue);
        font-size: 13px;
        font-weight: 700;
    }

.dashboard-live-pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(18, 84, 255, 0.08);
    border: 1px solid rgba(18, 84, 255, 0.14);
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
}

.dashboard-metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 18px;
}

.dashboard-metric-box,
.dashboard-mini-summary div {
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(18, 84, 255, 0.10);
    box-shadow: 0 10px 24px rgba(5, 11, 31, 0.04);
}

    .dashboard-metric-box strong,
    .dashboard-mini-summary strong {
        display: block;
        color: var(--navy);
        font-size: 18px;
        margin-bottom: 5px;
    }

    .dashboard-metric-box span,
    .dashboard-mini-summary span {
        display: block;
        color: var(--slate);
        font-size: 13px;
    }

.dashboard-chart-card {
    padding: 18px;
    border-radius: 18px;
    background: rgba(18, 84, 255, 0.05);
    border: 1px solid rgba(18, 84, 255, 0.10);
    margin-bottom: 18px;
}

.chart-card-header {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

    .chart-card-header span {
        color: var(--navy);
        font-size: 15px;
        font-weight: 700;
    }

    .chart-card-header small {
        color: var(--slate);
        font-size: 12px;
    }

.dashboard-chart-bars {
    display: grid;
    gap: 10px;
}

    .dashboard-chart-bars span {
        display: block;
        height: 8px;
        border-radius: 999px;
        background: linear-gradient(90deg, var(--blue), var(--cyan), #7166ff);
        box-shadow: 0 6px 16px rgba(18, 84, 255, 0.15);
    }

.dashboard-mini-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

    .dashboard-mini-summary strong {
        font-size: 14px;
        margin-bottom: 0;
    }

    .dashboard-mini-summary span {
        font-size: 11px;
        font-weight: 700;
        margin-bottom: 4px;
    }

/* Integration showcase */

.integration-showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 34px;
}

.integration-showcase-card {
    padding: 24px;
    border-radius: 24px;
    background: var(--white);
    border: 1px solid rgba(18, 84, 255, 0.10);
    box-shadow: 0 18px 42px rgba(5, 11, 31, 0.07);
}

.integration-card-top {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 18px;
}

.integration-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    color: var(--white);
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 12px 22px rgba(18, 84, 255, 0.18);
    flex-shrink: 0;
}

.integration-card-top h3 {
    margin: 0 0 4px;
    color: var(--navy);
    font-size: 22px;
}

.integration-card-top p {
    margin: 0;
    color: var(--slate);
    font-size: 14px;
    line-height: 1.5;
}

.integration-chip-list,
.integration-highlight-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

    .integration-chip-list span {
        display: inline-flex;
        align-items: center;
        padding: 10px 14px;
        border-radius: 999px;
        background: rgba(18, 84, 255, 0.06);
        border: 1px solid rgba(18, 84, 255, 0.10);
        color: var(--navy);
        font-size: 13px;
        font-weight: 600;
        line-height: 1.35;
    }

.integration-highlight-banner {
    margin-top: 28px;
    padding: 28px;
    border-radius: 26px;
    background: radial-gradient(circle at top right, rgba(53, 200, 255, 0.18), transparent 36%), linear-gradient(145deg, rgba(5, 11, 31, 0.98), rgba(10, 22, 55, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 24px 60px rgba(5, 11, 31, 0.16);
    color: var(--white);
}

.integration-highlight-label {
    display: inline-flex;
    color: var(--cyan);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.integration-highlight-banner h3 {
    margin: 0 0 10px;
    color: var(--white);
    font-size: 28px;
    line-height: 1.2;
}

.integration-highlight-banner p {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.7;
}

.integration-highlight-pills span {
    display: inline-flex;
    padding: 9px 13px;
    border-radius: 999px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 13px;
    font-weight: 700;
}

/* Site survey CTA */

.site-survey-checklist {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}

    .site-survey-checklist span {
        display: block;
        padding: 14px 16px;
        border-radius: 16px;
        background: rgba(18, 84, 255, 0.06);
        border: 1px solid rgba(18, 84, 255, 0.10);
        color: var(--navy);
        font-size: 14px;
        font-weight: 700;
    }

.site-survey-actions {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* =========================================================
   16. BFueled On-Road Page
   ========================================================= */

.onroad-friendly-visual {
    position: relative;
    padding: 30px;
    border-radius: 26px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(243, 246, 250, 0.96)), var(--white);
    border: 1px solid rgba(18, 84, 255, 0.12);
    box-shadow: 0 24px 60px rgba(5, 11, 31, 0.10);
    overflow: hidden;
}

    .onroad-friendly-visual::before {
        content: "";
        position: absolute;
        top: -80px;
        right: -80px;
        width: 190px;
        height: 190px;
        border-radius: 999px;
        background: rgba(53, 200, 255, 0.16);
    }

    .onroad-friendly-visual::after {
        content: "";
        position: absolute;
        bottom: -90px;
        left: -90px;
        width: 190px;
        height: 190px;
        border-radius: 999px;
        background: rgba(18, 84, 255, 0.10);
    }

    .onroad-friendly-visual > * {
        position: relative;
        z-index: 1;
    }

.friendly-visual-header {
    margin-bottom: 22px;
}

    .friendly-visual-header span {
        display: inline-flex;
        color: var(--blue);
        font-size: 12px;
        font-weight: 900;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        margin-bottom: 10px;
    }

    .friendly-visual-header h3 {
        margin: 0 0 10px;
        color: var(--navy);
        font-size: 28px;
        line-height: 1.15;
    }

    .friendly-visual-header p {
        margin: 0;
        color: var(--slate);
        font-size: 15px;
        line-height: 1.65;
    }

.friendly-flow-list {
    display: grid;
    gap: 12px;
}

.friendly-flow-step {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 14px;
    align-items: flex-start;
    padding: 15px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(18, 84, 255, 0.10);
    box-shadow: 0 10px 26px rgba(5, 11, 31, 0.05);
}

.friendly-step-number {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    color: var(--white);
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 10px 22px rgba(18, 84, 255, 0.22);
}

.friendly-flow-step strong {
    display: block;
    color: var(--navy);
    font-size: 15px;
    margin-bottom: 4px;
}

.friendly-flow-step span {
    display: block;
    color: var(--slate);
    font-size: 13px;
    line-height: 1.45;
}

.friendly-summary-row {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

    .friendly-summary-row div {
        padding: 14px;
        border-radius: 16px;
        background: rgba(18, 84, 255, 0.06);
        border: 1px solid rgba(18, 84, 255, 0.10);
    }

    .friendly-summary-row span {
        display: block;
        color: var(--slate);
        font-size: 11px;
        font-weight: 700;
        margin-bottom: 5px;
    }

    .friendly-summary-row strong {
        display: block;
        color: var(--navy);
        font-size: 13px;
    }

/* =========================================================
   17. Support Page
   ========================================================= */

.support-page-hero {
    padding: 105px 0 95px;
}

.support-intro-section,
.sla-section,
.support-contact-section {
    background: var(--white);
}

.support-product-panel {
    position: relative;
    padding: 28px;
    border-radius: 28px;
    background: radial-gradient(circle at top right, rgba(53, 200, 255, 0.14), transparent 34%), linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(243, 246, 250, 0.98));
    border: 1px solid rgba(18, 84, 255, 0.12);
    box-shadow: 0 24px 60px rgba(5, 11, 31, 0.10);
    overflow: hidden;
}

    .support-product-panel::before {
        content: "";
        position: absolute;
        top: -80px;
        right: -80px;
        width: 190px;
        height: 190px;
        border-radius: 999px;
        background: rgba(53, 200, 255, 0.14);
    }

    .support-product-panel > * {
        position: relative;
        z-index: 1;
    }

.support-product-header {
    margin-bottom: 20px;
}

    .support-product-header span {
        display: inline-flex;
        color: var(--blue);
        font-size: 12px;
        font-weight: 900;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        margin-bottom: 10px;
    }

    .support-product-header h3 {
        margin: 0 0 10px;
        color: var(--navy);
        font-size: 26px;
        line-height: 1.15;
    }

    .support-product-header p {
        margin: 0;
        color: var(--slate);
        font-size: 15px;
        line-height: 1.65;
    }

.support-product-grid,
.support-focus-grid {
    display: grid;
    gap: 14px;
    margin-top: 22px;
}

.support-product-grid {
    grid-template-columns: repeat(2, 1fr);
}

.support-focus-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 34px;
}

.support-product-item,
.support-focus-card {
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(18, 84, 255, 0.10);
    box-shadow: 0 10px 26px rgba(5, 11, 31, 0.05);
}

.support-focus-card {
    padding: 24px;
    border-radius: 24px;
    background: var(--white);
    box-shadow: 0 18px 42px rgba(5, 11, 31, 0.07);
}

    .support-product-item strong,
    .support-focus-card h3 {
        display: block;
        color: var(--navy);
        font-size: 16px;
        margin-bottom: 4px;
    }

    .support-focus-card h3 {
        font-size: 21px;
        margin: 0 0 10px;
    }

    .support-product-item span,
    .support-focus-card p {
        display: block;
        color: var(--slate);
        font-size: 13px;
        line-height: 1.45;
    }

    .support-focus-card p {
        margin: 0;
        font-size: 14px;
        line-height: 1.6;
    }

.portal-support-banner {
    margin-top: 28px;
    padding: 28px;
    border-radius: 26px;
    background: radial-gradient(circle at top right, rgba(53, 200, 255, 0.18), transparent 36%), linear-gradient(145deg, rgba(5, 11, 31, 0.98), rgba(10, 22, 55, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 24px 60px rgba(5, 11, 31, 0.16);
    color: var(--white);
}

    .portal-support-banner h3 {
        margin: 0 0 10px;
        color: var(--white);
        font-size: 28px;
        line-height: 1.2;
    }

    .portal-support-banner p {
        margin: 0 0 18px;
        color: rgba(255, 255, 255, 0.74);
        line-height: 1.7;
    }

.portal-support-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

    .portal-support-pills span {
        display: inline-flex;
        padding: 9px 13px;
        border-radius: 999px;
        color: var(--white);
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.14);
        font-size: 13px;
        font-weight: 700;
    }

.support-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

    .support-process-grid article {
        padding: 26px;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.12);
        transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
    }

        .support-process-grid article:hover {
            transform: translateY(-5px);
            border-color: rgba(53, 200, 255, 0.28);
            background: rgba(255, 255, 255, 0.105);
            box-shadow: 0 16px 38px rgba(0, 0, 0, 0.16);
        }

        .support-process-grid article span {
            display: inline-flex;
            width: 42px;
            height: 42px;
            margin-bottom: 18px;
            align-items: center;
            justify-content: center;
            border-radius: 14px;
            color: var(--white);
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 800;
            background: linear-gradient(135deg, var(--blue), var(--cyan), var(--lavender));
        }

        .support-process-grid article h3 {
            color: var(--white);
        }

        .support-process-grid article p {
            color: rgba(255, 255, 255, 0.66);
            margin-bottom: 0;
        }

.sla-card-stack {
    display: grid;
    gap: 16px;
    padding: 26px;
    border-radius: 28px;
    background: radial-gradient(circle at top right, rgba(53, 200, 255, 0.16), transparent 34%), var(--navy);
    box-shadow: var(--shadow);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

    .sla-card-stack:hover {
        transform: translateY(-4px);
        box-shadow: 0 22px 55px rgba(5, 11, 31, 0.14);
    }

    .sla-card-stack div {
        padding: 22px;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.12);
        transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease;
    }

        .sla-card-stack div:hover {
            transform: translateX(6px);
            border-color: rgba(53, 200, 255, 0.28);
            background: rgba(255, 255, 255, 0.105);
        }

    .sla-card-stack strong {
        display: block;
        margin-bottom: 6px;
        color: var(--white);
        font-size: 18px;
    }

    .sla-card-stack span {
        color: rgba(255, 255, 255, 0.68);
    }

.support-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.support-contact-card {
    padding: 34px;
    border-radius: 28px;
    color: var(--white);
    background: radial-gradient(circle at top right, rgba(53, 200, 255, 0.16), transparent 32%), var(--navy);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

    .support-contact-card:hover {
        transform: translateY(-5px);
        border-color: rgba(53, 200, 255, 0.28);
        box-shadow: 0 22px 55px rgba(5, 11, 31, 0.16);
    }

    .support-contact-card.secondary {
        color: var(--navy);
        background: var(--grey-bg);
        border: 1px solid var(--border);
    }

    .support-contact-card h2 {
        color: inherit;
    }

    .support-contact-card p {
        color: rgba(255, 255, 255, 0.72);
    }

    .support-contact-card.secondary p {
        color: var(--slate);
    }

/* =========================================================
   18. Contact Page
   ========================================================= */

.contact-page-hero {
    padding: 105px 0 95px;
}

.contact-intro-section,
.contact-path-section {
    background: var(--white);
}

.contact-product-panel,
.contact-survey-card {
    position: relative;
    padding: 28px;
    border-radius: 28px;
    background: radial-gradient(circle at top right, rgba(53, 200, 255, 0.14), transparent 34%), linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(243, 246, 250, 0.98));
    border: 1px solid rgba(18, 84, 255, 0.12);
    box-shadow: 0 24px 60px rgba(5, 11, 31, 0.10);
    overflow: hidden;
}

    .contact-product-panel::before,
    .contact-survey-card::before {
        content: "";
        position: absolute;
        top: -80px;
        right: -80px;
        width: 190px;
        height: 190px;
        border-radius: 999px;
        background: rgba(53, 200, 255, 0.14);
    }

    .contact-product-panel > *,
    .contact-survey-card > * {
        position: relative;
        z-index: 1;
    }

.contact-panel-header {
    margin-bottom: 20px;
}

    .contact-panel-header span {
        display: inline-flex;
        color: var(--blue);
        font-size: 12px;
        font-weight: 900;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        margin-bottom: 10px;
    }

    .contact-panel-header h3,
    .contact-survey-card h2 {
        margin: 0 0 10px;
        color: var(--navy);
        font-size: 26px;
        line-height: 1.15;
    }

    .contact-panel-header p,
    .contact-survey-card p {
        margin: 0;
        color: var(--slate);
        font-size: 15px;
        line-height: 1.65;
    }

.contact-product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 22px;
}

.contact-product-item {
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(18, 84, 255, 0.10);
    box-shadow: 0 10px 26px rgba(5, 11, 31, 0.05);
}

    .contact-product-item strong {
        display: block;
        color: var(--navy);
        font-size: 16px;
        margin-bottom: 4px;
    }

    .contact-product-item span {
        display: block;
        color: var(--slate);
        font-size: 13px;
        line-height: 1.45;
    }

.contact-survey-card {
    text-align: center;
}

    .contact-survey-card p {
        max-width: 820px;
        margin-left: auto;
        margin-right: auto;
    }

.contact-survey-actions {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.direct-contact-section {
    background: var(--white);
    padding-top: 0;
}

.direct-contact-card {
    padding: 42px;
    border-radius: 30px;
    background: radial-gradient(circle at top right, rgba(53, 200, 255, 0.14), transparent 32%), var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

    .direct-contact-card:hover {
        transform: translateY(-4px);
        border-color: rgba(18, 84, 255, 0.22);
        box-shadow: 0 22px 55px rgba(5, 11, 31, 0.12);
    }

.direct-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    max-width: 920px;
    margin: 0 auto;
}

.direct-contact-item {
    display: grid;
    gap: 8px;
    padding: 24px;
    border-radius: 22px;
    background: var(--grey-bg);
    border: 1px solid var(--border);
    color: var(--navy);
    transition: transform 0.26s ease, border-color 0.26s ease, background 0.26s ease, box-shadow 0.26s ease;
}

    .direct-contact-item:hover {
        transform: translateY(-4px);
        border-color: rgba(18, 84, 255, 0.28);
        background: var(--white);
        box-shadow: 0 16px 36px rgba(5, 11, 31, 0.08);
    }

    .direct-contact-item span {
        color: var(--blue);
        font-size: 12px;
        font-weight: 800;
        letter-spacing: 0.1em;
        text-transform: uppercase;
    }

    .direct-contact-item strong {
        display: block;
        font-family: 'Space Grotesk', sans-serif;
        font-size: clamp(20px, 2vw, 28px);
        color: var(--navy);
        line-height: 1.25;
    }

        .direct-contact-item strong a {
            color: var(--navy);
        }

    .direct-contact-item em {
        display: inline-block;
        margin: 0 8px;
        color: var(--muted);
        font-style: normal;
    }

.full-contact-item {
    grid-column: 1 / -1;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.45fr 0.75fr;
    gap: 28px;
    align-items: start;
}

.contact-form-card {
    padding: 34px;
    border-radius: 30px;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

    .contact-form-card:hover {
        transform: translateY(-4px);
        border-color: rgba(18, 84, 255, 0.22);
        box-shadow: 0 22px 55px rgba(5, 11, 31, 0.12);
    }

.form-heading {
    max-width: 760px;
    margin-bottom: 28px;
}

    .form-heading p {
        font-size: 17px;
    }

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    display: grid;
    gap: 8px;
}

    .form-group label {
        color: var(--navy);
        font-weight: 800;
        font-size: 14px;
    }

.form-control {
    width: 100%;
    min-height: 50px;
    padding: 14px 15px;
    border: 1px solid var(--border);
    border-radius: 14px;
    outline: none;
    color: var(--slate);
    background: var(--grey-bg);
    font-family: 'Inter', Arial, sans-serif;
    font-size: 15px;
    transition: border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

    .form-control:focus {
        border-color: rgba(18, 84, 255, 0.45);
        background: var(--white);
        box-shadow: 0 0 0 4px rgba(18, 84, 255, 0.08);
    }

.textarea-control {
    min-height: 150px;
    resize: vertical;
}

.full-width {
    grid-column: 1 / -1;
}

.form-submit-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    padding-top: 8px;
}

.form-button {
    border: none;
    cursor: pointer;
    font-family: 'Inter', Arial, sans-serif;
}

.form-message,
.form-submit-row span {
    color: var(--muted);
    font-size: 13px;
}

.contact-side-panel {
    display: grid;
    gap: 16px;
    position: sticky;
    top: 140px;
}

.contact-detail-card {
    padding: 24px;
    border-radius: 24px;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: 0 14px 36px rgba(5, 11, 31, 0.06);
}

    .contact-detail-card:hover {
        transform: translateX(6px);
        border-color: rgba(18, 84, 255, 0.24);
        box-shadow: 0 18px 42px rgba(5, 11, 31, 0.10);
    }

    .contact-detail-card h3 {
        margin-bottom: 8px;
    }

    .contact-detail-card p {
        margin-bottom: 0;
    }

/* =========================================================
   19. Client Portals Page
   ========================================================= */

.portal-page-hero,
.portal-landing-hero {
    padding: 105px 0 95px;
}

.portal-hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 54px;
    align-items: center;
}

.portal-hero-content h1 {
    color: var(--white);
}

.portal-hero-content p {
    max-width: 620px;
    margin-bottom: 28px;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.74);
}

.portal-quick-access {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.portal-quick-card,
.portal-card {
    position: relative;
    overflow: hidden;
    padding: 28px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(18px);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.portal-card {
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: 0 14px 36px rgba(5, 11, 31, 0.06);
}

    .portal-quick-card:hover,
    .portal-card:hover {
        transform: translateY(-6px);
        border-color: rgba(53, 200, 255, 0.32);
        box-shadow: 0 30px 85px rgba(0, 0, 0, 0.34);
    }

    .portal-card:hover {
        border-color: rgba(18, 84, 255, 0.28);
        box-shadow: 0 22px 55px rgba(5, 11, 31, 0.12);
    }

.portal-quick-card h3 {
    color: var(--white);
}

.portal-quick-card p {
    min-height: 112px;
    color: rgba(255, 255, 255, 0.7);
}

.portal-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

    .portal-card-grid.two-portals {
        grid-template-columns: repeat(2, 1fr);
    }

.portal-card-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
}

    .portal-card-top span {
        padding: 8px 12px;
        border-radius: 999px;
        color: var(--blue);
        background: rgba(18, 84, 255, 0.08);
        font-size: 12px;
        font-weight: 800;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

.portal-quick-card .portal-card-top span,
.portal-card.featured .portal-card-top span {
    color: var(--cyan);
    background: rgba(255, 255, 255, 0.08);
}

.portal-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
    background: linear-gradient(135deg, var(--blue), var(--cyan), var(--lavender));
    box-shadow: 0 0 28px rgba(53, 200, 255, 0.24);
}

.portal-card.featured {
    color: var(--white);
    background: radial-gradient(circle at top right, rgba(53, 200, 255, 0.18), transparent 34%), var(--navy);
    border-color: rgba(255, 255, 255, 0.12);
}

    .portal-card.featured h3 {
        color: var(--white);
    }

    .portal-card.featured p {
        color: rgba(255, 255, 255, 0.72);
    }

.portal-options-section {
    background: var(--white);
}

/* =========================================================
   20. Site Survey Page
   ========================================================= */

.site-survey-hero {
    padding: 105px 0 95px;
}

.survey-intro-section {
    background: var(--white);
}

.survey-info-panel {
    padding: 28px;
    border-radius: 28px;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

    .survey-info-panel:hover {
        transform: translateY(-4px);
        border-color: rgba(18, 84, 255, 0.22);
        box-shadow: 0 22px 55px rgba(5, 11, 31, 0.12);
    }

.survey-info-grid div {
    padding: 18px;
    border-radius: 18px;
    background: var(--grey-bg);
    border: 1px solid var(--border);
}

.survey-info-grid strong {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 26px;
    color: var(--navy);
}

.survey-info-grid span {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 13px;
}

.survey-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 28px;
    align-items: start;
}

.survey-form-card {
    padding: 34px;
    border-radius: 30px;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.survey-section {
    padding: 30px 0;
    border-top: 1px solid var(--border);
}

.survey-section-heading {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    margin-bottom: 24px;
    align-items: start;
}

    .survey-section-heading > span {
        width: 46px;
        height: 46px;
        border-radius: 15px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        font-family: 'Space Grotesk', sans-serif;
        font-weight: 800;
        background: linear-gradient(135deg, var(--blue), var(--cyan), var(--lavender));
    }

    .survey-section-heading h3 {
        margin-bottom: 6px;
    }

    .survey-section-heading p {
        margin: 0;
        color: var(--muted);
    }

.small-textarea {
    min-height: 96px;
}

.form-help {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.5;
}

.file-control {
    padding-top: 12px;
}

.survey-checklist {
    display: grid;
    gap: 12px;
}

    .survey-checklist span {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 14px 15px;
        border-radius: 16px;
        background: var(--grey-bg);
        border: 1px solid var(--border);
        color: var(--navy);
        font-weight: 700;
        transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
    }

        .survey-checklist span:hover {
            transform: translateY(-2px);
            border-color: rgba(18, 84, 255, 0.28);
            background: var(--white);
        }

    .survey-checklist input {
        width: 17px;
        height: 17px;
        accent-color: var(--blue);
    }

.survey-submit-panel {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
    margin-top: 16px;
    padding: 26px;
    border-radius: 24px;
    color: var(--white);
    background: radial-gradient(circle at top right, rgba(53, 200, 255, 0.18), transparent 34%), var(--navy);
}

    .survey-submit-panel h3 {
        color: var(--white);
    }

    .survey-submit-panel p {
        margin-bottom: 0;
        color: rgba(255, 255, 255, 0.68);
    }

.survey-submit-actions {
    display: grid;
    gap: 12px;
    justify-items: end;
}

.survey-side-panel {
    display: grid;
    gap: 16px;
    position: sticky;
    top: 140px;
}

.survey-side-card {
    padding: 24px;
    border-radius: 24px;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: 0 14px 36px rgba(5, 11, 31, 0.06);
}

    .survey-side-card:hover {
        transform: translateX(6px);
        border-color: rgba(18, 84, 255, 0.24);
        box-shadow: 0 18px 42px rgba(5, 11, 31, 0.10);
    }

    .survey-side-card.dark {
        color: var(--white);
        background: radial-gradient(circle at top right, rgba(53, 200, 255, 0.16), transparent 32%), var(--navy);
        border-color: rgba(255, 255, 255, 0.1);
    }

        .survey-side-card.dark h3 {
            color: var(--white);
        }

        .survey-side-card.dark p {
            color: rgba(255, 255, 255, 0.72);
        }

    .survey-side-card ul {
        margin: 14px 0 0;
        padding-left: 18px;
        color: var(--slate);
    }

    .survey-side-card.dark ul {
        color: rgba(255, 255, 255, 0.72);
    }

    .survey-side-card li {
        margin-bottom: 8px;
    }

/* Site survey visibility fix */

#site-survey-form {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

    #site-survey-form .survey-layout,
    #site-survey-form .survey-form-card,
    #site-survey-form .survey-section,
    #site-survey-form .survey-side-panel {
        opacity: 1 !important;
        transform: none !important;
        visibility: visible !important;
    }

/* =========================================================
   21. Scroll Reveal
   ========================================================= */

.reveal-section {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 1s ease, transform 1s ease;
    will-change: opacity, transform;
}

    .reveal-section.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

/* =========================================================
   22. Footer
   ========================================================= */

.site-footer {
    background: radial-gradient(circle at top left, rgba(18, 84, 255, 0.2), transparent 32%), radial-gradient(circle at bottom right, rgba(53, 200, 255, 0.12), transparent 28%), var(--navy);
    color: var(--white);
    padding: 70px 0 26px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 44px;
    padding-bottom: 42px;
}

.footer-logo img,
.site-footer .image-brand img {
    max-width: 240px;
    height: auto;
}

.footer-brand p {
    max-width: 420px;
    margin: 22px 0 18px;
    color: rgba(255, 255, 255, 0.68);
}

.footer-location {
    display: inline-flex;
    padding: 10px 14px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

.footer-column h4 {
    margin: 0 0 16px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    color: var(--white);
}

.footer-column a {
    display: block;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 14px;
    transition: color 0.2s ease, transform 0.2s ease;
}

    .footer-column a:hover {
        color: var(--cyan);
        transform: translateX(3px);
    }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.58);
    font-size: 14px;
}

    .footer-bottom p {
        margin: 0;
        color: rgba(255, 255, 255, 0.58);
    }

    .footer-bottom a {
        color: var(--cyan);
        font-weight: 700;
    }

/* =========================================================
   23. Responsive
   ========================================================= */

@media (max-width: 1100px) {
    .mobile-menu-button {
        display: block;
    }

    .header-utility-inner {
        min-height: auto;
        padding-top: 10px;
        padding-bottom: 10px;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .utility-label {
        text-align: center;
        font-size: 12px;
    }

    .utility-actions {
        justify-content: center;
    }

    .main-nav {
        position: absolute;
        top: 118px;
        left: 20px;
        right: 20px;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 18px;
        background: rgba(5, 11, 31, 0.98);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 18px;
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
        max-height: calc(100vh - 138px);
        overflow-y: auto;
    }

        .main-nav.is-open {
            display: flex;
        }

        .main-nav a {
            width: 100%;
            padding: 12px 10px;
        }

            .main-nav a:hover {
                transform: translateX(3px);
            }

            .main-nav a.is-active::after {
                left: 10px;
                right: auto;
                bottom: 4px;
                width: 42px;
            }

    .hero-grid,
    .feature-split,
    .support-grid,
    .portal-hero-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .solution-panel {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 980px) {
    .split-section,
    .split-section.reverse {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .three-columns,
    .industry-grid,
    .trust-grid,
    .problem-grid,
    .support-process-grid,
    .support-category-grid,
    .timeline-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-layout,
    .survey-layout {
        grid-template-columns: 1fr;
    }

    .contact-side-panel,
    .survey-side-panel {
        position: static;
        grid-template-columns: 1fr 1fr;
    }

    .support-contact-grid,
    .home-product-suite-grid,
    .home-bfueled-strip,
    .portal-card-grid,
    .portal-card-grid.two-portals {
        grid-template-columns: 1fr;
    }

    .support-focus-grid {
        grid-template-columns: 1fr;
    }

    .integration-showcase-grid {
        grid-template-columns: 1fr;
    }

    .flow-support-points,
    .hardware-support-points {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: auto;
    }

    .floating-card {
        position: static;
        display: inline-flex;
        margin: 10px 8px 0 0;
    }

    .portal-quick-card p,
    .portal-card p {
        min-height: auto;
    }

    .survey-submit-panel {
        grid-template-columns: 1fr;
    }

    .survey-submit-actions {
        justify-items: stretch;
    }
}

@media (max-width: 760px) {
    .portal-quick-access,
    .direct-contact-grid {
        grid-template-columns: 1fr;
    }

    .full-contact-item {
        grid-column: auto;
    }
}

@media (max-width: 700px) {
    body {
        font-size: 15.5px;
        line-height: 1.6;
    }

    .container {
        width: min(100% - 34px, 1180px);
    }

    .header-inner {
        min-height: 68px;
        gap: 16px;
    }

    .site-header .image-brand img {
        max-width: 165px;
        height: auto;
    }

    .utility-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 100%;
    }

    .utility-link,
    .utility-cta {
        width: 100%;
        font-size: 12px;
        padding: 8px 10px;
    }

    .main-nav {
        top: 126px;
        left: 17px;
        right: 17px;
        max-height: calc(100vh - 146px);
        padding: 16px;
    }

        .main-nav a {
            font-size: 15px;
        }

    main h1 {
        font-size: clamp(34px, 10vw, 44px);
        line-height: 1.08;
        letter-spacing: -0.045em;
    }

    main h2 {
        font-size: clamp(28px, 8vw, 36px);
        line-height: 1.14;
        letter-spacing: -0.035em;
    }

    main h3 {
        font-size: 21px;
        line-height: 1.22;
    }

    .eyebrow {
        font-size: 11px;
        letter-spacing: 0.13em;
        margin-bottom: 12px;
    }

    .hero-text,
    .page-hero-content p,
    .portal-hero-content p,
    .narrow p,
    .form-heading p {
        font-size: 16px;
    }

    .hero-section,
    .page-hero,
    .fms-hero,
    .support-page-hero,
    .contact-page-hero,
    .portal-page-hero,
    .portal-landing-hero,
    .site-survey-hero {
        padding: 64px 0 58px;
    }

    .section {
        padding: 58px 0;
    }

    .section-heading {
        margin-bottom: 26px;
    }

    .hero-actions,
    .home-product-actions,
    .site-survey-actions,
    .contact-survey-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

        .hero-actions a,
        .home-product-actions a,
        .site-survey-actions a,
        .contact-survey-actions a,
        .btn-primary,
        .btn-secondary {
            width: 100%;
            text-align: center;
        }

    .hero-points {
        gap: 8px;
    }

        .hero-points span {
            font-size: 12px;
            padding: 8px 10px;
        }

    .dashboard-stats,
    .status-grid,
    .three-columns,
    .industry-grid,
    .trust-grid,
    .problem-grid,
    .support-category-grid,
    .timeline-grid,
    .support-process-grid,
    .contact-form-grid,
    .contact-side-panel,
    .survey-side-panel,
    .support-status-grid,
    .dashboard-metrics-grid,
    .dashboard-mini-summary,
    .fms-status-grid,
    .preview-grid,
    .hardware-mini-grid,
    .capability-list,
    .integration-grid,
    .survey-info-grid,
    .support-product-grid,
    .friendly-summary-row {
        grid-template-columns: 1fr;
    }

    .home-capability-intro,
    .contact-survey-card {
        text-align: left;
    }

    .main-dashboard,
    .fms-dashboard-mockup,
    .flow-visual-frame,
    .hardware-visual-frame,
    .dashboard-showcase-card,
    .integration-showcase-card,
    .integration-highlight-banner,
    .portal-support-banner,
    .onroad-friendly-visual {
        border-radius: 22px;
    }

    .feature-card,
    .portal-card,
    .portal-quick-card,
    .interface-panel,
    .stat-panel,
    .support-status-panel,
    .contact-form-card,
    .contact-detail-card,
    .portal-support-panel,
    .support-contact-card,
    .sla-card-stack,
    .direct-contact-card,
    .survey-form-card,
    .survey-side-card,
    .survey-submit-panel,
    .fms-product-card,
    .dashboard-showcase-card,
    .site-survey-cta-card,
    .support-product-panel,
    .support-focus-card,
    .contact-product-panel,
    .contact-survey-card,
    .home-product-card {
        padding: 22px;
        border-radius: 22px;
    }

    .direct-contact-item {
        padding: 20px;
        border-radius: 20px;
    }

        .direct-contact-item strong {
            font-size: 20px;
        }

        .direct-contact-item em {
            display: block;
            margin: 6px 0;
        }

    .fms-card-header h3,
    .integration-highlight-banner h3,
    .portal-support-banner h3,
    .friendly-visual-header h3,
    .contact-panel-header h3,
    .contact-survey-card h2,
    .support-product-header h3,
    .home-product-card h3 {
        font-size: 23px;
    }

    .solutions-tabs {
        flex-direction: column;
    }

    .solution-tab {
        width: 100%;
        text-align: left;
    }

    .solution-panels {
        padding: 22px;
        border-radius: 24px;
    }

    .solution-panel h3 {
        font-size: 28px;
    }

    .form-control {
        min-height: 48px;
        font-size: 15px;
    }

    .form-submit-row {
        align-items: stretch;
    }

    .form-button {
        width: 100%;
    }

    .survey-section {
        padding: 26px 0;
    }

    .survey-section-heading {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .site-footer {
        padding: 52px 0 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
    }

    .site-footer .image-brand img {
        max-width: 175px;
    }
}

@media (max-width: 420px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    main h1 {
        font-size: clamp(31px, 10vw, 38px);
    }

    main h2 {
        font-size: clamp(26px, 8vw, 32px);
    }

    .hero-section,
    .page-hero,
    .fms-hero,
    .support-page-hero,
    .contact-page-hero,
    .portal-page-hero,
    .portal-landing-hero,
    .site-survey-hero {
        padding: 56px 0 52px;
    }

    .section {
        padding: 52px 0;
    }
}

/* =========================================================
   24. Reduced Motion
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

    .reveal-section {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .site-header {
        transition: none;
    }
}

/* =========================================================
   Force Sticky Header Always Visible
   ========================================================= */

.site-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 9999 !important;
    transform: none !important;
    transition: box-shadow 0.25s ease, background-color 0.25s ease !important;
    will-change: auto !important;
}

    .site-header.is-hidden,
    .site-header.header-hidden {
        transform: none !important;
    }

    .site-header.is-scrolled,
    .site-header.header-scrolled {
        box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
    }

body.mobile-menu-open .site-header {
    transform: none !important;
}
/* =========================================================
   FINAL HEADER FIX
   Keep header fixed and always visible
   ========================================================= */

.site-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 99999 !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    background: rgba(5, 11, 31, 0.96) !important;
    backdrop-filter: blur(18px);
    transition: box-shadow 0.25s ease, background-color 0.25s ease !important;
}

    .site-header.is-hidden,
    .site-header.header-hidden {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }

    .site-header.is-scrolled,
    .site-header.header-scrolled {
        box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22) !important;
    }

/* Add space so page content does not hide underneath the fixed header */
main {
    padding-top: var(--bb-header-height, 118px) !important;
}

html {
    scroll-padding-top: var(--bb-header-height, 118px);
}

body.mobile-menu-open {
    overflow: hidden;
}

    body.mobile-menu-open .site-header {
        transform: none !important;
    }

/* Mobile dropdown menu must sit below the fixed header */
@media (max-width: 1100px) {
    .main-nav {
        position: fixed !important;
        top: var(--bb-header-height, 126px) !important;
        left: 20px !important;
        right: 20px !important;
        z-index: 100000 !important;
        max-height: calc(100vh - var(--bb-header-height, 126px) - 20px) !important;
        overflow-y: auto !important;
    }
}

@media (max-width: 700px) {
    .main-nav {
        left: 17px !important;
        right: 17px !important;
    }
}