/* ==========================================================================
   DEVANGI OUTDOOR — GLOBAL STYLESHEET
   ==========================================================================
   Theme derived from main_logo.png:
     • Primary red  : #E3342F
     • Brand grey   : #4A4A4F
     • Dark surface : #111111

   Typography: Inter (single family, weight-based hierarchy)
   ========================================================================== */


/* --------------------------------------------------------------------------
   01. DESIGN TOKENS (CSS Custom Properties)
   -------------------------------------------------------------------------- */
:root {
    /* Brand colors */
    --color-primary:        #E3342F;
    --color-primary-dark:   #c42d28;
    --color-primary-light:  #fdecea;
    --color-primary-glow:   rgba(227, 52, 47, 0.15);

    /* Neutrals */
    --color-text:           #1a1a1a;
    --color-text-secondary: #4A4A4F;
    --color-text-muted:     #6b6b70;
    --color-text-inverse:   #ffffff;
    --color-text-on-dark:   #b8b8bc;

    /* Surfaces */
    --color-bg:             #fafafa;
    --color-bg-white:       #ffffff;
    --color-bg-dark:        #111111;
    --color-border:         #e5e5e5;
    --color-border-dark:    #2a2a2a;

    /* Typography */
    --font-family:          'Inter', system-ui, -apple-system, sans-serif;
    --font-size-xs:         0.75rem;
    --font-size-sm:         0.875rem;
    --font-size-base:       1rem;
    --font-size-lg:         1.125rem;
    --font-size-xl:         1.5rem;
    --font-size-2xl:        2rem;
    --font-size-3xl:        2.75rem;
    --font-size-4xl:        3.5rem;

    /* Spacing & layout */
    --container-max:        1200px;
    --header-height:        80px;
    --section-padding:      100px 40px;
    --hero-padding-x:       max(24px, calc((100vw - var(--container-max)) / 2 + 40px));
    --radius-sm:            6px;
    --radius-md:            10px;
    --radius-card:          28px;
    --radius-pill:          100px;

    /* Buttons */
    --btn-padding-y:        11px;
    --btn-padding-x:        22px;
    --gradient-primary:     linear-gradient(135deg, #ff6b66 0%, #E3342F 42%, #b81e1a 100%);
    --gradient-primary-hover: linear-gradient(135deg, #ff7f7b 0%, #eb4039 42%, #a01815 100%);

    /* Effects */
    --shadow-sm:            0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md:            0 10px 30px var(--color-primary-glow);
    --shadow-lg:            0 20px 60px rgba(0, 0, 0, 0.08);
    --transition:           0.3s ease;
    --transition-slow:      0.7s cubic-bezier(0.22, 1, 0.36, 1);
}


/* Gradient text — clips gradient to glyphs only (never fills the box) */
.text-gradient {
    background-color: transparent;
    background-image: var(--gradient-primary);
    background-repeat: no-repeat;
    background-size: 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.text-gradient-hover:hover {
    background-color: transparent;
    background-image: var(--gradient-primary-hover);
    background-repeat: no-repeat;
    background-size: 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}


/* --------------------------------------------------------------------------
   02. RESET & BASE
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
    padding-top: var(--header-height);
    -webkit-font-smoothing: antialiased;
}

/* Lock scroll while page loader is visible */
body.is-loading {
    overflow: hidden;
}

/* --------------------------------------------------------------------------
   02b. PAGE LOADER (logo splash screen)
   -------------------------------------------------------------------------- */
.page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #080808;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.page-loader-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 160px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

/* Shown once the logo image has loaded */
.page-loader-inner.is-ready {
    opacity: 1;
}

/* Gradient ring — complements the favicon glow */
.page-loader-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(227, 52, 47, 0.15) 60deg,
        #E3342F 180deg,
        #ff6b5a 270deg,
        transparent 360deg
    );
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #000 calc(100% - 3px));
    mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #000 calc(100% - 3px));
    animation: loaderSpin 1.1s linear infinite;
}

.page-loader-ring::after {
    content: '';
    position: absolute;
    inset: 8px;
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(227, 52, 47, 0.25), inset 0 0 20px rgba(227, 52, 47, 0.08);
    pointer-events: none;
}

.page-loader-logo {
    width: 96px;
    height: 96px;
    object-fit: contain;
    border-radius: 50%;
    animation: loaderGlow 2s ease-in-out infinite;
}

/* Shared heading scale */
h1, h2, h3, h4 {
    font-family: var(--font-family);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text);
}

/* Eyebrow / section label used across sections */
.section-label {
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: inline-block;
    margin-bottom: 12px;
    background-color: transparent;
    background-image: var(--gradient-primary);
    background-repeat: no-repeat;
    background-size: 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* --------------------------------------------------------------------------
   Scroll-reveal animation (triggered by animationsScript.js)
   -------------------------------------------------------------------------- */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.35s; }
.reveal-delay-4 { transition-delay: 0.5s; }
.reveal-delay-5 { transition-delay: 0.65s; }

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

    .carousel-inner {
        transition: none;
    }

    .innovation-carousel .carousel-slide.is-active {
        animation: none;
    }

    .innovation-work-media img {
        transition: none;
        transform: none;
    }

    .innovation-work-img {
        transition: none;
        transform: none;
    }

    .hero-content .hero-badge,
    .hero-content .hero-title,
    .hero-content .hero-text,
    .hero-content .hero-actions {
        opacity: 1;
        transform: none;
        animation: none;
    }

    .stats-glow,
    .stats-scanline,
    .stats-eyebrow-dot,
    .dark-glow,
    .dark-scanline,
    .dark-eyebrow-dot {
        animation: none;
    }

    .page-hero-content .section-label,
    .page-hero-content .page-hero-title,
    .page-hero-content .page-hero-text,
    .page-hero-content .location-back-link,
    .page-hero-content .location-sites-hero-meta,
    .site-detail-hero-overlay .section-label,
    .site-detail-hero-overlay .site-detail-title,
    .site-detail-hero-overlay .site-detail-location,
    .site-detail-hero-overlay .location-back-link {
        opacity: 1;
        transform: none;
        animation: none;
    }

    .testimonials-marquee-track {
        animation: none;
    }

    .newsletter-marquee-track {
        animation: none;
    }

    .newsletter-live-dot {
        animation: none;
    }

    .page-loader-ring,
    .page-loader-logo {
        animation: none;
    }

    .hero-video-loader-ring,
    .hero-video-loader-logo {
        animation: none;
    }

    .hero-video-el {
        display: none;
    }

    .hero-video-stage {
        background:
            linear-gradient(135deg, #1a1a1a, #0a0a0a),
            url('https://images.unsplash.com/photo-1569163139394-de4798aa62b6?auto=format&fit=crop&q=80&w=1920') center/cover;
    }

    .ad-popup-overlay,
    .ad-popup {
        transition: none;
    }

    .ad-popup-overlay.is-visible .ad-popup {
        opacity: 1;
        transform: none;
    }
}


/* --------------------------------------------------------------------------
   03. HEADER & NAVIGATION
   -------------------------------------------------------------------------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(8px);
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--color-border);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 10px 20px;
}

.logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.site-logo {
    display: block;
    height: 60px;
    width: auto;
    max-height: 60px;
    object-fit: contain;
}

.footer-logo {
    display: block;
    height: 72px;
    width: auto;
    max-width: 240px;
    object-fit: contain;
    margin-bottom: 16px;
}

/* Mobile hamburger toggle (hidden on desktop) */
.nav-toggle {
    display: none;
}

.nav-menu ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu a {
    display: inline-block;
    text-decoration: none;
    color: var(--color-text-secondary);
    font-size: var(--font-size-sm);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: transparent;
    background-image: none;
    -webkit-text-fill-color: currentColor;
    transition: color var(--transition), -webkit-text-fill-color var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    background-color: transparent;
    background-image: var(--gradient-primary);
    background-repeat: no-repeat;
    background-size: 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.nav-menu a:hover {
    background-image: var(--gradient-primary-hover);
}


/* --------------------------------------------------------------------------
   04. HERO — VIDEO + TEXT OVERLAY
   -------------------------------------------------------------------------- */
.hero-showcase {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    height: calc(100vh - var(--header-height));
    min-height: 530px;
    overflow: hidden;
}

.hero-video-stage {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #0a0a0a;
}

.hero-video-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.65s ease, visibility 0.65s ease;
}

.hero-showcase.is-video-ready .hero-video-media {
    opacity: 1;
    visibility: visible;
}

.hero-video-embed {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-video-iframe,
.hero-video-el {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    transform-origin: center center;
    border: 0;
    pointer-events: none !important;
}

.hero-video-el {
    object-fit: cover;
    object-position: center;
    opacity: 0;
    z-index: 1;
}

.hero-video-el.is-active {
    opacity: 1;
    z-index: 2;
}

.hero-video-loop-veil {
    position: absolute;
    inset: 0;
    z-index: 3;
    background: #0a0a0a;
    opacity: 0;
    pointer-events: none;
    transition: opacity 1.4s cubic-bezier(0.45, 0, 0.2, 1);
}

.hero-video-loop-veil.is-visible {
    opacity: 1;
}

.hero-video-interaction-shield {
    position: absolute;
    inset: 0;
    z-index: 8;
    background: transparent;
    pointer-events: auto;
    cursor: default;
}

.hero-video-loader {
    position: absolute;
    inset: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0a0a0a;
    transition: opacity 0.55s ease, visibility 0.55s ease;
}

.hero-showcase.is-video-ready .hero-video-loader {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.hero-text-track .hero-title,
.hero-text-track .hero-text,
.hero-text-track .hero-badge {
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.55);
}

.hero-video-loader-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 96px;
    height: 96px;
}

.hero-video-loader-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(227, 52, 47, 0.15) 60deg,
        #E3342F 180deg,
        #ff6b5a 270deg,
        transparent 360deg
    );
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #000 calc(100% - 3px));
    mask: radial-gradient(farthest-side, transparent calc(100% - 4px), #000 calc(100% - 3px));
    animation: loaderSpin 1.1s linear infinite;
}

.hero-video-loader-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 50%;
    animation: loaderGlow 2s ease-in-out infinite;
}

.hero-text-layer {
    position: absolute;
    inset: 0;
    z-index: 9;
    display: flex;
    align-items: center;
    padding-left: var(--hero-padding-x);
    padding-right: 24px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.65s ease 0.12s;
}

.hero-showcase.is-video-ready .hero-text-layer {
    opacity: 1;
}

.hero-text-viewport {
    width: 100%;
    max-width: 640px;
    overflow: hidden;
}

.hero-text-track {
    display: flex;
    width: 100%;
    transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.hero-text-track .hero-content {
    position: relative;
    flex: 0 0 100%;
    min-width: 100%;
    max-width: 640px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    color: var(--color-text-inverse);
}

.hero-text-track .hero-content .hero-badge,
.hero-text-track .hero-content .hero-title,
.hero-text-track .hero-content .hero-text,
.hero-text-track .hero-content .hero-actions {
    opacity: 0;
    transform: translateY(28px);
}

.hero-text-track .hero-content.is-animated .hero-badge {
    animation: heroTextIn 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.1s;
}

.hero-text-track .hero-content.is-animated .hero-title {
    animation: heroTextIn 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.22s;
}

.hero-text-track .hero-content.is-animated .hero-text {
    animation: heroTextIn 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.34s;
}

.hero-text-track .hero-content.is-animated .hero-actions {
    animation: heroTextIn 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.46s;
}

.hero-video-stage .carousel-indicators {
    z-index: 3;
}

.hero-carousel {
    position: relative;
    width: 100%;
    height: calc(100vh - var(--header-height));
    overflow: hidden;
}

/* Slides sit side-by-side; JS drives translateX between them */
.carousel-inner {
    display: flex;
    height: 100%;
    transition: transform 0.8s ease-in-out;
    will-change: transform;
}

.carousel-slide {
    position: relative;
    flex: 0 0 100%;
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    padding-left: var(--hero-padding-x);
    padding-right: 24px;
}

.hero-content {
    max-width: 560px;
    padding: 0;
    color: var(--color-text-inverse);
}

.hero-content .hero-badge,
.hero-content .hero-title,
.hero-content .hero-text,
.hero-content .hero-actions {
    opacity: 0;
    transform: translateY(28px);
}

.hero-content.is-animated .hero-badge {
    animation: heroTextIn 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.15s;
}

.hero-content.is-animated .hero-title {
    animation: heroTextIn 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.3s;
}

.hero-content.is-animated .hero-text {
    animation: heroTextIn 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.45s;
}

.hero-content.is-animated .hero-actions {
    animation: heroTextIn 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.6s;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-text-inverse);
    border: 1px solid rgba(255, 255, 255, 0.25);
    background-color: rgba(255, 255, 255, 0.08);
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    margin-bottom: 28px;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-primary);
    flex-shrink: 0;
}

.hero-title {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--color-text-inverse);
}

.hero-title-accent {
    color: var(--color-primary);
}

.hero-text {
    font-size: var(--font-size-lg);
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 36px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 480px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}

/* Site-wide primary & secondary buttons */
.btn-primary,
.hero-btn,
.btn-site {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    font-family: inherit;
    font-size: var(--font-size-sm);
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--color-text-inverse);
    background: var(--gradient-primary);
    padding: var(--btn-padding-y) var(--btn-padding-x);
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    box-shadow: 0 4px 16px rgba(227, 52, 47, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.22);
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-primary:hover,
.hero-btn:hover,
.btn-site:hover {
    background: var(--gradient-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(227, 52, 47, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.btn-primary:focus-visible,
.hero-btn:focus-visible,
.btn-outline:focus-visible,
.hero-btn-outline:focus-visible {
    outline: 2px solid rgba(227, 52, 47, 0.45);
    outline-offset: 2px;
}

.hero-btn-arrow,
.btn-arrow {
    display: inline-block;
    font-size: 1.05em;
    line-height: 1;
    transition: transform var(--transition);
}

.btn-primary:hover .hero-btn-arrow,
.btn-primary:hover .btn-arrow,
.hero-btn:hover .hero-btn-arrow {
    transform: translateX(3px);
}

.btn-outline,
.hero-btn-outline {
    position: relative;
    isolation: isolate;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    font-family: inherit;
    font-size: var(--font-size-sm);
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--color-text-inverse);
    padding: var(--btn-padding-y) var(--btn-padding-x);
    border-radius: var(--radius-pill);
    border: none;
    background: transparent;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    box-shadow: none;
    transition: transform var(--transition), color var(--transition);
}

.btn-outline::before,
.hero-btn-outline::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: var(--gradient-primary);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: -1;
    transition: background var(--transition);
}

.btn-outline:hover,
.hero-btn-outline:hover {
    transform: translateY(-2px);
}

.btn-outline:hover::before,
.hero-btn-outline:hover::before {
    background: var(--gradient-primary-hover);
}

.btn-outline--dark {
    color: var(--color-text);
}

.btn-outline--dark:hover {
    background-color: transparent;
    background-image: var(--gradient-primary-hover);
    background-repeat: no-repeat;
    background-size: 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* Slide position indicators */
.carousel-indicators {
    position: absolute;
    bottom: 40px;
    left: var(--hero-padding-x);
    display: flex;
    align-items: center;
    gap: 8px;
}

.carousel-indicators .indicator {
    display: block;
    width: 40px;
    height: 3px;
    padding: 0;
    border: none;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.35);
    border-radius: 2px;
    transition: background-color var(--transition), height var(--transition), width var(--transition);
}

.carousel-indicators .indicator.active {
    background-color: var(--color-primary);
    height: 4px;
    width: 48px;
}


/* --------------------------------------------------------------------------
   04b. SHARED DARK PANEL — OOH-themed decorations (all dark sections)
   -------------------------------------------------------------------------- */
.dark-panel {
    position: relative;
    background-color: var(--color-bg-dark);
    overflow: hidden;
}

.dark-bg-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.dark-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 70% at 70% 50%, black 20%, transparent 75%);
}

.dark-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    animation: statsGlowDrift 8s ease-in-out infinite alternate;
}

.dark-glow--1 {
    width: 400px;
    height: 400px;
    background: var(--color-primary);
    top: -10%;
    right: 5%;
}

.dark-glow--2 {
    width: 300px;
    height: 300px;
    background: rgba(227, 52, 47, 0.5);
    bottom: -5%;
    left: 10%;
    animation-delay: -4s;
}

.dark-watermark {
    position: absolute;
    right: -2%;
    top: 50%;
    transform: translateY(-50%);
    font-size: clamp(6rem, 16vw, 14rem);
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.04);
    letter-spacing: -0.05em;
    line-height: 1;
    user-select: none;
}

.dark-watermark--left {
    right: auto;
    left: -3%;
}

.dark-scanline {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(227, 52, 47, 0.6), transparent);
    animation: statsScanline 6s linear infinite;
    opacity: 0.5;
}

.dark-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--color-text-inverse);
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(227, 52, 47, 0.1);
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    margin-bottom: 20px;
}

.dark-eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-primary);
    animation: statsDotPulse 2s ease-in-out infinite;
}

.dark-panel .section-label {
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(227, 52, 47, 0.1);
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    letter-spacing: 2px;
    -webkit-background-clip: border-box;
    background-clip: border-box;
    -webkit-text-fill-color: currentColor;
    color: var(--color-text-inverse);
}

.dark-heading-accent {
    display: block;
    background-color: transparent;
    background-image: var(--gradient-primary);
    background-repeat: no-repeat;
    background-size: 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.dark-content {
    position: relative;
    z-index: 1;
}

/* --------------------------------------------------------------------------
   05. STATS COUNTER SECTION — OOH-themed dark panel
   -------------------------------------------------------------------------- */
.stats-section {
    position: relative;
    background-color: var(--color-bg-dark);
    padding: var(--section-padding);
    width: 100%;
    overflow: hidden;
}

.stats-bg-decor,
.dark-bg-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.stats-grid-lines,
.dark-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 70% at 70% 50%, black 20%, transparent 75%);
}

.stats-glow,
.dark-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    animation: statsGlowDrift 8s ease-in-out infinite alternate;
}

.stats-glow--1 {
    width: 400px;
    height: 400px;
    background: var(--color-primary);
    top: -10%;
    right: 5%;
}

.stats-glow--2 {
    width: 300px;
    height: 300px;
    background: rgba(227, 52, 47, 0.5);
    bottom: -5%;
    left: 10%;
    animation-delay: -4s;
}

.stats-watermark,
.dark-watermark {
    position: absolute;
    right: -2%;
    top: 50%;
    transform: translateY(-50%);
    font-size: clamp(8rem, 18vw, 16rem);
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.04);
    letter-spacing: -0.05em;
    line-height: 1;
    user-select: none;
}

.stats-scanline,
.dark-scanline {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(227, 52, 47, 0.6), transparent);
    animation: statsScanline 6s linear infinite;
    opacity: 0.5;
}

.stats-wrapper {
    position: relative;
    z-index: 1;
    max-width: var(--container-max);
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
    min-width: 0;
    box-sizing: border-box;
}

.stats-info-block {
    flex: 1;
    max-width: 500px;
    min-width: 0;
    width: 100%;
}

/* Carousel lives in stats — keep the track from expanding the section */
.stats-info-block--carousel {
    max-width: min(500px, 100%);
}

.stats-section .hero-text-viewport {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
}

.stats-section .hero-text-track {
    width: 100%;
    min-width: 0;
}

.stats-section .hero-text-track .hero-content {
    max-width: 100%;
    box-sizing: border-box;
}

.stats-section .hero-text {
    max-width: 100%;
    overflow-wrap: break-word;
}

.stats-section .hero-title {
    overflow-wrap: break-word;
}

.stats-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--color-text-inverse);
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(227, 52, 47, 0.1);
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    margin-bottom: 24px;
}

.stats-eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-primary);
    animation: statsDotPulse 2s ease-in-out infinite;
}

.stats-main-heading {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    color: var(--color-text-inverse);
    margin-bottom: 25px;
    letter-spacing: -0.5px;
    line-height: 1.15;
}

.stats-heading-line {
    display: block;
}

.stats-heading-accent {
    display: block;
    color: var(--color-primary);
}

.stats-main-desc {
    font-size: var(--font-size-base);
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-text-on-dark);
}

.stats-grid {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    min-width: 0;
    width: 100%;
}

.stat-item {
    text-align: left;
}

.stat-card {
    position: relative;
    padding: 28px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 3px solid var(--color-primary);
    border-radius: var(--radius-card);
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--color-primary), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.stat-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(227, 52, 47, 0.3);
    box-shadow: 0 12px 40px rgba(227, 52, 47, 0.12);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-icon {
    display: block;
    width: 28px;
    height: 28px;
    color: var(--color-primary);
    margin-bottom: 16px;
    opacity: 0.85;
}

.stat-icon svg {
    width: 100%;
    height: 100%;
}

.stat-number {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    color: var(--color-text-inverse);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.stat-number::after {
    content: '+';
    color: var(--color-primary);
    font-size: 0.7em;
    margin-left: 2px;
}

.stat-label {
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-text-on-dark);
    letter-spacing: 0.3px;
    text-transform: uppercase;
}


/* --------------------------------------------------------------------------
   05b. INNOVATION & DOOH — split layout + digital billboard showcase
   -------------------------------------------------------------------------- */
.innovation-section {
    position: relative;
    background: linear-gradient(180deg, #f7f7f7 0%, #ffffff 45%, #f9f9f9 100%);
    padding: var(--section-padding);
    width: 100%;
    overflow-x: clip;
    overflow-y: visible;
}

.innovation-bg-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.innovation-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(227, 52, 47, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(227, 52, 47, 0.04) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 85% 75% at 65% 45%, black 15%, transparent 78%);
}

.innovation-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.22;
    animation: statsGlowDrift 9s ease-in-out infinite alternate;
}

.innovation-glow--1 {
    width: 360px;
    height: 360px;
    background: var(--color-primary);
    top: -8%;
    right: 8%;
}

.innovation-glow--2 {
    width: 280px;
    height: 280px;
    background: rgba(227, 52, 47, 0.55);
    bottom: 5%;
    left: 4%;
    animation-delay: -4s;
}

.innovation-watermark {
    position: absolute;
    right: -1%;
    top: 50%;
    transform: translateY(-50%);
    font-size: clamp(6rem, 14vw, 13rem);
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(227, 52, 47, 0.06);
    letter-spacing: -0.05em;
    line-height: 1;
    user-select: none;
}

.innovation-scanline {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(227, 52, 47, 0.35), transparent);
    animation: statsScanline 7s linear infinite;
    opacity: 0.45;
}

.innovation-wrapper {
    position: relative;
    z-index: 1;
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
    grid-template-areas:
        "copy stage"
        "details stage";
    gap: clamp(28px, 4vw, 48px) clamp(32px, 5vw, 64px);
    align-items: center;
}

.innovation-copy {
    grid-area: copy;
    max-width: 520px;
}

.innovation-details {
    grid-area: details;
    max-width: 520px;
    display: flex;
    flex-direction: column;
    align-self: start;
}

.innovation-stage {
    grid-area: stage;
    position: relative;
    min-width: 0;
}

.innovation-cta-link {
    margin-top: 20px;
    align-self: flex-start;
}

.innovation-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--color-text);
    border: 1px solid rgba(227, 52, 47, 0.2);
    background: rgba(227, 52, 47, 0.06);
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    margin-bottom: 20px;
}

.innovation-eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-primary);
    animation: statsDotPulse 2s ease-in-out infinite;
}

.innovation-title {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
    color: var(--color-text);
    line-height: 1.12;
}

.innovation-title-accent {
    color: var(--color-primary);
}

.innovation-intro {
    font-size: var(--font-size-base);
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 28px;
}

.innovation-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
}

.innovation-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.innovation-feature:hover {
    transform: translateY(-2px);
    border-color: rgba(227, 52, 47, 0.25);
    box-shadow: 0 8px 24px rgba(227, 52, 47, 0.08);
}

.innovation-feature-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    color: var(--color-primary);
}

.innovation-feature-icon svg {
    width: 100%;
    height: 100%;
}

.innovation-feature-label {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.3;
}

.innovation-caption-panel {
    padding: 18px 20px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-left: 3px solid var(--color-primary);
    border-radius: var(--radius-md);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    flex: 0 0 auto;
}

.innovation-caption-tag {
    display: inline-block;
    font-size: var(--font-size-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.innovation-caption-text {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    line-height: 1.65;
    margin-bottom: 14px;
    min-height: 0;
    transition: opacity 0.35s ease;
}

.innovation-caption-text.is-changing {
    opacity: 0;
}

.innovation-slide-meta {
    display: flex;
    align-items: center;
    gap: 14px;
}

.innovation-slide-counter {
    font-size: var(--font-size-xs);
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--color-text);
    white-space: nowrap;
}

.innovation-progress-track {
    flex: 1;
    height: 3px;
    background: rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-pill);
    overflow: hidden;
}

.innovation-progress-bar {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--color-primary), #ff6b5a);
    border-radius: var(--radius-pill);
}

.innovation-billboard {
    position: relative;
    width: 100%;
    max-width: 100%;
}

.innovation-billboard-bezel {
    position: relative;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 14px;
    background: linear-gradient(155deg, #2b2b2b 0%, #121212 100%);
    border-radius: 14px;
    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.innovation-billboard-bezel::before {
    content: "";
    position: absolute;
    inset: 8px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    pointer-events: none;
}

.innovation-carousel {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 2;
    height: auto;
    min-height: 0;
    overflow: hidden;
    border-radius: 8px;
}

/* Pin the track to the aspect-ratio box so slides never collapse or spill */
.innovation-carousel .carousel-inner {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.innovation-carousel .carousel-slide {
    padding: 0;
    align-items: stretch;
    justify-content: stretch;
    background-size: cover;
    background-position: center;
    transform-origin: center center;
    box-sizing: border-box;
}

.innovation-carousel .carousel-slide.is-active {
    animation: innovationKenBurns 5.5s ease-out forwards;
}

.innovation-carousel .carousel-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 42%);
    pointer-events: none;
}

.innovation-screen-scanlines {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: repeating-linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.03) 0,
        rgba(255, 255, 255, 0.03) 1px,
        transparent 1px,
        transparent 3px
    );
    opacity: 0.35;
    mix-blend-mode: overlay;
}

.innovation-billboard-stand {
    width: 42%;
    height: 18px;
    margin: 0 auto;
    background: linear-gradient(180deg, #1a1a1a, #0d0d0d);
    border-radius: 0 0 6px 6px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.innovation-indicators.carousel-indicators {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    transform: none;
    justify-content: center;
    margin-top: 18px;
    width: 100%;
}

.innovation-indicators .indicator {
    background-color: rgba(0, 0, 0, 0.15);
}

.innovation-indicators.carousel-indicators--red .indicator.active {
    background-color: var(--color-primary);
}

@keyframes innovationKenBurns {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.08);
    }
}

.carousel-indicators--red .indicator {
    background-color: rgba(255, 255, 255, 0.45);
}

.carousel-indicators--red .indicator.active {
    background-color: var(--color-primary);
    height: 4px;
    width: 48px;
}

.carousel-indicators--red .indicator:hover {
    background-color: rgba(227, 52, 47, 0.75);
}

/* --------------------------------------------------------------------------
   06. AWARDS CAROUSEL (infinite auto-scroll)
   -------------------------------------------------------------------------- */
.awards-section {
    background-color: var(--color-bg-white);
    padding: var(--section-padding);
    width: 100%;
}

.awards-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.awards-subtitle {
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-primary);
    display: inline-block;
    margin-bottom: 12px;
}

.awards-title {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
}

.awards-intro {
    font-size: var(--font-size-base);
    color: var(--color-text-muted);
    line-height: 1.7;
    font-weight: 400;
}

/* Clips overflowing track; JS translates the inner track */
.awards-carousel-wrapper {
    max-width: var(--container-max);
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    padding: 10px 0;
}

.awards-carousel-track {
    display: flex;
    width: max-content;
    will-change: transform;
}

.award-card {
    background: var(--color-bg-white);
    padding: 0;
    text-align: left;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color var(--transition);
    flex-shrink: 0;
}

.award-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
}

.award-img-box {
    position: relative;
    width: 100%;
    background: linear-gradient(110deg, var(--color-bg) 8%, #eef0f4 18%, var(--color-bg) 33%);
    background-size: 200% 100%;
    animation: award-img-shimmer 1.4s ease-in-out infinite;
    box-sizing: border-box;
}

.award-img-box:has(img.is-loaded) {
    animation: none;
    background: var(--color-bg);
}

.award-img-box picture {
    display: block;
    width: 100%;
}

.award-img-box img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.award-img-box img.is-loaded {
    opacity: 1;
}

.award-card-year {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--color-primary);
    color: var(--color-text-inverse);
    font-size: var(--font-size-xs);
    font-weight: 700;
    padding: 5px 12px;
    border-radius: var(--radius-pill);
}

.award-card-body {
    padding: 24px;
}

.award-card-category {
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-primary);
    display: block;
    margin-bottom: 8px;
}

.award-card-title {
    font-size: var(--font-size-base);
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.4;
}

/* View All button below home carousel */
.awards-view-all {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-top: 48px;
}


/* --------------------------------------------------------------------------
   06b. AWARDS PAGE — full grid listing
   -------------------------------------------------------------------------- */

/* Inner page hero banner */
.page-hero {
    position: relative;
    background: var(--color-bg-dark);
    padding: 100px 40px 80px;
    text-align: center;
    overflow: hidden;
}

.page-hero--compact {
    padding: 62px 40px 48px;
    border-bottom: 1px solid rgba(227, 52, 47, 0.18);
}

.page-hero--compact::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: min(520px, 62vw);
    height: 2px;
    transform: translateX(-50%);
    background: linear-gradient(
        90deg,
        transparent,
        rgba(227, 52, 47, 0.35) 20%,
        var(--color-primary) 50%,
        rgba(227, 52, 47, 0.35) 80%,
        transparent
    );
    box-shadow: 0 -4px 18px rgba(227, 52, 47, 0.4);
    pointer-events: none;
}

.page-hero--compact .page-hero-content {
    max-width: 760px;
}

.page-hero--compact .page-hero-title {
    margin-bottom: 12px;
}

.page-hero--compact .page-hero-text {
    max-width: 700px;
    margin: 0 auto;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
}

.page-hero-content .section-label,
.page-hero-content .page-hero-title,
.page-hero-content .page-hero-text,
.page-hero-content .location-back-link,
.page-hero-content .location-sites-hero-meta,
.site-detail-hero-overlay .section-label,
.site-detail-hero-overlay .site-detail-title,
.site-detail-hero-overlay .site-detail-location,
.site-detail-hero-overlay .location-back-link {
    opacity: 0;
    transform: translateY(24px);
}

.page-hero-content.is-animated .section-label {
    animation: heroTextIn 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.1s;
}

.page-hero-content.is-animated .location-back-link {
    animation: heroTextIn 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.05s;
}

.page-hero-content.is-animated .page-hero-title {
    animation: heroTextIn 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.25s;
}

.page-hero-content.is-animated .page-hero-text {
    animation: heroTextIn 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.4s;
}

.page-hero-content.is-animated .location-sites-hero-meta {
    animation: heroTextIn 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.5s;
}

.site-detail-hero-overlay.is-animated .location-back-link {
    animation: heroTextIn 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.05s;
}

.site-detail-hero-overlay.is-animated .section-label {
    animation: heroTextIn 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.15s;
}

.site-detail-hero-overlay.is-animated .site-detail-title {
    animation: heroTextIn 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.3s;
}

.site-detail-hero-overlay.is-animated .site-detail-location {
    animation: heroTextIn 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.45s;
}

.page-hero-title {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    color: var(--color-text-inverse);
    letter-spacing: -0.5px;
    margin-bottom: 16px;
    line-height: 1.15;
}

.page-hero-line {
    display: block;
}

.page-hero-accent {
    display: block;
    background-color: transparent;
    background-image: var(--gradient-primary);
    background-repeat: no-repeat;
    background-size: 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.page-hero-text {
    font-size: var(--font-size-base);
    color: var(--color-text-on-dark);
    line-height: 1.7;
}

/* Awards listing section */
.awards-page-section {
    background-color: var(--color-bg);
    padding: var(--section-padding);
    width: 100%;
}

.awards-page-container {
    max-width: var(--container-max);
    margin: 0 auto;
}

.awards-page-grid {
    display: flex;
    align-items: flex-start;
    gap: 28px;
}

.awards-page-column {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.award-page-card {
    width: 100%;
    margin: 0;
    background: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color var(--transition);
}

.award-page-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
}

.award-page-img-box {
    position: relative;
    background: linear-gradient(110deg, var(--color-bg) 8%, #eef0f4 18%, var(--color-bg) 33%);
    background-size: 200% 100%;
    animation: award-img-shimmer 1.4s ease-in-out infinite;
    box-sizing: border-box;
}

.award-page-img-box:has(img.is-loaded) {
    animation: none;
    background: var(--color-bg);
}

.award-page-img-box picture {
    display: block;
    width: 100%;
}

.award-page-img-box img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.award-page-img-box img.is-loaded {
    opacity: 1;
}

@keyframes award-img-shimmer {
    0% { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}

.award-page-year {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--color-primary);
    color: var(--color-text-inverse);
    font-size: var(--font-size-xs);
    font-weight: 700;
    padding: 5px 12px;
    border-radius: var(--radius-pill);
}

.award-page-body {
    padding: 24px;
}

.award-page-category {
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-primary);
    display: block;
    margin-bottom: 8px;
}

.award-page-title {
    font-size: var(--font-size-base);
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.4;
}


/* ==========================================================================
   06c. LOCATIONS PAGE — dual-zone split layout (2 locations)
   ========================================================================== */
.locations-network-section {
    position: relative;
    width: 100%;
    background: var(--color-bg-dark);
    overflow: hidden;
    margin: 0;
}

/* Network stats bar */
.locations-network-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem 2.5rem;
    padding: 2rem max(24px, calc((100vw - var(--container-max)) / 2 + 40px));
    background: linear-gradient(180deg, #161616 0%, var(--color-bg-dark) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.network-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.35rem;
}

.network-stat--wide {
    flex-direction: column;
    gap: 0.75rem;
}

.network-stat-value {
    font-size: var(--font-size-2xl);
    font-weight: 800;
    color: var(--color-text-inverse);
    line-height: 1;
}

.network-stat-label {
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-text-on-dark);
}

.network-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(227, 52, 47, 0.25);
}

.network-stat-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.network-tag {
    font-size: var(--font-size-xs);
    font-weight: 600;
    color: var(--color-text-inverse);
    padding: 0.35rem 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.04);
}

/* Split panels wrapper */
.locations-split-wrap {
    position: relative;
    width: 100%;
}

.split-container {
    display: flex;
    width: 100%;
    min-height: auto;
    position: relative;
    background: var(--color-bg-dark);
    justify-content: center;
    align-items: center;
    gap: clamp(1rem, 2vw, 1.75rem);
    padding: clamp(1rem, 2vw, 1.75rem);
}

.split-panel {
    position: relative;
    flex: 0 0 auto;
    width: min(46vw, 580px);
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    padding: clamp(1.75rem, 3vw, 2.4rem);
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    transition: transform 0.45s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    outline: none;
}

.split-panel:focus-visible {
    border-color: var(--color-primary);
    box-shadow: inset 0 0 0 2px rgba(227, 52, 47, 0.35);
}

.split-panel:first-child {
    border-right: 1px solid rgba(255, 255, 255, 0.04);
}

.split-panel .panel-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    filter: grayscale(20%) brightness(0.7);
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), filter 0.5s ease;
    z-index: 1;
}

.split-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(17, 17, 17, 0.98) 10%,
        rgba(17, 17, 17, 0.55) 55%,
        rgba(17, 17, 17, 0.15) 100%
    );
    z-index: 2;
}

.split-panel .panel-glow {
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 70%;
    height: 70%;
    background: radial-gradient(circle, rgba(227, 52, 47, 0.12) 0%, transparent 70%);
    z-index: 3;
    pointer-events: none;
    opacity: 0.35;
    transition: opacity 0.6s ease, width 0.6s ease, height 0.6s ease;
}

.split-panel .panel-index {
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    z-index: 4;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    color: rgba(255, 255, 255, 0.06);
    pointer-events: none;
    transition: color 0.4s ease;
}

.split-panel .panel-content {
    position: relative;
    z-index: 4;
    width: 100%;
    text-align: center;
    transform: translateY(0);
    transition: transform 0.35s ease;
}

.split-panel .panel-tag {
    display: inline-block;
    color: var(--color-primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: var(--font-size-xs);
    letter-spacing: 2px;
    margin-bottom: 0.35rem;
}

.split-panel .panel-city-title {
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 800;
    color: var(--color-text-inverse);
    margin-bottom: 0.15rem;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.split-panel .panel-state {
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-text-on-dark);
    margin-bottom: 0.6rem;
}

.split-panel .panel-desc {
    color: #ccc;
    font-size: var(--font-size-sm);
    line-height: 1.45;
    margin-bottom: 0.85rem;
}

.split-panel .panel-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.split-panel .panel-chip {
    font-size: var(--font-size-xs);
    font-weight: 600;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(17, 17, 17, 0.5);
    color: var(--color-text-inverse);
    backdrop-filter: blur(4px);
}

.split-panel .panel-chip--dooh {
    border-color: rgba(227, 52, 47, 0.35);
}

.split-panel .panel-chip--billboard {
    border-color: rgba(255, 255, 255, 0.2);
}

.split-panel .panel-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.85rem;
}

.split-panel .media-count-badge {
    display: inline-block;
    padding: 0.55rem 1.1rem;
    background: rgba(17, 17, 17, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    color: var(--color-text-inverse);
    font-size: var(--font-size-sm);
    font-weight: 700;
    backdrop-filter: blur(4px);
    transition: border-color 0.4s ease, background 0.4s ease;
}

.split-panel .panel-corridors {
    font-size: var(--font-size-xs);
    font-weight: 500;
    color: var(--color-text-on-dark);
}

.split-panel .panel-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-inverse);
    text-decoration: none;
    font-weight: 700;
    font-size: var(--font-size-base);
    transition: color 0.3s ease;
}

.split-panel .panel-cta-btn .btn-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

/* Desktop hover — expand active panel */
@media (min-width: 769px) {
    .split-container .split-panel:hover {
        border-color: rgba(227, 52, 47, 0.4);
        transform: translateY(-6px) scale(1.02);
        box-shadow: inset 0 0 50px rgba(227, 52, 47, 0.05);
    }

    .split-panel:hover .panel-bg {
        transform: scale(1.04);
        filter: grayscale(0%) brightness(0.9);
    }

    .split-panel:hover .panel-glow {
        opacity: 1;
        width: 85%;
        height: 85%;
        background: radial-gradient(circle, rgba(227, 52, 47, 0.28) 0%, transparent 70%);
    }

    .split-panel:hover .panel-content {
        transform: translateY(-2px);
    }

    .split-panel:hover .panel-index {
        color: rgba(227, 52, 47, 0.15);
    }

    .split-panel:hover .media-count-badge {
        border-color: var(--color-primary);
        background: rgba(227, 52, 47, 0.12);
    }

    .split-panel:hover .panel-cta-btn {
        color: var(--color-primary);
    }

    .split-panel:hover .panel-cta-btn .btn-arrow {
        transform: translateX(8px);
    }
}

@media (max-width: 768px) {
    .locations-network-bar {
        gap: 1.25rem;
        padding: 1.75rem 24px;
    }

    .network-stat-divider {
        display: none;
    }

    .network-stat {
        min-width: calc(50% - 1rem);
    }

    .network-stat--wide {
        width: 100%;
    }

    .split-container {
        flex-direction: column;
        min-height: auto;
    }

    .split-panel {
        width: min(92vw, 560px);
        min-height: auto;
        aspect-ratio: 1 / 1;
        padding: 2.25rem 1.75rem;
        border-radius: 50%;
    }

    .split-panel:first-child {
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    }

    .split-panel .panel-index {
        font-size: 3rem;
        top: 1.25rem;
        right: 1.5rem;
    }
}

/* Legacy grid card styles (detail pages / fallback) */
.locations-page-section {
    background-color: var(--color-bg);
    padding: var(--section-padding);
    width: 100%;
}

.locations-page-container {
    max-width: var(--container-max);
    margin: 0 auto;
}

.locations-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* Clickable location card (entire card is a link) */
.location-page-card {
    display: block;
    text-decoration: none;
    background: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color var(--transition);
    color: inherit;
}

.location-page-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
}

.location-page-img-box {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.location-page-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.location-page-card:hover .location-page-img-box img {
    transform: scale(1.05);
}

.location-page-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--color-primary);
    color: var(--color-text-inverse);
    font-size: var(--font-size-xs);
    font-weight: 700;
    padding: 5px 12px;
    border-radius: var(--radius-sm);
}

.location-page-body {
    padding: 24px;
}

.location-page-state {
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-primary);
    display: block;
    margin-bottom: 6px;
}

.location-page-title {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 6px;
}

.location-page-meta {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    font-weight: 500;
}

/* --- Location detail page — tabbed inventory --- */
.location-detail-page,
#locationDetail {
    background: var(--color-bg-dark);
}

.location-sites-hero-meta {
    font-size: var(--font-size-sm);
    color: var(--color-primary);
    font-weight: 600;
    margin-top: 12px;
}

.location-detail-body {
    background: var(--color-bg-dark);
    padding: 1.25rem 0 4rem;
}

.location-tabs {
    position: sticky;
    top: var(--header-height);
    z-index: 40;
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    max-width: 760px;
    margin: -2rem auto 0;
    padding: 0.75rem 1rem;
    background: rgba(10, 10, 10, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
}

.location-tab {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    padding: 0.95rem 1rem 0.85rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    color: var(--color-text-on-dark);
    cursor: pointer;
    transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    font-family: inherit;
}

.location-tab:hover {
    color: var(--color-text-inverse);
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-1px);
}

.location-tab.is-active {
    color: var(--color-text-inverse);
    border-color: rgba(227, 52, 47, 0.55);
    background: linear-gradient(145deg, rgba(227, 52, 47, 0.24), rgba(227, 52, 47, 0.1));
    box-shadow: 0 10px 24px rgba(227, 52, 47, 0.2);
}

.location-tab-count {
    font-size: clamp(1.65rem, 2.2vw, 2rem);
    font-weight: 800;
    line-height: 1;
    color: var(--color-text-inverse);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.location-tab-label {
    font-size: var(--font-size-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.location-tab-sub {
    font-size: var(--font-size-xs);
    font-weight: 600;
    color: var(--color-text-on-dark);
    opacity: 0.85;
}

.location-tab.is-active .location-tab-sub {
    color: rgba(255, 255, 255, 0.75);
}

.location-tab-panels {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 2.5rem max(24px, calc((100vw - var(--container-max)) / 2 + 40px)) 0;
}

.location-tab-panel {
    display: none;
    animation: locationTabFade 0.35s ease;
}

.location-tab-panel.is-active {
    display: block;
}

@keyframes locationTabFade {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.location-tab-panel-header {
    text-align: center;
    margin-bottom: 2rem;
}

.location-tab-panel-intro {
    font-size: var(--font-size-sm);
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--color-text-on-dark);
}

@media (max-width: 768px) {
    .location-tabs {
        max-width: calc(100% - 24px);
        gap: 0.45rem;
        padding: 0.6rem;
        border-radius: 20px;
        margin-top: -1.2rem;
    }

    .location-tab {
        padding: 0.8rem 0.5rem 0.7rem;
        border-radius: 16px;
    }

    .location-tab-count {
        font-size: 1.5rem;
    }

    .location-tab-label {
        font-size: 0.76rem;
        letter-spacing: 0.9px;
    }

    .location-tab-sub {
        font-size: 0.68rem;
    }
}

.location-sites-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.location-site-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: var(--radius-card);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.location-site-card:hover {
    transform: translateY(-4px);
    border-color: rgba(227, 52, 47, 0.45);
    box-shadow: 0 16px 40px rgba(227, 52, 47, 0.12);
}

.location-site-card-inner {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

.location-site-card-media {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.location-site-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    object-position: 50% 20%;
}

.location-site-card:hover .location-site-card-media img {
    transform: scale(1.05);
}

.location-site-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.5rem;
}

.location-site-card-title {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--color-text-inverse);
    line-height: 1.35;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: calc(2 * 1.35 * 1em);
}

.location-site-card-desc {
    font-size: var(--font-size-sm);
    color: var(--color-text-on-dark);
    line-height: 1.65;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: calc(3 * 1.65 * 1em);
}

.location-site-card-meta {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.location-site-card-meta-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
}

.location-site-card-meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    min-height: 4.25rem;
    padding: 0.7rem 0.85rem;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.location-site-card-meta-label {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-primary);
}

.location-site-card-meta-value {
    font-size: var(--font-size-sm);
    font-weight: 700;
    color: var(--color-text-inverse);
    line-height: 1.35;
}

.location-site-card-traffic {
    position: relative;
    padding: 1rem 1.1rem 1.05rem;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(227, 52, 47, 0.14) 0%, rgba(227, 52, 47, 0.05) 100%);
    border: 1px solid rgba(227, 52, 47, 0.22);
    overflow: hidden;
}

.location-site-card-traffic::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 3px;
    background: linear-gradient(180deg, var(--color-primary), rgba(227, 52, 47, 0.35));
}

.location-site-card-traffic-label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.45rem;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-primary);
}

.location-site-card-traffic-label svg {
    flex-shrink: 0;
    opacity: 0.9;
}

.location-site-card-traffic-text {
    margin: 0;
    font-size: clamp(1rem, 1.35vw, 1.125rem);
    font-weight: 600;
    line-height: 1.5;
    color: var(--color-text-inverse);
    letter-spacing: 0.01em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: calc(2 * 1.5 * 1em);
}

/* Legacy site blocks (fallback) */
.location-sites-page {
    background: var(--color-bg-white);
}

.location-category-section + .location-category-section {
    border-top: 1px solid var(--color-border);
}

.location-category-header {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--section-padding) var(--section-padding) 0;
    text-align: center;
}

.location-category-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--color-text);
    margin-top: 8px;
}

.location-site-block {
    padding: var(--section-padding);
}

.location-site-block:nth-child(even) {
    background: var(--color-bg);
}

.location-site-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Reversed layout — image left, text right */
.location-site-block.is-reversed .location-site-inner {
    direction: rtl;
}

.location-site-block.is-reversed .location-site-text,
.location-site-block.is-reversed .location-site-media {
    direction: ltr;
}

.location-site-badge {
    display: inline-block;
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-primary);
    background: var(--color-primary-light);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-pill);
    padding: 6px 16px;
    margin-bottom: 20px;
}

.location-site-title {
    font-size: var(--font-size-2xl);
    font-weight: 800;
    color: var(--color-text);
    line-height: 1.25;
    letter-spacing: -0.3px;
    margin-bottom: 20px;
}

.location-site-desc {
    font-size: var(--font-size-base);
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 28px;
}

.location-site-quick-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.location-site-quick-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--color-border);
    background: var(--color-bg);
    color: var(--color-text-secondary);
    font-size: var(--font-size-sm);
    line-height: 1.3;
}

.location-site-quick-item strong {
    color: var(--color-text);
    font-weight: 600;
}


.location-site-media {
    width: 100%;
    height: 380px;
    overflow: hidden;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

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

.location-site-block:hover .location-site-media img {
    transform: scale(1.03);
}

.location-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text-on-dark);
    text-decoration: none;
    font-size: var(--font-size-sm);
    font-weight: 600;
    margin-bottom: 20px;
    padding: 0;
    border: none;
    background-color: transparent;
    background-image: none;
    transition: color var(--transition), -webkit-text-fill-color var(--transition), transform var(--transition);
}

.location-back-link::before {
    content: "\2039";
    font-size: 1rem;
    line-height: 1;
    font-weight: 700;
}

.location-back-link:hover {
    background-color: transparent;
    background-image: var(--gradient-primary-hover);
    background-repeat: no-repeat;
    background-size: 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    transform: translateX(-2px);
}

.page-hero .location-back-link {
    color: rgba(255, 255, 255, 0.75);
    background-color: transparent;
    background-image: none;
    -webkit-background-clip: border-box;
    background-clip: border-box;
    -webkit-text-fill-color: currentColor;
}

.page-hero .location-back-link:hover {
    background-color: transparent;
    background-image: var(--gradient-primary-hover);
    background-repeat: no-repeat;
    background-size: 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.location-not-found {
    text-align: center;
    padding: 120px 20px;
    max-width: 480px;
    margin: 0 auto;
}

.location-not-found h2 {
    font-size: var(--font-size-2xl);
    margin-bottom: 12px;
}

.location-not-found p {
    color: var(--color-text-muted);
    margin-bottom: 28px;
}

/* --- Individual site detail page --- */
.site-detail-hero {
    position: relative;
    height: 460px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.site-detail-scanline {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 2;
    opacity: 0.35;
}

.site-detail-hero-overlay {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 50px 40px;
    background: linear-gradient(to top, rgba(17, 17, 17, 0.95) 0%, rgba(17, 17, 17, 0.5) 55%, transparent 100%);
}

.site-detail-title {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    color: var(--color-text-inverse);
    letter-spacing: -0.5px;
    margin-bottom: 8px;
}

.site-detail-location {
    font-size: var(--font-size-base);
    color: var(--color-text-on-dark);
}

.site-detail-content {
    background: var(--color-bg);
    padding: var(--section-padding);
}

.site-detail-wrapper {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 48px;
    align-items: start;
}

.site-detail-heading {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: 16px;
}

.site-detail-desc {
    font-size: var(--font-size-base);
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin-bottom: 16px;
}

.site-detail-box {
    background: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 20px;
}

.site-detail-box-title {
    font-size: var(--font-size-base);
    font-weight: 700;
    margin-bottom: 18px;
}

.site-detail-spec {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
}

.site-detail-spec:last-child {
    border-bottom: none;
}

.site-detail-spec strong {
    color: var(--color-text);
    font-weight: 600;
}

.site-detail-cta {
    display: block;
    text-align: center;
    width: 100%;
}


/* --------------------------------------------------------------------------
   06d. ABOUT PAGE
   -------------------------------------------------------------------------- */

/* Hero */
.about-hero {
    position: relative;
    padding: 86px 40px 30px;
}

.about-highlights {
    max-width: var(--container-max);
    margin: 26px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.about-highlight-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-card);
    padding: 20px 22px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.about-highlight-card:hover {
    transform: translateY(-3px);
    border-color: rgba(227, 52, 47, 0.55);
    box-shadow: 0 16px 34px rgba(227, 52, 47, 0.2);
}

.about-highlight-card h3 {
    font-size: var(--font-size-2xl);
    color: var(--color-primary);
    margin-bottom: 8px;
    line-height: 1;
}

.about-highlight-card p {
    margin: 0;
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.78);
    font-weight: 500;
    letter-spacing: 0.2px;
}

/* Alternating content blocks */
.about-block {
    padding: var(--section-padding);
    background: var(--color-bg-white);
}

.about-block--alt {
    background: var(--color-bg);
}

.about-block .about-block-inner {
    background: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-left: 4px solid var(--color-primary);
    border-radius: var(--radius-md);
    padding: 34px;
    box-shadow: var(--shadow-sm);
}

.about-block--alt .about-block-inner {
    background: linear-gradient(145deg, #ffffff, #f6f6f8);
}

.about-block-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-block.is-reversed .about-block-inner {
    direction: rtl;
}

.about-block.is-reversed .about-block-text,
.about-block.is-reversed .location-site-media {
    direction: ltr;
}

/* Team section */
.about-team-section {
    position: relative;
    background: var(--color-bg-dark);
    padding: 56px 40px 90px;
    overflow: hidden;
}

.about-team-section .dark-content {
    position: relative;
    z-index: 1;
}

.about-team-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 44px;
}

.about-team-title {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    color: var(--color-text-inverse);
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.about-team-intro {
    font-size: var(--font-size-base);
    color: var(--color-text-on-dark);
    line-height: 1.7;
}

.about-team-grid {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}

.about-team-card {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #111;
    isolation: isolate;
    transition: transform 0.45s ease, border-color 0.45s ease, box-shadow 0.45s ease;
}

.about-team-card:hover {
    transform: translateY(-6px);
    border-color: rgba(227, 52, 47, 0.55);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
}

.about-team-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.about-team-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.7s ease;
}

.about-team-card:hover .about-team-media img {
    transform: scale(1.06);
}

.about-team-shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(8, 8, 8, 0.08) 0%, rgba(8, 8, 8, 0.28) 34%, rgba(8, 8, 8, 0.9) 68%, rgba(8, 8, 8, 0.97) 100%),
        linear-gradient(90deg, rgba(227, 52, 47, 0.16) 0%, transparent 40%);
    pointer-events: none;
}

.about-team-copy {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 28px 24px 28px;
    text-align: left;
}

.about-team-role {
    font-size: var(--font-size-xs);
    font-weight: 600;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.about-team-name {
    font-size: clamp(1.35rem, 1.1rem + 0.6vw, 1.7rem);
    font-weight: 800;
    color: var(--color-text-inverse);
    letter-spacing: -0.03em;
    margin-bottom: 12px;
    line-height: 1.15;
}

.about-team-bio {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.7;
    margin: 0;
}

/* Stats — dark OOH panel */
.about-stats-section {
    position: relative;
    background: var(--color-bg-dark);
    padding: var(--section-padding);
    overflow: hidden;
}

.about-stats-wrapper {
    position: relative;
    z-index: 1;
    max-width: var(--container-max);
    margin: 0 auto;
    max-width: 860px;
}

.about-stats-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-stat-item {
    padding: 24px 22px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 3px solid var(--color-primary);
    border-radius: var(--radius-card);
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.about-stat-item:hover {
    transform: translateY(-3px);
    border-color: rgba(227, 52, 47, 0.3);
    box-shadow: 0 10px 32px rgba(227, 52, 47, 0.1);
}

.about-stat-number {
    display: block;
    font-size: var(--font-size-3xl);
    font-weight: 800;
    color: var(--color-text-inverse);
    letter-spacing: -1px;
    margin-bottom: 6px;
}

.about-stat-title {
    font-size: var(--font-size-base);
    font-weight: 700;
    color: var(--color-text-inverse);
    margin-bottom: 6px;
}

.about-stat-desc {
    font-size: var(--font-size-sm);
    color: var(--color-text-on-dark);
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   06d2. INNOVATION PAGE
   -------------------------------------------------------------------------- */

/* ── Pillars ── */
.innovation-pillars-section {
    position: relative;
    padding: 88px 40px;
    overflow: hidden;
}

.innovation-pillars-inner {
    position: relative;
    z-index: 1;
    max-width: var(--container-max);
    margin: 0 auto;
}

.innovation-pillars-header {
    max-width: 580px;
    margin-bottom: 52px;
}

.innovation-pillars-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--color-text-inverse);
    letter-spacing: -0.5px;
    margin: 12px 0 16px;
}

.innovation-pillars-intro {
    font-size: var(--font-size-base);
    color: var(--color-text-on-dark);
    line-height: 1.7;
    margin: 0;
}

.innovation-pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.innovation-pillar {
    position: relative;
    padding: 32px 26px 28px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-card);
    overflow: hidden;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.innovation-pillar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.innovation-pillar:hover {
    transform: translateY(-6px);
    border-color: rgba(227, 52, 47, 0.35);
    background: rgba(227, 52, 47, 0.06);
    box-shadow: 0 20px 48px rgba(227, 52, 47, 0.12);
}

.innovation-pillar:hover::before {
    opacity: 1;
}

.innovation-pillar-num {
    position: absolute;
    top: 16px;
    right: 18px;
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.04);
    line-height: 1;
    letter-spacing: -2px;
    user-select: none;
}

.innovation-pillar-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(227, 52, 47, 0.15);
    color: var(--color-primary);
    margin-bottom: 20px;
}

.innovation-pillar-icon svg {
    width: 24px;
    height: 24px;
}

.innovation-pillar-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-text-inverse);
    margin-bottom: 8px;
}

.innovation-pillar-text {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.65;
    margin: 0;
}

/* ── Campaign showcase ── */
.innovation-gallery-section {
    position: relative;
    padding: 88px 40px;
    overflow: hidden;
}

.innovation-gallery-inner {
    position: relative;
    z-index: 1;
    max-width: var(--container-max);
    margin: 0 auto;
}

.innovation-gallery-header {
    max-width: 520px;
    margin-bottom: 52px;
}

.innovation-gallery-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--color-text-inverse);
    letter-spacing: -0.5px;
    margin: 12px 0 0;
}

.innovation-work-grid {
    display: flex;
    align-items: flex-start;
    gap: 28px;
}

.innovation-work-column {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.innovation-work {
    min-width: 0;
    break-inside: avoid;
}

.innovation-work-media {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    background: linear-gradient(110deg, #111 8%, #1a1a1a 18%, #111 33%);
    background-size: 200% 100%;
    animation: award-img-shimmer 1.4s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.08);
    line-height: 0;
    min-height: 180px;
}

.innovation-work-media.is-loaded {
    animation: none;
    background: #0a0a0a;
    min-height: 0;
}

.innovation-work-media picture {
    display: block;
    width: 100%;
}

.innovation-work-img {
    display: block;
    width: 100%;
    height: auto;
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.35s ease;
}

.innovation-work-img.is-loaded.is-visible {
    opacity: 1;
}

.innovation-work-img:not(.is-visible) {
    position: absolute;
    inset: 0;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    pointer-events: none;
}

.innovation-work:hover .innovation-work-img.is-loaded.is-visible {
    transform: scale(1.03);
}

.innovation-work-toggle {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    display: flex;
    gap: 4px;
    padding: 4px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
}

.innovation-work-toggle-btn {
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    font-family: inherit;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 999px;
    cursor: pointer;
    transition: background var(--transition), color var(--transition);
}

.innovation-work-toggle-btn.is-active {
    background: #fff;
    color: var(--color-primary);
}

.innovation-work-title {
    margin-top: 18px;
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
    font-weight: 700;
    color: var(--color-text-inverse);
    letter-spacing: -0.2px;
}

.innovation-work-subtitle {
    margin-top: 4px;
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.5;
}

@media (max-width: 1099px) {
    .innovation-pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* CTA banner */
.about-cta-section {
    position: relative;
    background: var(--color-bg-dark);
    padding: 100px 40px;
    text-align: center;
    overflow: hidden;
}

.about-cta-inner {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
}

.about-cta-title {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    color: var(--color-text-inverse);
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.about-cta-text {
    font-size: var(--font-size-base);
    color: var(--color-text-on-dark);
    line-height: 1.7;
    margin-bottom: 32px;
}


/* --------------------------------------------------------------------------
   06e. CONTACT PAGE
   -------------------------------------------------------------------------- */
.contact-section {
    background: var(--color-bg);
    padding: var(--section-padding);
}

.contact-wrapper {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Form card */
.contact-form-card {
    background: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.contact-form-title {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-form-subtitle {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    margin-bottom: 32px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form .form-group {
    margin-bottom: 22px;
}

.contact-form label {
    display: block;
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    color: var(--color-text);
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--color-text-muted);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px var(--color-primary-glow);
    background: var(--color-bg-white);
}

.contact-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b6b70' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.contact-form textarea {
    resize: vertical;
    min-height: 130px;
}

.contact-submit-btn {
    width: 100%;
    margin-top: 8px;
}

.contact-submit-btn:disabled {
    opacity: 0.7;
    cursor: wait;
}

.form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.contact-error {
    margin: 0 0 14px;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(227, 52, 47, 0.35);
    background: var(--color-primary-light);
    color: var(--color-primary-dark);
    font-size: var(--font-size-sm);
    line-height: 1.5;
}

/* Success message */
.contact-success {
    text-align: center;
    padding: 40px 20px;
}

.contact-success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--color-primary-light);
    color: var(--color-primary);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-success h3 {
    font-size: var(--font-size-xl);
    margin-bottom: 8px;
}

.contact-success p {
    color: var(--color-text-muted);
    font-size: var(--font-size-base);
}

/* Info cards sidebar */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info-card {
    background: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    padding: 24px;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-info-card:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
}

.contact-info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--color-primary-light);
    color: var(--color-primary);
    font-size: 1.2rem;
    margin-bottom: 14px;
}

.contact-info-card h3 {
    font-size: var(--font-size-base);
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-info-card p {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.contact-info-card a {
    display: inline-block;
    text-decoration: none;
    font-weight: 500;
    background-color: transparent;
    background-image: var(--gradient-primary);
    background-repeat: no-repeat;
    background-size: 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.contact-info-card a:hover {
    background-image: var(--gradient-primary-hover);
}

/* Google Map */
.contact-map-section {
    background: var(--color-bg-white);
    padding: 0 0 80px;
}

.contact-map-header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 40px;
    padding: 60px 20px 0;
}

.contact-map-title {
    font-size: var(--font-size-2xl);
    font-weight: 800;
    letter-spacing: -0.3px;
    margin-bottom: 10px;
}

.contact-map-desc {
    font-size: var(--font-size-base);
    color: var(--color-text-muted);
}

.contact-map-wrapper {
    max-width: var(--container-max);
    margin: 0 auto;
    height: 450px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}


/* --------------------------------------------------------------------------
   07. CLIENTS — flip-card logo grid
   -------------------------------------------------------------------------- */
.clients-section {
    position: relative;
    background-color: var(--color-bg-dark);
    padding: var(--section-padding);
    width: 100%;
    overflow: hidden;
}

.clients-wrapper {
    position: relative;
    z-index: 1;
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: center;
}

/* Left column — section copy */
.clients-info {
    max-width: 420px;
}

.clients-subtitle {
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-text-on-dark);
    display: block;
    margin-bottom: 16px;
}

.clients-title {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    color: var(--color-text-inverse);
    letter-spacing: -0.5px;
    margin-bottom: 24px;
    line-height: 1.15;
}

.clients-desc {
    font-size: var(--font-size-base);
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-text-on-dark);
}

/* Right column — logo grid (4×3 = 12 cards) */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

/* Individual flip card container */
.client-card {
    aspect-ratio: 1;
    perspective: 1000px;
}

.client-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
}

/* Triggered by JS when a random card flips */
.client-card.is-flipped .client-card-inner {
    transform: rotateY(180deg);
}

/* Shared face styles — front & back */
.client-card-face {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    background: var(--color-bg-white);
    border-radius: var(--radius-card);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.client-card-back {
    transform: rotateY(180deg);
}

/* Logo content inside each face */
.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.client-logo img {
    display: block;
    max-width: 88%;
    max-height: 72%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
}


/* --------------------------------------------------------------------------
   08. TESTIMONIALS — slider + quote marquee
   -------------------------------------------------------------------------- */
.testimonials-section {
    position: relative;
    background-color: var(--color-bg-dark);
    padding: var(--section-padding);
    width: 100%;
    overflow: hidden;
}

.testimonials-inner {
    position: relative;
    z-index: 1;
}

.testimonials-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px auto;
}

.testimonials-title {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    color: var(--color-text-inverse);
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.testimonials-intro {
    font-size: var(--font-size-base);
    color: var(--color-text-on-dark);
    line-height: 1.7;
}

/* Slider viewport — multi-card window with smooth slide */
.testimonials-slider {
    max-width: 1240px;
    margin: 0 auto 50px auto;
    position: relative;
}

.testimonials-viewport {
    overflow: hidden;
    width: 100%;
}

.testimonials-track {
    display: flex;
    gap: 22px;
    will-change: transform;
    transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonials-track.is-instant {
    transition: none;
}

/* Individual testimonial card */
.testimonial-card {
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-left: 4px solid transparent;
    border-radius: var(--radius-card);
    padding: 34px 30px;
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.22);
    display: block;
    min-height: 100%;
    flex-shrink: 0;
    opacity: 0.55;
    transform: translateY(6px) scale(0.985);
    transition:
        opacity 0.55s ease,
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.testimonial-card.is-visible-window {
    opacity: 1;
    transform: translateY(0) scale(1);
    box-shadow: var(--shadow-lg);
    border-color: rgba(227, 52, 47, 0.2);
    border-left-color: var(--color-primary);
}

@media (prefers-reduced-motion: reduce) {
    .testimonials-track,
    .testimonial-card {
        transition: none;
    }
}

/* Star rating row */
.testimonial-stars {
    color: var(--color-primary);
    font-size: var(--font-size-lg);
    letter-spacing: 3px;
    margin-bottom: 24px;
}

.testimonial-quote-mark {
    display: inline-block;
    font-size: 3.1rem;
    line-height: 0.8;
    color: rgba(227, 52, 47, 0.26);
    font-weight: 700;
    margin-bottom: 4px;
}

/* Quote text */
.testimonial-quote {
    font-size: var(--font-size-base);
    font-weight: 400;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 28px;
    font-style: normal;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Author row — avatar + name */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: var(--color-text-inverse);
    font-size: var(--font-size-sm);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-name {
    font-size: var(--font-size-base);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 2px;
}

.testimonial-role {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    font-weight: 400;
}

/* Slider controls — prev/next + dots */
.testimonials-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 32px;
}

.testimonial-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-text-inverse);
    font-size: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.testimonial-btn::before {
    font-size: 18px;
    line-height: 1;
}

.testimonial-prev::before {
    content: "\2190";
}

.testimonial-next::before {
    content: "\2192";
}

.testimonial-btn:hover {
    background: rgba(227, 52, 47, 0.92);
    border-color: rgba(227, 52, 47, 0.92);
    color: var(--color-text-inverse);
    transform: scale(1.05);
}

.testimonials-dots {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: min(100%, 420px);
}

.testimonials-dots .testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    padding: 0;
    transition: all var(--transition);
}

.testimonials-dots .testimonial-dot.active {
    background: var(--color-primary);
    transform: scale(1.3);
}

@media (max-width: 1099px) {
    .testimonials-track {
        gap: 18px;
    }
}

@media (max-width: 767px) {
    .testimonials-track {
        gap: 14px;
    }
}

/* Scrolling quote chips marquee */
.testimonials-marquee {
    max-width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.testimonials-marquee-track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: marqueeScroll 30s linear infinite;
}

.testimonials-marquee-track:hover {
    animation-play-state: paused;
}

.marquee-chip {
    display: inline-block;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    padding: 12px 24px;
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-text-inverse);
    transition: border-color var(--transition), color var(--transition);
}

.marquee-chip:hover {
    border-color: rgba(227, 52, 47, 0.9);
    color: #ffffff;
    background: rgba(227, 52, 47, 0.25);
}


/* --------------------------------------------------------------------------
   08e2. NEWSLETTER TICKER — OOH signal feed (clickable headlines)
   -------------------------------------------------------------------------- */
.newsletter-ticker {
    position: relative;
    padding: 14px 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
    z-index: 2;
}

.newsletter-ticker::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(480px, 55%);
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(227, 52, 47, 0.35) 20%,
        var(--color-primary) 50%,
        rgba(227, 52, 47, 0.35) 80%,
        transparent
    );
    box-shadow: 0 0 14px rgba(227, 52, 47, 0.35);
    pointer-events: none;
}

.newsletter-ticker-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.newsletter-ticker-feed {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 14px;
}

.newsletter-live {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 11px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(227, 52, 47, 0.45);
    background: rgba(227, 52, 47, 0.12);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: #fff;
}

.newsletter-live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--color-primary);
    box-shadow: 0 0 0 0 rgba(227, 52, 47, 0.55);
    animation: newsletterLivePulse 1.8s ease-out infinite;
}

.newsletter-feed-label {
    flex-shrink: 0;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.newsletter-marquee {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.newsletter-marquee-track {
    display: flex;
    align-items: center;
    gap: 18px;
    width: max-content;
    animation: newsletterTickerScroll 38s linear infinite;
}

.newsletter-marquee.is-paused .newsletter-marquee-track {
    animation-play-state: paused;
}

.newsletter-headline {
    white-space: nowrap;
    font-size: 0.92rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.82);
    letter-spacing: 0.01em;
    text-decoration: none;
    transition: color 0.25s ease;
}

.newsletter-headline:hover,
.newsletter-headline:focus-visible {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(227, 52, 47, 0.8);
}

.newsletter-sep {
    color: rgba(227, 52, 47, 0.55);
    font-size: 0.55rem;
    line-height: 1;
}

@keyframes newsletterLivePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(227, 52, 47, 0.55);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(227, 52, 47, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(227, 52, 47, 0);
    }
}

@keyframes newsletterTickerScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


/* --------------------------------------------------------------------------
   08f. WHATSAPP FLOAT — pulsing chat button
   -------------------------------------------------------------------------- */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease;
}

.whatsapp-float:hover {
    transform: scale(1.05);
}

.whatsapp-float-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.whatsapp-icon-wrap {
    position: relative;
    width: 62px;
    height: 62px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-icon {
    position: relative;
    z-index: 2;
    width: 34px;
    height: 34px;
    fill: #fff;
}

.whatsapp-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.45);
    animation: whatsapp-pulse 2s ease-out infinite;
    z-index: 1;
}

.whatsapp-pulse--2 {
    animation-delay: 1s;
}

.whatsapp-float-label {
    font-family: var(--font-family);
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.2px;
    animation: whatsapp-label-blink 1.4s ease-in-out infinite;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.55);
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

@keyframes whatsapp-label-blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}


/* --------------------------------------------------------------------------
   08g. AD POPUP — timed promotional modal
   -------------------------------------------------------------------------- */
body.ad-popup-open {
    overflow: hidden;
}

.ad-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background-color: rgba(17, 17, 17, 0);
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.62s cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0.62s cubic-bezier(0.22, 1, 0.36, 1),
        background-color 0.62s cubic-bezier(0.22, 1, 0.36, 1),
        backdrop-filter 0.62s cubic-bezier(0.22, 1, 0.36, 1),
        -webkit-backdrop-filter 0.62s cubic-bezier(0.22, 1, 0.36, 1);
}

.ad-popup-overlay.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background-color: rgba(17, 17, 17, 0.72);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.ad-popup-overlay.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.ad-popup {
    position: relative;
    width: 100%;
    max-width: 480px;
    padding: 40px 36px 36px;
    background-color: var(--color-bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    text-align: center;
    opacity: 0;
    transform: translateY(34px) scale(0.92);
    transition:
        opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.12s,
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.12s;
}

.ad-popup-overlay.is-visible .ad-popup {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.ad-popup-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: var(--color-text-muted);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    transition: color var(--transition), background-color var(--transition);
}

.ad-popup-close:hover {
    color: var(--color-text);
    background-color: var(--color-bg);
}

.ad-popup-badge {
    display: inline-block;
    margin-bottom: 16px;
    padding: 6px 14px;
    font-size: var(--font-size-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--color-primary);
    background-color: var(--color-primary-light);
    border-radius: var(--radius-pill);
}

.ad-popup-title {
    font-size: var(--font-size-2xl);
    font-weight: 800;
    line-height: 1.2;
    color: var(--color-text);
    margin-bottom: 14px;
}

.ad-popup-accent {
    color: var(--color-primary);
}

.ad-popup-text {
    font-size: var(--font-size-base);
    color: var(--color-text-secondary);
    line-height: 1.65;
    margin-bottom: 28px;
}

.ad-popup-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.ad-popup-cta {
    width: 100%;
    max-width: 280px;
}

.ad-popup-link {
    display: inline-block;
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--color-text-secondary);
    text-decoration: none;
    background-color: transparent;
    background-image: none;
    -webkit-text-fill-color: currentColor;
    transition: color var(--transition), -webkit-text-fill-color var(--transition);
}

.ad-popup-link:hover {
    background-color: transparent;
    background-image: var(--gradient-primary-hover);
    background-repeat: no-repeat;
    background-size: 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

@media (max-width: 480px) {
    .ad-popup {
        padding: 32px 24px 28px;
    }

    .ad-popup-title {
        font-size: var(--font-size-xl);
    }
}


/* --------------------------------------------------------------------------
   09. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
    position: relative;
    background-color: var(--color-bg-dark);
    border-top: 3px solid var(--color-primary);
    padding: 80px 20px 30px 20px;
    color: var(--color-text-on-dark);
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

.site-footer::after {
    content: '';
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 200px;
    background: var(--color-primary);
    filter: blur(100px);
    opacity: 0.12;
    pointer-events: none;
}

.footer-container {
    position: relative;
    z-index: 1;
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 50px;
}

.footer-column .footer-title {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--color-text-inverse);
    margin-bottom: 25px;
    letter-spacing: -0.3px;
}

.footer-about {
    font-size: var(--font-size-base);
    line-height: 1.7;
    color: var(--color-text-on-dark);
    max-width: 400px;
}

.footer-social {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 24px;
    margin-top: 28px;
    max-width: 100%;
    padding: 6px 0;
}

.footer-social .social-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    max-width: 40px;
    max-height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.22);
    color: rgba(255, 255, 255, 0.88);
    background: rgba(255, 255, 255, 0.05);
    text-decoration: none;
    overflow: visible;
    isolation: isolate;
    transition:
        transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.35s ease,
        border-color 0.3s ease,
        background 0.35s ease,
        color 0.25s ease;
}

.footer-social .social-link::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        transparent,
        var(--color-primary),
        #ff6b5a,
        transparent
    );
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 1px));
    mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 1px));
    opacity: 0;
    transform: rotate(0deg) scale(0.9);
    transition: opacity 0.3s ease, transform 0.35s ease;
    z-index: -1;
}

.footer-social .social-link:hover::before {
    opacity: 1;
    animation: socialRingSpin 1.4s linear infinite;
}

.footer-social .social-link:hover {
    transform: translateY(-5px) scale(1.1);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 12px 28px rgba(227, 52, 47, 0.35);
}

.footer-social .social-link:nth-child(1):hover {
    background: #0a66c2;
    box-shadow: 0 12px 28px rgba(10, 102, 194, 0.38);
}

.footer-social .social-link:nth-child(2):hover {
    background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
    box-shadow: 0 12px 28px rgba(221, 42, 123, 0.4);
}

.footer-social .social-link:nth-child(3):hover {
    background: #ff0000;
    box-shadow: 0 12px 28px rgba(255, 0, 0, 0.38);
}

.footer-social .social-link svg {
    display: block;
    width: 16px;
    height: 16px;
    min-width: 16px;
    min-height: 16px;
    max-width: 16px;
    max-height: 16px;
    fill: currentColor;
    flex-shrink: 0;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer-social .social-link:hover svg {
    transform: scale(1.18) rotate(-4deg);
}

.footer-social .social-link:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 3px;
}

.contact-social {
    margin-top: 12px;
}

.contact-info-card .footer-social .social-link {
    border-color: var(--color-border);
    color: var(--color-text-secondary);
    background: var(--color-bg);
    font-weight: 400;
}

.contact-info-card .footer-social .social-link:nth-child(1):hover {
    background: #0a66c2;
    color: #fff;
}

.contact-info-card .footer-social .social-link:nth-child(2):hover {
    background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
    color: #fff;
}

.contact-info-card .footer-social .social-link:nth-child(3):hover {
    background: #ff0000;
    color: #fff;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    display: inline-block;
    text-decoration: none;
    color: var(--color-text-on-dark);
    font-size: var(--font-size-sm);
    font-weight: 500;
    background-color: transparent;
    background-image: none;
    -webkit-text-fill-color: currentColor;
    transition: color var(--transition), -webkit-text-fill-color var(--transition);
}

.footer-links a:hover,
.footer-links a.active {
    background-color: transparent;
    background-image: var(--gradient-primary);
    background-repeat: no-repeat;
    background-size: 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.footer-links a:hover {
    background-image: var(--gradient-primary-hover);
}

.footer-info {
    font-size: var(--font-size-sm);
    line-height: 1.7;
    color: var(--color-text-on-dark);
    margin-bottom: 10px;
}

.footer-bottom {
    position: relative;
    z-index: 1;
    max-width: var(--container-max);
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid var(--color-border-dark);
    text-align: center;
}

.footer-bottom p {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    letter-spacing: 0.3px;
}


/* --------------------------------------------------------------------------
   10. KEYFRAME ANIMATIONS
   -------------------------------------------------------------------------- */

/* Hero text entrance on each slide */
@keyframes heroTextIn {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes statsGlowDrift {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(20px, -15px) scale(1.08); }
}

@keyframes statsScanline {
    0%   { top: -2px; }
    100% { top: 100%; }
}

@keyframes statsDotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.6; transform: scale(0.85); }
}

/* Legacy fadeInUp — kept for other uses */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Page loader animations */
@keyframes loaderSpin {
    to { transform: rotate(360deg); }
}

@keyframes loaderGlow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(227, 52, 47, 0.45));
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 0 22px rgba(255, 90, 70, 0.75));
        transform: scale(1.05);
    }
}

@keyframes socialRingSpin {
    to { transform: rotate(360deg) scale(1); }
}

/* Testimonials quote marquee — infinite horizontal scroll */
@keyframes marqueeScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


/* --------------------------------------------------------------------------
   11. RESPONSIVE — TABLET & MOBILE
   -------------------------------------------------------------------------- */
/* Innovation stacks earlier than generic mobile so the billboard never crushes */
@media (max-width: 980px) {
    .innovation-wrapper {
        grid-template-columns: 1fr;
        grid-template-areas:
            "copy"
            "stage"
            "details";
        gap: 28px;
        align-items: stretch;
    }

    .innovation-copy,
    .innovation-details {
        max-width: none;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 20px;
    }

    /* --- Mobile navigation drawer --- */
    .nav-toggle-label {
        display: block;
        cursor: pointer;
        width: 30px;
        height: 20px;
        position: relative;
    }

    .nav-toggle-label span,
    .nav-toggle-label span::before,
    .nav-toggle-label span::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 2px;
        background-color: var(--color-text);
        transition: all var(--transition);
    }

    .nav-toggle-label span       { top: 9px; }
    .nav-toggle-label span::before { top: -8px; }
    .nav-toggle-label span::after  { top: 8px; }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--color-bg-white);
        height: 0;
        overflow: hidden;
        transition: height var(--transition);
    }

    .nav-menu ul {
        flex-direction: column;
        padding: 20px 0;
        gap: 20px;
    }

    .nav-toggle:checked ~ .nav-menu {
        height: 280px;
        border-bottom: 1px solid var(--color-border);
    }

    /* --- Hero --- */
    .hero-showcase {
        min-height: 530px;
    }

    .hero-text-layer {
        padding-left: 24px;
        padding-right: 24px;
        align-items: center;
    }

    .carousel-slide {
        padding-left: 24px;
        padding-right: 24px;
    }

    .hero-title {
        font-size: var(--font-size-2xl);
    }

    .hero-text {
        font-size: var(--font-size-base);
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .carousel-indicators {
        left: 24px;
        bottom: 28px;
    }

    .carousel-indicators .indicator {
        width: 32px;
    }

    .innovation-wrapper {
        gap: 24px;
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .innovation-stage,
    .innovation-copy,
    .innovation-details {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .innovation-intro {
        margin-bottom: 0;
    }

    .innovation-features {
        grid-template-columns: 1fr;
        margin-bottom: 20px;
    }

    .innovation-billboard-bezel {
        padding: 8px;
        border-radius: 12px;
        box-shadow:
            0 12px 28px rgba(0, 0, 0, 0.18),
            inset 0 1px 0 rgba(255, 255, 255, 0.08);
    }

    .innovation-billboard-bezel::before {
        inset: 5px;
        border-radius: 8px;
    }

    .innovation-carousel {
        aspect-ratio: 3 / 2;
    }

    .innovation-carousel .carousel-slide.is-active {
        animation: none;
    }

    .innovation-indicators.carousel-indicators {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        transform: none;
        margin-top: 14px;
        width: 100%;
        justify-content: center;
    }

    .innovation-caption-panel {
        padding: 16px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .innovation-title {
        font-size: var(--font-size-2xl);
        overflow-wrap: anywhere;
    }

    .innovation-watermark {
        font-size: 4.5rem;
        opacity: 0.28;
        top: 12%;
        right: 0;
        transform: none;
        max-width: 100%;
    }

    .innovation-section {
        padding-bottom: 72px;
    }

    /* --- Stats --- */
    .stats-wrapper {
        flex-direction: column;
        gap: 40px;
        padding: 0;
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .stats-info-block,
    .stats-info-block--carousel {
        max-width: 100%;
        width: 100%;
        min-width: 0;
    }

    .stats-section .hero-text-viewport {
        max-width: 100%;
    }

    .stats-section .hero-title {
        font-size: var(--font-size-2xl);
    }

    .stats-section .hero-text {
        font-size: var(--font-size-base);
        max-width: 100%;
        margin-bottom: 28px;
    }

    .stats-section .hero-actions {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .stats-section .hero-btn,
    .stats-section .hero-btn-outline {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .stats-main-heading {
        font-size: var(--font-size-2xl);
    }

    .stats-watermark {
        font-size: 6rem;
        right: -5%;
        opacity: 0.5;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        width: 100%;
        min-width: 0;
    }

    .stat-item {
        min-width: 0;
        width: 100%;
    }

    .stat-card {
        padding: 22px 20px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .stat-number {
        font-size: var(--font-size-3xl);
    }

    /* --- Awards --- */
    .awards-title {
        font-size: var(--font-size-2xl);
    }

    .awards-page-grid {
        gap: 20px;
    }

    .awards-page-column {
        gap: 20px;
    }

    .locations-page-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .location-sites-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .location-site-card-meta-row {
        grid-template-columns: 1fr;
    }

    .location-site-card-title {
        min-height: calc(2 * 1.35 * 1em);
    }

    .location-site-card-desc {
        min-height: calc(3 * 1.65 * 1em);
    }

    .location-site-card-meta-item {
        min-height: auto;
    }

    .location-site-card-traffic-text {
        font-size: 1.05rem;
    }

    .location-tab-panels {
        padding-top: 2rem;
    }

    .location-site-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .location-site-block.is-reversed .location-site-inner {
        direction: ltr;
    }

    .location-site-block.is-reversed .location-site-media {
        order: -1;
    }

    .location-site-media {
        height: 280px;
    }

    .location-site-block {
        padding: 60px 20px;
    }

    .site-detail-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .site-detail-hero {
        height: 360px;
    }

    .page-hero {
        padding: 60px 20px 50px;
    }

    .page-hero--compact {
        padding: 44px 20px 38px;
    }

    .page-hero--compact::after {
        width: 72vw;
    }

    .page-hero-title {
        font-size: var(--font-size-2xl);
    }

    /* --- About page --- */
    .about-block-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .about-hero {
        padding: 60px 20px 20px;
    }

    .about-highlights {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .about-block .about-block-inner {
        padding: 24px;
    }

    .about-block.is-reversed .about-block-inner {
        direction: ltr;
    }

    .about-block.is-reversed .location-site-media {
        order: -1;
    }

    .about-team-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        gap: 20px;
    }

    .about-team-section {
        padding: 40px 20px 70px;
    }

    .about-team-header {
        margin-bottom: 32px;
    }

    .about-team-card {
        min-height: 520px;
    }

    .about-team-card:hover {
        transform: translateY(-4px);
    }

    .about-team-title,
    .about-cta-title {
        font-size: var(--font-size-2xl);
    }

    .about-cta-section {
        padding: 60px 20px;
    }

    /* --- Contact page --- */
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .contact-map-wrapper {
        height: 320px;
    }

    .contact-form-card {
        padding: 28px 24px;
    }


    .innovation-pillars-section {
        padding: 56px 24px;
    }

    .innovation-pillars-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .innovation-gallery-section {
        padding: 56px 24px;
    }

    .innovation-work-grid {
        flex-direction: column;
        gap: 24px;
    }

    .innovation-work-column {
        width: 100%;
        gap: 24px;
    }

    /* --- Clients --- */
    .clients-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .clients-info {
        max-width: 100%;
        text-align: center;
    }

    .clients-title {
        font-size: var(--font-size-2xl);
    }

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

    /* --- Testimonials --- */
    .testimonials-title {
        font-size: var(--font-size-2xl);
    }

    .testimonials-header {
        margin-bottom: 44px;
    }

    .testimonial-card {
        padding: 32px 24px;
    }

    .testimonial-quote {
        font-size: var(--font-size-base);
    }

    /* --- Newsletter ticker --- */
    .newsletter-ticker {
        padding: 12px 16px 14px;
    }

    .newsletter-feed-label {
        display: none;
    }

    .newsletter-marquee-track {
        animation-duration: 48s;
    }

    /* --- Footer --- */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 16px;
    }

    .whatsapp-icon-wrap {
        width: 56px;
        height: 56px;
    }

    .whatsapp-icon {
        width: 30px;
        height: 30px;
    }
}

/* Very small screens — 2-column client grid */
@media (max-width: 480px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-social {
        gap: 18px;
        flex-wrap: wrap;
    }

    .awards-page-grid {
        gap: 16px;
    }

    .awards-page-column {
        gap: 16px;
    }

    .innovation-pillars-grid {
        grid-template-columns: 1fr;
    }

    .locations-page-grid {
        grid-template-columns: 1fr;
    }
}
