/* ============================================================
   ZELPHIRE CONSULTANCY INC  —  "AURORA" DESIGN SYSTEM
   Electric Blue (#2E90FA) + Sky (#6FB8FF) on Deep Navy (#0C2138).
   A ground-up re-layout: sticky glass header, panoramic hero with
   framed device shot, floating stat cards, feature deck, orbital
   solutions rail, numbered process stepper, showcase splits,
   split contact console, aurora CTA, and a navy mega-footer.
   Fully self-contained layout and re-skins the base header/footer/form.
   ============================================================ */

:root {
    --brand:        #2E90FA;   /* electric blue */
    --brand-600:    #1A7DEC;
    --brand-700:    #1667C4;   /* deep */
    --brand-800:    #0F4F9C;
    --brand-300:    #5AA6F5;   /* sky (slightly deeper) */
    --brand-100:    #C6DEFF;
    --brand-050:    #E6F0FD;

    --sky:          #5AA6F5;   /* secondary accent */
    --sky-600:      #3D93EF;
    --sky-300:      #8CC4FB;

    --navy:         #0C2138;   /* deep navy (dark surfaces, ink) */
    --navy-2:       #12365F;   /* lifted navy for gradients */
    --navy-3:       #1B4E8C;

    --ink:          #0C2138;   /* headings */
    --ink-2:        #263A55;
    --muted:        #5A6B84;   /* body copy */
    --line:         #CFDCEE;   /* hairlines (more visible) */
    --line-2:       #DEE7F3;

    --bg:           #FFFFFF;
    --tint:         #E7F0FB;   /* cool section tint */
    --tint-2:       #DAE7F8;   /* deeper cool tint */

    --grad:         linear-gradient(135deg, #2E90FA 0%, #5AA6F5 100%);
    --grad-rev:     linear-gradient(135deg, #5AA6F5 0%, #2E90FA 100%);
    --grad-deep:    linear-gradient(155deg, #0C2138 0%, #123763 58%, #1C4E8C 100%);
    --grad-soft:    linear-gradient(135deg, #E4EFFC 0%, #D2E3F9 100%);

    --shadow-sm:    0 6px 22px rgba(12,33,56,.06);
    --shadow-md:    0 18px 44px rgba(46,144,250,.15);
    --shadow-lg:    0 34px 72px rgba(12,33,56,.18);
    --shadow-blue:  0 16px 40px rgba(46,144,250,.32);

    --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

    --r-sm: 12px;
    --r-md: 18px;
    --r-lg: 24px;
    --r-xl: 32px;
    --r-2xl: 40px;

    --sec-pad: 104px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    color: var(--muted);
    background: var(--bg);
    font-family: var(--font);
}
body, p, a, span, li, div, label, input, textarea, select, button,
h1, h2, h3, h4, h5, h6, .hero-title, .btn2, .btn-primary, .header-cta-btn {
    font-family: var(--font);
}
::selection { background: rgba(46,144,250,.18); color: var(--ink); }
img { max-width: 100%; }
a { text-decoration: none; }
section[id], div[id] { scroll-margin-top: 96px; }

.container {
    width: 100%; max-width: 1200px; margin: 0 auto; padding-left: 20px; padding-right: 20px;
}
@media (min-width: 1200px) { .container { max-width: 1180px; } }
@media (min-width: 992px) and (max-width: 1199px) { .container { max-width: 960px; } }
@media (min-width: 768px) and (max-width: 991px)  { .container { max-width: 720px; } }
@media (min-width: 576px) and (max-width: 767px)  { .container { max-width: 540px; } }

/* generic new section */
.sec { position: relative; padding: var(--sec-pad) 0; overflow: hidden; }
.sec--cream { background: var(--tint); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.sec--mint  { background: var(--tint-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.sec--forest {
    background: var(--grad-deep);
    color: #fff;
}
.sec--forest::before {
    content: ''; position: absolute; inset: 0;
    background:
      radial-gradient(circle at 82% 12%, rgba(46,144,250,.30), transparent 46%),
      radial-gradient(circle at 8% 92%, rgba(111,184,255,.16), transparent 44%);
    pointer-events: none;
}
.sec--forest > .container { position: relative; z-index: 1; }

/* ========================================
   BUTTONS
   ======================================== */
.btn2 {
    display: inline-flex; align-items: center; gap: 9px;
    font-size: 14px; font-weight: 700; letter-spacing: .2px;
    padding: 15px 32px; border-radius: 14px; border: 2px solid transparent;
    cursor: pointer; line-height: 1;
    transition: transform .3s ease, box-shadow .3s ease, background .4s ease, color .3s ease, border-color .3s ease;
}
.btn2-primary { color: #fff; background: var(--grad); box-shadow: var(--shadow-blue); }
.btn2-primary:hover { transform: translateY(-3px); box-shadow: 0 22px 46px rgba(46,144,250,.42); color: #fff; }
.btn2-ghost { color: var(--brand-700); border-color: var(--brand-100); background: #fff; }
.btn2-ghost:hover { background: var(--brand-050); border-color: var(--brand); color: var(--brand-700); transform: translateY(-3px); }
/* legacy "gold" primary -> now a bright light button that pops on navy */
.btn2-gold { color: var(--brand-700); background: #fff; box-shadow: 0 14px 30px rgba(0,0,0,.22); }
.btn2-gold:hover { transform: translateY(-3px); color: var(--brand-800); background: #fff; box-shadow: 0 20px 40px rgba(0,0,0,.28); }
.btn2-light { color: var(--brand-700); background: #fff; box-shadow: 0 12px 28px rgba(0,0,0,.14); }
.btn2-light:hover { transform: translateY(-3px); color: var(--brand-700); }
.btn2-outline-light { color: #fff; border-color: rgba(255,255,255,.45); }
.btn2-outline-light:hover { background: rgba(255,255,255,.12); border-color: #fff; color: #fff; transform: translateY(-3px); }

/* ========================================
   SECTION HEADER
   ======================================== */
.eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 12px; font-weight: 800; letter-spacing: 2.4px; text-transform: uppercase;
    color: var(--brand-700); margin-bottom: 16px;
    background: var(--brand-050); border: 1px solid var(--brand-100);
    padding: 7px 14px; border-radius: 40px;
}
.eyebrow::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--grad); }
.eyebrow.center { justify-content: center; }

.sec-head { max-width: 660px; margin-bottom: 58px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head.center .eyebrow { justify-content: center; }
.sec-head h2 {
    color: var(--ink); font-weight: 800; letter-spacing: -.8px; line-height: 1.12; margin: 0 0 16px;
    font-size: clamp(27px, 3.5vw, 43px);
}
.sec-head h2 em { font-style: normal; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.sec--forest h2 em { background: linear-gradient(120deg, #9CCFFF, #fff) !important; -webkit-background-clip: text !important; background-clip: text !important; -webkit-text-fill-color: transparent !important; }
.sec--forest .sec-head p { color: rgba(255,255,255,.72); }
.sec-head p { font-size: 16.5px; line-height: 1.78; margin: 0; color: var(--muted); }

.sec-head-split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; margin-bottom: 54px; }
.sec-head-split .sh-l h2 { color: var(--ink); font-weight: 800; letter-spacing: -.6px; line-height: 1.14; margin: 0; font-size: clamp(26px, 3.4vw, 40px); }
.sec-head-split .sh-l h2 em { font-style: normal; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.sec-head-split .sh-r p { margin: 0; font-size: 15.5px; line-height: 1.8; color: var(--muted); }
@media (max-width: 860px){ .sec-head-split { grid-template-columns: 1fr; gap: 16px; } }

/* ========================================
   TOP BAR + STICKY GLASS HEADER
   ======================================== */
.header-topbar { background: var(--navy); padding: 10px 0; position: relative; z-index: 2; }
.topbar-inner { display: flex; align-items: center; justify-content: flex-end; }
.topbar-left { display: flex; align-items: center; gap: 26px; }
.topbar-left a { color: rgba(255,255,255,.82) !important; font-size: 12.5px; display: flex; align-items: center; gap: 8px; transition: color .3s ease, transform .3s ease; }
.topbar-left a:hover { color: #fff !important; transform: translateY(-1px); }
.topbar-left a i { font-size: 12px; color: var(--brand-300); }

.header {
    background: rgba(255,255,255,.82) !important;
    backdrop-filter: saturate(180%) blur(16px); -webkit-backdrop-filter: saturate(180%) blur(16px);
    border-bottom: 1px solid var(--line) !important; box-shadow: none !important;
    transition: background .4s ease, box-shadow .4s ease, padding .4s ease;
    padding: 12px 0; position: sticky; top: 0; z-index: 900;
}
.header.is--scrolled, .header.sticky-header { background: rgba(255,255,255,.96) !important; box-shadow: 0 10px 34px rgba(12,33,56,.10) !important; padding: 7px 0 !important; }
.header .fflex { display: flex; align-items: center; justify-content: space-between; }
.header .logo { flex-shrink: 0; width: auto !important; max-width: none !important; }
.header .navigation { flex-grow: 1; display: flex; justify-content: flex-end; align-items: center; }
.header .logo img { width: 300px !important; height: auto !important; max-width: 100% !important; min-width: 0 !important; object-fit: contain !important; transition: width .35s ease !important; transform: none !important; }
.header.is--scrolled .logo img, .header.sticky-header .logo img { width: 170px !important; height: auto !important; }
.nav-hamburger { display: none; }

.navigation > ul > li > a { letter-spacing: .2px; font-size: 14px !important; font-weight: 600 !important; color: var(--ink) !important; transition: color .3s ease !important; position: relative; }
.navigation > ul > li > a::before { display: none !important; content: none !important; }
.navigation > ul > li > a::after {
    content: '' !important; display: block !important; position: absolute; left: 16px; right: 16px; bottom: 3px;
    height: 2px; border-radius: 2px; background: var(--grad); transform: scaleX(0); transform-origin: left center; transition: transform .32s cubic-bezier(.4,0,.2,1);
}
.navigation > ul > li:hover > a::after, .navigation > ul > li.is--active > a::after { transform: scaleX(1); }
.navigation > ul > li.dropdown > a::after { display: none !important; }
.navigation > ul > li:hover > a, .navigation > ul > li.is--active > a { color: var(--brand) !important; }
.navigation > ul > li.dropdown > a > i { transition: transform .3s ease; font-size: 10px !important; margin-left: 5px !important; margin-right: 0 !important; color: var(--ink) !important; }
.navigation > ul > li.dropdown:hover > a > i { transform: rotate(180deg); color: var(--brand) !important; }

.navigation .dropdown ul { border-radius: 16px !important; box-shadow: 0 24px 54px rgba(12,33,56,.18) !important; background: #fff !important; border: 1px solid var(--line) !important; padding: 8px !important; overflow: hidden; margin-top: 10px !important; }
.navigation .dropdown ul li { min-width: 256px; }
.navigation .dropdown ul li a, .navigation .dropdown ul a { padding: 12px 16px !important; font-size: 13.5px !important; color: var(--ink-2) !important; font-weight: 500 !important; border-radius: 11px !important; transition: all .25s ease !important; text-align: left; position: relative; }
.navigation .dropdown ul li a:hover, .navigation .dropdown ul a:hover { color: var(--brand-700) !important; background: var(--brand-050) !important; padding-left: 22px !important; }
.navigation .dropdown ul li.is--active a { color: #fff !important; font-weight: 600 !important; background: var(--grad) !important; }

.header-cta-btn { display: inline-block !important; background: var(--grad) !important; color: #fff !important; padding: 12px 26px !important; border-radius: 12px !important; font-size: 13px !important; font-weight: 800 !important; letter-spacing: .3px; box-shadow: 0 10px 24px rgba(46,144,250,.34) !important; transition: transform .28s ease, box-shadow .28s ease !important; will-change: transform; }
.header-cta-btn:hover { transform: translateY(-3px); color: #fff !important; box-shadow: 0 16px 32px rgba(46,144,250,.46) !important; }
.navigation .gesture-nav > li > a.header-cta-btn::after { display: none !important; }
.navigation .gesture-nav > li:hover > a.header-cta-btn,
.navigation .gesture-nav > li.is--active > a.header-cta-btn { color: #fff !important; }
.navigation .gesture-nav { background: none !important; }
.navigation .gesture-nav::before { display: none !important; content: none !important; }

@media (min-width: 992px) {
    .nav-hamburger { display: none !important; }
    .header .navigation { display: flex !important; position: static !important; left: auto !important; width: auto !important; height: auto !important; max-height: none !important; background: transparent !important; padding: 0 !important; box-shadow: none !important; overflow: visible !important; flex-direction: row !important; align-items: center !important; justify-content: flex-end !important; flex-grow: 1 !important; }
    .navigation > ul { display: flex !important; flex-direction: row !important; align-items: center !important; justify-content: flex-end !important; margin: 0 !important; padding: 0 !important; list-style: none !important; }
    .navigation > ul > li { border: none !important; margin: 0 !important; position: relative; display: inline-block !important; }
    .navigation > ul > li > a { display: inline-block !important; padding: 10px 15px !important; }
    .navigation .gesture-nav { display: flex !important; align-items: center !important; margin: 0 0 0 20px !important; padding: 0 !important; border: none !important; background: none !important; list-style: none !important; }
    .navigation .gesture-nav li { display: inline-block !important; border: none !important; }
    .navigation .gesture-nav .header-cta-btn { display: inline-block !important; width: auto !important; }
    .navigation .dropdown ul { position: absolute !important; max-height: none !important; overflow: visible !important; }
}

/* ========================================
   HERO  —  panoramic, framed device shot
   ======================================== */
.hero { position: relative; background: linear-gradient(180deg, #F4F9FF 0%, #FFFFFF 76%); padding: 78px 0 100px; overflow: hidden; }
.hero-orb { position: absolute; border-radius: 50%; pointer-events: none; z-index: 0; filter: blur(6px); }
.hero-orb-1 { top: -150px; right: -120px; width: 520px; height: 520px; background: radial-gradient(circle, rgba(46,144,250,.20), transparent 62%); animation: floatGlow 14s ease-in-out infinite alternate; }
.hero-orb-2 { bottom: -170px; left: -130px; width: 460px; height: 460px; background: radial-gradient(circle, rgba(111,184,255,.22), transparent 64%); animation: floatGlow 17s ease-in-out infinite alternate-reverse; }
.hero .container { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }

.hero-body { position: relative; }
.hero-body > * { opacity: 0; animation: heroUp .72s cubic-bezier(.2,.7,.2,1) forwards; }
.hero-body > *:nth-child(1){ animation-delay: .10s; }
.hero-body > *:nth-child(2){ animation-delay: .20s; }
.hero-body > *:nth-child(3){ animation-delay: .30s; }
.hero-body > *:nth-child(4){ animation-delay: .42s; }
.hero-body > *:nth-child(5){ animation-delay: .54s; }
.hero-title { color: var(--ink); font-weight: 800; letter-spacing: -1.4px; line-height: 1.05; margin: 6px 0 20px; font-size: clamp(35px, 5.2vw, 62px); }
.hero-title strong { background: linear-gradient(100deg, var(--brand) 0%, var(--brand-300) 50%, var(--brand) 100%); background-size: 220% auto; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; font-weight: 800; animation: sheen 5.5s linear infinite; }
.hero-lead-sub { display: block; font-size: clamp(16px, 2vw, 21px); font-weight: 500; color: var(--brand-700); margin-bottom: 8px; letter-spacing: 0; }
.hero-text { font-size: 16.5px; line-height: 1.8; color: var(--muted); max-width: 540px; margin: 0 0 28px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero-bullets { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.hero-bullets li { position: relative; padding: 9px 16px 9px 34px; font-size: 13px; font-weight: 600; color: var(--ink-2); background: #fff; border: 1px solid var(--line); border-radius: 40px; box-shadow: var(--shadow-sm); }
.hero-bullets li strong { color: var(--brand-700); font-weight: 800; }
.hero-bullets li::before { content: ''; position: absolute; left: 13px; top: 50%; transform: translateY(-50%); width: 14px; height: 14px; border-radius: 50%; background: var(--grad); }
.hero-bullets li::after { content: '\2713'; position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: #fff; font-size: 8px; font-weight: 900; }

/* media */
.hero-media { position: relative; animation: slideInRight .9s cubic-bezier(.2,.7,.2,1) both; }
.hero-media-frame { position: relative; border-radius: var(--r-2xl); padding: 12px; background: linear-gradient(150deg, rgba(46,144,250,.5), rgba(111,184,255,.16)); box-shadow: var(--shadow-lg); }
.hero-media-main { position: relative; border-radius: 28px; overflow: hidden; background: #fff; }
.hero-media-main img { display: block; width: 100%; height: 470px; object-fit: cover; }
.hero-dots { position: absolute; right: -26px; top: -26px; width: 118px; height: 118px; z-index: -1;
    background-image: radial-gradient(var(--brand-300) 2px, transparent 2px); background-size: 16px 16px; opacity: .6; border-radius: 8px; }
.hero-badge { position: absolute; left: -26px; bottom: 44px; background: #fff; border-radius: var(--r-md); padding: 15px 20px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 14px; z-index: 3; }
.hero-badge .hb-ic { width: 46px; height: 46px; border-radius: 12px; background: var(--grad); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 22px; }
.hero-badge .hb-num { font-size: 22px; font-weight: 800; color: var(--ink); line-height: 1; }
.hero-badge .hb-label { font-size: 12px; color: var(--muted); }
.hero-chip { position: absolute; right: 18px; top: 30px; background: var(--navy); color: #fff; font-size: 12px; font-weight: 700; letter-spacing: .4px; padding: 10px 16px; border-radius: 40px; box-shadow: var(--shadow-md); z-index: 3; }
.hero-chip b { color: var(--brand-300); }

/* home banner — full background image + gradient veil */
.hero--bg { background: var(--navy); padding: 92px 0 110px; }
.hero-bgimg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.06); filter: blur(2px); z-index: 0; }
.hero-bgveil { position: absolute; inset: 0; z-index: 1;
    background:
      linear-gradient(107deg, rgba(9,25,45,.97) 0%, rgba(10,30,55,.93) 36%, rgba(13,42,78,.76) 66%, rgba(20,58,104,.5) 100%),
      radial-gradient(circle at 88% 16%, rgba(46,144,250,.34), transparent 42%);
    background-size: 100% 100%, 200% 200%;
    animation: veilShift 16s ease-in-out infinite alternate;
}
.hero--bg .hero-orb { z-index: 1; mix-blend-mode: screen; opacity: .8; }
.hero--bg .container { position: relative; z-index: 2; }
.hero--bg .hero-title { color: #fff; }
.hero--bg .hero-lead-sub { color: var(--brand-300); }
.hero--bg .hero-text { color: rgba(255,255,255,.82); }
.hero--bg .eyebrow { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); color: #fff; }
.hero--bg .eyebrow::before { background: var(--brand-300); }
.hero--bg .hero-bullets li { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18); color: #fff; box-shadow: none; -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.hero--bg .hero-bullets li strong { color: var(--brand-300); }
.hero--bg .hero-media-frame { background: linear-gradient(150deg, rgba(111,184,255,.6), rgba(46,144,250,.22)); box-shadow: 0 42px 84px rgba(0,0,0,.5); }
.hero--bg .hero-chip { background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.25); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }

/* inner (legal) hero — navy banner */
.hero--inner { background: var(--grad-deep); padding: 108px 0 66px; text-align: center; }
.hero--inner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 78% 20%, rgba(46,144,250,.32), transparent 46%); pointer-events: none; }
.hero--inner .container { position: relative; z-index: 1; }
.hero--inner .eyebrow { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.16); color: #fff; }
.hero--inner .eyebrow::before { background: var(--brand-300); }
.hero--inner .hero-title { color: #fff; font-size: clamp(30px, 4vw, 48px); margin: 8px 0 12px; }
.hero--inner .hero-title strong { background: linear-gradient(120deg, #9CCFFF, #fff); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-crumb { display: inline-flex; gap: 8px; align-items: center; font-size: 13px; color: rgba(255,255,255,.66); }
.hero-crumb a { color: var(--brand-300); }
.hero-crumb span { color: rgba(255,255,255,.4); }

@media (max-width: 960px) {
    .hero-grid { grid-template-columns: 1fr; gap: 48px; }
    .hero-media { order: -1; max-width: 540px; }
    .hero-media-main img { height: 340px; }
}

/* ========================================
   STAT BAND  —  floating separate cards
   ======================================== */
.statband { position: relative; z-index: 5; }
.statband .container { margin-top: -52px; }
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; background: transparent; border: none; box-shadow: none; }
.stat { padding: 30px 24px; text-align: center; position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-md); overflow: hidden; transition: transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .4s ease; }
.stat::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--grad); }
.stat + .stat::before { left: 0; }
.stat:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.stat-num { font-size: clamp(28px, 3.4vw, 42px); font-weight: 800; line-height: 1; margin-bottom: 8px; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat-num sup { color: var(--brand-300); -webkit-text-fill-color: var(--brand-300); }
.stat-label { font-size: 13.5px; color: var(--muted); font-weight: 600; }
@media (max-width: 760px){ .stat-row { grid-template-columns: repeat(2,1fr); } }

/* ========================================
   FEATURE DECK  (bento -> uniform feature cards)
   ======================================== */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 1fr; gap: 24px; }
.bento-tile {
    position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
    padding: 38px 30px 34px; overflow: hidden; box-shadow: var(--shadow-sm);
    transition: transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .4s ease, border-color .4s ease;
}
.bento-tile::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 0; background: var(--grad); transition: height .4s ease; }
.bento-tile:hover { transform: translateY(-10px); box-shadow: var(--shadow-md); border-color: var(--brand-100); }
.bento-tile:hover::after { height: 5px; }
.bento-tile .bt-ic { width: 66px; height: 66px; border-radius: 20px; background: var(--grad); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 28px; margin-bottom: 22px; box-shadow: var(--shadow-blue); transition: transform .4s ease; position: relative; z-index: 1; }
.bento-tile:hover .bt-ic { transform: translateY(-4px) rotate(-6deg); }
.bento-tile h4 { color: var(--ink); font-size: 20px; font-weight: 800; margin: 0 0 12px; }
.bento-tile p { font-size: 14.5px; line-height: 1.75; color: var(--muted); margin: 0; }
.bento-tile .bt-corner { position: absolute; top: -30px; right: -30px; width: 120px; height: 120px; background: var(--brand-050); border-radius: 50%; transition: transform .5s ease; }
.bento-tile:hover .bt-corner { transform: scale(1.25); }
.bento-tile .bt-ic { position: relative; z-index: 1; }
.bento-tile.wide { grid-column: span 2; }
.bento-tile.promo { background: var(--grad-deep); border: none; color: #fff; display: flex; flex-direction: column; justify-content: center; }
.bento-tile.promo::after { display: none; }
.bento-tile.promo h4 { color: #fff; font-size: 23px; }
.bento-tile.promo p { color: rgba(255,255,255,.82); margin-bottom: 20px; }
.bento-tile.promo .bt-corner { background: rgba(46,144,250,.24); }
@media (max-width: 900px){ .bento { grid-template-columns: repeat(2,1fr);} .bento-tile.wide{grid-column: span 2;} }
@media (max-width: 620px){ .bento { grid-template-columns: 1fr;} .bento-tile.wide{grid-column:auto;} }

/* ========================================
   SOLUTIONS RAIL  (cards linking to pages)
   ======================================== */
.sol-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.sol-card {
    position: relative; display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line);
    border-radius: var(--r-lg); padding: 30px 26px 26px; overflow: hidden;
    transition: transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .4s ease, background .4s ease; box-shadow: var(--shadow-sm);
}
.sol-card::before { content: ''; position: absolute; right: -40px; top: -40px; width: 130px; height: 130px; border-radius: 50%; background: var(--grad-soft); transition: transform .5s ease; }
.sol-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: var(--brand-100); }
.sol-card:hover::before { transform: scale(1.5); }
.sol-tag { position: relative; z-index: 1; align-self: flex-start; display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: 1.4px; text-transform: uppercase; color: #fff; background: var(--grad); padding: 6px 12px; border-radius: 8px; margin-bottom: 18px; box-shadow: var(--shadow-blue); }
.sol-card h4 { position: relative; z-index: 1; color: var(--ink); font-size: 19px; font-weight: 800; margin: 0 0 9px; }
.sol-card p { position: relative; z-index: 1; font-size: 13.8px; line-height: 1.72; color: var(--muted); margin: 0 0 18px; flex: 1; }
.sol-more { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 800; color: var(--brand-700); }
.sol-more i { transition: transform .3s ease; font-style: normal; }
.sol-card:hover .sol-more i { transform: translateX(6px); }
.sol-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.sol-group + .sol-group { margin-top: 48px; }
.sol-group-head { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.sol-group-head .eyebrow { margin: 0; }
.sol-group-head .sg-line { flex: 1; height: 1px; background: var(--line); }
@media (max-width: 1000px){ .sol-grid.cols-4 { grid-template-columns: repeat(2,1fr);} }
@media (max-width: 900px){ .sol-grid { grid-template-columns: repeat(2,1fr);} }
@media (max-width: 600px){ .sol-grid, .sol-grid.cols-4 { grid-template-columns: 1fr;} }

/* ========================================
   PROCESS STEPPER  (numbered, gradient rail)
   ======================================== */
.timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; position: relative; }
.timeline::before { content: ''; position: absolute; top: 36px; left: 14%; right: 14%; height: 3px; border-radius: 3px; background: linear-gradient(90deg, rgba(111,184,255,.25), rgba(46,144,250,.7), rgba(111,184,255,.25)); }
.sec:not(.sec--forest) .timeline::before { background: linear-gradient(90deg, var(--brand-100), var(--brand), var(--brand-100)); }
.tl-step { position: relative; text-align: center; }
.tl-node { width: 74px; height: 74px; margin: 0 auto 24px; border-radius: 22px; background: var(--grad); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 28px; position: relative; z-index: 2; box-shadow: var(--shadow-blue); transform: rotate(45deg); }
.tl-node i { transform: rotate(-45deg); }
.tl-num { position: absolute; top: -8px; right: calc(50% - 46px); width: 28px; height: 28px; border-radius: 50%; background: #fff; color: var(--brand-700); font-size: 12px; font-weight: 900; display: flex; align-items: center; justify-content: center; z-index: 3; box-shadow: var(--shadow-sm); border: 2px solid var(--brand-050); }
.sec--forest .tl-num { background: var(--navy); color: #fff; border-color: rgba(255,255,255,.2); }
.tl-step h4 { font-size: 18px; font-weight: 800; margin: 0 0 8px; color: #fff; }
.tl-step p { font-size: 14px; line-height: 1.7; margin: 0 auto; max-width: 300px; color: rgba(255,255,255,.72); }
.sec:not(.sec--forest) .tl-step h4 { color: var(--ink); }
.sec:not(.sec--forest) .tl-step p { color: var(--muted); }
@media (max-width: 820px){ .timeline { grid-template-columns: 1fr; gap: 38px; } .timeline::before { display: none; } }

/* ========================================
   SHOWCASE SPLIT  (image + content + checklist)
   ======================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 58px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media::before { content: ''; position: absolute; inset: -20px -20px 20px 20px; border-radius: var(--r-xl); background-image: radial-gradient(var(--brand-300) 2px, transparent 2px); background-size: 18px 18px; opacity: .45; z-index: -1; }
.split.reverse .split-media::before { inset: -20px 20px 20px -20px; }
.split-media img { width: 100%; height: 450px; object-fit: cover; border-radius: var(--r-xl); box-shadow: var(--shadow-lg); }
.split-media .sm-frame { display: none; }
.split-media .sm-tag { position: absolute; left: 22px; bottom: 22px; background: #fff; border-radius: 14px; padding: 12px 18px; box-shadow: var(--shadow-lg); font-weight: 800; color: var(--ink); font-size: 14px; display: flex; align-items: center; gap: 10px; }
.split-media .sm-tag i { color: var(--brand); font-size: 20px; }
.split-body h2 { color: var(--ink); font-weight: 800; letter-spacing: -.6px; line-height: 1.14; margin: 8px 0 16px; font-size: clamp(25px, 3.2vw, 37px); }
.split-body h2 em { font-style: normal; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.split-body p { font-size: 15.5px; line-height: 1.85; color: var(--muted); margin: 0 0 22px; }
.checklist { list-style: none; margin: 0 0 28px; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 20px; }
.checklist li { position: relative; padding-left: 34px; font-size: 14.5px; font-weight: 600; color: var(--ink-2); }
.checklist li i { position: absolute; left: 0; top: -1px; width: 24px; height: 24px; border-radius: 8px; background: var(--grad); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 11px; font-style: normal; box-shadow: var(--shadow-blue); }
@media (max-width: 860px){ .split { grid-template-columns: 1fr; gap: 42px; } .split.reverse .split-media { order: -1; } .split-media img { height: 330px; } .checklist { grid-template-columns: 1fr; } }

/* ========================================
   BENEFIT CARDS  (service pages)
   ======================================== */
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.benefit-card { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .4s ease; display: flex; flex-direction: column; }
.benefit-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-md); }
.benefit-media { position: relative; height: 176px; overflow: hidden; }
.benefit-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12,33,56,0) 40%, rgba(12,33,56,.55)); }
.benefit-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.benefit-card:hover .benefit-media img { transform: scale(1.08); }
.benefit-num { position: absolute; left: 20px; bottom: -22px; z-index: 2; width: 52px; height: 52px; border-radius: 15px; background: var(--grad); color: #fff; font-size: 18px; font-weight: 900; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-blue); }
.benefit-body { padding: 34px 26px 30px; flex: 1; }
.benefit-body h4 { color: var(--ink); font-size: 18px; font-weight: 800; margin: 0 0 12px; }
.benefit-body p { font-size: 14px; line-height: 1.78; color: var(--muted); margin: 0; }
@media (max-width: 900px){ .benefit-grid { grid-template-columns: 1fr; } .benefit-media { height: 200px; } }

/* capability chips */
.cap-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.cap-chip { display: inline-flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--line); border-radius: 40px; padding: 10px 18px 10px 12px; font-size: 13.5px; font-weight: 700; color: var(--ink-2); box-shadow: var(--shadow-sm); }
.cap-chip i { width: 30px; height: 30px; border-radius: 50%; background: var(--grad); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 15px; }

/* ========================================
   CONTACT CONSOLE
   ======================================== */
.contact-card { display: grid; grid-template-columns: .92fr 1.08fr; background: #fff; border: 1px solid var(--line); border-radius: var(--r-2xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.contact-aside { position: relative; background: var(--grad-deep); color: #fff; padding: 50px 42px; overflow: hidden; }
.contact-aside::after { content: ''; position: absolute; right: -80px; bottom: -80px; width: 240px; height: 240px; border-radius: 50%; background: radial-gradient(circle, rgba(46,144,250,.4), transparent 66%); }
.contact-aside::before { content: ''; position: absolute; left: -60px; top: -60px; width: 180px; height: 180px; border-radius: 50%; background: radial-gradient(circle, rgba(111,184,255,.22), transparent 66%); }
.contact-aside h3 { color: #fff; font-size: 28px; font-weight: 800; margin: 0 0 12px; letter-spacing: -.4px; position: relative; z-index: 1; }
.contact-aside > p { color: rgba(255,255,255,.82); font-size: 15px; line-height: 1.7; margin: 0 0 28px; position: relative; z-index: 1; }
.contact-info { position: relative; z-index: 1; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.18); }
.contact-info a { display: flex; align-items: center; gap: 13px; color: #fff !important; font-size: 14.5px; margin-bottom: 16px; transition: padding-left .3s ease; }
.contact-info a:hover { padding-left: 6px; }
.contact-info a i { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.14); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; color: var(--brand-300); }
.contact-form-body { padding: 50px 44px; }
.contact-form-body h4 { font-size: 26px; font-weight: 800; color: var(--ink); margin: 0 0 6px; letter-spacing: -.3px; }
.contact-form-body .form-subtitle { font-size: 14px; color: var(--muted); margin: 0 0 26px; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field-wrap { margin-bottom: 16px; }
.field-wrap > label { display: block; font-size: 13px; font-weight: 600; color: var(--ink-2); margin-bottom: 7px; }
.form-control { width: 100%; border: 1.5px solid var(--line) !important; border-radius: var(--r-sm) !important; padding: 13px 16px !important; font-size: 14px !important; background: var(--tint) !important; color: var(--ink) !important; transition: border-color .3s ease, box-shadow .3s ease, background-color .3s ease; height: auto !important; }
.form-control::placeholder { color: #9aabc4; font-size: 13px; }
.form-control:focus { border-color: var(--brand) !important; box-shadow: 0 0 0 4px rgba(46,144,250,.12); background: #fff !important; outline: none; }
.checkbox-wrap { display: flex; align-items: flex-start; gap: 9px; margin-bottom: 8px; }
.checkbox-wrap label { font-size: 13px; color: var(--ink-2); cursor: pointer; }
.note { font-size: 11px !important; color: #90a0b8 !important; line-height: 1.55 !important; margin-bottom: 14px !important; }
.note a { color: var(--brand-700) !important; }
.btn-primary { position: relative; overflow: hidden; display: inline-flex; align-items: center; gap: 9px; background: var(--grad) !important; border: none !important; border-radius: 14px !important; padding: 15px 44px !important; font-size: 15px !important; font-weight: 700 !important; letter-spacing: .3px; color: #fff !important; text-transform: none !important; box-shadow: var(--shadow-blue) !important; transition: transform .3s ease, box-shadow .3s ease; cursor: pointer; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 22px 46px rgba(46,144,250,.42) !important; color: #fff !important; }
.form-status { padding: 12px 15px; border-radius: 10px; font-size: 13px; font-weight: 500; margin-bottom: 14px; }
.form-status-success { background: #e6f6ee; color: #12805a; border: 1px solid #bde6cf; }
.form-status-error { background: #fef1f2; color: #c8323f; border: 1px solid #f8ccd1; }
.form-control.is-invalid { border-color: #e53e3e !important; }
@media (max-width: 860px){ .contact-card { grid-template-columns: 1fr; } .contact-form-body { padding: 34px 24px; } .contact-aside { padding: 38px 28px; } .field-row { grid-template-columns: 1fr; gap: 0; } }

/* ========================================
   AURORA CTA PANEL
   ======================================== */
.cta-wrap { padding: 52px 0; background: var(--bg); }
.cta-panel { position: relative; background: var(--grad-deep); border: 1px solid rgba(255,255,255,.09); border-radius: var(--r-2xl); padding: 66px 56px; overflow: hidden; text-align: center; box-shadow: var(--shadow-lg); }
.cta-panel::before { content: ''; position: absolute; left: -70px; top: -70px; width: 260px; height: 260px; border-radius: 50%; background: radial-gradient(circle, rgba(46,144,250,.42), transparent 66%); }
.cta-panel::after { content: ''; position: absolute; right: -80px; bottom: -90px; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(111,184,255,.30), transparent 66%); }
.cta-panel .eyebrow { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.16); color: #fff; justify-content: center; }
.cta-panel .eyebrow::before { background: var(--brand-300); }
.cta-panel h3 { position: relative; z-index: 1; color: #fff; font-weight: 800; letter-spacing: -.6px; font-size: clamp(25px, 3.6vw, 40px); margin: 0 0 14px; }
.cta-panel p { position: relative; z-index: 1; color: rgba(255,255,255,.84); font-size: 16px; line-height: 1.72; max-width: 680px; margin: 0 auto 30px; }
.cta-panel .cta-btns { position: relative; z-index: 1; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
@media (max-width: 620px){ .cta-panel { padding: 48px 26px; } }

/* ========================================
   LEGAL LAYOUT  (TOC sidebar + article)
   ======================================== */
.legal { padding: 84px 0; }
.legal-grid { display: grid; grid-template-columns: 296px 1fr; gap: 50px; align-items: start; }
.legal-toc { position: sticky; top: 96px; background: var(--tint); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px 22px; }
.legal-toc h5 { font-size: 12px; font-weight: 800; letter-spacing: 1.6px; text-transform: uppercase; color: var(--brand-700); margin: 0 0 16px; }
.legal-toc ul { list-style: none; margin: 0; padding: 0; }
.legal-toc li { margin-bottom: 4px; }
.legal-toc a { display: block; font-size: 13.5px; color: var(--ink-2); padding: 9px 13px; border-radius: 10px; border-left: 3px solid transparent; transition: all .25s ease; }
.legal-toc a:hover { background: #fff; color: var(--brand-700); border-left-color: var(--brand); }
.legal-article h2 { color: var(--ink); font-weight: 800; letter-spacing: -.4px; font-size: 27px; margin: 0 0 12px; }
.legal-article > p:first-of-type { font-size: 15.5px; }
.legal-article h4 { color: var(--brand-700); font-weight: 800; font-size: 18px; margin: 36px 0 12px; scroll-margin-top: 96px; }
.legal-article p { color: var(--muted); font-size: 14.8px; line-height: 1.85; margin: 0 0 14px; }
.legal-article p strong { color: var(--ink); }
.legal-article a { color: var(--brand-700); }
.legal-article .listingterms { background: var(--tint); border: 1px solid var(--line); border-left: 4px solid var(--brand); border-radius: var(--r-md); padding: 22px 24px 22px 28px; margin: 20px 0 26px; }
.listingterms ul { margin: 0; padding: 0; list-style: none; columns: 2; column-gap: 34px; }
.listingterms ul li { position: relative; padding-left: 24px; margin-bottom: 10px; font-size: 13.5px; color: var(--ink-2); break-inside: avoid; }
.listingterms ul li::before { content: ''; position: absolute; left: 0; top: 6px; width: 10px; height: 10px; border-radius: 3px; background: var(--grad); }
.listingterms ul li strong { color: var(--ink); }
.legal-article .listingoth ul { list-style: disc; padding-left: 22px; margin: 0 0 14px; }
.legal-article .listingoth li { font-size: 14.5px; line-height: 1.8; color: var(--muted); margin-bottom: 9px; }
.legal-article .listingoth ul ul { list-style: circle; margin-top: 9px; }
.legal-toc ul:empty { display: none; }
@media (max-width: 860px){ .legal-grid { grid-template-columns: 1fr; } .legal-toc { position: static; } .listingterms ul { columns: 1; } }

/* ========================================
   NAVY MEGA-FOOTER
   ======================================== */
.footer-modern { background: var(--grad-deep) !important; color: #fff; position: relative; overflow: hidden; }
.footer-modern::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--grad); }
.footer-modern::after { content: ''; position: absolute; right: -120px; top: -120px; width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(circle, rgba(46,144,250,.30), transparent 68%); pointer-events: none; }
.footer-top { padding: 72px 0 46px !important; position: relative; z-index: 1; }
.footer-brand .footer-logo { display: inline-block; margin-bottom: 20px; }
.footer-brand .footer-logo img { max-height: 65px; }
.footer-brand .footer-desc { color: rgba(255,255,255,.62) !important; font-size: 13.5px !important; line-height: 1.75 !important; max-width: 310px; margin: 0 !important; }
.footer-widget h5 { color: #fff !important; font-size: 15px !important; font-weight: 700 !important; margin-bottom: 22px !important; position: relative; padding-bottom: 12px; text-transform: none !important; letter-spacing: 0 !important; }
.footer-widget h5::after { content: ''; position: absolute; bottom: 0; left: 0; width: 34px; height: 3px; background: var(--grad); border-radius: 3px; }
.footer-widget ul { list-style: none !important; padding: 0 !important; margin: 0 !important; }
.footer-widget ul li { margin-bottom: 11px; }
.footer-widget ul li a { color: rgba(255,255,255,.62) !important; font-size: 13.5px !important; transition: color .3s ease, padding-left .3s ease; display: inline-block; }
.footer-widget ul li a:hover { color: var(--brand-300) !important; padding-left: 6px; }
.footer-contact li a { display: flex !important; align-items: center; gap: 10px; }
.footer-contact li a i { color: var(--brand-300); font-size: 14px; flex-shrink: 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; position: relative; z-index: 1; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: center; }
.footer-bottom-inner p { color: rgba(255,255,255,.46) !important; font-size: 13px !important; margin: 0 !important; }

/* ========================================
   POPUP
   ======================================== */
.popup.popup-style1 { border-radius: var(--r-lg) !important; box-shadow: var(--shadow-lg) !important; }
.popup .logo-wrap img { max-height: 46px; }
.popupContent h4 .cl-iPrimary { color: var(--brand) !important; }

/* ========================================
   SCROLL-REVEAL
   ======================================== */
.reveal { opacity: 0; transform: translateY(42px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); will-change: opacity, transform; }
.reveal.reveal-l { transform: translateX(-46px); }
.reveal.reveal-r { transform: translateX(46px); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }

/* ========================================
   SCROLLBAR
   ======================================== */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--tint); }
::-webkit-scrollbar-thumb { background: var(--grad); border-radius: 10px; border: 2px solid var(--tint); }
::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, var(--brand-700), var(--brand)); }

/* ========================================
   KEYFRAMES
   ======================================== */
@keyframes slideInLeft  { from { opacity: 0; transform: translateX(-54px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideInRight { from { opacity: 0; transform: translateX(54px);  } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeSlideUp  { from { opacity: 0; transform: translateY(26px);  } to { opacity: 1; transform: translateY(0); } }
@keyframes heroUp       { from { opacity: 0; transform: translateY(26px);  } to { opacity: 1; transform: translateY(0); } }
@keyframes sheen        { to { background-position: 220% center; } }
@keyframes floatGlow    { from { transform: translate(0, 0); } to { transform: translate(-28px, 24px); } }
@keyframes veilShift    { from { background-position: 0 0, 0% 0%; } to { background-position: 0 0, 100% 100%; } }

@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; }
    .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
    .hero-body > * { opacity: 1 !important; }
    html { scroll-behavior: auto; }
}

/* ============================================================
   MOBILE NAVIGATION (drawer)
   ============================================================ */
@media (max-width: 991px) {
    .header-topbar { display: none; }
    .header { padding: 12px 0 !important; position: sticky; top: 0; z-index: 1001; }
    .header .container { padding: 0 20px; max-width: 100%; }
    .header .fflex { display: flex; align-items: center; justify-content: space-between; width: 100%; position: relative; gap: 15px; }
    .header .logo { flex: 0 1 auto !important; width: auto !important; max-width: 60% !important; display: flex; align-items: center; }
    .header .logo img, .header.is--scrolled .logo img, .header.sticky-header .logo img { width: 160px !important; height: auto !important; max-width: 100% !important; }

    .nav-hamburger { display: block !important; width: 30px; height: 24px; cursor: pointer; z-index: 1000; position: relative; padding: 0; margin: 0; flex: 0 0 auto; background: transparent; border: none; -webkit-tap-highlight-color: transparent; }
    .nav-hamburger span { display: block; height: 2px; width: 100%; background: var(--brand); border-radius: 2px; transition: all .25s ease-in-out; position: absolute; left: 0; transform-origin: center center; }
    .nav-hamburger span:nth-child(1) { top: 0; }
    .nav-hamburger span:nth-child(2) { top: 11px; }
    .nav-hamburger span:nth-child(3) { top: 22px; }
    .nav-hamburger span:nth-child(4), .nav-hamburger span:nth-child(5), .nav-hamburger span:nth-child(6) { display: none !important; }
    .nav-hamburger.is--active span:nth-child(1) { top: 11px; transform: rotate(45deg); }
    .nav-hamburger.is--active span:nth-child(3) { top: 11px; transform: rotate(-45deg); }

    .navigation, .header .navigation {
        position: fixed !important; top: 0 !important; left: -100% !important; width: 310px !important; height: 100vh !important; max-height: 100vh !important;
        background: var(--grad-deep) !important; z-index: 999 !important; padding-top: 76px !important; padding-bottom: 20px !important;
        overflow-y: auto !important; overflow-x: hidden !important; display: flex !important; flex-direction: column !important; align-items: flex-start !important; justify-content: flex-start !important;
        transition: left .4s cubic-bezier(.4,0,.2,1) !important; box-shadow: 6px 0 40px rgba(0,0,0,.5) !important;
    }
    .navigation.is--open, .header .navigation.is--open { left: 0 !important; }
    .navigation > ul { width: 100% !important; display: flex !important; flex-direction: column !important; padding: 0 !important; margin: 0 !important; }
    .navigation > ul > li { width: 100% !important; border-bottom: 1px solid rgba(255,255,255,.07); margin: 0 !important; }
    .navigation > ul > li > a { color: rgba(255,255,255,.9) !important; padding: 15px 22px !important; font-size: 15px !important; font-weight: 600 !important; justify-content: space-between !important; align-items: center !important; width: 100%; display: flex !important; transition: all .3s ease !important; min-height: 48px; }
    .navigation > ul > li > a::after, .navigation > ul > li > a::before { display: none !important; }
    .navigation > ul > li.dropdown > a > i { margin-left: auto; color: #fff !important; transition: transform .3s ease; }
    .navigation > ul > li:hover > a, .navigation > ul > li.is--active > a { color: var(--brand-300) !important; background: rgba(46,144,250,.16); }

    .navigation .dropdown ul { position: static !important; opacity: 1 !important; visibility: visible !important; border-radius: 0 !important; box-shadow: none !important; background: rgba(0,0,0,.2) !important; border: none !important; border-top: 1px solid rgba(255,255,255,.05) !important; padding: 0 !important; margin: 0 !important; min-width: 0 !important; max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.4,0,.2,1), padding .4s ease; display: block !important; }
    .navigation .dropdown.is--active > ul { max-height: 600px; padding: 6px 0 !important; }
    .navigation .dropdown.is--active > a > i { transform: rotate(180deg); }
    .navigation .dropdown ul li { min-width: 0 !important; width: 100% !important; border-bottom: 1px solid rgba(255,255,255,.04); }
    .navigation .dropdown ul li:last-child { border-bottom: none; }
    .navigation .dropdown ul li a, .navigation .dropdown ul a { color: rgba(255,255,255,.72) !important; padding: 13px 22px 13px 40px !important; font-size: 13.5px !important; font-weight: 400 !important; border-left: 3px solid transparent !important; background: transparent !important; display: block !important; transition: all .3s ease !important; position: relative; min-height: 44px; }
    .navigation .dropdown ul li a::before { content: '\203A'; position: absolute; left: 24px; top: 50%; transform: translateY(-50%); font-size: 18px; opacity: .5; transition: all .3s ease; }
    .navigation .dropdown ul li a:hover, .navigation .dropdown ul a:hover { color: var(--brand-300) !important; background: rgba(46,144,250,.12) !important; border-left-color: var(--brand) !important; padding-left: 45px !important; }
    .navigation .dropdown ul li a:hover::before { opacity: 1; left: 28px; }
    .navigation .dropdown ul li.is--active a { color: var(--brand-300) !important; font-weight: 500 !important; border-left-color: var(--brand) !important; background: rgba(46,144,250,.12) !important; }

    .navigation .gesture-nav { width: 100% !important; padding: 20px !important; background: none !important; margin: 10px 0 0 !important; border-top: 1px solid rgba(255,255,255,.1); }
    .navigation .gesture-nav::before { display: none !important; content: none !important; }
    .navigation .gesture-nav li { width: 100% !important; border: none !important; }
    .header-cta-btn { display: block !important; text-align: center !important; padding: 14px 24px !important; border-radius: 12px !important; font-size: 14px !important; font-weight: 700 !important; width: 100% !important; box-shadow: 0 8px 22px rgba(46,144,250,.4) !important; }

    body.is--menu { overflow: hidden; height: 100vh; }
    .defaultOverlay { position: fixed; inset: 0; width: 100%; height: 100vh; background: rgba(12,33,56,.6) !important; backdrop-filter: blur(3px); z-index: 998; opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s ease; }
    body.is--menu .defaultOverlay { opacity: 1; visibility: visible; }
    .navigation::-webkit-scrollbar { width: 4px; }
    .navigation::-webkit-scrollbar-track { background: rgba(255,255,255,.05); }
    .navigation::-webkit-scrollbar-thumb { background: rgba(46,144,250,.5); border-radius: 10px; }
}

/* ============================================================
   RESPONSIVE SECTION RHYTHM
   ============================================================ */
@media (max-width: 991px) {
    :root { --sec-pad: 64px; }
    .footer-brand { margin-bottom: 30px; }
    .footer-widget { margin-bottom: 26px; }
    .sec-head { margin-bottom: 40px; }
    .cta-wrap { padding: 36px 0; }
    .hero { padding: 52px 0 76px; }
}
@media (max-width: 620px) {
    .hero-title { font-size: 33px; }
    .hero-media-main img { height: 280px; }
    .hero-badge { left: 8px; padding: 12px 16px; }
    .hero-dots { display: none; }
}
