/* ==========================================================================
   Nexlink Wireless — style.css
   Design system: deep telecom navy + indigo/blue action + cyan signal accent.
   Display: Sora | Body: Inter
   ========================================================================== */

/* ----------------------------------------------------------------------------
   1. Tokens
---------------------------------------------------------------------------- */
:root {
    --navy:        #0b1e5b;
    --navy-deep:   #081541;
    --indigo:      #1e3a8a;
    --blue:        #2563eb;
    --blue-bright: #3b82f6;
    --cyan:        #22d3ee;

    --ink:         #0f172a;
    --slate:       #4a5568;
    --slate-light: #6b7488;
    --mist:        #f5f7fc;
    --mist-2:      #eef2fb;
    --line:        #e4e9f4;
    --white:       #ffffff;

    --grad-hero:   linear-gradient(135deg, #081541 0%, #12266e 55%, #1d4ed8 100%);
    --grad-accent: linear-gradient(120deg, var(--blue) 0%, var(--cyan) 100%);
    --grad-soft:   linear-gradient(180deg, #ffffff 0%, #f3f6fd 100%);

    --shadow-sm:   0 1px 2px rgba(15, 23, 42, .06);
    --shadow-md:   0 10px 30px -12px rgba(15, 23, 42, .18);
    --shadow-lg:   0 24px 60px -20px rgba(11, 30, 91, .32);
    --shadow-blue: 0 14px 30px -10px rgba(37, 99, 235, .45);

    --radius:      18px;
    --radius-sm:   12px;
    --radius-lg:   26px;
    --radius-pill: 999px;

    --container:   1180px;
    --ease:        cubic-bezier(.22, .61, .36, 1);
}

/* ----------------------------------------------------------------------------
   2. Reset & base
---------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

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

body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
    font-family: 'Sora', 'Inter', sans-serif;
    line-height: 1.15;
    margin: 0 0 .5em;
    color: var(--ink);
    letter-spacing: -0.02em;
}

p { margin: 0 0 1rem; }

a { color: var(--blue); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--indigo); }

img { max-width: 100%; height: auto; display: block; }

ul { margin: 0; padding: 0; list-style: none; }

:focus-visible {
    outline: 3px solid var(--cyan);
    outline-offset: 2px;
    border-radius: 4px;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--navy);
    color: #fff;
    padding: .75rem 1.25rem;
    border-radius: 0 0 10px 0;
    z-index: 2000;
}
.skip-link:focus { left: 0; color: #fff; }

/* ----------------------------------------------------------------------------
   3. Layout helpers
---------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section { padding: 5.5rem 0; }
.section--tight { padding: 4rem 0; }
.section--mist { background: var(--mist); }
.section--soft { background: var(--grad-soft); }

.section-head {
    max-width: 720px;
    margin: 0 auto 3rem;
    text-align: center;
}
.section-head--left { margin-left: 0; text-align: left; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: 'Sora', sans-serif;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--blue);
    background: var(--mist-2);
    padding: .4rem .9rem;
    border-radius: var(--radius-pill);
    margin-bottom: 1.1rem;
}
.eyebrow i { color: var(--cyan); }

.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
.section-head p { color: var(--slate); font-size: 1.08rem; margin-bottom: 0; }

.lead { font-size: 1.15rem; color: var(--slate); }

/* ----------------------------------------------------------------------------
   4. Buttons
---------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1;
    padding: .95rem 1.7rem;
    border: 1px solid transparent;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
    white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn--primary {
    background: var(--grad-accent);
    color: #fff;
    box-shadow: var(--shadow-blue);
}
.btn--primary:hover { color: #fff; box-shadow: 0 18px 40px -10px rgba(37, 99, 235, .55); }

.btn--secondary {
    background: rgba(255, 255, 255, .1);
    color: #fff;
    border-color: rgba(255, 255, 255, .35);
    backdrop-filter: blur(4px);
}
.btn--secondary:hover { background: rgba(255, 255, 255, .18); color: #fff; }

.btn--outline {
    background: transparent;
    color: var(--indigo);
    border-color: var(--line);
}
.btn--outline:hover { color: var(--indigo); border-color: var(--blue); background: var(--mist); }

.btn--light {
    background: #fff;
    color: var(--navy);
    box-shadow: var(--shadow-sm);
}
.btn--light:hover { color: var(--navy); box-shadow: var(--shadow-md); }

.btn--phone {
    background: var(--grad-accent);
    color: #fff;
    padding: .7rem 1.25rem;
    box-shadow: var(--shadow-blue);
}
.btn--phone:hover { color: #fff; }

.btn--block { width: 100%; }
.btn--lg { padding: 1.1rem 2.1rem; font-size: 1.05rem; }

/* ----------------------------------------------------------------------------
   5. Header / navigation
---------------------------------------------------------------------------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .88);
    backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--line);
    transition: box-shadow .3s var(--ease), background .3s var(--ease);
}
.site-header.is-scrolled { box-shadow: var(--shadow-md); background: rgba(255, 255, 255, .96); }

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
}

/* Brand / logo */
.brand {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--ink);
    letter-spacing: -0.03em;
}
.brand:hover { color: var(--ink); }
.brand__name-accent { color: var(--blue); }

.brand__mark {
    display: inline-flex;
    align-items: flex-end;
    gap: 3px;
    height: 26px;
    padding: 4px 7px;
    background: var(--grad-hero);
    border-radius: 9px;
    box-shadow: var(--shadow-blue);
}
.brand__bar {
    width: 4px;
    border-radius: 2px;
    background: #fff;
    opacity: .95;
}
.brand__bar:nth-child(1) { height: 8px;  background: rgba(255,255,255,.55); }
.brand__bar:nth-child(2) { height: 13px; background: rgba(255,255,255,.8); }
.brand__bar:nth-child(3) { height: 18px; background: var(--cyan); }

.brand--footer { color: #fff; font-size: 1.3rem; }
.brand--footer:hover { color: #fff; }
.brand--footer .brand__name-accent { color: var(--cyan); }

/* Nav */
.main-nav { display: flex; align-items: center; }

.nav-menu {
    display: flex;
    align-items: center;
    gap: .35rem;
}
.nav-link {
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    font-size: .97rem;
    color: var(--ink);
    padding: .55rem .95rem;
    border-radius: var(--radius-pill);
    position: relative;
    transition: color .2s var(--ease), background .2s var(--ease);
}
.nav-link:hover { color: var(--blue); background: var(--mist); }
.nav-link.is-active { color: var(--blue); }
.nav-link.is-active::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 2px;
    width: 18px;
    height: 3px;
    border-radius: 2px;
    background: var(--grad-accent);
    transform: translateX(-50%);
}
.nav-menu__cta { margin-left: .6rem; }

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 12px;
    cursor: pointer;
}
.nav-toggle__bar {
    display: block;
    width: 22px;
    height: 2px;
    margin: 0 auto;
    background: var(--ink);
    border-radius: 2px;
    transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav-toggle.is-open .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle.is-open .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ----------------------------------------------------------------------------
   6. Hero
---------------------------------------------------------------------------- */
.hero {
    position: relative;
    background: var(--grad-hero);
    color: #fff;
    overflow: hidden;
    padding: 5.5rem 0 5rem;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(60% 60% at 85% 20%, rgba(34, 211, 238, .28), transparent 60%),
        radial-gradient(50% 50% at 10% 90%, rgba(59, 130, 246, .35), transparent 60%);
    pointer-events: none;
}
.hero__grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 3.5rem;
    align-items: center;
}
.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    font-family: 'Sora', sans-serif;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #d6e2ff;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .18);
    padding: .45rem 1rem;
    border-radius: var(--radius-pill);
    margin-bottom: 1.4rem;
}
.hero__eyebrow i { color: var(--cyan); }

.hero h1 {
    color: #fff;
    font-size: clamp(2.3rem, 5vw, 3.6rem);
    font-weight: 800;
    margin-bottom: 1.1rem;
}
.hero h1 .accent {
    background: linear-gradient(120deg, #7dd3fc, #22d3ee);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero__text {
    color: #c7d4f5;
    font-size: 1.18rem;
    max-width: 34rem;
    margin-bottom: 2rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.2rem; }

.hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    color: #b9c7ee;
    font-size: .92rem;
}
.hero__trust span { display: inline-flex; align-items: center; gap: .5rem; }
.hero__trust i { color: var(--cyan); }

/* Hero visual / illustration */
.hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
}
.hero__visual img,
.hero__visual svg {
    width: 100%;
    max-width: 460px;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, .35));
}
.hero__float {
    position: absolute;
    background: rgba(255, 255, 255, .96);
    color: var(--ink);
    border-radius: 14px;
    padding: .7rem 1rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .85rem;
    font-weight: 600;
    font-family: 'Sora', sans-serif;
}
.hero__float i {
    width: 30px; height: 30px;
    display: grid; place-items: center;
    border-radius: 8px;
    background: var(--grad-accent);
    color: #fff;
}
.hero__float--1 { top: 12%; left: -4%; animation: floaty 6s ease-in-out infinite; }
.hero__float--2 { bottom: 14%; right: -2%; animation: floaty 6s ease-in-out infinite 1.5s; }

@keyframes floaty {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}

/* Wave divider under hero */
.hero__wave { position: relative; display: block; line-height: 0; }
.hero__wave svg { width: 100%; height: 60px; display: block; }

/* ----------------------------------------------------------------------------
   7. Cards / grids
---------------------------------------------------------------------------- */
.grid { display: grid; gap: 1.5rem; }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 2rem 1.6rem;
    box-shadow: var(--shadow-sm);
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
    height: 100%;
}
.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: #cfe0ff;
}
.card__icon {
    width: 54px; height: 54px;
    display: grid; place-items: center;
    border-radius: 14px;
    background: var(--mist-2);
    color: var(--blue);
    font-size: 1.35rem;
    margin-bottom: 1.1rem;
    transition: background .25s var(--ease), color .25s var(--ease);
}
.card:hover .card__icon { background: var(--grad-accent); color: #fff; }
.card h3 { font-size: 1.2rem; }
.card p { color: var(--slate); margin-bottom: 0; }
.card__link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    margin-top: 1rem;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: .95rem;
}
.card__link i { transition: transform .2s var(--ease); }
.card__link:hover i { transform: translateX(4px); }

/* ----------------------------------------------------------------------------
   8. Why-choose feature list
---------------------------------------------------------------------------- */
.why {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}
.why__item {
    display: flex;
    align-items: flex-start;
    gap: .9rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 1.15rem 1.25rem;
    box-shadow: var(--shadow-sm);
}
.why__item i {
    flex-shrink: 0;
    width: 40px; height: 40px;
    display: grid; place-items: center;
    border-radius: 10px;
    background: var(--mist-2);
    color: var(--blue);
    font-size: 1.05rem;
}
.why__item h3 { font-size: 1.02rem; margin-bottom: .15rem; }
.why__item p { font-size: .92rem; color: var(--slate); margin: 0; }

/* ----------------------------------------------------------------------------
   9. Page banner (interior pages)
---------------------------------------------------------------------------- */
.page-banner {
    position: relative;
    background: var(--grad-hero);
    color: #fff;
    padding: 4.5rem 0 4rem;
    overflow: hidden;
    text-align: center;
}
.page-banner::before {
    content: "";
    position: absolute; inset: 0;
    background:
        radial-gradient(50% 60% at 80% 10%, rgba(34, 211, 238, .28), transparent 60%),
        radial-gradient(45% 55% at 15% 95%, rgba(59, 130, 246, .3), transparent 60%);
}
.page-banner__inner { position: relative; max-width: 760px; margin: 0 auto; }
.page-banner .eyebrow { background: rgba(255,255,255,.1); color: #d6e2ff; border: 1px solid rgba(255,255,255,.18); }
.page-banner .eyebrow i { color: var(--cyan); }
.page-banner h1 { color: #fff; font-size: clamp(2.1rem, 4.6vw, 3.1rem); }
.page-banner p { color: #c7d4f5; font-size: 1.12rem; margin-bottom: 0; }
.breadcrumb {
    position: relative;
    margin-top: 1.2rem;
    font-size: .88rem;
    color: #a9bbea;
}
.breadcrumb a { color: #d6e2ff; }
.breadcrumb a:hover { color: #fff; }

/* ----------------------------------------------------------------------------
   10. Deal cards
---------------------------------------------------------------------------- */
.deal-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform .25s var(--ease), box-shadow .25s var(--ease);
    height: 100%;
}
.deal-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.deal-card__top {
    background: var(--grad-hero);
    color: #fff;
    padding: 1.6rem 1.6rem 1.4rem;
    position: relative;
    overflow: hidden;
}
.deal-card__top::after {
    content: "";
    position: absolute; right: -30px; top: -30px;
    width: 120px; height: 120px;
    background: radial-gradient(circle, rgba(34,211,238,.35), transparent 70%);
}
.deal-card__badge {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-family: 'Sora', sans-serif;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.22);
    padding: .3rem .75rem;
    border-radius: var(--radius-pill);
    margin-bottom: .9rem;
}
.deal-card__badge i { color: var(--cyan); }
.deal-card__top h3 { color: #fff; font-size: 1.4rem; margin: 0; position: relative; }
.deal-card__body { padding: 1.6rem; display: flex; flex-direction: column; flex-grow: 1; }
.deal-list { margin-bottom: 1.4rem; }
.deal-list li {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    padding: .4rem 0;
    color: var(--slate);
    font-size: .96rem;
}
.deal-list li i { color: var(--blue); margin-top: .25rem; }
.deal-card__body .btn { margin-top: auto; }

/* ----------------------------------------------------------------------------
   11. Pricing sections
---------------------------------------------------------------------------- */
.price-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 2.2rem 1.9rem;
    box-shadow: var(--shadow-sm);
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
    height: 100%;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: #cfe0ff; }
.price-card.is-featured {
    border-color: var(--blue);
    box-shadow: var(--shadow-blue);
}
.price-card__flag {
    align-self: flex-start;
    font-family: 'Sora', sans-serif;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #fff;
    background: var(--grad-accent);
    padding: .3rem .8rem;
    border-radius: var(--radius-pill);
    margin-bottom: 1rem;
}
.price-card__icon {
    width: 52px; height: 52px;
    display: grid; place-items: center;
    border-radius: 14px;
    background: var(--mist-2);
    color: var(--blue);
    font-size: 1.3rem;
    margin-bottom: 1.1rem;
}
.price-card h3 { font-size: 1.35rem; margin-bottom: .35rem; }
.price-card__note { color: var(--slate); font-size: .96rem; margin-bottom: 1.3rem; }
.price-features { margin-bottom: 1.6rem; }
.price-features li {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    padding: .5rem 0;
    border-bottom: 1px dashed var(--line);
    color: var(--ink);
    font-size: .96rem;
}
.price-features li:last-child { border-bottom: none; }
.price-features li i { color: var(--blue); margin-top: .25rem; }
.price-card .btn { margin-top: auto; }

.price-meta {
    text-align: center;
    color: var(--slate);
    max-width: 640px;
    margin: 2.5rem auto 0;
    font-size: .96rem;
}

/* ----------------------------------------------------------------------------
   12. Split / about section
---------------------------------------------------------------------------- */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}
.split__media {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--grad-hero);
}
.split__media svg, .split__media img { width: 100%; display: block; }
.split h2 { font-size: clamp(1.8rem, 3.4vw, 2.4rem); }

.mission {
    background: var(--grad-hero);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 3rem;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.mission::before {
    content: "";
    position: absolute; inset: 0;
    background: radial-gradient(60% 80% at 80% 0%, rgba(34,211,238,.25), transparent 60%);
}
.mission__quote {
    position: relative;
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.25rem, 2.6vw, 1.75rem);
    font-weight: 600;
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto;
    color: #fff;
}
.mission i.fa-quote-left { color: var(--cyan); font-size: 1.6rem; margin-bottom: 1rem; display: block; }

/* Info cards (about business details) */
.info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.info-card {
    display: flex;
    gap: 1rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.6rem;
    box-shadow: var(--shadow-sm);
}
.info-card i {
    flex-shrink: 0;
    width: 48px; height: 48px;
    display: grid; place-items: center;
    border-radius: 12px;
    background: var(--grad-accent);
    color: #fff;
    font-size: 1.15rem;
}
.info-card h3 { font-size: 1.05rem; margin-bottom: .2rem; }
.info-card p, .info-card address { color: var(--slate); font-style: normal; margin: 0; font-size: .96rem; }
.info-card a { font-weight: 600; }

/* ----------------------------------------------------------------------------
   13. Stat strip
---------------------------------------------------------------------------- */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: center;
}
.stat__value {
    font-family: 'Sora', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--indigo);
    letter-spacing: -0.02em;
}
.stat__label { color: var(--slate); font-size: .95rem; }

/* ----------------------------------------------------------------------------
   14. CTA band
---------------------------------------------------------------------------- */
.cta-band {
    position: relative;
    background: var(--grad-hero);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 3.5rem;
    text-align: center;
    overflow: hidden;
}
.cta-band::before {
    content: "";
    position: absolute; inset: 0;
    background:
        radial-gradient(45% 60% at 12% 15%, rgba(34,211,238,.25), transparent 60%),
        radial-gradient(45% 60% at 88% 85%, rgba(59,130,246,.35), transparent 60%);
}
.cta-band__inner { position: relative; max-width: 720px; margin: 0 auto; }
.cta-band h2 { color: #fff; font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
.cta-band p { color: #c7d4f5; font-size: 1.1rem; margin-bottom: 1.8rem; }
.cta-band .btn--lg i { font-size: 1.1rem; }

/* ----------------------------------------------------------------------------
   15. Contact
---------------------------------------------------------------------------- */
.contact-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 2.5rem;
    align-items: start;
}
.contact-aside {
    background: var(--grad-hero);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}
.contact-aside::before {
    content: "";
    position: absolute; inset: 0;
    background: radial-gradient(55% 60% at 85% 10%, rgba(34,211,238,.25), transparent 60%);
}
.contact-aside h2 { color: #fff; position: relative; font-size: 1.5rem; }
.contact-aside > p { color: #c7d4f5; position: relative; }
.contact-aside__item {
    position: relative;
    display: flex;
    gap: .9rem;
    align-items: flex-start;
    margin-top: 1.6rem;
}
.contact-aside__item i {
    flex-shrink: 0;
    width: 44px; height: 44px;
    display: grid; place-items: center;
    border-radius: 12px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.18);
    color: var(--cyan);
    font-size: 1.1rem;
}
.contact-aside__item h3 { color: #fff; font-size: 1rem; margin-bottom: .15rem; }
.contact-aside__item p, .contact-aside__item address {
    color: #c7d4f5; margin: 0; font-style: normal; font-size: .96rem;
}
.contact-aside__item a { color: #fff; font-weight: 600; }
.contact-aside__item a:hover { color: var(--cyan); }

/* Form */
.contact-form {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label {
    display: block;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: .9rem;
    margin-bottom: .45rem;
    color: var(--ink);
}
.form-group label .req { color: #dc2626; }
.form-control {
    width: 100%;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--ink);
    padding: .85rem 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--mist);
    transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.form-control:focus {
    outline: none;
    border-color: var(--blue);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, .12);
}
textarea.form-control { resize: vertical; min-height: 130px; }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }

/* Honeypot — visually hidden but present in DOM */
.hp-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px; height: 1px;
    overflow: hidden;
}

.form-error {
    display: block;
    color: #dc2626;
    font-size: .85rem;
    margin-top: .35rem;
}
.form-control.is-invalid { border-color: #dc2626; background: #fef2f2; }

.form-note { font-size: .85rem; color: var(--slate-light); margin-top: 1rem; }

/* Alerts */
.alert {
    display: flex;
    gap: .8rem;
    align-items: flex-start;
    border-radius: var(--radius-sm);
    padding: 1rem 1.2rem;
    margin-bottom: 1.5rem;
    font-size: .96rem;
}
.alert i { margin-top: .15rem; font-size: 1.1rem; }
.alert--success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.alert--error   { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.alert strong { font-family: 'Sora', sans-serif; }

/* ----------------------------------------------------------------------------
   16. Disclaimer / notice box
---------------------------------------------------------------------------- */
.notice {
    display: flex;
    gap: .9rem;
    align-items: flex-start;
    background: var(--mist);
    border: 1px solid var(--line);
    border-left: 4px solid var(--blue);
    border-radius: var(--radius-sm);
    padding: 1.2rem 1.4rem;
    color: var(--slate);
    font-size: .95rem;
}
.notice i { color: var(--blue); font-size: 1.15rem; margin-top: .1rem; }

/* ----------------------------------------------------------------------------
   17. Legal / prose pages
---------------------------------------------------------------------------- */
.prose { max-width: 800px; margin: 0 auto; }
.prose h2 { font-size: 1.5rem; margin-top: 2.2rem; }
.prose h3 { font-size: 1.15rem; margin-top: 1.6rem; }
.prose p, .prose li { color: var(--slate); }
.prose ul { list-style: disc; padding-left: 1.4rem; margin-bottom: 1rem; }
.prose ul li { padding: .2rem 0; }

/* ----------------------------------------------------------------------------
   18. Footer
---------------------------------------------------------------------------- */
.site-footer { background: var(--navy-deep); color: #c7d0e8; }
.footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 2.5rem;
    padding: 4rem 1.5rem 3rem;
}
.footer__tagline { color: #9fb0d6; margin: 1rem 0; font-size: .95rem; max-width: 24rem; }
.footer__phone {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: #fff;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
}
.footer__phone:hover { color: var(--cyan); }
.footer__phone i { color: var(--cyan); }
.footer__address {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    font-style: normal;
    color: #9fb0d6;
    margin-top: .7rem;
    font-size: .92rem;
}
.footer__address i { color: var(--cyan); margin-top: .2rem; }

.footer__heading {
    color: #fff;
    font-size: .95rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 1.1rem;
}
.footer__links li { margin-bottom: .6rem; }
.footer__links a { color: #9fb0d6; font-size: .95rem; }
.footer__links a:hover { color: #fff; }

.footer__note { color: #9fb0d6; font-size: .92rem; margin-bottom: 1.2rem; }

.footer__bar { border-top: 1px solid rgba(255,255,255,.08); }
.footer__bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.4rem 1.5rem;
}
.footer__copy { margin: 0; color: #8092bd; font-size: .88rem; }
.footer__legal { display: flex; gap: 1.5rem; }
.footer__legal a { color: #8092bd; font-size: .88rem; }
.footer__legal a:hover { color: #fff; }

/* ----------------------------------------------------------------------------
   19. Utilities
---------------------------------------------------------------------------- */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ----------------------------------------------------------------------------
   20. Responsive
---------------------------------------------------------------------------- */
@media (max-width: 992px) {
    .grid--4 { grid-template-columns: repeat(2, 1fr); }
    .grid--3 { grid-template-columns: repeat(2, 1fr); }
    .why { grid-template-columns: repeat(2, 1fr); }
    .stats { grid-template-columns: repeat(2, 1fr); }
    .hero__grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .hero__visual { order: -1; max-width: 380px; margin: 0 auto; }
    .split { grid-template-columns: 1fr; gap: 2.5rem; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
    /* Mobile nav */
    .nav-toggle { display: flex; }
    .nav-menu {
        position: fixed;
        top: 76px;
        right: 0;
        width: min(320px, 82vw);
        height: calc(100vh - 76px);
        flex-direction: column;
        align-items: stretch;
        gap: .25rem;
        background: #fff;
        border-left: 1px solid var(--line);
        box-shadow: var(--shadow-lg);
        padding: 1.5rem;
        transform: translateX(105%);
        transition: transform .32s var(--ease);
        overflow-y: auto;
    }
    .nav-menu.is-open { transform: translateX(0); }
    .nav-link { padding: .85rem 1rem; font-size: 1.05rem; }
    .nav-link.is-active::after { display: none; }
    .nav-menu__cta { margin: .8rem 0 0; }
    .nav-menu__cta .btn { width: 100%; }

    .section { padding: 3.75rem 0; }
    .section--tight { padding: 3rem 0; }
    .hero { padding: 3.5rem 0 3rem; }
    .hero__actions .btn { width: 100%; }
    .grid--4, .grid--3, .grid--2 { grid-template-columns: 1fr; }
    .why { grid-template-columns: 1fr; }
    .stats { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .info-grid { grid-template-columns: 1fr; }
    .cta-band, .mission, .contact-aside, .contact-form { padding: 2rem 1.5rem; }
    .footer__grid { grid-template-columns: 1fr; }
    .footer__bar-inner { flex-direction: column; text-align: center; }
    .hero__float { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
}
