/* ─── DESIGN TOKENS ─────────────────────────────────── */
:root {
    --ink:        #F5F7FA;
    --ink-soft:   #A7AFB8;
    --ink-muted:  #687583;
    --canvas:     #040812;
    --surface:    #050B18;
    --dark:       #06111F;
    --border:     #263746;
    --accent:     #087D91;
    --accent-dk:  #005A6B;
    --accent-lt:  #003B4A;
    --teal-glow:  #003B4A;
    --cta:        #F4F6F7;
    --cta-text:   #071018;
    --gold:       #F59E0B;
    --gold-lt:    rgba(245,158,11,.12);
    --success:    #10B981;
    --danger:     #EF4444;
    --purple:     #087D91;

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

    --shadow-sm:  0 1px 3px rgba(0,0,0,.35), 0 1px 2px rgba(0,0,0,.25);
    --shadow-md:  0 4px 16px rgba(0,0,0,.4), 0 2px 6px rgba(0,0,0,.3);
    --shadow-lg:  0 12px 40px rgba(0,0,0,.45), 0 4px 12px rgba(0,0,0,.3);
    --shadow-xl:  0 24px 64px rgba(0,0,0,.5);

    --nav-h: 68px;

/* ── Navbar palette — brand teal, overridden in the light theme ── */
    --nav-bg:              rgba(6, 20, 28, .78);
    --nav-bg-scrolled:     rgba(3, 13, 19, .93);
    --nav-bar-bg:          rgba(4, 11, 17, .96);
    --nav-bar-shadow:      rgba(0, 14, 20, .5);
    --nav-mobile-bg:       rgba(4, 11, 17, .98);
    --nav-dropdown-bg:     #071A22;
    --nav-border:          rgba(8, 125, 145, .26);
    --nav-border-scrolled: rgba(8, 125, 145, .46);
    --nav-shadow:          0 14px 38px rgba(0, 16, 22, .5), inset 0 1px 0 rgba(255, 255, 255, .05);
    --nav-shadow-scrolled: 0 16px 44px rgba(0, 16, 22, .62), 0 0 0 1px rgba(8, 125, 145, .12);
    --nav-divider:         rgba(8, 125, 145, .24);
    --nav-fade:            rgba(4, 11, 17, .92);
    --nav-chip-bg:         rgba(8, 125, 145, .16);
    --nav-ink:             rgba(207, 226, 232, .74);
    --nav-ink-strong:      #F2F8FA;
    --nav-hover-bg:        rgba(8, 125, 145, .18);
    --nav-active-bg:       linear-gradient(135deg, rgba(8, 125, 145, .45) 0%, rgba(0, 90, 107, .28) 100%);
    --nav-active-ring:     rgba(8, 125, 145, .5);
    --nav-active-glow:     rgba(8, 125, 145, .28);
    --nav-ghost-bg:        rgba(8, 125, 145, .1);
    --nav-ghost-border:    rgba(8, 125, 145, .3);
    --nav-cta-glow:        rgba(8, 125, 145, .4);
    --nav-cta-glow-hover:  rgba(8, 125, 145, .55);
    --nav-logo-shadow:     drop-shadow(0 0 10px rgba(8, 125, 145, .35));
    --nav-logo-chip:       rgba(255, 255, 255, .09);

    --ez-shell-max: 1440px;
    --ez-shell: min(var(--ez-shell-max), 90%);
}

@media (max-width: 768px) {
    :root { --ez-shell: var(--ez-shell-max); }
}

/* ─── RESET / BASE ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    background: var(--canvas);
    color: var(--ink);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    position: relative;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; }
ul  { list-style: none; }

/* Page-wide ambient moving gradient */
.ez-bg-ambient {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.ez-bg-ambient__glow {
    position: absolute;
    width: 70vw;
    height: 70vw;
    max-width: 900px;
    max-height: 900px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,90,107,.35) 0%, rgba(0,59,74,.18) 35%, transparent 68%);
    top: 10%;
    left: 20%;
    animation: ezPageGlowDrift 18s ease-in-out infinite;
    will-change: transform;
}
.ez-bg-ambient__glow--2 {
    width: 55vw;
    height: 55vw;
    max-width: 700px;
    max-height: 700px;
    background: radial-gradient(circle, rgba(8,125,145,.22) 0%, rgba(0,59,74,.12) 40%, transparent 70%);
    top: auto;
    bottom: 5%;
    left: auto;
    right: 10%;
    animation: ezPageGlowDrift2 22s ease-in-out infinite;
}

/* Mouse-follow glow across entire page */
.ez-bg-cursor {
    position: fixed;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    left: 0;
    top: 0;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(8,125,145,.22) 0%, rgba(0,90,107,.1) 35%, transparent 68%);
    opacity: 0;
    transition: opacity .35s ease;
    will-change: transform;
    mix-blend-mode: screen;
}
.ez-bg-cursor.is-active { opacity: 1; }

body > *:not(.ez-bg-ambient):not(.ez-bg-cursor):not(.ez-nav):not(.ez-nav__mobile) {
    position: relative;
    z-index: 2;
}

/* ─── UTILITIES ──────────────────────────────────────── */
.ez-container { width: 100%; max-width: var(--ez-shell); margin: 0 auto; padding: 0 32px; }

.ez-section-label {
    font-size: .7rem; font-weight: 800; letter-spacing: .14em;
    text-transform: uppercase; color: var(--accent); margin-bottom: 12px;
    display: flex; align-items: center; gap: 8px;
}
.ez-section-label::before {
    content: ''; display: block; width: 24px; height: 2px; background: var(--accent);
}

.ez-heading {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800; line-height: 1.18; letter-spacing: -.02em; color: var(--ink);
}
.ez-heading span { color: var(--accent); }

.ez-body { color: var(--ink-soft); font-size: 1rem; line-height: 1.7; }
.ez-body--sm { font-size: .9rem; color: var(--ink-muted); }

.ez-btn {
    display: inline-flex; align-items: center; gap: 8px;
    font-weight: 700; font-size: .9rem; letter-spacing: .01em;
    border: none; cursor: pointer; transition: all .22s ease;
    text-decoration: none; border-radius: 100px; padding: 14px 28px;
}
.ez-btn--primary {
    background: var(--cta); color: var(--cta-text);
    box-shadow: 0 4px 14px rgba(244,246,247,.12);
}
.ez-btn--primary:hover {
    background: #fff; transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(244,246,247,.18); color: var(--cta-text);
}
.ez-btn--teal {
    background: linear-gradient(135deg, #087D91 0%, #005A6B 100%);
    color: #fff;
    box-shadow: 0 8px 24px rgba(8,125,145,.35);
}
.ez-btn--teal:hover {
    background: linear-gradient(135deg, #0a93aa 0%, #087D91 100%);
    color: #fff; transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(8,125,145,.5);
}
.ez-btn--ghost {
    background: transparent; color: var(--ink);
    border: 1.5px solid var(--border);
}
.ez-btn--ghost:hover {
    border-color: var(--accent); color: var(--accent); transform: translateY(-2px);
}
.ez-btn--white-outline {
    background: transparent; color: #fff;
    border: 2px solid rgba(255,255,255,.4);
}
.ez-btn--white-outline:hover {
    background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.7);
    transform: translateY(-2px); color: #fff;
}

/* ════════════════════════════════════════════════════════
   NAV
   ════════════════════════════════════════════════════════ */
.ez-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 14px 0 10px;
    background: transparent;
}

.ez-nav__inner {
    position: relative;
    max-width: var(--ez-shell);
    width: 90%;
    margin: 0 auto;
    padding: 0 14px 0 20px;
    height: 64px;
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--nav-bg);
    backdrop-filter: blur(22px) saturate(1.4);
    -webkit-backdrop-filter: blur(22px) saturate(1.4);
    border: 1px solid var(--nav-border);
    border-radius: 18px;
    box-shadow: var(--nav-shadow);
    transition: height .3s ease, background .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.ez-nav--scrolled {
    background: linear-gradient(180deg, var(--nav-fade) 62%, transparent 100%);
}
.ez-nav--scrolled .ez-nav__inner {
    height: 58px;
    background: var(--nav-bg-scrolled);
    border-color: var(--nav-border-scrolled);
    box-shadow: var(--nav-shadow-scrolled);
}

.ez-nav__logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    padding-right: 20px;
    border-right: 1px solid var(--nav-divider);
}
.ez-nav__logo img {
    height: 30px;
    width: auto;
    padding: 5px 9px;
    background: var(--nav-logo-chip);
    border-radius: 10px;
    filter: var(--nav-logo-shadow);
    transition: opacity .2s ease, transform .2s ease;
}
.ez-nav__logo:hover img { opacity: .9; transform: translateY(-1px); }

/* Desktop links sit in a teal segmented rail */
.ez-nav__links {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
    margin: 0 auto;
    padding: 4px;
    flex: 0 1 auto;
    min-width: 0;
    justify-content: center;
}

.ez-nav__item { position: relative; }

.ez-nav__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    font-size: .83rem;
    font-weight: 600;
    letter-spacing: .01em;
    color: var(--nav-ink);
    border-radius: 100px;
    transition: color .18s ease, background .18s ease, box-shadow .18s ease;
    white-space: nowrap;
    cursor: pointer;
}
.ez-nav__link:hover { color: var(--nav-ink-strong); background: var(--nav-hover-bg); }
.ez-nav__link:focus-visible {
    outline: none;
    color: var(--nav-ink-strong);
    box-shadow: 0 0 0 2px var(--accent);
}
.ez-nav__link--active {
    color: var(--nav-ink-strong);
    background: var(--nav-active-bg);
    box-shadow: inset 0 0 0 1px var(--nav-active-ring), 0 4px 14px var(--nav-active-glow);
}

.ez-nav__caret { font-size: .58rem; opacity: .8; transition: transform .25s ease; }
.ez-nav__item:hover .ez-nav__caret { transform: rotate(180deg); }

.ez-nav__dropdown {
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    min-width: 246px;
    background: var(--nav-dropdown-bg);
    border: 1px solid var(--nav-border);
    border-radius: 16px;
    box-shadow: var(--nav-shadow-scrolled);
    padding: 10px;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(-6px) scale(.98);
    transform-origin: top center;
    transition: opacity .2s ease, transform .2s ease;
    z-index: 1200;
}
/* Invisible bridge keeps hover alive across the gap below the trigger */
.ez-nav__dropdown::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: -18px;
    height: 18px;
}
/* Pointer notch */
.ez-nav__dropdown::after {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    width: 11px;
    height: 11px;
    background: var(--nav-dropdown-bg);
    border-left: 1px solid var(--nav-border);
    border-top: 1px solid var(--nav-border);
    transform: translateX(-50%) rotate(45deg);
}
.ez-nav__item:hover .ez-nav__dropdown,
.ez-nav__item:focus-within .ez-nav__dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0) scale(1);
}
.ez-nav__dropdown-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 12px;
    font-size: .85rem;
    font-weight: 500;
    color: var(--nav-ink);
    border-radius: 12px;
    transition: color .15s ease, background .15s ease;
}
.ez-nav__dropdown-link i {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .78rem;
    color: var(--accent);
    background: var(--nav-chip-bg);
    border-radius: 9px;
    flex-shrink: 0;
    transition: color .15s ease, background .15s ease;
}
.ez-nav__dropdown-link:hover { color: var(--nav-ink-strong); background: var(--nav-hover-bg); }
.ez-nav__dropdown-link:hover i { color: #fff; background: var(--accent); }

.ez-nav__actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    padding-left: 16px;
    border-left: 1px solid var(--nav-divider);
}

.ez-theme-toggle {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid var(--nav-ghost-border);
    background: var(--nav-ghost-bg);
    color: var(--accent);
    cursor: pointer;
    transition: transform .2s ease, color .2s ease, background .2s ease, border-color .2s ease;
}
.ez-theme-toggle:hover {
    transform: translateY(-1px);
    color: var(--nav-ink-strong);
    border-color: var(--accent);
    background: var(--nav-hover-bg);
}
.ez-theme-toggle i { pointer-events: none; }
.ez-theme-toggle__label { display: none; }
.ez-nav__mobile-actions .ez-theme-toggle { width: 100%; border-radius: 100px; gap: 8px; }
.ez-nav__mobile-actions .ez-theme-toggle__label { display: inline; }

.ez-nav__btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 18px;
    font-size: .81rem;
    font-weight: 700;
    border-radius: 100px;
    transition: transform .2s ease, color .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
    cursor: pointer;
    white-space: nowrap;
    border: none;
}
.ez-nav__btn--ghost {
    background: var(--nav-ghost-bg);
    color: var(--nav-ink);
    border: 1.5px solid var(--nav-ghost-border);
}
.ez-nav__btn--ghost:hover {
    color: var(--nav-ink-strong);
    border-color: var(--accent);
    background: var(--nav-hover-bg);
}
.ez-nav__btn--primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dk) 100%);
    color: #fff;
    box-shadow: 0 6px 18px var(--nav-cta-glow);
}
.ez-nav__btn--primary:hover {
    background: linear-gradient(135deg, #0A93AA 0%, var(--accent) 100%);
    transform: translateY(-1px);
    box-shadow: 0 10px 26px var(--nav-cta-glow-hover);
    color: #fff;
}

.ez-nav__hamburger {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    margin-left: auto;
    cursor: pointer;
    border-radius: 12px;
    background: var(--nav-ghost-bg);
    border: 1px solid var(--nav-ghost-border);
}
.ez-nav__hamburger span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--nav-ink-strong);
    border-radius: 2px;
    transition: transform .25s ease, opacity .2s ease;
}
.ez-nav__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ez-nav__hamburger.is-open span:nth-child(2) { opacity: 0; }
.ez-nav__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.ez-nav__mobile {
    display: none;
    position: fixed;
    inset: var(--nav-h) 0 0 0;
    background: var(--nav-mobile-bg);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    z-index: 999;
    overflow-y: auto;
    padding: 22px;
    flex-direction: column;
    gap: 4px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease;
}
.ez-nav__mobile.is-open { display: flex; opacity: 1; pointer-events: auto; }
.ez-nav__mobile-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    font-size: .95rem;
    font-weight: 600;
    color: var(--nav-ink);
    border-radius: 14px;
    transition: color .15s ease, background .15s ease;
}
.ez-nav__mobile-link i {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    color: var(--accent);
    background: var(--nav-chip-bg);
    border-radius: 10px;
    flex-shrink: 0;
    transition: color .15s ease, background .15s ease;
}
.ez-nav__mobile-link:hover,
.ez-nav__mobile-link--active { color: var(--nav-ink-strong); background: var(--nav-hover-bg); }
.ez-nav__mobile-link--active i { color: #fff; background: var(--accent); }
.ez-nav__mobile-divider { height: 1px; background: var(--nav-divider); margin: 10px 0; }
.ez-nav__mobile-section {
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--accent);
    padding: 14px 14px 6px;
}
.ez-nav__mobile-actions { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.ez-nav__mobile-actions .ez-nav__btn {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
    font-size: .9rem;
}

/* A little breathing room between menu items on wide screens */
@media (min-width: 1241px) {
    .ez-nav__links { gap: 8px; }
}

/* Tighten the rail before the links are swapped for the drawer */
@media (max-width: 1240px) {
    .ez-nav__inner { gap: 14px; }
    .ez-nav__logo { padding-right: 14px; }
    .ez-nav__link { padding: 8px 11px; font-size: .79rem; }
    .ez-nav__actions { padding-left: 12px; }
}

/* Below the desktop breakpoint the bar spans the full width again */
@media (max-width: 1024px) {
    .ez-nav { padding: 0; }
    .ez-nav__inner {
        width: 100%;
        max-width: none;
        height: var(--nav-h);
        gap: 0;
        padding: 0 20px;
        border: none;
        border-bottom: 1px solid var(--nav-border);
        border-radius: 0;
        background: var(--nav-bar-bg);
        box-shadow: none;
    }
    .ez-nav--scrolled .ez-nav__inner {
        height: var(--nav-h);
        box-shadow: 0 6px 20px var(--nav-bar-shadow);
    }
    .ez-nav__logo { padding-right: 0; border-right: none; }
    .ez-nav__links,
    .ez-nav__actions { display: none; }
    .ez-nav__hamburger { display: flex; }
}

.ez-page { min-height: auto; }

/* ════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════ */
.ez-hero {
    background: var(--canvas);
    padding: 16px 0 48px;
    position: relative;
    overflow: hidden;
}
.ez-hero::before {
    content: '';
    position: absolute; inset: -10%;
    background-image:
        linear-gradient(rgba(8,125,145,.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(8,125,145,.12) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 80% 60% at 60% 50%, black 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 60% 50%, black 30%, transparent 100%);
    animation: ezHeroGridDrift 28s linear infinite;
    pointer-events: none;
}
.ez-hero::after {
    content: '';
    position: absolute;
    width: 1000px; height: 1000px;
    background: radial-gradient(circle, rgba(0,90,107,.6) 0%, rgba(0,59,74,.3) 40%, transparent 70%);
    top: 0; left: 40%;
    pointer-events: none;
    animation: ezHeroGlowMove 12s ease-in-out infinite;
    will-change: transform, opacity;
}

.ez-hero__inner {
    position: relative; z-index: 2;
    display: grid; grid-template-columns: 1.05fr 1fr;
    gap: 56px; align-items: center;
}

.ez-crumbs {
    display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
    font-size: .76rem; color: var(--ink-muted); margin-bottom: 18px;
    opacity: 0;
    animation: ezHeroFadeUp .7s ease forwards;
}
.ez-crumbs a { color: var(--ink-muted); transition: color .18s ease; }
.ez-crumbs a:hover { color: var(--accent); }
.ez-crumbs i { font-size: .55rem; opacity: .6; }
.ez-crumbs span { color: var(--ink-soft); font-weight: 600; }

.ez-hero__tag {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
    color: var(--accent); background: rgba(8,125,145,.1);
    padding: 7px 16px; border-radius: 100px;
    border: 1px solid rgba(8,125,145,.45);
    margin-bottom: 22px;
    opacity: 0;
    animation: ezHeroFadeUp .7s ease forwards;
    animation-delay: .1s;
}
.ez-hero__tag i { font-size: .8rem; }

.ez-hero__heading {
    font-size: clamp(2.2rem, 4.2vw, 3.55rem);
    font-weight: 900; line-height: 1.12; letter-spacing: -.025em;
    color: var(--ink); margin-bottom: 20px;
    opacity: 0;
    animation: ezHeroFadeUp .75s ease forwards;
    animation-delay: .22s;
}
.ez-hero__heading em {
    font-style: normal;
    color: var(--accent);
    text-shadow: 0 0 24px rgba(8,125,145,.45);
    animation: ezHeroAccentPulse 2.8s ease-in-out infinite;
}

.ez-hero__sub {
    font-size: 1.02rem; color: var(--ink-soft);
    line-height: 1.7; margin-bottom: 32px; max-width: 520px;
    opacity: 0;
    animation: ezHeroFadeUp .75s ease forwards;
    animation-delay: .36s;
}

.ez-hero__actions {
    display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px;
    opacity: 0;
    animation: ezHeroFadeUp .75s ease forwards;
    animation-delay: .48s;
}
.ez-hero__actions .ez-btn--teal { animation: ezHeroBtnGlow 2.6s ease-in-out infinite; }
.ez-hero__actions .ez-btn--teal:hover { animation: none; }

.ez-hero__trust {
    display: flex; align-items: center; flex-wrap: wrap; gap: 0;
    opacity: 0;
    animation: ezHeroFadeUp .75s ease forwards;
    animation-delay: .6s;
}
.ez-hero__trust-item {
    display: flex; align-items: center; gap: 8px;
    font-size: .8rem; color: var(--ink-soft); font-weight: 500;
    padding: 0 18px;
    border-right: 1px solid var(--border);
    transition: color .22s ease, transform .22s ease;
}
.ez-hero__trust-item:hover { color: var(--ink); transform: translateY(-2px); }
.ez-hero__trust-item:first-child { padding-left: 0; }
.ez-hero__trust-item:last-child { border-right: none; padding-right: 0; }
.ez-hero__trust-item i { color: var(--accent); font-size: .88rem; transition: transform .22s ease; }
.ez-hero__trust-item:hover i { transform: scale(1.18); }

.ez-hero__visual {
    position: relative;
    display: flex; align-items: center; justify-content: center;
    padding: 30px 10px 28px;
    opacity: 0;
    animation: ezHeroVisualIn .95s ease forwards;
    animation-delay: .35s;
}
.ez-hero__visual::before {
    content: '';
    position: absolute;
    left: 50%; top: 42%; transform: translate(-50%, -50%);
    width: 90%; height: 70%;
    background: radial-gradient(ellipse, rgba(8,125,145,.4) 0%, transparent 70%);
    filter: blur(20px);
    pointer-events: none; z-index: 0;
    animation: ezHeroAuraPulse 4s ease-in-out infinite;
}

.ez-hero__chip {
    position: absolute;
    z-index: 3;
    background: rgba(6,17,31,.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(8,125,145,.4);
    border-radius: 100px;
    padding: 8px 14px; font-size: .74rem; font-weight: 700; color: var(--ink);
    box-shadow: 0 8px 24px rgba(0,0,0,.35);
    display: flex; align-items: center; gap: 7px;
    white-space: nowrap;
    opacity: 0;
    transition: border-color .25s ease, box-shadow .25s ease;
}
.ez-hero__chip:hover {
    border-color: rgba(8,125,145,.8);
    box-shadow: 0 10px 28px rgba(8,125,145,.25);
}
.ez-hero__chip i { font-size: .82rem; color: var(--accent); }
.ez-hero__chip--tl {
    top: 44px; left: 0;
    animation: ezHeroChipIn .7s ease forwards, ezHeroFloatA 3.6s ease-in-out 1s infinite;
    animation-delay: .55s, 1.2s;
}
.ez-hero__chip--tr {
    top: 120px; right: 0;
    animation: ezHeroChipIn .7s ease forwards, ezHeroFloatB 4s ease-in-out 1s infinite;
    animation-delay: .7s, 1.4s;
}
.ez-hero__chip--br {
    bottom: 90px; left: 4px; border-color: rgba(8,125,145,.55);
    animation: ezHeroChipIn .7s ease forwards, ezHeroFloatA 3.2s ease-in-out 1s infinite;
    animation-delay: .85s, 1.6s;
}

/* ─── SECURITY CONSOLE MOCKUP ────────────────────────── */
.ez-soc {
    position: relative; z-index: 1;
    width: 100%; max-width: 460px;
    background: linear-gradient(160deg, rgba(6,17,31,.97) 0%, rgba(5,11,24,.94) 100%);
    border: 1px solid rgba(8,125,145,.5);
    border-radius: 18px;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(8,125,145,.15),
        0 0 48px rgba(8,125,145,.22),
        0 24px 64px rgba(0,0,0,.45);
    animation: ezHeroFloat 5s ease-in-out infinite;
    transition: border-color .3s ease, box-shadow .3s ease;
}
.ez-soc:hover {
    border-color: rgba(8,125,145,.75);
    box-shadow:
        0 0 0 1px rgba(8,125,145,.25),
        0 0 60px rgba(8,125,145,.35),
        0 28px 72px rgba(0,0,0,.5);
}

.ez-soc__bar {
    display: flex; align-items: center; gap: 14px;
    padding: 12px 16px;
    background: rgba(4,8,18,.85);
    border-bottom: 1px solid var(--border);
}
.ez-soc__dots { display: flex; gap: 6px; flex-shrink: 0; }
.ez-soc__dots span {
    width: 10px; height: 10px; border-radius: 50%;
    background: rgba(255,255,255,.16);
}
.ez-soc__dots span:first-child { background: rgba(239,68,68,.65); }
.ez-soc__dots span:nth-child(2) { background: rgba(245,158,11,.65); }
.ez-soc__dots span:nth-child(3) { background: rgba(16,185,129,.6); }
.ez-soc__url {
    flex: 1;
    display: flex; align-items: center; gap: 8px;
    padding: 6px 14px;
    border-radius: 100px;
    background: rgba(255,255,255,.05);
    border: 1px solid var(--border);
    font-size: .72rem; color: var(--ink-muted);
    min-width: 0;
}
.ez-soc__url i { color: var(--success); font-size: .68rem; }
.ez-soc__url span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.ez-soc__body { padding: 18px 18px 16px; display: flex; flex-direction: column; gap: 14px; }

.ez-soc__head {
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.ez-soc__title { font-size: .9rem; font-weight: 800; color: var(--ink); }
.ez-soc__live {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: .66rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
    color: var(--success);
    padding: 4px 10px; border-radius: 100px;
    background: rgba(16,185,129,.1);
    border: 1px solid rgba(16,185,129,.3);
}
.ez-soc__live::before {
    content: '';
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--success);
    animation: ezSocBlink 1.8s ease-in-out infinite;
}

.ez-soc__stages {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
}
.ez-soc__stage {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 8px 10px;
    text-align: center;
    background: rgba(255,255,255,.03);
    position: relative;
    transition: border-color .25s ease, background .25s ease, transform .25s ease;
}
.ez-soc__stage:hover {
    border-color: rgba(8,125,145,.5);
    background: rgba(8,125,145,.08);
    transform: translateY(-3px);
}
.ez-soc__stage-icon {
    width: 32px; height: 32px; margin: 0 auto 8px;
    border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
    font-size: .78rem; color: #fff;
    background: linear-gradient(135deg, #0BA3BC, #005A6B);
}
.ez-soc__stage--done .ez-soc__stage-icon { background: linear-gradient(135deg, #059669, #10B981); }
.ez-soc__stage--run .ez-soc__stage-icon {
    background: linear-gradient(135deg, #087D91, #0BA3BC);
    animation: ezSocPulse 1.6s ease-in-out infinite;
}
.ez-soc__stage--wait .ez-soc__stage-icon {
    background: linear-gradient(135deg, #35434F, #687583);
}
.ez-soc__stage-name {
    font-size: .62rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
    color: var(--ink); margin-bottom: 3px;
}
.ez-soc__stage-meta { font-size: .58rem; color: var(--ink-muted); font-weight: 600; }

.ez-soc__term {
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(4,8,18,.7);
    overflow: hidden;
}
.ez-soc__term-bar {
    display: flex; align-items: center; gap: 8px;
    padding: 8px 12px;
    border-bottom: 1px solid var(--border);
    font-size: .64rem; font-weight: 700; color: var(--ink-muted);
    letter-spacing: .06em; text-transform: uppercase;
}
.ez-soc__term-bar i { color: var(--accent); }
.ez-soc__term-body {
    padding: 12px 14px 14px;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: .68rem; line-height: 1.65;
    color: var(--ink-soft);
}
.ez-soc__term-line { opacity: 0; animation: ezHeroFadeUp .5s ease forwards; }
.ez-soc__term-line:nth-child(1) { animation-delay: .55s; }
.ez-soc__term-line:nth-child(2) { animation-delay: .7s; }
.ez-soc__term-line:nth-child(3) { animation-delay: .85s; }
.ez-soc__term-line:nth-child(4) { animation-delay: 1s; }
.ez-soc__term-line:nth-child(5) { animation-delay: 1.15s; }
.ez-soc__prompt { color: var(--accent); font-weight: 700; }
.ez-soc__ok { color: var(--success); font-weight: 700; }
.ez-soc__dim { color: var(--ink-muted); }
.ez-soc__cursor {
    display: inline-block; width: 7px; height: 12px;
    background: var(--accent); margin-left: 2px; vertical-align: -2px;
    animation: ezSocCursor 1s steps(1) infinite;
}

.ez-soc__metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.ez-soc__metric {
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px 10px;
    background: rgba(255,255,255,.03);
}
.ez-soc__metric-label {
    font-size: .58rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
    color: var(--ink-muted); margin-bottom: 4px;
}
.ez-soc__metric-value { font-size: .95rem; font-weight: 900; color: var(--ink); line-height: 1.1; }
.ez-soc__metric-trend {
    font-size: .58rem; font-weight: 700; color: var(--success);
    display: flex; align-items: center; gap: 4px; margin-top: 3px;
}

.ez-hero__chip--tl {
    top: 0; left: 0;
    animation: ezHeroChipIn .7s ease forwards, ezHeroFloatA 3.6s ease-in-out 1s infinite;
    animation-delay: .55s, 1.2s;
}
.ez-hero__chip--tr {
    top: 0; right: 0;
    animation: ezHeroChipIn .7s ease forwards, ezHeroFloatB 4s ease-in-out 1s infinite;
    animation-delay: .7s, 1.4s;
}
.ez-hero__chip--br {
    bottom: 8px; left: 0; border-color: rgba(8,125,145,.55);
    animation: ezHeroChipIn .7s ease forwards, ezHeroFloatA 3.2s ease-in-out 1s infinite;
    animation-delay: .85s, 1.6s;
}

/* ─── STATS BAR ──────────────────────────────────────── */
.ez-stats {
    background: var(--canvas);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 28px 0;
    position: relative; z-index: 2;
}
.ez-stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.ez-stats__item {
    display: flex; align-items: center; gap: 16px;
    text-align: left; padding: 8px 28px;
    border-right: 1px solid var(--border);
}
.ez-stats__item:first-child { padding-left: 0; }
.ez-stats__item:last-child { border-right: none; padding-right: 0; }
.ez-stats__icon {
    width: 48px; height: 48px; flex-shrink: 0;
    border-radius: 50%;
    border: 1.5px solid rgba(8,125,145,.4);
    background: rgba(8,125,145,.08);
    display: flex; align-items: center; justify-content: center;
    color: var(--accent); font-size: 1.05rem;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.ez-stats__item:hover .ez-stats__icon {
    transform: translateY(-3px) scale(1.08);
    border-color: rgba(8,125,145,.7);
    box-shadow: 0 0 20px rgba(8,125,145,.3);
}
.ez-stats__item.is-visible .ez-stats__icon { animation: ezIconPulse 3.5s ease-in-out infinite; }
.ez-stats__item:nth-child(2).is-visible .ez-stats__icon { animation-delay: .4s; }
.ez-stats__item:nth-child(3).is-visible .ez-stats__icon { animation-delay: .8s; }
.ez-stats__item:nth-child(4).is-visible .ez-stats__icon { animation-delay: 1.2s; }
.ez-stats__text { min-width: 0; }
.ez-stats__num {
    font-size: 1.75rem; font-weight: 900; color: var(--ink);
    letter-spacing: -.02em; line-height: 1.1;
}
.ez-stats__label { font-size: .8rem; color: var(--ink-muted); font-weight: 500; margin-top: 4px; }

/* ─── INTRO ──────────────────────────────────────────── */
.ez-intro { padding: 40px 0 8px; position: relative; }
.ez-intro__inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 56px; align-items: center;
}
.ez-intro__sub { margin-top: 18px; }
.ez-intro__list {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 12px 20px; margin-top: 26px;
}
.ez-intro__list li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: .88rem; color: var(--ink-soft);
}
.ez-intro__list i { color: var(--accent); font-size: .8rem; margin-top: .35rem; }

.ez-intro__media {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
}
.ez-intro__media img { width: 100%; height: 100%; object-fit: cover; }
.ez-intro__media::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(160deg, rgba(8,125,145,.28) 0%, rgba(4,8,18,.72) 100%);
    pointer-events: none;
}

/* ─── CAPABILITIES ───────────────────────────────────── */
.ez-services {
    padding: 36px 0 40px;
    background: var(--canvas);
    position: relative;
    overflow: hidden;
}
.ez-services::before {
    content: '';
    position: absolute;
    width: 800px; height: 400px;
    left: 50%; top: 0; transform: translateX(-50%);
    background: radial-gradient(ellipse, rgba(0,59,74,.4) 0%, transparent 70%);
    pointer-events: none;
}
.ez-services__panel {
    position: relative; z-index: 2;
    background: linear-gradient(180deg, #06111F 0%, #050B18 100%);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 64px 48px 48px;
    box-shadow: 0 0 50px rgba(8,125,145,.08), inset 0 1px 0 rgba(255,255,255,.03);
}
.ez-services__header { text-align: center; max-width: 620px; margin: 0 auto 52px; }
.ez-services__header .ez-section-label { justify-content: center; }
.ez-services__header .ez-body { margin-top: 14px; }
.ez-services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.ez-svc {
    background: rgba(4,8,18,.55);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 26px;
    display: flex; gap: 20px; align-items: flex-start;
    transition: all .25s ease;
}
.ez-svc:hover {
    background: rgba(8,125,145,.06);
    box-shadow: 0 0 28px rgba(8,125,145,.12);
    transform: translateY(-3px);
    border-color: rgba(8,125,145,.45);
}
.ez-svc__icon {
    width: 52px; height: 52px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; flex-shrink: 0; color: #fff;
    transition: transform .3s ease, box-shadow .3s ease;
}
.ez-svc:hover .ez-svc__icon {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 0 22px rgba(8,125,145,.35);
}
.ez-svc__icon--blue   { background: linear-gradient(135deg, #005A6B, #087D91); }
.ez-svc__icon--green  { background: linear-gradient(135deg, #059669, #10B981); }
.ez-svc__icon--purple { background: linear-gradient(135deg, #1e3a8a, #3b82f6); }
.ez-svc__icon--red    { background: linear-gradient(135deg, #DC2626, #F87171); }
.ez-svc__icon--orange { background: linear-gradient(135deg, #D97706, #F59E0B); }
.ez-svc__icon--teal   { background: linear-gradient(135deg, #0284c7, #38bdf8); }
.ez-svc__body { min-width: 0; }
.ez-svc__title { font-size: 1.08rem; font-weight: 800; color: var(--ink); margin-bottom: 8px; }
.ez-svc__desc { font-size: .88rem; color: var(--ink-soft); line-height: 1.6; }

/* ─── THREAT LANDSCAPE ───────────────────────────────── */
.ez-threats { padding: 36px 0 8px; position: relative; }
.ez-threats__header { text-align: center; max-width: 620px; margin: 0 auto 40px; }
.ez-threats__header .ez-section-label { justify-content: center; }
.ez-threats__header .ez-body { margin-top: 14px; }
.ez-threats__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.ez-threat {
    --sev: #087D91;
    --sev-soft: rgba(8,125,145,.12);
    --sev-ring: rgba(8,125,145,.34);
    --sev-glow: rgba(8,125,145,.22);
    position: relative;
    background: linear-gradient(180deg, #06111F 0%, #050B18 100%);
    border: 1px solid var(--border);
    border-left: 3px solid var(--sev);
    border-radius: 16px;
    padding: 26px 24px;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.ez-threat:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 28px var(--sev-glow);
}
.ez-threat--critical {
    --sev: #EF4444;
    --sev-soft: rgba(239,68,68,.12);
    --sev-ring: rgba(239,68,68,.36);
    --sev-glow: rgba(239,68,68,.2);
}
.ez-threat--high {
    --sev: #F59E0B;
    --sev-soft: rgba(245,158,11,.12);
    --sev-ring: rgba(245,158,11,.36);
    --sev-glow: rgba(245,158,11,.2);
}

.ez-threat__top {
    display: flex; align-items: center; justify-content: space-between;
    gap: 14px; margin-bottom: 16px;
}
.ez-threat__icon {
    width: 46px; height: 46px; border-radius: 13px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; color: var(--sev);
    background: var(--sev-soft);
    border: 1px solid var(--sev-ring);
    transition: transform .3s ease, box-shadow .3s ease;
}
.ez-threat:hover .ez-threat__icon {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 0 20px var(--sev-glow);
}
.ez-threat__sev {
    font-size: .62rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
    color: var(--sev);
    padding: 4px 11px; border-radius: 100px;
    background: var(--sev-soft);
    border: 1px solid var(--sev-ring);
    white-space: nowrap;
}
.ez-threat__title { font-size: 1.02rem; font-weight: 800; color: var(--ink); margin-bottom: 8px; }
.ez-threat__desc { font-size: .88rem; color: var(--ink-soft); line-height: 1.6; }
.ez-threat__defence {
    display: flex; align-items: center; gap: 8px;
    margin-top: 16px; padding-top: 14px;
    border-top: 1px solid var(--border);
    font-size: .78rem; font-weight: 600; color: var(--ink-muted);
}
.ez-threat__defence i { color: var(--sev); font-size: .76rem; }

/* ─── TECH STACK ─────────────────────────────────────── */
.ez-tech { padding: 32px 0 8px; position: relative; }
.ez-tech__header { text-align: center; max-width: 620px; margin: 0 auto 40px; }
.ez-tech__header .ez-section-label { justify-content: center; }
.ez-tech__header .ez-body { margin-top: 14px; }

.ez-tech__grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.ez-tech__card {
    background: linear-gradient(180deg, #06111F 0%, #050B18 100%);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 26px 24px;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.ez-tech__card:hover {
    transform: translateY(-4px);
    border-color: rgba(8,125,145,.45);
    box-shadow: 0 0 28px rgba(8,125,145,.12);
}
.ez-tech__card-title {
    display: flex; align-items: center; gap: 10px;
    font-size: .74rem; font-weight: 800; letter-spacing: .12em;
    text-transform: uppercase; color: var(--ink-muted);
    margin-bottom: 18px;
}
.ez-tech__card-title i { color: var(--accent); font-size: .85rem; }
.ez-tech__pills { display: flex; flex-wrap: wrap; gap: 8px; }
.ez-tech__pill {
    display: inline-flex; align-items: center;
    font-size: .76rem; font-weight: 700;
    padding: 6px 13px; border-radius: 100px;
    border: 1px solid var(--border);
    background: rgba(8,125,145,.06);
    color: var(--ink-soft);
    transition: transform .22s ease, border-color .22s ease, color .22s ease, box-shadow .22s ease;
}
.ez-tech__pill:hover {
    transform: translateY(-3px) scale(1.05);
    border-color: rgba(8,125,145,.6);
    color: var(--ink);
    box-shadow: 0 6px 16px rgba(8,125,145,.2);
}

/* ─── PROCESS + SIDEBAR LAYOUT ───────────────────────── */
.ez-work { padding: 40px 0; position: relative; }
.ez-work__inner {
    display: grid; grid-template-columns: minmax(0, 1fr) 340px;
    gap: 48px; align-items: flex-start;
}

.ez-process { margin-bottom: 8px; }
.ez-process__header { margin-bottom: 40px; }
.ez-process__header .ez-body { margin-top: 14px; max-width: 620px; }

.ez-process__steps {
    display: flex; flex-direction: column; gap: 18px;
    position: relative;
    padding-left: 34px;
}
.ez-process__steps::before {
    content: '';
    position: absolute;
    left: 17px; top: 12px; bottom: 12px;
    width: 2px;
    background: linear-gradient(180deg, rgba(8,125,145,.7) 0%, rgba(8,125,145,.15) 100%);
}
.ez-step { position: relative; }
.ez-step__num {
    position: absolute;
    left: -34px; top: 22px;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #087D91, #005A6B);
    color: #fff; font-weight: 800; font-size: .85rem;
    display: flex; align-items: center; justify-content: center;
    border: 3px solid var(--canvas);
    box-shadow: 0 0 18px rgba(8,125,145,.35);
    transition: transform .25s ease, box-shadow .25s ease;
    z-index: 2;
}
.ez-step:hover .ez-step__num {
    transform: scale(1.1);
    box-shadow: 0 0 26px rgba(8,125,145,.55);
}
.ez-step__card {
    margin-left: 22px;
    background: linear-gradient(180deg, #06111F 0%, #050B18 100%);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px 26px;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.ez-step:hover .ez-step__card {
    transform: translateX(4px);
    border-color: rgba(8,125,145,.45);
    box-shadow: 0 0 28px rgba(8,125,145,.12);
}
.ez-step__title {
    font-size: 1.02rem; font-weight: 800; color: var(--ink);
    margin-bottom: 8px;
    display: flex; align-items: center; gap: 10px;
}
.ez-step__title i { color: var(--accent); font-size: .9rem; }
.ez-step__text { font-size: .88rem; color: var(--ink-soft); line-height: 1.7; }

.ez-step__meta {
    display: flex; align-items: center; flex-wrap: wrap; gap: 8px;
    margin-top: 14px;
}
.ez-step__tag {
    font-size: .7rem; font-weight: 700;
    padding: 4px 11px; border-radius: 100px;
    border: 1px solid var(--border);
    background: rgba(8,125,145,.06);
    color: var(--ink-muted);
    transition: border-color .22s ease, color .22s ease;
}
.ez-step:hover .ez-step__tag { border-color: rgba(8,125,145,.4); color: var(--ink-soft); }
.ez-step__time {
    display: inline-flex; align-items: center; gap: 6px;
    margin-left: auto;
    font-size: .7rem; font-weight: 700;
    color: var(--accent);
}
.ez-step__time i { font-size: .68rem; }

/* ─── SIDEBAR ────────────────────────────────────────── */
.ez-side { display: flex; flex-direction: column; gap: 20px; }

.ez-side-card {
    background: linear-gradient(180deg, #06111F 0%, #050B18 100%);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 26px 24px;
    box-shadow: var(--shadow-md);
}
.ez-side-card__title {
    font-size: .74rem; font-weight: 800; letter-spacing: .12em;
    text-transform: uppercase; color: var(--ink-muted);
    margin-bottom: 18px;
}
.ez-side-list { display: flex; flex-direction: column; gap: 6px; }
.ez-side-list__link {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 14px;
    border-radius: 12px;
    font-size: .88rem; font-weight: 600;
    color: var(--ink-soft);
    border: 1px solid transparent;
    transition: all .2s ease;
}
.ez-side-list__link i {
    width: 18px; text-align: center;
    color: var(--accent); font-size: .85rem;
    transition: transform .2s ease;
}
.ez-side-list__link:hover {
    color: var(--ink);
    background: rgba(8,125,145,.1);
    border-color: rgba(8,125,145,.4);
}
.ez-side-list__link:hover i { transform: translateX(2px); }
.ez-side-list__link--active {
    color: #fff;
    background: linear-gradient(135deg, rgba(8,125,145,.32), rgba(0,90,107,.22));
    border-color: rgba(8,125,145,.6);
    box-shadow: 0 0 20px rgba(8,125,145,.18);
}
.ez-side-list__link--active i { color: #fff; }

.ez-side-facts { display: flex; flex-direction: column; }
.ez-side-fact {
    display: flex; align-items: center; justify-content: space-between; gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}
.ez-side-fact:last-child { border-bottom: none; padding-bottom: 0; }
.ez-side-fact:first-child { padding-top: 0; }
.ez-side-fact__label {
    display: flex; align-items: center; gap: 9px;
    font-size: .82rem; color: var(--ink-soft);
}
.ez-side-fact__label i { color: var(--accent); font-size: .8rem; width: 16px; text-align: center; }
.ez-side-fact__value { font-size: .82rem; font-weight: 800; color: var(--ink); text-align: right; }

/* Rotating promo card */
.ez-promo {
    position: relative;
    background: linear-gradient(160deg, rgba(0,90,107,.35) 0%, rgba(6,17,31,.95) 60%);
    border: 1px solid rgba(8,125,145,.45);
    border-radius: 20px;
    padding: 28px 24px;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 0 34px rgba(8,125,145,.14);
}
.ez-promo::before {
    content: '';
    position: absolute;
    width: 260px; height: 260px;
    top: -60%; left: 50%; transform: translateX(-50%);
    background: radial-gradient(circle, rgba(8,125,145,.35) 0%, transparent 70%);
    pointer-events: none;
}
.ez-promo__slide { display: none; position: relative; z-index: 2; }
.ez-promo__slide.is-active { display: block; animation: ezHeroFadeIn .45s ease; }
.ez-promo__icon {
    width: 48px; height: 48px; margin: 0 auto 16px;
    border-radius: 14px;
    background: rgba(8,125,145,.16);
    border: 1px solid rgba(8,125,145,.45);
    color: var(--accent);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.05rem;
}
.ez-promo__title { font-size: 1.02rem; font-weight: 800; color: var(--ink); margin-bottom: 8px; }
.ez-promo__text { font-size: .84rem; color: var(--ink-soft); margin-bottom: 20px; line-height: 1.6; }
.ez-promo .ez-btn { width: 100%; justify-content: center; padding: 12px 20px; font-size: .85rem; }
.ez-promo__dots { display: flex; justify-content: center; gap: 6px; margin-top: 18px; position: relative; z-index: 2; }
.ez-promo__dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: rgba(255,255,255,.2);
    border: none; padding: 0; cursor: pointer;
    transition: background .2s ease, transform .2s ease;
}
.ez-promo__dot.is-active { background: var(--accent); transform: scale(1.25); }

.ez-side-contact { display: flex; flex-direction: column; gap: 14px; }
.ez-side-contact__item { display: flex; align-items: flex-start; gap: 12px; }
.ez-side-contact__icon {
    width: 38px; height: 38px; flex-shrink: 0;
    border-radius: 10px;
    background: rgba(8,125,145,.1);
    border: 1px solid rgba(8,125,145,.35);
    color: var(--accent);
    display: flex; align-items: center; justify-content: center;
    font-size: .85rem;
}
.ez-side-contact__text strong { display: block; font-size: .85rem; color: var(--ink); }
.ez-side-contact__text span,
.ez-side-contact__text a { font-size: .8rem; color: var(--ink-muted); }
.ez-side-contact__text a:hover { color: var(--accent); }

/* ─── FAQ ────────────────────────────────────────────── */
.ez-faq { padding: 16px 0 40px; }
.ez-faq__header { text-align: center; max-width: 620px; margin: 0 auto 40px; }
.ez-faq__header .ez-section-label { justify-content: center; }
.ez-faq__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ez-faq__item {
    background: linear-gradient(180deg, #06111F 0%, #050B18 100%);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 22px 24px;
    transition: border-color .25s ease, box-shadow .25s ease;
}
.ez-faq__item[open] { border-color: rgba(8,125,145,.45); box-shadow: 0 0 24px rgba(8,125,145,.1); }
.ez-faq__q {
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    font-size: .95rem; font-weight: 700; color: var(--ink);
    cursor: pointer; list-style: none;
}
.ez-faq__q::-webkit-details-marker { display: none; }
.ez-faq__q i { color: var(--accent); font-size: .8rem; transition: transform .25s ease; flex-shrink: 0; }
.ez-faq__item[open] .ez-faq__q i { transform: rotate(180deg); }
.ez-faq__a { font-size: .87rem; color: var(--ink-soft); line-height: 1.7; margin-top: 14px; }

/* ─── CTA BAND ───────────────────────────────────────── */
.ez-cta {
    background: linear-gradient(135deg, #003B4A 0%, #005A6B 50%, #087D91 100%);
    padding: 40px 0; text-align: center; position: relative; overflow: hidden;
}
.ez-cta::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 120% at 50% 50%, rgba(255,255,255,.06) 0%, transparent 70%);
}
.ez-cta::after {
    content: '';
    position: absolute;
    width: 480px; height: 480px;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255,255,255,.12) 0%, transparent 70%);
    pointer-events: none;
    animation: ezCtaPulse 4s ease-in-out infinite;
}
.ez-cta__inner { position: relative; z-index: 2; max-width: 1000px; margin: 0 auto; }
.ez-cta__heading {
    font-size: clamp(1.5rem, 3.4vw, 2.5rem);
    font-weight: 900; color: #F5F7FA;
    line-height: 1.15; letter-spacing: -.025em;
    margin-bottom: 14px;
    white-space: nowrap;
}
.ez-cta__sub {
    color: rgba(245,247,250,.82);
    font-size: 1rem;
    max-width: 620px; margin: 0 auto 32px;
    text-wrap: balance;
}
.ez-cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.ez-cta__note {
    display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
    gap: 8px 22px; margin-top: 24px;
    font-size: .8rem; font-weight: 500;
    color: rgba(245,247,250,.72);
}
.ez-cta__note span { display: inline-flex; align-items: center; gap: 7px; }
.ez-cta__note i { font-size: .78rem; color: rgba(255,255,255,.9); }

/* ════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════ */
.ez-footer { background: var(--dark); position: relative; overflow: hidden; }
.ez-footer::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(8,125,145,.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(8,125,145,.08) 1px, transparent 1px);
    background-size: 56px 56px;
    pointer-events: none;
}
.ez-footer__top {
    position: relative;
    z-index: 2;
    max-width: var(--ez-shell);
    width: 90%;
    margin: 0 auto;
    padding: 48px 32px 40px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 48px;
}
.ez-footer__logo { height: 36px; width: auto; opacity: .85; margin-bottom: 20px; }
.ez-footer__desc {
    font-size: .85rem;
    color: rgba(255,255,255,.45);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 280px;
}
.ez-footer__products { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.ez-footer__pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    font-size: .7rem;
    font-weight: 700;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.55);
    transition: border-color .2s, color .2s;
}
.ez-footer__pill:hover { border-color: rgba(8,125,145,.6); color: #087D91; }
.ez-footer__pill i { font-size: .65rem; color: var(--accent); }
.ez-footer__socials { display: flex; gap: 8px; }
.ez-footer__social {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.75);
    font-size: .9rem;
    transition: all .2s ease;
}
.ez-footer__social i {
    font-family: "Font Awesome 6 Brands";
    font-weight: 400;
    font-style: normal;
    line-height: 1;
    display: inline-block;
}
.ez-footer__social:hover {
    background: rgba(8,125,145,.25);
    border-color: rgba(8,125,145,.5);
    color: #087D91;
    transform: translateY(-2px);
}
.ez-footer__col-title {
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
    margin-bottom: 20px;
}
.ez-footer__col-links { display: flex; flex-direction: column; gap: 10px; }
.ez-footer__col-link {
    font-size: .85rem;
    color: rgba(255,255,255,.5);
    transition: color .18s;
    display: flex;
    align-items: center;
    gap: 6px;
}
.ez-footer__col-link::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(8,125,145,.5);
    flex-shrink: 0;
    transition: background .18s;
}
.ez-footer__col-link:hover { color: rgba(255,255,255,.9); }
.ez-footer__col-link:hover::before { background: var(--accent); }
.ez-footer__divider {
    position: relative;
    z-index: 2;
    max-width: var(--ez-shell);
    width: 90%;
    margin: 0 auto;
    padding: 0 32px;
    border-top: 1px solid rgba(255,255,255,.07);
}
.ez-footer__bottom {
    position: relative;
    z-index: 2;
    max-width: var(--ez-shell);
    width: 90%;
    margin: 0 auto;
    padding: 20px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.ez-footer__copy { font-size: .78rem; color: rgba(255,255,255,.3); }
.ez-footer__copy a { color: rgba(255,255,255,.45); transition: color .18s; }
.ez-footer__copy a:hover { color: #087D91; }
.ez-footer__legal { display: flex; align-items: center; gap: 20px; }
.ez-footer__legal a { font-size: .78rem; color: rgba(255,255,255,.35); transition: color .18s; }
.ez-footer__legal a:hover { color: rgba(255,255,255,.7); }
.ez-footer__accent-line {
    height: 3px;
    background: linear-gradient(90deg, #003B4A 0%, #087D91 50%, #005A6B 100%);
}

/* ─── LIGHT THEME ────────────────────────────────────── */
body.ez-light {
    --ink: #071018;
    --ink-soft: #35434F;
    --ink-muted: #687583;
    --canvas: #F4F7F9;
    --surface: #FFFFFF;
    --dark: #E8F0F3;
    --border: #C7D5DC;
    --accent-lt: #D9F0F3;
    --cta: #071018;
    --cta-text: #F5F7FA;
    --shadow-sm: 0 2px 8px rgba(7,16,24,.08);
    --shadow-md: 0 8px 24px rgba(7,16,24,.1);
    --shadow-lg: 0 18px 44px rgba(7,16,24,.12);
    --shadow-xl: 0 28px 68px rgba(7,16,24,.14);

--nav-bg:              rgba(255, 255, 255, .82);
    --nav-bg-scrolled:     rgba(255, 255, 255, .95);
    --nav-bar-bg:          rgba(247, 251, 252, .96);
    --nav-bar-shadow:      rgba(8, 80, 95, .16);
    --nav-mobile-bg:       rgba(247, 251, 252, .98);
    --nav-dropdown-bg:     #FFFFFF;
    --nav-border:          rgba(8, 125, 145, .2);
    --nav-border-scrolled: rgba(8, 125, 145, .34);
    --nav-shadow:          0 14px 34px rgba(8, 80, 95, .12), inset 0 1px 0 rgba(255, 255, 255, .9);
    --nav-shadow-scrolled: 0 16px 40px rgba(8, 80, 95, .16), 0 0 0 1px rgba(8, 125, 145, .1);
    --nav-divider:         rgba(8, 125, 145, .18);
    --nav-fade:            rgba(244, 248, 250, .92);
    --nav-chip-bg:         rgba(8, 125, 145, .12);
    --nav-ink:             #3A4A54;
    --nav-ink-strong:      #04303A;
    --nav-hover-bg:        rgba(8, 125, 145, .12);
    --nav-active-bg:       linear-gradient(135deg, rgba(8, 125, 145, .2) 0%, rgba(0, 90, 107, .1) 100%);
    --nav-active-ring:     rgba(8, 125, 145, .34);
    --nav-active-glow:     rgba(8, 125, 145, .16);
    --nav-ghost-bg:        rgba(8, 125, 145, .07);
    --nav-ghost-border:    rgba(8, 125, 145, .24);
    --nav-cta-glow:        rgba(8, 125, 145, .3);
    --nav-cta-glow-hover:  rgba(8, 125, 145, .42);
    --nav-logo-shadow:     drop-shadow(0 1px 3px rgba(8, 80, 95, .2));
    --nav-logo-chip:       transparent;

    background: var(--canvas);
    color: var(--ink);
}
body,
.ez-nav,
.ez-nav__mobile,
.ez-footer,
.ez-hero,
.ez-stats,
.ez-services,
.ez-services__panel,
.ez-svc,
.ez-threat,
.ez-tech__card,
.ez-step__card,
.ez-side-card,
.ez-promo,
.ez-faq__item,
.ez-soc {
    transition: background-color .35s ease, background .35s ease, color .35s ease,
                border-color .35s ease, box-shadow .35s ease;
}
/* Navbar colours come from the --nav-* tokens, so only a few extras remain */
body.ez-light .ez-nav__dropdown-link:hover { background: #EEF4F6; }
body.ez-light .ez-btn--primary { background: var(--accent); color: #fff; }

/* Sections stay transparent so the ambient + cursor glow reads behind content */
body .ez-hero,
body .ez-stats,
body .ez-intro,
body .ez-services,
body .ez-threats,
body .ez-tech,
body .ez-work,
body .ez-faq,
body.ez-light .ez-hero,
body.ez-light .ez-stats,
body.ez-light .ez-services { background-color: transparent; }

body.ez-light .ez-hero::before { opacity: .45; }
body.ez-light .ez-services__panel,
body.ez-light .ez-svc,
body.ez-light .ez-threat,
body.ez-light .ez-tech__card,
body.ez-light .ez-step__card,
body.ez-light .ez-side-card,
body.ez-light .ez-faq__item,
body.ez-light .ez-intro__media {
    background: rgba(255,255,255,.88);
    border-color: var(--border);
    box-shadow: var(--shadow-md);
}
body.ez-light .ez-threat { border-left-color: var(--sev); }
body.ez-light .ez-promo {
    background: linear-gradient(160deg, #E2F4F6, #FFFFFF);
    border-color: rgba(8,125,145,.55);
}
body.ez-light .ez-hero__chip { background: rgba(255,255,255,.94); color: var(--ink); }
body.ez-light .ez-tech__pill,
body.ez-light .ez-step__tag { background: #EDF3F5; }

/* Security console mockup — light theme */
body.ez-light .ez-soc {
    background: linear-gradient(160deg, #FFFFFF 0%, #F4F7F9 100%);
    border-color: rgba(8,125,145,.45);
    box-shadow: 0 0 0 1px rgba(8,125,145,.1), 0 18px 44px rgba(7,16,24,.14);
}
body.ez-light .ez-soc__bar { background: #EDF3F5; }
body.ez-light .ez-soc__dots span { background: rgba(7,16,24,.14); }
body.ez-light .ez-soc__dots span:first-child { background: rgba(239,68,68,.6); }
body.ez-light .ez-soc__dots span:nth-child(2) { background: rgba(245,158,11,.65); }
body.ez-light .ez-soc__dots span:nth-child(3) { background: rgba(16,185,129,.6); }
body.ez-light .ez-soc__url { background: #FFFFFF; }
body.ez-light .ez-soc__stage,
body.ez-light .ez-soc__metric { background: #FFFFFF; }
body.ez-light .ez-soc__stage:hover { background: #F2F9FA; }
body.ez-light .ez-soc__term { background: #F7FAFB; }

body.ez-light .ez-btn--white-outline { color: var(--ink); border-color: #83949E; }
body.ez-light .ez-cta__heading,
body.ez-light .ez-cta__sub { color: #F5F7FA; }
body.ez-light .ez-cta .ez-btn--primary { background: #FFFFFF; color: #071018; }
body.ez-light .ez-cta .ez-btn--white-outline { color: #fff; border-color: rgba(255,255,255,.55); }
body.ez-light .ez-step__num { border-color: var(--canvas); }
body.ez-light .ez-side-list__link--active { color: var(--ink); }
body.ez-light .ez-side-list__link--active i { color: var(--accent); }
body.ez-light .ez-footer { background: #DCE7EB; }
body.ez-light .ez-footer__desc,
body.ez-light .ez-footer__pill,
body.ez-light .ez-footer__social,
body.ez-light .ez-footer__col-title,
body.ez-light .ez-footer__col-link,
body.ez-light .ez-footer__copy,
body.ez-light .ez-footer__copy a,
body.ez-light .ez-footer__legal a { color: var(--ink-soft); }
body.ez-light .ez-footer__social { background: rgba(255,255,255,.65); border-color: var(--border); }
body.ez-light .ez-footer__divider,
body.ez-light .ez-footer__bottom { border-color: var(--border); }
body.ez-light .ez-bg-ambient__glow,
body.ez-light .ez-bg-ambient__glow--2 { opacity: .35; }
body.ez-light .ez-bg-cursor {
    mix-blend-mode: multiply;
    background: radial-gradient(circle, rgba(8,125,145,.16) 0%, rgba(0,90,107,.07) 35%, transparent 68%);
}
body.ez-light .ez-bg-cursor.is-active { opacity: .9; }
body.ez-light .ez-intro__media img { filter: saturate(.95) contrast(.98); }

/* ─── PAGE-WIDE REVEAL SYSTEM ────────────────────────── */
.ez-reveal {
    opacity: 0;
    transform: translateY(32px);
    transition:
        opacity .8s cubic-bezier(.22,1,.36,1),
        transform .8s cubic-bezier(.22,1,.36,1),
        box-shadow .35s ease,
        border-color .35s ease;
    will-change: opacity, transform;
}
.ez-reveal.is-visible { opacity: 1; transform: translateY(0); }
.ez-reveal[data-delay="1"] { transition-delay: .08s; }
.ez-reveal[data-delay="2"] { transition-delay: .16s; }
.ez-reveal[data-delay="3"] { transition-delay: .24s; }
.ez-reveal[data-delay="4"] { transition-delay: .32s; }
.ez-reveal[data-delay="5"] { transition-delay: .4s; }
.ez-reveal[data-delay="6"] { transition-delay: .48s; }

.ez-services__header.is-visible .ez-heading span,
.ez-threats__header.is-visible .ez-heading span,
.ez-tech__header.is-visible .ez-heading span,
.ez-faq__header.is-visible .ez-heading span,
.ez-process__header.is-visible .ez-heading span {
    animation: ezHeroAccentPulse 3s ease-in-out infinite;
}

/* ─── KEYFRAMES ──────────────────────────────────────── */
@keyframes ezHeroFadeUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes ezHeroFadeIn {
    from { opacity: 0; transform: translateY(16px) scale(.98); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes ezHeroVisualIn {
    from { opacity: 0; transform: translateY(28px) scale(.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes ezHeroChipIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes ezHeroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
@keyframes ezHeroFloatA {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
@keyframes ezHeroFloatB {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
@keyframes ezHeroBtnGlow {
    0%, 100% { box-shadow: 0 8px 28px rgba(8,125,145,.35); }
    50% { box-shadow: 0 10px 40px rgba(8,125,145,.65), 0 0 28px rgba(8,125,145,.35); }
}
@keyframes ezHeroAccentPulse {
    0%, 100% { text-shadow: 0 0 16px rgba(8,125,145,.3); }
    50% { text-shadow: 0 0 32px rgba(8,125,145,.7), 0 0 48px rgba(8,125,145,.25); }
}
@keyframes ezHeroAuraPulse {
    0%, 100% { opacity: .55; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}
@keyframes ezHeroGlowMove {
    0%   { transform: translate(-20%, -10%) scale(1); opacity: .75; }
    20%  { transform: translate(15%, 5%) scale(1.1); opacity: 1; }
    40%  { transform: translate(35%, 20%) scale(1.15); opacity: .85; }
    60%  { transform: translate(5%, 35%) scale(1.08); opacity: 1; }
    80%  { transform: translate(-30%, 15%) scale(1.12); opacity: .9; }
    100% { transform: translate(-20%, -10%) scale(1); opacity: .75; }
}
@keyframes ezHeroGridDrift {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(48px, 48px); }
}
@keyframes ezPageGlowDrift {
    0%   { transform: translate(0, 0) scale(1); }
    33%  { transform: translate(28vw, 18vh) scale(1.15); }
    66%  { transform: translate(-12vw, 35vh) scale(0.95); }
    100% { transform: translate(0, 0) scale(1); }
}
@keyframes ezPageGlowDrift2 {
    0%   { transform: translate(0, 0) scale(1.05); }
    50%  { transform: translate(-30vw, -20vh) scale(1.2); }
    100% { transform: translate(0, 0) scale(1.05); }
}
@keyframes ezIconPulse {
    0%, 100% { box-shadow: 0 0 0 rgba(8,125,145,0); }
    50% { box-shadow: 0 0 18px rgba(8,125,145,.35); }
}

@keyframes ezSocBlink {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 rgba(16,185,129,0); }
    50% { opacity: .45; box-shadow: 0 0 10px rgba(16,185,129,.6); }
}
@keyframes ezSocPulse {
    0%, 100% { box-shadow: 0 0 0 rgba(8,125,145,0); }
    50% { box-shadow: 0 0 14px rgba(8,125,145,.55); }
}
@keyframes ezSocCursor {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}
@keyframes ezCtaPulse {
    0%, 100% { opacity: .4; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: .85; transform: translate(-50%, -50%) scale(1.15); }
}

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1200px) {
    .ez-container,
    .ez-nav__inner,
    .ez-footer__top,
    .ez-footer__divider,
    .ez-footer__bottom { padding-left: 24px; padding-right: 24px; }
    .ez-tech__grid { grid-template-columns: repeat(2, 1fr); }
    .ez-services__grid,
    .ez-threats__grid { grid-template-columns: repeat(2, 1fr); }
    .ez-work__inner { grid-template-columns: minmax(0, 1fr) 300px; gap: 32px; }
    .ez-footer__top { grid-template-columns: 1.6fr 1fr 1fr; gap: 40px 32px; }
}

@media (max-width: 1024px) {

    .ez-hero__inner { grid-template-columns: 1fr; gap: 40px; }
    .ez-hero__content { order: 1; }
    .ez-hero__visual { order: 2; padding: 8px 0 4px; }
    .ez-hero__sub { max-width: 640px; }
    .ez-hero__chip { display: none; }
    .ez-intro__inner { grid-template-columns: 1fr; gap: 36px; }
    .ez-work__inner { grid-template-columns: 1fr; gap: 40px; }
    .ez-faq__grid { grid-template-columns: 1fr; }
    .ez-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .ez-stats__item {
        border-right: none; border-bottom: 1px solid var(--border);
        padding: 16px 8px;
    }
    .ez-stats__item:nth-child(3),
    .ez-stats__item:nth-child(4) { border-bottom: none; }
    .ez-stats__item:first-child { padding-left: 8px; }
    .ez-footer__top { grid-template-columns: 1fr 1fr; gap: 36px; }
    .ez-footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    .ez-container,
    .ez-nav__inner,
    .ez-footer__top,
    .ez-footer__divider,
    .ez-footer__bottom { padding-left: 20px; padding-right: 20px; }
    .ez-hero { padding: 12px 0 32px; }
    .ez-hero__heading { font-size: clamp(1.95rem, 7.4vw, 2.7rem); }
    .ez-hero__sub { font-size: .96rem; margin-bottom: 26px; }
    .ez-hero__actions { gap: 10px; }
    .ez-hero__actions .ez-btn { flex: 1 1 190px; justify-content: center; padding: 13px 20px; }
    .ez-hero__trust { gap: 10px 16px; }
    .ez-hero__trust-item { border-right: none; padding: 0; }
    .ez-intro__list { grid-template-columns: 1fr; }
    .ez-services { padding: 28px 0; }
    .ez-services__panel { padding: 40px 22px 32px; }
    .ez-services__grid,
    .ez-threats__grid { grid-template-columns: 1fr; }
    .ez-threats { padding: 24px 0 8px; }
    .ez-tech__grid { grid-template-columns: 1fr; }
    .ez-work { padding: 28px 0; }
    .ez-footer__top { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
    .ez-stats__grid { grid-template-columns: 1fr; }
    .ez-stats__item { border-bottom: 1px solid var(--border); padding: 16px 0; }
    .ez-stats__item:last-child { border-bottom: none; }
    .ez-soc { animation: none; }
}

@media (max-width: 520px) {
    .ez-container,
    .ez-nav__inner,
    .ez-footer__top,
    .ez-footer__divider,
    .ez-footer__bottom { padding-left: 16px; padding-right: 16px; }
    .ez-hero__tag { font-size: .66rem; padding: 6px 13px; margin-bottom: 18px; }
    .ez-hero__actions .ez-btn { flex: 1 1 100%; }
    .ez-cta__actions .ez-btn { flex: 1 1 100%; justify-content: center; }
    .ez-soc { max-width: 100%; }
    .ez-services__panel { padding: 32px 16px 26px; }
    .ez-svc, .ez-threat, .ez-tech__card, .ez-step__card, .ez-side-card { padding: 22px 18px; }
    .ez-process__steps { padding-left: 26px; }
    .ez-step__num { left: -26px; width: 30px; height: 30px; font-size: .78rem; }
    .ez-step__card { margin-left: 14px; }
    .ez-footer__top { grid-template-columns: 1fr; gap: 28px; }
    .ez-footer__bottom { justify-content: center; text-align: center; }
    /* Too narrow to keep the CTA headline on a single line */
    .ez-cta__heading { white-space: normal; text-wrap: balance; }
}

@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition-duration: .01ms !important; }
    .ez-reveal { opacity: 1 !important; transform: none !important; }
    .ez-hero__tag,
    .ez-hero__heading,
    .ez-hero__sub,
    .ez-hero__actions,
    .ez-hero__trust,
    .ez-hero__visual,
    .ez-hero__chip,
    .ez-soc__term-line,
    .ez-crumbs { opacity: 1 !important; }
}

/* ─── CONTACT PAGE ───────────────────────────────────── */
.ez-contact-hero {
    padding: 16px 0 48px;
    position: relative;
}
.ez-contact-hero .ez-hero__inner {
    grid-template-columns: 1fr;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}
.ez-contact-hero .ez-crumbs { justify-content: center; }
.ez-contact-hero .ez-hero__tag { justify-content: center; }
.ez-contact-hero .ez-hero__sub { margin: 0 auto; max-width: 620px; }
.ez-contact-hero .ez-hero__trust { justify-content: center; flex-wrap: wrap; }

.ez-contact {
    padding: 0 0 56px;
    position: relative;
}
.ez-contact__cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 28px;
}
.ez-contact__card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    min-height: 100%;
    height: 100%;
    padding: 28px 26px;
    background: linear-gradient(180deg, #06111F 0%, #050B18 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: 0 0 40px rgba(8,125,145,.06), inset 0 1px 0 rgba(255,255,255,.03);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.ez-contact__card:hover {
    transform: translateY(-4px);
    border-color: rgba(8,125,145,.45);
    box-shadow: 0 0 28px rgba(8,125,145,.12), 0 20px 60px rgba(0,0,0,.4);
}
.ez-contact__card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: #fff;
    background: linear-gradient(135deg, #087D91, #005A6B);
    box-shadow: 0 8px 20px rgba(8,125,145,.28);
    flex-shrink: 0;
}
.ez-contact__card-label {
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--accent);
}
.ez-contact__card-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--ink);
    line-height: 1.25;
}
.ez-contact__card-text {
    font-size: .88rem;
    color: var(--ink-soft);
    line-height: 1.65;
    flex: 1;
}
.ez-contact__card-link {
    font-size: .9rem;
    font-weight: 700;
    color: var(--ink);
    transition: color .18s ease;
}
.ez-contact__card-link:hover { color: var(--accent); }

.ez-contact__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
    gap: 24px;
    align-items: stretch;
}
.ez-contact__panel {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, #06111F 0%, #050B18 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 36px 34px;
    box-shadow: 0 0 50px rgba(8,125,145,.08), inset 0 1px 0 rgba(255,255,255,.03);
}
.ez-contact__panel-head {
    margin-bottom: 28px;
}
.ez-contact__panel-head .ez-section-label { margin-bottom: 10px; }
.ez-contact__panel-head .ez-heading {
    font-size: clamp(1.45rem, 2.4vw, 1.9rem);
    margin-bottom: 10px;
}
.ez-contact__panel-head .ez-body { font-size: .95rem; }

.ez-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}
.ez-form__group { display: flex; flex-direction: column; gap: 8px; }
.ez-form__label {
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .04em;
    color: var(--ink-soft);
}
.ez-form__input,
.ez-form__textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: inherit;
    font-size: .92rem;
    color: var(--ink);
    background: rgba(4,8,18,.55);
    border: 1px solid var(--border);
    border-radius: 14px;
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.ez-form__input::placeholder,
.ez-form__textarea::placeholder { color: var(--ink-muted); }
.ez-form__input:focus,
.ez-form__textarea:focus {
    outline: none;
    border-color: rgba(8,125,145,.55);
    box-shadow: 0 0 0 3px rgba(8,125,145,.14);
    background: rgba(8,125,145,.04);
}
.ez-form__textarea {
    min-height: 148px;
    resize: vertical;
}
.ez-form__submit {
    margin-top: 6px;
    width: 100%;
    justify-content: center;
    padding: 15px 24px;
    font-size: .95rem;
}

.ez-contact__aside {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}
.ez-contact__info-block {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 28px 26px;
    background: linear-gradient(180deg, #06111F 0%, #050B18 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: 0 0 40px rgba(8,125,145,.06), inset 0 1px 0 rgba(255,255,255,.03);
}
.ez-contact__info-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--ink);
}
.ez-contact__info-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.ez-contact__info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.ez-contact__info-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    color: var(--accent);
    background: rgba(8,125,145,.12);
    border: 1px solid rgba(8,125,145,.28);
    flex-shrink: 0;
}
.ez-contact__info-text strong {
    display: block;
    font-size: .88rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 2px;
}
.ez-contact__info-text span,
.ez-contact__info-text a {
    font-size: .84rem;
    color: var(--ink-soft);
    line-height: 1.55;
}
.ez-contact__info-text a:hover { color: var(--accent); }

.ez-contact__promise {
    padding: 22px 24px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(8,125,145,.18) 0%, rgba(0,90,107,.12) 100%);
    border: 1px solid rgba(8,125,145,.34);
}
.ez-contact__promise-title {
    font-size: .92rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 8px;
}
.ez-contact__promise-text {
    font-size: .84rem;
    color: var(--ink-soft);
    line-height: 1.65;
}

body.ez-light .ez-contact__card,
body.ez-light .ez-contact__panel,
body.ez-light .ez-contact__info-block {
    background: #FFFFFF;
    box-shadow: 0 8px 28px rgba(8,80,95,.08);
}
body.ez-light .ez-form__input,
body.ez-light .ez-form__textarea {
    background: #F7FAFB;
    border-color: rgba(8,125,145,.18);
    color: var(--ink);
}
body.ez-light .ez-contact__promise {
    background: rgba(8,125,145,.08);
}

@media (max-width: 1024px) {
    .ez-contact__cards { grid-template-columns: 1fr; }
    .ez-contact__grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .ez-contact-hero { padding: 12px 0 36px; }
    .ez-contact__panel { padding: 28px 22px; }
    .ez-contact__card,
    .ez-contact__info-block { padding: 24px 20px; }
}

/* ─── AUTH PAGES (login / register) ─────────────────── */
.ez-auth-hero {
    padding: 28px 0 16px;
    position: relative;
}
.ez-auth-hero .ez-hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 40px;
    align-items: start;
    max-width: none;
    margin: 0;
    text-align: left;
}
.ez-auth-hero .ez-crumbs { justify-content: flex-start; }
.ez-auth-hero .ez-hero__tag { justify-content: flex-start; }
.ez-auth-hero .ez-hero__sub {
    margin: 0;
    max-width: 520px;
}
.ez-auth-hero .ez-hero__trust {
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.ez-auth-hero__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-width: 0;
}
.ez-auth-hero__content .ez-contact__info-block {
    margin-top: 0;
}
.ez-auth-hero__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
    position: sticky;
    top: calc(var(--nav-h) + 20px);
    align-self: start;
}
.ez-auth-hero__form .ez-contact__panel {
    height: auto;
}
.ez-auth-hero__form .ez-contact__panel-head {
    margin-bottom: 22px;
}
.ez-auth-hero__form .ez-contact__panel-head .ez-heading {
    font-size: clamp(1.25rem, 2vw, 1.55rem);
}
.ez-auth-hero__promise {
    flex-shrink: 0;
}

/* Login: form + promise on right balances hero + info on left */
.ez-auth-hero--login .ez-auth-hero__form {
    width: 100%;
}

/* Mobile-only intro — hidden on desktop */
.ez-auth-mobile-intro {
    display: none;
}
.ez-auth-mobile-intro__heading {
    font-size: clamp(1.55rem, 5vw, 1.85rem);
    font-weight: 900;
    line-height: 1.18;
    letter-spacing: -.02em;
    color: var(--ink);
    margin-bottom: 10px;
}
.ez-auth-mobile-intro__heading em {
    font-style: normal;
    color: var(--accent);
}
.ez-auth-mobile-intro__sub {
    font-size: .9rem;
    color: var(--ink-soft);
    line-height: 1.65;
    margin: 0;
}

.ez-form__label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.ez-form__link {
    font-size: .78rem;
    font-weight: 600;
    color: var(--accent);
    transition: color .18s ease;
}
.ez-form__link:hover { color: #0BA3BC; }

.ez-form__password {
    position: relative;
    display: flex;
    align-items: stretch;
}
.ez-form__password .ez-form__input {
    padding-right: 48px;
    border-radius: 14px;
}
.ez-form__toggle {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 10px;
    background: transparent;
    color: var(--ink-muted);
    cursor: pointer;
    transition: color .18s ease, background .18s ease;
}
.ez-form__toggle:hover {
    color: var(--accent);
    background: rgba(8,125,145,.1);
}

.ez-form__check {
    display: flex;
    align-items: center;
    gap: 10px;
}
.ez-form__check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent);
    cursor: pointer;
    flex-shrink: 0;
}
.ez-form__check label {
    font-size: .86rem;
    color: var(--ink-soft);
    cursor: pointer;
    user-select: none;
}

.ez-form__footer {
    text-align: center;
    margin-top: 8px;
    font-size: .88rem;
    color: var(--ink-soft);
}
.ez-form__footer a {
    font-weight: 700;
    color: var(--accent);
    transition: color .18s ease;
}
.ez-form__footer a:hover { color: #0BA3BC; }

.ez-form__alert {
    padding: 14px 16px;
    border-radius: 14px;
    font-size: .88rem;
    font-weight: 600;
    background: rgba(239,68,68,.1);
    border: 1px solid rgba(239,68,68,.28);
    color: #FCA5A5;
}
body.ez-light .ez-form__alert {
    color: #B91C1C;
    background: rgba(239,68,68,.08);
}

body.ez-light .ez-auth-hero .ez-contact__panel,
body.ez-light .ez-auth-hero .ez-contact__info-block {
    background: #FFFFFF;
    box-shadow: 0 8px 28px rgba(8,80,95,.08);
}

@media (max-width: 1024px) {
    .ez-auth-hero .ez-hero__inner {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .ez-auth-hero__form {
        position: static;
        width: 100%;
    }

    /* Mobile / small screens: form, nav, footer only */
    .ez-auth-hero__content,
    .ez-auth-hero__promise {
        display: none !important;
    }
    .ez-auth-mobile-intro {
        display: block;
        text-align: center;
        margin-bottom: 22px;
    }
    .ez-auth-mobile-intro .ez-hero__tag {
        justify-content: center;
        margin-bottom: 14px;
    }
    .ez-auth-mobile-intro__sub {
        max-width: 340px;
        margin: 0 auto;
    }
    .ez-auth-hero {
        padding: 20px 0 16px;
    }
    .ez-auth-hero .ez-container {
        padding: 0 20px;
    }
}
@media (max-width: 768px) {
    .ez-auth-hero { padding: 16px 0 12px; }
    .ez-auth-hero .ez-container { padding: 0 16px; }
    .ez-auth-hero__form .ez-contact__panel { padding: 28px 22px; }
}

