/* ==========================================================================
   Gray Audio — Premium Widget Design System
   Light luxury · Audi Sound System inspired · premium automotive aesthetic
   Palette: warm pearl whites, anthracite, aluminium silver, subtle red accent
   ========================================================================== */

/* --------------------------------------------------------------------------
   Design Tokens — Audi-inspired light palette
   -------------------------------------------------------------------------- */
:root {
    /* Backgrounds — warm whites & pearl grays */
    --ga-bg-primary: #ffffff;
    --ga-bg-secondary: #f7f7f8;
    --ga-bg-tertiary: #eeeff1;
    --ga-bg-card: #ffffff;
    --ga-bg-dark: #1a1d21;
    --ga-bg-anthracite: #2d3036;

    /* Accent — Audi signature red + aluminium silver */
    --ga-accent-red: #bb0a30;
    --ga-accent-red-light: #d4213d;
    --ga-accent-red-subtle: rgba(187, 10, 48, 0.08);
    --ga-accent-silver: #8c8f94;
    --ga-accent-aluminium: #a8aaae;
    --ga-accent-warm: #6b6e73;

    /* Text — dark anthracite spectrum */
    --ga-text-primary: #1a1d21;
    --ga-text-secondary: #4a4d52;
    --ga-text-muted: #8c8f94;
    --ga-text-subtle: #b8babf;
    --ga-text-on-dark: #ffffff;
    --ga-text-on-dark-secondary: rgba(255, 255, 255, 0.75);

    /* Borders — subtle grays */
    --ga-border: rgba(0, 0, 0, 0.06);
    --ga-border-light: rgba(0, 0, 0, 0.1);
    --ga-border-medium: rgba(0, 0, 0, 0.14);

    /* Glass / surface effects */
    --ga-glass: rgba(0, 0, 0, 0.02);
    --ga-glass-strong: rgba(0, 0, 0, 0.04);
    --ga-overlay: rgba(26, 29, 33, 0.85);

    /* Gradients */
    --ga-gradient-red: linear-gradient(135deg, #bb0a30 0%, #d4213d 100%);
    --ga-gradient-dark: linear-gradient(180deg, #1a1d21 0%, #2d3036 100%);
    --ga-gradient-light: linear-gradient(180deg, #ffffff 0%, #f7f7f8 100%);
    --ga-gradient-radial: radial-gradient(ellipse at center, rgba(187, 10, 48, 0.04) 0%, transparent 70%);

    /* Shadows — soft and premium */
    --ga-shadow-soft: 0 4px 24px rgba(0, 0, 0, 0.06);
    --ga-shadow-medium: 0 8px 40px rgba(0, 0, 0, 0.08);
    --ga-shadow-card: 0 2px 12px rgba(0, 0, 0, 0.04);
    --ga-shadow-glow: 0 0 60px rgba(187, 10, 48, 0.06);

    /* Typography */
    --ga-font-display: "SUSE", sans-serif;
    --ga-font-body: "DM Sans", sans-serif;

    /* Radius */
    --ga-radius-sm: 4px;
    --ga-radius-md: 8px;
    --ga-radius-lg: 16px;
    --ga-radius-xl: 24px;

    /* Easing */
    --ga-transition: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ga-transition-smooth: cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   Base / Reset for GA sections
   -------------------------------------------------------------------------- */
[class^="ga-section"] {
    position: relative;
    overflow: hidden;
    color: var(--ga-text-primary);
    font-family: var(--ga-font-body);
}

[class^="ga-section"] *,
[class^="ga-section"] *::before,
[class^="ga-section"] *::after {
    box-sizing: border-box;
}

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */
.ga-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--ga-font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--ga-accent-red);
    margin-bottom: 24px;
}

.ga-eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: var(--ga-accent-red);
}

.ga-heading-xl {
    font-family: var(--ga-font-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--ga-text-primary);
}

.ga-heading-lg {
    font-family: var(--ga-font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--ga-text-primary);
}

.ga-heading-md {
    font-family: var(--ga-font-display);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--ga-text-primary);
}

.ga-heading-sm {
    font-family: var(--ga-font-display);
    font-size: clamp(1.125rem, 1.5vw, 1.375rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--ga-text-primary);
}

.ga-text-body {
    font-family: var(--ga-font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
    color: var(--ga-text-secondary);
}

.ga-text-lead {
    font-family: var(--ga-font-body);
    font-size: clamp(1.0625rem, 1.2vw, 1.1875rem);
    font-weight: 400;
    line-height: 1.8;
    color: var(--ga-text-secondary);
}

.ga-text-small {
    font-family: var(--ga-font-body);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--ga-text-muted);
}

.ga-accent-text {
    color: var(--ga-accent-red);
}

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */
.ga-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
}

.ga-container--wide {
    max-width: 1440px;
}

.ga-container--narrow {
    max-width: 960px;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
/* ── Global CTA — pill button with slide-fill ── */
.ga-cta {
    display: inline-flex;
    align-items: center;
    gap: 0;
    width: fit-content;
    text-decoration: none;
    font-family: var(--ga-font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ga-text-primary);
    padding: 14px 20px 14px 28px;
    border: 1px solid var(--ga-border-medium);
    border-radius: 100px;
    transition: all 0.4s var(--ga-transition);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.ga-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--ga-accent-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 100px;
    z-index: 0;
}

.ga-cta:hover::before {
    transform: scaleX(1);
}

.ga-cta__text {
    position: relative;
    z-index: 1;
    transition: color 0.3s var(--ga-transition);
}

.ga-cta:hover .ga-cta__text {
    color: #ffffff;
}

.ga-cta__icon {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-left: 12px;
    border-radius: 50%;
    background: var(--ga-accent-red);
    color: #ffffff;
    transition: all 0.4s var(--ga-transition);
}

.ga-cta:hover .ga-cta__icon {
    background: #ffffff;
    color: var(--ga-accent-red);
    transform: translateX(4px);
}

.ga-cta__icon svg {
    display: block;
}

/* ── Light variant — for dark backgrounds ── */
.ga-cta--light {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.25);
}

.ga-cta--light .ga-cta__icon {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.ga-cta--light:hover .ga-cta__text {
    color: #ffffff;
}

.ga-cta--light:hover .ga-cta__icon {
    background: #ffffff;
    color: var(--ga-accent-red);
}
}

/* --------------------------------------------------------------------------
   Glass / Card surfaces
   -------------------------------------------------------------------------- */
.ga-glass {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--ga-border);
    border-radius: var(--ga-radius-lg);
}

.ga-glass--strong {
    background: rgba(255, 255, 255, 0.92);
    border-color: var(--ga-border-light);
}

.ga-card {
    background: var(--ga-bg-card);
    border: 1px solid var(--ga-border);
    border-radius: var(--ga-radius-md);
    transition: all 0.5s var(--ga-transition);
    box-shadow: var(--ga-shadow-card);
}

.ga-card:hover {
    border-color: var(--ga-border-light);
    transform: translateY(-4px);
    box-shadow: var(--ga-shadow-medium);
}

/* --------------------------------------------------------------------------
   Decorative / Ambient elements
   -------------------------------------------------------------------------- */
.ga-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    opacity: 0.5;
}

.ga-glow--red {
    background: rgba(187, 10, 48, 0.06);
}

.ga-glow--gold {
    background: rgba(187, 10, 48, 0.06);
}

.ga-glow--cool {
    background: rgba(140, 143, 148, 0.08);
}

.ga-noise {
    position: absolute;
    inset: 0;
    opacity: 0.015;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px;
    pointer-events: none;
    z-index: 1;
}


.ga-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--ga-border-light), transparent);
}

.ga-divider--accent {
    background: linear-gradient(90deg, transparent, var(--ga-accent-red), transparent);
    opacity: 0.2;
}

/* --------------------------------------------------------------------------
   Scroll Animations
   -------------------------------------------------------------------------- */
.ga-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ga-transition-smooth),
                transform 0.8s var(--ga-transition-smooth);
}

.ga-reveal--left {
    transform: translateX(-40px);
}

.ga-reveal--right {
    transform: translateX(40px);
}

.ga-reveal--scale {
    transform: scale(0.95);
}

.ga-reveal.is-visible {
    opacity: 1;
    transform: translate(0) scale(1);
}

.ga-reveal-delay-1 { transition-delay: 0.1s; }
.ga-reveal-delay-2 { transition-delay: 0.2s; }
.ga-reveal-delay-3 { transition-delay: 0.3s; }
.ga-reveal-delay-4 { transition-delay: 0.4s; }
.ga-reveal-delay-5 { transition-delay: 0.5s; }

/* --------------------------------------------------------------------------
   Image treatments
   -------------------------------------------------------------------------- */
.ga-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--ga-radius-md);
}

.ga-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ga-transition-smooth);
}

.ga-image-wrapper:hover img {
    transform: scale(1.04);
}

.ga-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 29, 33, 0.2), transparent 60%);
    pointer-events: none;
}

/* --------------------------------------------------------------------------
   1. HERO SECTION
   -------------------------------------------------------------------------- */
.ga-section-hero {
    position: relative;
    min-height: 100vh;
    margin-top: -120px;
    background: var(--ga-bg-dark);
    color: var(--ga-text-on-dark);
    z-index: 1;
    display: flex;
    flex-direction: column;
}

/* Full background image + overlay */
.ga-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.ga-hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ga-hero__bg-overlay {
    position: absolute;
    inset: 0;
    background: var(--ga-bg-dark);
}

/* Equalizer decorative bars */
.ga-hero__eq {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 36px;
    z-index: 5;
}

.ga-hero__eq span {
    display: block;
    width: 3px;
    background: var(--ga-accent-red);
    border-radius: 2px;
    opacity: 0.5;
    animation: ga-eq-bar 1.2s ease-in-out infinite alternate;
}

.ga-hero__eq span:nth-child(1) { height: 35%; animation-delay: 0s; }
.ga-hero__eq span:nth-child(2) { height: 65%; animation-delay: 0.15s; }
.ga-hero__eq span:nth-child(3) { height: 45%; animation-delay: 0.3s; }
.ga-hero__eq span:nth-child(4) { height: 80%; animation-delay: 0.45s; }
.ga-hero__eq span:nth-child(5) { height: 55%; animation-delay: 0.6s; }
.ga-hero__eq span:nth-child(6) { height: 90%; animation-delay: 0.75s; }
.ga-hero__eq span:nth-child(7) { height: 40%; animation-delay: 0.9s; }

@keyframes ga-eq-bar {
    0% { transform: scaleY(0.4); }
    100% { transform: scaleY(1); }
}

/* Container */
.ga-hero__container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
    flex: 1;
    display: flex;
    align-items: center;
}

/* Grid: left content + right images */
.ga-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    padding-top: 260px;
    padding-bottom: 100px;
}

/* LEFT column */
.ga-hero__left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.ga-hero__title {
    font-family: var(--ga-font-display);
    font-size: clamp(2.5rem, 5vw, 4.25rem);
    font-weight: 300;
    line-height: 1.06;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.ga-hero__title span {
    display: block;
}

.ga-hero__title strong {
    font-weight: 700;
}

.ga-hero__subtitle {
    font-family: var(--ga-font-body);
    font-size: 15px;
    line-height: 1.75;
    color: #FFFFFF;
    margin-bottom: 36px;
    max-width: 440px;
}

/* CTA button — dark pill style like reference */
/* Hero CTA — uses global .ga-cta.ga-cta--light */

/* Floating stat card */
.ga-hero__stat-card {
    margin-top: 48px;
    padding: 24px 28px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--ga-radius-lg);
    max-width: 320px;
}

.ga-hero__stat-card-top {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 10px;
}

.ga-hero__stat-card-number {
    font-family: var(--ga-font-display);
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.ga-hero__stat-card-title {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

.ga-hero__stat-card-text {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.4);
}

/* RIGHT column: overlapping images */
.ga-hero__right {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.ga-hero__images {
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 16px;
    align-items: start;
}

/* Top image — larger, flush top */
.ga-hero__img-top {
    border-radius: var(--ga-radius-lg);
    overflow: hidden;
    aspect-ratio: 3 / 3.8;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.ga-hero__img-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Bottom image — offset down, overlapping */
.ga-hero__img-bottom {
    border-radius: var(--ga-radius-lg);
    overflow: hidden;
    aspect-ratio: 3 / 4;
    margin-top: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.ga-hero__img-bottom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Video inside image slots */
.ga-hero__media--video {
    position: relative;
}

.ga-hero__media--video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ga-hero__media-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
}

.ga-hero__media-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--ga-accent-red);
    animation: ga-badge-pulse 1.5s ease-in-out infinite;
}

@keyframes ga-badge-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Info card — positioned below bottom image */
.ga-hero__info-card {
    position: absolute;
    bottom: -80px;
    right:  310px;
    max-width: 280px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--ga-radius-lg);
    z-index: 3;
}

.ga-hero__info-card-title {
    font-family: var(--ga-font-display);
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.ga-hero__info-card-text {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 14px;
}

.ga-hero__info-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #ffffff;
    text-decoration: none;
    transition: gap 0.3s var(--ga-transition);
}

.ga-hero__info-card-link:hover {
    gap: 10px;
}

.ga-hero__info-card-link svg {
    stroke: #ffffff;
}

/* Bottom ticker — horizontal pills */
.ga-hero__ticker {
    position: relative;
    z-index: 5;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 18px 0;
}

.ga-hero__ticker-track {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
}

.ga-hero__ticker-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    white-space: nowrap;
    transition: all 0.3s var(--ga-transition);
    text-decoration: none;
}

.ga-hero__ticker-pill:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.ga-hero__ticker-pill svg {
    opacity: 0.4;
    transition: opacity 0.3s var(--ga-transition);
}

.ga-hero__ticker-pill:hover svg {
    opacity: 0.8;
}

/* --------------------------------------------------------------------------
   2. INTRO / ABOUT SECTION — Light
   -------------------------------------------------------------------------- */
.ga-section-intro {
    padding: 100px 0px 0px 0px;
}

.ga-intro__layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.ga-intro__content {
    position: relative;
}

.ga-intro__headline {
    margin-bottom: 32px;
}

.ga-intro__headline-main {
    font-family: var(--ga-font-display);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 300;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--ga-text-primary);
    margin-bottom: 8px;
}

.ga-intro__headline-main strong {
    font-weight: 700;
}

.ga-intro__headline-sub {
    font-family: var(--ga-font-display);
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 400;
    color: var(--ga-accent-red);
    font-style: italic;
}

/* ── Intro eyebrow with EQ bars ── */
.ga-intro__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--ga-font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--ga-accent-red);
    margin-bottom: 24px;
}

.ga-intro__eq {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 16px;
}

.ga-intro__eq span {
    display: block;
    width: 2.5px;
    background: var(--ga-accent-red);
    border-radius: 1px;
    animation: ga-eq-bar 1.2s ease-in-out infinite alternate;
}

.ga-intro__eq span:nth-child(1) { height: 30%; animation-delay: 0s; }
.ga-intro__eq span:nth-child(2) { height: 60%; animation-delay: 0.15s; }
.ga-intro__eq span:nth-child(3) { height: 45%; animation-delay: 0.3s; }
.ga-intro__eq span:nth-child(4) { height: 80%; animation-delay: 0.45s; }
.ga-intro__eq span:nth-child(5) { height: 50%; animation-delay: 0.6s; }

/* Intro CTA — uses global .ga-cta */

.ga-intro__text {
    margin-bottom: 40px;
}

.ga-intro__visual {
    position: relative;
}

.ga-intro__image-stack {
    position: relative;
    height: 600px;
}

.ga-intro__image-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 75%;
    border-radius: var(--ga-radius-lg);
    overflow: hidden;
    box-shadow: var(--ga-shadow-medium);
}

.ga-intro__image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ga-intro__image-secondary {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 45%;
    height: 45%;
    border-radius: var(--ga-radius-lg);
    overflow: hidden;
}

.ga-intro__image-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ga-intro__accent-line {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border: 1px solid var(--ga-border-light);
    border-radius: var(--ga-radius-lg);
    opacity: 0.5;
}

.ga-intro__stat {
    position: absolute;
    bottom: 60px;
    right: 40px;
    z-index: 3;
    padding: 24px 32px;
    text-align: center;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--ga-border);
    border-radius: var(--ga-radius-lg);
    box-shadow: var(--ga-shadow-soft);
}

.ga-intro__stat-number {
    font-family: var(--ga-font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--ga-accent-red);
    line-height: 1;
}

.ga-intro__stat-label {
    font-size: 12px;
    color: var(--ga-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 8px;
}

/* --------------------------------------------------------------------------
   3. SERVICES SECTION — Light gray
   -------------------------------------------------------------------------- */
/* ── Services — section ── */
.ga-section-services {
    padding: 140px 0;
    background: var(--ga-bg-primary);
    position: relative;
    overflow: hidden;
}

/* ── Header ── */
.ga-services__header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 72px;
}

.ga-services__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--ga-font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--ga-accent-red);
    margin-bottom: 24px;
}

.ga-services__eq {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 14px;
}

.ga-services__eq span {
    display: block;
    width: 2.5px;
    background: var(--ga-accent-red);
    border-radius: 1px;
    animation: ga-eq-bar 1.2s ease-in-out infinite alternate;
}

.ga-services__eq span:nth-child(1) { height: 30%; animation-delay: 0s; }
.ga-services__eq span:nth-child(2) { height: 60%; animation-delay: 0.12s; }
.ga-services__eq span:nth-child(3) { height: 40%; animation-delay: 0.24s; }
.ga-services__eq span:nth-child(4) { height: 75%; animation-delay: 0.36s; }
.ga-services__eq span:nth-child(5) { height: 50%; animation-delay: 0.48s; }

.ga-services__title {
    font-family: var(--ga-font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--ga-text-primary);
}

.ga-services__subtitle {
    font-family: var(--ga-font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--ga-text-secondary);
    margin-top: 16px;
}

/* ── Bento grid — asymmetric layout ── */
.ga-services__grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    grid-template-rows: auto auto;
    gap: 20px;
}

.ga-services__card:first-child {
    grid-row: 1 / 3;
    min-height: 560px;
}

.ga-services__card:nth-child(2) { min-height: 270px; }
.ga-services__card:nth-child(3) { min-height: 270px; }

.ga-services__card:nth-child(4) {
    grid-column: 1 / -1;
    min-height: 280px;
}

/* ── Card ── */
.ga-services__card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 16px;
    background: var(--ga-bg-dark);
    transition: transform 0.5s var(--ga-transition-smooth),
                box-shadow 0.5s var(--ga-transition);
}

.ga-services__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Background image */
.ga-services__card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    transition: opacity 0.7s var(--ga-transition), transform 0.7s var(--ga-transition-smooth);
}

.ga-services__card:hover .ga-services__card-bg {
    opacity: 0.3;
    transform: scale(1.06);
}

/* Background video */
.ga-services__card-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.55;
    transition: opacity 0.7s var(--ga-transition), transform 0.7s var(--ga-transition-smooth);
}

.ga-services__card:hover .ga-services__card-video {
    opacity: 0.35;
    transform: scale(1.04);
}

/* Soundwave decoration */
.ga-services__card-wave {
    position: absolute;
    top: 50%;
    right: 32px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 3px;
    height: 80px;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.5s var(--ga-transition);
}

.ga-services__card:hover .ga-services__card-wave {
    opacity: 0.15;
}

.ga-services__card-wave span {
    display: block;
    width: 3px;
    height: 20%;
    background: var(--ga-accent-red);
    border-radius: 2px;
    animation: ga-eq-bar 1.2s ease-in-out infinite alternate;
    animation-play-state: paused;
}

.ga-services__card:hover .ga-services__card-wave span {
    animation-play-state: running;
}

.ga-services__card-wave span:nth-child(1) { height: 25%; animation-delay: 0s; }
.ga-services__card-wave span:nth-child(2) { height: 55%; animation-delay: 0.1s; }
.ga-services__card-wave span:nth-child(3) { height: 35%; animation-delay: 0.2s; }
.ga-services__card-wave span:nth-child(4) { height: 70%; animation-delay: 0.3s; }
.ga-services__card-wave span:nth-child(5) { height: 45%; animation-delay: 0.4s; }
.ga-services__card-wave span:nth-child(6) { height: 85%; animation-delay: 0.5s; }
.ga-services__card-wave span:nth-child(7) { height: 50%; animation-delay: 0.6s; }
.ga-services__card-wave span:nth-child(8) { height: 30%; animation-delay: 0.7s; }

/* Number watermark */
.ga-services__card-number {
    font-family: var(--ga-font-display);
    font-size: 80px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.04);
    position: absolute;
    top: 24px;
    right: 32px;
    z-index: 2;
    line-height: 1;
    transition: color 0.5s var(--ga-transition);
}

.ga-services__card:hover .ga-services__card-number {
    color: rgba(187, 10, 48, 0.15);
}

/* Content body */
.ga-services__card-body {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 36px;
}

.ga-services__card:first-child .ga-services__card-body {
    padding: 48px;
}

/* Icon */
.ga-services__card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.45s var(--ga-transition-smooth);
}

.ga-services__card:hover .ga-services__card-icon {
    background: var(--ga-accent-red);
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(187, 10, 48, 0.3);
}

.ga-services__card-icon svg {
    display: block;
}

/* Title */
.ga-services__card-title {
    font-family: var(--ga-font-display);
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
    transition: color 0.4s var(--ga-transition);
}

.ga-services__card:first-child .ga-services__card-title {
    font-size: 28px;
}

/* Description */
.ga-services__card-desc {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.45);
    max-width: 400px;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.5s var(--ga-transition-smooth);
}

.ga-services__card:hover .ga-services__card-desc {
    opacity: 1;
    transform: translateY(0);
    color: rgba(255, 255, 255, 0.7);
}

.ga-services__card:first-child .ga-services__card-desc {
    opacity: 1;
    transform: none;
    color: rgba(255, 255, 255, 0.6);
}

/* Action link */
.ga-services__card-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    font-family: var(--ga-font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ga-accent-red);
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.45s var(--ga-transition-smooth);
}

.ga-services__card:hover .ga-services__card-action {
    opacity: 1;
    transform: translateX(0);
}

.ga-services__card-action svg {
    display: block;
    transition: transform 0.3s var(--ga-transition);
}

.ga-services__card:hover .ga-services__card-action svg {
    transform: translateX(3px);
}

/* Wide card (4th) — horizontal layout */
.ga-services__card:nth-child(4) .ga-services__card-body {
    flex-direction: row;
    align-items: center;
    gap: 32px;
    justify-content: flex-start;
}

.ga-services__card:nth-child(4) .ga-services__card-icon {
    margin-bottom: 0;
}

.ga-services__card:nth-child(4) .ga-services__card-desc {
    opacity: 1;
    transform: none;
    color: rgba(255, 255, 255, 0.6);
}

/* ── Footer — USPs + CTA ── */
/* ── Footer — immersive dark block ── */
.ga-services__footer {
    margin-top: 72px;
    background: var(--ga-bg-dark);
    border-radius: 24px;
    padding: 64px;
    position: relative;
    overflow: hidden;
}

/* Spectrum bars — rising from bottom */
.ga-services__footer-spectrum {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 5px;
    height: 100%;
    padding: 0 40px;
    pointer-events: none;
    z-index: 0;
}

.ga-services__footer-spectrum span {
    flex: 1;
    background: linear-gradient(to top, rgba(187, 10, 48, 0.12) 0%, rgba(187, 10, 48, 0.01) 100%);
    border-radius: 4px 4px 0 0;
    animation: ga-auto-spectrum 1.6s ease-in-out infinite alternate;
}

.ga-services__footer-spectrum span:nth-child(1)  { height: 15%; animation-delay: 0s; }
.ga-services__footer-spectrum span:nth-child(2)  { height: 35%; animation-delay: 0.07s; }
.ga-services__footer-spectrum span:nth-child(3)  { height: 22%; animation-delay: 0.14s; }
.ga-services__footer-spectrum span:nth-child(4)  { height: 50%; animation-delay: 0.21s; }
.ga-services__footer-spectrum span:nth-child(5)  { height: 30%; animation-delay: 0.28s; }
.ga-services__footer-spectrum span:nth-child(6)  { height: 60%; animation-delay: 0.35s; }
.ga-services__footer-spectrum span:nth-child(7)  { height: 40%; animation-delay: 0.42s; }
.ga-services__footer-spectrum span:nth-child(8)  { height: 70%; animation-delay: 0.49s; }
.ga-services__footer-spectrum span:nth-child(9)  { height: 45%; animation-delay: 0.56s; }
.ga-services__footer-spectrum span:nth-child(10) { height: 80%; animation-delay: 0.63s; }
.ga-services__footer-spectrum span:nth-child(11) { height: 55%; animation-delay: 0.7s; }
.ga-services__footer-spectrum span:nth-child(12) { height: 65%; animation-delay: 0.77s; }
.ga-services__footer-spectrum span:nth-child(13) { height: 38%; animation-delay: 0.84s; }
.ga-services__footer-spectrum span:nth-child(14) { height: 75%; animation-delay: 0.91s; }
.ga-services__footer-spectrum span:nth-child(15) { height: 48%; animation-delay: 0.98s; }
.ga-services__footer-spectrum span:nth-child(16) { height: 58%; animation-delay: 1.05s; }
.ga-services__footer-spectrum span:nth-child(17) { height: 28%; animation-delay: 1.12s; }
.ga-services__footer-spectrum span:nth-child(18) { height: 42%; animation-delay: 1.19s; }
.ga-services__footer-spectrum span:nth-child(19) { height: 62%; animation-delay: 1.26s; }
.ga-services__footer-spectrum span:nth-child(20) { height: 20%; animation-delay: 1.33s; }

/* Ambient glow */
.ga-services__footer-glow {
    position: absolute;
    bottom: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 80%;
    background: radial-gradient(ellipse at center, rgba(187, 10, 48, 0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Inner layout — left text+CTA, right USPs */
.ga-services__footer-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

/* Left side */
.ga-services__footer-left {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.ga-services__footer-text {
    font-family: var(--ga-font-display);
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 300;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
}

/* USP tiles — 2x2 glassmorphism grid */
.ga-services__usps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.ga-services__usp {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    transition: all 0.4s var(--ga-transition-smooth);
}

.ga-services__usp:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(187, 10, 48, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
}

.ga-services__usp-num {
    font-family: var(--ga-font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--ga-accent-red);
    line-height: 1;
    opacity: 0.5;
    transition: opacity 0.3s var(--ga-transition);
}

.ga-services__usp:hover .ga-services__usp-num {
    opacity: 1;
}

.ga-services__usp-text {
    font-family: var(--ga-font-body);
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
    transition: color 0.3s var(--ga-transition);
}

.ga-services__usp:hover .ga-services__usp-text {
    color: #ffffff;
}

/* --------------------------------------------------------------------------
   4. AUTOMOTIVE SECTION — Full-bleed immersive
   -------------------------------------------------------------------------- */
.ga-section-automotive {
    position: relative;
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--ga-bg-dark);
}

/* ── Full background ── */
.ga-auto__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.ga-auto__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
}

.ga-auto__bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 29, 33, 0.92) 0%,
        rgba(26, 29, 33, 0.75) 40%,
        rgba(26, 29, 33, 0.5) 100%
    );
}

/* Ambient EQ wave — large, subtle */
.ga-auto__ambient-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 6px;
    height: 160px;
    opacity: 0.04;
    z-index: 1;
    pointer-events: none;
}

.ga-auto__ambient-wave span {
    display: block;
    width: 5px;
    background: #ffffff;
    border-radius: 3px;
    animation: ga-eq-bar 1.6s ease-in-out infinite alternate;
}

.ga-auto__ambient-wave span:nth-child(1)  { height: 15%; animation-delay: 0s; }
.ga-auto__ambient-wave span:nth-child(2)  { height: 40%; animation-delay: 0.08s; }
.ga-auto__ambient-wave span:nth-child(3)  { height: 25%; animation-delay: 0.16s; }
.ga-auto__ambient-wave span:nth-child(4)  { height: 60%; animation-delay: 0.24s; }
.ga-auto__ambient-wave span:nth-child(5)  { height: 35%; animation-delay: 0.32s; }
.ga-auto__ambient-wave span:nth-child(6)  { height: 75%; animation-delay: 0.4s; }
.ga-auto__ambient-wave span:nth-child(7)  { height: 50%; animation-delay: 0.48s; }
.ga-auto__ambient-wave span:nth-child(8)  { height: 90%; animation-delay: 0.56s; }
.ga-auto__ambient-wave span:nth-child(9)  { height: 65%; animation-delay: 0.64s; }
.ga-auto__ambient-wave span:nth-child(10) { height: 100%; animation-delay: 0.72s; }
.ga-auto__ambient-wave span:nth-child(11) { height: 70%; animation-delay: 0.8s; }
.ga-auto__ambient-wave span:nth-child(12) { height: 45%; animation-delay: 0.88s; }
.ga-auto__ambient-wave span:nth-child(13) { height: 80%; animation-delay: 0.96s; }
.ga-auto__ambient-wave span:nth-child(14) { height: 30%; animation-delay: 1.04s; }

/* ── Inner content ── */
.ga-auto__inner {
    position: relative;
    z-index: 2;
    padding: 120px 0;
}

/* ── Header ── */
.ga-auto__header {
    max-width: 580px;
    margin-bottom: 56px;
}

.ga-auto__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--ga-font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--ga-accent-red);
    margin-bottom: 20px;
}

.ga-auto__eq {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 14px;
}

.ga-auto__eq span {
    display: block;
    width: 2.5px;
    background: var(--ga-accent-red);
    border-radius: 1px;
    animation: ga-eq-bar 1.2s ease-in-out infinite alternate;
}

.ga-auto__eq span:nth-child(1) { height: 30%; animation-delay: 0s; }
.ga-auto__eq span:nth-child(2) { height: 60%; animation-delay: 0.12s; }
.ga-auto__eq span:nth-child(3) { height: 40%; animation-delay: 0.24s; }
.ga-auto__eq span:nth-child(4) { height: 75%; animation-delay: 0.36s; }
.ga-auto__eq span:nth-child(5) { height: 50%; animation-delay: 0.48s; }

.ga-auto__title {
    font-family: var(--ga-font-display);
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin-bottom: 16px;
}

.ga-auto__subtitle {
    font-family: var(--ga-font-body);
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}

/* ── Glassmorphism cards — horizontal row ── */
/* ── Frequency band cards ── */
.ga-auto__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.ga-auto__card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.5s var(--ga-transition-smooth);
    cursor: default;
}

.ga-auto__card:hover {
    border-color: rgba(187, 10, 48, 0.3);
    transform: translateY(-6px);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.25),
        0 0 40px rgba(187, 10, 48, 0.08);
}

/* Glow effect — radial red glow on hover */
.ga-auto__card-glow {
    position: absolute;
    bottom: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 200%;
    height: 100%;
    background: radial-gradient(ellipse at center bottom, rgba(187, 10, 48, 0.15) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.6s var(--ga-transition);
    pointer-events: none;
    z-index: 0;
}

.ga-auto__card:hover .ga-auto__card-glow {
    opacity: 1;
}

/* Spectrum visualizer — bars that rise from the bottom */
.ga-auto__card-spectrum {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 4px;
    height: 100%;
    padding: 0 24px;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.6s var(--ga-transition-smooth);
}

.ga-auto__card:hover .ga-auto__card-spectrum {
    opacity: 1;
}

.ga-auto__card-spectrum span {
    flex: 1;
    background: linear-gradient(to top, rgba(187, 10, 48, 0.2) 0%, rgba(187, 10, 48, 0.02) 100%);
    border-radius: 4px 4px 0 0;
    animation: ga-auto-spectrum 1.4s ease-in-out infinite alternate;
    animation-play-state: paused;
    transform-origin: bottom;
}

.ga-auto__card:hover .ga-auto__card-spectrum span {
    animation-play-state: running;
}

.ga-auto__card-spectrum span:nth-child(1)  { height: 25%; animation-delay: 0s; }
.ga-auto__card-spectrum span:nth-child(2)  { height: 50%; animation-delay: 0.08s; }
.ga-auto__card-spectrum span:nth-child(3)  { height: 35%; animation-delay: 0.16s; }
.ga-auto__card-spectrum span:nth-child(4)  { height: 65%; animation-delay: 0.24s; }
.ga-auto__card-spectrum span:nth-child(5)  { height: 80%; animation-delay: 0.32s; }
.ga-auto__card-spectrum span:nth-child(6)  { height: 60%; animation-delay: 0.4s; }
.ga-auto__card-spectrum span:nth-child(7)  { height: 45%; animation-delay: 0.48s; }
.ga-auto__card-spectrum span:nth-child(8)  { height: 70%; animation-delay: 0.56s; }
.ga-auto__card-spectrum span:nth-child(9)  { height: 30%; animation-delay: 0.64s; }
.ga-auto__card-spectrum span:nth-child(10) { height: 55%; animation-delay: 0.72s; }

@keyframes ga-auto-spectrum {
    0%   { transform: scaleY(0.5); }
    100% { transform: scaleY(1); }
}

/* Card body — content over spectrum */
.ga-auto__card-body {
    position: relative;
    z-index: 1;
    padding: 36px 30px;
}

/* Head — icon + number */
.ga-auto__card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.ga-auto__card-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.45s var(--ga-transition-smooth);
}

.ga-auto__card-icon svg { display: block; }

.ga-auto__card:hover .ga-auto__card-icon {
    background: var(--ga-accent-red);
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 0 20px rgba(187, 10, 48, 0.4);
}

.ga-auto__card-num {
    font-family: var(--ga-font-display);
    font-size: 48px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    transition: color 0.5s var(--ga-transition);
}

.ga-auto__card:hover .ga-auto__card-num {
    color: rgba(187, 10, 48, 0.15);
}

.ga-auto__card-title {
    font-family: var(--ga-font-display);
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 14px;
    line-height: 1.25;
    transition: color 0.3s var(--ga-transition);
}

.ga-auto__card-text {
    font-family: var(--ga-font-body);
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.45);
    transition: color 0.4s var(--ga-transition);
}

.ga-auto__card:hover .ga-auto__card-text {
    color: rgba(255, 255, 255, 0.8);
}

/* Accent line that expands on hover */
.ga-auto__card-line {
    width: 32px;
    height: 2px;
    background: var(--ga-accent-red);
    margin-top: 24px;
    transition: width 0.5s var(--ga-transition-smooth);
    border-radius: 1px;
}

.ga-auto__card:hover .ga-auto__card-line {
    width: 80px;
}

/* CTA */
.ga-auto__cta {
    display: flex;
}

/* --------------------------------------------------------------------------
   5. TECHNOLOGY SECTION — Light
   -------------------------------------------------------------------------- */
.ga-section-technology {
    padding: 160px 0;
    background: var(--ga-bg-primary);
    position: relative;
}

.ga-technology__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.ga-technology__content {
    position: relative;
    z-index: 2;
}

.ga-technology__title {
    margin-bottom: 32px;
}

.ga-technology__text {
    margin-bottom: 40px;
}

.ga-technology__metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 48px;
}

.ga-technology__metric {
    padding: 28px;
    border-radius: var(--ga-radius-md);
    background: var(--ga-bg-secondary);
    border: 1px solid var(--ga-border);
    transition: all 0.4s var(--ga-transition);
}

.ga-technology__metric:hover {
    border-color: var(--ga-accent-red);
    box-shadow: var(--ga-shadow-soft);
}

.ga-technology__metric-value {
    font-family: var(--ga-font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--ga-accent-red);
    line-height: 1;
    margin-bottom: 8px;
}

.ga-technology__metric-label {
    font-size: 13px;
    color: var(--ga-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ga-technology__visual {
    position: relative;
}

.ga-technology__visual-frame {
    position: relative;
    border-radius: var(--ga-radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    box-shadow: var(--ga-shadow-medium);
}

.ga-technology__visual-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ga-technology__visual-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid var(--ga-border);
    border-radius: var(--ga-radius-lg);
    z-index: 2;
    pointer-events: none;
}

.ga-technology__visual-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    z-index: 3;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--ga-border);
    border-radius: var(--ga-radius-lg);
    box-shadow: var(--ga-shadow-soft);
}


/* --------------------------------------------------------------------------
   6. WERKWIJZE SECTION — Soft gray
   -------------------------------------------------------------------------- */
/* ── Werkwijze — section ── */
.ga-section-werkwijze {
    padding: 140px 0 100px;
    background: var(--ga-bg-primary);
    position: relative;
    overflow: hidden;
}

/* ── Header ── */
.ga-werkwijze__header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 72px;
}

.ga-werkwijze__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--ga-font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--ga-accent-red);
    margin-bottom: 24px;
}

.ga-werkwijze__eq {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 14px;
}

.ga-werkwijze__eq span {
    display: block;
    width: 2.5px;
    background: var(--ga-accent-red);
    border-radius: 1px;
    animation: ga-eq-bar 1.2s ease-in-out infinite alternate;
}

.ga-werkwijze__eq span:nth-child(1) { height: 30%; animation-delay: 0s; }
.ga-werkwijze__eq span:nth-child(2) { height: 60%; animation-delay: 0.12s; }
.ga-werkwijze__eq span:nth-child(3) { height: 40%; animation-delay: 0.24s; }
.ga-werkwijze__eq span:nth-child(4) { height: 75%; animation-delay: 0.36s; }
.ga-werkwijze__eq span:nth-child(5) { height: 50%; animation-delay: 0.48s; }

.ga-werkwijze__title {
    font-family: var(--ga-font-display);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--ga-text-primary);
}

.ga-werkwijze__subtitle {
    font-family: var(--ga-font-body);
    font-size: 15px;
    line-height: 1.7;
    color: var(--ga-text-secondary);
    margin-top: 14px;
}

/* ═══════════════════════════════════════════
   WAVEFORM TIMELINE
   ═══════════════════════════════════════════ */

/* ── Horizontal bar with nodes ── */
.ga-wf__bar {
    position: relative;
    height: 200px;
    margin: 0 60px;
    display: flex;
    align-items: center;
}

/* Base line */
.ga-wf__line {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 2px;
    background: var(--ga-border-light);
    transform: translateY(-50%);
    border-radius: 1px;
}

.ga-wf__line-fill {
    height: 100%;
    width: 0%;
    background: var(--ga-accent-red);
    border-radius: 1px;
    box-shadow: 0 0 8px rgba(187, 10, 48, 0.4);
    /* transition controlled by JS */
}

/* ── Node (step point on timeline) ── */
.ga-wf__node {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    border: none;
    background: none;
    cursor: pointer;
    z-index: 2;
    padding: 0;
}

/* Pulse ring */
.ga-wf__pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 56px;
    height: 56px;
    margin: -60px 0 0 -28px;
    border-radius: 50%;
    border: 2px solid var(--ga-accent-red);
    opacity: 0;
    transform: scale(0.6);
    transition: all 0.5s var(--ga-transition-smooth);
    pointer-events: none;
}

.ga-wf__node.is-active .ga-wf__pulse {
    opacity: 0.2;
    transform: scale(1);
    animation: ga-wf-pulse 2s ease-out infinite;
}

@keyframes ga-wf-pulse {
    0%   { opacity: 0.25; transform: scale(1); }
    100% { opacity: 0; transform: scale(1.8); }
}

/* EQ bars above the node — audio signature */
.ga-wf__node-eq {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 40px;
    margin-bottom: 8px;
    opacity: 0;
    transform: scaleY(0.3);
    transform-origin: bottom;
    transition: all 0.5s var(--ga-transition-smooth);
}

.ga-wf__node.is-active .ga-wf__node-eq {
    opacity: 1;
    transform: scaleY(1);
}

.ga-wf__node-eq span {
    display: block;
    width: 3px;
    background: var(--ga-accent-red);
    border-radius: 2px;
    animation: ga-eq-bar 1s ease-in-out infinite alternate;
    animation-play-state: paused;
}

.ga-wf__node.is-active .ga-wf__node-eq span {
    animation-play-state: running;
}

.ga-wf__node-eq span:nth-child(1) { height: 35%; animation-delay: 0s; }
.ga-wf__node-eq span:nth-child(2) { height: 70%; animation-delay: 0.1s; }
.ga-wf__node-eq span:nth-child(3) { height: 100%; animation-delay: 0.2s; }
.ga-wf__node-eq span:nth-child(4) { height: 65%; animation-delay: 0.3s; }
.ga-wf__node-eq span:nth-child(5) { height: 40%; animation-delay: 0.4s; }

/* Icon circle */
.ga-wf__node-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--ga-bg-primary);
    border: 2px solid var(--ga-border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ga-text-muted);
    transition: all 0.45s var(--ga-transition-smooth);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.ga-wf__node-icon svg {
    width: 20px;
    height: 20px;
    display: block;
}

.ga-wf__node.is-active .ga-wf__node-icon {
    background: var(--ga-accent-red);
    border-color: var(--ga-accent-red);
    color: #ffffff;
    box-shadow: 0 6px 24px rgba(187, 10, 48, 0.3);
    transform: scale(1.1);
}

.ga-wf__node:hover:not(.is-active) .ga-wf__node-icon {
    border-color: var(--ga-accent-red);
    color: var(--ga-accent-red);
}

/* Label below node */
.ga-wf__node-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    margin-top: 10px;
    white-space: nowrap;
}

.ga-wf__node-num {
    font-family: var(--ga-font-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--ga-text-muted);
    transition: color 0.3s var(--ga-transition);
}

.ga-wf__node.is-active .ga-wf__node-num {
    color: var(--ga-accent-red);
}

.ga-wf__node-title {
    font-family: var(--ga-font-display);
    font-size: 12px;
    font-weight: 600;
    color: var(--ga-text-secondary);
    transition: color 0.3s var(--ga-transition);
    max-width: 140px;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ga-wf__node.is-active .ga-wf__node-title {
    color: var(--ga-text-primary);
}

/* ── Detail card below timeline ── */
.ga-wf__detail {
    position: relative;
    margin-top: 48px;
    min-height: 320px;
}

.ga-wf__card {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 0.45fr 1fr;
    border-radius: 20px;
    overflow: hidden;
    background: var(--ga-bg-dark);
    opacity: 0;
    transform: translateY(20px) scale(0.98);
    transition: opacity 0.5s var(--ga-transition),
                transform 0.55s var(--ga-transition-smooth);
    pointer-events: none;
}

.ga-wf__card.is-active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
    position: relative;
}

/* Card image */
.ga-wf__card-media {
    position: relative;
    overflow: hidden;
}

.ga-wf__card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ga-transition-smooth);
}

.ga-wf__card.is-active .ga-wf__card-media img {
    transform: scale(1.03);
}

/* Card content */
.ga-wf__card-content {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ga-wf__card-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.ga-wf__card-num {
    font-family: var(--ga-font-display);
    font-size: 40px;
    font-weight: 700;
    color: var(--ga-accent-red);
    line-height: 1;
    opacity: 0.3;
}

.ga-wf__card-title {
    font-family: var(--ga-font-display);
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.ga-wf__card-text {
    font-family: var(--ga-font-body);
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.65);
    max-width: 460px;
}

/* Legacy selectors cleanup */
.ga-werkwijze__float-wave { display: none; }
.ga-werkwijze__connector { display: none; }

/* --------------------------------------------------------------------------
   7. GELUIDSIDENTITEIT SECTION — White with image
   -------------------------------------------------------------------------- */
/* ── Geluidsidentiteit — section ── */
.ga-section-geluid {
    background: var(--ga-bg-primary);
}

/* ═══ HERO ═══ */
.ga-geluid__hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.ga-geluid__hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.ga-geluid__hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(26, 29, 33, 0.95) 0%,
        rgba(26, 29, 33, 0.6) 40%,
        rgba(26, 29, 33, 0.25) 100%
    );
}

/* Large floating soundwave behind hero content */
.ga-geluid__hero-wave {
    position: absolute;
    bottom: 60px;
    right: 5%;
    display: flex;
    align-items: flex-end;
    gap: 5px;
    height: 120px;
    opacity: 0.06;
    z-index: 1;
}

.ga-geluid__hero-wave span {
    display: block;
    width: 5px;
    background: #ffffff;
    border-radius: 3px;
    animation: ga-eq-bar 1.4s ease-in-out infinite alternate;
}

.ga-geluid__hero-wave span:nth-child(1)  { height: 20%; animation-delay: 0s; }
.ga-geluid__hero-wave span:nth-child(2)  { height: 45%; animation-delay: 0.08s; }
.ga-geluid__hero-wave span:nth-child(3)  { height: 30%; animation-delay: 0.16s; }
.ga-geluid__hero-wave span:nth-child(4)  { height: 65%; animation-delay: 0.24s; }
.ga-geluid__hero-wave span:nth-child(5)  { height: 40%; animation-delay: 0.32s; }
.ga-geluid__hero-wave span:nth-child(6)  { height: 80%; animation-delay: 0.4s; }
.ga-geluid__hero-wave span:nth-child(7)  { height: 55%; animation-delay: 0.48s; }
.ga-geluid__hero-wave span:nth-child(8)  { height: 90%; animation-delay: 0.56s; }
.ga-geluid__hero-wave span:nth-child(9)  { height: 60%; animation-delay: 0.64s; }
.ga-geluid__hero-wave span:nth-child(10) { height: 100%; animation-delay: 0.72s; }
.ga-geluid__hero-wave span:nth-child(11) { height: 70%; animation-delay: 0.8s; }
.ga-geluid__hero-wave span:nth-child(12) { height: 50%; animation-delay: 0.88s; }
.ga-geluid__hero-wave span:nth-child(13) { height: 85%; animation-delay: 0.96s; }
.ga-geluid__hero-wave span:nth-child(14) { height: 35%; animation-delay: 1.04s; }
.ga-geluid__hero-wave span:nth-child(15) { height: 60%; animation-delay: 1.12s; }
.ga-geluid__hero-wave span:nth-child(16) { height: 25%; animation-delay: 1.2s; }

/* Hero content */
.ga-geluid__hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding-bottom: 72px;
}

.ga-geluid__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--ga-font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--ga-accent-red);
    margin-bottom: 20px;
}

.ga-geluid__eq {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 14px;
}

.ga-geluid__eq span {
    display: block;
    width: 2.5px;
    background: var(--ga-accent-red);
    border-radius: 1px;
    animation: ga-eq-bar 1.2s ease-in-out infinite alternate;
}

.ga-geluid__eq span:nth-child(1) { height: 30%; animation-delay: 0s; }
.ga-geluid__eq span:nth-child(2) { height: 60%; animation-delay: 0.12s; }
.ga-geluid__eq span:nth-child(3) { height: 40%; animation-delay: 0.24s; }
.ga-geluid__eq span:nth-child(4) { height: 75%; animation-delay: 0.36s; }
.ga-geluid__eq span:nth-child(5) { height: 50%; animation-delay: 0.48s; }

.ga-geluid__title {
    font-family: var(--ga-font-display);
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin-bottom: 24px;
}

.ga-geluid__intro {
    font-family: var(--ga-font-body);
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    max-width: 540px;
}

/* ═══ BODY ═══ */
.ga-geluid__body {
    padding: 0 0 120px;
    position: relative;
}

/* ── Quote card — floats upward into the hero ── */
.ga-geluid__quote {
    position: relative;
    margin-top: -48px;
    padding: 40px 48px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 16px 56px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--ga-border);
    z-index: 3;
}

.ga-geluid__quote-mark {
    color: var(--ga-accent-red);
    opacity: 0.15;
    margin-bottom: 12px;
}

.ga-geluid__quote-mark svg { display: block; }

.ga-geluid__quote-text {
    font-family: var(--ga-font-display);
    font-size: clamp(1.1rem, 1.6vw, 1.35rem);
    font-weight: 500;
    font-style: italic;
    color: var(--ga-text-primary);
    line-height: 1.65;
    max-width: 720px;
}

.ga-geluid__quote-wave {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 16px;
    margin-top: 24px;
    opacity: 0.2;
}

.ga-geluid__quote-wave span {
    display: block;
    width: 3px;
    background: var(--ga-accent-red);
    border-radius: 2px;
    animation: ga-eq-bar 1.2s ease-in-out infinite alternate;
}

.ga-geluid__quote-wave span:nth-child(1) { height: 30%; animation-delay: 0s; }
.ga-geluid__quote-wave span:nth-child(2) { height: 60%; animation-delay: 0.12s; }
.ga-geluid__quote-wave span:nth-child(3) { height: 40%; animation-delay: 0.24s; }
.ga-geluid__quote-wave span:nth-child(4) { height: 75%; animation-delay: 0.36s; }
.ga-geluid__quote-wave span:nth-child(5) { height: 50%; animation-delay: 0.48s; }
.ga-geluid__quote-wave span:nth-child(6) { height: 65%; animation-delay: 0.6s; }
.ga-geluid__quote-wave span:nth-child(7) { height: 35%; animation-delay: 0.72s; }

/* ── Editorial grid ── */
.ga-geluid__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 64px;
}

.ga-geluid__block {
    padding: 36px 32px;
    background: var(--ga-bg-secondary);
    border-radius: 14px;
    border: 1px solid var(--ga-border);
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ga-transition);
}

.ga-geluid__block::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--ga-accent-red);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.5s var(--ga-transition-smooth);
    border-radius: 2px;
}

.ga-geluid__block:hover::before {
    transform: scaleY(1);
}

.ga-geluid__block:hover {
    border-color: rgba(187, 10, 48, 0.12);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
    transform: translateY(-3px);
}

.ga-geluid__block-num {
    font-family: var(--ga-font-display);
    font-size: 36px;
    font-weight: 700;
    color: rgba(187, 10, 48, 0.08);
    line-height: 1;
    margin-bottom: 16px;
    display: block;
    transition: color 0.4s var(--ga-transition);
}

.ga-geluid__block:hover .ga-geluid__block-num {
    color: rgba(187, 10, 48, 0.18);
}

.ga-geluid__block-title {
    font-family: var(--ga-font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--ga-text-primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.ga-geluid__block-text {
    font-family: var(--ga-font-body);
    font-size: 14px;
    line-height: 1.75;
    color: var(--ga-text-secondary);
}

/* ── Footer: brands + CTA ── */
.ga-geluid__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 64px;
    padding-top: 40px;
    border-top: 1px solid var(--ga-border);
    gap: 32px;
    flex-wrap: wrap;
}

.ga-geluid__brands {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.ga-geluid__brands-label {
    font-family: var(--ga-font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ga-text-muted);
    margin-right: 8px;
}

.ga-geluid__brand-tag {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    border-radius: 100px;
    background: var(--ga-bg-secondary);
    border: 1px solid var(--ga-border);
    font-family: var(--ga-font-body);
    font-size: 12px;
    font-weight: 600;
    color: var(--ga-text-secondary);
    letter-spacing: 0.02em;
    transition: all 0.3s var(--ga-transition);
}

.ga-geluid__brand-tag:hover {
    border-color: var(--ga-accent-red);
    color: var(--ga-accent-red);
    background: var(--ga-accent-red-subtle);
    transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   8. REVIEWS SECTION — Soft gray
   -------------------------------------------------------------------------- */
/* ── Reviews — section ── */
.ga-section-reviews {
    padding: 140px 0;
    background: var(--ga-bg-primary);
    position: relative;
}

/* ── Header ── */
.ga-rv__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 64px;
}

.ga-rv__header-left { max-width: 520px; }

.ga-rv__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--ga-font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--ga-accent-red);
    margin-bottom: 20px;
}

.ga-rv__eq {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 14px;
}

.ga-rv__eq span {
    display: block;
    width: 2.5px;
    background: var(--ga-accent-red);
    border-radius: 1px;
    animation: ga-eq-bar 1.2s ease-in-out infinite alternate;
}

.ga-rv__eq span:nth-child(1) { height: 30%; animation-delay: 0s; }
.ga-rv__eq span:nth-child(2) { height: 60%; animation-delay: 0.12s; }
.ga-rv__eq span:nth-child(3) { height: 40%; animation-delay: 0.24s; }
.ga-rv__eq span:nth-child(4) { height: 75%; animation-delay: 0.36s; }
.ga-rv__eq span:nth-child(5) { height: 50%; animation-delay: 0.48s; }

.ga-rv__title {
    font-family: var(--ga-font-display);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--ga-text-primary);
    margin-bottom: 12px;
}

.ga-rv__title strong { font-weight: 700; }

.ga-rv__subtitle {
    font-family: var(--ga-font-body);
    font-size: 15px;
    line-height: 1.7;
    color: var(--ga-text-secondary);
}

/* ── Floating Google badge ── */
.ga-rv__google-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 28px;
    background: #ffffff;
    border: 1px solid var(--ga-border);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    text-decoration: none;
    color: inherit;
    flex-shrink: 0;
    transition: all 0.4s var(--ga-transition);
}

.ga-rv__google-badge:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.ga-rv__google-badge svg { display: block; flex-shrink: 0; }

.ga-rv__google-badge-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ga-rv__google-badge-score {
    font-family: var(--ga-font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--ga-text-primary);
    line-height: 1;
}

.ga-rv__google-badge-stars {
    color: #FBBC05;
    font-size: 14px;
    letter-spacing: 2px;
}

.ga-rv__google-badge-count {
    font-family: var(--ga-font-body);
    font-size: 12px;
    color: var(--ga-text-muted);
    margin-top: 2px;
}

/* ── Staggered floating card stack ── */
.ga-rv__stack {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.ga-rv__card:nth-child(even) {
    transform: translateY(24px);
}

.ga-rv__card {
    position: relative;
    padding: 32px;
    background: #ffffff;
    border: 1px solid var(--ga-border);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.45s var(--ga-transition-smooth);
    overflow: hidden;
}

.ga-rv__card:hover {
    border-color: rgba(187, 10, 48, 0.15);
    transform: translateY(-4px) !important;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

/* Source badge */
.ga-rv__card-source {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--ga-bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.ga-rv__card-source svg { display: block; }

/* Stars */
.ga-rv__card-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 16px;
}

.ga-rv__star {
    font-size: 14px;
    color: #FBBC05;
    line-height: 1;
}

/* Text */
.ga-rv__card-text {
    font-family: var(--ga-font-body);
    font-size: 14px;
    line-height: 1.75;
    color: var(--ga-text-secondary);
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Author */
.ga-rv__card-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ga-rv__card-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--ga-bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ga-font-display);
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    flex-shrink: 0;
}

.ga-rv__card-name {
    font-family: var(--ga-font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--ga-text-primary);
}

/* ── Footer CTA ── */
.ga-rv__footer {
    display: flex;
    justify-content: center;
    margin-top: 56px;
}

/* --------------------------------------------------------------------------
   9. UPGRADES CTA SECTION — Dark accent
   -------------------------------------------------------------------------- */
/* ── Upgrades CTA — Interactive stacked panels + content ── */
.ga-ucta {
    padding: 120px 0;
    background: var(--ga-bg-dark);
    position: relative;
    overflow: hidden;
}

/* Ambient spectrum */
.ga-ucta__ambient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 5px;
    height: 180px;
    opacity: 0.03;
    pointer-events: none;
    z-index: 0;
}

.ga-ucta__ambient span {
    flex: 1;
    max-width: 6px;
    background: #ffffff;
    border-radius: 3px 3px 0 0;
    animation: ga-eq-bar 1.6s ease-in-out infinite alternate;
}

.ga-ucta__ambient span:nth-child(1)  { height: 15%; animation-delay: 0s; }
.ga-ucta__ambient span:nth-child(2)  { height: 40%; animation-delay: 0.08s; }
.ga-ucta__ambient span:nth-child(3)  { height: 25%; animation-delay: 0.16s; }
.ga-ucta__ambient span:nth-child(4)  { height: 55%; animation-delay: 0.24s; }
.ga-ucta__ambient span:nth-child(5)  { height: 35%; animation-delay: 0.32s; }
.ga-ucta__ambient span:nth-child(6)  { height: 70%; animation-delay: 0.4s; }
.ga-ucta__ambient span:nth-child(7)  { height: 45%; animation-delay: 0.48s; }
.ga-ucta__ambient span:nth-child(8)  { height: 80%; animation-delay: 0.56s; }
.ga-ucta__ambient span:nth-child(9)  { height: 55%; animation-delay: 0.64s; }
.ga-ucta__ambient span:nth-child(10) { height: 90%; animation-delay: 0.72s; }
.ga-ucta__ambient span:nth-child(11) { height: 60%; animation-delay: 0.8s; }
.ga-ucta__ambient span:nth-child(12) { height: 40%; animation-delay: 0.88s; }
.ga-ucta__ambient span:nth-child(13) { height: 70%; animation-delay: 0.96s; }
.ga-ucta__ambient span:nth-child(14) { height: 25%; animation-delay: 1.04s; }

/* ── Layout ── */
.ga-ucta__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* ── Content side ── */
.ga-ucta__content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ga-ucta__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--ga-font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--ga-accent-red);
    margin-bottom: 20px;
}

.ga-ucta__eq {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 14px;
}

.ga-ucta__eq span {
    display: block;
    width: 2.5px;
    background: var(--ga-accent-red);
    border-radius: 1px;
    animation: ga-eq-bar 1.2s ease-in-out infinite alternate;
}

.ga-ucta__eq span:nth-child(1) { height: 30%; animation-delay: 0s; }
.ga-ucta__eq span:nth-child(2) { height: 60%; animation-delay: 0.12s; }
.ga-ucta__eq span:nth-child(3) { height: 40%; animation-delay: 0.24s; }
.ga-ucta__eq span:nth-child(4) { height: 75%; animation-delay: 0.36s; }
.ga-ucta__eq span:nth-child(5) { height: 50%; animation-delay: 0.48s; }

.ga-ucta__title {
    font-family: var(--ga-font-display);
    font-size: clamp(2rem, 3vw, 2.75rem);
    font-weight: 300;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin-bottom: 20px;
}

.ga-ucta__title strong { font-weight: 700; }

.ga-ucta__text {
    font-family: var(--ga-font-body);
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 28px;
    max-width: 480px;
}

/* USP pills */
.ga-ucta__usps {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}

.ga-ucta__usp {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    font-family: var(--ga-font-body);
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.65);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 100px;
}

.ga-ucta__usp svg {
    display: block;
    color: var(--ga-accent-red);
}

/* Actions */
.ga-ucta__actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.ga-ucta__secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--ga-font-body);
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: color 0.3s var(--ga-transition);
}

.ga-ucta__secondary svg { display: block; transition: transform 0.3s var(--ga-transition); }

.ga-ucta__secondary:hover {
    color: #ffffff;
}

.ga-ucta__secondary:hover svg {
    transform: translateX(3px);
}

/* ── Scene — stacked panels ── */
.ga-ucta__scene {
    position: relative;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: crosshair;
}

.ga-ucta__stack {
    position: relative;
    width: 320px;
    height: 400px;
    transform-style: preserve-3d;
    will-change: transform;
}

.ga-ucta__panel {
    position: absolute;
    inset: 0;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    backface-visibility: hidden;
    will-change: transform, opacity;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.4s var(--ga-transition);
}

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

.ga-ucta__panel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(26, 29, 33, 0.2) 0%, rgba(26, 29, 33, 0.8) 100%);
    z-index: 1;
}

.ga-ucta__panel-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 2;
    display: flex;
    align-items: baseline;
    gap: 10px;
    font-family: var(--ga-font-display);
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

.ga-ucta__panel-num {
    font-size: 11px;
    font-weight: 700;
    color: var(--ga-accent-red);
    letter-spacing: 0.1em;
    opacity: 0.6;
}

/* Glow under stack */
.ga-ucta__glow {
    position: absolute;
    bottom: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 200px;
    background: radial-gradient(ellipse at center, rgba(187, 10, 48, 0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* --------------------------------------------------------------------------
   10. PARTNERS SECTION — White
   -------------------------------------------------------------------------- */
.ga-section-partners {
    padding: 120px 0;
    background: var(--ga-bg-primary);
}

.ga-partners__header {
    text-align: center;
    margin-bottom: 64px;
}

.ga-partners__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    background: var(--ga-border);
    border-radius: var(--ga-radius-lg);
    overflow: hidden;
}

.ga-partners__item {
    background: var(--ga-bg-primary);
    padding: 48px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.5s var(--ga-transition);
    min-height: 160px;
    position: relative;
    overflow: hidden;
}

.ga-partners__item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--ga-gradient-radial);
    opacity: 0;
    transition: opacity 0.5s var(--ga-transition);
}

.ga-partners__item:hover::before {
    opacity: 1;
}

.ga-partners__item:hover {
    background: var(--ga-bg-secondary);
}

.ga-partners__item-logo {
    width: 100%;
    max-width: 120px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.ga-partners__item-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.4);
    opacity: 0.5;
    transition: all 0.4s var(--ga-transition);
}

.ga-partners__item:hover .ga-partners__item-logo img {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
}

.ga-partners__item-name {
    font-family: var(--ga-font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--ga-text-muted);
    letter-spacing: 0.02em;
    transition: color 0.4s var(--ga-transition);
    position: relative;
    z-index: 1;
}

.ga-partners__item:hover .ga-partners__item-name {
    color: var(--ga-text-primary);
}

/* --------------------------------------------------------------------------
   11. CONTACT SECTION — Light gray
   -------------------------------------------------------------------------- */
/* ── Contact — section ── */
.ga-section-contact {
    padding: 140px 0;
    background: var(--ga-bg-primary);
    position: relative;
}

/* ── Header ── */
.ga-contact__header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 64px;
}

.ga-contact__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--ga-font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--ga-accent-red);
    margin-bottom: 20px;
}

.ga-contact__eq {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 14px;
}

.ga-contact__eq span {
    display: block;
    width: 2.5px;
    background: var(--ga-accent-red);
    border-radius: 1px;
    animation: ga-eq-bar 1.2s ease-in-out infinite alternate;
}

.ga-contact__eq span:nth-child(1) { height: 30%; animation-delay: 0s; }
.ga-contact__eq span:nth-child(2) { height: 60%; animation-delay: 0.12s; }
.ga-contact__eq span:nth-child(3) { height: 40%; animation-delay: 0.24s; }
.ga-contact__eq span:nth-child(4) { height: 75%; animation-delay: 0.36s; }
.ga-contact__eq span:nth-child(5) { height: 50%; animation-delay: 0.48s; }

.ga-contact__title {
    font-family: var(--ga-font-display);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--ga-text-primary);
    margin-bottom: 12px;
}

.ga-contact__subtitle {
    font-family: var(--ga-font-body);
    font-size: 15px;
    line-height: 1.7;
    color: var(--ga-text-secondary);
}

/* ── Grid ── */
.ga-contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 48px;
    align-items: start;
}

/* ── Floating contact cards ── */
.ga-contact__cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ga-contact__card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: #ffffff;
    border: 1px solid var(--ga-border);
    border-radius: 14px;
    text-decoration: none;
    color: inherit;
    transition: all 0.35s var(--ga-transition);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
}

.ga-contact__card:hover {
    border-color: rgba(187, 10, 48, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px) translateX(4px);
}

.ga-contact__card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(187, 10, 48, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--ga-accent-red);
    transition: all 0.35s var(--ga-transition);
}

.ga-contact__card-icon svg { display: block; }

.ga-contact__card:hover .ga-contact__card-icon {
    background: var(--ga-accent-red);
    color: #ffffff;
}

.ga-contact__card-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.ga-contact__card-label {
    font-family: var(--ga-font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ga-text-muted);
}

.ga-contact__card-value {
    font-family: var(--ga-font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--ga-text-primary);
    line-height: 1.5;
}

/* Staggered floating offset */
.ga-contact__card--phone  { margin-left: 16px; }
.ga-contact__card--email  { margin-left: 8px; }
.ga-contact__card--hours  { margin-left: 24px; }

/* ── Floating badges ── */
.ga-contact__floats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
    margin-left: 12px;
}

/* Google Reviews badge */
.ga-contact__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: #ffffff;
    border: 1px solid var(--ga-border);
    border-radius: 100px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    transition: all 0.35s var(--ga-transition);
}

.ga-contact__badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

.ga-contact__badge svg { display: block; flex-shrink: 0; }

.ga-contact__badge-body {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ga-contact__badge-rating {
    font-family: var(--ga-font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--ga-text-primary);
}

.ga-contact__badge-stars {
    color: #FBBC05;
    font-size: 12px;
    margin-left: 4px;
}

.ga-contact__badge-count {
    font-size: 11px;
    color: var(--ga-text-muted);
}

/* WhatsApp badge */
.ga-contact__badge--wa {
    background: #ffffff;
    gap: 8px;
}

.ga-contact__badge--wa span {
    font-family: var(--ga-font-body);
    font-size: 13px;
    font-weight: 600;
    color: #25D366;
}

.ga-contact__badge--wa:hover {
    background: #25D366;
    border-color: #25D366;
}

.ga-contact__badge--wa:hover span {
    color: #ffffff;
}

.ga-contact__badge--wa:hover svg {
    fill: #ffffff;
}

/* Social icons */
.ga-contact__socials {
    display: flex;
    gap: 8px;
}

.ga-contact__social {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid var(--ga-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ga-text-secondary);
    text-decoration: none;
    transition: all 0.3s var(--ga-transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.ga-contact__social:hover {
    background: var(--ga-accent-red);
    border-color: var(--ga-accent-red);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(187, 10, 48, 0.2);
}

.ga-contact__social svg { display: block; }

/* ── Map ── */
.ga-contact__map {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border: 1px solid var(--ga-border);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.06);
}

.ga-contact__map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.ga-contact__map-placeholder {
    width: 100%;
    height: 100%;
    background: var(--ga-bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    color: var(--ga-text-muted);
    font-size: 13px;
}

/* --------------------------------------------------------------------------
   CAR AUDIO MAP — Interactive installation overview
   -------------------------------------------------------------------------- */
.ga-section-carmap {
    padding: 140px 0;
    background: var(--ga-bg-primary);
    position: relative;
    overflow: hidden;
}

/* Header */
.ga-carmap__header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
}

.ga-carmap__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--ga-font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--ga-accent-red);
    margin-bottom: 20px;
}

.ga-carmap__eq {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 14px;
}

.ga-carmap__eq span {
    display: block;
    width: 2.5px;
    background: var(--ga-accent-red);
    border-radius: 1px;
    animation: ga-eq-bar 1.2s ease-in-out infinite alternate;
}

.ga-carmap__eq span:nth-child(1) { height: 30%; animation-delay: 0s; }
.ga-carmap__eq span:nth-child(2) { height: 60%; animation-delay: 0.12s; }
.ga-carmap__eq span:nth-child(3) { height: 40%; animation-delay: 0.24s; }
.ga-carmap__eq span:nth-child(4) { height: 75%; animation-delay: 0.36s; }
.ga-carmap__eq span:nth-child(5) { height: 50%; animation-delay: 0.48s; }

.ga-carmap__title {
    font-family: var(--ga-font-display);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--ga-text-primary);
    margin-bottom: 12px;
}

.ga-carmap__title strong { font-weight: 700; }

.ga-carmap__subtitle {
    font-family: var(--ga-font-body);
    font-size: 15px;
    line-height: 1.7;
    color: var(--ga-text-secondary);
}

/* ── Scene: car + info side by side ── */
.ga-carmap__scene {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    min-height: 600px;
}

/* ── Car container ── */
.ga-carmap__car {
    position: relative;
    max-width: 440px;
    margin: 0 auto;
    perspective: 800px;
}

.ga-carmap__car-svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(187, 10, 48, 0.08));
    animation: ga-carmap-float 6s ease-in-out infinite;
}

@keyframes ga-carmap-float {
    0%, 100% { transform: translateY(0) rotateX(2deg); }
    50%      { transform: translateY(-8px) rotateX(0deg); }
}

/* ── Hotspot buttons ── */
.ga-carmap__spot {
    position: absolute;
    transform: translate(-50%, -50%);
    border: none;
    background: none;
    cursor: pointer;
    z-index: 3;
    padding: 0;
}

/* Pulse ring */
.ga-carmap__spot-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 52px;
    height: 52px;
    margin: -26px 0 0 -26px;
    border-radius: 50%;
    border: 2px solid var(--ga-accent-red);
    opacity: 0.3;
    animation: ga-carmap-pulse 2.5s ease-out infinite;
}

@keyframes ga-carmap-pulse {
    0%   { transform: scale(0.8); opacity: 0.4; }
    100% { transform: scale(1.8); opacity: 0; }
}

/* Dot with icon */
.ga-carmap__spot-dot {
    position: relative;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--ga-accent-red);
    border: 2px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.4s var(--ga-transition-smooth);
    box-shadow: 0 4px 16px rgba(187, 10, 48, 0.25);
}

.ga-carmap__spot-dot svg { display: block; width: 16px; height: 16px; }

.ga-carmap__spot:hover .ga-carmap__spot-dot,
.ga-carmap__spot.is-active .ga-carmap__spot-dot {
    transform: scale(1.15);
    background: var(--ga-accent-red);
    border-color: #ffffff;
    box-shadow: 0 0 24px rgba(187, 10, 48, 0.4);
}

.ga-carmap__spot.is-active .ga-carmap__spot-pulse {
    animation: none;
    opacity: 0;
}

/* ── Info panel ── */
.ga-carmap__info {
    position: relative;
    min-height: 300px;
}

.ga-carmap__info-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    height: 300px;
    color: var(--ga-text-muted);
    font-family: var(--ga-font-body);
    font-size: 14px;
    transition: opacity 0.3s var(--ga-transition);
}

.ga-carmap__info.has-active .ga-carmap__info-empty {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    inset: 0;
}

/* Empty state EQ */
.ga-carmap__info-empty-eq {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 36px;
    opacity: 0.3;
}

.ga-carmap__info-empty-eq span {
    display: block;
    width: 4px;
    background: var(--ga-accent-red);
    border-radius: 2px;
    animation: ga-eq-bar 1.4s ease-in-out infinite alternate;
}

.ga-carmap__info-empty-eq span:nth-child(1) { height: 25%; animation-delay: 0s; }
.ga-carmap__info-empty-eq span:nth-child(2) { height: 55%; animation-delay: 0.1s; }
.ga-carmap__info-empty-eq span:nth-child(3) { height: 35%; animation-delay: 0.2s; }
.ga-carmap__info-empty-eq span:nth-child(4) { height: 70%; animation-delay: 0.3s; }
.ga-carmap__info-empty-eq span:nth-child(5) { height: 45%; animation-delay: 0.4s; }
.ga-carmap__info-empty-eq span:nth-child(6) { height: 80%; animation-delay: 0.5s; }
.ga-carmap__info-empty-eq span:nth-child(7) { height: 30%; animation-delay: 0.6s; }

/* Individual info panels */
.ga-carmap__info-panel {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 36px;
    background: var(--ga-bg-secondary);
    border: 1px solid var(--ga-border);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
    opacity: 0;
    transform: translateY(20px) scale(0.96);
    transition: all 0.5s var(--ga-transition-smooth);
    pointer-events: none;
}

.ga-carmap__info-panel.is-active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
    position: relative;
}

.ga-carmap__info-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--ga-accent-red);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(187, 10, 48, 0.3);
}

.ga-carmap__info-icon svg {
    display: block;
    width: 24px;
    height: 24px;
}

.ga-carmap__info-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ga-carmap__info-num {
    font-family: var(--ga-font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--ga-accent-red);
}

.ga-carmap__info-title {
    font-family: var(--ga-font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--ga-text-primary);
    line-height: 1.2;
}

.ga-carmap__info-text {
    font-family: var(--ga-font-body);
    font-size: 14px;
    line-height: 1.8;
    color: var(--ga-text-secondary);
    max-width: 400px;
}

/* --------------------------------------------------------------------------
   TESTIMONIALS PREMIUM — Cinematic dark review cards
   -------------------------------------------------------------------------- */
.ga-section-tm {
    padding: 140px 0;
    background: var(--ga-bg-dark);
    position: relative;
    overflow: hidden;
}

/* Ambient spectrum behind everything */
.ga-tm__ambient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 6px;
    height: 220px;
    opacity: 0.03;
    pointer-events: none;
    z-index: 0;
}

.ga-tm__ambient span {
    flex: 1;
    max-width: 8px;
    background: #ffffff;
    border-radius: 4px 4px 0 0;
    animation: ga-eq-bar 1.8s ease-in-out infinite alternate;
}

.ga-tm__ambient span:nth-child(1)  { height: 15%; animation-delay: 0s; }
.ga-tm__ambient span:nth-child(2)  { height: 40%; animation-delay: 0.08s; }
.ga-tm__ambient span:nth-child(3)  { height: 25%; animation-delay: 0.16s; }
.ga-tm__ambient span:nth-child(4)  { height: 55%; animation-delay: 0.24s; }
.ga-tm__ambient span:nth-child(5)  { height: 35%; animation-delay: 0.32s; }
.ga-tm__ambient span:nth-child(6)  { height: 70%; animation-delay: 0.4s; }
.ga-tm__ambient span:nth-child(7)  { height: 45%; animation-delay: 0.48s; }
.ga-tm__ambient span:nth-child(8)  { height: 85%; animation-delay: 0.56s; }
.ga-tm__ambient span:nth-child(9)  { height: 60%; animation-delay: 0.64s; }
.ga-tm__ambient span:nth-child(10) { height: 100%; animation-delay: 0.72s; }
.ga-tm__ambient span:nth-child(11) { height: 65%; animation-delay: 0.8s; }
.ga-tm__ambient span:nth-child(12) { height: 50%; animation-delay: 0.88s; }
.ga-tm__ambient span:nth-child(13) { height: 75%; animation-delay: 0.96s; }
.ga-tm__ambient span:nth-child(14) { height: 30%; animation-delay: 1.04s; }
.ga-tm__ambient span:nth-child(15) { height: 55%; animation-delay: 1.12s; }
.ga-tm__ambient span:nth-child(16) { height: 20%; animation-delay: 1.2s; }

/* ── Header ── */
.ga-tm__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 48px;
    margin-bottom: 64px;
    position: relative;
    z-index: 1;
}

.ga-tm__header-left {
    max-width: 540px;
}

.ga-tm__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--ga-font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--ga-accent-red);
    margin-bottom: 20px;
}

.ga-tm__eq {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 14px;
}

.ga-tm__eq span {
    display: block;
    width: 2.5px;
    background: var(--ga-accent-red);
    border-radius: 1px;
    animation: ga-eq-bar 1.2s ease-in-out infinite alternate;
}

.ga-tm__eq span:nth-child(1) { height: 30%; animation-delay: 0s; }
.ga-tm__eq span:nth-child(2) { height: 60%; animation-delay: 0.12s; }
.ga-tm__eq span:nth-child(3) { height: 40%; animation-delay: 0.24s; }
.ga-tm__eq span:nth-child(4) { height: 75%; animation-delay: 0.36s; }
.ga-tm__eq span:nth-child(5) { height: 50%; animation-delay: 0.48s; }

.ga-tm__title {
    font-family: var(--ga-font-display);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin-bottom: 14px;
}

.ga-tm__title strong { font-weight: 700; }

.ga-tm__subtitle {
    font-family: var(--ga-font-body);
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
}

/* ── Floating score orb ── */
.ga-tm__orb {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.ga-tm__orb-inner {
    position: relative;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2), 0 0 60px rgba(187, 10, 48, 0.06);
}

.ga-tm__orb-ring {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(187, 10, 48, 0.2);
    animation: ga-carmap-pulse 3s ease-out infinite;
}

.ga-tm__orb-score {
    font-family: var(--ga-font-display);
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.ga-tm__orb-stars {
    font-size: 12px;
    color: #FBBC05;
    letter-spacing: 2px;
}

.ga-tm__orb-label {
    font-family: var(--ga-font-body);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    text-align: center;
    max-width: 100px;
}

.ga-tm__orb-count {
    font-family: var(--ga-font-body);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

/* ── Card grid — staggered masonry ── */
.ga-tm__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}

/* Stagger even cards down */
.ga-tm__card:nth-child(3n+2) {
    transform: translateY(28px);
}

/* ── Card ── */
.ga-tm__card {
    position: relative;
    padding: 32px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s var(--ga-transition-smooth);
}

.ga-tm__card:hover {
    border-color: rgba(187, 10, 48, 0.2);
    transform: translateY(-6px) !important;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25), 0 0 40px rgba(187, 10, 48, 0.06);
}

/* Glow layer */
.ga-tm__card-glow {
    position: absolute;
    bottom: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 180%;
    height: 80%;
    background: radial-gradient(ellipse at center bottom, rgba(187, 10, 48, 0.1) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s var(--ga-transition);
    pointer-events: none;
    z-index: 0;
}

.ga-tm__card:hover .ga-tm__card-glow {
    opacity: 1;
}

/* Badge */
.ga-tm__card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 5px 12px;
    font-family: var(--ga-font-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ga-accent-red);
    background: rgba(187, 10, 48, 0.1);
    border: 1px solid rgba(187, 10, 48, 0.15);
    border-radius: 100px;
    z-index: 2;
}

/* Stars */
.ga-tm__card-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.ga-tm__star {
    font-size: 14px;
    color: #FBBC05;
    line-height: 1;
}

.ga-tm__star--empty {
    color: rgba(255, 255, 255, 0.1);
}

/* Quote text */
.ga-tm__card-text {
    font-family: var(--ga-font-body);
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s var(--ga-transition);
}

.ga-tm__card:hover .ga-tm__card-text {
    color: rgba(255, 255, 255, 0.85);
}

/* Author */
.ga-tm__card-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.ga-tm__card-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--ga-accent-red);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.ga-tm__card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ga-tm__card-avatar span {
    font-family: var(--ga-font-display);
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
}

.ga-tm__card-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.ga-tm__card-name {
    font-family: var(--ga-font-display);
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
}

.ga-tm__card-role {
    font-family: var(--ga-font-body);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Footer — verified + date */
.ga-tm__card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.ga-tm__card-verified {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: var(--ga-font-body);
    font-size: 11px;
    font-weight: 600;
    color: rgba(187, 10, 48, 0.7);
}

.ga-tm__card-verified svg { display: block; }

.ga-tm__card-date {
    font-family: var(--ga-font-body);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.2);
}

/* Card EQ accent — appears on hover */
.ga-tm__card-eq {
    position: absolute;
    bottom: 12px;
    right: 16px;
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 18px;
    opacity: 0;
    transition: opacity 0.5s var(--ga-transition);
    z-index: 1;
}

.ga-tm__card:hover .ga-tm__card-eq {
    opacity: 0.15;
}

.ga-tm__card-eq span {
    display: block;
    width: 2.5px;
    background: var(--ga-accent-red);
    border-radius: 1px;
    animation: ga-eq-bar 1s ease-in-out infinite alternate;
    animation-play-state: paused;
}

.ga-tm__card:hover .ga-tm__card-eq span {
    animation-play-state: running;
}

.ga-tm__card-eq span:nth-child(1) { height: 30%; animation-delay: 0s; }
.ga-tm__card-eq span:nth-child(2) { height: 65%; animation-delay: 0.1s; }
.ga-tm__card-eq span:nth-child(3) { height: 40%; animation-delay: 0.2s; }
.ga-tm__card-eq span:nth-child(4) { height: 80%; animation-delay: 0.3s; }
.ga-tm__card-eq span:nth-child(5) { height: 50%; animation-delay: 0.4s; }

/* --------------------------------------------------------------------------
   STACKED PANELS — Split layout: content + 3D canvas
   -------------------------------------------------------------------------- */
.ga-sp {
    padding: 120px 0;
    background: var(--ga-bg-primary);
    position: relative;
    overflow: hidden;
}

/* ── Split layout ── */
.ga-sp__layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 48px;
    align-items: center;
    max-width: var(--ga-container, 1400px);
    margin: 0 auto;
    padding: 0 48px;
}

/* ── Left content ── */
.ga-sp__content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ga-sp__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--ga-font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--ga-accent-red);
    margin-bottom: 20px;
}

.ga-sp__eq {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 14px;
}

.ga-sp__eq span {
    display: block;
    width: 2.5px;
    background: var(--ga-accent-red);
    border-radius: 1px;
    animation: ga-eq-bar 1.2s ease-in-out infinite alternate;
}

.ga-sp__eq span:nth-child(1) { height: 30%; animation-delay: 0s; }
.ga-sp__eq span:nth-child(2) { height: 60%; animation-delay: 0.12s; }
.ga-sp__eq span:nth-child(3) { height: 40%; animation-delay: 0.24s; }
.ga-sp__eq span:nth-child(4) { height: 75%; animation-delay: 0.36s; }
.ga-sp__eq span:nth-child(5) { height: 50%; animation-delay: 0.48s; }

.ga-sp__title {
    font-family: var(--ga-font-display);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 300;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: var(--ga-text-primary);
    margin-bottom: 20px;
}

.ga-sp__title strong { font-weight: 700; }

.ga-sp__desc {
    font-family: var(--ga-font-body);
    font-size: 15px;
    line-height: 1.75;
    color: var(--ga-text-secondary);
    margin-bottom: 32px;
    max-width: 440px;
}

.ga-sp__hint {
    display: block;
    margin-top: 32px;
    font-family: var(--ga-font-body);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ga-text-muted);
    animation: ga-sp-fade 3s ease-in-out infinite alternate;
}

@keyframes ga-sp-fade {
    0%, 100% { opacity: 0.4; }
    50%      { opacity: 0.7; }
}

/* ── Right: 3D canvas ── */
.ga-sp__canvas {
    position: relative;
    height: 600px;
    background: var(--ga-bg-dark);
    border-radius: 24px;
    overflow: hidden;
    cursor: default;
    user-select: none;
}

.ga-sp__noise {
    position: absolute;
    inset: 0;
    z-index: 5;
    opacity: 0.03;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 128px 128px;
}

.ga-sp__scene {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ga-sp__stack {
    position: relative;
    width: 0;
    height: 0;
    transform-style: preserve-3d;
    will-change: transform;
}

/* ── Panel ── */
.ga-sp__panel {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    pointer-events: none;
    will-change: transform, opacity;
    transform-origin: bottom center;
}

.ga-sp__panel-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.ga-sp__panel-gradient {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.ga-sp__panel-vignette {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.32) 100%);
    z-index: 2;
    pointer-events: none;
}

.ga-sp__panel-label {
    position: absolute;
    bottom: 14px;
    left: 14px;
    right: 14px;
    z-index: 3;
    font-family: var(--ga-font-display);
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    letter-spacing: 0.04em;
}

a.ga-sp__panel-label:hover {
    color: #ffffff;
}

/* ── Focus overlay — slides up from stack ── */
.ga-sp__overlay {
    position: absolute;
    inset: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.ga-sp__overlay.is-active {
    pointer-events: auto;
    opacity: 1;
}

.ga-sp__overlay-card {
    position: relative;
    width: 70%;
    max-width: 380px;
    aspect-ratio: 3 / 4;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4), 0 0 60px rgba(187, 10, 48, 0.1);
    transform: translateY(60px) scale(0.9);
    animation: ga-sp-slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes ga-sp-slideUp {
    to {
        transform: translateY(0) scale(1);
    }
}

.ga-sp__overlay-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.ga-sp__overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 29, 33, 0.7) 0%, transparent 50%);
}

.ga-sp__overlay-label {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 60px;
    font-family: var(--ga-font-display);
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    z-index: 2;
}

.ga-sp__overlay-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
    line-height: 1;
}

.ga-sp__overlay-close:hover {
    background: rgba(187, 10, 48, 0.6);
    border-color: rgba(187, 10, 48, 0.4);
}

/* --------------------------------------------------------------------------
   BRANDS SHOWCASE — Floating cards split layout
   -------------------------------------------------------------------------- */
.ga-brs {
    padding: 140px 0;
    background: var(--ga-bg-primary);
    position: relative;
    overflow: hidden;
}

.ga-brs__layout {
    display: grid;
    grid-template-columns: 0.85fr 1fr;
    gap: 64px;
    align-items: center;
}

/* ── Left content ── */
.ga-brs__content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ga-brs__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--ga-font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--ga-accent-red);
    margin-bottom: 20px;
}

.ga-brs__eq {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 14px;
}

.ga-brs__eq span {
    display: block;
    width: 2.5px;
    background: var(--ga-accent-red);
    border-radius: 1px;
    animation: ga-eq-bar 1.2s ease-in-out infinite alternate;
}

.ga-brs__eq span:nth-child(1) { height: 30%; animation-delay: 0s; }
.ga-brs__eq span:nth-child(2) { height: 60%; animation-delay: 0.12s; }
.ga-brs__eq span:nth-child(3) { height: 40%; animation-delay: 0.24s; }
.ga-brs__eq span:nth-child(4) { height: 75%; animation-delay: 0.36s; }
.ga-brs__eq span:nth-child(5) { height: 50%; animation-delay: 0.48s; }

.ga-brs__title {
    font-family: var(--ga-font-display);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 300;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: var(--ga-text-primary);
    margin-bottom: 20px;
}

.ga-brs__title strong { font-weight: 700; }

.ga-brs__desc {
    font-family: var(--ga-font-body);
    font-size: 15px;
    line-height: 1.75;
    color: var(--ga-text-secondary);
    margin-bottom: 32px;
    max-width: 420px;
}

/* Stat badge */
.ga-brs__stat {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 16px 24px;
    background: var(--ga-bg-secondary);
    border: 1px solid var(--ga-border);
    border-radius: 14px;
    margin-bottom: 28px;
    width: fit-content;
}

.ga-brs__stat-num {
    font-family: var(--ga-font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--ga-accent-red);
    line-height: 1;
}

.ga-brs__stat-label {
    font-family: var(--ga-font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--ga-text-secondary);
    line-height: 1.3;
}

/* ── Right: overlapping panels (like stacked screenshots) ── */
.ga-brs__visual {
    position: relative;
    height: 620px;
}

/* ── Panel — large card with brand content ── */
.ga-brs__panel {
    position: absolute;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    padding: 20px 22px;
    transform: rotate(var(--brs-rot, 0deg));
    animation: ga-brs-drift 7s ease-in-out infinite alternate;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.4s ease;
}

@keyframes ga-brs-drift {
    0%   { translate: 0 0; }
    100% { translate: 0 -5px; }
}

.ga-brs__panel:hover {
    transform: rotate(0deg) translateY(-6px) scale(1.03) !important;
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.1), 0 0 0 2px rgba(187, 10, 48, 0.08);
    z-index: 50 !important;
}

/* Panel header — two rows: top = logo + badge, bottom = name + loc */
.ga-brs__panel-head {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.ga-brs__panel-head-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.ga-brs__panel-logo {
    height: 28px;
    width: auto;
    max-width: 72px;
    object-fit: contain;
}

.ga-brs__panel-badge {
    padding: 4px 10px;
    font-family: var(--ga-font-body);
    font-size: 9px;
    font-weight: 700;
    color: var(--ga-accent-red);
    background: rgba(187, 10, 48, 0.06);
    border-radius: 100px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
}

.ga-brs__panel-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.ga-brs__panel-name {
    font-family: var(--ga-font-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--ga-text-primary);
    line-height: 1.2;
}

.ga-brs__panel-loc {
    font-family: var(--ga-font-body);
    font-size: 10px;
    color: var(--ga-text-muted);
}

/* Sub-brands within panel */
.ga-brs__panel-brands {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ga-brs__panel-sub {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: var(--ga-bg-secondary);
    border-radius: 8px;
    transition: background 0.3s ease;
}

.ga-brs__panel-sub:hover {
    background: rgba(187, 10, 48, 0.04);
}

.ga-brs__panel-sub img {
    height: 18px;
    width: auto;
    max-width: 48px;
    object-fit: contain;
    flex-shrink: 0;
}

.ga-brs__panel-sub-initial {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ga-font-display);
    font-size: 10px;
    font-weight: 700;
    color: var(--ga-text-muted);
    flex-shrink: 0;
}

.ga-brs__panel-sub span {
    font-family: var(--ga-font-body);
    font-size: 12px;
    font-weight: 600;
    color: var(--ga-text-secondary);
    white-space: nowrap;
}

.ga-brs__panel-sub-loc {
    font-size: 10px !important;
    font-weight: 500 !important;
    color: var(--ga-text-muted) !important;
}

/* Floating "Officieel partner" badge */
.ga-brs__float-badge {
    position: absolute;
    top: 10px;
    right: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--ga-accent-red);
    color: #ffffff;
    font-family: var(--ga-font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    border-radius: 100px;
    box-shadow: 0 6px 20px rgba(187, 10, 48, 0.25);
    animation: ga-brs-float 4s ease-in-out infinite alternate;
}

.ga-brs__float-badge svg { display: block; }

@keyframes ga-brs-float {
    0%   { transform: translateY(0); }
    100% { transform: translateY(-8px); }
}

/* --------------------------------------------------------------------------
   FAQ PREMIUM — Split layout with floating elements
   -------------------------------------------------------------------------- */
.ga-faqp {
    padding: 140px 0;
    background: var(--ga-bg-primary);
    position: relative;
    overflow: hidden;
}

.ga-faqp__layout {
    display: grid;
    grid-template-columns: 0.85fr 1fr;
    gap: 64px;
    align-items: start;
}

/* ── Sidebar ── */
.ga-faqp__sidebar {
    position: sticky;
    top: 40px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ga-faqp__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--ga-font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--ga-accent-red);
    margin-bottom: 20px;
}

.ga-faqp__eq {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 14px;
}

.ga-faqp__eq span {
    display: block;
    width: 2.5px;
    background: var(--ga-accent-red);
    border-radius: 1px;
    animation: ga-eq-bar 1.2s ease-in-out infinite alternate;
}

.ga-faqp__eq span:nth-child(1) { height: 30%; animation-delay: 0s; }
.ga-faqp__eq span:nth-child(2) { height: 60%; animation-delay: 0.12s; }
.ga-faqp__eq span:nth-child(3) { height: 40%; animation-delay: 0.24s; }
.ga-faqp__eq span:nth-child(4) { height: 75%; animation-delay: 0.36s; }
.ga-faqp__eq span:nth-child(5) { height: 50%; animation-delay: 0.48s; }

.ga-faqp__title {
    font-family: var(--ga-font-display);
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--ga-text-primary);
    margin-bottom: 14px;
}

.ga-faqp__title strong { font-weight: 700; }

.ga-faqp__subtitle {
    font-family: var(--ga-font-body);
    font-size: 14px;
    line-height: 1.7;
    color: var(--ga-text-secondary);
    margin-bottom: 28px;
    max-width: 380px;
}

/* ── Floating image ── */
.ga-faqp__image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 28px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.ga-faqp__image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

/* Floating badge on image */
.ga-faqp__badge {
    position: absolute;
    bottom: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.ga-faqp__badge-num {
    font-family: var(--ga-font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--ga-accent-red);
    line-height: 1;
}

.ga-faqp__badge-label {
    font-family: var(--ga-font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ga-text-muted);
    margin-top: 4px;
}

/* ── USPs ── */
.ga-faqp__usps {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.ga-faqp__usp {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--ga-font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--ga-text-secondary);
}

.ga-faqp__usp svg {
    display: block;
    flex-shrink: 0;
    color: var(--ga-accent-red);
}

/* ── Accordion ── */
.ga-faqp__accordion {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ga-faqp__item {
    border-bottom: 1px solid var(--ga-border);
}

.ga-faqp__item:first-child {
    border-top: 1px solid var(--ga-border);
}

/* Question button */
.ga-faqp__question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s var(--ga-transition);
}

.ga-faqp__question:hover {
    padding-left: 8px;
}

.ga-faqp__q-num {
    font-family: var(--ga-font-display);
    font-size: 12px;
    font-weight: 700;
    color: var(--ga-accent-red);
    letter-spacing: 0.08em;
    opacity: 0.5;
    flex-shrink: 0;
    transition: opacity 0.3s var(--ga-transition);
}

.ga-faqp__item.is-open .ga-faqp__q-num {
    opacity: 1;
}

.ga-faqp__q-text {
    font-family: var(--ga-font-display);
    font-size: 17px;
    font-weight: 600;
    color: var(--ga-text-primary);
    flex: 1;
    line-height: 1.35;
    transition: color 0.3s var(--ga-transition);
}

.ga-faqp__question:hover .ga-faqp__q-text {
    color: var(--ga-accent-red);
}

/* Plus/minus icon */
.ga-faqp__q-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--ga-bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ga-text-muted);
    transition: all 0.4s var(--ga-transition-smooth);
}

.ga-faqp__q-icon svg {
    display: block;
    transition: transform 0.4s var(--ga-transition-smooth);
}

.ga-faqp__item.is-open .ga-faqp__q-icon {
    background: var(--ga-accent-red);
    color: #ffffff;
}

.ga-faqp__item.is-open .ga-faqp__q-icon svg {
    transform: rotate(45deg);
}

/* Answer — collapsed by default */
.ga-faqp__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ga-transition-smooth);
}

.ga-faqp__item.is-open .ga-faqp__answer {
    max-height: 400px;
}

.ga-faqp__answer-inner {
    padding: 0 0 28px 48px;
}

.ga-faqp__answer-inner p {
    font-family: var(--ga-font-body);
    font-size: 14px;
    line-height: 1.8;
    color: var(--ga-text-secondary);
    max-width: 520px;
}

/* --------------------------------------------------------------------------
   Responsive — Tablet
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .ga-container {
        padding: 0 32px;
    }

    .ga-hero__grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-top: 160px;
        padding-bottom: 40px;
    }

    .ga-hero__images {
        grid-template-columns: 1fr 1fr;
    }

    .ga-hero__img-bottom {
        margin-top: 40px;
    }

    .ga-hero__info-card {
        position: relative;
        bottom: auto;
        right: auto;
        max-width: 100%;
        margin-top: 20px;
    }

    .ga-hero__eq {
        left: 32px;
        bottom: 80px;
    }

    .ga-hero__stat-card {
        max-width: 100%;
    }

    .ga-intro__layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .ga-intro__image-stack {
        height: 400px;
    }

    .ga-services__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ga-services__card:first-child {
        grid-row: auto;
        min-height: 360px;
    }

    .ga-services__card:nth-child(4) {
        grid-column: auto;
    }

    .ga-services__card:nth-child(4) .ga-services__card-body {
        flex-direction: column;
        align-items: flex-start;
    }

    .ga-services__card:nth-child(4) .ga-services__card-icon {
        margin-bottom: 20px;
    }

    .ga-auto__cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ga-auto__inner {
        padding: 80px 0;
    }

    .ga-auto__ambient-wave { display: none; }

    .ga-technology__layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .ga-geluid__hero {
        min-height: 55vh;
    }

    .ga-geluid__hero-wave { display: none; }

    .ga-geluid__grid {
        grid-template-columns: 1fr;
    }

    .ga-geluid__quote {
        padding: 32px 28px;
    }

    .ga-geluid__footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .ga-rv__header {
        flex-direction: column;
        gap: 24px;
    }

    .ga-rv__stack {
        grid-template-columns: 1fr;
    }

    .ga-rv__card:nth-child(even) {
        transform: none;
    }

    .ga-partners__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .ga-carmap__scene {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ga-carmap__car {
        max-width: 300px;
    }

    .ga-carmap__info-panel {
        padding: 28px;
    }

    .ga-brs__layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ga-brs__visual {
        height: auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .ga-brs__panel {
        position: static !important;
        width: 100% !important;
        transform: none !important;
        animation: none !important;
    }

    .ga-brs__float-badge {
        position: static;
        width: fit-content;
    }

    .ga-faqp__layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ga-faqp__sidebar {
        position: static;
    }

    .ga-tm__header {
        flex-direction: column;
        gap: 32px;
    }

    .ga-tm__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ga-tm__card:nth-child(3n+2) {
        transform: none;
    }

    .ga-tm__orb-inner {
        width: 120px;
        height: 120px;
    }

    /* Stacked panels — tablet */
    .ga-sp__layout {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 32px;
    }

    .ga-sp__canvas {
        height: 420px;
        border-radius: 16px;
    }

    .ga-sp__hint { display: none; }
    .ga-sp__noise { display: none; }

    .ga-sp__scene {
        perspective: none !important;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
        padding: 0 20px 16px;
    }

    .ga-sp__stack {
        display: flex;
        gap: 12px;
        transform-style: flat !important;
        transform: none !important;
        width: auto;
        height: auto;
        position: relative;
    }

    .ga-sp__panel {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        margin: 0 !important;
        flex-shrink: 0;
        width: 200px !important;
        height: 280px !important;
        opacity: 1 !important;
        transform: none !important;
        pointer-events: auto;
    }

    .ga-tm__orb-score {
        font-size: 32px;
    }

    .ga-contact__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ga-contact__card--phone,
    .ga-contact__card--email,
    .ga-contact__card--hours {
        margin-left: 0;
    }

    .ga-contact__floats {
        margin-left: 0;
    }

    .ga-ucta__layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ga-ucta__scene {
        height: 400px;
    }

    .ga-ucta__stack {
        width: 260px;
        height: 340px;
    }
}

/* --------------------------------------------------------------------------
   Responsive — Mobile
   -------------------------------------------------------------------------- */
@media (max-width: 640px) {
    .ga-container {
        padding: 0 20px;
    }

    .ga-section-intro,
    .ga-section-services,
    .ga-section-technology,
    .ga-section-werkwijze,
    .ga-section-reviews,
    .ga-section-contact {
        padding: 100px 0;
    }

    .ga-hero__container {
        padding: 0 20px;
    }

    .ga-hero__grid {
        padding-top: 140px;
        padding-bottom: 32px;
        gap: 32px;
    }

    .ga-hero__title {
        font-size: clamp(2rem, 8vw, 2.75rem);
    }

    .ga-hero__images {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .ga-hero__img-top {
        aspect-ratio: 3 / 3;
    }

    .ga-hero__img-bottom {
        margin-top: 30px;
        aspect-ratio: 3 / 3;
    }

    .ga-hero__info-card {
        position: relative;
        bottom: auto;
        right: auto;
        max-width: 100%;
    }

    .ga-hero__stat-card {
        margin-top: 32px;
    }

    .ga-hero__eq {
        display: none;
    }

    .ga-hero__ticker-track {
        padding: 0 20px;
        gap: 8px;
    }

    .ga-hero__ticker-pill {
        padding: 8px 16px;
        font-size: 11px;
    }

    .ga-intro__image-stack {
        height: 320px;
    }

    .ga-intro__image-secondary {
        width: 45%;
        height: 45%;
    }

    .ga-services__card {
        min-height: 300px;
    }

    .ga-services__card:nth-child(2),
    .ga-services__card:nth-child(3) {
        min-height: 300px;
    }

    .ga-services__card-desc {
        opacity: 1;
        transform: translateY(0);
        color: rgba(255, 255, 255, 0.7);
    }

    .ga-services__card-action {
        opacity: 1;
        transform: translateX(0);
    }

    .ga-services__card-wave {
        display: none;
    }

    .ga-auto__card-spectrum {
        opacity: 0.5;
    }

    .ga-auto__card-spectrum span {
        animation-play-state: running;
    }

    .ga-auto__card-glow {
        opacity: 0.5;
    }

    .ga-auto__card-line {
        width: 48px;
    }

    .ga-technology__metrics {
        grid-template-columns: 1fr;
    }

    .ga-wf__bar {
        margin: 0 20px;
        height: 180px;
    }

    .ga-wf__node-eq { display: none; }
    .ga-wf__pulse { display: none; }

    .ga-wf__node-icon {
        width: 40px;
        height: 40px;
    }

    .ga-wf__node-icon svg {
        width: 16px;
        height: 16px;
    }

    .ga-wf__node-title { display: none; }

    .ga-wf__detail { margin-top: 32px; }

    .ga-wf__card {
        grid-template-columns: 1fr;
    }

    .ga-wf__card-media {
        height: 200px;
    }

    .ga-wf__card-content {
        padding: 28px 24px;
    }

    .ga-wf__card-title {
        font-size: 20px;
    }

    .ga-geluid__hero-content {
        padding-bottom: 48px;
    }

    .ga-geluid__brands {
        gap: 8px;
    }

    .ga-rv__google-badge {
        padding: 16px 20px;
    }

    .ga-rv__google-badge-score {
        font-size: 22px;
    }

    .ga-partners__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ga-ucta__actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .ga-ucta__scene {
        height: 340px;
        cursor: default;
    }

    .ga-ucta__stack {
        width: 220px;
        height: 280px;
    }

    .ga-contact__floats {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* --------------------------------------------------------------------------
   Accessibility — reduced motion
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    .ga-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .ga-hero__scroll-line::after {
        animation: none;
    }

    [class^="ga-"] {
        transition-duration: 0.01ms !important;
    }
}
