/*====================================================================

    CRESGATE LOGISTICS
    Enterprise Website

    ----------------------------------------------------
    Design System Version : 1.0
    Author                : OpenAI + Prosper
    Build                 : August 2026

====================================================================*/

/*==============================================================
TABLE OF CONTENTS

01. FONT IMPORTS
02. ROOT VARIABLES
03. RESET AND NORMALISATION
04. BASE TYPOGRAPHY
05. GLOBAL LAYOUT
06. SECTION STRUCTURE
07. TYPOGRAPHY COMPONENTS
08. BUTTONS AND LINKS
09. FORM CONTROLS
10. SURFACES AND CARDS
11. ICON COMPONENTS
12. DIVIDERS AND DECORATIVE ELEMENTS
13. UTILITY CLASSES
14. ACCESSIBILITY
15. ANIMATION FOUNDATIONS
16. RESPONSIVE FOUNDATION
==============================================================*/


/*==============================================================
01. FONT IMPORTS

Lexend: headings and display text
Inter: body text, labels and controls
==============================================================*/

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Lexend:wght@400;500;600;700&display=swap");


/*==============================================================
02. ROOT VARIABLES
==============================================================*/

:root {

    /*----------------------------------------------------------
    BRAND: NAVY PALETTE
    ----------------------------------------------------------*/

    --cg-navy-950: #06162a;
    --cg-navy-900: #081c36;
    --cg-navy-850: #0d2541;
    --cg-navy-800: #102b49;
    --cg-navy-750: #123353;
    --cg-navy-700: #163a5b;
    --cg-navy-600: #29506f;
    --cg-navy-500: #3d6684;


    /*----------------------------------------------------------
    BRAND: MUTED BRASS PALETTE
    ----------------------------------------------------------*/

    --cg-brass-700: #8f641c;
    --cg-brass-600: #a8741f;
    --cg-brass-500: #c08a2b;
    --cg-brass-400: #cfa04e;
    --cg-brass-300: #d6b06a;
    --cg-brass-200: #ead7ae;
    --cg-brass-100: #f6f1e6;


    /*----------------------------------------------------------
    NEUTRAL PALETTE
    ----------------------------------------------------------*/

    --cg-white: #ffffff;
    --cg-off-white: #fafbf9;
    --cg-surface: #f4f7f9;
    --cg-surface-soft: #eef3f7;
    --cg-surface-deep: #e3eaf0;

    --cg-grey-100: #edf1f4;
    --cg-grey-200: #dce4ea;
    --cg-grey-300: #c5d0d9;
    --cg-grey-400: #9baab7;
    --cg-grey-500: #718191;
    --cg-grey-600: #5f6b78;
    --cg-grey-700: #46525e;
    --cg-grey-800: #2f3943;
    --cg-grey-900: #1e2630;

    --cg-text: #1d2632;
    --cg-text-soft: #465463;
    --cg-muted: #66768a;
    --cg-border: rgba(8, 28, 54, 0.12);
    --cg-border-light: rgba(8, 28, 54, 0.08);


    /*----------------------------------------------------------
    SEMANTIC COLOURS
    ----------------------------------------------------------*/

    --cg-success: #25775a;
    --cg-warning: #b77a18;
    --cg-danger: #b84949;
    --cg-info: #356b91;


    /*----------------------------------------------------------
    TYPOGRAPHY
    ----------------------------------------------------------*/

    --cg-font-heading: "Lexend", Arial, sans-serif;
    --cg-font-body: "Inter", Arial, sans-serif;

    --cg-font-size-xs: 0.75rem;
    --cg-font-size-sm: 0.875rem;
    --cg-font-size-base: 1rem;
    --cg-font-size-md: 1.125rem;
    --cg-font-size-lg: 1.25rem;
    --cg-font-size-xl: 1.5rem;
    --cg-font-size-2xl: 2rem;
    --cg-font-size-3xl: 2.75rem;
    --cg-font-size-4xl: 3.75rem;
    --cg-font-size-5xl: 4.75rem;

    --cg-line-height-tight: 1.1;
    --cg-line-height-heading: 1.2;
    --cg-line-height-body: 1.7;

    --cg-letter-spacing-tight: -0.035em;
    --cg-letter-spacing-heading: -0.02em;
    --cg-letter-spacing-label: 0.14em;


    /*----------------------------------------------------------
    SPACING SYSTEM
    Based on an 8px grid
    ----------------------------------------------------------*/

    --cg-space-1: 0.25rem;
    --cg-space-2: 0.5rem;
    --cg-space-3: 0.75rem;
    --cg-space-4: 1rem;
    --cg-space-5: 1.25rem;
    --cg-space-6: 1.5rem;
    --cg-space-8: 2rem;
    --cg-space-10: 2.5rem;
    --cg-space-12: 3rem;
    --cg-space-14: 3.5rem;
    --cg-space-16: 4rem;
    --cg-space-20: 5rem;
    --cg-space-24: 6rem;
    --cg-space-28: 7rem;
    --cg-space-30: 7.5rem;
    --cg-space-32: 8rem;


    /*----------------------------------------------------------
    CONTAINER WIDTHS
    ----------------------------------------------------------*/

    --cg-container-sm: 720px;
    --cg-container-md: 960px;
    --cg-container-lg: 1180px;
    --cg-container-xl: 1320px;
    --cg-container-wide: 1480px;

    --cg-page-padding: 32px;


    /*----------------------------------------------------------
    BORDER RADII
    ----------------------------------------------------------*/

    --cg-radius-xs: 6px;
    --cg-radius-sm: 10px;
    --cg-radius-md: 16px;
    --cg-radius-lg: 24px;
    --cg-radius-xl: 32px;
    --cg-radius-pill: 999px;


    /*----------------------------------------------------------
    SHADOWS
    Soft and restrained
    ----------------------------------------------------------*/

    --cg-shadow-xs:
        0 1px 2px rgba(6, 22, 42, 0.04);

    --cg-shadow-sm:
        0 8px 24px rgba(6, 22, 42, 0.06);

    --cg-shadow-md:
        0 18px 45px rgba(6, 22, 42, 0.08);

    --cg-shadow-lg:
        0 28px 70px rgba(6, 22, 42, 0.12);

    --cg-shadow-focus:
        0 0 0 4px rgba(192, 138, 43, 0.18);


    /*----------------------------------------------------------
    TRANSITIONS
    ----------------------------------------------------------*/

    --cg-transition-fast: 180ms ease;
    --cg-transition-base: 320ms ease;
    --cg-transition-slow: 520ms cubic-bezier(0.22, 1, 0.36, 1);


    /*----------------------------------------------------------
    Z-INDEX SCALE
    ----------------------------------------------------------*/

    --cg-z-base: 1;
    --cg-z-content: 10;
    --cg-z-overlay: 20;
    --cg-z-dropdown: 100;
    --cg-z-header: 500;
    --cg-z-modal: 1000;
}


/*==============================================================
03. RESET AND NORMALISATION
==============================================================*/

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--cg-off-white);
    color: var(--cg-text);
    font-family: var(--cg-font-body);
    font-size: var(--cg-font-size-base);
    font-weight: 400;
    line-height: var(--cg-line-height-body);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body,
button,
input,
select,
textarea {
    font-family: var(--cg-font-body);
}

img,
picture,
svg,
video {
    display: block;
    max-width: 100%;
}

img {
    height: auto;
}

button,
input,
select,
textarea {
    margin: 0;
}

button {
    border: 0;
}

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

ul,
ol {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

figure,
blockquote {
    margin: 0;
}

address {
    font-style: normal;
}

table {
    width: 100%;
    border-collapse: collapse;
}


/*==============================================================
04. BASE TYPOGRAPHY
==============================================================*/

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    color: var(--cg-navy-900);
    font-family: var(--cg-font-heading);
    font-weight: 600;
    line-height: var(--cg-line-height-heading);
    letter-spacing: var(--cg-letter-spacing-heading);
}

h1 {
    font-size: clamp(2.75rem, 5.6vw, 5rem);
    line-height: 1.05;
    letter-spacing: var(--cg-letter-spacing-tight);
}

h2 {
    font-size: clamp(2.15rem, 4vw, 3.75rem);
    line-height: 1.08;
}

h3 {
    font-size: clamp(1.5rem, 2.4vw, 2.1rem);
}

h4 {
    font-size: clamp(1.25rem, 1.8vw, 1.5rem);
}

h5 {
    font-size: var(--cg-font-size-md);
}

h6 {
    font-size: var(--cg-font-size-base);
}

p {
    margin: 0;
    color: var(--cg-text-soft);
    font-size: var(--cg-font-size-base);
    line-height: var(--cg-line-height-body);
}

strong,
b {
    font-weight: 700;
}

small {
    font-size: var(--cg-font-size-sm);
}

::selection {
    background: var(--cg-brass-200);
    color: var(--cg-navy-950);
}


/*==============================================================
05. GLOBAL LAYOUT
==============================================================*/

.cg-container,
.cg-container-wide,
.cg-container-narrow {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: var(--cg-page-padding);
    padding-left: var(--cg-page-padding);
}

.cg-container {
    max-width: var(--cg-container-xl);
}

.cg-container-wide {
    max-width: var(--cg-container-wide);
}

.cg-container-narrow {
    max-width: var(--cg-container-md);
}

.cg-grid {
    display: grid;
}

.cg-flex {
    display: flex;
}

.cg-flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cg-flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cg-stack {
    display: flex;
    flex-direction: column;
}

.cg-main {
    position: relative;
    isolation: isolate;
}


/*==============================================================
06. SECTION STRUCTURE
==============================================================*/

.cg-section {
    position: relative;
    width: 100%;
    padding-top: var(--cg-space-24);
    padding-bottom: var(--cg-space-24);
}

.cg-section--compact {
    padding-top: var(--cg-space-16);
    padding-bottom: var(--cg-space-16);
}

.cg-section--large {
    padding-top: var(--cg-space-32);
    padding-bottom: var(--cg-space-32);
}

.cg-section--white {
    background: var(--cg-white);
}

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

.cg-section--surface {
    background: var(--cg-surface);
}

.cg-section--navy {
    background: var(--cg-navy-900);
    color: var(--cg-white);
}

.cg-section--blue {
    background: var(--cg-navy-700);
    color: var(--cg-white);
}

.cg-section--navy h1,
.cg-section--navy h2,
.cg-section--navy h3,
.cg-section--navy h4,
.cg-section--navy h5,
.cg-section--navy h6,
.cg-section--blue h1,
.cg-section--blue h2,
.cg-section--blue h3,
.cg-section--blue h4,
.cg-section--blue h5,
.cg-section--blue h6 {
    color: var(--cg-white);
}

.cg-section--navy p,
.cg-section--blue p {
    color: rgba(255, 255, 255, 0.74);
}

.cg-section-header {
    max-width: 760px;
    margin-bottom: var(--cg-space-14);
}

.cg-section-header--center {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.cg-section-header p {
    max-width: 660px;
    margin-top: var(--cg-space-5);
    font-size: var(--cg-font-size-md);
}

.cg-section-header--center p {
    margin-right: auto;
    margin-left: auto;
}


/*==============================================================
07. TYPOGRAPHY COMPONENTS
==============================================================*/

.cg-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--cg-space-3);
    margin-bottom: var(--cg-space-4);
    color: var(--cg-brass-500);
    font-family: var(--cg-font-heading);
    font-size: var(--cg-font-size-xs);
    font-weight: 600;
    line-height: 1;
    letter-spacing: var(--cg-letter-spacing-label);
    text-transform: uppercase;
}

.cg-eyebrow::before {
    width: 34px;
    height: 1px;
    background: currentColor;
    content: "";
}

.cg-eyebrow--center::after {
    width: 34px;
    height: 1px;
    background: currentColor;
    content: "";
}

.cg-display {
    font-family: var(--cg-font-heading);
    font-size: clamp(3rem, 7vw, 6.75rem);
    font-weight: 600;
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.cg-heading-accent {
    color: var(--cg-brass-500);
}

.cg-heading-light {
    color: var(--cg-white);
}

.cg-lead {
    color: var(--cg-text-soft);
    font-size: clamp(1.05rem, 1.6vw, 1.25rem);
    line-height: 1.7;
}

.cg-caption {
    color: var(--cg-muted);
    font-size: var(--cg-font-size-sm);
    line-height: 1.55;
}

.cg-label {
    color: var(--cg-muted);
    font-family: var(--cg-font-heading);
    font-size: var(--cg-font-size-xs);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}


/*==============================================================
08. BUTTONS AND LINKS
==============================================================*/

.cg-btn {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: var(--cg-space-3);
    padding: 0 var(--cg-space-6);
    border: 1px solid transparent;
    border-radius: var(--cg-radius-sm);
    cursor: pointer;
    font-family: var(--cg-font-body);
    font-size: var(--cg-font-size-sm);
    font-weight: 600;
    line-height: 1;
    transition:
        color var(--cg-transition-base),
        background-color var(--cg-transition-base),
        border-color var(--cg-transition-base),
        transform var(--cg-transition-base),
        box-shadow var(--cg-transition-base);
}

.cg-btn:hover {
    transform: translateY(-2px);
}

.cg-btn:active {
    transform: translateY(0);
}

.cg-btn__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1em;
    transition: transform var(--cg-transition-base);
}

.cg-btn:hover .cg-btn__icon {
    transform: translateX(4px);
}


/* Primary brass button */

.cg-btn--primary {
    background: var(--cg-brass-500);
    color: var(--cg-navy-950);
    box-shadow: 0 10px 25px rgba(192, 138, 43, 0.18);
}

.cg-btn--primary:hover {
    background: var(--cg-brass-600);
    color: var(--cg-white);
    box-shadow: 0 14px 32px rgba(168, 116, 31, 0.24);
}


/* Navy button */

.cg-btn--navy {
    background: var(--cg-navy-900);
    color: var(--cg-white);
}

.cg-btn--navy:hover {
    background: var(--cg-navy-700);
    color: var(--cg-white);
}


/* Outline button for light backgrounds */

.cg-btn--outline {
    border-color: rgba(8, 28, 54, 0.25);
    background: transparent;
    color: var(--cg-navy-900);
}

.cg-btn--outline:hover {
    border-color: var(--cg-brass-500);
    background: var(--cg-brass-100);
    color: var(--cg-navy-900);
}


/* Outline button for dark backgrounds */

.cg-btn--outline-light {
    border-color: rgba(255, 255, 255, 0.45);
    background: transparent;
    color: var(--cg-white);
}

.cg-btn--outline-light:hover {
    border-color: var(--cg-brass-400);
    background: rgba(192, 138, 43, 0.1);
    color: var(--cg-brass-300);
}


/* Text link */

.cg-link {
    display: inline-flex;
    align-items: center;
    gap: var(--cg-space-2);
    color: var(--cg-brass-600);
    font-size: var(--cg-font-size-sm);
    font-weight: 600;
    transition:
        color var(--cg-transition-fast),
        gap var(--cg-transition-base);
}

.cg-link:hover {
    gap: var(--cg-space-3);
    color: var(--cg-brass-700);
}


/*==============================================================
09. FORM CONTROLS
==============================================================*/

.cg-field {
    display: flex;
    flex-direction: column;
    gap: var(--cg-space-2);
}

.cg-field label {
    color: var(--cg-grey-600);
    font-size: var(--cg-font-size-xs);
    font-weight: 600;
}

.cg-input,
.cg-select,
.cg-textarea {
    width: 100%;
    border: 1px solid var(--cg-border);
    border-radius: var(--cg-radius-sm);
    outline: none;
    background: var(--cg-white);
    color: var(--cg-text);
    font-family: var(--cg-font-body);
    font-size: var(--cg-font-size-sm);
    transition:
        border-color var(--cg-transition-fast),
        box-shadow var(--cg-transition-fast),
        background-color var(--cg-transition-fast);
}

.cg-input,
.cg-select {
    min-height: 52px;
    padding: 0 var(--cg-space-4);
}

.cg-textarea {
    min-height: 140px;
    padding: var(--cg-space-4);
    resize: vertical;
}

.cg-input::placeholder,
.cg-textarea::placeholder {
    color: var(--cg-grey-400);
}

.cg-input:hover,
.cg-select:hover,
.cg-textarea:hover {
    border-color: rgba(8, 28, 54, 0.22);
}

.cg-input:focus,
.cg-select:focus,
.cg-textarea:focus {
    border-color: var(--cg-brass-500);
    box-shadow: var(--cg-shadow-focus);
}


/*==============================================================
10. SURFACES AND CARDS
==============================================================*/

.cg-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--cg-border-light);
    border-radius: var(--cg-radius-lg);
    background: var(--cg-white);
    box-shadow: var(--cg-shadow-sm);
    transition:
        transform var(--cg-transition-slow),
        border-color var(--cg-transition-base),
        box-shadow var(--cg-transition-slow);
}

.cg-card:hover {
    border-color: rgba(192, 138, 43, 0.28);
    transform: translateY(-5px);
    box-shadow: var(--cg-shadow-md);
}

.cg-card__body {
    padding: var(--cg-space-8);
}

.cg-card--flat {
    box-shadow: none;
}

.cg-card--dark {
    border-color: rgba(255, 255, 255, 0.1);
    background: var(--cg-navy-850);
    color: var(--cg-white);
}

.cg-card--dark h3,
.cg-card--dark h4 {
    color: var(--cg-white);
}

.cg-card--dark p {
    color: rgba(255, 255, 255, 0.7);
}

.cg-panel {
    border: 1px solid var(--cg-border-light);
    border-radius: var(--cg-radius-xl);
    background: var(--cg-white);
    box-shadow: var(--cg-shadow-md);
}


/*==============================================================
11. ICON COMPONENTS
==============================================================*/

.cg-icon {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    color: var(--cg-navy-800);
}

.cg-icon--sm {
    width: 36px;
    height: 36px;
}

.cg-icon--md {
    width: 48px;
    height: 48px;
}

.cg-icon--lg {
    width: 64px;
    height: 64px;
}

.cg-icon--circle {
    border-radius: 50%;
    background: var(--cg-brass-100);
    color: var(--cg-brass-600);
}

.cg-icon svg {
    width: 55%;
    height: 55%;
    stroke: currentColor;
    stroke-width: 1.7;
    fill: none;
}


/*==============================================================
12. DIVIDERS AND DECORATIVE ELEMENTS
==============================================================*/

.cg-divider {
    width: 100%;
    height: 1px;
    border: 0;
    background: var(--cg-border-light);
}

.cg-divider--brass {
    background: rgba(192, 138, 43, 0.35);
}

.cg-brass-line {
    display: block;
    width: 48px;
    height: 2px;
    background: var(--cg-brass-500);
}

.cg-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cg-brass-500);
}


/*==============================================================
13. UTILITY CLASSES
==============================================================*/

.cg-text-center {
    text-align: center;
}

.cg-text-left {
    text-align: left;
}

.cg-text-right {
    text-align: right;
}

.cg-text-white {
    color: var(--cg-white) !important;
}

.cg-text-muted {
    color: var(--cg-muted) !important;
}

.cg-text-brass {
    color: var(--cg-brass-500) !important;
}

.cg-bg-white {
    background: var(--cg-white) !important;
}

.cg-bg-off-white {
    background: var(--cg-off-white) !important;
}

.cg-bg-surface {
    background: var(--cg-surface) !important;
}

.cg-bg-navy {
    background: var(--cg-navy-900) !important;
}

.cg-bg-blue {
    background: var(--cg-navy-700) !important;
}

.cg-full-width {
    width: 100%;
}

.cg-hidden {
    display: none !important;
}

.cg-overflow-hidden {
    overflow: hidden;
}

.cg-position-relative {
    position: relative;
}

.cg-mx-auto {
    margin-right: auto;
    margin-left: auto;
}

.cg-mt-4 {
    margin-top: var(--cg-space-4);
}

.cg-mt-6 {
    margin-top: var(--cg-space-6);
}

.cg-mt-8 {
    margin-top: var(--cg-space-8);
}

.cg-mb-4 {
    margin-bottom: var(--cg-space-4);
}

.cg-mb-6 {
    margin-bottom: var(--cg-space-6);
}

.cg-mb-8 {
    margin-bottom: var(--cg-space-8);
}


/*==============================================================
14. ACCESSIBILITY
==============================================================*/

:focus-visible {
    outline: 3px solid var(--cg-brass-400);
    outline-offset: 3px;
}

.cg-skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: var(--cg-z-modal);
    padding: 12px 18px;
    border-radius: var(--cg-radius-sm);
    background: var(--cg-brass-500);
    color: var(--cg-navy-950);
    font-weight: 700;
    transform: translateY(-150%);
    transition: transform var(--cg-transition-fast);
}

.cg-skip-link:focus {
    transform: translateY(0);
}

.cg-visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}


/*==============================================================
15. ANIMATION FOUNDATIONS
==============================================================*/

.cg-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 700ms ease,
        transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.cg-fade-in {
    animation: cgFadeIn 700ms ease both;
}

.cg-slide-up {
    animation: cgSlideUp 800ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes cgFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes cgSlideUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/*==============================================================
16. RESPONSIVE FOUNDATION
==============================================================*/

@media (max-width: 1199.98px) {

    :root {
        --cg-page-padding: 28px;
    }

    .cg-section {
        padding-top: var(--cg-space-20);
        padding-bottom: var(--cg-space-20);
    }

    .cg-section--large {
        padding-top: var(--cg-space-24);
        padding-bottom: var(--cg-space-24);
    }
}


@media (max-width: 991.98px) {

    :root {
        --cg-page-padding: 24px;
    }

    .cg-section {
        padding-top: var(--cg-space-16);
        padding-bottom: var(--cg-space-16);
    }

    .cg-section--large {
        padding-top: var(--cg-space-20);
        padding-bottom: var(--cg-space-20);
    }

    .cg-section-header {
        margin-bottom: var(--cg-space-10);
    }
}


@media (max-width: 767.98px) {

    :root {
        --cg-page-padding: 20px;
    }

    body {
        font-size: 0.975rem;
    }

    .cg-section {
        padding-top: var(--cg-space-14);
        padding-bottom: var(--cg-space-14);
    }

    .cg-section--compact {
        padding-top: var(--cg-space-10);
        padding-bottom: var(--cg-space-10);
    }

    .cg-section--large {
        padding-top: var(--cg-space-16);
        padding-bottom: var(--cg-space-16);
    }

    .cg-section-header p {
        font-size: var(--cg-font-size-base);
    }

    .cg-btn {
        min-height: 50px;
        padding-right: var(--cg-space-5);
        padding-left: var(--cg-space-5);
    }

    .cg-card__body {
        padding: var(--cg-space-6);
    }
}


@media (max-width: 575.98px) {

    :root {
        --cg-page-padding: 16px;
    }

    .cg-section {
        padding-top: var(--cg-space-12);
        padding-bottom: var(--cg-space-12);
    }

    .cg-btn {
        width: 100%;
    }

    .cg-panel {
        border-radius: var(--cg-radius-lg);
    }
}


/*==============================================================
REDUCED MOTION
Respect visitors who have disabled animations.
==============================================================*/

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

    html {
        scroll-behavior: auto;
    }

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

    .cg-reveal {
        opacity: 1;
        transform: none;
    }
}

/*====================================================================
CHAPTER 1
NAVIGATION, HERO AND IMMEDIATE ACTIONS
====================================================================*/


/*====================================================================
17. SITE HEADER
====================================================================*/

.cg-header {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: var(--cg-z-header);
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(6, 22, 42, 0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.cg-header__inner {
    display: grid;
    min-height: 78px;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: clamp(28px, 4vw, 70px);
}


/* Header logo */

.cg-header__logo {
    display: inline-flex;
    width: 190px;
    flex: 0 0 auto;
    align-items: center;
    transition: transform var(--cg-transition-fast);
}

.cg-header__logo img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 52px;
    object-fit: contain;
    object-position: left center;
}

.cg-header__logo:hover {
    transform: translateY(-1px);
}


/* Desktop navigation */

.cg-header__nav {
    min-width: 0;
}

.cg-header__menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(20px, 2.25vw, 38px);
}

.cg-header__menu-item {
    position: relative;
}

.cg-header__menu-item > a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 27px 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.91rem;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
    transition:
        color var(--cg-transition-fast),
        opacity var(--cg-transition-fast);
}

.cg-header__menu-item > a:hover {
    color: var(--cg-brass-300);
}

.cg-header__menu-item > a i {
    font-size: 0.7rem;
    transition: transform var(--cg-transition-base);
}

.cg-header__menu-item--dropdown:hover > a i {
    transform: rotate(180deg);
}


/* Dropdown navigation */

.cg-header__dropdown {
    position: absolute;
    top: calc(100% - 10px);
    left: -24px;
    width: 250px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--cg-radius-md);
    visibility: hidden;
    opacity: 0;
    background: var(--cg-navy-900);
    box-shadow: var(--cg-shadow-lg);
    transform: translateY(12px);
    transition:
        opacity var(--cg-transition-base),
        visibility var(--cg-transition-base),
        transform var(--cg-transition-base);
}

.cg-header__menu-item--dropdown:hover .cg-header__dropdown,
.cg-header__menu-item--dropdown:focus-within .cg-header__dropdown {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.cg-header__dropdown a {
    display: block;
    padding: 12px 14px;
    border-radius: var(--cg-radius-sm);
    color: rgba(255, 255, 255, 0.76);
    font-size: var(--cg-font-size-sm);
    transition:
        color var(--cg-transition-fast),
        background-color var(--cg-transition-fast),
        transform var(--cg-transition-fast);
}

.cg-header__dropdown a:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--cg-brass-300);
    transform: translateX(3px);
}


/* Header actions */

.cg-header__actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.cg-btn--header {
    min-height: 50px;
    padding-right: 22px;
    padding-left: 22px;
    border-color: rgba(192, 138, 43, 0.85);
    background: transparent;
    color: var(--cg-brass-300);
}

.cg-btn--header:hover {
    border-color: var(--cg-brass-500);
    background: var(--cg-brass-500);
    color: var(--cg-navy-950);
}


/* Mobile menu button */

.cg-header__menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--cg-radius-sm);
    background: transparent;
}

.cg-header__menu-toggle span {
    display: block;
    width: 21px;
    height: 2px;
    border-radius: var(--cg-radius-pill);
    background: var(--cg-white);
    transition:
        transform var(--cg-transition-base),
        opacity var(--cg-transition-fast);
}


/* Sticky header */

.cg-header.is-sticky {
    position: fixed;

    /*
    Solid colour prevents underlying sections from
    creating different-coloured areas in the header.
    */
    background: rgb(6, 22, 42);

    backdrop-filter: none;
    -webkit-backdrop-filter: none;

    box-shadow:
        0 12px 35px rgba(6, 22, 42, 0.18);

    animation: cgHeaderSlideDown 380ms ease both;
}

@keyframes cgHeaderSlideDown {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/*====================================================================
18. HERO
====================================================================*/

.cg-hero {
    position: relative;
    min-height: 680px;
    overflow: hidden;
    background: var(--cg-navy-900);
    isolation: isolate;
}


/* Hero photograph */

.cg-hero__background {
    position: absolute;
    z-index: -4;
    inset: 0;

    background-image: url("../images/air/Slider.jpg");
    background-repeat: no-repeat;

    /*
    Shifts the visual focus slightly away from the headline.
    */
    background-position: 56% center;
    background-size: cover;

    transform: scale(1.015);
}


/* Hero image overlay */

.cg-hero__overlay {
    position: absolute;
    z-index: -3;
    inset: 0;

    /*
    Stronger navy behind the text, while leaving the
    port and sunset visible on the right.
    */
    background:
        linear-gradient(
            90deg,
            rgba(5, 19, 38, 0.99) 0%,
            rgba(6, 22, 42, 0.96) 24%,
            rgba(8, 28, 54, 0.72) 49%,
            rgba(8, 28, 54, 0.20) 76%,
            rgba(8, 28, 54, 0.07) 100%
        );
}

.cg-hero__texture {
    position: absolute;
    z-index: -2;
    inset: 0;

    opacity: 0.13;

    background:
        radial-gradient(
            circle at 20% 45%,
            rgba(61, 102, 132, 0.6),
            transparent 40%
        );
}


/* Hero layout */

.cg-hero__inner {
    display: flex;
    min-height: 650px;
    align-items: flex-start;

    padding-top: 132px;
    padding-bottom: 150px;
}

.cg-hero__content {
    width: min(760px, 58%);
    padding-left: 4px;
}


/* Hero eyebrow */

.cg-hero__eyebrow {
    display: flex;
    align-items: center;
    gap: 18px;

    margin-bottom: 22px;

    color: var(--cg-brass-400);

    font-family: var(--cg-font-heading);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.cg-hero__eyebrow-line {
    display: block;
    width: 48px;
    height: 2px;
    background: var(--cg-brass-500);
}


/* Hero title */

.cg-hero__title {
    max-width: 760px;

    color: var(--cg-white);

    font-size: clamp(2.8rem, 3.8vw, 4.35rem);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.cg-hero__title span {
    display: block;
    color: var(--cg-brass-500);
}


/* Hero supporting copy */

.cg-hero__description {
    max-width: 520px;

    margin-top: 18px;
    margin-bottom: 0;

    color: rgba(255, 255, 255, 0.9);

    font-size: 1.12rem;
    line-height: 1.65;
}


/* Hero buttons */

.cg-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;

    margin-top: 34px;
    margin-bottom: 18px;
}

.cg-hero__button {
    min-width: 190px;
}


/* Old curve element intentionally disabled */

.cg-hero__curve {
    display: none;
}


/*====================================================================
19. IMMEDIATE ACTIONS
====================================================================*/

.cg-actions {
    position: relative;
    z-index: 20;

    /*
    Reduced slightly so more of the proof band appears
    in the initial viewport.
    */
    padding-bottom: 70px;

    background: var(--cg-off-white);
    isolation: isolate;
}


/* Shallow diagonal transition */

/*
Hero base extension.

This does not move the panel or change the page layout.
It simply extends the navy hero visually into the
Immediate Actions section.
*/

.cg-actions::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 0;

    width: 100%;
    height: 62px;

    /*
    Continue the bottom of the actual hero image,
    then apply the same navy overlay above it.
    */
    background:
        linear-gradient(
            90deg,
            rgba(5, 19, 38, 0.99) 0%,
            rgba(6, 22, 42, 0.96) 24%,
            rgba(8, 28, 54, 0.72) 49%,
            rgba(8, 28, 54, 0.20) 76%,
            rgba(8, 28, 54, 0.07) 100%
        ),
        url("../images/air/Slider.jpg");

    /*
    Match the hero's image dimensions and show its bottom edge.
    */
    background-repeat: no-repeat;
    background-position:
        center,
        56% bottom;
    background-size:
        100% 100%,
        100% 680px;

    content: "";
    pointer-events: none;

    /*
    Perfectly symmetrical diagonals.
    */
    clip-path: polygon(
        0 0,
        100% 0,
        100% 30px,
        92% 54px,
        8% 54px,
        0 30px
    );
}


/* Keep panel above transition */

.cg-actions > .cg-container-wide {
    position: relative;
    z-index: 2;
}


/* Immediate-actions panel */

.cg-actions__panel {
    position: relative;

    /*
    Increased overlap makes the panel feel more connected
    to the hero and moves its lower edge upward.
    */
    margin-top: -158px;

    /*
    Tighter vertical and horizontal padding.
    */
    padding: 22px 26px;

    border: 1px solid rgba(8, 28, 54, 0.06);
    border-radius: 22px;

    background: rgba(255, 255, 255, 0.99);

    /*
    Softer, more controlled shadow.
    */
    box-shadow: 0 2px 8px rgba(8, 28, 54, 0.035);
}


/* Panel heading */

.cg-actions__header {
    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 12px;

    text-align: center;
}

.cg-actions__header h2 {
    color: var(--cg-navy-900);

    font-family: var(--cg-font-heading);
    font-size: clamp(1.22rem, 1.6vw, 1.48rem);
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: -0.02em;
}


/* Action tabs */

.cg-actions__tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    overflow: hidden;

    border: 1px solid var(--cg-border-light);
    border-radius: 13px 13px 0 0;

    background: var(--cg-off-white);
}

.cg-actions__tab {
    position: relative;

    display: flex;
    min-height: 54px;

    cursor: pointer;

    align-items: center;
    justify-content: center;
    gap: 10px;

    border-right: 1px solid var(--cg-border-light);

    background: transparent;
    color: var(--cg-navy-800);

    font-size: var(--cg-font-size-sm);
    font-weight: 500;

    transition:
        color var(--cg-transition-fast),
        background-color var(--cg-transition-fast);
}

.cg-actions__tab:last-child {
    border-right: 0;
}

.cg-actions__tab i {
    color: var(--cg-navy-600);
    font-size: 1.15rem;
    transition: color var(--cg-transition-fast);
}

.cg-actions__tab::after {
    position: absolute;
    right: 14px;
    bottom: 0;
    left: 14px;

    height: 2px;

    opacity: 0;
    background: var(--cg-brass-500);

    content: "";
    transform: scaleX(0);

    transition:
        opacity var(--cg-transition-base),
        transform var(--cg-transition-base);
}

.cg-actions__tab:hover,
.cg-actions__tab.is-active {
    background: var(--cg-white);
    color: var(--cg-navy-950);
}

.cg-actions__tab.is-active i {
    color: var(--cg-brass-500);
}

.cg-actions__tab.is-active::after {
    opacity: 1;
    transform: scaleX(1);
}


/* Tab content */

.cg-actions__content {
    padding: 18px 16px 0;

    border: 1px solid var(--cg-border-light);
    border-top: 0;
    border-radius: 0 0 13px 13px;

    background: var(--cg-white);
}

.cg-actions__content:not(.is-active) {
    display: none;
}


/* Forms */

.cg-actions__form {
    display: grid;
    align-items: end;
    gap: 12px;
}

.cg-actions__form--quote {
    grid-template-columns:
        minmax(150px, 1fr)
        minmax(150px, 1fr)
        minmax(150px, 1fr)
        minmax(150px, 1fr)
        auto;
}

.cg-actions__form--compact {
    max-width: 800px;
    grid-template-columns: minmax(0, 1fr) auto;
    margin-right: auto;
    margin-left: auto;
}

.cg-actions__form--three {
    max-width: 980px;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr)
        auto;

    margin-right: auto;
    margin-left: auto;
}

.cg-actions__submit {

    background: #F8FBF8;
    border: 1px solid #E7EEE7;
    color: #355548;

    box-shadow: none;

    transition:
        background .25s ease,
        border-color .25s ease,
        color .25s ease;
}

.cg-actions__submit:hover {

    background: #FFFFFF;
    border-color: #D4DDD4;
    color: #29463C;

    box-shadow: none;
}


/*====================================================================
20. MOBILE OFFCANVAS NAVIGATION
====================================================================*/

.st__offcanvas__area {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1200;
    width: min(390px, 90vw);
    height: 100%;
    visibility: hidden;
    opacity: 0;
    background: var(--cg-navy-900);
    transform: translateX(100%);
    transition:
        transform var(--cg-transition-slow),
        opacity var(--cg-transition-base),
        visibility var(--cg-transition-base);
}

.st__offcanvas__area.cg-offcanvas-open {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
}

.offcanvas__wrapper,
.offcanvas__content {
    height: 100%;
}

.offcanvas__content {
    padding: 30px;
    overflow-y: auto;
}

.offcanvas__logo img {
    width: 190px;
}

.offcanvas__close button {
    background: transparent;
}

.offcanvas__overlay {
    position: fixed;
    z-index: 1190;
    inset: 0;
    visibility: hidden;
    opacity: 0;
    background: rgba(6, 22, 42, 0.7);
    backdrop-filter: blur(4px);
    transition:
        opacity var(--cg-transition-base),
        visibility var(--cg-transition-base);
}

.offcanvas__overlay.cg-overlay-open {
    visibility: visible;
    opacity: 1;
}

body.cg-menu-open {
    overflow: hidden;
}


/*====================================================================
21. CHAPTER 1 RESPONSIVE
====================================================================*/


/* Large desktop */

@media (max-width: 1299.98px) {

    .cg-header__inner {
        gap: 30px;
    }

    .cg-header__menu {
        gap: 22px;
    }

    .cg-header__menu-item > a {
        font-size: 0.84rem;
    }

    .cg-btn--header {
        padding-right: 18px;
        padding-left: 18px;
    }

    .cg-hero__background {
        background-position: 58% center;
    }
}


/* Small desktop and landscape tablet */

@media (max-width: 1099.98px) {

    .cg-header__nav {
        display: none;
    }

    .cg-header__inner {
        grid-template-columns: auto 1fr;
    }

    .cg-header__actions {
        justify-self: end;
    }

    .cg-header__menu-toggle {
        display: flex;
    }

    .cg-hero__content {
        width: min(680px, 65%);
    }

    .cg-actions__panel {
        padding: 22px 24px;
    }

    .cg-actions__form--quote {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cg-actions__form--quote .cg-actions__submit {
        grid-column: span 2;
    }
}


/* Tablet */

@media (max-width: 991.98px) {

    .cg-header__inner {
        min-height: 76px;
    }

    .cg-header__logo {
        width: 180px;
    }

    .cg-btn--header {
        display: none;
    }

    .cg-hero {
        min-height: 660px;
    }

    .cg-hero__inner {
        min-height: 660px;
        padding-top: 100px;
        padding-bottom: 130px;
    }

    .cg-hero__content {
        width: min(650px, 76%);
    }

    .cg-hero__background {
        background-position: 62% center;
    }

    .cg-hero__overlay {
        background:
            linear-gradient(
                90deg,
                rgba(5, 19, 38, 0.99) 0%,
                rgba(8, 28, 54, 0.92) 45%,
                rgba(8, 28, 54, 0.36) 100%
            );
    }

    .cg-actions::before {
    top: -24px;
    height: 54px;

    clip-path: polygon(
        0 0,
        8% 16px,
        92% 16px,
        100% 0,
        100% 100%,
        0 100%
    );
}

    .cg-actions__panel {
        margin-top: -118px;
        padding: 22px 24px;
    }

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

    .cg-actions__tab:nth-child(2) {
        border-right: 0;
    }

    .cg-actions__tab:nth-child(-n + 2) {
        border-bottom: 1px solid var(--cg-border-light);
    }
}


/* Mobile */

@media (max-width: 767.98px) {

    .cg-header__inner {
        min-height: 72px;
    }

    .cg-header__logo {
        width: 165px;
    }

    .cg-header__menu-toggle {
        width: 42px;
        height: 42px;
    }

    .cg-hero {
        min-height: 660px;
    }

    .cg-hero__background {
        background-position: 66% center;
    }

    .cg-hero__overlay {
        background:
            linear-gradient(
                90deg,
                rgba(5, 19, 38, 0.99) 0%,
                rgba(8, 28, 54, 0.93) 57%,
                rgba(8, 28, 54, 0.6) 100%
            );
    }

    .cg-hero__inner {
        min-height: 660px;
        padding-top: 102px;
        padding-bottom: 148px;
    }

    .cg-hero__content {
        width: 100%;
        max-width: 580px;
    }

    .cg-hero__title {
        font-size: clamp(3rem, 11vw, 4.5rem);
    }

    .cg-hero__description {
        max-width: 500px;
        font-size: 1rem;
    }

    .cg-actions {
        padding-bottom: 54px;
    }

    .cg-actions::before {
        top: -18px;
        width: 100%;
        height: 42px;

        clip-path: polygon(
            0 0,
            13% 12px,
            87% 12px,
            100% 0,
            100% 100%,
            0 100%
        );
    }

    .cg-actions__panel {
        margin-top: -96px;
        padding: 20px;
        border-radius: 18px;
    }

    .cg-actions__header {
        margin-bottom: 12px;
    }

    .cg-actions__tabs {
        grid-template-columns: 1fr;
    }

    .cg-actions__tab {
        min-height: 54px;

        justify-content: flex-start;

        padding-right: 18px;
        padding-left: 18px;

        border-right: 0;
        border-bottom: 1px solid var(--cg-border-light);
    }

    .cg-actions__tab:last-child {
        border-bottom: 0;
    }

    .cg-actions__tab::after {
        top: 12px;
        right: auto;
        bottom: 12px;
        left: 0;

        width: 2px;
        height: auto;

        transform: scaleY(0);
    }

    .cg-actions__tab.is-active::after {
        transform: scaleY(1);
    }

    .cg-actions__content {
        padding: 18px 14px 2px;
    }

    .cg-actions__form--quote,
    .cg-actions__form--compact,
    .cg-actions__form--three {
        grid-template-columns: 1fr;
    }

    .cg-actions__form--quote .cg-actions__submit {
        grid-column: auto;
    }

    .cg-actions__submit {
        width: 100%;
    }
}


/* Small mobile */

@media (max-width: 575.98px) {

    .cg-header__logo {
        width: 148px;
    }

    .cg-hero {
        min-height: 640px;
    }

    .cg-hero__inner {
        min-height: 640px;
        padding-bottom: 160px;
    }

    .cg-hero__eyebrow {
        gap: 12px;
        font-size: 0.69rem;
    }

    .cg-hero__eyebrow-line {
        width: 30px;
    }

    .cg-hero__title {
        font-size: clamp(2.7rem, 13vw, 3.8rem);
    }

    .cg-hero__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .cg-hero__button {
        width: 100%;
    }

    .cg-actions__panel {
        margin-top: -98px;
        padding: 18px 15px;
    }

    .cg-actions__header {
        margin-bottom: 10px;
    }

    .cg-actions__header h2 {
        font-size: 1.2rem;
    }
}

/*====================================================================
PROOF BAND
KEY OPERATING METRICS
====================================================================*/

.cg-proof-band {
    position: relative;
    z-index: 5;
    overflow: hidden;
    border-top: 1px solid rgba(8, 28, 54, 0.08);
    border-bottom: 1px solid rgba(8, 28, 54, 0.08);
    background: #FAFBFC;
}


/* Soft fade at the left and right edges */

.cg-proof-band::before,
.cg-proof-band::after {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 3;
    width: clamp(40px, 8vw, 150px);
    content: "";
    pointer-events: none;
}

.cg-proof-band::before {
    left: 0;
    background:
        linear-gradient(
            90deg,
            #f5f7f9 0%,
            rgba(245, 247, 249, 0) 100%
        );
}

.cg-proof-band::after {
    right: 0;
    background:
        linear-gradient(
            270deg,
            #f5f7f9 0%,
            rgba(245, 247, 249, 0) 100%
        );
}


/* Visible ticker area */

.cg-proof-band__viewport {
    width: 100%;
    overflow: hidden;
}


/* Moving conveyor track */

.cg-proof-band__track {
    display: flex;
    width: max-content;
    animation: cgProofBandMove 42s linear infinite;
    will-change: transform;
}


/* Pause when the user points at the band */

.cg-proof-band:hover .cg-proof-band__track {
    animation-play-state: paused;
}


/* Each complete row of metrics */

.cg-proof-band__group {
    display: flex;
    flex-shrink: 0;
    align-items: center;
}


/* Individual metric */

.cg-proof-band__item {
    display: grid;
    min-width: 290px;
    grid-template-columns: auto auto;
    align-items: baseline;
    justify-content: center;
    gap: 12px;
    padding: 14px 28px;
    white-space: nowrap;
}


/* Main number */

.cg-proof-band__item strong {
    color: var(--cg-navy-900);
    font-family: var(--cg-font-heading);
    font-size: clamp(1.45rem, 1.9vw, 1.85rem);
    font-weight: 650;
    line-height: 1;
    letter-spacing: -0.035em;
}


/* Metric label */

.cg-proof-band__item span {
    color: rgba(8, 28, 54, .72);
    font-family: var(--cg-font-body);
    font-size: .88rem;
    font-weight: 500;
    letter-spacing: .01em;
}

/* Hover effect */
.cg-proof-band__item:hover strong {
    color: var(--cg-brass-500);
}

/* Small brass divider */

.cg-proof-band__separator {
    width: 4px;
    height: 4px;
    opacity: 0.75;
}


/* Continuous leftward movement */

@keyframes cgProofBandMove {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}


/*====================================================================
PROOF BAND RESPONSIVE
====================================================================*/

@media (max-width: 767.98px) {

    .cg-proof-band__track {
        animation-duration: 36s;
    }

    .cg-proof-band__item {
        min-width: 215px;
        gap: 10px;
        padding: 17px 24px;
    }

    .cg-proof-band__item strong {
        font-size: 1.35rem;
    }

    .cg-proof-band__item span {
        font-size: 0.76rem;
    }
}


@media (max-width: 575.98px) {

    .cg-proof-band__item {
        min-width: 200px;
        padding-right: 20px;
        padding-left: 20px;
    }
}


/* Respect reduced-motion accessibility settings */

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

    .cg-proof-band__track {
        animation: none;
    }

    .cg-proof-band__viewport {
        overflow-x: auto;
        scrollbar-width: thin;
    }
}
/*====================================================================
CHAPTER 2
INTEGRATED SOLUTIONS EXPLORER
====================================================================*/


/*====================================================================
22. SOLUTIONS EXPLORER SECTION
====================================================================*/

.cg-solutions-explorer {
    position: relative;
    overflow: hidden;

    padding-top: clamp(48px, 4.5vw, 68px);
    padding-bottom: clamp(24px, 2.2vw, 34px);

    background:
        radial-gradient(
            circle at 82% 18%,
            rgba(255, 255, 255, 0.48),
            transparent 38%
        ),
        #e8eef2;

    color: var(--cg-navy-900);
}


/* Very subtle architectural background texture */

.cg-solutions-explorer::before {
    position: absolute;
    inset: 0;

    opacity: 0.5;

    background-image:
        linear-gradient(
            rgba(8, 28, 54, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(8, 28, 54, 0.035) 1px,
            transparent 1px
        );

    background-size: 48px 48px;

    content: "";
    pointer-events: none;
}


/* Keep content above decorative texture */

.cg-solutions-explorer > .cg-container-wide {
    position: relative;
    z-index: 2;
}

/*====================================================================
23. SECTION EYEBROW
====================================================================*/

.cg-solutions-explorer__eyebrow {
    display: flex;
    align-items: center;
    gap: 13px;

    margin-bottom: 18px;

    color: var(--cg-brass-600);

    font-family: var(--cg-font-heading);
    font-size: 0.72rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.cg-solutions-explorer__eyebrow span {
    display: block;

    width: 36px;
    height: 1px;

    background: currentColor;
}


/*====================================================================
24. MAIN EXPLORER SHELL
====================================================================*/

.cg-solutions-explorer__shell {
    display: grid;

    height: 540px;
    min-height: 0;

    overflow: hidden;

    grid-template-columns:
        minmax(280px, 0.78fr)
        minmax(0, 2.22fr);

    border: 1px solid rgba(6, 22, 42, 0.22);
    border-radius: 24px;

    background: var(--cg-navy-950);
}


/*====================================================================
25. LEFT SOLUTION NAVIGATION
====================================================================*/

.cg-solutions-explorer__nav {
    position: relative;
    z-index: 3;

    display: flex;
    flex-direction: column;

    padding: 14px 26px;

    border-right: 1px solid rgba(255, 255, 255, 0.1);

    background:
        linear-gradient(
            180deg,
            rgba(6, 22, 42, 1) 0%,
            rgba(6, 22, 42, 0.98) 48%,
            rgba(8, 28, 54, 0.98) 100%
        );
}


/* Individual solution button */

.cg-solutions-explorer__tab {
    position: relative;

    display: grid;
    width: 100%;

    min-height: 96px;
    flex: 1 1 0;

    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    gap: 16px;

    padding: 14px 4px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.1);

    cursor: pointer;

    background: transparent;
    color: rgba(255, 255, 255, 0.52);

    text-align: left;

    transition:
        flex-grow var(--cg-transition-slow),
        min-height var(--cg-transition-slow),
        color var(--cg-transition-base),
        padding var(--cg-transition-slow);
}

.cg-solutions-explorer__tab:last-child {
    border-bottom: 0;
}


/* Animated brass marker */

.cg-solutions-explorer__tab::before {
    position: absolute;
    top: 50%;
    left: -26px;

    width: 3px;
    height: 0;

    border-radius: var(--cg-radius-pill);

    opacity: 0;

    background: var(--cg-brass-400);

    content: "";

    transform: translateY(-50%);

    transition:
        height var(--cg-transition-slow),
        opacity var(--cg-transition-base);
}


/* Number */

.cg-solutions-explorer__index {
    color: rgba(255, 255, 255, 0.4);

    font-family: var(--cg-font-heading);
    font-size: 0.82rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.04em;

    transition:
        color var(--cg-transition-base),
        font-size var(--cg-transition-slow);
}


/* Copy wrapper */

.cg-solutions-explorer__tab-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 5px;
}


/* Service name */

.cg-solutions-explorer__tab-copy strong {
    color: inherit;

    font-family: var(--cg-font-heading);
    font-size: clamp(0.98rem, 1.1vw, 1.14rem);
    font-weight: 500;
    line-height: 1.18;
    letter-spacing: -0.022em;

    transition:
        font-size var(--cg-transition-slow),
        color var(--cg-transition-base);
}


/* Secondary copy */

.cg-solutions-explorer__tab-copy small {
    max-height: 0;
    overflow: hidden;

    opacity: 0;

    color: rgba(255, 255, 255, 0.56);

    font-size: 0.74rem;
    line-height: 1.4;

    transform: translateY(4px);

    transition:
        max-height var(--cg-transition-slow),
        opacity var(--cg-transition-base),
        transform var(--cg-transition-base);
}


/* Hover and keyboard focus */

.cg-solutions-explorer__tab:hover {
    color: rgba(255, 255, 255, 0.85);
}

.cg-solutions-explorer__tab:focus-visible {
    z-index: 4;

    outline: 2px solid var(--cg-brass-400);
    outline-offset: -2px;
}


/* Active solution */

.cg-solutions-explorer__tab.is-active {
    min-height: 150px;
    flex-grow: 1.5;

    padding-top: 20px;
    padding-bottom: 20px;

    color: var(--cg-white);
}

.cg-solutions-explorer__tab.is-active::before {
    height: 68%;
    opacity: 1;
}

.cg-solutions-explorer__tab.is-active
.cg-solutions-explorer__index {
    color: var(--cg-brass-400);

    font-size: 1.05rem;
}

.cg-solutions-explorer__tab.is-active
.cg-solutions-explorer__tab-copy strong {
    font-size: clamp(1.35rem, 1.65vw, 1.72rem);
}

.cg-solutions-explorer__tab.is-active
.cg-solutions-explorer__tab-copy small {
    max-height: 42px;

    opacity: 1;

    transform: translateY(0);
}


/*====================================================================
26. ACTIVE SOLUTION STAGE
====================================================================*/

.cg-solutions-explorer__stage {
    position: relative;

    min-width: 0;
    height: 540px;
    min-height: 0;

    overflow: hidden;

    background: var(--cg-navy-950);

    isolation: isolate;
}


/* Main changing photograph */

.cg-solutions-explorer__image {
    position: absolute;
    z-index: -3;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    filter:
        saturate(0.92)
        contrast(1.04)
        brightness(0.92);

    transform: scale(1.01);

    transition:
        opacity 280ms ease,
        transform 850ms cubic-bezier(0.22, 1, 0.36, 1);
}


/* Image state while switching */

.cg-solutions-explorer__stage.is-changing
.cg-solutions-explorer__image {
    opacity: 0.18;

    transform: scale(1.03);
}


/* Dark overlay */

.cg-solutions-explorer__veil {
    position: absolute;
    z-index: -2;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(6, 22, 42, 0.96) 0%,
            rgba(6, 22, 42, 0.81) 28%,
            rgba(6, 22, 42, 0.36) 59%,
            rgba(6, 22, 42, 0.07) 100%
        ),
        linear-gradient(
            180deg,
            rgba(6, 22, 42, 0.06) 35%,
            rgba(6, 22, 42, 0.7) 100%
        );
}


/* Active content */

.cg-solutions-explorer__content {
    display: flex;

    width: min(470px, 58%);
    height: 540px;
    min-height: 0;

    justify-content: center;
    flex-direction: column;

    padding:
        clamp(34px, 4vw, 52px)
        clamp(32px, 4vw, 54px);

    transition:
        opacity 220ms ease,
        transform 320ms ease;
}

.cg-solutions-explorer__stage.is-changing
.cg-solutions-explorer__content {
    opacity: 0;

    transform: translateY(7px);
}


/* Icon */

.cg-solutions-explorer__icon {
    display: inline-flex;

    width: 46px;
    height: 46px;

    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    border: 1px solid rgba(207, 160, 78, 0.62);
    border-radius: 50%;

    color: var(--cg-brass-400);

    font-size: 1.12rem;
}


/* Positioning line */

.cg-solutions-explorer__kicker {
    margin-bottom: 10px;

    color: var(--cg-brass-300);

    font-size: 0.7rem;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}


/* Active heading */

.cg-solutions-explorer__content h2 {
    max-width: 450px;

    color: var(--cg-white);

    font-size: clamp(2.15rem, 3.2vw, 3.75rem);
    font-weight: 600;
    line-height: 0.99;
    letter-spacing: -0.047em;
}


/* Active description */

.cg-solutions-explorer__description {
    max-width: 390px;

    margin-top: 18px;

    color: rgba(255, 255, 255, 0.76);

    font-size: clamp(0.94rem, 1vw, 1rem);
    line-height: 1.65;
}


/* Active CTA */

.cg-solutions-explorer__link {
    display: inline-flex;
    width: fit-content;

    align-items: center;
    gap: 9px;

    margin-top: 18px;

    color: var(--cg-brass-300);

    font-size: 0.82rem;
    font-weight: 600;

    transition:
        color var(--cg-transition-fast),
        gap var(--cg-transition-base);
}

.cg-solutions-explorer__link:hover {
    gap: 14px;

    color: var(--cg-white);
}


/*====================================================================
27. EXPLORER FOOTER
====================================================================*/

.cg-solutions-explorer__footer {
    display: flex;

    align-items: center;
    justify-content: space-between;
    gap: 24px;

    padding-top: 17px;
}

.cg-solutions-explorer__footer p {
    color: var(--cg-text-soft);

    font-size: 0.82rem;
    line-height: 1.5;
}

.cg-solutions-explorer__all-link {
    display: inline-flex;

    align-items: center;
    gap: 9px;

    color: var(--cg-navy-900);

    font-size: 0.82rem;
    font-weight: 600;

    transition:
        gap var(--cg-transition-base),
        color var(--cg-transition-fast);
}

.cg-solutions-explorer__all-link i {
    color: var(--cg-brass-600);
}

.cg-solutions-explorer__all-link:hover {
    gap: 14px;

    color: var(--cg-brass-700);
}


/*====================================================================
28. SOLUTIONS EXPLORER RESPONSIVE
====================================================================*/


/* Medium desktop */

@media (max-width: 1199.98px) {

    .cg-solutions-explorer__shell {
        height: 520px;

        grid-template-columns:
            minmax(260px, 0.85fr)
            minmax(0, 2.15fr);
    }

    .cg-solutions-explorer__nav {
        padding-right: 22px;
        padding-left: 22px;
    }

    .cg-solutions-explorer__tab::before {
        left: -22px;
    }

    .cg-solutions-explorer__stage,
    .cg-solutions-explorer__content {
        height: 520px;
    }

    .cg-solutions-explorer__content {
        width: min(470px, 66%);

        padding-right: 38px;
        padding-left: 38px;
    }

    .cg-solutions-explorer__content h2 {
        font-size: clamp(2.25rem, 3.7vw, 3.75rem);
    }
}


/* Tablet */

@media (max-width: 991.98px) {

    .cg-solutions-explorer {
        padding-top: 54px;
        padding-bottom: 52px;
    }

    .cg-solutions-explorer__shell {
        display: block;

        width: 100%;
        height: auto;

        border-radius: 22px;
    }

    .cg-solutions-explorer__nav {
        display: grid;

        grid-template-columns: repeat(4, minmax(170px, 1fr));

        padding: 0;

        overflow-x: auto;
        overscroll-behavior-inline: contain;

        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);

        scrollbar-width: thin;
    }

    .cg-solutions-explorer__tab {
        min-height: 88px;
        flex: none;

        grid-template-columns: 30px minmax(125px, 1fr);
        gap: 10px;

        padding: 16px;

        border-right: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom: 0;
    }

    .cg-solutions-explorer__tab::before {
        top: auto;
        right: 16px;
        bottom: 0;
        left: 16px;

        width: auto;
        height: 3px;

        opacity: 0;

        transform: scaleX(0);

        transition:
            opacity var(--cg-transition-base),
            transform var(--cg-transition-base);
    }

    .cg-solutions-explorer__tab.is-active {
        min-height: 88px;
        flex-grow: 0;

        padding: 16px;
    }

    .cg-solutions-explorer__tab.is-active::before {
        height: 3px;

        opacity: 1;

        transform: scaleX(1);
    }

    .cg-solutions-explorer__tab.is-active
    .cg-solutions-explorer__index {
        font-size: 0.92rem;
    }

    .cg-solutions-explorer__tab-copy strong,
    .cg-solutions-explorer__tab.is-active
    .cg-solutions-explorer__tab-copy strong {
        font-size: 0.98rem;
    }

    .cg-solutions-explorer__tab-copy small,
    .cg-solutions-explorer__tab.is-active
    .cg-solutions-explorer__tab-copy small {
        display: none;
    }

    .cg-solutions-explorer__stage,
    .cg-solutions-explorer__content {
        height: 500px;
    }

    .cg-solutions-explorer__content {
        width: min(520px, 72%);

        padding: 38px 42px;
    }
}


/* Mobile */

@media (max-width: 767.98px) {

    .cg-solutions-explorer {
        padding-top: 46px;
        padding-bottom: 46px;
    }

    .cg-solutions-explorer__eyebrow {
        margin-bottom: 15px;
    }

    .cg-solutions-explorer__shell {
        border-radius: 18px;
    }

    .cg-solutions-explorer__nav {
        grid-template-columns: repeat(4, minmax(150px, 1fr));
    }

    .cg-solutions-explorer__tab {
        min-height: 78px;

        grid-template-columns: 26px minmax(110px, 1fr);

        padding: 14px;
    }

    .cg-solutions-explorer__tab.is-active {
        min-height: 78px;

        padding: 14px;
    }

    .cg-solutions-explorer__tab-copy strong,
    .cg-solutions-explorer__tab.is-active
    .cg-solutions-explorer__tab-copy strong {
        font-size: 0.92rem;
    }

    .cg-solutions-explorer__stage,
    .cg-solutions-explorer__content {
        height: 450px;
    }

    .cg-solutions-explorer__content {
        width: 100%;

        justify-content: flex-end;

        padding: 34px 24px;
    }

    .cg-solutions-explorer__veil {
        background:
            linear-gradient(
                180deg,
                rgba(6, 22, 42, 0.08) 8%,
                rgba(6, 22, 42, 0.32) 38%,
                rgba(6, 22, 42, 0.96) 82%
            );
    }

    .cg-solutions-explorer__icon {
        width: 42px;
        height: 42px;

        margin-bottom: 14px;

        font-size: 1rem;
    }

    .cg-solutions-explorer__kicker {
        margin-bottom: 8px;

        font-size: 0.64rem;
    }

    .cg-solutions-explorer__content h2 {
        max-width: 370px;

        font-size: clamp(2rem, 9vw, 3rem);
    }

    .cg-solutions-explorer__description {
        max-width: 410px;

        margin-top: 14px;

        font-size: 0.9rem;
        line-height: 1.58;
    }

    .cg-solutions-explorer__link {
        margin-top: 15px;

        font-size: 0.8rem;
    }

    .cg-solutions-explorer__footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;

        padding-top: 15px;
    }
}


/* Small mobile */

@media (max-width: 575.98px) {

    .cg-solutions-explorer__stage,
    .cg-solutions-explorer__content {
        height: 420px;
    }

    .cg-solutions-explorer__content {
        padding-right: 20px;
        padding-left: 20px;
    }

    .cg-solutions-explorer__content h2 {
        font-size: clamp(1.9rem, 10vw, 2.7rem);
    }

    .cg-solutions-explorer__description {
        font-size: 0.86rem;
    }
}


/* Reduced-motion support */

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

    .cg-solutions-explorer__image,
    .cg-solutions-explorer__content,
    .cg-solutions-explorer__tab,
    .cg-solutions-explorer__tab::before,
    .cg-solutions-explorer__tab-copy strong,
    .cg-solutions-explorer__tab-copy small {
        transition: none;
    }
}

/*====================================================================
CHAPTER 3
WHO WE SERVE
====================================================================*/


/*====================================================================
29. AUDIENCE SECTION
====================================================================*/

.cg-audiences {
    position: relative;

    padding-top: clamp(18px, 1.8vw, 26px);
    padding-bottom: clamp(58px, 5vw, 78px);

    border-bottom: 1px solid rgba(8, 28, 54, 0.06);

    background: var(--cg-off-white);
}


/*====================================================================
30. SECTION INTRODUCTION
====================================================================*/

.cg-audiences__header {
    max-width: 1180px;

    margin-right: auto;
    margin-bottom: 40px;
    margin-left: auto;

    text-align: center;
}


/* Eyebrow */

.cg-audiences__eyebrow {
    display: inline-flex;

    align-items: center;
    justify-content: center;
    gap: 12px;

    margin-bottom: 14px;

    color: var(--cg-brass-600);

    font-family: var(--cg-font-heading);
    font-size: 0.74rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.cg-audiences__eyebrow::before,
.cg-audiences__eyebrow::after {
    width: 32px;
    height: 1px;

    background: currentColor;

    content: "";
}


/* Main heading */

.cg-audiences__header h2 {
    max-width: 880px;

    margin-right: auto;
    margin-left: auto;

    color: var(--cg-navy-900);

    font-size: clamp(2.2rem, 3.4vw, 3.55rem);
    font-weight: 600;
    line-height: 1.04;
    letter-spacing: -0.045em;
}


/* Supporting paragraph */

.cg-audiences__header > p {
    max-width: 1080px;

    margin-top: 16px;
    margin-right: auto;
    margin-left: auto;

    color: var(--cg-text-soft);

    font-size: 0.98rem;
    line-height: 1.6;

    white-space: nowrap;
}


/*====================================================================
31. AUDIENCE GRID
====================================================================*/

.cg-audiences__grid {
    display: grid;

    width: 100%;
    max-width: 1320px;

    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;

    margin-right: auto;
    margin-left: auto;
}


/*====================================================================
32. AUDIENCE CARD
====================================================================*/

.cg-audience-card {
    position: relative;

    display: flex;

    min-height: 380px;

    align-items: center;
    flex-direction: column;

    padding: 34px 26px 28px;

    overflow: hidden;

    border: 1px solid rgba(8, 28, 54, 0.09);
    border-radius: 18px;

    background: #ffffff;

    box-shadow:
        0 4px 14px rgba(8, 28, 54, 0.035);

    text-align: center;

    transition:
        border-color var(--cg-transition-base),
        transform var(--cg-transition-base),
        box-shadow var(--cg-transition-base);
}


/* Active brass accent */

.cg-audience-card::before {
    position: absolute;
    top: 0;
    right: 28px;
    left: 28px;

    height: 2px;

    opacity: 0;

    background: var(--cg-brass-500);

    content: "";

    transform: scaleX(0.35);
    transform-origin: center;

    transition:
        opacity var(--cg-transition-base),
        transform var(--cg-transition-slow);
}


/* Icon */

.cg-audience-card__icon {
    display: inline-flex;

    width: 68px;
    height: 68px;

    flex: 0 0 auto;
    align-items: center;
    justify-content: center;

    margin-bottom: 24px;

    border: 1px solid rgba(192, 138, 43, 0.28);
    border-radius: 16px;

    background: rgba(246, 241, 230, 0.42);
    color: var(--cg-brass-600);

    font-size: 1.55rem;

    transition:
        border-color var(--cg-transition-base),
        background-color var(--cg-transition-base),
        color var(--cg-transition-base),
        transform var(--cg-transition-base);
}


/* Card content */

.cg-audience-card__content {
    display: flex;
    min-width: 0;
    flex: 1;
    flex-direction: column;
    align-items: center;
}

.cg-audience-card h3 {
    color: var(--cg-navy-900);

    font-size: clamp(1.18rem, 1.35vw, 1.42rem);
    font-weight: 600;
    line-height: 1.22;
    letter-spacing: -0.025em;
}

.cg-audience-card p {
    max-width: 270px;

    margin-top: 16px;

    color: var(--cg-text-soft);

    font-size: 0.88rem;
    line-height: 1.62;
}


/* Card link */

.cg-audience-card__link {
    display: inline-flex;

    align-items: center;
    justify-content: center;
    gap: 8px;

    margin-top: auto;
    padding-top: 22px;

    color: var(--cg-brass-600);

    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.35;

    transition:
        color var(--cg-transition-fast),
        gap var(--cg-transition-base);
}

.cg-audience-card__link i {
    color: inherit;
}


/* Hover and keyboard focus */

.cg-audience-card:hover,
.cg-audience-card:focus-within {
    border-color: rgba(192, 138, 43, 0.32);

    transform: translateY(-3px);

    box-shadow:
        0 10px 28px rgba(8, 28, 54, 0.07);
}

.cg-audience-card:hover::before,
.cg-audience-card:focus-within::before {
    opacity: 1;

    transform: scaleX(1);
}

.cg-audience-card:hover
.cg-audience-card__icon,
.cg-audience-card:focus-within
.cg-audience-card__icon {
    border-color: rgba(192, 138, 43, 0.48);

    background: var(--cg-brass-100);
    color: var(--cg-brass-700);

    transform: translateY(-2px);
}

.cg-audience-card__link:hover {
    gap: 13px;

    color: var(--cg-brass-700);
}


/*====================================================================
33. CHAPTER 3 RESPONSIVE
====================================================================*/


/* Medium desktop */

@media (max-width: 1199.98px) {

    .cg-audiences__header > p {
        white-space: normal;
    }

    .cg-audiences__grid {
        max-width: 1040px;

        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .cg-audience-card {
        min-height: 270px;

        align-items: flex-start;

        padding: 28px;

        text-align: left;
    }

    .cg-audience-card__content {
        align-items: flex-start;
    }

    .cg-audience-card p {
        max-width: 430px;
    }

    .cg-audience-card__link {
        justify-content: flex-start;
    }
}


/* Tablet */

@media (max-width: 991.98px) {

    .cg-audiences {
        padding-top: 34px;
        padding-bottom: 60px;
    }

    .cg-audiences__header {
        margin-bottom: 32px;
    }

    .cg-audience-card {
        min-height: 280px;

        padding: 26px;
    }

    .cg-audience-card__icon {
        width: 60px;
        height: 60px;

        margin-bottom: 20px;

        font-size: 1.35rem;
    }
}


/* Mobile */

@media (max-width: 767.98px) {

    .cg-audiences {
        padding-top: 32px;
        padding-bottom: 52px;
    }

    .cg-audiences__header {
        margin-bottom: 28px;
    }

    .cg-audiences__header h2 {
        font-size: clamp(1.95rem, 8vw, 2.65rem);
    }

    .cg-audiences__header > p {
        max-width: 520px;

        margin-top: 13px;

        font-size: 0.92rem;
        line-height: 1.58;
    }

    .cg-audiences__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .cg-audience-card {
        min-height: auto;

        display: grid;

        grid-template-columns: 52px minmax(0, 1fr);
        align-items: center;
        gap: 18px;

        padding: 22px;

        border-radius: 15px;

        text-align: left;
    }

    .cg-audience-card::before {
        top: 18px;
        right: auto;
        bottom: 18px;
        left: 0;

        width: 2px;
        height: auto;

        transform: scaleY(0.35);
    }

    .cg-audience-card:hover::before,
    .cg-audience-card:focus-within::before {
        transform: scaleY(1);
    }

    .cg-audience-card__icon {
        width: 50px;
        height: 50px;

        margin-bottom: 0;

        border-radius: 13px;

        font-size: 1.15rem;
    }

    .cg-audience-card__content {
        align-items: flex-start;
    }

    .cg-audience-card p {
        max-width: none;

        margin-top: 7px;

        font-size: 0.84rem;
        line-height: 1.52;
    }

    .cg-audience-card__link {
        justify-content: flex-start;

        margin-top: 0;
        padding-top: 11px;

        font-size: 0.78rem;
    }
}


/* Small mobile */

@media (max-width: 430px) {

    .cg-audiences__eyebrow::before,
    .cg-audiences__eyebrow::after {
        width: 22px;
    }

    .cg-audience-card {
        grid-template-columns: 46px minmax(0, 1fr);
        gap: 14px;

        padding: 19px;
    }

    .cg-audience-card__icon {
        width: 44px;
        height: 44px;

        font-size: 1.05rem;
    }
}


/* Reduced-motion support */

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

    .cg-audience-card,
    .cg-audience-card::before,
    .cg-audience-card__icon,
    .cg-audience-card__link {
        transition: none;
    }
}
/*====================================================================
CHAPTER 4
WHY CRESGATE — THE CRESGATE ADVANTAGE
====================================================================*/


/*====================================================================
34. ADVANTAGE SECTION
====================================================================*/

.cg-advantage {
    position: relative;

    padding-top: clamp(38px, 3.5vw, 52px);

    overflow: hidden;

    border-bottom: 1px solid rgba(8, 28, 54, 0.07);

    background:
        radial-gradient(
            circle at 12% 18%,
            rgba(255, 255, 255, 0.48),
            transparent 34%
        ),
        #e8eef2;

    color: var(--cg-navy-900);
}


/* Subtle architectural texture */

.cg-advantage::before {
    position: absolute;
    inset: 0;

    opacity: 0.22;

    background-image:
        linear-gradient(
            rgba(8, 28, 54, 0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(8, 28, 54, 0.025) 1px,
            transparent 1px
        );

    background-size: 52px 52px;

    content: "";
    pointer-events: none;
}


/* Keep content above texture */

.cg-advantage > .cg-container-wide,
.cg-advantage__band {
    position: relative;
    z-index: 2;
}


/*====================================================================
35. TOP FEATURE AREA
====================================================================*/

.cg-advantage__feature {
    display: grid;

    min-height: 400px;

    grid-template-columns:
        minmax(340px, 0.78fr)
        minmax(0, 1.42fr);

    align-items: center;
    gap: clamp(42px, 5vw, 78px);

    padding-bottom: clamp(36px, 3.5vw, 50px);
}


/*====================================================================
36. FEATURE COPY
====================================================================*/

.cg-advantage__content {
    display: flex;

    max-width: 540px;

    justify-content: center;
    flex-direction: column;

    padding-top: 10px;
    padding-bottom: 10px;
}


/* Eyebrow */

.cg-advantage__eyebrow {
    display: flex;

    align-items: center;
    gap: 13px;

    margin-bottom: 18px;

    color: var(--cg-brass-600);

    font-family: var(--cg-font-heading);
    font-size: 0.74rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.cg-advantage__eyebrow span {
    display: block;

    width: 38px;
    height: 1px;

    background: currentColor;
}


/* Main heading */

.cg-advantage__content h2 {
    max-width: 540px;

    color: var(--cg-navy-900);

    font-size: clamp(2.7rem, 4vw, 4.6rem);
    font-weight: 600;
    line-height: 0.99;
    letter-spacing: -0.052em;
}


/* Strong introductory statement */

.cg-advantage__lead {
    max-width: 480px;

    margin-top: 24px;

    color: var(--cg-navy-900);

    font-size: clamp(1.02rem, 1.25vw, 1.16rem);
    font-weight: 500;
    line-height: 1.58;
}


/* Brass accent rule */

.cg-advantage__accent {
    display: block;

    width: 48px;
    height: 2px;

    margin-top: 22px;
    margin-bottom: 22px;

    background: var(--cg-brass-500);
}


/* Supporting description */

.cg-advantage__description {
    max-width: 480px;

    color: var(--cg-text-soft);

    font-size: 0.95rem;
    line-height: 1.72;
}


/*====================================================================
37. OPEN ANIMATED LOGISTICS NETWORK
====================================================================*/

.cg-advantage__network {
    position: relative;

    width: 100%;
    height: 500px;

    align-self: center;

    margin: 0;

    overflow: visible;

    background: transparent;

    isolation: isolate;
}


/* SVG canvas */

.cg-advantage__network-svg {
    display: block;

    width: 100%;
    height: 100%;

    overflow: visible;

    background: transparent;
}


/* Pale map watermark */

.cg-network-map {
    opacity: 0.34;
    mix-blend-mode: multiply;
    filter: grayscale(1) brightness(0.88) contrast(1.5);

    mix-blend-mode: multiply;
}


/* Architectural grid */

.cg-network-grid {
    fill: none;

    stroke: rgba(8, 28, 54, 0.035);
    stroke-width: 1;
}


/* Route lines */

.cg-network-route {
    fill: none;

    stroke: rgba(192, 138, 43, 0.66);
    stroke-width: 1.7;

    stroke-linecap: round;
    stroke-dasharray: 7 9;

    vector-effect: non-scaling-stroke;

    animation: cgNetworkRouteFlow 3.2s linear infinite;
}

@keyframes cgNetworkRouteFlow {

    to {
        stroke-dashoffset: -32;
    }

}


/* Destination nodes */

.cg-network-destination circle {
    fill: var(--cg-surface-soft);

    stroke: var(--cg-navy-900);
    stroke-width: 3;

    vector-effect: non-scaling-stroke;
}


/* Destination labels */

.cg-network-destination text {
    fill: var(--cg-navy-900);

    font-family: var(--cg-font-heading);
    font-size: 14px;
    font-weight: 600;

    letter-spacing: 0.025em;

    paint-order: stroke;
    stroke: rgba(238, 243, 247, 0.96);
    stroke-width: 5px;
    stroke-linejoin: round;
}


/* Moving cargo */

.cg-network-cargo {
    fill: var(--cg-brass-500);

    stroke: var(--cg-white);
    stroke-width: 2;

    vector-effect: non-scaling-stroke;
}


/* Harare hub */

.cg-network-hub__outer {
    fill: var(--cg-brass-500);

    stroke: var(--cg-white);
    stroke-width: 3;

    vector-effect: non-scaling-stroke;
}

.cg-network-hub__core {
    fill: var(--cg-white);

    stroke: var(--cg-brass-700);
    stroke-width: 2;

    vector-effect: non-scaling-stroke;
}


/* Expanding hub pulses */

.cg-network-hub__pulse {
    fill: none;

    stroke: rgba(192, 138, 43, 0.55);
    stroke-width: 2;

    opacity: 0;

    transform-box: fill-box;
    transform-origin: center;

    vector-effect: non-scaling-stroke;

    animation: cgNetworkHubPulse 3.6s ease-out infinite;
}

.cg-network-hub__pulse--two {
    animation-delay: 1.8s;
}

@keyframes cgNetworkHubPulse {

    0% {
        opacity: 0.72;
        transform: scale(0.55);
    }

    70% {
        opacity: 0.16;
    }

    100% {
        opacity: 0;
        transform: scale(2.5);
    }

}
/* Stronger periodic heartbeat from the Harare hub */

.cg-network-hub__pulse--heartbeat {
    opacity: 0;
    stroke: rgba(192, 138, 43, 0.72);
    stroke-width: 2.4;

    animation:
        cgNetworkHubHeartbeat 12s ease-out infinite;
}

@keyframes cgNetworkHubHeartbeat {
    0%,
    72% {
        opacity: 0;
        transform: scale(0.65);
    }

    76% {
        opacity: 0.82;
        transform: scale(0.75);
    }

    88% {
        opacity: 0.18;
    }

    100% {
        opacity: 0;
        transform: scale(3.4);
    }
}


/* Harare label */

.cg-network-hub__label {
    fill: var(--cg-navy-900);

    font-family: var(--cg-font-heading);
    font-size: 19px;
    font-weight: 600;

    letter-spacing: 0.045em;

    paint-order: stroke;
    stroke: rgba(238, 243, 247, 0.97);
    stroke-width: 6px;
    stroke-linejoin: round;
}
/*==============================================================
TWO-WAY NETWORK ENHANCEMENTS
==============================================================*/

/* Route hierarchy */

.cg-network-route {
    opacity: 0.72;
    stroke-width: 1.45;
    stroke-dasharray: 6 9;
}


/* Destination arrival pulse */

.cg-network-destination__pulse {
    fill: none;

    stroke: rgba(192, 138, 43, 0.48);
    stroke-width: 1.5;

    opacity: 0;

    transform-box: fill-box;
    transform-origin: center;

    animation: cgDestinationPulse 4s ease-out infinite;

    vector-effect: non-scaling-stroke;
}

.cg-network-destination:nth-of-type(3n)
.cg-network-destination__pulse {
    animation-delay: 1.25s;
}

.cg-network-destination:nth-of-type(4n)
.cg-network-destination__pulse {
    animation-delay: 2.2s;
}

@keyframes cgDestinationPulse {

    0% {
        opacity: 0;
        transform: scale(0.55);
    }

    18% {
        opacity: 0.64;
    }

    100% {
        opacity: 0;
        transform: scale(1.9);
    }
}


/* Port symbols */

.cg-network-destination--port use {
    color: var(--cg-brass-600);

    opacity: 0.88;

    pointer-events: none;
}


/* Minor regional destinations */

.cg-network-destination--minor circle {
    r: 5;
}

.cg-network-destination--minor text {
    opacity: 0.82;
    font-size: 12px;
}


/* Outbound cargo */

.cg-network-cargo--out {
    fill: var(--cg-brass-500);

    stroke: var(--cg-white);
    stroke-width: 2;

    filter: url("#cg-network-glow");
}


/* Inbound cargo */

.cg-network-cargo--in {
    fill: var(--cg-white);

    stroke: var(--cg-navy-900);
    stroke-width: 2;

    filter: url("#cg-network-glow");
}


/* Keep animated cargo above the routes */

.cg-network-cargo-layer {
    position: relative;
    z-index: 4;
}


/* Slightly reduce labels now that there are more destinations */

.cg-network-destination text {
    font-size: 12px;
    stroke-width: 4px;
}


/* Make the major destinations slightly more prominent */

.cg-network-destination__pulse + circle {
    stroke-width: 3.2;
}


/* Mobile simplification */

@media (max-width: 767.98px) {

    .cg-network-destination text,
    .cg-network-destination--port use {
        display: none;
    }

    .cg-network-destination--minor {
        display: none;
    }

    .cg-network-cargo--in {
        display: none;
    }

    .cg-network-route {
        opacity: 0.58;
        stroke-width: 1.7;
    }
}


/* Reduced-motion accessibility */

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

    .cg-network-destination__pulse {
        animation: none;
    }

    .cg-network-cargo-layer {
        display: none;
    }
}

/*====================================================================
38. WHITE ADVANTAGE BAND
====================================================================*/

.cg-advantage__band {
    width: 100%;

    border-top: 1px solid rgba(8, 28, 54, 0.07);
    border-bottom: 1px solid rgba(8, 28, 54, 0.07);

    background: #ffffff;
}


/* Advantage grid */

.cg-advantage__grid {
    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    padding-top: 34px;
    padding-bottom: 38px;
}


/* Individual advantage */

.cg-advantage-card {
    position: relative;

    display: flex;

    min-width: 0;

    align-items: center;
    flex-direction: column;

    padding: 4px clamp(22px, 2.5vw, 38px);

    text-align: center;
}


/* Vertical separators */

.cg-advantage-card:not(:last-child) {
    border-right: 1px solid rgba(8, 28, 54, 0.12);
}


/* Icon */

.cg-advantage-card__icon {
    display: inline-flex;

    width: 64px;
    height: 64px;

    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    border: 1px solid rgba(8, 28, 54, 0.14);
    border-radius: 50%;

    background: rgba(246, 241, 230, 0.28);
    color: var(--cg-navy-900);

    font-size: 1.65rem;

    transition:
        border-color var(--cg-transition-base),
        background-color var(--cg-transition-base),
        color var(--cg-transition-base),
        transform var(--cg-transition-base);
}

.cg-advantage-card__icon i {
    position: relative;
}


/* Small gold accent inside the icons */

.cg-advantage-card__icon::after {
    position: absolute;

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: var(--cg-brass-500);

    content: "";

    transform: translate(17px, 17px);
}


/* Pillar heading */

.cg-advantage-card h3 {
    max-width: 250px;

    color: var(--cg-navy-900);

    font-size: clamp(1.02rem, 1.25vw, 1.2rem);
    font-weight: 600;
    line-height: 1.28;
    letter-spacing: -0.024em;
}


/* Short brass line */

.cg-advantage-card__line {
    display: block;

    width: 34px;
    height: 2px;

    margin-top: 14px;
    margin-bottom: 14px;

    background: var(--cg-brass-500);
}


/* Pillar description */

.cg-advantage-card p {
    max-width: 260px;

    color: var(--cg-text-soft);

    font-size: 0.84rem;
    line-height: 1.62;
}


/* Hover treatment */

.cg-advantage-card:hover
.cg-advantage-card__icon {
    border-color: rgba(192, 138, 43, 0.42);

    background: var(--cg-brass-100);
    color: var(--cg-brass-700);

    transform: translateY(-3px);
}


/*====================================================================
39. RESPONSIVE
====================================================================*/


/* Medium desktop */

@media (max-width: 1199.98px) {

    .cg-advantage__feature {
        min-height: 440px;

        grid-template-columns:
            minmax(310px, 0.85fr)
            minmax(0, 1.35fr);

        gap: 42px;
    }

    .cg-advantage__network {
    height: 460px;
}

    .cg-advantage__content h2 {
        font-size: clamp(2.6rem, 4.4vw, 4rem);
    }

    .cg-advantage-card {
        padding-right: 22px;
        padding-left: 22px;
    }
}


/* Tablet */

@media (max-width: 991.98px) {

    .cg-advantage {
        padding-top: 54px;
    }

    .cg-advantage__feature {
        min-height: auto;

        grid-template-columns: 1fr;
        gap: 32px;

        padding-bottom: 52px;
    }

    .cg-advantage__content {
        max-width: 680px;

        padding: 0;
    }

    .cg-advantage__content h2 {
        max-width: 660px;

        font-size: clamp(2.6rem, 7vw, 4rem);
    }

    .cg-advantage__lead,
    .cg-advantage__description {
        max-width: 620px;
    }

    .cg-advantage__network {
    width: 100%;
    height: 430px;
}

    .cg-advantage__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        padding-top: 20px;
        padding-bottom: 20px;
    }

    .cg-advantage-card {
        min-height: 250px;

        justify-content: center;

        padding: 28px;
    }

    .cg-advantage-card:nth-child(2) {
        border-right: 0;
    }

    .cg-advantage-card:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(8, 28, 54, 0.12);
    }
}


/* Mobile */

@media (max-width: 767.98px) {

    .cg-advantage {
        padding-top: 48px;
    }

    .cg-advantage__feature {
        gap: 26px;

        padding-bottom: 42px;
    }

    .cg-advantage__eyebrow {
        margin-bottom: 14px;

        font-size: 0.68rem;
    }

    .cg-advantage__content h2 {
        font-size: clamp(2.35rem, 11vw, 3.35rem);
    }

    .cg-advantage__lead {
        margin-top: 18px;

        font-size: 0.98rem;
    }

    .cg-advantage__accent {
        margin-top: 18px;
        margin-bottom: 18px;
    }

    .cg-advantage__description {
        font-size: 0.9rem;
        line-height: 1.65;
    }

    .cg-advantage__network {
    height: 350px;
}

.cg-network-destination text {
    display: none;
}

.cg-network-hub__label {
    font-size: 16px;
}

.cg-network-route {
    stroke-width: 2;
}

    .cg-advantage__grid {
        grid-template-columns: 1fr;

        padding: 0;
    }

    .cg-advantage-card {
        min-height: auto;

        display: grid;

        grid-template-columns: 54px minmax(0, 1fr);
        align-items: start;
        gap: 17px;

        padding: 24px 20px;

        border-right: 0 !important;
        border-bottom: 1px solid rgba(8, 28, 54, 0.11);

        text-align: left;
    }

    .cg-advantage-card:last-child {
        border-bottom: 0;
    }

    .cg-advantage-card:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(8, 28, 54, 0.11);
    }

    .cg-advantage-card__icon {
        width: 52px;
        height: 52px;

        grid-row: 1 / span 3;

        margin-bottom: 0;

        font-size: 1.3rem;
    }

    .cg-advantage-card__icon::after {
        width: 6px;
        height: 6px;

        transform: translate(14px, 14px);
    }

    .cg-advantage-card h3 {
        max-width: none;

        font-size: 1.02rem;
    }

    .cg-advantage-card__line {
        width: 28px;

        margin-top: 10px;
        margin-bottom: 0;
    }

    .cg-advantage-card p {
        max-width: none;

        margin-top: -1px;

        font-size: 0.83rem;
        line-height: 1.55;
    }
}


/* Small mobile */

@media (max-width: 430px) {

    .cg-advantage__network {
    height: 300px;
}

    .cg-advantage-card {
        grid-template-columns: 48px minmax(0, 1fr);
        gap: 14px;

        padding: 21px 17px;
    }

    .cg-advantage-card__icon {
        width: 46px;
        height: 46px;

        font-size: 1.15rem;
    }
}


/* Reduced-motion support */

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

    .cg-network-route,
    .cg-network-hub__pulse {
        animation: none;
    }

    .cg-network-cargo {
        display: none;
    }

    .cg-advantage-card__icon {
        transition: none;
    }

}

/*====================================================================
CRESGATE STICKY HEADER OVERRIDE
Prevents old template .is-sticky rules from affecting this header
====================================================================*/

header.cg-header.is-sticky {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    left: 0 !important;

    width: 100% !important;
    max-width: none !important;

    padding: 0 !important;
    margin: 0 !important;

    background: rgb(6, 22, 42) !important;

    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;

    box-shadow:
        0 12px 35px rgba(6, 22, 42, 0.18) !important;
}

header.cg-header.is-sticky .cg-header__inner {
    width: 100%;
    background: transparent !important;
}
/* Remove old template overlay from Cresgate header */

header.cg-header::before,
header.cg-header::after,
header.cg-header.is-sticky::before,
header.cg-header.is-sticky::after {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    background: transparent !important;
    content: none !important;
}