/* ═══════════════════════════════════════════════════════════════════════════
   Mufare Solutions — main stylesheet
   ────────────────────────────────────────────────────────────────────────────
   Brand palette:
     Royal Blue:  #0057B8
     Deep Navy:   #0B1F3A
     Teal:        #00A99D
     Light Grey:  #F5F7FA
     Charcoal:    #2B2B2B
   Typography:
     Headings:    Montserrat
     Body:        Manrope
══════════════════════════════════════════════════════════════════════════ */

/* ── 1. CSS Reset & tokens ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    /* Default site zoom = 80% (zoom out so the site appears at 80% scale).
       Supported in Chrome, Edge, Safari, and Firefox 126+ (May 2024).
       Older Firefox falls back to 100% zoom (acceptable degradation). */
    zoom: 0.8;
}
/* For browsers that don't support `zoom` on html, fall back to body transform.
   This is a progressive enhancement — modern browsers ignore the @supports
   block when `zoom` works. */
@supports not (zoom: 0.8) {
    body { transform: scale(0.8); transform-origin: top center; }
}
body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #2B2B2B;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: #0B1F3A;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; color: inherit; }

:root {
    --royal: #0057B8;
    --navy: #0B1F3A;
    --teal: #00A99D;
    --cloud: #F5F7FA;
    --charcoal: #2B2B2B;
    --border: #e5e9f2;
    --muted: #5B6478;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
    --container: 1280px;
    --container-wide: 1400px;
    /* Navbar height (used by hero top-padding). Doubled logo = taller bar. */
    --navbar-h: 96px;
}

/* ── 2. Layout helpers ────────────────────────────────────────────────────── */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1.25rem; }
.container--wide { max-width: var(--container-wide); }
@media (min-width: 768px) { .container { padding: 0 2rem; } }
@media (min-width: 1024px) { .container { padding: 0 3rem; } }

.section { padding: 5rem 0; }
.section--light { background: #ffffff; }
.section--cloud { position: relative; background: var(--cloud); }
.section--dark { background: var(--navy); color: #fff; }
.section--tight { padding-top: 0; }
.section--cloud__bg {
    position: absolute; inset: 0; pointer-events: none; z-index: 0;
    background-image:
        linear-gradient(to right, rgba(11,31,58,0.04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(11,31,58,0.04) 1px, transparent 1px);
    background-size: 56px 56px;
}
.section--cloud > .container { position: relative; z-index: 1; }
@media (min-width: 1024px) { .section { padding: 7rem 0; } }

.section-head { max-width: 720px; margin-bottom: 3.5rem; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head--row { display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; max-width: none; flex-wrap: wrap; }
.section-head h2 { font-size: clamp(1.875rem, 4vw, 2.75rem); margin-top: 0.75rem; }
.section-head p { margin-top: 1rem; color: var(--muted); font-size: 1.05rem; }
.section-head--center p { margin-left: auto; margin-right: auto; }

.eyebrow {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.18em; color: var(--teal);
}
.eyebrow::before { content: ''; width: 2rem; height: 1px; background: currentColor; opacity: 0.6; }
.eyebrow--light { color: #5eead4; }
.eyebrow--light::before { background: #5eead4; }

.text-gradient {
    background: linear-gradient(135deg, #5eead4 0%, #93c5fd 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
}

/* ── 3. Buttons ───────────────────────────────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 0.75rem 1.5rem; border-radius: 999px;
    font-weight: 600; font-size: 0.875rem;
    transition: all 0.2s ease;
    cursor: pointer; white-space: nowrap;
}
.btn svg { transition: transform 0.2s ease; }
.btn:hover svg { transform: translateX(2px); }
.btn--sm { padding: 0.5rem 1.25rem; font-size: 0.8125rem; }
.btn--lg { padding: 1rem 2rem; font-size: 1rem; }
.btn--block { display: flex; width: 100%; }

.btn--primary { background: var(--royal); color: #fff; box-shadow: 0 10px 25px -10px rgba(0,87,184,0.5); }
.btn--primary:hover { background: #004aa0; transform: translateY(-2px); box-shadow: 0 15px 30px -10px rgba(0,87,184,0.6); }

.btn--teal { background: var(--teal); color: #fff; box-shadow: 0 10px 25px -10px rgba(0,169,157,0.5); }
.btn--teal:hover { background: #009388; transform: translateY(-2px); }

.btn--outline { background: transparent; color: var(--royal); border: 1px solid rgba(0,87,184,0.3); }
.btn--outline:hover { background: var(--royal); color: #fff; border-color: var(--royal); }

.btn--ghost-light { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.25); }
.btn--ghost-light:hover { background: rgba(255,255,255,0.1); }

.btn--ghost-dark { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.2); }
.btn--ghost-dark:hover { background: rgba(255,255,255,0.1); }

/* ── 4. Header / Navbar ──────────────────────────────────────────────────── */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    transition: all 0.3s ease;
    /* Bright navbar background by default — no transparent overlay on hero.
       The hero starts below the navbar (top-padding adjusted accordingly). */
    background: #ffffff;
    box-shadow: 0 2px 12px -2px rgba(11,31,58,0.08);
    overflow: visible; /* allow logo to extend below the white background */
}
.site-header--scrolled {
    background: #ffffff;
    box-shadow: 0 4px 20px -5px rgba(11,31,58,0.12);
}

.top-bar { background: var(--navy); color: #cbd5e1; transition: all 0.3s ease; max-height: 36px; overflow: hidden; }
.top-bar--hidden { max-height: 0; opacity: 0; }
.top-bar__inner { display: flex; justify-content: space-between; align-items: center; height: 36px; font-size: 0.75rem; }
.top-bar__left { display: flex; gap: 1.5rem; align-items: center; }
.top-bar__right { display: flex; gap: 1rem; align-items: center; }
.top-bar__right span:last-child { opacity: 0.8; }
.top-bar__divider { width: 1px; height: 12px; background: rgba(255,255,255,0.2); }
.top-bar__link { display: inline-flex; align-items: center; gap: 0.375rem; transition: color 0.2s; }
.top-bar__link:hover { color: #fff; }
@media (max-width: 1023px) { .top-bar { display: none; } }

.navbar { transition: all 0.3s ease; }
/* White navbar background height reduced to 75% of previous size.
   Logo is sized to the maximum that fits within the navbar height (preserving
   the logo's 1.5:1 aspect ratio — width = height × 1.5). The logo uses
   object-fit: contain so the full logo artwork is always visible within
   the navbar box, with the logo vertically and horizontally centered. */
.navbar__inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0;
    height: 60px;   /* mobile: 75% of previous 80px */
}

/* Logo: 1200×800, 1.5:1 aspect ratio (width = height × 1.5).
   Logo is maximised to fill the available navbar height — the logo's height
   equals the navbar height, and the width is height × 1.5 (preserving aspect
   ratio). object-fit: contain ensures the full logo is always visible and
   never distorted. The logo's RGBA transparency (with white opaque pixels)
   blends seamlessly with the white navbar. */
.navbar__logo {
    display: inline-flex; align-items: center; justify-content: center;
    align-self: center;
    width: 90px; height: 60px;       /* mobile — max size for 60px navbar, 1.5:1 aspect ratio */
    margin-left: 16px;
    transition: all 0.3s ease;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    flex-shrink: 0;
    overflow: hidden;
}
@media (min-width: 768px) {
    .navbar__inner { height: 75px;  /* tablet: 75% of previous 100px */ }
    .navbar__logo {
        width: 112px; height: 75px;  /* tablet — max size for 75px navbar, 1.5:1 aspect ratio */
        margin-left: 48px;
        padding: 0;
    }
}
@media (min-width: 1024px) {
    .navbar__inner { height: 90px; /* desktop: 75% of previous 120px */ }
    .navbar__logo {
        width: 185px; height: 220px;  /* desktop — max size for 90px navbar, 1.5:1 aspect ratio */
        margin-left: 96px;            /* ~1 inch to the right */
        padding: 0;
    }
}
.site-header--scrolled .navbar__logo {
    /* Slightly smaller when scrolled */
    width: 78px; height: 52px;
}
.site-header--scrolled .navbar__inner { height: 52px; }
@media (min-width: 768px) {
    .site-header--scrolled .navbar__logo { width: 90px; height: 60px; }
    .site-header--scrolled .navbar__inner { height: 60px; }
}
@media (min-width: 1024px) {
    .site-header--scrolled .navbar__logo { width: 112px; height: 75px; }
    .site-header--scrolled .navbar__inner { height: 75px; }
}
.navbar__logo img {
    width: 100%; height: 100%; object-fit: contain;
    /* Logo has a white background (RGB, no transparency) — it blends
       seamlessly with the white navbar. No mix-blend-mode needed. */
}
.navbar__logo:hover { transform: scale(1.03); /* subtle 3% scale on hover — fits within navbar */ }

.navbar__nav { display: flex; align-items: center; gap: 0.25rem; list-style: none; }
.navbar__link {
    display: inline-block; padding: 0.5rem 1rem; font-size: 0.95rem; font-weight: 500;
    color: rgba(11,31,58,0.75); /* dark text on bright navbar */
    transition: color 0.2s; position: relative;
}
.navbar__link:hover { color: var(--royal); }
.navbar__link--active { color: var(--royal) !important; font-weight: 600; }
.navbar__link--active::after {
    content: ''; position: absolute; left: 0.75rem; right: 0.75rem; bottom: -2px;
    height: 2px; background: var(--teal); border-radius: 2px;
}
@media (max-width: 1023px) { .navbar__nav { display: none; } }

.navbar__actions { display: flex; align-items: center; gap: 0.75rem; }
.navbar__cta { display: none; }
@media (min-width: 768px) { .navbar__cta { display: inline-flex; } }

.navbar__toggle { display: none; width: 48px; height: 48px; border-radius: 12px; align-items: center; justify-content: center; flex-direction: column; gap: 4px; background: rgba(11,31,58,0.05); }
.navbar__toggle-bar { width: 22px; height: 2px; background: var(--navy); transition: all 0.3s ease; }
@media (max-width: 1023px) { .navbar__toggle { display: inline-flex; } }

/* ── 5. Mobile menu drawer ────────────────────────────────────────────────── */
.mobile-menu { position: fixed; inset: 0; z-index: 110; pointer-events: none; }
.mobile-menu__backdrop { position: absolute; inset: 0; background: rgba(11,31,58,0.4); backdrop-filter: blur(4px); opacity: 0; transition: opacity 0.3s; }
.mobile-menu__drawer {
    position: absolute; right: 0; top: 0; bottom: 0; width: 85%; max-width: 24rem;
    background: #fff; box-shadow: -10px 0 40px rgba(0,0,0,0.2);
    transform: translateX(100%); transition: transform 0.3s ease;
    display: flex; flex-direction: column;
}
.mobile-menu--open { pointer-events: auto; }
.mobile-menu--open .mobile-menu__backdrop { opacity: 1; }
.mobile-menu--open .mobile-menu__drawer { transform: translateX(0); }

.mobile-menu__header { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.25rem; border-bottom: 1px solid var(--border); }
.mobile-menu__logo { width: 180px; height: 72px; overflow: hidden; background: transparent; border: none; border-radius: 0; padding: 4px; }
.mobile-menu__logo img { width: 100%; height: 100%; object-fit: contain; }
.mobile-menu__close { width: 40px; height: 40px; border-radius: 12px; background: rgba(11,31,58,0.05); color: var(--navy); display: inline-flex; align-items: center; justify-content: center; }
.mobile-menu__close:hover { background: rgba(11,31,58,0.1); }
.mobile-menu__nav { flex: 1; padding: 1rem 0.75rem; overflow-y: auto; }
.mobile-menu__link { display: flex; align-items: center; justify-content: space-between; padding: 0.875rem 1rem; border-radius: 12px; font-weight: 500; color: var(--navy); margin-bottom: 0.25rem; transition: background 0.2s; }
.mobile-menu__link:hover, .mobile-menu__link--active { background: rgba(0,87,184,0.05); color: var(--royal); }
.mobile-menu__footer { padding: 1.25rem; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 0.75rem; }
.mobile-menu__contact { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--muted); }
.mobile-menu__contact:hover { color: var(--royal); }

/* ── 6. Hero ──────────────────────────────────────────────────────────────── */
.hero { position: relative; overflow: hidden; background: var(--navy); color: #fff; padding-top: 6rem; padding-bottom: 5rem; }
@media (min-width: 1024px) { .hero { padding-top: 8rem; padding-bottom: 7rem; } }
.hero__bg { position: absolute; inset: 0; z-index: 0; background:
    radial-gradient(at 15% 20%, rgba(0,87,184,0.45) 0px, transparent 50%),
    radial-gradient(at 80% 10%, rgba(0,169,157,0.35) 0px, transparent 50%),
    radial-gradient(at 70% 85%, rgba(0,87,184,0.30) 0px, transparent 50%),
    radial-gradient(at 10% 90%, rgba(0,169,157,0.20) 0px, transparent 50%);
}
.hero__grid { position: absolute; inset: 0; background-image: linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px); background-size: 56px 56px; }
.hero__blob { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.hero__blob--1 { left: -10rem; top: 33%; width: 24rem; height: 24rem; background: rgba(0,87,184,0.3); }
.hero__blob--2 { right: -8rem; top: 2.5rem; width: 20rem; height: 20rem; background: rgba(0,169,157,0.2); }

.hero__inner { position: relative; z-index: 1; display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .hero__inner { grid-template-columns: 1.15fr 0.85fr; gap: 4rem; } }

.hero__badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.375rem 1rem; border-radius: 999px; border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.05); font-size: 0.75rem; font-weight: 500; color: #e2e8f0; backdrop-filter: blur(8px); }
.hero__badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); position: relative; }
.hero__badge-dot::after { content: ''; position: absolute; inset: 0; border-radius: 50%; background: var(--teal); animation: ping 2s ease-out infinite; }
@keyframes ping { 0% { transform: scale(1); opacity: 0.75; } 100% { transform: scale(2.5); opacity: 0; } }
.hero__badge-sep { color: rgba(255,255,255,0.4); }

.hero__title { color: #fff; font-size: clamp(2.25rem, 6vw, 4.25rem); margin-top: 1.5rem; }
.hero__title-accent { position: relative; display: inline-block; background: linear-gradient(135deg, #5eead4, #93c5fd); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero__title-accent::after { content: ''; position: absolute; left: 0; bottom: -4px; width: 100%; height: 6px; background: rgba(0,169,157,0.6); border-radius: 4px; opacity: 0.6; }

.hero__lead { margin-top: 1.5rem; font-size: 1.125rem; color: #cbd5e1; max-width: 36rem; }
.hero__lead strong { color: #fff; }

.hero__actions { margin-top: 2rem; display: flex; gap: 0.75rem; flex-wrap: wrap; }

.hero__trust { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 1rem 1.5rem; list-style: none; color: #cbd5e1; font-size: 0.875rem; }
.hero__trust li { display: inline-flex; align-items: center; gap: 0.5rem; }
.hero__trust svg { color: #5eead4; }

.hero__visual { display: none; }
@media (min-width: 1024px) { .hero__visual { display: block; } }

/* Hero orbit visual */
.hero-orbit { position: relative; width: 100%; max-width: 28rem; aspect-ratio: 1; margin: 0 auto; }
.hero-orbit__ring { position: absolute; inset: 0; border-radius: 50%; border: 1px solid rgba(255,255,255,0.1); }
.hero-orbit__ring--2 { inset: 2rem; }
.hero-orbit__ring--3 { inset: 4rem; }
.hero-orbit__pulse { position: absolute; left: 50%; top: 50%; width: 8rem; height: 8rem; transform: translate(-50%,-50%); background: rgba(0,169,157,0.2); border-radius: 50%; filter: blur(20px); animation: pulse-slow 4s ease-in-out infinite; }
@keyframes pulse-slow { 0%,100% { opacity: 0.4; } 50% { opacity: 0.8; } }
.hero-orbit__hub {
    position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
    width: 7rem; height: 7rem; border-radius: 24px;
    background: linear-gradient(135deg, var(--royal), var(--navy));
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.25rem;
    color: #fff; box-shadow: 0 20px 40px -10px rgba(0,87,184,0.5); border: 1px solid rgba(255,255,255,0.2);
}
.hero-orbit__hub svg { color: #5eead4; }
.hero-orbit__hub strong { font-family: 'Montserrat', sans-serif; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.hero-orbit__hub small { font-size: 0.625rem; text-transform: uppercase; letter-spacing: 0.2em; color: #5eead4; }
.hero-orbit__node {
    position: absolute; width: 3.5rem; height: 3.5rem; border-radius: 16px;
    background: rgba(255,255,255,0.05); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.15);
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.25rem;
    color: #5eead4; box-shadow: 0 4px 12px rgba(0,0,0,0.2); animation: float 6s ease-in-out infinite;
}
.hero-orbit__node span { font-size: 0.625rem; color: #cbd5e1; text-transform: uppercase; letter-spacing: 0.05em; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
.hero-orbit__node--1 { left: 94%; top: 50%; transform: translate(-50%,-50%); }
.hero-orbit__node--2 { left: 72%; top: 6%; transform: translate(-50%,-50%); animation-delay: 0.4s; }
.hero-orbit__node--3 { left: 28%; top: 6%; transform: translate(-50%,-50%); animation-delay: 0.8s; }
.hero-orbit__node--4 { left: 6%; top: 50%; transform: translate(-50%,-50%); animation-delay: 1.2s; }
.hero-orbit__node--5 { left: 28%; top: 94%; transform: translate(-50%,-50%); animation-delay: 1.6s; }
.hero-orbit__node--6 { left: 72%; top: 94%; transform: translate(-50%,-50%); animation-delay: 2s; }

.hero__vendors { position: relative; z-index: 1; margin-top: 4rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); }
.hero__vendors-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.18em; color: rgba(203,213,225,0.7); text-align: center; }
.hero__vendors-list { margin-top: 1.25rem; display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem 1.75rem; font-size: 0.875rem; font-weight: 500; color: #cbd5e1; }
.hero__vendors-list span { opacity: 0.8; transition: opacity 0.2s; }
.hero__vendors-list span:hover { opacity: 1; }

/* ── 7. Cards ─────────────────────────────────────────────────────────────── */
.card-grid { display: grid; gap: 1.25rem; }
.card-grid--2 { grid-template-columns: 1fr; }
.card-grid--3 { grid-template-columns: 1fr; }
.card-grid--4 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .card-grid--2, .card-grid--3, .card-grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .card-grid--3 { grid-template-columns: repeat(3, 1fr); } .card-grid--4 { grid-template-columns: repeat(4, 1fr); } }

.card {
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 1.75rem; box-shadow: 0 1px 3px rgba(11,31,58,0.05);
    transition: all 0.3s ease; position: relative; overflow: hidden;
}
.card--hover:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -15px rgba(0,87,184,0.15); border-color: rgba(0,87,184,0.2); }
.card--hover:hover::before { content: ''; position: absolute; left: 0; right: 0; top: 0; height: 4px; background: linear-gradient(to right, var(--royal), var(--teal)); }
.card__top { display: flex; align-items: center; justify-content: space-between; }
.card__icon {
    width: 48px; height: 48px; border-radius: 12px;
    display: inline-flex; align-items: center; justify-content: center;
    transition: all 0.3s ease;
}
.card__icon--gradient { background: linear-gradient(135deg, rgba(0,87,184,0.1), rgba(0,169,157,0.1)); color: var(--royal); border: 1px solid rgba(0,87,184,0.1); }
.card--hover:hover .card__icon--gradient { background: linear-gradient(135deg, var(--royal), var(--teal)); color: #fff; }
.card__icon--glass { background: rgba(255,255,255,0.1); color: #5eead4; border: 1px solid rgba(255,255,255,0.2); }
.card__number { font-family: 'Montserrat', sans-serif; font-size: 1.75rem; font-weight: 700; color: rgba(11,31,58,0.1); }
.card__title { font-size: 1.125rem; margin-top: 1.25rem; }
.card__tagline { font-size: 0.875rem; font-weight: 600; color: var(--teal); margin-top: 0.5rem; }
.card__text { font-size: 0.875rem; color: var(--muted); margin-top: 0.75rem; line-height: 1.6; }
.card__text--clamp { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.card__tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; list-style: none; }
.card__tag { display: inline-flex; align-items: center; gap: 0.25rem; padding: 0.25rem 0.75rem; border-radius: 999px; background: var(--cloud); color: rgba(11,31,58,0.7); font-size: 0.75rem; font-weight: 500; border: 1px solid var(--border); }
.card__link { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1.75rem; font-size: 0.875rem; font-weight: 600; color: var(--royal); transition: color 0.2s; }
.card__link:hover { color: #004aa0; }
.card__link-text { display: inline-flex; align-items: center; gap: 0.25rem; margin-top: auto; font-size: 0.75rem; font-weight: 600; color: var(--teal); opacity: 0; transition: opacity 0.3s; }
.card--link:hover .card__link-text { opacity: 1; }
.card--link { display: flex; flex-direction: column; }
.card__focus { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.5rem; }
.card__focus li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; font-weight: 500; color: var(--navy); }
.card__focus svg { color: var(--teal); }

/* Feature card (dark) */
.card--feature { background: linear-gradient(135deg, var(--navy), #0e2a4d); color: #fff; border: none; box-shadow: 0 20px 40px -10px rgba(11,31,58,0.3); }
.card--feature__bg { position: absolute; inset: 0; pointer-events: none; opacity: 0.5; background:
    radial-gradient(circle at top right, rgba(0,87,184,0.4), transparent 50%),
    radial-gradient(circle at bottom left, rgba(0,169,157,0.2), transparent 50%),
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px) 0 0 / 56px 56px,
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px) 0 0 / 56px 56px;
}
.card--feature .card__title { color: #fff; }
.card--feature .card__tagline { color: #5eead4; }
.card--feature .card__text { color: #cbd5e1; }
.card--feature .card__tag { background: rgba(255,255,255,0.1); color: #e2e8f0; border-color: rgba(255,255,255,0.1); }
.card--feature .card__number { color: rgba(255,255,255,0.15); }
.card--feature .card__link { color: #5eead4; }
.card--feature .card__link:hover { color: #93f5e9; }
.card--feature .card__relative { position: relative; z-index: 1; }

.card--cta { display: flex; flex-direction: column; justify-content: center; background: rgba(0,87,184,0.03); border: 1px dashed rgba(0,87,184,0.3); text-align: left; }
.card--cta h3 { color: var(--navy); margin-bottom: 0.5rem; }
.card--cta p { color: var(--muted); font-size: 0.875rem; }

.card--process { position: relative; }
.card--process::after { content: '→'; position: absolute; right: -1rem; top: 50%; transform: translateY(-50%); width: 24px; height: 24px; background: var(--cloud); color: var(--royal); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.875rem; font-weight: 700; z-index: 1; }
@media (max-width: 1023px) { .card--process::after { display: none; } }
.card--process:last-child::after { display: none; }

/* ── 8. Stats ─────────────────────────────────────────────────────────────── */
.stats__bg { position: absolute; inset: 0; background:
    radial-gradient(at 10% 10%, rgba(0,87,184,0.3), transparent 50%),
    radial-gradient(at 90% 90%, rgba(0,169,157,0.2), transparent 50%);
    opacity: 0.5; }
.stats__grid-layout { position: relative; z-index: 1; display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 1024px) { .stats__grid-layout { grid-template-columns: 1fr 1.4fr; } }
.stats__intro h2 { color: #fff; margin-top: 1rem; font-size: clamp(1.875rem, 4vw, 2.5rem); }
.stats__intro p { color: #cbd5e1; margin-top: 1.25rem; max-width: 28rem; }
.stats__grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .stats__grid { grid-template-columns: repeat(2, 1fr); } }
.stat-card { padding: 1.5rem; border-radius: var(--radius); background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); backdrop-filter: blur(8px); transition: background 0.3s; position: relative; overflow: hidden; }
.stat-card:hover { background: rgba(255,255,255,0.07); }
.stat-card::after { content: ''; position: absolute; right: -1.5rem; top: -1.5rem; width: 5rem; height: 5rem; border-radius: 50%; background: rgba(0,169,157,0.1); transition: transform 0.5s; }
.stat-card:hover::after { transform: scale(2); }
.stat-card__value { font-family: 'Montserrat', sans-serif; font-size: 2.5rem; font-weight: 700; color: #fff; line-height: 1; }
@media (min-width: 640px) { .stat-card__value { font-size: 3rem; } }
.stat-card__label { font-size: 0.875rem; font-weight: 600; color: #5eead4; margin-top: 0.5rem; }
.stat-card__desc { font-size: 0.8125rem; color: #cbd5e1; margin-top: 0.75rem; line-height: 1.6; }

/* ── 9. Why Choose Us ─────────────────────────────────────────────────────── */
.why-grid { display: grid; gap: 3rem; }
@media (min-width: 1024px) { .why-grid { grid-template-columns: 0.9fr 1.4fr; } }
.why-intro h2 { font-size: clamp(1.875rem, 4vw, 2.5rem); margin-top: 0.75rem; }
.why-intro p { color: var(--muted); margin-top: 1rem; }
.why-promise { margin-top: 2rem; padding: 1.5rem; border-radius: var(--radius); background: rgba(0,169,157,0.05); border: 1px solid rgba(0,169,157,0.2); }
.why-promise__label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--teal); }
.why-promise__quote { font-family: 'Montserrat', sans-serif; font-size: 1.25rem; font-weight: 700; color: var(--navy); margin-top: 0.75rem; line-height: 1.3; }
.why-promise__note { font-size: 0.875rem; color: var(--muted); margin-top: 0.75rem; }
.why-list { display: grid; gap: 1rem; }
@media (min-width: 640px) { .why-list { grid-template-columns: repeat(2, 1fr); } }
.why-item { display: flex; gap: 1rem; padding: 1.25rem; border: 1px solid var(--border); background: #fff; border-radius: 12px; transition: all 0.3s; }
.why-item:hover { transform: translateY(-2px); border-color: rgba(0,87,184,0.2); box-shadow: 0 10px 20px -5px rgba(0,87,184,0.05); }
.why-item__icon { width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0; background: linear-gradient(135deg, rgba(0,87,184,0.1), rgba(0,169,157,0.1)); color: var(--royal); border: 1px solid rgba(0,87,184,0.1); display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.why-item:hover .why-item__icon { background: linear-gradient(135deg, var(--royal), var(--teal)); color: #fff; }
.why-item h3 { font-size: 1rem; }
.why-item p { font-size: 0.8125rem; color: var(--muted); margin-top: 0.375rem; }

/* ── 10. Founder CTA ──────────────────────────────────────────────────────── */
.founder-cta { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .founder-cta { grid-template-columns: 1fr 1.2fr; } }
.founder-cta__card { position: relative; max-width: 28rem; margin: 0 auto; }
.founder-cta__card-bg { position: absolute; inset: 0; border-radius: 24px; background: linear-gradient(135deg, rgba(0,87,184,0.1), rgba(0,169,157,0.05)); transform: scale(1.05); }
.founder-cta__card-inner { position: relative; padding: 2rem; border-radius: 24px; background: linear-gradient(135deg, var(--navy), #0e2a4d); color: #fff; box-shadow: 0 25px 50px -15px rgba(11,31,58,0.3); overflow: hidden; }
.founder-cta__card-inner::before { content: ''; position: absolute; right: -5rem; top: -5rem; width: 15rem; height: 15rem; border-radius: 50%; background: rgba(0,87,184,0.4); filter: blur(60px); }
.founder-cta__card-inner::after { content: ''; position: absolute; left: -5rem; bottom: -5rem; width: 15rem; height: 15rem; border-radius: 50%; background: rgba(0,169,157,0.2); filter: blur(60px); }
.founder-cta__avatar { width: 5rem; height: 5rem; border-radius: 16px; background: linear-gradient(135deg, var(--teal), var(--royal)); display: flex; align-items: center; justify-content: center; font-family: 'Montserrat', sans-serif; font-size: 1.875rem; font-weight: 700; position: relative; }
.founder-cta__avatar-badge { position: absolute; right: -6px; bottom: -6px; width: 1.75rem; height: 1.75rem; background: var(--teal); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; border: 2px solid var(--navy); }
.founder-cta__card-inner > div:nth-child(2) { position: relative; z-index: 1; margin-top: 1rem; }
.founder-cta__card-inner h3 { color: #fff; font-size: 1.5rem; }
.founder-cta__title { color: #5eead4; font-size: 0.875rem; font-weight: 600; margin-top: 0.25rem; }
.founder-cta__location { color: #94a3b8; font-size: 0.75rem; margin-top: 0.25rem; display: flex; align-items: center; gap: 0.25rem; }
.founder-cta__quote { position: relative; z-index: 1; margin-top: 1.5rem; padding: 1.25rem; border-radius: 12px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); }
.founder-cta__quote svg { color: #5eead4; opacity: 0.6; }
.founder-cta__quote p { font-family: 'Montserrat', sans-serif; font-size: 1rem; font-weight: 500; color: #e2e8f0; margin-top: 0.75rem; line-height: 1.5; }
.founder-cta__metrics { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; margin-top: 1.5rem; }
.founder-cta__metric { padding: 0.75rem; border-radius: 12px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); text-align: center; }
.founder-cta__metric strong { display: block; font-family: 'Montserrat', sans-serif; font-size: 1.25rem; font-weight: 700; color: #5eead4; }
.founder-cta__metric span { font-size: 0.625rem; color: #94a3b8; line-height: 1.2; display: block; margin-top: 0.25rem; }
.founder-cta__badge { position: absolute; right: -1rem; top: -1rem; padding: 0.75rem 1rem; background: #fff; border-radius: 16px; box-shadow: 0 10px 25px -5px rgba(0,0,0,0.15); display: flex; align-items: center; gap: 0.5rem; animation: float 5s ease-in-out infinite; }
.founder-cta__badge svg { color: var(--teal); }
.founder-cta__badge small { display: block; font-size: 0.625rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }
.founder-cta__badge strong { display: block; font-size: 0.75rem; color: var(--navy); }

.founder-cta__copy h2 { font-size: clamp(1.875rem, 4vw, 2.5rem); margin-top: 0.75rem; }
.founder-cta__copy > p { color: var(--muted); margin-top: 1.25rem; }
.founder-cta__highlights { display: grid; gap: 0.75rem; margin-top: 1.75rem; }
@media (min-width: 640px) { .founder-cta__highlights { grid-template-columns: repeat(2, 1fr); } }
.founder-cta__highlight { display: flex; gap: 0.75rem; padding: 1rem; border: 1px solid var(--border); background: var(--cloud); border-radius: 12px; }
.founder-cta__highlight svg { color: var(--teal); flex-shrink: 0; margin-top: 2px; }
.founder-cta__highlight strong { display: block; font-size: 0.875rem; color: var(--navy); }
.founder-cta__highlight p { font-size: 0.75rem; color: var(--muted); margin-top: 0.25rem; }
.founder-cta__actions { margin-top: 2rem; display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* ── 11. CTA Banner ───────────────────────────────────────────────────────── */
.cta-banner { position: relative; overflow: hidden; border-radius: 24px; padding: 3rem 1.5rem; background: var(--navy); color: #fff; text-align: center; box-shadow: 0 25px 50px -15px rgba(11,31,58,0.3); }
@media (min-width: 768px) { .cta-banner { padding: 4rem 3rem; } }
.cta-banner__bg { position: absolute; inset: 0; opacity: 0.5; background:
    radial-gradient(circle at top left, rgba(0,87,184,0.4), transparent 50%),
    radial-gradient(circle at bottom right, rgba(0,169,157,0.3), transparent 50%);
}
.cta-banner__bg::after { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px); background-size: 56px 56px; }
.cta-banner__content { position: relative; z-index: 1; max-width: 48rem; margin: 0 auto; }
.cta-banner__badge { display: inline-flex; align-items: center; gap: 0.375rem; padding: 0.375rem 1rem; border-radius: 999px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.2); font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.18em; color: #5eead4; backdrop-filter: blur(8px); }
.cta-banner h2 { color: #fff; font-size: clamp(1.875rem, 4vw, 2.75rem); margin-top: 1.25rem; }
.cta-banner p { color: #cbd5e1; margin-top: 1.25rem; font-size: 1.05rem; }
.cta-banner__actions { margin-top: 2rem; display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }
.cta-banner__note { margin-top: 1.5rem; font-size: 0.75rem; color: #94a3b8; }

/* ── 12. Page hero ────────────────────────────────────────────────────────── */
.page-hero { position: relative; padding-top: 6rem; padding-bottom: 4rem; background: var(--navy); color: #fff; overflow: hidden; }
@media (min-width: 1024px) { .page-hero { padding-top: 8rem; padding-bottom: 5rem; } }
.page-hero__bg { position: absolute; inset: 0; background:
    radial-gradient(at 15% 20%, rgba(0,87,184,0.3), transparent 50%),
    radial-gradient(at 80% 80%, rgba(0,169,157,0.2), transparent 50%);
}
.page-hero__bg::after { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px); background-size: 56px 56px; }
.page-hero > .container { position: relative; z-index: 1; }
.breadcrumb { display: flex; align-items: center; gap: 0.375rem; font-size: 0.75rem; color: #94a3b8; margin-bottom: 1.5rem; }
.breadcrumb a:hover { color: #5eead4; }
.breadcrumb span { color: #5eead4; font-weight: 500; }
.page-hero h1 { color: #fff; font-size: clamp(2.25rem, 5vw, 3.5rem); margin-top: 1rem; max-width: 56rem; }
.page-hero p { color: #cbd5e1; font-size: 1.125rem; margin-top: 1.5rem; max-width: 42rem; }

/* ── 13. Story (About) ────────────────────────────────────────────────────── */
.story-grid { display: grid; gap: 3rem; margin-bottom: 4rem; }
@media (min-width: 1024px) { .story-grid { grid-template-columns: 0.85fr 1.15fr; } }
.story-grid h2 { font-size: clamp(1.875rem, 4vw, 2.5rem); margin-top: 0.75rem; }
.story-tagline { margin-top: 2rem; display: inline-flex; align-items: center; gap: 0.75rem; padding: 0.75rem 1.25rem; border-radius: 12px; background: rgba(0,169,157,0.05); border: 1px solid rgba(0,169,157,0.2); }
.story-tagline svg { color: var(--teal); }
.story-tagline small { display: block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--teal); }
.story-tagline strong { font-family: 'Montserrat', sans-serif; font-size: 1rem; color: var(--navy); }
.story-text p { font-size: 1.05rem; color: var(--muted); margin-bottom: 1.25rem; line-height: 1.7; }

.vm-grid { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .vm-grid { grid-template-columns: repeat(2, 1fr); } }
.vm-card { position: relative; overflow: hidden; border-radius: 24px; padding: 2rem; color: #fff; box-shadow: 0 20px 40px -10px rgba(0,0,0,0.2); }
.vm-card--blue { background: linear-gradient(135deg, var(--royal), #003e8a); }
.vm-card--teal { background: linear-gradient(135deg, var(--teal), #008070); }
.vm-card__bg { position: absolute; right: -4rem; top: -4rem; width: 12rem; height: 12rem; border-radius: 50%; background: rgba(255,255,255,0.1); filter: blur(40px); }
.vm-card__content { position: relative; z-index: 1; }
.vm-card__icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.2); display: inline-flex; align-items: center; justify-content: center; }
.vm-card h3 { color: #fff; margin-top: 1.25rem; font-size: 1.25rem; }
.vm-card p { color: #f1f5f9; margin-top: 0.75rem; font-size: 1rem; }

/* ── 14. Founder page ─────────────────────────────────────────────────────── */
.founder-grid { display: grid; gap: 2rem; margin-top: 3.5rem; }
@media (min-width: 1024px) { .founder-grid { grid-template-columns: 0.85fr 1.15fr; } }
.founder-card { position: relative; }
.founder-card__bg { position: absolute; inset: 0; border-radius: 24px; background: linear-gradient(135deg, var(--navy), #0e2a4d); }
.founder-card__inner { position: relative; padding: 2rem; border-radius: 24px; overflow: hidden; box-shadow: 0 25px 50px -15px rgba(11,31,58,0.3); color: #fff; }
.founder-card__inner::before { content: ''; position: absolute; right: -5rem; top: -5rem; width: 15rem; height: 15rem; border-radius: 50%; background: rgba(0,87,184,0.4); filter: blur(60px); }
.founder-card__inner::after { content: ''; position: absolute; left: -5rem; bottom: -5rem; width: 15rem; height: 15rem; border-radius: 50%; background: rgba(0,169,157,0.2); filter: blur(60px); }
.founder-card__top { position: relative; z-index: 1; display: flex; gap: 1.25rem; align-items: center; }
.founder-card__avatar { width: 6rem; height: 6rem; border-radius: 16px; background: linear-gradient(135deg, var(--teal), var(--royal)); display: flex; align-items: center; justify-content: center; font-family: 'Montserrat', sans-serif; font-size: 2rem; font-weight: 700; position: relative; flex-shrink: 0; }
.founder-card__avatar-badge { position: absolute; right: -6px; bottom: -6px; width: 1.75rem; height: 1.75rem; background: var(--teal); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; border: 2px solid var(--navy); }
.founder-card__top h3 { color: #fff; font-size: 1.5rem; }
.founder-card__title { color: #5eead4; font-size: 0.875rem; font-weight: 600; margin-top: 0.25rem; }
.founder-card__location { color: #94a3b8; font-size: 0.75rem; margin-top: 0.25rem; display: flex; align-items: center; gap: 0.25rem; }
.founder-card__quote { position: relative; z-index: 1; margin-top: 1.75rem; padding: 1.25rem; border-radius: 12px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); }
.founder-card__quote p { font-family: 'Montserrat', sans-serif; font-size: 1rem; font-weight: 500; color: #e2e8f0; line-height: 1.5; }
.founder-card__metrics { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; margin-top: 1.5rem; }
.founder-card__metric { padding: 0.75rem; border-radius: 12px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); text-align: center; }
.founder-card__metric strong { display: block; font-family: 'Montserrat', sans-serif; font-size: 1.25rem; font-weight: 700; color: #5eead4; }
.founder-card__metric span { font-size: 0.625rem; color: #94a3b8; line-height: 1.2; display: block; margin-top: 0.25rem; }
.founder-card__contact { position: relative; z-index: 1; margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.875rem; }
.founder-card__contact a { color: #cbd5e1; display: flex; align-items: center; gap: 0.5rem; transition: color 0.2s; }
.founder-card__contact a:hover { color: #5eead4; }
.founder-card__contact svg { color: #5eead4; }
.founder-card .btn { position: relative; z-index: 1; margin-top: 1.5rem; }

.founder-competencies { padding: 2rem; border: 1px solid var(--border); background: var(--cloud); border-radius: 24px; }
.founder-competencies h3 { font-size: 1.25rem; }
.founder-competencies > p { color: var(--muted); font-size: 0.875rem; margin-top: 0.5rem; }
.founder-competencies__list { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
.founder-competency h4 { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.18em; color: var(--teal); }
.founder-competency__tags { margin-top: 0.75rem; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tag { display: inline-flex; align-items: center; gap: 0.375rem; padding: 0.375rem 0.75rem; border-radius: 999px; background: #fff; color: var(--navy); font-size: 0.75rem; font-weight: 500; border: 1px solid var(--border); box-shadow: 0 1px 2px rgba(0,0,0,0.03); }
.tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--teal); }

.career { margin-top: 4rem; }
.career__head { display: flex; align-items: center; gap: 0.75rem; }
.career__icon { width: 40px; height: 40px; border-radius: 12px; background: rgba(0,87,184,0.1); color: var(--royal); border: 1px solid rgba(0,87,184,0.1); display: flex; align-items: center; justify-content: center; }
.career__head h3 { font-size: 1.25rem; }
.career__head p { font-size: 0.875rem; color: var(--muted); }
.career__list { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.25rem; }
.career-item { display: grid; gap: 1.25rem; padding: 1.5rem; border: 1px solid var(--border); background: #fff; border-radius: 16px; transition: all 0.3s; }
.career-item:hover { border-color: rgba(0,87,184,0.2); box-shadow: 0 10px 20px -5px rgba(0,87,184,0.05); }
@media (min-width: 768px) { .career-item { grid-template-columns: 200px 1fr; } .career-item > div:first-child { border-right: 1px solid var(--border); padding-right: 1.5rem; } }
.career-item__badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.25rem 0.75rem; border-radius: 999px; background: rgba(0,169,157,0.1); color: var(--teal); font-size: 0.75rem; font-weight: 600; width: fit-content; }
.career-item__badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--teal); }
.career-item h4 { font-size: 1.125rem; margin-top: 0.75rem; }
.career-item__company { font-size: 0.875rem; font-weight: 600; color: var(--royal); margin-top: 0.25rem; }
.career-item__location { font-size: 0.75rem; color: var(--muted); margin-top: 0.125rem; }
.career-item__highlights { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.career-item__highlights li { display: flex; gap: 0.5rem; font-size: 0.875rem; color: var(--muted); }
.career-item__highlights svg { color: var(--teal); flex-shrink: 0; margin-top: 2px; }

.founder-bottom { margin-top: 4rem; display: grid; gap: 2rem; }
@media (min-width: 768px) { .founder-bottom { grid-template-columns: repeat(2, 1fr); } }
.founder-bottom__col { padding: 2rem; border: 1px solid var(--border); background: var(--cloud); border-radius: 24px; }
.founder-bottom__head { display: flex; align-items: center; gap: 0.75rem; }
.founder-bottom__head--spaced { margin-top: 2rem; }
.founder-bottom__icon { width: 40px; height: 40px; border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.founder-bottom__icon--blue { background: rgba(0,87,184,0.1); color: var(--royal); border: 1px solid rgba(0,87,184,0.1); }
.founder-bottom__icon--teal { background: rgba(0,169,157,0.1); color: var(--teal); border: 1px solid rgba(0,169,157,0.1); }
.founder-bottom__icon--gold { background: rgba(245,158,11,0.1); color: #f59e0b; border: 1px solid rgba(245,158,11,0.1); }
.founder-bottom__head h3 { font-size: 1.25rem; }
.founder-bottom__list { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; list-style: none; }
.founder-bottom__list li { display: flex; align-items: flex-start; gap: 0.75rem; padding: 1rem; border: 1px solid var(--border); background: #fff; border-radius: 12px; }
.founder-bottom__list--dark li { background: rgba(0,0,0,0); border: none; padding: 0.5rem 0; }
.founder-bottom__list--dark svg { color: #5eead4; }
.founder-bottom__list li strong { display: block; font-size: 0.875rem; color: var(--navy); }
.founder-bottom__list li p { font-size: 0.8125rem; color: var(--royal); margin-top: 0.125rem; }
.founder-bottom__list li small { font-size: 0.75rem; color: var(--muted); }
.founder-bottom__year { padding: 0.25rem 0.625rem; border-radius: 999px; background: rgba(0,169,157,0.1); color: var(--teal); font-size: 0.75rem; font-weight: 600; margin-left: auto; flex-shrink: 0; }
.founder-bottom__bullet { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); margin-top: 6px; flex-shrink: 0; }

/* ── 15. Services: divisions ─────────────────────────────────────────────── */
.anchor-nav { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 2.5rem; margin-bottom: 4rem; }
.anchor-nav__link { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; border-radius: 999px; border: 1px solid var(--border); background: var(--cloud); color: var(--navy); font-size: 0.875rem; font-weight: 500; transition: all 0.2s; }
.anchor-nav__link:hover { background: var(--royal); color: #fff; border-color: var(--royal); }
.anchor-nav__num { font-family: 'Montserrat', sans-serif; font-size: 0.75rem; font-weight: 700; color: var(--teal); }
.anchor-nav__link:hover .anchor-nav__num { color: #5eead4; }

.divisions { display: flex; flex-direction: column; gap: 5rem; }
.division { display: grid; gap: 2rem; align-items: center; scroll-margin-top: 7rem; }
@media (min-width: 1024px) { .division { grid-template-columns: repeat(2, 1fr); gap: 3rem; } .division--reversed .division__visual { order: 2; } }
.division-card { position: relative; padding: 2rem; border-radius: 24px; background: linear-gradient(135deg, var(--navy), #0e2a4d); color: #fff; box-shadow: 0 25px 50px -15px rgba(11,31,58,0.3); overflow: hidden; max-width: 28rem; margin: 0 auto; }
.division-card__bg { position: absolute; inset: 0; opacity: 0.5; background:
    radial-gradient(circle at top right, rgba(0,87,184,0.4), transparent 50%),
    radial-gradient(circle at bottom left, rgba(0,169,157,0.2), transparent 50%),
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px) 0 0 / 56px 56px,
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px) 0 0 / 56px 56px;
}
.division-card__top { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; }
.division-card__icon { width: 64px; height: 64px; border-radius: 16px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; color: #5eead4; }
.division-card__num { font-family: 'Montserrat', sans-serif; font-size: 3rem; font-weight: 700; color: rgba(255,255,255,0.1); }
.division-card h4 { position: relative; z-index: 1; color: #fff; font-size: 1.25rem; margin-top: 1.5rem; }
.division-card > p { position: relative; z-index: 1; color: #5eead4; font-size: 0.875rem; margin-top: 0.25rem; }
.division-card__tags { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; list-style: none; }
.division-card__tags li { display: inline-flex; align-items: center; gap: 0.25rem; padding: 0.25rem 0.625rem; border-radius: 999px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: #e2e8f0; font-size: 0.6875rem; font-weight: 500; }
.division-card__tags li::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: #5eead4; }
.division-card__more { color: #94a3b8 !important; }
.division-card__stats { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; margin-top: 1.5rem; }
.division-card__stats > div { padding: 0.75rem; border-radius: 12px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); text-align: center; }
.division-card__stats strong { display: block; font-family: 'Montserrat', sans-serif; font-size: 1.125rem; font-weight: 700; color: #5eead4; }
.division-card__stats small { font-size: 0.625rem; text-transform: uppercase; letter-spacing: 0.1em; color: #94a3b8; }

.division__head { display: flex; align-items: center; gap: 1rem; }
.division__icon { width: 56px; height: 56px; border-radius: 16px; background: linear-gradient(135deg, var(--royal), var(--teal)); color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 25px -10px rgba(0,87,184,0.5); }
.division__num { font-family: 'Montserrat', sans-serif; font-size: 3rem; font-weight: 700; color: rgba(11,31,58,0.1); }
.division__content h3 { font-size: clamp(1.5rem, 3vw, 1.875rem); margin-top: 1.25rem; }
.division__tagline { color: var(--teal); font-weight: 600; margin-top: 0.5rem; }
.division__desc { color: var(--muted); margin-top: 1rem; font-size: 1rem; line-height: 1.7; }
.division__services { margin-top: 1.75rem; display: grid; gap: 0.75rem; }
@media (min-width: 640px) { .division__services { grid-template-columns: repeat(2, 1fr); } }
.division__service { display: flex; gap: 0.75rem; padding: 0.875rem; border: 1px solid var(--border); background: var(--cloud); border-radius: 12px; transition: all 0.2s; }
.division__service:hover { border-color: rgba(0,87,184,0.2); background: #fff; }
.division__service-check { width: 24px; height: 24px; border-radius: 6px; background: rgba(0,169,157,0.1); color: var(--teal); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.division__service strong { display: block; font-size: 0.875rem; color: var(--navy); }
.division__service p { font-size: 0.75rem; color: var(--muted); margin-top: 0.125rem; }
.division__highlights { margin-top: 1.5rem; padding: 1.25rem; border-radius: 16px; background: rgba(0,169,157,0.05); border: 1px solid rgba(0,169,157,0.2); }
.division__highlights strong { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--teal); }
.division__highlights ul { margin-top: 0.75rem; display: flex; flex-direction: column; gap: 0.5rem; list-style: none; }
.division__highlights li { display: flex; gap: 0.5rem; font-size: 0.875rem; color: var(--navy); }
.division__highlights svg { color: var(--teal); flex-shrink: 0; margin-top: 2px; }
.division__content .btn { margin-top: 1.75rem; }

.process-note { max-width: 48rem; margin: 3rem auto 0; padding: 1.5rem; border-radius: 16px; background: rgba(0,169,157,0.05); border: 1px solid rgba(0,169,157,0.2); text-align: center; color: var(--navy); font-size: 0.875rem; }
.process-note strong { color: var(--teal); }

/* ── 16. Partners ─────────────────────────────────────────────────────────── */
.partner-stat { padding: 1.5rem; border: 1px solid var(--border); background: var(--cloud); border-radius: 16px; text-align: center; }
.partner-stat__icon { width: 48px; height: 48px; border-radius: 12px; background: linear-gradient(135deg, var(--royal), var(--teal)); color: #fff; display: inline-flex; align-items: center; justify-content: center; }
.partner-stat strong { display: block; font-family: 'Montserrat', sans-serif; font-size: 1.875rem; font-weight: 700; color: var(--navy); margin-top: 1rem; }
.partner-stat span { display: block; font-size: 0.875rem; font-weight: 600; color: var(--teal); margin-top: 0.25rem; }
.partner-stat p { font-size: 0.8125rem; color: var(--muted); margin-top: 0.5rem; }

.partner-categories { display: flex; flex-direction: column; gap: 2.5rem; }
.partner-category { padding: 2rem; border: 1px solid var(--border); background: #fff; border-radius: 24px; box-shadow: 0 1px 3px rgba(11,31,58,0.05); }
@media (min-width: 768px) { .partner-category { padding: 2.5rem; } }
.partner-category__head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 1.25rem; border-bottom: 1px solid var(--border); }
.partner-category__head h3 { font-size: 1.5rem; }
.partner-category__count { padding: 0.25rem 0.75rem; border-radius: 999px; background: rgba(0,169,157,0.1); color: var(--teal); font-size: 0.75rem; font-weight: 600; }
.partner-category__grid { margin-top: 1.5rem; display: grid; gap: 1rem; }
@media (min-width: 640px) { .partner-category__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .partner-category__grid { grid-template-columns: repeat(3, 1fr); } }
.partner-vendor { display: flex; align-items: center; gap: 1rem; padding: 1.25rem; border: 1px solid var(--border); background: var(--cloud); border-radius: 16px; transition: all 0.2s; }
.partner-vendor:hover { border-color: rgba(0,87,184,0.2); background: #fff; transform: translateY(-2px); box-shadow: 0 10px 20px -5px rgba(0,87,184,0.05); }
.partner-vendor__logo { width: 56px; height: 56px; border-radius: 12px; background: linear-gradient(135deg, var(--navy), #0e2a4d); color: #fff; display: flex; align-items: center; justify-content: center; font-family: 'Montserrat', sans-serif; font-size: 1.125rem; font-weight: 700; box-shadow: 0 4px 8px rgba(0,0,0,0.1); flex-shrink: 0; }
.partner-vendor > div { flex: 1; }
.partner-vendor strong { display: block; font-size: 0.9375rem; color: var(--navy); }
.partner-vendor small { font-size: 0.75rem; color: var(--muted); }
.partner-vendor > svg { color: var(--teal); opacity: 0; transition: opacity 0.2s; }
.partner-vendor:hover > svg { opacity: 1; }

.marquee { margin-top: 3.5rem; overflow: hidden; padding: 1.25rem 0; border: 1px solid var(--border); background: #fff; border-radius: 16px; }
.marquee__track { display: flex; gap: 3rem; white-space: nowrap; animation: marquee 40s linear infinite; padding: 0 1.5rem; }
.marquee__track span { font-family: 'Montserrat', sans-serif; font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(11,31,58,0.4); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.industries-cta { margin-top: 3.5rem; padding: 2rem; border: 1px solid var(--border); background: #fff; border-radius: 24px; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; box-shadow: 0 1px 3px rgba(11,31,58,0.05); }
.industries-cta h3 { font-size: 1.25rem; }
.industries-cta p { font-size: 0.875rem; color: var(--muted); margin-top: 0.5rem; max-width: 36rem; }

/* ── 17. Contact ──────────────────────────────────────────────────────────── */
.contact-grid { display: grid; gap: 2.5rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1.4fr 0.85fr; } }

.contact-form { padding: 1.5rem; border: 1px solid var(--border); background: #fff; border-radius: 24px; box-shadow: 0 1px 3px rgba(11,31,58,0.05); }
@media (min-width: 640px) { .contact-form { padding: 2rem; } }
@media (min-width: 1024px) { .contact-form { padding: 2.5rem; } }
.form-head { display: flex; align-items: center; gap: 0.75rem; }
.form-head__icon { width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(135deg, var(--royal), var(--teal)); color: #fff; display: flex; align-items: center; justify-content: center; }
.form-head h3 { font-size: 1.25rem; }
.form-head p { font-size: 0.875rem; color: var(--muted); }
.honeypot { position: absolute; left: -9999px; width: 0; height: 0; opacity: 0; }
.form-grid { margin-top: 1.75rem; display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .form-grid { grid-template-columns: repeat(2, 1fr); } }
.field { display: flex; flex-direction: column; }
.field--full { grid-column: 1 / -1; }
.field span { display: inline-flex; align-items: center; gap: 0.25rem; margin-bottom: 0.5rem; font-size: 0.875rem; font-weight: 500; color: var(--navy); }
.field em { color: #dc2626; font-style: normal; }
.field input, .field select, .field textarea {
    width: 100%; padding: 0.625rem 0.75rem; border: 1px solid var(--border); border-radius: 8px;
    background: #fff; color: var(--charcoal); font-size: 0.875rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none; border-color: var(--royal); box-shadow: 0 0 0 3px rgba(0,87,184,0.15);
}
.field textarea { resize: vertical; min-height: 120px; }

.consent { display: flex; gap: 0.75rem; padding: 1rem; border: 1px solid var(--border); background: var(--cloud); border-radius: 12px; margin-top: 1.25rem; cursor: pointer; }
.consent input { margin-top: 2px; width: 18px; height: 18px; flex-shrink: 0; }
.consent span { font-size: 0.75rem; color: var(--muted); line-height: 1.5; }

.form-actions { margin-top: 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.form-actions small { font-size: 0.75rem; color: var(--muted); display: inline-flex; align-items: center; gap: 0.25rem; }

.form-success { padding: 2rem; border: 1px solid rgba(0,169,157,0.3); background: rgba(0,169,157,0.05); border-radius: 24px; text-align: center; }
@media (min-width: 1024px) { .form-success { padding: 3rem; } }
.form-success__icon { width: 64px; height: 64px; border-radius: 50%; background: var(--teal); color: #fff; display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 10px 25px -10px rgba(0,169,157,0.5); animation: pop 0.6s ease; }
@keyframes pop { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.form-success h3 { font-size: 1.5rem; margin-top: 1.25rem; }
.form-success p { color: var(--muted); margin-top: 0.75rem; max-width: 28rem; margin-left: auto; margin-right: auto; }
.form-success .btn { margin-top: 1.5rem; }

.form-error { display: flex; gap: 0.75rem; padding: 1rem; border: 1px solid rgba(220,38,38,0.3); background: rgba(220,38,38,0.05); border-radius: 12px; margin-bottom: 1.5rem; }
.form-error svg { color: #dc2626; flex-shrink: 0; margin-top: 2px; }
.form-error p { font-size: 0.875rem; color: #dc2626; }

.contact-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info { padding: 1.75rem; border: 1px solid var(--border); background: var(--cloud); border-radius: 24px; }
.contact-info h3 { font-size: 1.125rem; }
.contact-info > p { font-size: 0.875rem; color: var(--muted); margin-top: 0.25rem; }
.contact-info ul { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1rem; list-style: none; }
.contact-info__item { display: flex; gap: 1rem; padding: 1rem; border: 1px solid var(--border); background: #fff; border-radius: 12px; transition: all 0.2s; }
.contact-info__item:hover { border-color: rgba(0,87,184,0.2); box-shadow: 0 5px 15px -5px rgba(0,87,184,0.1); }
.contact-info__icon { width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(135deg, var(--royal), var(--teal)); color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info__item small { display: block; font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }
.contact-info__item strong { display: block; font-size: 0.875rem; color: var(--navy); margin-top: 0.125rem; }

.contact-map { position: relative; padding: 1.75rem; border-radius: 24px; background: var(--navy); color: #fff; overflow: hidden; }
.contact-map__bg { position: absolute; inset: 0; opacity: 0.5; background:
    radial-gradient(circle at top right, rgba(0,87,184,0.4), transparent 50%),
    radial-gradient(circle at bottom left, rgba(0,169,157,0.2), transparent 50%),
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px) 0 0 / 56px 56px,
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px) 0 0 / 56px 56px;
}
.contact-map__content { position: relative; z-index: 1; }
.contact-map__head { display: flex; align-items: center; gap: 0.75rem; }
.contact-map__icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,0.1); color: #5eead4; border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; }
.contact-map__head h4 { color: #fff; font-size: 1rem; }
.contact-map__head small { color: #94a3b8; font-size: 0.75rem; }
.contact-map__content > p { color: #cbd5e1; font-size: 0.875rem; margin-top: 1.25rem; line-height: 1.6; }
.contact-map__regions { margin-top: 1.25rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
.contact-map__regions span { padding: 0.5rem; border-radius: 8px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: #cbd5e1; font-size: 0.6875rem; font-weight: 500; text-align: center; }
.contact-map__link { margin-top: 1.25rem; display: inline-flex; align-items: center; gap: 0.375rem; font-size: 0.75rem; font-weight: 600; color: #5eead4; }
.contact-map__link:hover { color: #93f5e9; }

.contact-response { padding: 1.25rem; border: 1px solid rgba(0,169,157,0.2); background: rgba(0,169,157,0.05); border-radius: 16px; font-size: 0.75rem; color: var(--navy); line-height: 1.6; }
.contact-response strong { color: var(--teal); }

/* ── 18. Footer ───────────────────────────────────────────────────────────── */
.footer { position: relative; background: var(--navy); color: #cbd5e1; padding-top: 0; margin-top: auto; overflow: hidden; }
.footer::before { content: ''; position: absolute; left: 0; right: 0; top: 0; height: 1px; background: linear-gradient(to right, transparent, rgba(0,169,157,0.5), transparent); }
.footer__cta { padding: 3rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.footer__cta-text h3 { color: #fff; font-size: 1.5rem; }
@media (min-width: 1024px) { .footer__cta-text h3 { font-size: 1.875rem; } }
.footer__cta-text p { color: #cbd5e1; margin-top: 0.75rem; max-width: 36rem; font-size: 0.9375rem; }
.footer__cta-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.footer__grid { padding: 3rem 0; display: grid; gap: 2.5rem; }
@media (min-width: 1024px) { .footer__grid { grid-template-columns: 4fr 2fr 3fr 3fr; } }
.footer__logo { display: inline-block; width: 200px; height: 80px; overflow: hidden; transition: transform 0.3s; padding: 6px; background: #fff; border-radius: 8px; box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.footer__logo:hover { transform: scale(1.05); }
.footer__logo img { width: 100%; height: 100%; object-fit: contain; }
.footer__about { margin-top: 1.25rem; font-size: 0.875rem; line-height: 1.6; color: #94a3b8; max-width: 28rem; }
.footer__social { margin-top: 1.5rem; display: flex; gap: 0.75rem; }
.footer__social-link { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.05); color: #cbd5e1; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.footer__social-link:hover { background: var(--teal); color: #fff; }
.footer__heading { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: #fff; }
.footer__links { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.625rem; list-style: none; }
.footer__link { color: #94a3b8; font-size: 0.875rem; transition: color 0.2s; }
.footer__link:hover { color: #5eead4; }
.footer__link--contact { display: flex; align-items: flex-start; gap: 0.5rem; }
.footer__link--contact svg { color: #5eead4; flex-shrink: 0; margin-top: 2px; }
.footer__link--static { cursor: default; }
.footer__link--static:hover { color: #94a3b8; }
.footer__hours { margin-top: 1.25rem; padding: 0.75rem 1rem; border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.03); border-radius: 12px; font-size: 0.75rem; color: #94a3b8; }
.footer__hours strong { color: #cbd5e1; }

.footer__vendors { padding: 2rem 0; border-top: 1px solid rgba(255,255,255,0.1); }
.footer__vendors-label { text-align: center; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.18em; color: #64748b; }
.footer__vendors-list { margin-top: 1.25rem; display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem 1.5rem; font-size: 0.875rem; color: #94a3b8; }
.footer__vendor { opacity: 0.7; transition: opacity 0.2s; }
.footer__vendor:hover { opacity: 1; }
.footer__vendors-more { display: inline-flex; align-items: center; gap: 0.25rem; color: #5eead4; }
.footer__vendors-more:hover { color: #93f5e9; }

.footer__legal { padding: 1.5rem 0; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: 0.75rem; color: #64748b; }
.footer__legal-links { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.footer__legal-links a:hover { color: #cbd5e1; }

/* ── 19. Chat widget ──────────────────────────────────────────────────────── */
.chat-launcher { position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 70; width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, var(--royal), var(--teal)); color: #fff; box-shadow: 0 15px 30px -10px rgba(0,87,184,0.4); display: flex; align-items: center; justify-content: center; transition: transform 0.2s; }
@media (min-width: 640px) { .chat-launcher { width: 64px; height: 64px; right: 1.5rem; bottom: 1.5rem; } }
.chat-launcher:hover { transform: scale(1.05); }
.chat-launcher__ping { position: absolute; inset: 0; border-radius: 50%; background: rgba(0,87,184,0.4); animation: ping 2s ease-out infinite; z-index: -1; }
.chat-launcher__dot { position: absolute; right: 2px; top: 2px; width: 16px; height: 16px; border-radius: 50%; background: var(--teal); border: 2px solid #fff; display: flex; align-items: center; justify-content: center; }
.chat-launcher__dot::after { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #fff; }

.chat-panel { position: fixed; inset: 0; z-index: 80; pointer-events: none; }
.chat-panel__backdrop { position: absolute; inset: 0; background: rgba(11,31,58,0.3); backdrop-filter: blur(4px); opacity: 0; transition: opacity 0.3s; }
@media (min-width: 768px) { .chat-panel__backdrop { display: none; } }
.chat-panel__inner {
    position: absolute; left: 0.75rem; right: 0.75rem; bottom: 0.75rem;
    max-height: 88vh; background: #fff; border-radius: 24px; box-shadow: 0 25px 50px -15px rgba(11,31,58,0.3);
    display: flex; flex-direction: column; overflow: hidden;
    transform: translateY(100%); opacity: 0; transition: all 0.3s ease;
}
@media (min-width: 768px) {
    .chat-panel__inner { left: auto; right: 1.5rem; bottom: 1.5rem; width: 420px; height: 640px; max-height: 85vh; }
}
.chat-panel--open { pointer-events: auto; }
.chat-panel--open .chat-panel__backdrop { opacity: 1; }
.chat-panel--open .chat-panel__inner { transform: translateY(0); opacity: 1; }

.chat-panel__header { position: relative; padding: 1rem 1.25rem; background: linear-gradient(135deg, var(--navy), #0e2a4d); color: #fff; overflow: hidden; }
.chat-panel__header::before { content: ''; position: absolute; right: -3rem; top: -3rem; width: 10rem; height: 10rem; border-radius: 50%; background: rgba(0,87,184,0.4); filter: blur(40px); }
.chat-panel__header::after { content: ''; position: absolute; left: -3rem; bottom: -3rem; width: 10rem; height: 10rem; border-radius: 50%; background: rgba(0,169,157,0.2); filter: blur(40px); }
.chat-panel__id { position: relative; z-index: 1; display: flex; align-items: center; gap: 0.75rem; }
.chat-panel__avatar { width: 40px; height: 40px; border-radius: 12px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: #5eead4; display: flex; align-items: center; justify-content: center; position: relative; }
.chat-panel__status { position: absolute; right: -2px; bottom: -2px; width: 12px; height: 12px; border-radius: 50%; background: var(--teal); border: 2px solid var(--navy); }
.chat-panel__id h3 { color: #fff; font-size: 0.875rem; }
.chat-panel__id p { font-size: 0.6875rem; color: #5eead4; }
.chat-panel__close { position: absolute; right: 0.75rem; top: 50%; transform: translateY(-50%); width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.1); color: #fff; display: flex; align-items: center; justify-content: center; transition: background 0.2s; z-index: 2; }
.chat-panel__close:hover { background: rgba(255,255,255,0.2); }

.chat-panel__body { flex: 1; overflow-y: auto; padding: 1.25rem; background: rgba(245,247,250,0.5); }

.chat-msg { display: flex; gap: 0.625rem; margin-bottom: 1.25rem; }
.chat-msg__avatar { width: 32px; height: 32px; border-radius: 8px; background: linear-gradient(135deg, var(--teal), var(--royal)); color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.chat-msg__bubble { background: #fff; border: 1px solid var(--border); border-top-left-radius: 4px; border-top-right-radius: 16px; border-bottom-right-radius: 16px; border-bottom-left-radius: 16px; padding: 0.625rem 1rem; font-size: 0.875rem; color: var(--navy); line-height: 1.5; max-width: 80%; }

.chat-panel__label { font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--muted); margin: 1.25rem 0 0.75rem; padding: 0 0.25rem; }

.chat-action { display: flex; gap: 1rem; padding: 1rem; border-radius: 16px; color: #fff; margin-bottom: 0.75rem; transition: transform 0.2s; text-decoration: none; }
.chat-action:hover { transform: translateY(-2px); color: #fff; }
.chat-action--whatsapp { background: #25D366; box-shadow: 0 10px 25px -10px rgba(37,211,102,0.5); }
.chat-action--whatsapp:hover { background: #1fb457; }
.chat-action--phone { background: var(--royal); box-shadow: 0 10px 25px -10px rgba(0,87,184,0.4); }
.chat-action--phone:hover { background: #004aa0; }
.chat-action--email { background: var(--navy); box-shadow: 0 10px 25px -10px rgba(11,31,58,0.4); }
.chat-action--email:hover { background: #152a4a; }
.chat-action__icon { width: 40px; height: 40px; border-radius: 12px; background: rgba(255,255,255,0.2); border: 1px solid rgba(255,255,255,0.3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.chat-action__text strong { display: flex; align-items: center; gap: 0.25rem; font-size: 0.875rem; font-weight: 700; }
.chat-action__text p { font-size: 0.75rem; opacity: 0.85; margin-top: 0.25rem; line-height: 1.4; }

.chat-panel--highlight .chat-action--whatsapp { box-shadow: 0 10px 25px -10px rgba(37,211,102,0.7), 0 0 0 3px rgba(37,211,102,0.4); animation: pulse-whatsapp 2s ease-in-out infinite; }
@keyframes pulse-whatsapp { 0%,100% { transform: scale(1); } 50% { transform: scale(1.02); } }

.chat-faq { display: flex; flex-direction: column; gap: 0.5rem; }
.chat-faq__item { background: #fff; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.chat-faq__q { width: 100%; padding: 0.75rem 1rem; text-align: left; font-size: 0.8125rem; font-weight: 600; color: var(--navy); display: flex; justify-content: space-between; align-items: center; gap: 0.5rem; transition: background 0.2s; }
.chat-faq__q:hover { background: var(--cloud); }
.chat-faq__q svg { color: var(--royal); transition: transform 0.2s; flex-shrink: 0; }
.chat-faq__q[aria-expanded="true"] svg { transform: rotate(90deg); }
.chat-faq__a { padding: 0 1rem 0.75rem; font-size: 0.75rem; color: var(--muted); line-height: 1.6; border-top: 1px solid var(--border); padding-top: 0.75rem; }

.chat-panel__footer { padding: 0.75rem; border-top: 1px solid var(--border); background: #fff; text-align: center; font-size: 0.6875rem; color: var(--muted); display: flex; align-items: center; justify-content: center; gap: 0.375rem; }
.chat-panel__footer svg { color: var(--teal); }

/* ── 20. Reveal animations ───────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-revealed { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } * { animation-duration: 0.01s !important; } }

/* ── 21. Main wrapper ────────────────────────────────────────────────────── */
.main { flex: 1; min-height: 50vh; }
body { display: flex; flex-direction: column; min-height: 100vh; }

/* ── 22. Privacy/Terms/PAIA/POPIA placeholder pages ───────────────────────── */
.legal-page { padding: 8rem 0 4rem; }
.legal-page h1 { font-size: clamp(1.875rem, 4vw, 2.5rem); margin-bottom: 1.5rem; }
.legal-page h2 { font-size: 1.25rem; margin-top: 2rem; margin-bottom: 0.75rem; }
.legal-page p, .legal-page li { color: var(--muted); line-height: 1.7; margin-bottom: 0.75rem; }
.legal-page ul { padding-left: 1.5rem; list-style: disc; }
