/* ============================================================
   TRIAD TECHNOLOGIES — UNIFIED DESIGN SYSTEM
   One cohesive stylesheet for all pages
   ============================================================ */

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
    --navy:         #0d1b2a;
    --navy-mid:     #1a2e45;
    --navy-light:   #243c57;
    --accent:       #2a7de1;
    --accent-bright:#4a9eff;
    --gold:         #c9a84c;
    --white:        #ffffff;
    --off-white:    #f4f7fb;
    --text-dark:    #0d1b2a;
    --text-mid:     #3d5166;
    --text-light:   #6b849c;
    --border:       #dce5ef;
    --success:      #059669;
    --error:        #dc2626;

    --font-display: 'Fraunces', Georgia, serif;
    --font-body:    'Plus Jakarta Sans', system-ui, sans-serif;

    --r-sm:  6px;
    --r-md:  12px;
    --r-lg:  20px;
    --r-xl:  28px;

    --shadow-sm: 0 1px 3px rgba(13,27,42,.08), 0 1px 2px rgba(13,27,42,.04);
    --shadow-md: 0 4px 16px rgba(13,27,42,.12), 0 2px 6px rgba(13,27,42,.06);
    --shadow-lg: 0 12px 40px rgba(13,27,42,.18), 0 4px 12px rgba(13,27,42,.08);
    --shadow-xl: 0 24px 64px rgba(13,27,42,.22), 0 8px 24px rgba(13,27,42,.1);
}

/* ── RESET & BASE ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── NAVIGATION ─────────────────────────────────────────── */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 20px 0;
    transition: background .3s, box-shadow .3s, padding .3s;
}
.nav.scrolled {
    background: rgba(13,27,42,.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(255,255,255,.07), 0 2px 12px rgba(0,0,0,.3);
    padding: 13px 0;
}
/* Interior pages: nav always has bg */
.nav.solid {
    background: var(--navy);
    padding: 13px 0;
}
.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo img {
    height: 44px;
    display: block;
    object-fit: contain;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-link {
    color: rgba(255,255,255,.8);
    font-size: .9rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: var(--r-sm);
    transition: color .2s, background .2s;
    letter-spacing: .01em;
}
.nav-link:hover, .nav-link.active {
    color: var(--white);
    background: rgba(255,255,255,.1);
}
.btn-portal {
    background: var(--accent);
    color: var(--white);
    font-size: .875rem;
    font-weight: 600;
    padding: 9px 20px;
    border-radius: var(--r-sm);
    transition: background .2s, transform .15s;
    letter-spacing: .02em;
    margin-left: 8px;
}
.btn-portal:hover {
    background: var(--accent-bright);
    transform: translateY(-1px);
}

/* ── MOBILE NAV ─────────────────────────────────────────── */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.mobile-menu-btn span {
    display: block;
    width: 24px; height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform .25s, opacity .25s;
}
.mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--navy);
    z-index: 99;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.mobile-menu.active { display: flex; }
.mobile-close {
    position: absolute;
    top: 20px; right: 20px;
    background: none; border: none;
    color: var(--white); font-size: 2rem;
    cursor: pointer; padding: 8px; line-height: 1;
}
.mobile-link {
    color: rgba(255,255,255,.85);
    font-size: 1.5rem;
    font-weight: 600;
    padding: 14px 40px;
    border-radius: var(--r-md);
    transition: background .2s, color .2s;
}
.mobile-link:hover {
    background: rgba(255,255,255,.08);
    color: var(--white);
}

/* ── SHARED SECTION UTILITIES ───────────────────────────── */
.section-eyebrow {
    display: inline-block;
    color: var(--accent);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 300;
    color: var(--navy);
    line-height: 1.18;
    letter-spacing: -.02em;
    margin-bottom: 16px;
}
.section-title.light { color: var(--white); }
.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.7;
    max-width: 560px;
}
.section-subtitle.center { text-align: center; margin: 0 auto; }
.section-header .section-subtitle { text-align: center; margin: 0 auto; }
.section-header {
    text-align: center;
    margin-bottom: 64px;
}
.section-header .section-eyebrow { display: block; }
.section-header .section-title { margin: 0 auto 16px; }

/* ── FADE-UP SCROLL ANIMATION ───────────────────────────── */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: .1s; }
.fade-up:nth-child(3) { transition-delay: .2s; }
.fade-up:nth-child(4) { transition-delay: .3s; }

/* ── SHARED: PAGE HERO BANNER (Services, About, Contact) ─── */
.page-hero {
    position: relative;
    background: var(--navy);
    padding: 140px 0 80px;
    overflow: hidden;
    text-align: center;
}
.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: .12;
}
.page-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(42,125,225,.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(42,125,225,.12) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}
.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 300;
    color: var(--white);
    letter-spacing: -.02em;
    line-height: 1.1;
    position: relative;
    z-index: 2;
    margin-bottom: 16px;
}
.page-hero p {
    color: rgba(255,255,255,.65);
    font-size: 1.1rem;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.65;
    position: relative;
    z-index: 2;
}
.page-hero .breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}
.page-hero .breadcrumb a,
.page-hero .breadcrumb span {
    font-size: .8rem;
    font-weight: 500;
    color: rgba(255,255,255,.45);
    letter-spacing: .06em;
    text-transform: uppercase;
    transition: color .2s;
}
.page-hero .breadcrumb a:hover { color: rgba(255,255,255,.8); }
.page-hero .breadcrumb .sep { color: rgba(255,255,255,.25); font-size: .7rem; }

/* ── HOME: HERO ─────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, #0d1b2a 0%, #1a3a5c 50%, #0d2d4a 100%);
    background-size: cover;
    background-position: center 35%;
    transform: scale(1.04);
    transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
    position: absolute; inset: 0;
    background:
        linear-gradient(to right, rgba(13,27,42,.9) 0%, rgba(13,27,42,.65) 55%, rgba(13,27,42,.3) 100%),
        linear-gradient(to bottom, rgba(13,27,42,.2) 0%, transparent 30%, transparent 60%, rgba(13,27,42,.7) 100%);
}
.hero-content {
    position: relative; z-index: 2;
    padding: 160px 0 100px;
    max-width: 680px;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center; gap: 8px;
    background: rgba(42,125,225,.18);
    border: 1px solid rgba(42,125,225,.4);
    color: var(--accent-bright);
    font-size: .78rem; font-weight: 600;
    letter-spacing: .1em; text-transform: uppercase;
    padding: 6px 14px; border-radius: 100px;
    margin-bottom: 28px;
}
.hero-eyebrow::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--accent-bright);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%,100% { opacity:1; transform:scale(1); }
    50%      { opacity:.5; transform:scale(.8); }
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5.5vw, 4.4rem);
    font-weight: 300; line-height: 1.08;
    color: var(--white);
    margin-bottom: 24px; letter-spacing: -.02em;
}
.hero-title .highlight { font-style: italic; color: var(--accent-bright); font-weight: 400; }
.hero-subtitle {
    font-size: clamp(1rem,1.6vw,1.18rem);
    color: rgba(255,255,255,.78);
    margin-bottom: 40px; line-height: 1.7;
    max-width: 520px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

.btn-primary {
    background: var(--accent); color: var(--white);
    font-weight: 700; font-size: .95rem;
    padding: 15px 32px; border-radius: var(--r-sm);
    transition: background .2s, transform .15s, box-shadow .2s;
    display: inline-flex; align-items: center; gap: 8px;
    box-shadow: 0 4px 20px rgba(42,125,225,.4);
    letter-spacing: .02em;
}
.btn-primary:hover {
    background: var(--accent-bright);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(42,125,225,.5);
}
.btn-secondary {
    background: rgba(255,255,255,.1);
    border: 1.5px solid rgba(255,255,255,.35);
    color: var(--white); font-weight: 600; font-size: .95rem;
    padding: 15px 32px; border-radius: var(--r-sm);
    transition: background .2s, border-color .2s, transform .15s;
    backdrop-filter: blur(4px);
    display: inline-flex; align-items: center; gap: 8px;
}
.btn-secondary:hover {
    background: rgba(255,255,255,.18);
    border-color: rgba(255,255,255,.6);
    transform: translateY(-2px);
}
.hero-trust { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.trust-item {
    display: flex; align-items: center; gap: 7px;
    color: rgba(255,255,255,.62);
    font-size: .85rem; font-weight: 500;
}
.trust-item svg { color: #4ade80; flex-shrink: 0; }

/* ── STATS BAR ───────────────────────────────────────────── */
.stats { background: var(--navy); }
.stats-grid {
    display: grid; grid-template-columns: repeat(4,1fr);
    border-top: 1px solid rgba(255,255,255,.06);
}
.stat-card {
    padding: 44px 32px; text-align: center;
    border-right: 1px solid rgba(255,255,255,.06);
    position: relative;
}
.stat-card:last-child { border-right: none; }
.stat-card::after {
    content: ''; position: absolute;
    bottom: 0; left: 50%; transform: translateX(-50%);
    width: 0; height: 2px;
    background: var(--accent);
    transition: width .4s ease;
}
.stat-card:hover::after { width: 60%; }
.stat-number {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 300; color: var(--white);
    line-height: 1.1; margin-bottom: 8px; letter-spacing: -.02em;
}
.stat-number span { color: var(--accent-bright); }
.stat-label {
    color: rgba(255,255,255,.48);
    font-size: .78rem; font-weight: 500;
    letter-spacing: .07em; text-transform: uppercase; line-height: 1.4;
}

/* ── VALUE PROP (home) ───────────────────────────────────── */
.value-prop { padding: 100px 0; background: var(--off-white); }
.value-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 24px;
}
.value-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 40px;
    transition: transform .25s, box-shadow .25s, border-color .25s;
    position: relative; overflow: hidden;
}
.value-card::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-bright));
    transform: scaleX(0); transform-origin: left;
    transition: transform .3s ease;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.value-card:hover::before { transform: scaleX(1); }
.value-icon-wrap {
    width: 52px; height: 52px;
    background: linear-gradient(135deg,rgba(42,125,225,.12),rgba(74,158,255,.06));
    border-radius: var(--r-md);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 22px; color: var(--accent);
}
.value-card h3 {
    font-size: 1.15rem; font-weight: 700; color: var(--navy);
    margin-bottom: 10px; letter-spacing: -.01em;
}
.value-card p { color: var(--text-mid); font-size: .95rem; line-height: 1.7; }

/* ── SPLIT SECTION (home) ────────────────────────────────── */
.split-section { padding: 100px 0; background: var(--white); }
.split-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
}
.split-image-wrap {
    position: relative; border-radius: var(--r-lg);
    overflow: hidden; aspect-ratio: 4/3;
    box-shadow: var(--shadow-xl);
}
.split-image-wrap img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .6s ease;
}
.split-image-wrap:hover img { transform: scale(1.03); }
.split-badge {
    position: absolute; bottom: 28px; left: 28px;
    background: var(--white); border-radius: var(--r-md);
    padding: 16px 22px; box-shadow: var(--shadow-md);
    display: flex; align-items: center; gap: 14px;
}
.split-badge-icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--accent), var(--accent-bright));
    border-radius: var(--r-sm);
    display: flex; align-items: center; justify-content: center;
    color: white; flex-shrink: 0;
}
.split-badge-text strong { display: block; font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.split-badge-text span { font-size: .75rem; color: var(--text-light); font-weight: 500; }
.split-list { list-style: none; margin: 28px 0 36px; display: flex; flex-direction: column; gap: 14px; }
.split-list li {
    display: flex; align-items: flex-start; gap: 12px;
    font-size: .95rem; color: var(--text-dark); font-weight: 500;
}
.split-list li svg { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.btn-dark {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--navy); color: var(--white);
    font-weight: 700; font-size: .95rem;
    padding: 14px 28px; border-radius: var(--r-sm);
    transition: background .2s, transform .15s;
}
.btn-dark:hover { background: var(--navy-mid); transform: translateY(-2px); }

/* ── VENDORS ─────────────────────────────────────────────── */
.vendors { padding: 80px 0; background: var(--off-white); }
.vendor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px,1fr));
    gap: 10px;
}
.vendor-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--r-md); padding: 15px 10px;
    text-align: center; font-size: .82rem; font-weight: 600;
    color: var(--text-mid); letter-spacing: .01em;
    transition: border-color .2s, color .2s, transform .2s, box-shadow .2s;
}
.vendor-card:hover {
    border-color: var(--accent); color: var(--accent);
    transform: translateY(-2px); box-shadow: var(--shadow-sm);
}

/* ── HOW IT WORKS ────────────────────────────────────────── */
.how-it-works { padding: 100px 0; background: var(--white); }
.steps-grid {
    display: grid; grid-template-columns: repeat(3,1fr);
    gap: 48px; margin-top: 64px; position: relative;
}
.steps-grid::before {
    content: ''; position: absolute;
    top: 36px;
    left: calc(16.67% + 18px); right: calc(16.67% + 18px);
    height: 1px;
    background: linear-gradient(90deg, var(--accent), var(--accent-bright), var(--accent));
    opacity: .25;
}
.step { text-align: center; padding: 0 12px; }
.step-number {
    width: 72px; height: 72px;
    background: var(--navy); color: var(--white);
    font-family: var(--font-display);
    font-size: 1.8rem; font-weight: 300;
    border-radius: 50%; display: flex;
    align-items: center; justify-content: center;
    margin: 0 auto 28px; position: relative; z-index: 1;
    box-shadow: 0 0 0 8px var(--white), 0 0 0 9px rgba(42,125,225,.2);
    transition: background .25s, box-shadow .25s;
}
.step:hover .step-number {
    background: var(--accent);
    box-shadow: 0 0 0 8px var(--white), 0 0 0 9px rgba(42,125,225,.4);
}
.step h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.step p { color: var(--text-mid); font-size: .95rem; line-height: 1.7; }

/* ── CTA SECTION ─────────────────────────────────────────── */
.cta-section {
    position: relative; padding: 100px 0;
    overflow: hidden; background: var(--navy);
}
.cta-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center 30%;
    opacity: .12;
}
.cta-content { position: relative; z-index: 2; text-align: center; max-width: 640px; margin: 0 auto; }
.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem,4vw,3rem);
    font-weight: 300; color: var(--white);
    margin-bottom: 16px; letter-spacing: -.02em; line-height: 1.15;
}
.cta-content p { color: rgba(255,255,255,.68); font-size: 1.05rem; margin-bottom: 36px; }
.btn-primary-large {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--accent); color: var(--white);
    font-weight: 700; font-size: 1rem;
    padding: 17px 40px; border-radius: var(--r-sm);
    transition: background .2s, transform .15s, box-shadow .2s;
    box-shadow: 0 4px 24px rgba(42,125,225,.45);
    letter-spacing: .02em;
}
.btn-primary-large:hover {
    background: var(--accent-bright);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(42,125,225,.55);
}

/* ── FOOTER ──────────────────────────────────────────────── */
.footer { background: #08121d; padding: 72px 0 32px; }
.footer-content {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 48px; padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,.07);
    margin-bottom: 32px;
}
.footer-section h4 {
    font-size: .72rem; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase;
    color: rgba(255,255,255,.38); margin-bottom: 20px;
}
.footer-section p,
.footer-section a {
    display: block; color: rgba(255,255,255,.58);
    font-size: .9rem; line-height: 1.8;
    transition: color .2s;
}
.footer-section a:hover { color: var(--white); }
.footer-logo { height: 34px; opacity: .85; margin-bottom: 14px; }
.footer-bottom { text-align: center; color: rgba(255,255,255,.28); font-size: .82rem; }

/* ─────────────────────────────────────────────────────────
   SERVICES PAGE
───────────────────────────────────────────────────────── */
.services-content { padding: 80px 0; }
.service-category { margin-bottom: 72px; }
.service-category-header {
    display: flex; align-items: flex-start;
    gap: 20px; margin-bottom: 36px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}
.service-cat-icon {
    width: 56px; height: 56px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    border-radius: var(--r-md);
    display: flex; align-items: center; justify-content: center;
    color: var(--accent-bright);
    margin-top: 4px;
}
.service-category-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    font-weight: 300; color: var(--navy);
    letter-spacing: -.01em; line-height: 1.2; margin-bottom: 8px;
}
.service-category-header p { color: var(--text-mid); font-size: .95rem; line-height: 1.65; }
.service-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px,1fr));
    gap: 16px;
}
.service-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 24px 28px;
    transition: transform .22s, box-shadow .22s, border-color .22s;
    position: relative;
}
.service-item::before {
    content: ''; position: absolute;
    left: 0; top: 0; bottom: 0; width: 3px;
    background: var(--accent);
    border-radius: var(--r-sm) 0 0 var(--r-sm);
    transform: scaleY(0); transform-origin: bottom;
    transition: transform .25s ease;
}
.service-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(42,125,225,.3); }
.service-item:hover::before { transform: scaleY(1); }
.service-item h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.service-item p { color: var(--text-mid); font-size: .88rem; line-height: 1.6; }

/* ─────────────────────────────────────────────────────────
   ABOUT PAGE
───────────────────────────────────────────────────────── */
.about-content { padding: 80px 0; }
.about-section { margin-bottom: 80px; }
.about-section:last-child { margin-bottom: 0; }

/* Story section: text + photo side by side */
.about-story-grid {
    display: grid; grid-template-columns: 1fr 420px;
    gap: 72px; align-items: center;
}
.about-story-text p {
    font-size: 1.05rem; color: var(--text-mid);
    line-height: 1.82; margin-bottom: 18px;
}
.about-story-text p strong { color: var(--navy); font-weight: 600; }
.about-story-image {
    border-radius: var(--r-lg); overflow: hidden;
    box-shadow: var(--shadow-xl); aspect-ratio: 3/4;
}
.about-story-image img { width: 100%; height: 100%; object-fit: cover; }

/* Mission cards */
.mission-grid {
    display: grid; grid-template-columns: repeat(3,1fr);
    gap: 24px; margin-top: 16px;
}
.mission-card {
    background: var(--off-white); border-radius: var(--r-lg);
    padding: 36px; border: 1px solid var(--border);
    position: relative; overflow: hidden;
    transition: transform .25s, box-shadow .25s;
}
.mission-card::after {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-bright));
}
.mission-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.mission-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.mission-card p { color: var(--text-mid); font-size: .93rem; line-height: 1.72; }

/* Differentiators */
.diff-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.diff-item {
    display: flex; gap: 18px;
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--r-md); padding: 28px;
    transition: box-shadow .22s;
}
.diff-item:hover { box-shadow: var(--shadow-md); }
.diff-dot {
    width: 10px; height: 10px;
    background: var(--accent); border-radius: 50%;
    flex-shrink: 0; margin-top: 6px;
}
.diff-item h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.diff-item p { color: var(--text-mid); font-size: .9rem; line-height: 1.65; }

/* Approach steps */
.approach-steps { display: flex; flex-direction: column; gap: 0; margin-top: 16px; }
.approach-step {
    display: flex; gap: 28px; padding: 28px 0;
    border-bottom: 1px solid var(--border);
}
.approach-step:last-child { border-bottom: none; }
.approach-num {
    font-family: var(--font-display);
    font-size: 2.2rem; font-weight: 300;
    color: var(--accent); opacity: .5;
    flex-shrink: 0; width: 48px; line-height: 1; margin-top: 2px;
}
.approach-step h4 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.approach-step p { color: var(--text-mid); font-size: .93rem; line-height: 1.68; }

/* Industries */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px,1fr));
    gap: 16px;
}
.industry-card {
    background: var(--off-white); border: 1px solid var(--border);
    border-radius: var(--r-md); padding: 24px;
    transition: border-color .2s, transform .2s;
}
.industry-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.industry-card h4 { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.industry-card p { color: var(--text-mid); font-size: .85rem; line-height: 1.55; }

/* ─────────────────────────────────────────────────────────
   CONTACT PAGE
───────────────────────────────────────────────────────── */
.contact-section { padding: 80px 0; }
.contact-grid {
    display: grid; grid-template-columns: 420px 1fr;
    gap: 64px; align-items: start;
}
.contact-info-panel {
    background: var(--navy); border-radius: var(--r-xl);
    padding: 48px 40px; color: white;
    position: sticky; top: 100px;
}
.contact-info-panel h3 {
    font-family: var(--font-display);
    font-size: 1.6rem; font-weight: 300;
    color: var(--white); margin-bottom: 16px;
    line-height: 1.2; letter-spacing: -.01em;
}
.contact-info-panel > p {
    color: rgba(255,255,255,.62);
    font-size: .93rem; line-height: 1.72; margin-bottom: 36px;
}
.contact-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; }
.contact-icon-wrap {
    width: 40px; height: 40px; flex-shrink: 0;
    background: rgba(255,255,255,.1); border-radius: var(--r-sm);
    display: flex; align-items: center; justify-content: center;
    color: var(--accent-bright);
}
.contact-detail h4 { font-size: .8rem; font-weight: 600; color: rgba(255,255,255,.45); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 3px; }
.contact-detail p, .contact-detail a { font-size: .93rem; color: rgba(255,255,255,.8); line-height: 1.5; }
.contact-detail a:hover { color: var(--white); }
.contact-expect {
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 28px;
}
.contact-expect h4 { font-size: .8rem; font-weight: 600; color: rgba(255,255,255,.45); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 16px; }
.expect-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.expect-list li {
    display: flex; align-items: center; gap: 10px;
    font-size: .9rem; color: rgba(255,255,255,.72);
}
.expect-list li svg { color: #4ade80; flex-shrink: 0; }

/* Form */
.contact-form-wrap {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--r-xl); padding: 48px;
    box-shadow: var(--shadow-sm);
}
.form-title {
    font-family: var(--font-display);
    font-size: 1.6rem; font-weight: 300; color: var(--navy);
    margin-bottom: 8px; letter-spacing: -.01em;
}
.form-subtitle { color: var(--text-mid); font-size: .93rem; margin-bottom: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block; margin-bottom: 6px;
    font-size: .82rem; font-weight: 600;
    color: var(--text-dark); letter-spacing: .02em;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%; padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--r-sm);
    font-size: .95rem; font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--white);
    transition: border-color .2s, box-shadow .2s;
    appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(42,125,225,.12);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b849c' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.btn-submit {
    width: 100%; background: var(--accent); color: var(--white);
    font-weight: 700; font-size: 1rem;
    padding: 15px 32px; border: none; border-radius: var(--r-sm);
    cursor: pointer; transition: background .2s, transform .15s, box-shadow .2s;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    letter-spacing: .02em;
    box-shadow: 0 4px 16px rgba(42,125,225,.3);
}
.btn-submit:hover { background: var(--accent-bright); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(42,125,225,.4); }
.btn-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.form-message {
    margin-top: 16px; padding: 14px 18px;
    border-radius: var(--r-sm); font-size: .9rem; font-weight: 500;
}
.form-message.success { background: #d1fae5; color: #065f46; border: 1px solid #10b981; }
.form-message.error { background: #fee2e2; color: #991b1b; border: 1px solid #ef4444; }

/* FAQ (contact page) */
.faq-section { padding: 80px 0; background: var(--off-white); }
.faq-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; margin-top: 48px; }
.faq-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--r-md); padding: 28px 32px;
    transition: box-shadow .22s;
}
.faq-card:hover { box-shadow: var(--shadow-md); }
.faq-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.faq-card p { color: var(--text-mid); font-size: .9rem; line-height: 1.68; }

/* ─────────────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .split-grid { grid-template-columns: 1fr; gap: 48px; }
    .split-image-wrap { aspect-ratio: 16/9; max-width: 580px; }
    .about-story-grid { grid-template-columns: 1fr; }
    .about-story-image { aspect-ratio: 16/9; max-width: 560px; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-info-panel { position: static; }
    .footer-content { grid-template-columns: 1fr 1fr; }
    .mission-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: flex; }
    .stats-grid { grid-template-columns: repeat(2,1fr); }
    .stat-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,.06); }
    .value-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; gap: 36px; }
    .steps-grid::before { display: none; }
    .diff-grid { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; gap: 32px; }
    .hero-cta { flex-direction: column; align-items: flex-start; }
    .contact-form-wrap { padding: 28px 20px; }
    .page-hero { padding: 120px 0 60px; }
}
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .stat-card { padding: 28px 16px; }
}
