/* ==========================================================================
   SYNERMAXX CORPORATION — Global Stylesheet
   Palette derived from the Synermaxx logo:
   teal #23b5c9  →  blue #2f6bd8  →  indigo #2e3192  |  deep navy darks
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
    /* Brand colors (from logo) */
    --cyan: #23b5c9;
    --cyan-bright: #3ed6e8;
    --blue: #2f6bd8;
    --indigo: #2e3192;
    --indigo-deep: #232567;

    /* Dark surfaces */
    --navy: #0b1034;
    --navy-2: #111743;
    --navy-3: #1a2158;

    /* Light surfaces */
    --bg: #ffffff;
    --bg-soft: #f5f7fc;
    --bg-tint: #eef3fb;
    --line: #e3e8f4;
    --line-strong: #d3dbee;

    /* Text */
    --ink: #10163a;
    --body: #4b5470;
    --muted: #707a99;

    /* Gradients */
    --grad-brand: linear-gradient(115deg, #23b5c9 0%, #2f6bd8 52%, #2e3192 100%);
    --grad-brand-soft: linear-gradient(115deg, rgba(35, 181, 201, .12), rgba(47, 107, 216, .10) 52%, rgba(46, 49, 146, .12));
    --grad-dark: linear-gradient(160deg, #111743 0%, #0b1034 65%, #090d29 100%);

    /* Typography */
    --font-main: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    --font-tech: 'Space Grotesk', var(--font-main);

    /* Shape & elevation */
    --r-sm: 12px;
    --r-md: 18px;
    --r-lg: 26px;
    --shadow-sm: 0 2px 10px rgba(16, 22, 58, .05);
    --shadow-md: 0 10px 34px rgba(16, 22, 58, .08);
    --shadow-lg: 0 24px 64px rgba(16, 22, 58, .14);
    --shadow-glow: 0 12px 36px rgba(47, 107, 216, .28);
}

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */
html,
body {
    width: 100%;
    overflow-x: hidden;
    overscroll-behavior-x: none;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg);
    color: var(--body);
    letter-spacing: -0.01em;
    font-size: 1rem;
    line-height: 1.7;
}

h1, h2, h3, h4, h5, .tech-font {
    font-family: var(--font-tech);
    color: var(--ink);
    letter-spacing: -0.02em;
    line-height: 1.15;
    font-weight: 700;
}

::selection {
    background: rgba(47, 107, 216, .18);
    color: var(--ink);
}

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

a:hover { color: var(--indigo); }

img { max-width: 100%; }

/* --------------------------------------------------------------------------
   3. Shared utilities
   -------------------------------------------------------------------------- */
.section { padding: 104px 0; }
.section-sm { padding: 72px 0; }

.gradient-text {
    background: var(--grad-brand);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* On dark backgrounds a brighter mix keeps contrast */
.gradient-text-bright {
    background: linear-gradient(110deg, #3ed6e8 0%, #6a9bff 60%, #9fa5ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* Section eyebrow label */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-tech);
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--blue);
    margin-bottom: 18px;
}

.eyebrow::before {
    content: "";
    width: 26px;
    height: 2px;
    border-radius: 2px;
    background: var(--grad-brand);
}

.eyebrow.centered::after {
    content: "";
    width: 26px;
    height: 2px;
    border-radius: 2px;
    background: var(--grad-brand);
}

.eyebrow.on-dark { color: var(--cyan-bright); }

.section-head { max-width: 720px; }
.section-head.text-center { margin-inline: auto; }

.section-head h2 {
    font-size: clamp(1.9rem, 3.4vw, 2.75rem);
    margin-bottom: 14px;
}

.section-head p { color: var(--muted); margin-bottom: 0; }

/* Light background patterns */
.bg-soft { background: var(--bg-soft); }

.bg-grid-light {
    background-image:
        linear-gradient(var(--line) 1px, transparent 1px),
        linear-gradient(90deg, var(--line) 1px, transparent 1px);
    background-size: 44px 44px;
}

.bg-dots-light {
    background-image: radial-gradient(rgba(47, 107, 216, .14) 1px, transparent 1px);
    background-size: 26px 26px;
}

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.btn-brand,
.btn-outline-brand,
.btn-glass {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-tech);
    font-weight: 700;
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 15px 32px;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: transform .3s ease, box-shadow .3s ease, background .3s ease, color .3s ease, border-color .3s ease;
    white-space: nowrap;
}

.btn-brand {
    color: #fff !important;
    background: var(--grad-brand);
    background-size: 150% 150%;
    box-shadow: var(--shadow-glow);
    position: relative;
    overflow: hidden;
}

/* Light sweep across the button on hover */
.btn-brand::after {
    content: "";
    position: absolute;
    top: 0;
    left: -80%;
    width: 45%;
    height: 100%;
    background: linear-gradient(105deg, transparent, rgba(255, 255, 255, .35), transparent);
    transform: skewX(-20deg);
    transition: left .55s ease;
    pointer-events: none;
}

.btn-brand:hover::after { left: 135%; }

.btn-brand:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 44px rgba(47, 107, 216, .38);
    background-position: 100% 50%;
    color: #fff;
}

.btn-outline-brand {
    color: var(--ink) !important;
    border-color: var(--line-strong);
    background: #fff;
}

.btn-outline-brand:hover {
    transform: translateY(-3px);
    border-color: var(--blue);
    color: var(--blue) !important;
    box-shadow: var(--shadow-md);
}

/* For dark sections */
.btn-glass {
    color: #fff !important;
    border-color: rgba(255, 255, 255, .22);
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(8px);
}

.btn-glass:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .4);
}

.btn-sm-pill { padding: 11px 24px; font-size: .74rem; }

/* --------------------------------------------------------------------------
   5. Navbar
   -------------------------------------------------------------------------- */
.navbar {
    padding: 16px 0;
    background: rgba(255, 255, 255, .82);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(46, 49, 146, .08);
    transition: padding .3s ease, box-shadow .3s ease, background .3s ease;
    z-index: 1030;
}

.navbar.scrolled {
    padding: 9px 0;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 8px 30px rgba(16, 22, 58, .08);
}

.navbar-brand img {
    height: 52px;
    transition: height .3s ease;
}

.navbar.scrolled .navbar-brand img { height: 44px; }

.navbar .nav-link {
    font-family: var(--font-tech);
    font-weight: 700;
    color: var(--ink) !important;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    margin: 0 10px;
    padding: 8px 2px;
    position: relative;
}

.navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: var(--grad-brand);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link.active { color: var(--blue) !important; }

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after { transform: scaleX(1); }

.navbar-toggler {
    border: 1px solid var(--line-strong);
    border-radius: 10px;
    padding: 8px 10px;
}

.navbar-toggler:focus { box-shadow: 0 0 0 3px rgba(47, 107, 216, .18); }

/* Dropdown */
.dropdown-menu {
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(16px);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    box-shadow: var(--shadow-lg);
    padding: 12px;
    min-width: 236px;
    margin-top: 14px !important;
    position: relative;
    overflow: hidden;
}

.dropdown-menu::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--grad-brand);
}

.dropdown-item {
    font-weight: 600;
    font-size: .86rem;
    color: var(--ink);
    padding: 10px 14px;
    border-radius: 10px;
    transition: all .25s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.dropdown-item::after {
    content: "\2192";
    opacity: 0;
    transform: translateX(-6px);
    transition: all .25s ease;
    color: var(--blue);
}

.dropdown-item:hover {
    background: var(--grad-brand-soft);
    color: var(--indigo);
}

.dropdown-item:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.badge-new {
    background: var(--grad-brand);
    color: #fff;
    font-size: 9px;
    padding: 3px 8px;
    border-radius: 999px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 12px rgba(35, 181, 201, .45);
}

/* Products mega menu */
.dropdown-menu.mega {
    min-width: 760px;
    padding: 26px 28px;
}

.mega-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr 1.15fr;
    gap: 0 28px;
}

.mega-col + .mega-col {
    border-left: 1px solid var(--line);
    padding-left: 28px;
}

.mega-parent {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 8px;
    margin: 0 -8px 12px;
    border-radius: 12px;
    transition: background .25s ease;
}

.mega-parent:hover { background: var(--grad-brand-soft); }

.mega-parent-icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    border-radius: 12px;
    background: var(--grad-brand);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    box-shadow: 0 6px 16px rgba(47, 107, 216, .25);
}

.mega-parent strong {
    display: block;
    font-family: var(--font-tech);
    font-size: .92rem;
    color: var(--ink);
    line-height: 1.2;
}

.mega-parent small {
    display: block;
    font-size: .7rem;
    color: var(--muted);
    line-height: 1.35;
    margin-top: 2px;
}

.mega-sub {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    font-weight: 600;
    font-size: .82rem;
    color: var(--body);
    padding: 6px 10px;
    border-radius: 8px;
    transition: all .22s ease;
}

.mega-sub:hover {
    background: var(--grad-brand-soft);
    color: var(--indigo);
    transform: translateX(3px);
}

.mega-note {
    font-size: .78rem;
    color: var(--muted);
    line-height: 1.6;
    padding: 0 2px;
    margin-bottom: 10px;
}

.mega-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-tech);
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: var(--blue);
    padding: 6px 2px;
}

.mega-cta:hover { color: var(--indigo); }

/* Sub-product chips (inside cards / heroes) */
.sub-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 18px;
}

.sub-chip {
    font-family: var(--font-tech);
    font-size: .62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 11px;
    border-radius: 999px;
    background: var(--grad-brand-soft);
    border: 1px solid rgba(46, 49, 146, .14);
    color: var(--indigo);
    white-space: nowrap;
}

.sub-chip.on-dark {
    background: rgba(255, 255, 255, .06);
    border-color: rgba(255, 255, 255, .16);
    color: rgba(255, 255, 255, .75);
}

/* --------------------------------------------------------------------------
   6. Dark surface framework (hero, page headers, bands, footer)
   -------------------------------------------------------------------------- */
.surface-dark {
    position: relative;
    background: var(--grad-dark);
    color: rgba(255, 255, 255, .82);
    overflow: hidden;
    isolation: isolate;
}

.surface-dark h1,
.surface-dark h2,
.surface-dark h3,
.surface-dark h4,
.surface-dark h5 { color: #fff; }

/* Fine grid overlay */
.surface-dark::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
    background-size: 52px 52px;
    -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 0%, #000 30%, transparent 78%);
    mask-image: radial-gradient(ellipse 90% 80% at 50% 0%, #000 30%, transparent 78%);
    z-index: -1;
    pointer-events: none;
}

/* Glow orbs */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: .5;
    z-index: -1;
    pointer-events: none;
    animation: orb-drift 16s ease-in-out infinite;
}

@keyframes orb-drift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(34px, -22px) scale(1.07); }
}

/* Hero background video (homepage) — sits under the navy gradient glow */
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: .22;
    pointer-events: none;
    filter: saturate(.8);
}

/* Scrim that calms the video down so text stays crisp */
.hero-scrim {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(9, 13, 41, .78) 0%, rgba(9, 13, 41, .35) 55%, rgba(9, 13, 41, .6) 100%),
        linear-gradient(180deg, rgba(9, 13, 41, .25) 0%, transparent 30%, rgba(9, 13, 41, .55) 100%);
}

/* 3D logo mark stage (Three.js canvas mounts here) */
.hero-3d {
    position: absolute;
    right: -90px;
    top: -30px;
    width: 620px;
    height: 620px;
    z-index: -1;
    pointer-events: none;
    opacity: .7;
}

.hero-3d canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
}

/* Logo silhouette watermark for light sections */
.logo-watermark {
    position: relative;
    overflow: hidden;
}

.logo-watermark::after {
    content: "";
    position: absolute;
    width: 560px;
    height: 728px;
    background: url('../../images/logoicon.png') no-repeat center / contain;
    opacity: .05;
    right: -150px;
    top: 40px;
    pointer-events: none;
    z-index: 0;
}

.logo-watermark.wm-left::after {
    right: auto;
    left: -150px;
    top: auto;
    bottom: -120px;
}

.logo-watermark > .container {
    position: relative;
    z-index: 1;
}

.orb-cyan { background: rgba(35, 181, 201, .4); }
.orb-blue { background: rgba(47, 107, 216, .42); }
.orb-indigo { background: rgba(72, 76, 212, .45); }

/* --------------------------------------------------------------------------
   7. Home hero
   -------------------------------------------------------------------------- */
.hero {
    padding: 130px 0 96px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(35, 181, 201, .1);
    border: 1px solid rgba(35, 181, 201, .35);
    color: var(--cyan-bright);
    padding: 8px 18px;
    border-radius: 999px;
    font-family: var(--font-tech);
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 26px;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.9rem);
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.hero .lead {
    font-size: 1.06rem;
    color: rgba(255, 255, 255, .68);
    max-width: 540px;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 44px;
}

/* Small proof points under CTAs */
.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 28px;
}

.hero-meta span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: .8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .6);
}

.hero-meta i { color: var(--cyan-bright); font-size: .8rem; }

/* Product spotlight (glass carousel card) */
.spotlight {
    position: relative;
    background: rgba(12, 17, 48, .55);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--r-lg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 40px 90px rgba(4, 7, 24, .55);
    padding: 40px 40px 34px;
    overflow: hidden;
}

.spotlight::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    background: var(--grad-brand);
}

.spotlight-eyebrow {
    font-family: var(--font-tech);
    font-size: .64rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--cyan-bright);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.spotlight-icon {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    border-radius: 16px;
    background: var(--grad-brand);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.35rem;
    box-shadow: var(--shadow-glow);
}

.spotlight h3 {
    font-size: 1.5rem;
    margin: 0;
}

.spotlight-tagline {
    font-family: var(--font-tech);
    font-size: 1.12rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .9);
    margin: 20px 0 6px;
}

.spotlight-desc {
    font-size: .88rem;
    color: rgba(255, 255, 255, .55);
    margin-bottom: 24px;
}

.spotlight-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.spotlight-stat {
    background: rgba(255, 255, 255, .045);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 14px;
    padding: 14px 10px;
    text-align: center;
}

.spotlight-stat .num {
    display: block;
    font-family: var(--font-tech);
    font-weight: 700;
    font-size: 1.3rem;
    background: linear-gradient(110deg, #3ed6e8, #6a9bff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.spotlight-stat .lbl {
    font-size: .6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: rgba(255, 255, 255, .45);
}

.spotlight-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    font-family: var(--font-tech);
    font-size: .74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: var(--cyan-bright);
}

.spotlight-link i { transition: transform .3s ease; }
.spotlight-link:hover { color: #fff; }
.spotlight-link:hover i { transform: translateX(5px); }

/* Carousel fade (Bootstrap) inside spotlight */
.spotlight .carousel-item { transition: opacity .6s ease; }

/* Hero chips (carousel controls) */
.hero-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 56px;
}

.hero-chip {
    font-family: var(--font-tech);
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    color: rgba(255, 255, 255, .65);
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 999px;
    padding: 11px 22px;
    cursor: pointer;
    transition: all .3s ease;
}

.hero-chip:hover {
    background: rgba(255, 255, 255, .1);
    color: #fff;
}

.hero-chip.active {
    background: var(--grad-brand);
    border-color: transparent;
    color: #fff;
    box-shadow: var(--shadow-glow);
}

/* --------------------------------------------------------------------------
   8. Trust strip
   -------------------------------------------------------------------------- */
.trust-strip {
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 26px 0;
}

.trust-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 44px;
}

.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-tech);
    font-size: .74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    color: var(--muted);
}

.trust-item i {
    background: var(--grad-brand);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: .95rem;
}

/* --------------------------------------------------------------------------
   9. Cards — shared card system
   -------------------------------------------------------------------------- */
.card-x {
    position: relative;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 40px 34px;
    height: 100%;
    transition: transform .45s cubic-bezier(.165, .84, .44, 1), box-shadow .45s ease, border-color .45s ease;
    box-shadow: var(--shadow-sm);
}

.card-x:hover {
    transform: translateY(-10px);
    border-color: rgba(47, 107, 216, .45);
    box-shadow: var(--shadow-lg);
}

/* Corner accent that grows on hover */
.card-x::after {
    content: "";
    position: absolute;
    top: 20px;
    right: 20px;
    width: 14px;
    height: 14px;
    border-top: 2px solid var(--line-strong);
    border-right: 2px solid var(--line-strong);
    border-top-right-radius: 6px;
    transition: all .35s ease;
}

.card-x:hover::after {
    width: 22px;
    height: 22px;
    border-color: var(--cyan);
}

.icon-tile {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: var(--grad-brand-soft);
    border: 1px solid rgba(47, 107, 216, .16);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 24px;
    transition: all .4s ease;
}

.icon-tile i {
    background: var(--grad-brand);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card-x:hover .icon-tile {
    background: var(--grad-brand);
    border-color: transparent;
    box-shadow: var(--shadow-glow);
    transform: translateY(-4px);
}

.card-x:hover .icon-tile i {
    background: none;
    -webkit-text-fill-color: #fff;
}

.card-x h4, .card-x h5 {
    font-size: 1.18rem;
    margin-bottom: 12px;
}

.card-x p {
    font-size: .9rem;
    color: var(--muted);
    margin-bottom: 0;
}

/* Clickable product cards */
a.card-x { display: block; }

.card-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    font-family: var(--font-tech);
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    color: var(--blue);
}

.card-more i { transition: transform .3s ease; }
a.card-x:hover .card-more i { transform: translateX(5px); }

/* Stat card (light sections) */
.stat-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 38px 26px;
    text-align: center;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
}

.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(47, 107, 216, .35);
}

.stat-card .num {
    display: block;
    font-family: var(--font-tech);
    font-size: clamp(2.2rem, 3.4vw, 3rem);
    font-weight: 700;
    background: var(--grad-brand);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 6px;
}

.stat-card .lbl {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    color: var(--muted);
}

/* Checklist tile (small bordered item) */
.mini-tile {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 16px 18px;
    font-weight: 700;
    font-size: .9rem;
    color: var(--ink);
    box-shadow: var(--shadow-sm);
    transition: all .3s ease;
    height: 100%;
}

.mini-tile:hover {
    border-color: rgba(47, 107, 216, .4);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.mini-tile i {
    background: var(--grad-brand);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Capability pills (MAXXweb) */
.capability-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 14px 26px;
    margin: 7px;
    font-family: var(--font-tech);
    font-weight: 700;
    font-size: .88rem;
    color: var(--ink);
    box-shadow: var(--shadow-sm);
    transition: all .3s ease;
}

.capability-pill i {
    background: var(--grad-brand);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.capability-pill:hover {
    transform: translateY(-4px);
    border-color: rgba(47, 107, 216, .4);
    box-shadow: var(--shadow-md);
}

/* Industry chips (About) */
.industry-item {
    background: #fff;
    padding: 13px 10px;
    border-radius: 12px;
    border: 1px solid var(--line);
    font-weight: 700;
    font-size: .82rem;
    text-align: center;
    color: var(--ink);
    transition: all .3s ease;
}

.industry-item:hover {
    background: var(--grad-brand);
    border-color: transparent;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

/* --------------------------------------------------------------------------
   9b. Product showcase rows (homepage — alternating layout)
   -------------------------------------------------------------------------- */
.showcase-row + .showcase-row { margin-top: 96px; }

.showcase-copy h3 {
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    margin: 14px 0 16px;
}

.showcase-copy > p {
    color: var(--muted);
    margin-bottom: 26px;
}

/* Sub-product / feature checklist, two columns */
.showcase-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 22px;
}

.showcase-list li a,
.showcase-list li span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: .9rem;
    font-weight: 600;
    color: var(--body);
    transition: color .25s ease, transform .25s ease;
}

.showcase-list li a:hover {
    color: var(--blue);
    transform: translateX(3px);
}

.showcase-list li i {
    width: 18px;
    text-align: center;
    background: var(--grad-brand);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: .85rem;
}

/* Visual stage — mocks float directly on the light section background */
.showcase-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 0;
}

.showcase-visual .band-tag {
    margin-top: 28px;
    color: var(--muted);
}

@keyframes chip-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-9px); }
}

/* --- Shared app-window mock — same gradient theme as the payment card --- */
.mock-window {
    width: 100%;
    max-width: 440px;
    background: linear-gradient(130deg, #23b5c9 0%, #2f6bd8 52%, #2e3192 100%);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 18px;
    box-shadow: 0 30px 64px rgba(46, 49, 146, .3);
    overflow: hidden;
    isolation: isolate;
}

/* Soft light sheen, same as the payment card */
.mock-window::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .14);
    filter: blur(46px);
    top: -120px;
    right: -80px;
    z-index: -1;
}

.mock-console {
    position: relative;
    animation: chip-float 7s ease-in-out infinite;
}

.mock-code .mock-window {
    position: relative;
    animation: chip-float 7s ease-in-out infinite;
    animation-delay: -2s;
}

.mock-bar {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .1);
}

.mock-dot { width: 10px; height: 10px; border-radius: 50%; flex: 0 0 10px; }
.mock-dot.r { background: #ff5f57; }
.mock-dot.y { background: #febc2e; }
.mock-dot.g { background: #28c840; }

.mock-title {
    font-family: var(--font-tech);
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .8);
    margin-left: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mock-live {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-tech);
    font-size: .56rem;
    font-weight: 800;
    letter-spacing: 1.6px;
    color: #2ee6a8;
}

/* --- MAXXconsole: live channel dashboard --- */
.mock-console .mock-body {
    padding: 20px 18px 22px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mock-crow { display: flex; align-items: center; gap: 12px; }

.mock-crow .ic {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: .82rem;
    background: rgba(255, 255, 255, .16);
    border: 1px solid rgba(255, 255, 255, .26);
}

.mock-crow .lbl {
    font-size: .72rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .92);
    width: 78px;
    flex: 0 0 78px;
}

.mock-progress {
    flex: 1;
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .24);
    overflow: hidden;
}

.mock-progress span {
    display: block;
    height: 100%;
    border-radius: 999px;
    background: #fff;
    width: 0;
    animation: bar-grow 1.5s cubic-bezier(.22, .8, .36, 1) forwards;
    animation-delay: var(--d, .4s);
}

@keyframes bar-grow {
    to { width: var(--w, 90%); }
}

.mock-crow .val {
    font-family: var(--font-tech);
    font-size: .66rem;
    font-weight: 700;
    color: #fff;
    width: 40px;
    flex: 0 0 40px;
    text-align: right;
}

/* --- MAXXpayment: floating card + success toast --- */
.mock-pay {
    position: relative;
    width: 100%;
    max-width: 380px;
    padding-bottom: 26px;
}

.pay-card {
    position: relative;
    border-radius: 20px;
    padding: 24px 26px 22px;
    background: linear-gradient(130deg, #23b5c9 0%, #2f6bd8 52%, #2e3192 100%);
    box-shadow: 0 30px 64px rgba(46, 49, 146, .3);
    animation: chip-float 7s ease-in-out infinite;
    overflow: hidden;
    isolation: isolate;
}

.pay-card::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .14);
    filter: blur(46px);
    top: -120px;
    right: -80px;
    z-index: -1;
}

.pay-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.pay-brand {
    font-family: var(--font-tech);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .92);
}

.pay-top i {
    color: rgba(255, 255, 255, .85);
    transform: rotate(90deg);
    font-size: 1rem;
}

.pay-chip {
    width: 42px;
    height: 30px;
    border-radius: 7px;
    background:
        linear-gradient(rgba(255, 255, 255, .25) 1px, transparent 1px) center / 100% 9px,
        linear-gradient(135deg, #ffe9a8, #d7b46a);
    margin-bottom: 16px;
}

.pay-number {
    font-family: var(--font-tech);
    font-size: 1.12rem;
    font-weight: 500;
    letter-spacing: 3px;
    color: #fff;
    margin-bottom: 18px;
    white-space: nowrap;
}

.pay-meta {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-tech);
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .78);
}

.pay-toast {
    position: absolute;
    right: -6px;
    bottom: 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 13px 18px;
    font-size: .74rem;
    font-weight: 700;
    box-shadow: 0 18px 44px rgba(16, 22, 58, .18);
    animation: chip-float 6s ease-in-out infinite;
    animation-delay: -3s;
    white-space: nowrap;
}

.pay-toast i { color: #22c55e; font-size: 1rem; }

.pay-toast .amt {
    font-family: var(--font-tech);
    color: var(--indigo);
}

/* --- MAXXsolutions: code editor + deploy pill --- */
.mock-code {
    position: relative;
    width: 100%;
    max-width: 440px;
    margin-bottom: 12px;
}

.mock-code .code-body { padding: 20px 20px 24px; }

.code-ln {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.code-ln:last-child { margin-bottom: 0; }

.code-ln .no {
    font-family: var(--font-tech);
    font-size: .6rem;
    color: rgba(255, 255, 255, .5);
    width: 14px;
    flex: 0 0 14px;
    text-align: right;
}

.code-ln .bar {
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, .3);
    width: var(--w, 50%);
}

.code-ln .bar.cy { background: rgba(255, 255, 255, .92); }
.code-ln .bar.bl { background: rgba(255, 255, 255, .65); }
.code-ln .bar.in { background: rgba(255, 255, 255, .45); }

.code-ln.ind1 .bar { margin-left: 22px; }
.code-ln.ind2 .bar { margin-left: 44px; }

.code-cursor {
    width: 9px;
    height: 15px;
    border-radius: 2px;
    background: #fff;
    animation: cursor-blink 1.1s steps(1) infinite;
}

@keyframes cursor-blink {
    50% { opacity: 0; }
}

.code-deploy {
    position: absolute;
    right: -8px;
    bottom: -18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 13px 18px;
    font-size: .74rem;
    font-weight: 700;
    box-shadow: 0 18px 44px rgba(16, 22, 58, .18);
    animation: chip-float 6s ease-in-out infinite;
    animation-delay: -2s;
    white-space: nowrap;
}

.code-deploy i {
    background: var(--grad-brand);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: .95rem;
}

.code-deploy .ver {
    font-family: var(--font-tech);
    color: var(--muted);
    font-size: .64rem;
}

/* --------------------------------------------------------------------------
   10. Dark highlight band (compliance / console / bespoke)
   -------------------------------------------------------------------------- */
.band-dark {
    position: relative;
    background: var(--grad-dark);
    color: rgba(255, 255, 255, .8);
    border-radius: 32px;
    padding: 64px 60px;
    overflow: hidden;
    isolation: isolate;
    box-shadow: var(--shadow-lg);
}

.band-dark::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
    background-size: 40px 40px;
    -webkit-mask-image: radial-gradient(ellipse 80% 90% at 80% 20%, #000 20%, transparent 75%);
    mask-image: radial-gradient(ellipse 80% 90% at 80% 20%, #000 20%, transparent 75%);
    z-index: -1;
}

.band-dark::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 4px;
    background: var(--grad-brand);
}

.band-dark h1,
.band-dark h2,
.band-dark h3,
.band-dark h4,
.band-dark h5 { color: #fff; }

.band-dark h3 {
    font-size: clamp(1.4rem, 2.6vw, 1.9rem);
    margin-bottom: 16px;
}

.band-dark .lead {
    font-size: 1.02rem;
    font-weight: 300;
    color: rgba(255, 255, 255, .68);
    line-height: 1.75;
}

.band-ring {
    width: 168px;
    height: 168px;
    margin-inline: auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background:
        radial-gradient(closest-side, rgba(255, 255, 255, .04) 88%, transparent 90%);
    border: 1px solid rgba(255, 255, 255, .18);
    box-shadow: inset 0 0 40px rgba(35, 181, 201, .12), 0 0 60px rgba(35, 181, 201, .12);
}

.band-ring::before {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, .16);
    animation: spin-slow 22s linear infinite;
}

@keyframes spin-slow {
    to { transform: rotate(360deg); }
}

.band-ring i {
    font-size: 3.4rem;
    background: linear-gradient(110deg, #3ed6e8, #6a9bff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.band-tag {
    margin-top: 22px;
    font-family: var(--font-tech);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .5);
    text-align: center;
}

/* --------------------------------------------------------------------------
   11. Interior page header
   -------------------------------------------------------------------------- */
.page-header {
    padding: 108px 0 92px;
    text-align: center;
}

.page-header h1 {
    font-size: clamp(2.4rem, 5vw, 3.7rem);
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.page-header .lead {
    color: rgba(255, 255, 255, .66);
    font-size: 1.05rem;
    max-width: 720px;
    margin-inline: auto;
    margin-bottom: 0;
}

.page-header .hero-badge { margin-bottom: 22px; }

.page-header .page-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 36px;
}

/* --------------------------------------------------------------------------
   12. About — vision/mission, guarantees, leadership, certs
   -------------------------------------------------------------------------- */
.vm-card {
    background: #fff;
    border: 1px solid var(--line);
    padding: 48px 44px;
    border-radius: 30px;
    height: 100%;
    transition: border-color .4s ease, box-shadow .4s ease;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.vm-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--grad-brand);
}

.vm-card:hover {
    border-color: rgba(47, 107, 216, .4);
    box-shadow: var(--shadow-md);
}

.vm-card h2 { font-size: 1.7rem; margin-bottom: 14px; }

.callout {
    background: var(--bg-soft);
    border-left: 4px solid;
    border-image: var(--grad-brand) 1;
    border-radius: 0 16px 16px 0;
    padding: 26px 28px;
}

.callout h5 { font-size: 1.02rem; margin-bottom: 10px; }

/* Guarantee modules (dark section) */
.g-module {
    background: rgba(255, 255, 255, .035);
    border: 1px solid rgba(255, 255, 255, .08);
    padding: 34px 30px;
    border-radius: 22px;
    height: 100%;
    transition: all .35s ease;
}

.g-module:hover {
    background: rgba(255, 255, 255, .06);
    border-color: rgba(62, 214, 232, .45);
    box-shadow: 0 0 36px rgba(35, 181, 201, .16);
    transform: translateY(-6px);
}

.g-tag {
    font-family: var(--font-tech);
    color: var(--cyan-bright);
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.g-module h5 {
    font-size: 1.14rem;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.g-module p {
    font-size: .86rem;
    color: rgba(255, 255, 255, .55);
    margin-bottom: 0;
}

/* Leadership */
.leader-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 28px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    position: relative;
    transition: box-shadow .4s ease;
}

.leader-card::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 5px;
    background: var(--grad-brand);
}

.leader-card:hover { box-shadow: var(--shadow-md); }

.leader-card .inner { padding: 48px 52px; }

.leader-name {
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    margin-bottom: 4px;
}

.leader-title {
    font-family: var(--font-tech);
    color: var(--blue);
    font-weight: 700;
    text-transform: uppercase;
    font-size: .8rem;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 22px;
}

.leader-bio {
    font-size: .94rem;
    color: var(--body);
    line-height: 1.85;
}

.bio-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    font-family: var(--font-tech);
    font-weight: 700;
    font-size: .78rem;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--blue);
    cursor: pointer;
}

.bio-toggle:hover { color: var(--indigo); }

.exec-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 30px 32px;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all .35s ease;
}

.exec-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--grad-brand);
}

.exec-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(47, 107, 216, .35);
}

.exec-card h4 { font-size: 1.2rem; margin-bottom: 6px; }

.exec-card p {
    font-family: var(--font-tech);
    color: var(--blue);
    font-size: .74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0;
}

/* Certifications */
.cert-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 38px 30px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: zoom-in;
    transition: all .35s ease;
    box-shadow: var(--shadow-sm);
}

.cert-card:hover {
    border-color: rgba(47, 107, 216, .45);
    box-shadow: var(--shadow-md);
    transform: translateY(-8px);
}

.cert-card img {
    max-width: 100%;
    max-height: 116px;
    object-fit: contain;
}

/* Lightbox */
#certLightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(9, 13, 41, .94);
    backdrop-filter: blur(10px);
    justify-content: center;
    align-items: center;
}

#certLightbox.open { display: flex; }

#certLightbox img {
    max-width: 90%;
    max-height: 82%;
    border-radius: 14px;
    background: #fff;
    padding: 18px;
    box-shadow: 0 0 80px rgba(0, 0, 0, .6);
}

.close-lightbox {
    position: absolute;
    top: 26px;
    right: 34px;
    color: #fff;
    font-size: 2.2rem;
    font-weight: 700;
    cursor: pointer;
    line-height: 1;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 12px;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .3s ease;
}

.close-lightbox:hover { background: rgba(255, 255, 255, .18); }

/* --------------------------------------------------------------------------
   13. Careers
   -------------------------------------------------------------------------- */
.job-card {
    background: #fff;
    border: 1px solid var(--line);
    padding: 38px 34px;
    border-radius: var(--r-lg);
    transition: transform .45s cubic-bezier(.165, .84, .44, 1), box-shadow .45s ease, border-color .45s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.job-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--grad-brand);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .45s ease;
}

.job-card:hover {
    transform: translateY(-10px);
    border-color: rgba(47, 107, 216, .4);
    box-shadow: var(--shadow-lg);
}

.job-card:hover::before { transform: scaleX(1); }

.job-title { font-size: 1.3rem; margin-bottom: 12px; }

.job-desc {
    font-size: .9rem;
    color: var(--muted);
    margin-bottom: 26px;
    flex-grow: 1;
}

.apply-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-tech);
    color: var(--blue);
    font-weight: 700;
    text-transform: uppercase;
    font-size: .76rem;
    letter-spacing: 1.6px;
}

.apply-btn i { transition: transform .3s ease; }
.apply-btn:hover { color: var(--indigo); }
.apply-btn:hover i { transform: translateX(5px); }

.info-block {
    background: #fff;
    border-radius: 28px;
    padding: 46px 44px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    transition: border-color .35s ease, box-shadow .35s ease;
    height: 100%;
}

.info-block:hover {
    border-color: rgba(47, 107, 216, .4);
    box-shadow: var(--shadow-md);
}

.info-block h3 { font-size: 1.45rem; margin-bottom: 16px; }

.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 7px 0;
    font-size: .9rem;
    color: var(--body);
}

.check-list i {
    margin-top: 5px;
    background: var(--grad-brand);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --------------------------------------------------------------------------
   14. Contact
   -------------------------------------------------------------------------- */
.contact-card {
    background: #fff;
    border: 1px solid var(--line);
    padding: 38px 34px;
    border-radius: var(--r-lg);
    transition: all .4s ease;
    height: 100%;
    box-shadow: var(--shadow-sm);
}

.contact-card:hover {
    border-color: rgba(47, 107, 216, .4);
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.contact-card h4 { font-size: 1.2rem; margin-bottom: 14px; }

.map-container {
    position: relative;
    background: #fff;
    padding: 12px;
    border-radius: 28px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 480px;
    border-radius: 18px;
    display: block;
    border: 0;
    filter: saturate(.92);
}

/* --------------------------------------------------------------------------
   15. Privacy
   -------------------------------------------------------------------------- */
.sidebar-nav {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 28px 26px;
    position: sticky;
    top: 110px;
    box-shadow: var(--shadow-sm);
}

.sidebar-nav h6 {
    font-size: .78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.sidebar-nav a {
    display: block;
    font-size: .86rem;
    font-weight: 600;
    color: var(--muted);
    padding: 8px 12px;
    border-radius: 10px;
    border-left: 2px solid transparent;
    transition: all .25s ease;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
    color: var(--blue);
    background: var(--grad-brand-soft);
    border-left-color: var(--cyan);
}

.policy-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 26px;
    padding: 54px 56px;
    box-shadow: var(--shadow-sm);
}

.policy-card h2 {
    font-size: 1.5rem;
    margin: 44px 0 16px;
    padding-top: 8px;
}

.policy-card > div:first-child h2 { margin-top: 0; }

.policy-card p, .policy-card li {
    font-size: .94rem;
    color: var(--body);
}

.policy-card ul { padding-left: 1.2rem; }
.policy-card li { margin-bottom: 8px; }

.dpo-box {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--grad-dark);
    color: #fff;
    border-radius: 14px;
    padding: 16px 24px;
    font-weight: 600;
}

.dpo-box i { color: var(--cyan-bright); }

/* --------------------------------------------------------------------------
   16. CTA section
   -------------------------------------------------------------------------- */
.cta-section .band-dark { text-align: center; padding: 88px 48px 80px; }

.cta-section .eyebrow { margin-bottom: 22px; }

.cta-section h2 {
    font-size: clamp(1.9rem, 3.6vw, 2.8rem);
    margin-bottom: 16px;
}

.cta-section p {
    color: rgba(255, 255, 255, .62);
    max-width: 560px;
    margin: 0 auto 36px;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

/* Word-by-word headline animation (triggers when the band reveals) */
.cta-anim .w {
    display: inline-block;
    opacity: 0;
    transform: translateY(26px);
    filter: blur(8px);
    transition: opacity .6s ease, transform .6s cubic-bezier(.22, .8, .36, 1), filter .6s ease;
}

.in-view .cta-anim .w:nth-child(1) { transition-delay: .12s; }
.in-view .cta-anim .w:nth-child(2) { transition-delay: .22s; }
.in-view .cta-anim .w:nth-child(3) { transition-delay: .32s; }
.in-view .cta-anim .w:nth-child(4) { transition-delay: .42s; }
.in-view .cta-anim .w:nth-child(5) { transition-delay: .52s; }
.in-view .cta-anim .w:nth-child(6) { transition-delay: .62s; }

.in-view .cta-anim .w {
    opacity: 1;
    transform: none;
    filter: blur(0);
}

/* Slow gradient shimmer on the highlighted words */
.cta-anim .gradient-text-bright {
    background-size: 220% 100%;
    animation: grad-shift 5s ease-in-out infinite;
}

@keyframes grad-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}


/* --------------------------------------------------------------------------
   17. Footer
   -------------------------------------------------------------------------- */
footer.site-footer {
    position: relative;
    background: var(--grad-dark);
    color: rgba(255, 255, 255, .72);
    padding: 84px 0 36px;
    overflow: hidden;
    isolation: isolate;
}

footer.site-footer::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    background: var(--grad-brand);
}

footer.site-footer::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px);
    background-size: 28px 28px;
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 100%, #000 20%, transparent 80%);
    mask-image: radial-gradient(ellipse 70% 60% at 50% 100%, #000 20%, transparent 80%);
    z-index: -1;
    pointer-events: none;
}

.footer-logo { height: 50px; margin-bottom: 26px; }

.footer-about {
    font-size: .88rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, .58);
}

.footer-heading {
    font-family: var(--font-tech);
    color: #fff;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.footer-link {
    color: rgba(255, 255, 255, .62);
    text-decoration: none;
    font-size: .88rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 13px;
    transition: all .3s ease;
    font-weight: 500;
}

.footer-link::before {
    content: "\2192";
    font-size: .78rem;
    color: var(--cyan-bright);
    opacity: 0;
    margin-left: -16px;
    transition: all .3s ease;
}

.footer-link:hover {
    color: #fff;
    padding-left: 18px;
}

.footer-link:hover::before {
    opacity: 1;
    margin-left: 0;
}

/* Ghosted logo mark in the footer corner */
.footer-mark {
    position: absolute;
    right: -70px;
    bottom: -80px;
    width: 400px;
    height: 520px;
    background: url('../../images/logoicon.png') no-repeat center / contain;
    filter: brightness(0) invert(1);
    opacity: .04;
    pointer-events: none;
    z-index: -1;
}

.footer-tagline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-tech);
    font-size: .66rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--cyan-bright);
    margin-bottom: 18px;
}

.footer-tagline::before {
    content: "";
    width: 24px;
    height: 2px;
    border-radius: 2px;
    background: var(--grad-brand);
}

/* Contact rows with icon tiles */
.fc-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
    font-size: .86rem;
    color: rgba(255, 255, 255, .68);
    line-height: 1.65;
}

.fc-item:last-child { margin-bottom: 0; }

.fc-ic {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border-radius: 11px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan-bright);
    font-size: .85rem;
    margin-top: 1px;
    transition: all .3s ease;
}

.fc-item:hover .fc-ic {
    background: var(--grad-brand);
    border-color: transparent;
    color: #fff;
    box-shadow: var(--shadow-glow);
}

.fc-item a { color: rgba(255, 255, 255, .82); }
.fc-item a:hover { color: var(--cyan-bright); }

/* Back-to-top pill */
.back-top {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-tech);
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    color: rgba(255, 255, 255, .65);
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 999px;
    padding: 10px 20px;
    transition: all .3s ease;
}

.back-top:hover {
    color: #fff;
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .3);
    transform: translateY(-3px);
}

.back-top i { color: var(--cyan-bright); }

.social-btn {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .06);
    color: #fff;
    border-radius: 12px;
    transition: all .3s ease;
    border: 1px solid rgba(255, 255, 255, .12);
}

.social-btn:hover {
    background: var(--grad-brand);
    color: #fff;
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
    border-color: transparent;
}

.footer-divider {
    border-color: rgba(255, 255, 255, .1);
    margin: 52px 0 28px;
    opacity: 1;
}

.footer-bottom {
    font-size: .8rem;
    color: rgba(255, 255, 255, .42);
}

/* --------------------------------------------------------------------------
   18. Scroll-reveal animations
   -------------------------------------------------------------------------- */
.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .7s ease, transform .7s cubic-bezier(.165, .84, .44, 1);
    will-change: opacity, transform;
}

.reveal.in-view {
    opacity: 1;
    transform: none;
}

.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
.reveal.d5 { transition-delay: .40s; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .band-ring::before, .orb { animation: none; }

    .pay-card, .pay-toast, .code-deploy, .code-cursor, .mock-window, .mock-console { animation: none; }

    .cta-anim .w {
        opacity: 1;
        transform: none;
        filter: none;
        transition: none;
    }

    .cta-anim .gradient-text-bright { animation: none; }

    .mock-progress span {
        animation: none;
        width: var(--w, 90%);
    }

    * { transition-duration: .01ms !important; }
}

/* --------------------------------------------------------------------------
   19. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 991.98px) {
    .section { padding: 80px 0; }
    .section-sm { padding: 60px 0; }

    .hero { padding: 92px 0 72px; }
    .hero .lead { max-width: 100%; }
    .hero-3d { display: none; }

    /* Skip the background video on small screens — saves mobile data */
    .hero-video { display: none; }

    .logo-watermark::after {
        width: 380px;
        height: 494px;
        right: -160px;
    }

    .logo-watermark.wm-left::after {
        right: auto;
        left: -160px;
    }

    .spotlight { padding: 32px 28px; margin-top: 52px; }
    .hero-chips { margin-top: 40px; }

    .page-header { padding: 84px 0 72px; }

    .band-dark { padding: 48px 36px; }
    .band-ring { width: 136px; height: 136px; margin-top: 36px; }
    .band-ring i { font-size: 2.6rem; }

    .showcase-row + .showcase-row { margin-top: 72px; }

    .leader-card .inner { padding: 36px 30px; }
    .policy-card { padding: 38px 32px; }

    .sidebar-nav {
        position: static;
        margin-bottom: 28px;
    }

    /* Mobile nav panel */
    .navbar-collapse {
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 18px;
        box-shadow: var(--shadow-lg);
        margin-top: 14px;
        padding: 18px 20px;
    }

    .navbar .nav-link {
        margin: 4px 0;
        padding: 10px 4px;
    }

    .navbar .nav-link::after { display: none; }

    .navbar .nav-cta { margin: 12px 0 4px; }

    .dropdown-menu {
        border: none;
        box-shadow: none;
        background: var(--bg-soft);
        margin-top: 4px !important;
        padding: 8px;
    }

    .dropdown-menu::before { display: none; }

    .dropdown-menu.mega {
        min-width: 0;
        padding: 14px 12px;
    }

    .mega-grid {
        grid-template-columns: 1fr;
        gap: 14px 0;
    }

    .mega-col + .mega-col {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid var(--line);
        padding-top: 14px;
    }
}

@media (max-width: 767.98px) {
    body { font-size: .95rem; }

    .section { padding: 64px 0; }
    .section-sm { padding: 48px 0; }

    .hero { padding: 72px 0 56px; }
    .hero-actions .btn-brand,
    .hero-actions .btn-outline-brand,
    .hero-actions .btn-glass {
        width: 100%;
    }

    .cta-actions .btn-brand,
    .cta-actions .btn-glass { width: 100%; }

    .page-actions .btn-brand,
    .page-actions .btn-glass { width: 100%; }

    .spotlight { padding: 26px 20px; }
    .spotlight-stats { gap: 8px; }
    .spotlight-stat { padding: 12px 6px; }
    .spotlight-stat .num { font-size: 1.05rem; }
    .spotlight-stat .lbl { font-size: .54rem; letter-spacing: 1px; }

    .hero-chip { padding: 9px 16px; font-size: .62rem; }

    .card-x { padding: 32px 26px; }
    .vm-card { padding: 34px 28px; }
    .info-block { padding: 32px 26px; }
    .band-dark { padding: 40px 26px; }
    .cta-section .band-dark { padding: 56px 26px 52px; }

    .map-container iframe { height: 360px; }

    .trust-items { gap: 12px 22px; }
    .trust-item { font-size: .64rem; letter-spacing: 1px; }

    .showcase-row + .showcase-row { margin-top: 56px; }
    .showcase-visual { padding: 8px 0; }
    .showcase-list { grid-template-columns: 1fr; gap: 8px; }
    .showcase-copy .btn-outline-brand { width: 100%; }

    .mock-crow { gap: 8px; }
    .mock-crow .lbl { width: 62px; flex-basis: 62px; font-size: .66rem; }
    .pay-number { font-size: .95rem; letter-spacing: 2px; }
    .pay-toast, .code-deploy { font-size: .64rem; padding: 11px 14px; right: 0; }

    .policy-card { padding: 30px 22px; }

    .footer-mark { width: 240px; height: 312px; right: -100px; bottom: -60px; }
}
