/* =========================================================
   Facilities Holding — Brand Stylesheet
   Brand: Navy #102A43 · Operational Blue #247BA0 · Clean Teal #2EC4B6
   Type:  Montserrat (display) · Inter (body)
   ========================================================= */

:root {
    /* Brand tokens */
    --c-navy: #102A43;
    --c-navy-2: #163B5C;
    --c-blue: #247BA0;
    --c-blue-dark: #1A5F7A;
    --c-teal: #2EC4B6;
    --c-teal-dark: #25A89B;
    --c-charcoal: #1F2933;
    --c-gray: #F4F7FA;
    --c-mid-gray: #D8E2EA;
    --c-light-border: #E6EDF3;
    --c-white: #FFFFFF;

    /* Semantic */
    --c-bg: #F4F7FA;
    --c-surface: #FFFFFF;
    --c-text: #1F2933;
    --c-text-soft: #52616F;
    --c-text-muted: #7B8794;
    --c-border: #D8E2EA;
    --c-border-strong: #B8C5D1;
    --c-primary: #247BA0;
    --c-primary-dark: #1A5F7A;
    --c-accent: #2EC4B6;
    --c-accent-soft: #E5F7F5;
    --c-blue-soft: #E8F1F7;
    --c-success: #16A34A;
    --c-danger: #B91C1C;

    /* Radii */
    --r-sm: 8px;
    --r-md: 12px;
    --r-lg: 18px;
    --r-xl: 22px;
    --r-2xl: 28px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(16, 42, 67, .06);
    --shadow-md: 0 8px 24px rgba(16, 42, 67, .08);
    --shadow-lg: 0 24px 60px rgba(16, 42, 67, .12);
    --shadow-cta: 0 12px 30px rgba(46, 196, 182, .35);

    /* Layout */
    --container: 1200px;
    --gutter: clamp(20px, 4vw, 40px);

    /* Type */
    --f-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    --f-display: 'Montserrat', 'Inter', system-ui, sans-serif;

    /* Motion */
    --t-fast: .18s ease;
    --t-med: .25s cubic-bezier(.4, 0, .2, 1);
    --t-slow: .35s cubic-bezier(.4, 0, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    font-family: var(--f-sans);
    color: var(--c-text);
    background: var(--c-bg);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--f-display);
    color: var(--c-navy);
    margin: 0 0 .5em;
    line-height: 1.1;
    letter-spacing: -.035em;
    font-weight: 800;
}

h1 { font-size: clamp(2.5rem, 5.5vw, 4rem); letter-spacing: -.05em; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); letter-spacing: -.04em; }
h3 { font-size: 1.35rem; font-weight: 800; letter-spacing: -.025em; }
h4 { font-size: 1.05rem; font-weight: 800; letter-spacing: -.02em; }
h5 { font-size: .9rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }

p { margin: 0 0 1em; color: var(--c-text-soft); }

a { color: var(--c-blue); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--c-blue-dark); }
a:focus-visible, button:focus-visible {
    outline: 3px solid rgba(46, 196, 182, .55);
    outline-offset: 3px;
    border-radius: 4px;
}

::selection { background: rgba(46, 196, 182, .25); color: var(--c-navy); }

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--c-navy);
    color: #fff;
    padding: 12px 18px;
    z-index: 1000;
    border-radius: 0 0 8px 0;
    font-weight: 700;
}
.skip-link:focus { left: 0; color: #fff; }

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--c-blue);
    background: var(--c-blue-soft);
    padding: 7px 13px;
    border-radius: 999px;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(36, 123, 160, .15);
}
.eyebrow.on-dark {
    color: #CDEFF2;
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .16);
}
.eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--c-teal);
    box-shadow: 0 0 0 3px rgba(46, 196, 182, .2);
}

/* =========================================================
   Buttons — min 44px tap, 150-250ms transitions
   ========================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55em;
    padding: 13px 24px;
    min-height: 48px;
    border-radius: 12px;
    font-weight: 800;
    font-family: var(--f-sans);
    font-size: .95rem;
    letter-spacing: -.01em;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all var(--t-med);
    text-decoration: none;
    white-space: nowrap;
    line-height: 1;
}
.btn-lg { padding: 16px 30px; min-height: 54px; font-size: 1rem; }

.btn-primary {
    background: var(--c-teal);
    color: var(--c-navy);
    box-shadow: 0 6px 18px rgba(46, 196, 182, .35);
}
.btn-primary:hover {
    background: var(--c-teal-dark);
    transform: translateY(-1px);
    box-shadow: 0 10px 26px rgba(46, 196, 182, .45);
    color: var(--c-navy);
}
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
    background: var(--c-navy);
    color: #fff;
    border-color: var(--c-navy);
}
.btn-secondary:hover { background: var(--c-navy-2); color: #fff; transform: translateY(-1px); }

.btn-outline {
    background: transparent;
    color: var(--c-navy);
    border-color: var(--c-mid-gray);
}
.btn-outline:hover {
    background: var(--c-gray);
    border-color: var(--c-blue);
    color: var(--c-blue);
}

.btn-ghost {
    background: transparent;
    color: var(--c-text);
    border: 1px solid transparent;
}
.btn-ghost:hover { color: var(--c-blue); background: rgba(16, 42, 67, .04); }

.btn-on-dark {
    background: rgba(255, 255, 255, .08);
    color: #fff;
    border-color: rgba(255, 255, 255, .25);
}
.btn-on-dark:hover { background: rgba(255, 255, 255, .14); color: #fff; }

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    margin-top: 1.25rem;
    color: var(--c-blue);
    transition: gap var(--t-fast);
}
.link-arrow:hover { gap: 10px; color: var(--c-blue-dark); }

/* =========================================================
   Header
   ========================================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 90;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid rgba(219, 230, 238, .72);
    overflow: visible;
    transition: box-shadow var(--t-med);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 94px;
    padding-top: 12px;
    padding-bottom: 12px;
    gap: 24px;
    overflow: visible;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
    padding: 4px 0;
    color: var(--c-navy);
    overflow: visible;
}
.brand:hover { color: var(--c-navy); }

.brand-logo {
    height: clamp(52px, 5.5vw, 76px);
    width: auto;
    max-width: min(244px, 34vw);
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 10px 18px rgba(6, 34, 61, .08));
}

.footer-brand-text {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    font-family: var(--f-display);
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -.035em;
    color: #fff;
    line-height: 1;
}
.footer-brand-text .fb-light { color: var(--c-teal); font-weight: 800; }
.footer-brand-text::after {
    content: '';
    display: block;
    width: 28px;
    height: 3px;
    background: var(--c-teal);
    margin-left: 4px;
    border-radius: 2px;
}

.primary-nav { display: flex; align-items: center; }
.nav-list {
    display: flex;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-list a {
    display: inline-block;
    padding: 10px 16px;
    color: var(--c-charcoal);
    font-weight: 600;
    font-size: .94rem;
    border-radius: 8px;
    transition: all var(--t-fast);
}
.nav-list a:hover { background: var(--c-blue-soft); color: var(--c-blue); }
.nav-list a.active { color: var(--c-blue); background: var(--c-blue-soft); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    padding: 12px;
    cursor: pointer;
    border-radius: 8px;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--c-navy);
    border-radius: 2px;
    transition: var(--t-med);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   Hero — Navy with grid overlay (brand kit style)
   ========================================================= */
.hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    padding: clamp(70px, 10vw, 120px) 0 clamp(80px, 11vw, 140px);
    background:
        radial-gradient(circle at top right, rgba(46, 196, 182, .22), transparent 38%),
        linear-gradient(135deg, #102A43 0%, #163B5C 48%, #247BA0 100%);
}
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px);
    background-size: 34px 34px;
    pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }

.hero-inner {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}

.hero h1 { color: #fff; margin-bottom: 1.25rem; max-width: 14ch; }
.hero .lead {
    font-size: clamp(1.05rem, 1.6vw, 1.2rem);
    color: rgba(255, 255, 255, .86);
    margin-bottom: 2.25rem;
    max-width: 620px;
    line-height: 1.55;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 2.5rem; }

.hero-trust {
    display: flex;
    gap: clamp(20px, 4vw, 44px);
    flex-wrap: wrap;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(255, 255, 255, .15);
}
.trust-stat { display: flex; flex-direction: column; }
.trust-stat strong {
    font-family: var(--f-display);
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--c-teal);
    line-height: 1;
    letter-spacing: -.03em;
}
.trust-stat span { font-size: .82rem; color: rgba(255, 255, 255, .75); margin-top: 6px; font-weight: 500; }

/* Hero visual — operations dashboard mock */
.hero-visual {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ops-mock {
    width: 100%;
    max-width: 460px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--r-xl);
    padding: 22px;
    backdrop-filter: blur(8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .35);
}
.ops-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    margin-bottom: 18px;
}
.ops-title { font-family: var(--f-display); font-weight: 800; font-size: 1rem; color: #fff; }
.ops-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .75rem;
    color: var(--c-teal);
    font-weight: 700;
    letter-spacing: .04em;
}
.ops-status .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--c-teal);
    box-shadow: 0 0 0 4px rgba(46, 196, 182, .25);
    animation: blink 2.4s ease-in-out infinite;
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: .35; }
}

.ops-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 18px;
}
.ops-tile {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--r-md);
    padding: 14px;
}
.ops-tile .label { font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(255, 255, 255, .65); font-weight: 700; margin-bottom: 8px; }
.ops-tile .value { font-family: var(--f-display); font-size: 1.5rem; font-weight: 800; color: #fff; letter-spacing: -.03em; line-height: 1; }
.ops-tile .delta { font-size: .72rem; color: var(--c-teal); margin-top: 6px; font-weight: 700; }

.ops-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
    font-size: .82rem;
}
.ops-row:first-of-type { border-top: 0; }
.ops-row .badge {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(46, 196, 182, .15);
    color: var(--c-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.ops-row .text { flex: 1; color: rgba(255, 255, 255, .82); }
.ops-row .text strong { color: #fff; font-weight: 700; }
.ops-row .time { color: rgba(255, 255, 255, .55); font-size: .72rem; }

/* =========================================================
   Logos strip
   ========================================================= */
.logos-strip {
    padding: 36px 0;
    background: var(--c-white);
    border-bottom: 1px solid var(--c-border);
}
.logos-label {
    text-align: center;
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--c-text-muted);
    margin-bottom: 20px;
}
.client-logo-carousel {
    --logo-gap: clamp(22px, 4vw, 48px);
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 4px 0;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.client-logo-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: clientLogoScroll 28s linear infinite;
}
.client-logo-carousel:hover .client-logo-track,
.client-logo-carousel:focus-within .client-logo-track {
    animation-play-state: paused;
}
.client-logos {
    list-style: none;
    padding: 0 var(--logo-gap) 0 0;
    margin: 0;
    display: flex;
    flex: 0 0 auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: var(--logo-gap);
}
.client-logos li {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: clamp(104px, 11vw, 156px);
}
.client-logos span {
    font-family: var(--f-display);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--c-navy);
    letter-spacing: -.02em;
    opacity: .55;
    transition: opacity var(--t-fast);
}
.client-logos li:hover span { opacity: 1; }
.client-logos img {
    display: block;
    width: auto;
    max-width: 140px;
    max-height: 44px;
    object-fit: contain;
    opacity: .7;
    transition: opacity var(--t-fast), transform var(--t-fast);
}
.client-logos img.logo-wide {
    max-width: 176px;
}
.client-logos li:hover img {
    opacity: 1;
    transform: translateY(-1px);
}

@keyframes clientLogoScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* =========================================================
   Sections
   ========================================================= */
.section { padding: clamp(70px, 9vw, 110px) 0; }
.section-alt { background: linear-gradient(180deg, var(--c-gray) 0%, #fff 100%); }
.section-dark {
    background: var(--c-navy);
    color: #fff;
}
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark p { color: rgba(255, 255, 255, .78); }

.section-head {
    text-align: center;
    max-width: 740px;
    margin: 0 auto clamp(40px, 6vw, 70px);
}
.section-head p {
    font-size: 1.1rem;
    color: var(--c-text-soft);
}

/* =========================================================
   Service grid (numbered cards)
   ========================================================= */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.service-card {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--r-xl);
    padding: 32px 28px;
    transition: var(--t-med);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--c-teal);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--t-med);
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--c-teal);
}
.service-card:hover::before { transform: scaleX(1); }

.service-number {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(36, 123, 160, .1);
    color: var(--c-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-family: var(--f-display);
    margin-bottom: 18px;
    font-size: 1rem;
}

.service-card h3 { color: var(--c-navy); margin-bottom: .65rem; }
.service-card p { font-size: .95rem; }

.check-list {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 0;
}
.check-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    color: var(--c-text-soft);
    font-size: .92rem;
    line-height: 1.5;
}
.check-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 18px;
    height: 18px;
    border-radius: 6px;
    background: var(--c-accent-soft);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232EC4B6'%3E%3Cpath d='M6.5 11.5L3 8l1.4-1.4 2.1 2.1 5.1-5.1L13 5l-6.5 6.5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

/* =========================================================
   Split layout
   ========================================================= */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}
.split-text h2 { margin-bottom: 1rem; }
.split-text p { font-size: 1.05rem; margin-bottom: 1.5rem; line-height: 1.7; }

.partner-callout {
    display: grid;
    grid-template-columns: 116px 1fr;
    align-items: center;
    gap: 18px;
    margin: 22px 0 28px;
    padding: 16px;
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    background: rgba(255, 255, 255, .86);
    box-shadow: var(--shadow-sm);
}
.partner-logo-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 92px;
    padding: 10px;
    border-radius: var(--r-md);
    background: #062431;
}
.partner-logo-card img {
    display: block;
    width: 100%;
    max-width: 92px;
    height: auto;
    object-fit: contain;
}
.partner-copy span {
    display: block;
    margin-bottom: 6px;
    color: var(--c-blue);
    font-size: .74rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.split-text .partner-copy p {
    margin: 0;
    color: var(--c-text-soft);
    font-size: .94rem;
    line-height: 1.6;
}

.split-features { display: flex; flex-direction: column; gap: 14px; }
.feature-item {
    display: flex;
    gap: 18px;
    padding: 22px;
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    transition: var(--t-med);
}
.feature-item:hover {
    transform: translateX(4px);
    border-color: var(--c-teal);
    box-shadow: var(--shadow-sm);
}
.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--c-blue-soft);
    color: var(--c-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.feature-item h4 { margin-bottom: 4px; color: var(--c-navy); }
.feature-item p { margin: 0; font-size: .92rem; color: var(--c-text-soft); line-height: 1.55; }

/* =========================================================
   Values grid (5 across — from brand kit)
   ========================================================= */
.values-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}
.value-item {
    border-radius: var(--r-lg);
    background: var(--c-gray);
    padding: 22px;
    border: 1px solid var(--c-light-border);
    transition: var(--t-med);
}
.value-item:hover {
    transform: translateY(-3px);
    background: #fff;
    border-color: var(--c-teal);
    box-shadow: var(--shadow-sm);
}
.value-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(46, 196, 182, .14);
    color: var(--c-blue-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
.value-item strong {
    display: block;
    font-family: var(--f-display);
    color: var(--c-navy);
    font-weight: 800;
    margin-bottom: 6px;
    letter-spacing: -.02em;
}
.value-item p { font-size: .85rem; margin: 0; line-height: 1.5; }

/* =========================================================
   Client grid + Client detail
   ========================================================= */
.client-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}
.client-card {
    background: #fff;
    padding: 28px;
    border-radius: var(--r-lg);
    border: 1px solid var(--c-border);
    transition: var(--t-med);
    position: relative;
}
.client-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--c-teal); }
.client-card .industry-tag {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    color: var(--c-blue);
    background: var(--c-blue-soft);
    padding: 4px 10px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 12px;
}
.client-card h3 { color: var(--c-navy); margin-bottom: .5rem; }
.client-card p { margin: 0; font-size: .92rem; }

.cta-row { text-align: center; margin-top: 40px; }

/* =========================================================
   Tagline / Promise band
   ========================================================= */
.tagline-band {
    margin: clamp(40px, 6vw, 60px) 0 0;
    padding: clamp(40px, 6vw, 60px);
    background:
        radial-gradient(circle at bottom left, rgba(46, 196, 182, .18), transparent 32%),
        var(--c-navy);
    color: #fff;
    border-radius: var(--r-2xl);
    text-align: center;
}
.tagline-band h2 {
    color: #fff;
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: .75rem;
    letter-spacing: -.04em;
}
.tagline-band p {
    color: rgba(255, 255, 255, .82);
    max-width: 640px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* =========================================================
   CTA banner
   ========================================================= */
.cta-banner {
    padding: clamp(50px, 7vw, 80px) 0;
    background:
        radial-gradient(circle at bottom left, rgba(46, 196, 182, .18), transparent 32%),
        var(--c-navy);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.cta-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: 34px 34px;
    pointer-events: none;
}
.cta-banner-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.cta-banner h2 { color: #fff; margin-bottom: .5rem; }
.cta-banner p { color: rgba(255, 255, 255, .82); margin: 0; font-size: 1.05rem; max-width: 540px; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
    background: var(--c-navy);
    color: rgba(255, 255, 255, .78);
    padding-top: 70px;
    margin-top: 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 40px;
    padding-bottom: 50px;
}
.footer-brand .brand-name { color: #fff; }
.footer-brand p { color: rgba(255, 255, 255, .65); font-size: .92rem; max-width: 320px; margin-top: 1.25rem; line-height: 1.65; }

.footer-tagline {
    display: inline-block;
    margin-top: 18px;
    padding: 8px 14px;
    background: rgba(46, 196, 182, .14);
    color: var(--c-teal);
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.footer-col h5 { color: #fff; margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(255, 255, 255, .68); font-size: .92rem; transition: color var(--t-fast); }
.footer-col a:hover { color: var(--c-teal); }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 24px;
    padding-bottom: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p { color: rgba(255, 255, 255, .55); font-size: .82rem; margin: 0; }
.footer-meta a { color: rgba(255, 255, 255, .68); text-decoration: underline; }
.footer-meta a:hover { color: var(--c-teal); }

/* =========================================================
   Cookie banner
   ========================================================= */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 580px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-lg);
    padding: 26px;
    z-index: 200;
    animation: slideUp .45s var(--t-med);
}
@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.cookie-banner h3 {
    font-size: 1.1rem;
    margin-bottom: .5rem;
    color: var(--c-navy);
}
.cookie-banner > .cookie-inner > .cookie-text > p {
    font-size: .9rem;
    margin-bottom: 18px;
    color: var(--c-text-soft);
    line-height: 1.55;
}
.cookie-banner a { color: var(--c-blue); text-decoration: underline; font-weight: 600; }
.cookie-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.cookie-actions .btn { font-size: .85rem; padding: 11px 18px; min-height: 44px; }

.cookie-prefs {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--c-border);
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.cookie-pref {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: .88rem;
    color: var(--c-text-soft);
    cursor: pointer;
    line-height: 1.5;
}
.cookie-pref input { margin-top: 4px; accent-color: var(--c-teal); }
.cookie-pref strong { color: var(--c-navy); display: block; }

/* =========================================================
   Page hero (inner pages)
   ========================================================= */
.page-hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    padding: clamp(80px, 10vw, 120px) 0 clamp(60px, 7vw, 90px);
    background:
        radial-gradient(circle at top right, rgba(46, 196, 182, .22), transparent 38%),
        linear-gradient(135deg, #102A43 0%, #163B5C 48%, #247BA0 100%);
    text-align: center;
}
.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
    background-size: 34px 34px;
    pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; margin-bottom: 1rem; }
.page-hero p {
    font-size: clamp(1.05rem, 1.5vw, 1.2rem);
    color: rgba(255, 255, 255, .85);
    max-width: 740px;
    margin: 0 auto;
}

/* =========================================================
   Content article (legal pages)
   ========================================================= */
.content-article {
    max-width: 840px;
    margin: 0 auto;
    background: #fff;
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-sm);
    padding: clamp(40px, 5vw, 60px);
    margin-top: -50px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
    border: 1px solid var(--c-border);
}
.content-article h2 {
    font-size: 1.55rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: .6rem;
    border-bottom: 2px solid var(--c-accent-soft);
    color: var(--c-navy);
}
.content-article h2:first-of-type { margin-top: 0; }
.content-article h3 { font-size: 1.15rem; margin-top: 1.75rem; color: var(--c-navy); }
.content-article p, .content-article li { color: var(--c-text-soft); font-size: .98rem; line-height: 1.75; }
.content-article ul, .content-article ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.content-article li { margin-bottom: .5rem; }
.content-article a { color: var(--c-blue); text-decoration: underline; }
.content-article a:hover { color: var(--c-blue-dark); }
.content-article .meta {
    font-size: .9rem;
    color: var(--c-text-soft);
    padding: 14px 18px;
    background: var(--c-blue-soft);
    border-left: 4px solid var(--c-blue);
    border-radius: var(--r-sm);
    margin-bottom: 2rem;
}
.content-article .meta strong { color: var(--c-navy); }
.content-article table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: .92rem;
    border: 1px solid var(--c-border);
    border-radius: var(--r-md);
    overflow: hidden;
}
.content-article th, .content-article td {
    text-align: left;
    padding: 12px 16px;
    border-bottom: 1px solid var(--c-border);
    vertical-align: top;
}
.content-article th {
    background: var(--c-gray);
    color: var(--c-navy);
    font-weight: 800;
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    font-family: var(--f-display);
}
.content-article tr:last-child td { border-bottom: none; }

/* =========================================================
   Forms / Contact
   ========================================================= */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 48px;
    align-items: start;
}
.contact-info h3 { margin-bottom: .5rem; }
.contact-info p { margin-bottom: 1.5rem; }

.contact-item {
    display: flex;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--c-border);
}
.contact-item:last-child { border-bottom: none; }
.contact-item-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--c-blue-soft);
    color: var(--c-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-item h4 { margin: 0 0 4px; font-size: .95rem; color: var(--c-navy); }
.contact-item p { margin: 0; font-size: .92rem; }

.contact-form {
    background: #fff;
    padding: clamp(28px, 4vw, 40px);
    border-radius: var(--r-xl);
    border: 1px solid var(--c-border);
    box-shadow: var(--shadow-sm);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 700;
    font-size: .88rem;
    color: var(--c-navy);
}
.form-group .req { color: var(--c-danger); }
.form-control {
    width: 100%;
    padding: 13px 14px;
    min-height: 48px;
    border: 1px solid var(--c-mid-gray);
    border-radius: 10px;
    background: #fff;
    font-family: inherit;
    font-size: .95rem;
    color: var(--c-text);
    transition: var(--t-fast);
}
.form-control:focus {
    outline: none;
    border-color: var(--c-blue);
    box-shadow: 0 0 0 3px rgba(36, 123, 160, .15);
}
textarea.form-control { min-height: 140px; resize: vertical; }
.form-check { display: flex; gap: 10px; font-size: .9rem; color: var(--c-text-soft); line-height: 1.5; }
.form-check input { margin-top: 4px; accent-color: var(--c-teal); }
.form-note { font-size: .85rem; color: var(--c-text-muted); }

.form-success {
    background: #ECFDF5;
    border: 1px solid #A7F3D0;
    color: #065F46;
    padding: 14px 16px;
    border-radius: 10px;
    margin-bottom: 18px;
    display: none;
    font-weight: 600;
}

/* =========================================================
   Process steps
   ========================================================= */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin-top: 40px;
}
.process-card {
    padding: 28px;
    background: #fff;
    border-radius: var(--r-lg);
    border: 1px solid var(--c-border);
    transition: var(--t-med);
}
.process-card:hover { box-shadow: var(--shadow-sm); border-color: var(--c-teal); }
.process-card .step {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--c-navy);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-family: var(--f-display);
    margin-bottom: 16px;
    letter-spacing: -.02em;
}
.process-card h4 { margin-bottom: .5rem; color: var(--c-navy); }
.process-card p { margin: 0; font-size: .92rem; }

/* =========================================================
   Timeline (about page)
   ========================================================= */
.timeline {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
    padding-left: 30px;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: var(--c-border);
}
.timeline-item {
    position: relative;
    padding-bottom: 28px;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 6px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--c-teal);
    box-shadow: 0 0 0 4px rgba(46, 196, 182, .15);
}
.timeline-item h4 { margin-bottom: 4px; color: var(--c-navy); }
.timeline-item .year {
    font-family: var(--f-display);
    font-weight: 800;
    color: var(--c-blue);
    font-size: .85rem;
    letter-spacing: .05em;
    margin-bottom: .25rem;
    display: block;
}

/* =========================================================
   Stats band
   ========================================================= */
.stats-band {
    background:
        radial-gradient(circle at top right, rgba(46, 196, 182, .2), transparent 35%),
        linear-gradient(135deg, #102A43, #247BA0);
    color: #fff;
    padding: clamp(40px, 6vw, 60px);
    border-radius: var(--r-2xl);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 32px;
    text-align: center;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}
.stats-band::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: 34px 34px;
    pointer-events: none;
}
.stats-band .stat { position: relative; z-index: 1; }
.stats-band .stat strong {
    display: block;
    font-family: var(--f-display);
    font-size: clamp(2.25rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--c-teal);
    margin-bottom: 6px;
    letter-spacing: -.04em;
    line-height: 1;
}
.stats-band .stat span { color: rgba(255, 255, 255, .88); font-size: .95rem; font-weight: 500; }

/* =========================================================
   Services page — service detail blocks
   ========================================================= */
.service-detail {
    padding: clamp(50px, 7vw, 80px) 0;
    border-bottom: 1px solid var(--c-border);
}
.service-detail:last-of-type { border-bottom: none; }
.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.service-detail-grid.reverse > :first-child { order: 2; }

.detail-list {
    background: #fff;
    border-radius: var(--r-lg);
    padding: 32px;
    border: 1px solid var(--c-border);
    box-shadow: var(--shadow-sm);
}
.detail-list h4 { margin-bottom: 1.15rem; color: var(--c-navy); }
.detail-list ul { list-style: none; padding: 0; margin: 0; }
.detail-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--c-light-border);
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--c-text);
    font-size: .94rem;
}
.detail-list li:last-child { border-bottom: none; }
.detail-list li::before {
    content: '';
    width: 22px;
    height: 22px;
    border-radius: 7px;
    background: var(--c-accent-soft);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232EC4B6'%3E%3Cpath d='M6.5 11.5L3 8l1.4-1.4 2.1 2.1 5.1-5.1L13 5l-6.5 6.5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}

/* =========================================================
   Clients page — detail cards
   ========================================================= */
.client-detail {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    align-items: start;
    padding: clamp(36px, 5vw, 50px);
    background: #fff;
    border-radius: var(--r-xl);
    border: 1px solid var(--c-border);
    margin-bottom: 24px;
    transition: var(--t-med);
}
.client-detail:hover { box-shadow: var(--shadow-md); border-color: var(--c-teal); transform: translateY(-2px); }
.client-detail-logo {
    background:
        radial-gradient(circle at top right, rgba(46, 196, 182, .22), transparent 50%),
        linear-gradient(135deg, var(--c-navy), var(--c-blue));
    border-radius: var(--r-lg);
    padding: clamp(28px, 3.5vw, 40px);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    font-family: var(--f-display);
    font-weight: 800;
    font-size: 2rem;
    color: #fff;
    letter-spacing: -.02em;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.client-detail-logo::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
    background-size: 22px 22px;
}
.client-detail-logo.logo-image {
    background: #fff;
    aspect-ratio: 16 / 9;
    padding: clamp(24px, 3vw, 34px);
}
.client-detail-logo.logo-image.logo-dark {
    background: #030303;
}
.client-detail-logo.logo-image::after {
    display: none;
}
.client-detail-logo.logo-image img {
    position: relative;
    z-index: 1;
    display: block;
    max-width: min(100%, 360px);
    max-height: 176px;
    width: auto;
    height: auto;
    object-fit: contain;
}
.client-detail-logo.logo-image img.logo-wide {
    max-width: min(100%, 430px);
    max-height: 154px;
}
.client-detail-logo.logo-image img.logo-stack {
    max-width: min(100%, 340px);
    max-height: 188px;
}
.client-detail-logo > span {
    position: relative;
    z-index: 1;
    line-height: 1.15;
    max-width: 100%;
    overflow-wrap: anywhere;
}
.client-detail h3 { color: var(--c-navy); margin-bottom: .5rem; font-size: 1.5rem; }
.client-detail .industry {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    color: var(--c-blue);
    background: var(--c-blue-soft);
    padding: 5px 12px;
    border-radius: 999px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.client-services { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 1rem; }
.client-services span {
    font-size: .82rem;
    padding: 6px 12px;
    background: var(--c-gray);
    color: var(--c-charcoal);
    border-radius: 999px;
    border: 1px solid var(--c-light-border);
    font-weight: 600;
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1000px) {
    .values-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 960px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-visual { min-height: 0; margin-top: 30px; }
    .split { grid-template-columns: 1fr; }
    .service-detail-grid { grid-template-columns: 1fr; gap: 36px; }
    .service-detail-grid.reverse > :first-child { order: 0; }
    .client-detail { grid-template-columns: 1fr; gap: 28px; }
    .contact-layout { grid-template-columns: 1fr; gap: 36px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
    .nav-toggle { display: flex; }
    .nav-list {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: #fff;
        padding: 12px;
        gap: 2px;
        border-bottom: 1px solid var(--c-border);
        box-shadow: var(--shadow-md);
        transform: translateY(-10px);
        opacity: 0;
        pointer-events: none;
        transition: var(--t-med);
    }
    .nav-list.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    .nav-list a { display: block; padding: 14px 16px; min-height: 48px; }
    .header-cta { display: none; }
    .brand-logo { height: 42px; max-width: 156px; }
    .partner-callout { grid-template-columns: 1fr; }
    .partner-logo-card { max-width: 160px; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .cookie-banner { left: 12px; right: 12px; bottom: 12px; padding: 22px; }
    .cookie-actions { width: 100%; }
    .cookie-actions .btn { flex: 1; min-width: 130px; }
    .values-grid { grid-template-columns: 1fr; }
    .hero-trust { gap: 22px; }
    .cta-banner-inner { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }
    .client-logo-carousel {
        overflow: visible;
        -webkit-mask-image: none;
        mask-image: none;
    }
    .client-logo-track {
        width: auto;
        animation: none !important;
        transform: none;
    }
    .client-logos {
        flex-wrap: wrap;
        justify-content: center;
        padding-right: 0;
    }
    .client-logos[aria-hidden="true"] {
        display: none;
    }
}
