/* ═══════════════════════════════════════════════════════
   3D LANDING TEMPLATE — DESIGN TOKENS
   Customize these variables to match your brand.
   ═══════════════════════════════════════════════════════ */
:root {
    /* Palette — Primary */
    --clr-bg: #000000;
    --clr-surface: #0a0a0a;
    --clr-text: #ffffff;
    --clr-muted: #888888;

    /* Palette — Accent (change these to your brand color!) */
    --clr-accent: #EA0A2A;
    /* red — signature     */
    --clr-accent-warm: #FF1A3A;
    /* lighter shade for hovers    */
    --clr-status: #22C55E;
    /* green "Online" indicator    */

    /* Palette — UI */
    --clr-border-subtle: rgba(255, 255, 255, .06);
    --clr-border-medium: rgba(255, 255, 255, .25);
    --clr-surface-overlay: rgba(0, 0, 0, .6);

    /* Typography */
    --ff-display: 'Outfit', sans-serif;
    --ff-body: 'Inter', sans-serif;

    /* Sizing */
    --headline-size: clamp(3rem, 13vw, 10rem);
    --nav-height: 56px;

    /* Animation */
    --ease-out-expo: cubic-bezier(.16, 1, .3, 1);
}

/* ═══════════════════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════════════════ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--ff-body);
    background: var(--clr-bg);
    color: var(--clr-text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

/* ═══════════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════════ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(1.25rem, 3vw, 3rem);
    height: var(--nav-height);
    background: rgba(0, 0, 0, .6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    font-family: var(--ff-body);
    font-size: .75rem;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.nav__brand {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--ff-display);
    font-weight: 800;
    font-size: .85rem;
    letter-spacing: .15em;
}

.nav__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--clr-status);
    box-shadow: 0 0 8px var(--clr-status);
    display: inline-block;
}

.nav__links {
    display: flex;
    gap: 2rem;
}

.nav__links a {
    position: relative;
    color: var(--clr-muted);
    transition: color .3s;
}

.nav__links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--clr-accent);
    transition: width .35s var(--ease-out-expo);
}

.nav__links a:hover {
    color: var(--clr-text);
}

.nav__links a:hover::after {
    width: 100%;
}

.nav__cta {
    display: flex;
    align-items: center;
    gap: .35rem;
    color: var(--clr-muted);
    transition: color .3s;
}

.nav__cta:hover {
    color: var(--clr-text);
}

.nav__cta-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .25);
    display: grid;
    place-items: center;
    transition: border-color .3s, transform .3s var(--ease-out-expo);
}

.nav__cta:hover .nav__cta-icon {
    border-color: var(--clr-accent);
    transform: rotate(45deg);
}

/* ═══════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════ */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: calc(var(--nav-height) + 2rem) clamp(1.25rem, 3vw, 3rem) 0;
    overflow: hidden;
}

/* — Status Badge ------------------------------------------------ */
.hero__status {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .4rem 1rem;
    border-radius: 100px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--clr-border-subtle);
    font-family: var(--ff-body);
    font-size: .78rem;
    font-weight: 500;
    color: var(--clr-text);
    letter-spacing: .08em;
    margin-bottom: 2rem;
    z-index: 5;
}

.hero__status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--clr-status);
    box-shadow: 0 0 6px var(--clr-status);
    display: inline-block;
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .5;
    }
}

/* — Accent word (colored) --------------------------------------- */
.hero__word--accent {
    color: var(--clr-accent);
}

/* — Giant headline --------------------------------------------- */
.hero__headline {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    line-height: .88;
    pointer-events: none;
    user-select: none;
}

.hero__row {
    display: flex;
    gap: .04em;
}

.hero__row--1 {
    justify-content: flex-start;
}

.hero__row--2 {
    justify-content: center;
}

.hero__row--3 {
    justify-content: flex-end;
}

.hero__word {
    font-family: var(--ff-display);
    font-weight: 900;
    font-size: var(--headline-size);
    text-transform: uppercase;
    letter-spacing: -.04em;
}

.hero__word-logo {
    height: calc(var(--headline-size) * 0.75);
    width: auto;
    object-fit: contain;
}

.hero__word--fill {
    color: var(--clr-text);
}

.hero__word--outline {
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, .45);
    text-stroke: 2px rgba(255, 255, 255, .45);
}

/* — Spline 3D container — true full-screen ---------------------- */
.hero__3d-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    pointer-events: auto;
    /* Spline needs mouse events for interactive behaviour */
}

.hero__3d-container canvas {
    width: 100vw;
    height: 100vh;
    display: block;
    opacity: 0;
    transition: opacity .8s ease;
}

/* — Subcopy ---------------------------------------------------- */
.hero__subcopy {
    position: absolute;
    right: clamp(1.25rem, 4vw, 4rem);
    bottom: clamp(7rem, 14vh, 12rem);
    z-index: 3;
    max-width: 550px;
    text-align: right;
}

.hero__tagline {
    font-family: var(--ff-body);
    font-size: clamp(.7rem, 1vw, .85rem);
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--clr-text);
    margin-bottom: 1.25rem;
}

.hero__desc {
    font-family: var(--ff-body);
    font-size: clamp(.6rem, .8vw, .72rem);
    font-weight: 400;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--clr-muted);
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════
   TRUST BAR
   ═══════════════════════════════════════════════════════ */
.trust {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem clamp(1.25rem, 3vw, 3rem) 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, .06);
    background: var(--clr-bg);
}

.trust__text {
    font-family: var(--ff-body);
    font-size: clamp(.65rem, .85vw, .78rem);
    font-weight: 500;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--clr-muted);
    margin-bottom: 2rem;
}

.trust__logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(2rem, 5vw, 5rem);
    width: 100%;
    max-width: 900px;
    flex-wrap: wrap;
}

.trust__logo-slot {
    font-family: var(--ff-display);
    font-weight: 800;
    font-size: clamp(1rem, 2vw, 1.5rem);
    letter-spacing: .15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .35);
    transition: color .3s;
    cursor: default;
}

.trust__logo-slot:hover {
    color: rgba(255, 255, 255, .6);
}

/* ═══════════════════════════════════════════════════════
   TESTIMONIALS — Stagger Card Carousel
   ═══════════════════════════════════════════════════════ */
.testimonials {
    position: relative;
    z-index: 10;
    padding: 5rem clamp(1.25rem, 3vw, 3rem) 3rem;
    background: transparent;
    overflow: hidden;
    pointer-events: none;
}

.testimonials__label {
    font-family: var(--ff-body);
    font-size: clamp(.65rem, .85vw, .78rem);
    font-weight: 500;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--clr-muted);
    text-align: center;
    margin-bottom: .75rem;
    pointer-events: auto;
}

.testimonials__heading {
    font-family: var(--ff-display);
    font-weight: 800;
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    letter-spacing: -.02em;
    text-transform: uppercase;
    text-align: center;
    color: var(--clr-text);
    margin-bottom: 3.5rem;
    pointer-events: auto;
}

.testimonials__heading--accent {
    color: var(--clr-accent);
}

/* — Carousel container ----------------------------------------- */
.testimonials__carousel {
    position: relative;
    width: 100%;
    height: 420px;
    margin: 0 auto;
    max-width: 1200px;
}

/* — Individual card -------------------------------------------- */
.testimonial-card {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 365px;
    height: 365px;
    padding: 2rem;
    
    /* Transforms mapped from JS */
    --card-tx: 0px;
    --card-ty: 0px;
    --card-rot: 0deg;
    --base-scale: 1;
    transform: translate(-50%, -50%) translateX(var(--card-tx)) translateY(var(--card-ty)) rotate(var(--card-rot)) scale(var(--base-scale));
    
    /* SOC HUD Styling */
    background: rgba(255, 255, 255, 0.85); /* White glass background */
    border: 1px solid rgba(234, 10, 42, 0.3);
    box-shadow: inset 0 0 15px rgba(234, 10, 42, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
    
    cursor: pointer;
    transition: all .5s var(--ease-out-expo);
    display: flex;
    flex-direction: column;
}

/* Scan-line overlay */
.testimonial-card::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.05),
        rgba(0, 0, 0, 0.05) 1px,
        transparent 1px,
        transparent 3px
    );
    opacity: 0.6;
}

.testimonial-card--center {
    z-index: 10;
    border-color: rgba(234, 10, 42, 0.8);
    box-shadow: 
        inset 0 0 25px rgba(234, 10, 42, 0.25), 
        0 0 20px rgba(234, 10, 42, 0.15),
        -100px 0 120px 20px rgba(0, 0, 0, 0.95),
        100px 0 120px 20px rgba(0, 0, 0, 0.95);
    background: rgba(255, 255, 255, 0.98); /* Solid white */
}

/* Hover States */
.testimonial-card:hover {
    transform: translate(-50%, -50%) translateX(var(--card-tx)) translateY(var(--card-ty)) rotate(var(--card-rot)) scale(calc(var(--base-scale) * 1.02)) !important;
    border-color: rgba(234, 10, 42, 1) !important;
    box-shadow: 
        inset 0 0 40px rgba(234, 10, 42, 0.4), 
        0 0 30px rgba(234, 10, 42, 0.3),
        -120px 0 150px 30px rgba(0, 0, 0, 1),
        120px 0 150px 30px rgba(0, 0, 0, 1) !important;
}

/* — Data Card contents ---------------------------------------------- */
.data-card__title {
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: clamp(1rem, 1.25vw, 1.3rem);
    color: var(--clr-accent);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0em;
}

.data-card__desc {
    font-family: var(--ff-body);
    font-size: 0.72rem;
    color: rgba(0, 0, 0, 0.55);
    line-height: 1.4;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: .75rem;
}

.data-card__list {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    flex: 1;
}

.data-card__row {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem;
    font-family: var(--ff-body);
    font-size: .85rem;
    border-radius: 2px;
    background: rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.data-card__bar {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: rgba(234, 10, 42, 0.15);
    border-right: 1px solid rgba(234, 10, 42, 0.4);
    box-shadow: 2px 0 10px rgba(234, 10, 42, 0.2);
    z-index: 0;
    width: 0;
    transition: width 0.5s var(--ease-out-expo);
}

.testimonial-card--center .data-card__bar {
    width: var(--bar-width, 0%);
    transition: width 1.5s var(--ease-out-expo);
}

.testimonial-card--center .data-card__row:nth-child(1) .data-card__bar { transition-delay: 0.1s; }
.testimonial-card--center .data-card__row:nth-child(2) .data-card__bar { transition-delay: 0.2s; }
.testimonial-card--center .data-card__row:nth-child(3) .data-card__bar { transition-delay: 0.3s; }
.testimonial-card--center .data-card__row:nth-child(4) .data-card__bar { transition-delay: 0.4s; }
.testimonial-card--center .data-card__row:nth-child(5) .data-card__bar { transition-delay: 0.5s; }

.data-card__content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.data-card__rank {
    color: rgba(0, 0, 0, 0.4);
    font-family: 'Courier New', Courier, monospace;
    width: 20px;
}

.data-card__key {
    color: #333;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 600;
}

.data-card__count {
    position: relative;
    z-index: 1;
    color: var(--clr-accent);
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    background: none;
}

/* — Navigation arrows ------------------------------------------ */
.testimonials__nav {
    display: flex;
    justify-content: center;
    gap: .5rem;
    margin-top: 2rem;
    pointer-events: auto;
}

.testimonials__btn {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    background: var(--clr-surface);
    border: 2px solid rgba(255, 255, 255, .1);
    color: var(--clr-text);
    cursor: pointer;
    transition: background .3s, border-color .3s, color .3s;
}

.testimonials__btn:hover {
    background: var(--clr-accent);
    border-color: var(--clr-accent);
    color: #fff;
}

.testimonials__btn:focus-visible {
    outline: 2px solid var(--clr-accent);
    outline-offset: 2px;
}

/* — Responsive card size --------------------------------------- */
@media (max-width: 640px) {
    .testimonial-card {
        width: 280px;
        height: 290px;
        padding: 1.5rem;
    }

    .testimonials__carousel {
        height: 350px;
    }
}

/* ═══════════════════════════════════════════════════════
   NEWS FEED
   ═══════════════════════════════════════════════════════ */
.news {
    position: relative;
    z-index: 10;
    padding: 5rem clamp(1.25rem, 3vw, 3rem) 3rem;
    background: transparent;
    pointer-events: none;
}

.news__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    pointer-events: auto;
}

.news-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 3px solid var(--clr-accent);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    cursor: pointer;
    transition: all 0.4s var(--ease-out-expo);
    text-decoration: none;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.news-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(234, 10, 42, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 0 15px rgba(234, 10, 42, 0.1);
}

.news-card__date {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.75rem;
    color: var(--clr-accent);
    font-weight: 700;
    letter-spacing: 0.05em;
}

.news-card__title {
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--clr-text);
    line-height: 1.35;
}

.news-card__snippet {
    font-family: var(--ff-body);
    font-size: 0.85rem;
    color: var(--clr-muted);
    line-height: 1.6;
    flex-grow: 1;
}

.news-card__link {
    font-family: var(--ff-body);
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: color 0.3s;
}

.news-card:hover .news-card__link {
    color: var(--clr-text);
}

.news-card__link svg {
    transition: transform 0.3s;
}

.news-card:hover .news-card__link svg {
    transform: translateX(4px);
}

/* ═══════════════════════════════════════════════════════
   CONTACT — Card with Form
   ═══════════════════════════════════════════════════════ */
.contact {
    position: relative;
    z-index: 10;
    padding: 2rem clamp(1.25rem, 3vw, 3rem) 4rem;
    background: transparent;
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.contact__card {
    position: relative;
    display: grid;
    grid-template-columns: 2fr 1fr;
    width: 100%;
    max-width: 960px;
    background: var(--clr-surface);
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 4px 40px rgba(0, 0, 0, .4);
    pointer-events: auto;
}

/* Corner plus signs */
.contact__plus {
    position: absolute;
    font-family: var(--ff-body);
    font-size: 1.4rem;
    font-weight: 300;
    color: rgba(255, 255, 255, .25);
    line-height: 1;
    pointer-events: none;
    z-index: 2;
}

.contact__plus--tl {
    top: -14px;
    left: -14px;
}

.contact__plus--tr {
    top: -14px;
    right: -14px;
}

.contact__plus--bl {
    bottom: -14px;
    left: -14px;
}

.contact__plus--br {
    bottom: -14px;
    right: -14px;
}

/* — Left: Info area -------------------------------------------- */
.contact__info {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact__title {
    font-family: var(--ff-display);
    font-weight: 800;
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    letter-spacing: -.02em;
    color: var(--clr-text);
}

.contact__title--accent {
    color: var(--clr-accent);
}

.contact__desc {
    font-family: var(--ff-body);
    font-size: clamp(.85rem, 1vw, 1rem);
    color: var(--clr-muted);
    line-height: 1.65;
    max-width: 520px;
}

.contact__details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: .5rem;
}

.contact__detail {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .75rem 0;
}

.contact__detail-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .05);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    color: var(--clr-text);
}

.contact__detail-label {
    font-family: var(--ff-body);
    font-weight: 500;
    font-size: .9rem;
    color: var(--clr-text);
}

.contact__detail-value {
    font-family: var(--ff-body);
    font-size: .75rem;
    color: var(--clr-muted);
    margin-top: 2px;
}

/* — Right: Form area ------------------------------------------- */
.contact__form-wrap {
    display: flex;
    align-items: center;
    padding: 2rem;
    border-left: 1px solid rgba(255, 255, 255, .08);
    background: rgba(255, 255, 255, .02);
}

.contact__form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact__field {
    display: flex;
    flex-direction: column;
    gap: .4rem;
}

.contact__label {
    font-family: var(--ff-body);
    font-size: .8rem;
    font-weight: 500;
    color: var(--clr-text);
    letter-spacing: .04em;
}

.contact__input,
.contact__textarea {
    width: 100%;
    padding: .65rem .85rem;
    font-family: var(--ff-body);
    font-size: .85rem;
    color: var(--clr-text);
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 6px;
    outline: none;
    transition: border-color .3s, box-shadow .3s;
}

.contact__input::placeholder,
.contact__textarea::placeholder {
    color: rgba(255, 255, 255, .2);
}

.contact__input:focus,
.contact__textarea:focus {
    border-color: var(--clr-accent);
    box-shadow: 0 0 0 3px rgba(234, 10, 42, .15);
}

.contact__textarea {
    resize: vertical;
    min-height: 80px;
}

.contact__submit {
    width: 100%;
    padding: .75rem;
    font-family: var(--ff-body);
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #fff;
    background: var(--clr-accent);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background .3s, transform .15s;
}

.contact__submit:hover {
    background: var(--clr-accent-warm);
    transform: translateY(-1px);
}

.contact__submit:active {
    transform: translateY(0);
}

/* — Extended B2B Form Fields ----------------------------------- */
.contact__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
@media (max-width: 640px) {
    .contact__row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}
.required {
    color: var(--clr-accent);
}
.contact__fieldset {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}
.contact__checkbox-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem 0.75rem;
}
@media (min-width: 640px) {
    .contact__checkbox-grid {
        grid-template-columns: 1fr 1fr;
    }
}
.contact__checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--ff-body);
    font-size: 0.9rem;
    color: var(--clr-muted);
    cursor: pointer;
    transition: color 0.3s;
}
.contact__checkbox-label:hover {
    color: var(--clr-text);
}
.contact__checkbox-label input[type="checkbox"] {
    appearance: none;
    width: 16px;
    height: 16px;
    min-width: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.3);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s;
}
.contact__checkbox-label input[type="checkbox"]:checked {
    background: var(--clr-accent);
    border-color: var(--clr-accent);
}
.contact__checkbox-label input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid #000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* — Contact responsive ----------------------------------------- */
@media (max-width: 768px) {
    .contact__card {
        grid-template-columns: 1fr;
    }

    .contact__form-wrap {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, .08);
    }
}

/* ═══════════════════════════════════════════════════════
   AMBIENT BACKGROUND EFFECTS
   ═══════════════════════════════════════════════════════ */

/* Dot-grid pattern — signature brand texture */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: radial-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px);
    background-size: 24px 24px;
}

/* Subtle grain overlay */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
    opacity: .35;
}

/* ═══════════════════════════════════════════════════════
   ENTRANCE ANIMATIONS
   ═══════════════════════════════════════════════════════ */
.hero__row,
.hero__subcopy,
.hero__status,
.nav,
.trust,
.testimonials,
.contact {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeSlideUp .9s var(--ease-out-expo) forwards;
}

.nav {
    animation-delay: .1s;
}

.hero__status {
    animation-delay: .18s;
}

.hero__row--1 {
    animation-delay: .25s;
}

.hero__row--2 {
    animation-delay: .4s;
}

.hero__row--3 {
    animation-delay: .55s;
}

.hero__subcopy {
    animation-delay: .7s;
}

.trust {
    animation-delay: .9s;
}

.testimonials {
    animation-delay: 1s;
}

.contact {
    animation-delay: 1.1s;
}

@keyframes fadeSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    :root {
        --headline-size: clamp(3rem, 16vw, 6rem);
    }

    .nav__links {
        display: none;
    }

    .hero__subcopy {
        position: relative;
        right: auto;
        bottom: auto;
        text-align: left;
        max-width: 100%;
        padding: 2rem 0;
    }

    .hero__row {
        justify-content: flex-start !important;
    }

    .trust__logos {
        gap: 1.5rem;
    }

    .trust__logo-slot {
        font-size: clamp(.75rem, 3vw, 1rem);
    }
}

/* ═══════════════════════════════════════════════════════
   POINTER EVENTS PASSTHROUGH FOR SPLINE 3D
   ═══════════════════════════════════════════════════════ */
/* Allow mouse to pass through the section wrappers */
.hero, .trust, .testimonials, .contact {
    pointer-events: none;
}

/* Re-enable mouse interaction for all actual content bounds */
.nav,
.hero__headline, .hero__status, .hero__subcopy,
.trust__text, .trust__logos,
.testimonials__heading, .testimonials__label, .testimonials__carousel, .testimonials__nav,
.contact__card {
    pointer-events: auto;
}