/* ─────────────────────────────────────────
   Global tweaks
───────────────────────────────────────── */
body::after { opacity: 0.5; }

#smooth-wrapper { position: relative; z-index: 0; }

/* ─────────────────────────────────────────
   Home showcase video (boxed → 90vw on scroll; catalog pages stay full width)
───────────────────────────────────────── */
.hsv-section {
    position: relative;
    background: #000;
    min-height: 100vh;
    padding: 6vh 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hsv-stage {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hsv-frame {
    position: relative;
    flex: 0 0 auto;
    width: min(900px, 70vw);
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.08),
        0 30px 80px rgba(0, 0, 0, 0.6);
    will-change: width, height, border-radius;
}

.hsv-media {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    object-fit: cover;
    pointer-events: none;
}

.hsv-media::-webkit-media-controls,
.hsv-media::-webkit-media-controls-enclosure,
.hsv-media::-webkit-media-controls-panel { display: none !important; opacity: 0 !important; }

@media (max-width: 700px) {
    .hsv-frame { width: 86vw; border-radius: 16px; }
    .hsv-section { padding: 4vh 0; }
}

@media (prefers-reduced-motion: reduce) {
    .hsv-frame { transition: none !important; }
}

:root {
    --site-card-border: rgba(80, 145, 188, 0.3);
    --site-card-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.4),
        0 14px 44px rgba(0, 0, 0, 0.48),
        0 0 56px rgba(30, 89, 131, 0.22);
    --site-card-shadow-hover:
        0 0 0 1px rgba(0, 0, 0, 0.45),
        0 22px 60px rgba(0, 0, 0, 0.55),
        0 0 80px rgba(30, 89, 131, 0.32),
        inset 0 0 28px rgba(30, 89, 131, 0.06);
}

/* ═══════════════════════════════════════
   HERO — split (solid left | clear image right)
═══════════════════════════════════════ */
.hero-root {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* ── Background photo ── */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* Hero background image (full-bleed cover) */
.hero-bg__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 65% center;
    display: block;
    z-index: 0;
}

/* SVG variant: docked on the right, fills the right column with a slow ambient + entrance animation */
.hero-bg__img--svg {
    object-fit: contain;
    object-position: right center;
    width: 60%;
    left: auto;
    right: 0;
    filter: drop-shadow(0 24px 60px rgba(0, 0, 0, 0.55));
    transform-origin: 100% 50%;
    animation:
        hero-bg-svg-in 1.6s cubic-bezier(0.22, 0.61, 0.36, 1) both,
        hero-bg-svg-float 14s ease-in-out 1.6s infinite;
    will-change: transform, opacity;
}

@media (max-width: 900px) {
    .hero-bg__img--svg {
        width: 90%;
        opacity: 0.55;
    }
}

/* Soft accent glow behind the SVG (ambient pulse) */
.hero-bg__glow {
    position: absolute;
    z-index: 0;
    top: 50%;
    right: -6%;
    width: 70%;
    height: 80%;
    transform: translateY(-50%);
    background: radial-gradient(
        closest-side,
        rgba(30, 89, 131, 0.55) 0%,
        rgba(30, 89, 131, 0.18) 45%,
        rgba(30, 89, 131, 0) 70%
    );
    filter: blur(8px);
    animation: hero-bg-glow-pulse 6s ease-in-out 0.4s infinite;
    pointer-events: none;
}

@keyframes hero-bg-svg-in {
    0% {
        opacity: 0;
        transform: translate3d(40px, 0, 0) scale(1.06);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

@keyframes hero-bg-svg-float {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(-10px, -8px, 0) scale(1.015);
    }
}

@keyframes hero-bg-glow-pulse {
    0%, 100% {
        opacity: 0.65;
        transform: translateY(-50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateY(-50%) scale(1.06);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-bg__img--svg,
    .hero-bg__glow {
        animation: none;
    }
}

/* Left-to-right: solid dark on left (under text), clears toward right where image shows */
.hero-bg__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        to right,
        #030303 0%,
        #030303 38%,
        rgba(3,3,3,0.88) 50%,
        rgba(3,3,3,0.35) 65%,
        rgba(3,3,3,0.05) 80%,
        transparent 90%
    );
}

/* Right-side feathered shadow so the image edge is defined, not raw */
.hero-bg__shadow-right {
    position: absolute;
    inset: 0;
    z-index: 3;
    background: linear-gradient(
        to left,
        rgba(0,0,0,0.45) 0%,
        rgba(0,0,0,0.18) 15%,
        transparent 35%
    );
    pointer-events: none;
}

/* ── Split layout wrapper ── */
.hero-root__content {
    position: relative;
    z-index: 1;
    flex: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
    padding-inline: 5%;
    padding-top: clamp(5rem, 10vw, 7rem);
    padding-bottom: clamp(2rem, 5vw, 3rem);
    gap: 2rem;
}

@media (max-width: 900px) {
    .hero-root__content {
        grid-template-columns: 1fr;
    }
    .hero-right-pane { display: none; }
}

.hero-right-pane {
    /* purely visual spacer — image shows through background here */
    min-height: 1px;
}

/* ── Copy block — sits on solid dark from overlay ── */
.hero-copy {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* ── Eyebrow — solid colour badge ── */
.hero-copy__eyebrow {
    margin: 0;
}

.hero-copy__eyebrow-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.38rem 1rem;
    border-radius: 999px;
    background: rgba(30,89,131,0.18);
    border: 1px solid rgba(30,89,131,0.45);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.hero-copy__headline {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin: 0;
    font-size: unset;
    line-height: 1;
}

.hero-copy__hl-accent {
    display: block;
    font-size: clamp(2.2rem, 6vw, 4.2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.4;
}

.hero-copy__hl-body {
    display: block;
    font-size: clamp(1.1rem, 2.6vw, 1.8rem);
    font-weight: 500;
    line-height: 1.38;
    color: rgba(255,255,255,0.88);
}

.hero-copy__lead {
    font-size: clamp(0.88rem, 1.3vw, 1rem);
    line-height: 1.72;
    color: rgba(255,255,255,0.62);
    max-width: 560px;
    margin: 0;
}

.hero-copy__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    align-items: center;
}

/* Showcase video section — styled inline in home.blade.php */

/* ── Service bar — slim compact strip at hero bottom ── */
.hero-bar {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: stretch;
    padding-inline: 10%;
    border-top: 1px solid rgba(255,255,255,0.1);
    background: rgba(3,3,3,0.72);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

@media (max-width: 700px) {
    .hero-bar {
        flex-direction: column;
    }
}

.hero-bar__item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1.1rem 1.4rem;
    text-decoration: none;
    color: inherit;
    transition: background 0.22s ease;
}

.hero-bar__item:hover,
.hero-bar__item:focus-visible {
    background: rgba(30,89,131,0.08);
    outline: none;
}

.hero-bar__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 10px;
    background: rgba(30,89,131,0.16);
    border: 1px solid rgba(30,89,131,0.35);
    color: #1e5983;
    font-size: 0.85rem;
    flex-shrink: 0;
    transition: background 0.22s ease, border-color 0.22s ease;
}

.hero-bar__item:hover .hero-bar__icon {
    background: rgba(30,89,131,0.28);
    border-color: rgba(30,89,131,0.65);
}

.hero-bar__text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    flex: 1;
    min-width: 0;
}

.hero-bar__text strong {
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
}

.hero-bar__text span {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.48);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hero-bar__arrow {
    font-size: 0.65rem;
    color: rgba(30,89,131,0.5);
    flex-shrink: 0;
    transform: translateX(0);
    transition: transform 0.22s ease, color 0.22s ease;
}

.hero-bar__item:hover .hero-bar__arrow {
    transform: translateX(4px);
    color: #1e5983;
}

.hero-bar__divider {
    width: 1px;
    background: rgba(255,255,255,0.08);
    flex-shrink: 0;
    align-self: stretch;
}

@media (max-width: 700px) {
    .hero-bar__divider {
        width: auto;
        height: 1px;
        align-self: auto;
    }
    .hero-bar__item {
        padding: 0.85rem 1.1rem;
    }
}

/* ═══════════════════════════════════════
   HOME — Hotspot Cyber Track (post-hero)
   One panel: video | copy same row from 768px (CSS Grid)
═══════════════════════════════════════ */
.cyber-track-section {
    background: linear-gradient(180deg, rgba(3, 3, 3, 0.35) 0%, transparent 45%);
}

.cyber-track__panel {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    align-items: stretch;
}

.cyber-track__panel--catalog {
    gap: 1.5rem;
}

.cyber-track__catalog-cover {
    margin: 0;
    line-height: 0;
    border-radius: 0.35rem;
    overflow: hidden;
    background: #050505;
}

.cyber-track__catalog-cover-img {
    display: block;
    width: 100%;
    height: auto;
}

.cyber-track__cta-row--catalog {
    justify-content: center;
    max-width: 520px;
    margin: 0 auto;
}

.cyber-track__media-col {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.cyber-track__copy-col {
    min-width: 0;
    display: flex;
    align-items: center;
}

.cyber-track__copy {
    width: 100%;
}

.cyber-track__eyebrow {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 0.75rem;
}

.cyber-track__title {
    font-size: clamp(1.65rem, 3.5vw, 2.35rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 1.1rem;
}

.cyber-track__bullets {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    margin: 0;
    padding: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(0.88rem, 1.15vw, 0.98rem);
    line-height: 1.45;
}

.cyber-track__bullets li {
    width: 100%;
}

.cyber-track__perfect-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.42);
    margin: 0;
}

.cyber-track__perfect-chips {
    font-size: clamp(0.9rem, 1.25vw, 1.02rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
    margin: 0;
    line-height: 1.5;
}

.cyber-track__cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 0.25rem;
}

.cyber-track__cta-row .btn {
    flex: 1 1 140px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Personal / Corporate edition CTAs */
.cyber-track__edition-switch {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
    margin-top: 0.35rem;
    max-width: 100%;
}

.cyber-track__edition-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-height: 58px;
    padding: 0.75rem 1rem;
    border-radius: 14px;
    text-decoration: none;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease,
        background 0.22s ease;
    overflow: hidden;
}

.cyber-track__edition-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, transparent 55%);
    opacity: 0;
    transition: opacity 0.22s ease;
    pointer-events: none;
}

.cyber-track__edition-btn:hover::before,
.cyber-track__edition-btn:focus-visible::before {
    opacity: 1;
}

.cyber-track__edition-btn:hover,
.cyber-track__edition-btn:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(30, 89, 131, 0.55);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(30, 89, 131, 0.25);
    color: #fff;
}

.cyber-track__edition-btn:focus-visible {
    outline: 2px solid rgba(120, 180, 220, 0.85);
    outline-offset: 2px;
}

.cyber-track__edition-btn--personal:hover,
.cyber-track__edition-btn--personal:focus-visible {
    background: rgba(30, 89, 131, 0.18);
}

.cyber-track__edition-btn--corporate {
    border-color: rgba(30, 89, 131, 0.45);
    background: linear-gradient(145deg, rgba(30, 89, 131, 0.92) 0%, rgba(16, 48, 88, 0.98) 100%);
    box-shadow: 0 6px 28px rgba(30, 89, 131, 0.35);
}

.cyber-track__edition-btn--corporate:hover,
.cyber-track__edition-btn--corporate:focus-visible {
    background: linear-gradient(145deg, rgba(38, 105, 150, 0.95) 0%, rgba(20, 58, 100, 1) 100%);
    box-shadow: 0 12px 36px rgba(30, 89, 131, 0.45);
}

.cyber-track__edition-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
    color: rgba(120, 180, 220, 1);
}

.cyber-track__edition-btn--corporate .cyber-track__edition-icon {
    background: rgba(0, 0, 0, 0.2);
    color: #fff;
}

.cyber-track__edition-copy {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
    text-align: left;
}

.cyber-track__edition-label {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    line-height: 1.2;
}

.cyber-track__edition-hint {
    font-size: 0.72rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.58);
    line-height: 1.25;
}

.cyber-track__edition-btn--corporate .cyber-track__edition-hint {
    color: rgba(255, 255, 255, 0.75);
}

.cyber-track__edition-arrow {
    flex-shrink: 0;
    font-size: 0.78rem;
    opacity: 0.45;
    transition: transform 0.22s ease, opacity 0.22s ease;
}

.cyber-track__edition-btn:hover .cyber-track__edition-arrow,
.cyber-track__edition-btn:focus-visible .cyber-track__edition-arrow {
    opacity: 1;
    transform: translateX(3px);
}

@media (max-width: 575.98px) {
    .cyber-track__edition-switch {
        grid-template-columns: 1fr;
    }

    .cyber-track__edition-btn {
        min-height: 54px;
    }
}

.cyber-track__lead {
    font-size: clamp(0.92rem, 1.2vw, 1.02rem);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.72);
    max-width: 520px;
}

.cyber-track__highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.cyber-track__highlight {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
    background: rgba(30, 89, 131, 0.18);
    border: 1px solid rgba(30, 89, 131, 0.35);
}

.cyber-track__highlight i {
    color: rgba(120, 180, 220, 1);
    font-size: 0.85rem;
}

/* Vehicle icon — only inside poster circle (Font Awesome) */
.cyber-track__vehicle-icon {
    flex-shrink: 0;
    color: currentColor;
    line-height: 1;
}

.cyber-track__vehicle-icon--circle {
    display: block;
    font-size: 1.65rem;
    width: 1em;
    height: 1em;
    text-align: center;
}

.cyber-track__vehicle-icon--inline {
    font-size: 1em;
}

.cyber-track__preview-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.42);
    margin-bottom: 1rem;
}

.cyber-track__preview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .cyber-track__preview-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1200px) {
    .cyber-track__preview-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.cyber-track__preview-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0.65rem;
    border-radius: 14px;
    text-decoration: none;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.cyber-track__preview-card:hover {
    border-color: rgba(30, 89, 131, 0.5);
    background: rgba(30, 89, 131, 0.12);
    transform: translateY(-2px);
}

.cyber-track__preview-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(30, 89, 131, 0.22);
}

.cyber-track__preview-icon i {
    color: rgba(120, 180, 220, 1);
    font-size: 1rem;
}

.cyber-track__preview-title {
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.3;
}

/* Static image variant (no video modal) */
.cyber-track__poster-btn--static {
    cursor: default;
}

.cyber-track__poster-btn--static:hover,
.cyber-track__poster-btn--static:focus-visible {
    transform: none;
    box-shadow:
        0 0 0 1px rgba(80, 145, 188, 0.28),
        0 14px 44px rgba(0, 0, 0, 0.45),
        0 0 48px rgba(30, 89, 131, 0.15);
}

/* Stacked (mobile): card-style video */
.cyber-track__poster-btn {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    text-align: left;
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(80, 145, 188, 0.28),
        0 14px 44px rgba(0, 0, 0, 0.45),
        0 0 48px rgba(30, 89, 131, 0.15);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.cyber-track__poster-btn:hover,
.cyber-track__poster-btn:focus-visible {
    transform: translateY(-2px);
    box-shadow:
        0 0 0 1px rgba(110, 172, 208, 0.45),
        0 18px 48px rgba(0, 0, 0, 0.5),
        0 0 56px rgba(30, 89, 131, 0.2);
    outline: none;
}

.cyber-track__poster-frame {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #0a0a0c;
}

.cyber-track__poster-img,
.cyber-track__showcase-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cyber-track__showcase-video {
    position: absolute;
    inset: 0;
    background: #0a0a0c;
}

.cyber-track__poster-frame:has(.cyber-track__showcase-video) {
    overflow: hidden;
}


.cyber-track__poster-shade {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.5) 100%);
    pointer-events: none;
}

.cyber-track__play {
    position: absolute;
    left: 50%;
    top: 46%;
    transform: translate(-50%, -50%);
    width: 4.25rem;
    height: 4.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 89, 131, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.38);
    color: #fff;
    padding: 0;
    line-height: 1;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
    transition: background 0.22s ease, transform 0.22s ease;
    pointer-events: none;
}

@media (min-width: 768px) {
    .cyber-track__play {
        width: 4.75rem;
        height: 4.75rem;
    }

    .cyber-track__vehicle-icon--circle {
        font-size: 1.85rem;
    }
}

.cyber-track__poster-btn:hover .cyber-track__play,
.cyber-track__poster-btn:focus-visible .cyber-track__play {
    background: rgba(30, 89, 131, 1);
    transform: translate(-50%, -50%) scale(1.05);
}

.cyber-track__poster-hint {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.55rem 1rem 0.7rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.88);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, transparent 100%);
    pointer-events: none;
}

/* ≥768px: one row — video | text in a shared panel */
@media (min-width: 768px) {
    .cyber-track__panel {
        grid-template-columns: minmax(0, 1.12fr) minmax(0, 1fr);
        gap: 0;
        border-radius: 20px;
        overflow: hidden;
        border: 1px solid rgba(80, 145, 188, 0.32);
        box-shadow: var(--site-card-shadow);
        min-height: min(420px, 52vh);
    }

    .cyber-track__media-col {
        align-self: stretch;
        display: flex;
        flex-direction: column;
        min-height: 0;
    }

    .cyber-track__poster-btn {
        border-radius: 0;
        flex: 1 1 auto;
        display: flex;
        flex-direction: column;
        min-height: 280px;
        height: 100%;
        box-shadow: none;
        transition: filter 0.25s ease;
    }

    .cyber-track__poster-btn:hover,
    .cyber-track__poster-btn:focus-visible {
        transform: none;
        filter: brightness(1.06);
        box-shadow: none;
    }

    .cyber-track__poster-btn--static:hover,
    .cyber-track__poster-btn--static:focus-visible {
        filter: none;
    }

    .cyber-track__poster-frame {
        position: relative;
        flex: 1 1 auto;
        min-height: 240px;
        height: 100%;
        aspect-ratio: auto;
    }

    .cyber-track__poster-img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .cyber-track__copy-col {
        padding: clamp(1.35rem, 2.8vw, 2.25rem);
        background: linear-gradient(
            135deg,
            rgba(10, 12, 18, 0.97) 0%,
            rgba(6, 8, 12, 0.94) 100%
        );
        border-left: 1px solid rgba(255, 255, 255, 0.07);
    }
}

/* ═══════════════════════════════════════
   Portfolio / project cards
═══════════════════════════════════════ */
.portfolio-card {
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--site-card-border);
    text-decoration: none;
    color: inherit;
    height: 100%;
    box-shadow: var(--site-card-shadow);
    transition:
        border-color 0.28s ease,
        transform 0.28s ease,
        box-shadow 0.28s ease;
}

.portfolio-card:hover,
.portfolio-card:focus-visible {
    outline: none;
    transform: translateY(-4px);
    border-color: rgba(110, 172, 208, 0.52);
    box-shadow: var(--site-card-shadow-hover);
}

.portfolio-card__fig {
    position: relative;
    margin: 0;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    flex-shrink: 0;
}

.portfolio-card__fig img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-card__fig img,
.portfolio-card:focus-visible .portfolio-card__fig img {
    transform: scale(1.06);
}

.portfolio-card__body {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1rem 1.1rem 1.2rem;
    flex: 1;
}

.portfolio-card__tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #1e5983;
}

.portfolio-card__tag i {
    font-size: 0.68rem;
}

.portfolio-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.3;
}

.portfolio-card__desc {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.52);
    margin: 0;
    line-height: 1.5;
}

/* ═══════════════════════════════════════
   Concept image — Mix & Match section
═══════════════════════════════════════ */
.concept-img-wrap {
    position: relative;
    display: block;
}

.concept-img-frame {
    display: block;
    width: 100%;
    border-radius: 20px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center 35%;
    border: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow:
        0 0 0 1px rgba(30, 89, 131, 0.18),
        0 24px 64px rgba(0, 0, 0, 0.55),
        0 0 48px rgba(30, 89, 131, 0.12);
    transition: box-shadow 0.4s ease;
}

.concept-img-frame:hover {
    box-shadow:
        0 0 0 2px rgba(52, 118, 162, 0.45),
        0 28px 72px rgba(0, 0, 0, 0.5),
        0 0 72px rgba(30, 89, 131, 0.22);
}

/* Amber glow underneath — stage footlight wash */
.concept-img-glow {
    position: absolute;
    bottom: -24px;
    left: 8%;
    right: 8%;
    height: 48px;
    pointer-events: none;
    border-radius: 50%;
    background: radial-gradient(
        ellipse 80% 100% at 50% 0%,
        rgba(30, 89, 131, 0.28) 0%,
        rgba(30, 89, 131, 0.06) 55%,
        transparent 100%
    );
    filter: blur(8px);
    z-index: -1;
}

/* ═══════════════════════════════════════
   Service listings & detail — parallax frames
   (same structure as concept image + tilt script)
═══════════════════════════════════════ */
.service-parallax-wrap--hero .concept-img-frame {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
}

.service-parallax-wrap--row .concept-img-frame {
    aspect-ratio: auto;
    max-height: min(420px, 55vh);
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
}

@media (min-width: 768px) {
    .service-parallax-wrap--row .concept-img-frame {
        max-height: 380px;
    }
}

.service-parallax-wrap--tile-contain .concept-img-frame {
    aspect-ratio: 1;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.service-parallax-wrap--tile-cover .concept-img-frame {
    aspect-ratio: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.service-parallax-wrap--intro .concept-img-frame {
    aspect-ratio: 1;
    object-fit: cover;
}

.service-parallax-wrap--floor .concept-img-frame {
    aspect-ratio: 4 / 3;
    object-fit: contain;
}

.service-parallax-wrap--card .concept-img-frame {
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

.sd-page .sd-hero-figure:has(.service-parallax-wrap),
.sd-creative-row__figure:has(.service-parallax-wrap),
.sd-se-product__figure:has(.service-parallax-wrap),
.sd-ls-product__figure:has(.service-parallax-wrap),
.sd-lb-product__figure:has(.service-parallax-wrap),
.sd-lb-intro__figure:has(.service-parallax-wrap),
.sd-ss-product__figure:has(.service-parallax-wrap),
.sd-cs-product__figure:has(.service-parallax-wrap),
.sd-ts-product__figure:has(.service-parallax-wrap),
.sd-ts-floor__figure:has(.service-parallax-wrap),
.sd-se-two__figure:has(.service-parallax-wrap) {
    overflow: visible;
    padding-bottom: 1.35rem;
}

.sd-se-two__card:has(.service-parallax-wrap) {
    overflow: visible;
    padding-bottom: 0.35rem;
}

.card-service figure:has(.service-parallax-wrap) {
    overflow: visible;
    padding-bottom: 1.25rem;
}

.sd-creative-row__figure:has(.service-parallax-wrap) img {
    max-height: none;
}

.sd-ss-product__figure:has(.service-parallax-wrap),
.sd-cs-product__figure:has(.service-parallax-wrap),
.sd-ts-product__figure:has(.service-parallax-wrap) {
    align-items: stretch;
}

.sd-ss-product__figure:has(.service-parallax-wrap) .service-parallax-wrap,
.sd-cs-product__figure:has(.service-parallax-wrap) .service-parallax-wrap,
.sd-ts-product__figure:has(.service-parallax-wrap) .service-parallax-wrap {
    flex: 1;
    align-self: stretch;
    width: 100%;
    min-height: 0;
}

.sd-se-product__figure:has(.service-parallax-wrap),
.sd-ls-product__figure:has(.service-parallax-wrap),
.sd-lb-product__figure:has(.service-parallax-wrap) {
    align-items: stretch;
}

.sd-se-product__figure:has(.service-parallax-wrap) .service-parallax-wrap,
.sd-ls-product__figure:has(.service-parallax-wrap) .service-parallax-wrap,
.sd-lb-product__figure:has(.service-parallax-wrap) .service-parallax-wrap {
    flex: 1;
    align-self: stretch;
    width: 100%;
    min-height: 0;
}

.sd-lb-intro__figure:has(.service-parallax-wrap) {
    display: flex;
}

.sd-lb-intro__figure:has(.service-parallax-wrap) .service-parallax-wrap {
    flex: 1;
    width: 100%;
}

/* ═══════════════════════════════════════
   Why Hotspot section
═══════════════════════════════════════ */
.why-hotspot__eyebrow {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #1e5983;
    margin: 0 0 0.5rem;
}

.why-hotspot__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    width: 100%;
}

@media (max-width: 900px) {
    .why-hotspot__grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-inline: auto;
    }
}

/* ── Individual card ── */
.why-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    padding: 2rem 1.6rem 1.8rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--site-card-border);
    box-shadow: var(--site-card-shadow);
    overflow: hidden;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
    border-color: rgba(110, 172, 208, 0.48);
    transform: translateY(-4px);
    box-shadow: var(--site-card-shadow-hover);
}

/* Centre card — highlighted / "lit" */
.why-card--accent {
    background: rgba(30, 89, 131, 0.07);
    border-color: rgba(30, 89, 131, 0.28);
}

.why-card--accent:hover {
    border-color: rgba(52, 118, 162, 0.6);
}

/* Spotlight cone effect inside card */
.why-card__spotlight {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 160px;
    pointer-events: none;
    background: radial-gradient(
        ellipse 70% 100% at 50% 0%,
        rgba(30, 89, 131, 0.14) 0%,
        rgba(30, 89, 131, 0.04) 55%,
        transparent 78%
    );
    animation: why-spot 6s ease-in-out infinite alternate;
}

.why-card__spotlight--bright {
    background: radial-gradient(
        ellipse 70% 100% at 50% 0%,
        rgba(74, 138, 184, 0.32) 0%,
        rgba(30, 89, 131, 0.10) 50%,
        transparent 72%
    );
}

@keyframes why-spot {
    0%   { opacity: 0.6; transform: translateX(-50%) scaleX(0.92); }
    100% { opacity: 1;   transform: translateX(-50%) scaleX(1.08); }
}

/* Icon */
.why-card__icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 12px;
    background: rgba(30, 89, 131, 0.14);
    border: 1px solid rgba(30, 89, 131, 0.35);
    flex-shrink: 0;
}

.why-card--accent .why-card__icon-wrap {
    background: rgba(30, 89, 131, 0.22);
    border-color: rgba(30, 89, 131, 0.55);
}

.why-card__icon {
    font-size: 1.05rem;
    color: #1e5983;
}

/* Number badge */
.why-card__num {
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(30, 89, 131, 0.6);
    margin-top: 0.25rem;
}

/* Title */
.why-card__title {
    font-size: 1.08rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
}

/* Description */
.why-card__desc {
    font-size: 0.88rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.58);
    margin: 0;
    flex: 1;
}

/* CTA link */
.why-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(30, 89, 131, 0.75);
    text-decoration: none;
    margin-top: auto;
    transition: color 0.2s ease, gap 0.2s ease;
}

.why-card__link:hover {
    color: #1e5983;
    gap: 0.65rem;
}

.why-card__link i {
    font-size: 0.68rem;
    transition: transform 0.2s ease;
}

.why-card__link:hover i {
    transform: translateX(3px);
}

/*
  Home runs gsap.js + ScrollTrigger to reveal .fadeup / SplitText for .chars.
  Inner pages (e.g. About) do not load that bundle — style.css leaves .fadeup at
  opacity:0, so the block looked like only “Why” + subtitle.
*/
.page-about .why-hotspot .fadeup {
    opacity: 1;
    transform: none;
}

/* ═══════════════════════════════════════
   Page sections below hero
═══════════════════════════════════════ */
.card-item figure {
    min-height: 220px;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(
        160deg,
        rgba(30, 89, 131, 0.12) 0%,
        rgba(20, 20, 24, 0.9) 45%,
        #0a0a0a 100%
    );
}

.card-item figure img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
}

.card-feature.animated-gradient {
    background-color: rgba(18, 18, 22, 0.92) !important;
    background-image:
        radial-gradient(ellipse 120% 80% at 100% 100%, rgba(30, 89, 131, 0.22) 0%, transparent 55%),
        radial-gradient(ellipse 100% 70% at 0% 0%, rgba(255, 255, 255, 0.06) 0%, transparent 50%) !important;
    border: 1px solid var(--site-card-border) !important;
    box-shadow: var(--site-card-shadow) !important;
    animation: lighting-shift 14s ease-in-out infinite alternate !important;
}

.home-deep-cta {
    max-width: 680px;
    padding: 2.5rem 2rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 24px 64px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(30, 89, 131, 0.08);
    background: rgba(8, 8, 10, 0.82);
    background-image: linear-gradient(180deg, rgba(30, 89, 131, 0.1) 0%, transparent 42%);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

/* ── Quick CTA form ── */
.cta-quick-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 0.75rem;
    align-items: start;
}

@media (max-width: 680px) {
    .cta-quick-form__row {
        grid-template-columns: 1fr;
    }
    .home-deep-cta {
        padding: 1.75rem 1.25rem;
    }
}

.cta-quick-form__field {
    display: flex;
    flex-direction: column;
}

.cta-quick-form__input {
    width: 100%;
    padding: 0.72rem 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 0.88rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

.cta-quick-form__input::placeholder {
    color: rgba(255, 255, 255, 0.38);
}

.cta-quick-form__input:focus {
    border-color: rgba(30, 89, 131, 0.6);
    box-shadow: 0 0 0 3px rgba(30, 89, 131, 0.12);
    background: rgba(255, 255, 255, 0.09);
}

/* Bootstrap validation states */
.was-validated .cta-quick-form__input:valid {
    border-color: rgba(100, 220, 150, 0.5);
}

.was-validated .cta-quick-form__input:invalid {
    border-color: rgba(255, 80, 80, 0.6);
}

.cta-quick-form__input.is-invalid {
    border-color: rgba(255, 80, 80, 0.6) !important;
}

.invalid-feedback {
    font-size: 0.72rem;
    color: rgba(255, 120, 120, 0.88);
    margin-top: 0.3rem;
    padding-left: 0.25rem;
}

.cta-quick-form__btn {
    white-space: nowrap;
    align-self: start;
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.cta-quick-form__note {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 0;
}

.cta-quick-form__about-link {
    color: rgba(30, 89, 131, 0.85);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}

.cta-quick-form__about-link:hover {
    color: #1e5983;
}

/* Home — service stat strip (LED / Lighting / Sound) — white cards, black type */
.home-service-stats {
    padding-top: clamp(2rem, 5vw, 3.25rem);
    padding-bottom: clamp(2rem, 5vw, 3.25rem);
    padding-left: clamp(1.5rem, 6vw, 4.5rem);
    padding-right: clamp(1.5rem, 6vw, 4.5rem);
}

.home-service-stats__heading {
    font-size: clamp(1.25rem, 2.85vw, 1.75rem);
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.25;
    margin: 0;
    color: #0a0a0a !important;
}

/*
 * Global `.text-accent` uses white-heavy gradient → invisible on white cards.
 * Headings keep the same sweep motion (sound-light-sweep) using only dark stops.
 * Icons / rings stay solid (#0a0a0a) so Font Awesome & SVG strokes don’t disappear.
 */
.home-service-stats .home-service-stats__heading.text-accent {
    background: linear-gradient(
        110deg,
        #0a0a0a 0%,
        #1a1a1a 35%,
        #1e5983 50%,
        #154a6d 65%,
        #0a0a0a 100%
    ) !important;
    background-size: 180% auto !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
    animation: sound-light-sweep 6s ease-in-out infinite alternate !important;
}

@media (prefers-reduced-motion: reduce) {
    .home-service-stats .home-service-stats__heading.text-accent {
        animation: none !important;
        background: none !important;
        background-size: auto !important;
        -webkit-background-clip: unset !important;
        background-clip: unset !important;
        -webkit-text-fill-color: #0a0a0a !important;
        color: #0a0a0a !important;
    }
}

.home-service-stats .home-service-stats__icon-ring.text-accent,
.home-service-stats .home-service-stats__icon-ring .text-accent,
.home-service-stats .home-service-stats__icon-ring i.text-accent {
    background: none !important;
    background-size: auto !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    -webkit-text-fill-color: #0a0a0a !important;
    color: #0a0a0a !important;
    animation: none !important;
}

.home-service-stats__spotlight-svg {
    display: block;
    width: 2rem;
    height: 2rem;
    color: #0a0a0a;
}

.home-service-stats__card-link {
    border-radius: 16px;
}

.home-service-stats__card-link:hover .home-stat-card,
.home-service-stats__card-link:focus-visible .home-stat-card {
    transform: translateY(-2px);
}

.home-service-stats__card-link:focus-visible {
    outline: 2px solid rgba(0, 0, 0, 0.35);
    outline-offset: 3px;
}

.home-service-stats .home-stat-card {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    border-radius: 18px;
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.14) !important;
    transition: box-shadow 0.35s ease, border-color 0.35s ease, transform 0.28s ease;
}

.home-service-stats .home-stat-card:hover {
    border-color: rgba(0, 0, 0, 0.18) !important;
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.18) !important;
}

.home-service-stats .home-service-stats__icon-ring {
    width: 5.25rem;
    height: 5.25rem;
    flex-shrink: 0;
    border-color: rgba(0, 0, 0, 0.14) !important;
    background: rgba(0, 0, 0, 0.02);
    color: #0a0a0a;
}

.home-service-stats .home-service-stats__icon-ring i {
    font-size: 2rem;
    line-height: 1;
    color: #0a0a0a !important;
}

.home-service-stats .home-service-stats__icon-ring.text-accent,
.home-service-stats .home-service-stats__icon-ring .text-accent {
    color: #0a0a0a !important;
}

@media (min-width: 992px) {
    .home-service-stats .home-service-stats__icon-ring {
        width: 6rem;
        height: 6rem;
    }

    .home-service-stats .home-service-stats__icon-ring i {
        font-size: 2.35rem;
    }

    .home-service-stats__spotlight-svg {
        width: 2.35rem;
        height: 2.35rem;
    }

    .home-service-stats__heading {
        font-size: clamp(1.45rem, 2.4vw, 1.95rem);
    }
}

@media (min-width: 1200px) {
    .home-service-stats .card-body {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
}

.home-stat-card {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid var(--site-card-border) !important;
    border-radius: 16px;
    box-shadow: var(--site-card-shadow) !important;
    transition: box-shadow 0.35s ease, border-color 0.35s ease, transform 0.28s ease;
}

.home-stat-card:hover {
    border-color: rgba(110, 172, 208, 0.45) !important;
    box-shadow: var(--site-card-shadow-hover) !important;
}

.home-stat-card .text-secondary {
    color: rgba(255, 255, 255, 0.55) !important;
}

/* Home — four-up metrics strip (before Cyber Track) */
.section.home-metrics-section {
    padding-top: clamp(1.5rem, 4vw, 2.5rem);
    padding-bottom: clamp(1.5rem, 4vw, 2.5rem);
    padding-left: 0;
    padding-right: 0;
    background: #030303;
}

.home-metric-card {
    min-height: 100%;
}

.home-metric__value {
    font-size: clamp(1.85rem, 4.2vw, 2.65rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: rgba(255, 255, 255, 0.96);
    margin: 0;
}

.home-metric__value--cert {
    font-weight: 800;
}

.home-metric__num {
    color: rgba(255, 255, 255, 0.98);
}

.home-metric__suffix {
    color: #1e5983;
    font-weight: 800;
}

.home-metric__suffix--blend {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, #1e5983 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.home-metric__label {
    font-size: clamp(0.88rem, 1.35vw, 0.98rem);
    line-height: 1.45;
}

.home-highlight-panel {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    background:
        linear-gradient(160deg, rgba(30, 89, 131, 0.14) 0%, rgba(8, 8, 10, 0.92) 45%, #050506 100%),
        url("../image/img17.jpg") center / cover no-repeat;
}

.home-highlight-panel__inner {
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, rgba(3, 3, 3, 0.25) 0%, rgba(3, 3, 3, 0.88) 100%);
}

.home-highlight-panel .badge.bg-accent-primary {
    background: rgba(30, 89, 131, 0.18) !important;
    color: #ff9a5c !important;
    border: 1px solid rgba(30, 89, 131, 0.4);
}

.home-service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--site-card-border);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    height: 100%;
    box-shadow: var(--site-card-shadow);
    transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.home-service-card:hover {
    border-color: rgba(110, 172, 208, 0.48);
    transform: translateY(-3px);
    box-shadow: var(--site-card-shadow-hover);
}

.home-service-card i {
    font-size: 2rem;
    color: #1e5983;
}

.home-testimonial {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--site-card-border);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    box-shadow: var(--site-card-shadow);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.home-testimonial:hover {
    border-color: rgba(110, 172, 208, 0.45);
    box-shadow: var(--site-card-shadow-hover);
}

.home-testimonial__quote {
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
}

.home-testimonial cite {
    font-style: normal;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ════════════════════════════════════════════
   Site-wide card elevation (this file loads last)
════════════════════════════════════════════ */

.card-blog,
.card-about,
.card-team,
.card-item,
.card-counter,
.card-404,
.glass-box {
    border: 1px solid var(--site-card-border) !important;
    box-shadow: var(--site-card-shadow) !important;
    transition: box-shadow 0.45s ease, border-color 0.45s ease, transform 0.45s ease;
}

.card-blog:hover,
.card-about:hover,
.card-team:hover,
.card-item:hover,
.card-counter:hover,
.glass-box:hover {
    border-color: rgba(110, 172, 208, 0.52) !important;
    box-shadow: var(--site-card-shadow-hover) !important;
}

.card-pricing {
    border: 1px solid var(--site-card-border) !important;
    box-shadow: var(--site-card-shadow) !important;
    transition: box-shadow 0.45s ease, border-color 0.45s ease;
}

.card-pricing:hover.animated-gradient,
.card-pricing.active.animated-gradient {
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.45),
        0 22px 60px rgba(0, 0, 0, 0.55),
        0 0 80px rgba(30, 89, 131, 0.32),
        inset 0 0 28px rgba(30, 89, 131, 0.06),
        inset 0 0 45px rgba(192, 132, 252, 0.12) !important;
}

.card-contact {
    border: 1px solid var(--site-card-border) !important;
    box-shadow: var(--site-card-shadow) !important;
    transition: box-shadow 0.45s ease, border-color 0.45s ease;
}

a:has(.card-contact):hover .card-contact,
.card-contact:hover {
    border-color: rgba(110, 172, 208, 0.52) !important;
    box-shadow: var(--site-card-shadow-hover) !important;
}

/* Service / detail pages — stacked “industries” uses .stack-container rule in theme */
.card-content {
    border: 1px solid var(--site-card-border) !important;
    box-shadow: var(--site-card-shadow) !important;
}

.card-feature:not(.animated-gradient) {
    border: 1px solid var(--site-card-border) !important;
    box-shadow: var(--site-card-shadow) !important;
    transition: box-shadow 0.45s ease, border-color 0.45s ease;
}

.card-feature:not(.animated-gradient):hover {
    box-shadow: var(--site-card-shadow-hover) !important;
}

.card-feature:hover.animated-gradient,
.card-feature.active.animated-gradient {
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.45),
        0 22px 60px rgba(0, 0, 0, 0.55),
        0 0 80px rgba(30, 89, 131, 0.32),
        inset 0 0 40px rgba(30, 89, 131, 0.1) !important;
}

.card-image {
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.35),
        0 10px 32px rgba(0, 0, 0, 0.45),
        0 0 44px rgba(30, 89, 131, 0.18) !important;
    transition: box-shadow 0.45s ease, border-color 0.45s ease;
}

.card-image:hover {
    box-shadow:
        0 0 0 1px rgba(80, 145, 188, 0.35),
        0 14px 40px rgba(0, 0, 0, 0.5),
        0 0 56px rgba(30, 89, 131, 0.26),
        inset 0 0 36px rgba(192, 132, 252, 0.1) !important;
}

/* Case studies index — listing cards (shadow visible without loading extras elsewhere) */
.card-blog.case-study-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(80, 145, 188, 0.32) !important;
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.42),
        0 18px 52px rgba(0, 0, 0, 0.52),
        0 0 68px rgba(30, 89, 131, 0.26) !important;
    transition: box-shadow 0.4s ease, border-color 0.4s ease, transform 0.4s ease;
}

.card-blog.case-study-card:hover {
    border-color: rgba(110, 172, 208, 0.52) !important;
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.45),
        0 26px 72px rgba(0, 0, 0, 0.58),
        0 0 88px rgba(30, 89, 131, 0.34) !important;
    transform: translateY(-3px);
}

/* Blog index — composite card (image + overlapping panel) */
.card.blog.blog-list-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(80, 145, 188, 0.32) !important;
    background: rgba(10, 10, 12, 0.55) !important;
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.42),
        0 18px 52px rgba(0, 0, 0, 0.52),
        0 0 68px rgba(30, 89, 131, 0.26) !important;
    transition: box-shadow 0.4s ease, border-color 0.4s ease, transform 0.4s ease;
}

.card.blog.blog-list-card:hover {
    border-color: rgba(110, 172, 208, 0.52) !important;
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.45),
        0 26px 72px rgba(0, 0, 0, 0.58),
        0 0 88px rgba(30, 89, 131, 0.34) !important;
    transform: translateY(-3px);
}

.card.blog.blog-list-card a {
    text-decoration: none;
    color: inherit;
}

.card.blog.blog-list-card .card-blog {
    margin-top: -2rem;
    position: relative;
    z-index: 1;
    border-radius: 16px 16px 0 0;
    border: none !important;
    box-shadow: none !important;
}

.card.blog.blog-list-card .card-blog:hover {
    border: none !important;
    box-shadow: none !important;
}

/* Footer — Follow Hotspot + social row */
.footer-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
}

@media (min-width: 1200px) {
    .footer-social {
        align-items: flex-end;
    }
}

.footer-social__title {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.48);
}

/* ═══════════════════════════════════════
   Home — inline contact CTA (same buttons as floating FAB, horizontal row)
═══════════════════════════════════════ */
.section.home-contact-cta {
    padding-top: clamp(2rem, 5vw, 3.5rem);
    padding-bottom: clamp(2rem, 5vw, 3.5rem);
    padding-left: 0;
    padding-right: 0;
    background: linear-gradient(180deg, rgba(3, 3, 3, 0.4) 0%, rgba(8, 12, 18, 0.92) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.home-contact-cta__title {
    font-weight: 700;
    letter-spacing: -0.02em;
}

.home-contact-cta__lead {
    font-size: clamp(0.9rem, 1.35vw, 1rem);
    line-height: 1.6;
}

/* Row of circular actions — not inside .floating-cta, so no absolute / hide rules */
.home-contact-cta__actions {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 0.25rem;
}

@media (min-width: 576px) {
    .home-contact-cta__actions {
        gap: 1.15rem;
    }
}

/* Larger tap targets / icons than the floating FAB (section-only) */
.home-contact-cta__actions .floating-cta__action {
    width: 4.125rem;
    height: 4.125rem;
    font-size: 1.28rem;
}

.home-contact-cta__actions .floating-cta__action--whatsapp {
    font-size: 1.48rem;
}

@media (min-width: 768px) {
    .home-contact-cta__actions .floating-cta__action {
        width: 4.65rem;
        height: 4.65rem;
        font-size: 1.42rem;
    }

    .home-contact-cta__actions .floating-cta__action--whatsapp {
        font-size: 1.65rem;
    }
}

/* ═══════════════════════════════════════
   Floating CTA — FAB opens Proposal + Plan event (bottom left)
═══════════════════════════════════════ */
.floating-cta {
    position: fixed;
    left: max(0.75rem, env(safe-area-inset-left));
    bottom: max(0.75rem, env(safe-area-inset-bottom));
    z-index: 1040;
    pointer-events: none;
}

.floating-cta__inner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    pointer-events: auto;
}

/* Expanded actions — stacked above the main button */
.floating-cta__actions {
    position: absolute;
    bottom: calc(100% + 0.6rem);
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    align-items: flex-start;
    padding-bottom: 0.15rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    pointer-events: none;
    transition:
        opacity 0.22s ease,
        visibility 0.22s ease,
        transform 0.24s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.floating-cta--open .floating-cta__actions {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.floating-cta__action {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    background: rgba(12, 14, 18, 0.94);
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.05rem;
    cursor: pointer;
    text-decoration: none;
    box-shadow:
        0 0 0 1px rgba(30, 89, 131, 0.22),
        0 8px 28px rgba(0, 0, 0, 0.5),
        0 0 24px rgba(30, 89, 131, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.floating-cta__action:hover,
.floating-cta__action:focus-visible {
    color: #fff;
    transform: scale(1.06);
    border-color: rgba(110, 172, 208, 0.45);
    box-shadow:
        0 0 0 1px rgba(52, 118, 162, 0.35),
        0 12px 36px rgba(0, 0, 0, 0.55);
    outline: none;
}

.floating-cta__action--whatsapp {
    border-color: rgba(37, 211, 102, 0.5);
    background: linear-gradient(145deg, rgba(37, 211, 102, 0.98) 0%, rgba(18, 140, 126, 1) 100%);
    color: #fff;
    font-size: 1.2rem;
}

.floating-cta__action--proposal,
.floating-cta__action--event {
    color: #7eb8d9;
}

/* Main toggle — chat icon / close */
.floating-cta__toggle {
    position: relative;
    width: 3.5rem;
    height: 3.5rem;
    padding: 0;
    border: 1px solid rgba(110, 172, 208, 0.42);
    border-radius: 50%;
    background: linear-gradient(160deg, rgba(30, 89, 131, 0.95) 0%, rgba(12, 18, 28, 0.98) 100%);
    color: #fff;
    cursor: pointer;
    box-shadow:
        0 0 0 2px rgba(30, 89, 131, 0.35),
        0 12px 40px rgba(0, 0, 0, 0.55),
        0 0 36px rgba(30, 89, 131, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-cta__toggle:hover,
.floating-cta__toggle:focus-visible {
    transform: scale(1.05);
    box-shadow:
        0 0 0 2px rgba(80, 145, 188, 0.5),
        0 16px 48px rgba(0, 0, 0, 0.58),
        0 0 48px rgba(30, 89, 131, 0.35);
    outline: none;
}

.floating-cta--open .floating-cta__toggle {
    background: rgba(22, 24, 30, 0.96);
    border-color: rgba(255, 255, 255, 0.2);
}

.floating-cta__toggle-face {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    transition: opacity 0.18s ease;
}

.floating-cta__toggle-face--close {
    opacity: 0;
    pointer-events: none;
}

.floating-cta--open .floating-cta__toggle-face--open {
    opacity: 0;
    pointer-events: none;
}

.floating-cta--open .floating-cta__toggle-face--close {
    opacity: 1;
    pointer-events: auto;
}

@media (prefers-reduced-motion: reduce) {
    .floating-cta__actions {
        transition: opacity 0.15s ease, visibility 0.15s ease;
        transform: none;
    }

    .floating-cta--open .floating-cta__actions {
        transform: none;
    }
}

/* WhatsApp — fixed bottom-right (outside FAB popup) */
.floating-whatsapp {
    position: fixed;
    right: max(0.75rem, env(safe-area-inset-right));
    bottom: max(0.75rem, env(safe-area-inset-bottom));
    z-index: 1040;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border: 1px solid rgba(37, 211, 102, 0.55);
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(37, 211, 102, 0.98) 0%, rgba(18, 140, 126, 1) 100%);
    color: #fff;
    font-size: 1.45rem;
    text-decoration: none;
    box-shadow:
        0 0 0 2px rgba(37, 211, 102, 0.25),
        0 12px 40px rgba(0, 0, 0, 0.5),
        0 0 32px rgba(37, 211, 102, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
    color: #fff;
    transform: scale(1.06);
    box-shadow:
        0 0 0 2px rgba(37, 211, 102, 0.45),
        0 16px 48px rgba(0, 0, 0, 0.55),
        0 0 40px rgba(37, 211, 102, 0.35);
    outline: none;
}

.floating-cta-toast-wrap {
    z-index: 1090;
}

/* Bootstrap modals + long forms: flex min-height + touch scroll (ScrollSmoother / wheel capture) */
.floating-cta-modal-root .modal-dialog-scrollable {
    max-height: min(92dvh, calc(100% - 1rem));
}

.floating-cta-modal-root .modal-dialog-scrollable .modal-content {
    min-height: 0;
    max-height: 100%;
}

.floating-cta-modal-root .modal-dialog-scrollable .modal-body {
    min-height: 0;
    flex: 1 1 auto;
    overflow-y: auto !important;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    max-height: min(75dvh, calc(100dvh - 10rem));
    touch-action: pan-y;
}

.floating-cta-form--plan-event {
    min-height: 0;
}

.floating-cta-modal .floating-cta-modal__field {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #f0f0f0;
}

.floating-cta-modal .floating-cta-modal__field:focus {
    border-color: rgba(30, 89, 131, 0.65);
    box-shadow: 0 0 0 2px rgba(30, 89, 131, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.floating-cta-modal .form-label {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.88rem;
}

.floating-cta-services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.35rem 0.75rem;
    max-height: min(220px, 38vh);
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0.5rem 0.65rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    touch-action: pan-y;
}

@media (min-width: 576px) {
    .floating-cta-services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.floating-cta-service-check {
    margin-bottom: 0 !important;
}

.floating-cta-service-check .form-check-input {
    margin-top: 0.35em;
    border-color: rgba(255, 255, 255, 0.35);
    background-color: rgba(255, 255, 255, 0.06);
}

.floating-cta-service-check .form-check-input:checked {
    background-color: #1e5983;
    border-color: #1e5983;
}

.floating-cta-service-check .form-check-label {
    font-size: 0.82rem;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.82);
}

/* Navbar — Experience dropdown (six main categories) */
.dropdown-menu-experience {
    min-width: min(100vw - 2rem, 22rem);
    max-width: 24rem;
}

/* ═══════════════════════════════════════
   Experience — category page (sub-types grid)
═══════════════════════════════════════ */
.experience-category-page .experience-category-hero {
    padding-top: clamp(5.5rem, 12vw, 7.5rem);
    padding-bottom: clamp(2.25rem, 5vw, 3.5rem);
    /* Match navbar horizontal inset (.navbar.mx-3 / .mx-xl-5), override .section’s 2em sides */
    padding-left: 1rem;
    padding-right: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 1200px) {
    .experience-category-page .experience-category-hero {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

.experience-category-page .experience-category-hero__inner.r-container {
    max-width: 52rem;
    /* Left-align with nav; plain .r-container uses margin:auto and centers this block */
    margin-left: 0;
    margin-right: auto;
}

.experience-category-hero__breadcrumb {
    margin-bottom: 1.25rem;
}

.experience-category-hero__eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin: 0 0 0.65rem;
}

.experience-category-hero__title {
    font-size: clamp(1.75rem, 4vw, 2.35rem);
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 1rem;
    letter-spacing: -0.02em;
}

.experience-category-hero__lead {
    font-size: clamp(0.95rem, 1.6vw, 1.08rem);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.72);
    max-width: 40rem;
    margin: 0;
}

.experience-category-subtypes {
    padding-top: clamp(2.5rem, 5vw, 3.5rem);
    padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.experience-category-subtypes__head {
    margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
    max-width: 40rem;
}

.experience-category-subtypes__heading {
    font-size: clamp(1.15rem, 2.2vw, 1.35rem);
    font-weight: 700;
    margin: 0 0 0.5rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.88);
}

.experience-category-subtypes__sub {
    font-size: 0.95rem;
    line-height: 1.55;
}

/* Sub-type cards: real grid (Bootstrap row-cols is not loaded on this site) */
.experience-category-subtypes__grid {
    display: grid;
    gap: clamp(1rem, 2.5vw, 1.5rem);
    grid-template-columns: 1fr;
}

.experience-category-subtypes__cell {
    min-width: 0;
    display: flex;
}

@media (min-width: 520px) {
    .experience-category-subtypes__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 900px) {
    .experience-category-subtypes__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1320px) {
    .experience-category-subtypes__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.exp-subtype-card {
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--site-card-border, rgba(80, 145, 188, 0.3));
    box-shadow: var(--site-card-shadow, 0 14px 44px rgba(0, 0, 0, 0.45));
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    min-height: 100%;
}

.exp-subtype-card:hover,
.exp-subtype-card:focus-visible {
    transform: translateY(-4px);
    border-color: rgba(110, 172, 208, 0.45);
    box-shadow: var(--site-card-shadow-hover, 0 22px 60px rgba(0, 0, 0, 0.55));
    outline: none;
}

.exp-subtype-card__media {
    position: relative;
    aspect-ratio: 16 / 10;
    background: #0a0a0c;
}

.exp-subtype-card__media .service-parallax-wrap,
.exp-subtype-card__media .concept-img-wrap {
    height: 100%;
}

.exp-subtype-card__media img {
    height: 100%;
    object-fit: cover;
}

.exp-subtype-card__body {
    padding: 1.25rem 1.35rem 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    flex: 1 1 auto;
}

.exp-subtype-card__title {
    font-size: clamp(1.02rem, 1.8vw, 1.18rem);
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    color: #fff;
}

.exp-subtype-card__meta {
    font-size: 0.82rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.55);
}

.exp-subtype-card__link-inline {
    color: rgba(30, 89, 131, 0.95);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.exp-subtype-card__link-inline:hover {
    color: #fff;
}

.exp-subtype-card__cta {
    margin-top: auto;
    padding-top: 0.35rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(30, 89, 131, 0.95);
}

.exp-subtype-card:hover .exp-subtype-card__cta {
    color: #fff;
}

/* ═══════════════════════════════════════
   Projects — listing page grid (old-style cards)
═══════════════════════════════════════ */
.projects-page__hero {
    padding-top: clamp(5.5rem, 12vw, 7.5rem);
    padding-bottom: clamp(2.25rem, 5vw, 3.5rem);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.projects-page__hero-inner {
    max-width: 52rem;
}

.projects-page__title {
    font-size: clamp(1.75rem, 4vw, 2.35rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin: 0 0 1rem;
}

.projects-page__lead {
    font-size: clamp(0.95rem, 1.6vw, 1.08rem);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.72);
    max-width: 40rem;
    margin: 0;
}

.projects-page__listing {
    padding-top: clamp(2.5rem, 5vw, 3.5rem);
    padding-bottom: clamp(2.75rem, 5vw, 4rem);
}

.projects-page__grid {
    display: grid;
    gap: clamp(1rem, 2.5vw, 1.5rem);
    grid-template-columns: 1fr;
}

@media (min-width: 520px) {
    .projects-page__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 900px) {
    .projects-page__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1320px) {
    .projects-page__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}
