/* ===================================================
   SUPERCO HOME PAGE - PREMIUM COWORKING SPACE
   Brand Colors:
   - Dark Teal: #072A30
   - Signal Green: #17C64F
   - Platinum Ash: #B8C1C1
   - Soft White: #EDF2F2
   Font: Aeonik Pro
=================================================== */

/* CSS Custom Properties */
:root {
    --color-dark-teal: #072A30;
    --color-signal-green: #17C64F;
    --color-platinum-ash: #B8C1C1;
    --color-soft-white: #EDF2F2;
    --color-dark-teal-light: #0a3d45;
    --color-signal-green-dark: #14a83f;
    --color-signal-green-glow: rgba(23, 198, 79, 0.3);

    --font-primary: "Aeonik Pro", "Inter Tight", sans-serif;

    --header-height: 130px;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Body styles moved to globals.css */

/* ===================================================
   HEADER STYLES - Matching index.html
=================================================== */
/* Standardized header styles moved to globals.css */

/* ===================================================
   HERO V2 - PREMIUM BENTO GRID LAYOUT
=================================================== */
.hero-v2 {
    min-height: 100vh;
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: 60px;
    position: relative;
    display: flex;
    align-items: center;
    background-color: var(--color-dark-teal);
    overflow: hidden;
}

/* Animated Background */
.hero-v2__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.hero-v2__gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(23, 198, 79, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(23, 198, 79, 0.1) 0%, transparent 50%);
    animation: gradientPulse 8s ease-in-out infinite;
}

@keyframes gradientPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

.hero-v2__noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    mix-blend-mode: overlay;
}

.hero-v2__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    animation: glowFloat 15s ease-in-out infinite;
}

.hero-v2__glow--1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(23, 198, 79, 0.4) 0%, transparent 70%);
    top: -150px;
    right: 10%;
}

.hero-v2__glow--2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(23, 198, 79, 0.25) 0%, transparent 70%);
    bottom: -100px;
    left: 5%;
    animation-delay: 5s;
}

@keyframes glowFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -20px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 30px) scale(0.95);
    }
}

/* Container */
.hero-v2__container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Bento Grid Layout */
.hero-v2__bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}

/* Bento Cards Base */
.bento-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.bento-card:hover {
    border-color: rgba(23, 198, 79, 0.3);
    transform: translateY(-4px);
}

/* Main Content Card */
.bento-card--main {
    grid-row: span 2;
    grid-column: span 2;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.bento-card__inner {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* Badge */
.hero-v2__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(23, 198, 79, 0.12);
    border: 1px solid rgba(23, 198, 79, 0.25);
    border-radius: 100px;
    width: fit-content;
    animation: fadeSlideUp 0.8s ease forwards;
}

.hero-v2__badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-signal-green);
    border-radius: 50%;
    position: relative;
    animation: dotPulse 2s infinite;
}

.hero-v2__badge span {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-signal-green);
    letter-spacing: 0.02em;
}

/* Title */
.hero-v2__title {
    animation: fadeSlideUp 0.8s ease 0.1s forwards;
    opacity: 0;
}

.hero-v2__title-line {
    display: block;
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-soft-white);
    letter-spacing: -0.03em;
}

.hero-v2__title-accent {
    display: block;
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-signal-green);
    letter-spacing: -0.03em;
}

/* Tagline */
.hero-v2__tagline {
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 500;
    color: var(--color-soft-white);
    opacity: 0.9;
    animation: fadeSlideUp 0.8s ease 0.2s forwards;
    opacity: 0;
    margin: 0;
}

/* Description */
.hero-v2__desc {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-platinum-ash);
    max-width: 480px;
    animation: fadeSlideUp 0.8s ease 0.3s forwards;
    opacity: 0;
    margin: 0;
}

/* CTA Buttons */
.hero-v2__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    animation: fadeSlideUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.hero-v2__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.hero-v2__btn--primary {
    background: var(--color-signal-green);
    color: var(--color-dark-teal);
    box-shadow: 0 8px 32px rgba(23, 198, 79, 0.35);
}

.hero-v2__btn--primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(23, 198, 79, 0.5);
}

.hero-v2__btn--secondary {
    background: rgba(255, 255, 255, 0.06);
    color: var(--color-soft-white);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-v2__btn--secondary:hover {
    background: rgba(37, 211, 102, 0.15);
    border-color: rgba(37, 211, 102, 0.4);
    color: #25D366;
    transform: translateY(-3px);
}

/* Image Card */
.bento-card--image {
    grid-row: span 2;
    position: relative;
    min-height: 420px;
    background: transparent;
    border: none;
}

.bento-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 28px;
    display: block;
}

.bento-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(7, 42, 48, 0.6) 100%);
    border-radius: 28px;
    pointer-events: none;
}

/* Floating Tags */
.floating-tag {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 100px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    animation: floatTag 4s ease-in-out infinite;
    z-index: 10;
}

.floating-tag__icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-signal-green);
    border-radius: 50%;
    color: var(--color-dark-teal);
}

.floating-tag span {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-dark-teal);
    white-space: nowrap;
}

.floating-tag--wifi {
    top: 15%;
    right: 8%;
    animation-delay: 0s;
}

.floating-tag--coffee {
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

@keyframes floatTag {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* Stat Cards */
.bento-card--stat {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    text-align: center;
    background: linear-gradient(135deg, rgba(23, 198, 79, 0.08) 0%, rgba(23, 198, 79, 0.02) 100%);
    border-color: rgba(23, 198, 79, 0.15);
}

.bento-card--stat:hover {
    background: linear-gradient(135deg, rgba(23, 198, 79, 0.15) 0%, rgba(23, 198, 79, 0.05) 100%);
}

.bento-stat {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.bento-stat__number {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: var(--color-soft-white);
}

.bento-stat__suffix {
    font-size: clamp(24px, 3vw, 36px);
    color: var(--color-signal-green);
    font-weight: 700;
}

.bento-stat__label {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-platinum-ash);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Animations */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ===================================================
   HERO V3 - INTERACTIVE MAGNETIC LAYOUT
   =================================================== */
.hero-v3 {
    position: relative;
    min-height: 100vh;
    width: 100%;
    background-color: var(--color-dark-teal);
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    padding-bottom: 80px;
}

.hero-v3__bg-ornaments {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.hero-v3__glow {
    position: absolute;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(23, 198, 79, 0.15) 0%, transparent 70%);
    filter: blur(80px);
    border-radius: 50%;
    top: -20%;
    right: -10%;
    animation: glowFloat 20s infinite alternate ease-in-out;
}

.hero-v3__mesh {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(at 0% 0%, rgba(23, 198, 79, 0.05) 0, transparent 50%),
        radial-gradient(at 100% 100%, rgba(23, 198, 79, 0.05) 0, transparent 50%);
    opacity: 0.8;
}

.hero-v3__container {
    max-width: 1800px;
    /* Increased width */
    margin: 0 auto;
    width: 100%;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    /* Equal space for text and image */
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-v3__content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.hero-v3__badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 100px;
    width: fit-content;
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-signal-green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--color-signal-green);
    animation: pulseGlow 2s infinite;
}

.hero-v3__badge span {
    color: var(--color-soft-white);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-v3__title {
    font-size: clamp(56px, 8vw, 100px);
    font-weight: 800;
    line-height: 0.95;
    color: #fff;
    letter-spacing: -0.04em;
}

.text-gradient {
    background: linear-gradient(to right, #fff, var(--color-signal-green));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-v3__description {
    font-size: 20px;
    line-height: 1.6;
    color: var(--color-platinum-ash);
    max-width: 540px;
}

.hero-v3__actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn-primary-v3 {
    background: var(--color-signal-green);
    color: var(--color-dark-teal);
    padding: 18px 42px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(23, 198, 79, 0.2);
}

.btn-primary-v3:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(23, 198, 79, 0.4);
    background: #fff;
}

.btn-secondary-v3 {
    color: #fff;
    padding: 18px 32px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.btn-secondary-v3:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #fff;
}

/* Floating Visuals */
.hero-v3__visual {
    position: relative;
    height: 550px;
    /* Reduced height */
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-main {
    width: 85%;
    height: 85%;
    /* Slightly smaller than container */
    max-height: none;
    /* Remove max height constraint */
    object-fit: contain;
    /* Ensure full visibility */
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s ease;
    z-index: 2;
}

.visual-card {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.1s ease-out;
}

.card-1 {
    width: 240px;
    height: 320px;
    top: 0%;
    /* Adjusted position */
    right: 0%;
    z-index: 3;
    transform: translateZ(50px);
}

.card-2 {
    width: 200px;
    height: 200px;
    bottom: 5%;
    left: -10%;
    z-index: 3;
    transform: translateZ(30px);
}

.hero-v3__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Animations */
@keyframes pulseGlow {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

@keyframes glowFloat {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-5%, 5%);
    }
}

@media (max-width: 1100px) {
    .hero-v3__container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 80px;
    }

    .hero-v3__content {
        align-items: center;
    }

    .hero-v3__visual {
        height: 400px;
        order: -1;
    }

    .visual-main {
        transform: none;
    }

    .hero-v3__title {
        font-size: clamp(40px, 10vw, 64px);
    }

    .hero-v3__actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .btn-primary-v3,
    .btn-secondary-v3 {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
        white-space: nowrap;
        font-size: 16px;
    }

    .card-1,
    .card-2 {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-v3 {
        padding: 100px 0 60px;
    }

    .hero-v3__visual {
        height: 280px;
    }

    .hero-v3__title {
        font-size: 32px;
    }

    .card-1,
    .card-2 {
        display: none;
    }
}

/* ===================================================
   HERO - CINEMATIC VIDEO SECTION
   =================================================== */
/* ===================================================
   HERO SLIDER SECTION - Engaging & Dynamic
   =================================================== */
.hero-slider {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background-color: #072A30;
}

.slides-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* Individual Slide */
.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Slide Background */
.slide-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.bg-video,
.bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(7, 42, 48, 0.4) 0%,
            rgba(7, 42, 48, 0.5) 50%,
            rgba(7, 42, 48, 0.9) 100%);
    z-index: 1;
}

/* Ken Burns Effect for Images */
.ken-burns {
    transform: scale(1);
    transition: transform 8s ease;
}

.hero-slide.active .ken-burns {
    transform: scale(1.1);
}

/* Slide Content */
.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0 40px 100px 40px;
    z-index: 10;
    max-width: 1440px;
    margin: 0 auto;
    right: 0;
}

/* Text Animations */
.hero-slide .hero-title,
.hero-slide .hero-desc,
.hero-slide .hero-actions,
.hero-slide .flow-tagline-container {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.hero-slide.active .flow-tagline-container {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.hero-slide.active .hero-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.hero-slide.active .hero-desc {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

.hero-slide.active .hero-actions {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}


/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 20px;
}

.slider-arrow {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background: #fff;
    color: var(--color-dark-teal);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--color-signal-green);
    transform: scale(1.2);
}

/* Previous Flow/Typography Styles (Kept) */
.hero-text-content {
    max-width: 800px;
}

/* New Special Tagline Design */
.flow-tagline-container {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 20px;
}

.pre-flow {
    font-size: 24px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: -0.01em;
}

.flow-word {
    position: relative;
    font-family: var(--font-primary);
    font-size: 32px;
    font-weight: 800;
    color: var(--color-signal-green);
    display: inline-flex;
    flex-direction: column;
}

.flow-underline {
    position: absolute;
    bottom: -15px;
    left: -10%;
    width: 120%;
    height: 20px;
    overflow: visible;
}

.path-anim {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
}

/* Trigger animation when active */
.hero-slide.active .path-anim {
    animation: drawLine 2s ease-out forwards 0.5s;
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

/* Typography */
.hero-title {
    font-size: clamp(56px, 6vw, 96px);
    /* Slightly smaller than before to fit slider content */
    font-weight: 800;
    line-height: 1.0;
    color: #fff;
    margin-bottom: 32px;
    letter-spacing: -0.03em;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-desc {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 48px;
    font-weight: 400;
    max-width: 600px;
}

/* Buttons */
.hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.btn-hero-solid {
    background: var(--color-signal-green);
    color: var(--color-dark-teal);
    padding: 16px 40px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 10px 30px rgba(23, 198, 79, 0.4);
}

.btn-hero-solid:hover {
    transform: translateY(-4px);
    background: #fff;
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.3);
}

.btn-hero-glass {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    backdrop-filter: blur(4px);
}

.btn-hero-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .slide-content {
        padding: 0 24px 120px 24px;
        text-align: left;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .btn-hero-solid,
    .btn-hero-glass {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .slider-controls {
        bottom: 20px;
        right: 24px;
    }
}

/* ===================================================
   OUR SPACES - IMMERSIVE EXPERIENCE SECTION
=================================================== */
.our-spaces {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--color-soft-white) 0%, #f8fafa 100%);
    position: relative;
    overflow: hidden;
}

.our-spaces::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, var(--color-dark-teal) 0%, transparent 100%);
    opacity: 0.03;
    pointer-events: none;
}

.our-spaces__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
.our-spaces__header {
    text-align: center;
    margin-bottom: 80px;
}

.our-spaces__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-signal-green);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 24px;
    padding: 12px 24px;
    background: rgba(23, 198, 79, 0.08);
    border-radius: 100px;
    border: 1px solid rgba(23, 198, 79, 0.2);
}

.our-spaces__eyebrow svg {
    color: var(--color-signal-green);
}

.our-spaces__title {
    margin-bottom: 20px;
}

.our-spaces__title-main {
    display: block;
    font-size: clamp(32px, 5vw, 64px);
    /* Reduced max size for readability */
    font-weight: 700;
    color: var(--color-dark-teal);
    letter-spacing: -0.02em;
    line-height: 1.1;
    max-width: 900px;
    margin: 0 auto;
}

.our-spaces__intro {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--color-dark-teal);
    opacity: 0.8;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.6;
}

/* Grid Layout */
.our-spaces__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 80px;
}

/* Space Cards */
.space-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.space-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 24px 48px rgba(7, 42, 48, 0.2);
}

.space-card__image-wrapper {
    position: absolute;
    inset: 0;
}

.space-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.space-card:hover .space-card__image {
    transform: scale(1.1);
}

.space-card__overlay {
    position: absolute;
    inset: 0;
    background: transparent;
    transition: background 0.4s ease;
}

.space-card:hover .space-card__overlay {
    background: rgba(7, 42, 48, 0.2);
}

.space-card__content {
    position: absolute;
    bottom: 0 !important;
    top: auto !important;
    left: 0;
    right: 0;
    padding: 60px 24px 32px !important;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(to top, rgba(7, 42, 48, 0.95) 0%, rgba(7, 42, 48, 0.6) 50%, transparent 100%) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    min-height: 160px;
}

.space-card:hover .space-card__content {
    background: linear-gradient(to top, rgba(7, 42, 48, 1) 0%, rgba(7, 42, 48, 0.8) 100%) !important;
}

.space-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-signal-green);
    border-radius: 14px;
    color: var(--color-dark-teal);
    margin-bottom: 0;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.space-card:hover .space-card__icon {
    opacity: 1;
    max-height: 60px;
    margin-bottom: 16px;
}

.space-card__title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-soft-white);
    margin-bottom: 0;
    line-height: 1.2;
    min-height: 2.4em;
    /* Ensure alignment for 1 and 2 line titles */
    display: flex;
    align-items: flex-end;
}

.space-card:hover .space-card__title {
    margin-bottom: 4px;
}

.space-card__desc {
    font-size: 14px;
    color: var(--color-platinum-ash);
    line-height: 1.6;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 0;
}

.space-card:hover .space-card__desc {
    max-height: 200px;
    opacity: 1;
    margin-top: 12px;
}

/* Glow Effect */
.space-card__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(23, 198, 79, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 1;
}

.space-card:hover .space-card__glow {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 1;
}

/* Footer */
.our-spaces__footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
}

.our-spaces__features {
    display: flex;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
    flex-wrap: wrap;
    justify-content: center;
}

.space-feature {
    flex: 1;
    min-width: 300px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(7, 42, 48, 0.05);
    transition: all 0.3s ease;
}

.space-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border-color: rgba(23, 198, 79, 0.2);
}

.space-feature__icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: rgba(23, 198, 79, 0.1);
    color: var(--color-signal-green);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.space-feature__icon svg {
    width: 26px;
    height: 26px;
}

.space-feature__content h4 {
    font-size: 19px;
    font-weight: 700;
    color: var(--color-dark-teal);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.space-feature__content p {
    font-size: 16px;
    line-height: 1.6;
    color: #556060;
    margin: 0;
}

.our-spaces__cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: var(--color-dark-teal);
    color: var(--color-soft-white);
    border-radius: 100px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(7, 42, 48, 0.3);
}

.our-spaces__cta:hover {
    background: var(--color-signal-green);
    color: var(--color-dark-teal);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(23, 198, 79, 0.35);
}

.our-spaces__cta svg {
    transition: transform 0.3s ease;
}

.our-spaces__cta:hover svg {
    transform: translateX(4px);
}

/* ===================================================
   OUR SPACES - RESPONSIVE DESIGN
=================================================== */

/* Large Desktop */
@media (max-width: 1200px) {
    .our-spaces__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .space-card {
        aspect-ratio: 4/3;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .our-spaces {
        padding: 80px 0;
    }

    .our-spaces__container {
        padding: 0 24px;
    }

    .our-spaces__header {
        margin-bottom: 60px;
    }

    .our-spaces__grid {
        gap: 20px;
        margin-bottom: 60px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .our-spaces {
        padding: 60px 0;
    }

    .our-spaces__container {
        padding: 0 16px;
    }

    .our-spaces__header {
        margin-bottom: 40px;
    }

    .our-spaces__eyebrow {
        font-size: 12px;
        padding: 10px 18px;
    }

    .our-spaces__title-main {
        font-size: 48px;
    }

    .our-spaces__intro {
        font-size: 16px;
    }

    .our-spaces__grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 40px;
    }

    .space-card {
        aspect-ratio: 16/10;
    }

    .space-card__content {
        padding: 40px 20px 24px !important;
        top: auto !important;
        bottom: 0 !important;
    }

    .space-card__icon {
        display: none;
    }

    .space-card__desc {
        display: none;
    }

    .space-card:hover .space-card__desc {
        display: block;
        opacity: 1;
        max-height: none;
    }

    .space-card__title {
        font-size: 18px;
    }

    .space-card__desc {
        font-size: 13px;
    }

    .our-spaces__footer {
        gap: 28px;
    }

    .our-spaces__message p {
        font-size: 15px;
    }

    .our-spaces__cta {
        width: 100%;
        justify-content: center;
        padding: 16px 28px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .our-spaces__title-main {
        font-size: 36px;
    }

    .space-card {
        aspect-ratio: 4/3;
    }

    .space-card__content {
        padding: 20px 16px;
    }

    .space-card__icon {
        width: 36px;
        height: 36px;
        margin-bottom: 12px;
    }

    .space-card__icon svg {
        width: 18px;
        height: 18px;
    }

    .space-card__title {
        font-size: 16px;
    }
}

/* ===================================================
   WORK ZONES – PREMIUM STICKY SCROLL
=================================================== */
.wz-premium {
    position: relative;
    background: var(--color-dark-teal);
}

/* Scroll track creates the height */
.wz-premium__scroll-track {
    height: 400vh;
    position: relative;
}

/* Sticky frame fills viewport */
.wz-premium__frame {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

/* ---- Background ---- */
.wz-premium__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.wz-premium__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wz-premium__bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg,
            rgba(7, 42, 48, 0.95) 0%,
            rgba(7, 42, 48, 0.80) 30%,
            rgba(7, 42, 48, 0.40) 60%,
            rgba(7, 42, 48, 0.10) 100%);
    z-index: 2;
}

/* ---- Content Layer ---- */
.wz-premium__content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 60px;
    gap: 40px;
}

/* ---- Glass Card ---- */
.wz-premium__card {
    width: 480px;
    max-width: 45vw;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    padding: 44px 40px 32px;
    position: relative;
    box-shadow:
        0 32px 64px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Badge inside card */
.wz-premium__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--color-signal-green);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 32px;
    padding: 8px 18px;
    background: rgba(23, 198, 79, 0.12);
    border-radius: 100px;
    border: 1px solid rgba(23, 198, 79, 0.3);
}

.wz-premium__badge svg {
    color: var(--color-signal-green);
}

/* ---- Viewport & Slider ---- */
.wz-premium__viewport {
    overflow: hidden;
    position: relative;
    height: 300px;
}

.wz-premium__slider {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.wz-premium__slide {
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Step counter */
span.wz-premium__step {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-signal-green);
    letter-spacing: 0.1em;
    margin-bottom: 16px;
    opacity: 0.7;
}

/* Title */
.wz-premium__title {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

/* Description */
.wz-premium__desc {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    max-width: 400px;
}

/* Tags */
.wz-premium__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.wz-premium__tags span {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: rgba(23, 198, 79, 0.12);
    border: 1px solid rgba(23, 198, 79, 0.25);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-signal-green);
    transition: background 0.3s ease, transform 0.3s ease;
}

.wz-premium__tags span:hover {
    background: rgba(23, 198, 79, 0.3);
    transform: translateY(-2px);
}

/* ---- Progress Bar (bottom of card) ---- */
.wz-premium__progress-bar {
    margin-top: 24px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.wz-premium__progress-fill {
    height: 100%;
    width: 25%;
    background: linear-gradient(90deg, var(--color-signal-green), #25D366);
    border-radius: 3px;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Step Indicator (right side) ---- */
.wz-premium__steps {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 20px;
    align-items: center;
    z-index: 10;
}

/* Vertical line connecting dots */
.wz-premium__step-line {
    width: 2px;
    height: 180px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    overflow: hidden;
}

.wz-premium__step-line-fill {
    width: 100%;
    height: 25%;
    background: var(--color-signal-green);
    border-radius: 2px;
    transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dots */
.wz-premium__step-dots {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.wz-premium__dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.wz-premium__dot span {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.3s ease;
}

.wz-premium__dot.active {
    background: rgba(23, 198, 79, 0.2);
    border-color: var(--color-signal-green);
    transform: scale(1.15);
    box-shadow: 0 0 20px rgba(23, 198, 79, 0.3);
}

.wz-premium__dot.active span {
    color: var(--color-signal-green);
}

.wz-premium__dot:hover:not(.active) {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.12);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .wz-premium__content {
        padding: 0 40px;
    }

    .wz-premium__card {
        width: 420px;
        max-width: 55vw;
        padding: 36px 32px 28px;
    }

    .wz-premium__steps {
        right: 32px;
    }
}

@media (max-width: 768px) {
    .wz-premium__scroll-track {
        height: 350vh;
    }

    .wz-premium__bg-overlay {
        background: linear-gradient(180deg,
                rgba(7, 42, 48, 0.4) 0%,
                rgba(7, 42, 48, 0.9) 40%,
                rgba(7, 42, 48, 0.95) 100%);
    }

    .wz-premium__content {
        padding: 0 24px;
        align-items: flex-end;
        padding-bottom: 60px;
    }

    .wz-premium__card {
        width: 100%;
        max-width: 100%;
        padding: 28px 24px 24px;
        border-radius: 20px;
    }

    .wz-premium__viewport {
        height: 260px;
    }

    .wz-premium__slide {
        height: 260px;
    }

    .wz-premium__title {
        font-size: 26px;
    }

    .wz-premium__desc {
        font-size: 14px;
    }

    .wz-premium__steps {
        display: none;
    }
}


/* ===================================================
   WORK ZONES SCROLL - SCROLL-DRIVEN STICKY SLIDER (LEGACY)
=================================================== */
.work-zones-scroll {
    position: relative;
    background: var(--color-dark-teal);
}

/* Spacer creates scroll height for 4 slides */
.wz-scroll__spacer {
    height: 400vh;
    /* 100vh per slide */
    position: relative;
}

/* Sticky container stays fixed during scroll */
.wz-scroll__sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Centered Header */
.wz-scroll__header {
    text-align: center;
    padding: 80px 24px 40px;
    flex-shrink: 0;
}

.wz-scroll__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-signal-green);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
    padding: 12px 24px;
    background: rgba(23, 198, 79, 0.1);
    border-radius: 100px;
    border: 1px solid rgba(23, 198, 79, 0.25);
}

.wz-scroll__badge svg {
    color: var(--color-signal-green);
}

.wz-scroll__title {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 16px;
}

.wz-scroll__title-line {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: var(--color-soft-white);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.wz-scroll__title-accent {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: var(--color-signal-green);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.wz-scroll__subtitle {
    font-size: 16px;
    color: var(--color-platinum-ash);
    opacity: 0.7;
}

/* Slider Container */
.wz-scroll__slider {
    flex: 1;
    position: relative;
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 0 60px 60px;
    gap: 40px;
}

/* Slides Stack */
.wz-scroll__slides {
    flex: 1;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4);
}

/* Individual Slide */
.wz-scroll__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.wz-scroll__slide.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    z-index: 10;
}

/* Slide Background */
.wz-scroll__slide-bg {
    position: absolute;
    inset: 0;
}

.wz-scroll__slide-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(7, 42, 48, 0.92) 0%,
            rgba(7, 42, 48, 0.7) 40%,
            rgba(7, 42, 48, 0.1) 80%,
            transparent 100%);
}

.wz-scroll__slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.wz-scroll__slide.active .wz-scroll__slide-bg img {
    transform: scale(1.05);
}

/* Slide Content */
.wz-scroll__slide-content {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px;
    max-width: 480px;
    z-index: 5;
}

/* Slide Number */
.wz-scroll__slide-number {
    font-size: 64px;
    font-weight: 800;
    color: var(--color-signal-green);
    opacity: 0;
    line-height: 1;
    margin-bottom: 12px;
    transform: translateX(-20px);
    transition: opacity 0.5s ease 0.1s, transform 0.5s ease 0.1s;
}

.wz-scroll__slide.active .wz-scroll__slide-number {
    opacity: 0.3;
    transform: translateX(0);
}

/* Slide Title */
.wz-scroll__slide-title {
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 700;
    color: var(--color-soft-white);
    margin-bottom: 14px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.5s ease 0.2s, transform 0.5s ease 0.2s;
}

.wz-scroll__slide.active .wz-scroll__slide-title {
    opacity: 1;
    transform: translateX(0);
}

/* Slide Description */
.wz-scroll__slide-desc {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-platinum-ash);
    margin-bottom: 24px;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.5s ease 0.3s, transform 0.5s ease 0.3s;
}

.wz-scroll__slide.active .wz-scroll__slide-desc {
    opacity: 0.9;
    transform: translateX(0);
}

/* Slide Tags */
.wz-scroll__slide-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s ease 0.4s, transform 0.5s ease 0.4s;
}

.wz-scroll__slide.active .wz-scroll__slide-tags {
    opacity: 1;
    transform: translateY(0);
}

.wz-scroll__slide-tags span {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    background: rgba(23, 198, 79, 0.12);
    border: 1px solid rgba(23, 198, 79, 0.3);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-signal-green);
    transition: background 0.3s ease, transform 0.3s ease;
}

.wz-scroll__slide-tags span:hover {
    background: rgba(23, 198, 79, 0.25);
    transform: translateY(-2px);
}

/* Progress Indicator */
.wz-scroll__progress {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    z-index: 20;
}

.wz-scroll__progress-track {
    width: 4px;
    height: 140px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    overflow: hidden;
}

.wz-scroll__progress-fill {
    width: 100%;
    height: 25%;
    background: linear-gradient(180deg, var(--color-signal-green), #25D366);
    border-radius: 4px;
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.wz-scroll__progress-dots {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wz-scroll__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.wz-scroll__dot::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.wz-scroll__dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

.wz-scroll__dot.active {
    background: var(--color-signal-green);
    transform: scale(1.3);
}

.wz-scroll__dot.active::before {
    border-color: rgba(23, 198, 79, 0.4);
}

.wz-scroll__progress-text {
    font-size: 11px;
    font-weight: 600;
    color: var(--color-platinum-ash);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    opacity: 0.6;
}

/* ===================================================
   WORK ZONES SCROLL - RESPONSIVE DESIGN
=================================================== */

/* Tablet */
@media (max-width: 1024px) {
    .wz-scroll__slider {
        padding: 0 40px 40px;
        gap: 24px;
    }

    .wz-scroll__slide-content {
        padding: 40px;
        max-width: 420px;
    }

    .wz-scroll__slide-number {
        font-size: 48px;
    }

    .wz-scroll__progress {
        right: 24px;
    }

    .wz-scroll__progress-track {
        height: 100px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .wz-scroll__spacer {
        height: 350vh;
    }

    .wz-scroll__header {
        padding: 60px 20px 24px;
    }

    .wz-scroll__title-line {
        font-size: 26px;
    }

    .wz-scroll__title-accent {
        font-size: 30px;
    }

    .wz-scroll__slider {
        padding: 0 16px 24px;
        flex-direction: column;
    }

    .wz-scroll__slides {
        border-radius: 20px;
    }

    .wz-scroll__slide-bg::after {
        background: linear-gradient(180deg,
                rgba(7, 42, 48, 0.2) 0%,
                rgba(7, 42, 48, 0.85) 50%,
                rgba(7, 42, 48, 0.95) 100%);
    }

    .wz-scroll__slide-content {
        padding: 24px 20px;
        max-width: 100%;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
    }

    .wz-scroll__slide-number {
        font-size: 40px;
        margin-bottom: 8px;
    }

    .wz-scroll__slide-title {
        font-size: 24px;
    }

    .wz-scroll__slide-desc {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .wz-scroll__slide-tags {
        gap: 8px;
    }

    .wz-scroll__slide-tags span {
        padding: 8px 14px;
        font-size: 11px;
    }

    .wz-scroll__progress {
        right: 12px;
        gap: 12px;
    }

    .wz-scroll__progress-track {
        height: 80px;
        width: 3px;
    }

    .wz-scroll__dot {
        width: 10px;
        height: 10px;
    }

    .wz-scroll__progress-text {
        font-size: 9px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .wz-scroll__spacer {
        height: 320vh;
    }

    .wz-scroll__header {
        padding: 50px 16px 20px;
    }

    .wz-scroll__badge {
        font-size: 11px;
        padding: 10px 16px;
    }

    .wz-scroll__title-line {
        font-size: 22px;
    }

    .wz-scroll__title-accent {
        font-size: 26px;
    }

    .wz-scroll__subtitle {
        font-size: 14px;
    }

    .wz-scroll__slide-content {
        padding: 20px 16px;
    }

    .wz-scroll__slide-number {
        font-size: 32px;
    }

    .wz-scroll__slide-title {
        font-size: 20px;
    }

    .wz-scroll__progress {
        display: none;
    }
}

/* ===================================================
   WORK ZONES V3 - SMOOTH LANDSCAPE CAROUSEL (Legacy) */
.work-zones-v3 {
    background: var(--color-dark-teal);
    padding: 100px 0 80px;
    overflow: hidden;
}

/* Centered Header */
.wz-v3__header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 0 24px;
}

.wz-v3__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-signal-green);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 24px;
    padding: 12px 24px;
    background: rgba(23, 198, 79, 0.1);
    border-radius: 100px;
    border: 1px solid rgba(23, 198, 79, 0.25);
    animation: fadeSlideDown 0.8s ease forwards;
}

.wz-v3__badge svg {
    color: var(--color-signal-green);
}

.wz-v3__title {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.wz-v3__title-line {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: var(--color-soft-white);
    line-height: 1.1;
    letter-spacing: -0.03em;
    animation: fadeSlideUp 0.8s ease 0.1s forwards;
    opacity: 0;
}

.wz-v3__title-accent {
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 700;
    color: var(--color-signal-green);
    line-height: 1.1;
    letter-spacing: -0.03em;
    animation: fadeSlideUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.wz-v3__subtitle {
    font-size: 18px;
    color: var(--color-platinum-ash);
    opacity: 0.8;
    animation: fadeSlideUp 0.8s ease 0.3s forwards;
    opacity: 0;
}

@keyframes fadeSlideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Carousel Container */
.wz-v3__carousel {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Track - holds all slides */
.wz-v3__track {
    position: relative;
    height: 500px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4);
}

/* Individual Slides */
.wz-v3__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
        visibility 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.wz-v3__slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 10;
}

/* Slide Image */
.wz-v3__slide-image {
    position: absolute;
    inset: 0;
}

.wz-v3__slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.wz-v3__slide.active .wz-v3__slide-image img {
    transform: scale(1.02);
}

.wz-v3__slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(7, 42, 48, 0.95) 0%,
            rgba(7, 42, 48, 0.7) 40%,
            rgba(7, 42, 48, 0.2) 70%,
            transparent 100%);
}

/* Slide Content - Animated */
.wz-v3__slide-content {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    max-width: 500px;
    z-index: 5;
}

/* Slide Number */
.wz-v3__slide-number {
    font-size: 72px;
    font-weight: 800;
    color: var(--color-signal-green);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 16px;
    transform: translateX(-30px);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.1s,
        opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.wz-v3__slide.active .wz-v3__slide-number {
    transform: translateX(0);
    opacity: 0.25;
}

/* Slide Title */
.wz-v3__slide-title {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 700;
    color: var(--color-soft-white);
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    transform: translateX(-30px);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s,
        opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.wz-v3__slide.active .wz-v3__slide-title {
    transform: translateX(0);
    opacity: 1;
}

/* Slide Description */
.wz-v3__slide-desc {
    font-size: 17px;
    line-height: 1.7;
    color: var(--color-platinum-ash);
    margin-bottom: 28px;
    transform: translateX(-30px);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.3s,
        opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.wz-v3__slide.active .wz-v3__slide-desc {
    transform: translateX(0);
    opacity: 0.9;
}

/* Slide Tags */
.wz-v3__slide-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.4s,
        opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}

.wz-v3__slide.active .wz-v3__slide-tags {
    transform: translateY(0);
    opacity: 1;
}

.wz-v3__slide-tags span {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: rgba(23, 198, 79, 0.15);
    border: 1px solid rgba(23, 198, 79, 0.3);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-signal-green);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background 0.3s ease, transform 0.3s ease;
}

.wz-v3__slide-tags span:hover {
    background: rgba(23, 198, 79, 0.25);
    transform: translateY(-2px);
}

/* Navigation */
.wz-v3__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-top: 40px;
}

.wz-v3__nav-btn {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--color-soft-white);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.wz-v3__nav-btn:hover {
    background: var(--color-signal-green);
    border-color: var(--color-signal-green);
    color: var(--color-dark-teal);
    transform: scale(1.1);
}

.wz-v3__nav-btn svg {
    transition: transform 0.3s ease;
}

.wz-v3__nav-btn--prev:hover svg {
    transform: translateX(-3px);
}

.wz-v3__nav-btn--next:hover svg {
    transform: translateX(3px);
}

/* Dots */
.wz-v3__dots {
    display: flex;
    gap: 12px;
}

.wz-v3__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.wz-v3__dot::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.wz-v3__dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

.wz-v3__dot.active {
    background: var(--color-signal-green);
    transform: scale(1.2);
}

.wz-v3__dot.active::before {
    border-color: rgba(23, 198, 79, 0.4);
}

/* Progress Bar */
.wz-v3__progress {
    position: absolute;
    bottom: 0;
    left: 60px;
    right: 60px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.wz-v3__progress-fill {
    height: 100%;
    width: 25%;
    background: linear-gradient(90deg, var(--color-signal-green), #25D366);
    border-radius: 2px;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===================================================
   WORK ZONES V3 - RESPONSIVE DESIGN
=================================================== */

/* Tablet */
@media (max-width: 1024px) {
    .wz-v3__carousel {
        padding: 0 40px;
    }

    .wz-v3__track {
        height: 450px;
    }

    .wz-v3__slide-content {
        padding: 48px;
        max-width: 450px;
    }

    .wz-v3__slide-number {
        font-size: 56px;
    }

    .wz-v3__progress {
        left: 40px;
        right: 40px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .work-zones-v3 {
        padding: 80px 0 60px;
    }

    .wz-v3__header {
        margin-bottom: 40px;
    }

    .wz-v3__carousel {
        padding: 0 20px;
    }

    .wz-v3__track {
        height: 520px;
        border-radius: 20px;
    }

    .wz-v3__slide-overlay {
        background: linear-gradient(180deg,
                rgba(7, 42, 48, 0.3) 0%,
                rgba(7, 42, 48, 0.85) 50%,
                rgba(7, 42, 48, 0.95) 100%);
    }

    .wz-v3__slide-content {
        padding: 32px 24px;
        max-width: 100%;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
    }

    .wz-v3__slide-number {
        font-size: 48px;
        margin-bottom: 8px;
    }

    .wz-v3__slide-title {
        font-size: 26px;
    }

    .wz-v3__slide-desc {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .wz-v3__slide-tags {
        gap: 8px;
    }

    .wz-v3__slide-tags span {
        padding: 8px 14px;
        font-size: 12px;
    }

    .wz-v3__nav {
        gap: 20px;
        margin-top: 32px;
    }

    .wz-v3__nav-btn {
        width: 48px;
        height: 48px;
    }

    .wz-v3__dots {
        gap: 10px;
    }

    .wz-v3__dot {
        width: 10px;
        height: 10px;
    }

    .wz-v3__progress {
        left: 20px;
        right: 20px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .work-zones-v3 {
        padding: 60px 0 48px;
    }

    .wz-v3__badge {
        font-size: 11px;
        padding: 10px 18px;
    }

    .wz-v3__title-line {
        font-size: 28px;
    }

    .wz-v3__title-accent {
        font-size: 32px;
    }

    .wz-v3__subtitle {
        font-size: 15px;
    }

    .wz-v3__carousel {
        padding: 0 16px;
    }

    .wz-v3__track {
        height: 480px;
        border-radius: 16px;
    }

    .wz-v3__slide-content {
        padding: 24px 20px;
    }

    .wz-v3__slide-number {
        font-size: 40px;
    }

    .wz-v3__slide-title {
        font-size: 22px;
    }

    .wz-v3__progress {
        left: 16px;
        right: 16px;
    }
}

/* ===================================================
   WORK ZONES V2 - SCROLL-DRIVEN IMAGE SLIDER (Legacy) */
.work-zones-v2 {
    background: var(--color-soft-white);
    position: relative;
}

.work-zones-v2__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

.work-zones-v2__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

/* Left Content Panels */
.work-zones-v2__content {
    display: flex;
    flex-direction: column;
}

/* Individual Panels */
.wz-panel {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    position: relative;
    transition: background-color 0.4s ease;
}

/* Header Panel */
.wz-panel--header {
    background: var(--color-dark-teal);
    color: var(--color-soft-white);
}

.wz-panel__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-signal-green);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 24px;
    padding: 10px 20px;
    background: rgba(23, 198, 79, 0.1);
    border-radius: 100px;
    border: 1px solid rgba(23, 198, 79, 0.25);
    width: fit-content;
}

.wz-panel__main-title {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.wz-panel__main-title span {
    color: var(--color-signal-green);
}

.wz-panel__subtitle {
    font-size: 18px;
    color: var(--color-platinum-ash);
    opacity: 0.8;
}

/* Content Panels with Different Colors */
.wz-panel--1 {
    background: var(--color-dark-teal);
    color: var(--color-soft-white);
}

.wz-panel--2 {
    background: #0D575E;
    color: var(--color-soft-white);
}

.wz-panel--3 {
    background: #17C64F;
    color: var(--color-dark-teal);
}

.wz-panel--4 {
    background: #E07A4D;
    color: var(--color-dark-teal);
}

/* Panel Number */
.wz-panel__number {
    font-size: 80px;
    font-weight: 800;
    opacity: 0.15;
    line-height: 1;
    margin-bottom: 24px;
    letter-spacing: -0.05em;
}

.wz-panel--3 .wz-panel__number,
.wz-panel--4 .wz-panel__number {
    opacity: 0.2;
}

/* Panel Title */
.wz-panel__title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

/* Panel Description */
.wz-panel__desc {
    font-size: 17px;
    line-height: 1.8;
    opacity: 0.85;
    max-width: 500px;
    margin-bottom: 32px;
}

/* Features Tags */
.wz-panel__features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.wz-feature {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.wz-panel--3 .wz-feature,
.wz-panel--4 .wz-feature {
    background: rgba(7, 42, 48, 0.15);
}

/* Right Sticky Image Area */
.work-zones-v2__images {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: #0a2429;
}

/* Image Stack */
.wz-image-stack {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 4/5;
}

.wz-image {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.4);
}

.wz-image.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    z-index: 10;
}

.wz-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Image Label */
.wz-image__label {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.wz-image__label-num {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-signal-green);
    background: rgba(23, 198, 79, 0.1);
    padding: 8px 14px;
    border-radius: 10px;
}

.wz-image__label-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-dark-teal);
}

/* Progress Indicator */
.wz-progress {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.wz-progress__bar {
    width: 3px;
    height: 120px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
}

.wz-progress__fill {
    width: 100%;
    height: 25%;
    background: var(--color-signal-green);
    border-radius: 4px;
    transition: height 0.4s ease, transform 0.4s ease;
}

.wz-progress__dots {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wz-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.wz-dot.active {
    background: var(--color-signal-green);
    box-shadow: 0 0 0 4px rgba(23, 198, 79, 0.3);
}

.wz-dot:hover {
    background: var(--color-signal-green);
}

/* ===================================================
   WORK ZONES V2 - RESPONSIVE DESIGN
=================================================== */

/* Tablet */
@media (max-width: 1024px) {
    .work-zones-v2__wrapper {
        grid-template-columns: 1fr;
    }

    .work-zones-v2__images {
        display: none;
    }

    .wz-panel {
        min-height: auto;
        padding: 60px 40px;
    }

    .wz-panel::after {
        content: '';
        display: block;
        width: 100%;
        height: 300px;
        margin-top: 32px;
        border-radius: 20px;
        background-size: cover;
        background-position: center;
    }

    .wz-panel--1::after {
        background-image: url('images/space-focus.png');
    }

    .wz-panel--2::after {
        background-image: url('images/space-meeting.png');
    }

    .wz-panel--3::after {
        background-image: url('images/space-pod.png');
    }

    .wz-panel--4::after {
        background-image: url('images/space-lounge.png');
    }
}

/* Mobile */
@media (max-width: 768px) {
    .wz-panel {
        min-height: auto;
        padding: 48px 24px;
    }

    .wz-panel__main-title {
        font-size: 32px;
    }

    .wz-panel__subtitle {
        font-size: 15px;
    }

    .wz-panel__number {
        font-size: 56px;
        margin-bottom: 16px;
    }

    .wz-panel__title {
        font-size: 28px;
    }

    .wz-panel__desc {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .wz-panel__features {
        gap: 8px;
    }

    .wz-feature {
        padding: 8px 16px;
        font-size: 12px;
    }

    .wz-panel::after {
        height: 220px;
        margin-top: 24px;
        border-radius: 16px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .wz-panel {
        padding: 40px 16px;
    }

    .wz-panel__eyebrow {
        font-size: 11px;
        padding: 8px 14px;
    }

    .wz-panel__main-title {
        font-size: 28px;
    }

    .wz-panel__number {
        font-size: 48px;
    }

    .wz-panel__title {
        font-size: 24px;
    }

    .wz-panel::after {
        height: 180px;
    }
}

/* Old work-zones styles cleanup - now using work-zones-v2 */

.work-zones__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

/* Header */
.work-zones__header {
    text-align: center;
    margin-bottom: 80px;
}

.work-zones__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-signal-green);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 24px;
    padding: 10px 20px;
    background: rgba(23, 198, 79, 0.1);
    border-radius: 100px;
    border: 1px solid rgba(23, 198, 79, 0.25);
}

.work-zones__eyebrow svg {
    color: var(--color-signal-green);
}

.work-zones__title {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 700;
    color: var(--color-soft-white);
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.work-zones__title-accent {
    color: var(--color-signal-green);
}

/* Timeline Grid */
.work-zones__timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

/* Connector Line */
.work-zones__timeline::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg,
            rgba(23, 198, 79, 0.1) 0%,
            rgba(23, 198, 79, 0.4) 25%,
            rgba(23, 198, 79, 0.4) 75%,
            rgba(23, 198, 79, 0.1) 100%);
    z-index: 0;
}

/* Zone Cards */
.zone-card {
    position: relative;
    padding: 0 24px;
    text-align: center;
    z-index: 1;
}

.zone-card__number {
    width: 56px;
    height: 56px;
    margin: 0 auto 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: var(--color-dark-teal);
    background: var(--color-signal-green);
    border-radius: 50%;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 8px rgba(23, 198, 79, 0.15), 0 8px 24px rgba(23, 198, 79, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.zone-card:hover .zone-card__number {
    transform: scale(1.1);
    box-shadow: 0 0 0 12px rgba(23, 198, 79, 0.2), 0 12px 36px rgba(23, 198, 79, 0.4);
}

.zone-card__content {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 32px 24px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.zone-card:hover .zone-card__content {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(23, 198, 79, 0.3);
    transform: translateY(-8px);
}

.zone-card__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(23, 198, 79, 0.1);
    border-radius: 16px;
    color: var(--color-signal-green);
    transition: all 0.4s ease;
}

.zone-card:hover .zone-card__icon {
    background: rgba(23, 198, 79, 0.2);
    transform: rotateY(180deg);
}

.zone-card__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-soft-white);
    margin-bottom: 12px;
    line-height: 1.3;
}

.zone-card__desc {
    font-size: 14px;
    color: var(--color-platinum-ash);
    line-height: 1.7;
    opacity: 0.85;
}

/* Connector Dots */
.zone-card__connector {
    position: absolute;
    top: 28px;
    right: 0;
    width: 24px;
    height: 2px;
    background: var(--color-signal-green);
    opacity: 0.3;
}

.zone-card--4 .zone-card__connector {
    display: none;
}

/* Floating Accent */
.work-zones__accent {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    color: rgba(23, 198, 79, 0.08);
    pointer-events: none;
    animation: rotateAccent 60s linear infinite;
}

@keyframes rotateAccent {
    from {
        transform: translateY(-50%) rotate(0deg);
    }

    to {
        transform: translateY(-50%) rotate(360deg);
    }
}

/* ===================================================
   WORK ZONES - RESPONSIVE DESIGN
=================================================== */

/* Large Desktop */
@media (max-width: 1200px) {
    .work-zones__timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .work-zones__timeline::before {
        display: none;
    }

    .zone-card__connector {
        display: none;
    }

    .zone-card {
        padding: 0;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .work-zones {
        padding: 80px 0;
    }

    .work-zones__container {
        padding: 0 24px;
    }

    .work-zones__header {
        margin-bottom: 60px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .work-zones {
        padding: 60px 0;
    }

    .work-zones__container {
        padding: 0 16px;
    }

    .work-zones__header {
        margin-bottom: 40px;
    }

    .work-zones__eyebrow {
        font-size: 11px;
        padding: 8px 16px;
    }

    .work-zones__title {
        font-size: 32px;
    }

    .work-zones__timeline {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .zone-card__number {
        width: 48px;
        height: 48px;
        font-size: 14px;
        margin-bottom: 20px;
    }

    .zone-card__content {
        padding: 24px 20px;
    }

    .zone-card__icon {
        width: 48px;
        height: 48px;
        margin-bottom: 16px;
    }

    .zone-card__icon svg {
        width: 24px;
        height: 24px;
    }

    .zone-card__title {
        font-size: 18px;
    }

    .zone-card__desc {
        font-size: 13px;
    }

    .work-zones__accent {
        width: 200px;
        height: 200px;
        right: -50px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .work-zones__title {
        font-size: 28px;
    }

    .zone-card__content {
        padding: 20px 16px;
    }

    .zone-card__title {
        font-size: 16px;
    }
}

/* Hero Background Elements */
.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

/* Gradient Orbs */
.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--color-signal-green) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation: orbFloat 20s ease-in-out infinite;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(23, 198, 79, 0.4) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    animation: orbFloat 15s ease-in-out infinite reverse;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(184, 193, 193, 0.2) 0%, transparent 70%);
    top: 50%;
    left: 30%;
    animation: orbFloat 18s ease-in-out infinite 2s;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(50px, -30px) scale(1.1);
    }

    50% {
        transform: translate(-30px, 50px) scale(0.95);
    }

    75% {
        transform: translate(20px, 20px) scale(1.05);
    }
}

/* Grid Lines */
.grid-lines {
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.grid-line {
    position: absolute;
    background: var(--color-signal-green);
}

.line-h {
    height: 1px;
    width: 100%;
    left: 0;
}

.line-v {
    width: 1px;
    height: 100%;
    top: 0;
}

.line-1 {
    top: 25%;
    animation: linePulse 4s ease-in-out infinite;
}

.line-2 {
    top: 50%;
    animation: linePulse 4s ease-in-out infinite 1s;
}

.line-3 {
    top: 75%;
    animation: linePulse 4s ease-in-out infinite 2s;
}

.line-4 {
    left: 25%;
    animation: linePulse 4s ease-in-out infinite 0.5s;
}

.line-5 {
    left: 50%;
    animation: linePulse 4s ease-in-out infinite 1.5s;
}

.line-6 {
    left: 75%;
    animation: linePulse 4s ease-in-out infinite 2.5s;
}

@keyframes linePulse {

    0%,
    100% {
        opacity: 0.1;
    }

    50% {
        opacity: 0.3;
    }
}

/* Hero Container */
.hero-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 100px 40px 160px;
    margin: auto auto;
    /* Center container and provide ample bottom space */
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 10;
}

/* Hero Content */
.hero-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(23, 198, 79, 0.1);
    border: 1px solid rgba(23, 198, 79, 0.2);
    border-radius: 100px;
    width: fit-content;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-signal-green);
    border-radius: 50%;
    position: relative;
}

.badge-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: var(--color-signal-green);
    opacity: 0.4;
    animation: dotPulse 2s infinite;
}

@keyframes dotPulse {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.badge-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-signal-green);
    letter-spacing: 0.02em;
}

/* Hero Title & Tagline */
.hero-title {
    font-size: clamp(54px, 8vw, 92px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: var(--color-soft-white);
}

.title-line {
    display: block;
}

.title-accent {
    color: var(--color-signal-green);
    display: block;
    position: relative;
    width: fit-content;
}



.hero-tagline {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 500;
    color: var(--color-soft-white);
    margin-top: 15px;
    letter-spacing: -0.01em;
    opacity: 0.9;
}

/* Bigger, More Premium Flow Pattern */
.flow-pattern {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.flow-path {
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
    animation: flowDraw 6s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.flow-1 {
    animation-delay: 0.3s;
}

.flow-2 {
    animation-delay: 0.8s;
}

@keyframes flowDraw {
    to {
        stroke-dashoffset: 0;
    }
}

.hero-subtitle {
    font-size: 18px;
    color: var(--color-platinum-ash);
    line-height: 1.6;
    max-width: 520px;
    opacity: 0.8;
    margin-top: 20px;
}

/* Hero CTA */
.hero-cta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 32px;
}

.btn-hero-primary {
    background: var(--color-signal-green);
    color: var(--color-dark-teal);
    padding: 18px 36px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(23, 198, 79, 0.3);
}

.btn-hero-primary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(23, 198, 79, 0.4);
}

.btn-hero-whatsapp {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-soft-white);
    padding: 18px 36px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.btn-hero-whatsapp:hover {
    background: rgba(37, 211, 102, 0.1);
    border-color: rgba(37, 211, 102, 0.3);
    color: #25D366;
    transform: translateY(-5px);
}

.play-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
}

.btn-icon {
    opacity: 0.8;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 24px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-soft-white);
}

.stat-suffix {
    color: var(--color-signal-green);
    font-size: 24px;
    font-weight: 700;
}

.stat-label {
    display: block;
    font-size: 12px;
    color: var(--color-platinum-ash);
    margin-left: 8px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.7;
}

/* Removal of old scroll indicator styles as requested */
.scroll-indicator {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

/* Premium Visual container */
.visual-container {
    position: relative;
    width: 100%;
    aspect-ratio: auto;
    min-height: 500px;
    width: 100%;
    margin-left: auto;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 2;
}

/* Feature Cards Refinement */
.feature-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 8px 16px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 20;
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: auto;
    height: auto;
    line-height: 1;
}

.feature-icon {
    width: 24px;
    height: 24px;
    background: var(--color-signal-green);
    color: var(--color-dark-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 14px;
    height: 14px;
}

.feature-card span {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-dark-teal);
    white-space: nowrap;
}

/* Positioning */
.card-wifi {
    top: 10%;
    right: -20px;
}

.card-coffee {
    bottom: 10%;
    left: -20px;
}

.card-meeting {
    top: 45%;
    right: -40px;
}

/* Staggered Floating animations */
.animate-float {
    animation: floatMove 4s ease-in-out infinite;
    animation-delay: var(--float-delay, 0s);
}

@keyframes floatMove {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 140px;
        /* Increased to ensure badge visibility on mobile */
    }

    .hero-content {
        align-items: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
    }
}

/* ===================================================
   VIBE GALLERY - Human-First Space Showcase
 =================================================== */
.vibe-gallery {
    padding: 120px 0;
    background-color: var(--color-soft-white);
    overflow: hidden;
}

.vibe-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

.vibe-content {
    margin-bottom: 80px;
    text-align: center;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.vibe-title {
    font-size: clamp(32px, 5vw, 64px);
    /* Slightly increased max size */
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-dark-teal);
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    margin-left: auto;
    margin-right: auto;
}

.vibe-subtitle {
    font-size: clamp(18px, 2.5vw, 22px);
    /* Slightly increased size */
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--color-dark-teal);
    opacity: 0.8;
}

/* Unique Organic Grid */
.vibe-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: auto auto;
    gap: 32px;
}

.vibe-card {
    position: relative;
    overflow: hidden;
    transition: all var(--transition-slow);
}

.vibe-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-slow);
}

.vibe-card:hover .vibe-img {
    transform: scale(1.05);
}

.card-main {
    grid-row: span 2;
    border-radius: 200px 40px 200px 40px;
    /* Big organic leaf-like curves */
    aspect-ratio: 4/5;
}

.card-side {
    border-radius: 40px 150px 40px 40px;
    aspect-ratio: 4/3;
}

.card-detail {
    border-radius: 40px 40px 150px 40px;
    aspect-ratio: 4/3;
}

.vibe-card-tags {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    z-index: 10;
}

.vibe-tag {
    background: #ffffff;
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-dark-teal);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.vibe-card:hover .vibe-tag {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered transition for tags */
.vibe-tag:nth-child(2) {
    transition-delay: 0.1s;
}

.vibe-tag:nth-child(3) {
    transition-delay: 0.2s;
}

.vibe-tag:nth-child(4) {
    transition-delay: 0.3s;
}

/* Responsive Vibe Gallery */
@media (max-width: 1024px) {
    .vibe-gallery {
        padding: 80px 0;
    }

    .vibe-grid {
        grid-template-columns: 1fr;
    }

    .card-main {
        border-radius: 100px 30px 100px 30px;
        aspect-ratio: 16/10;
    }

    .card-side,
    .card-detail {
        display: none;
        /* Simplify on mobile */
    }
}

/* ===================================================
   FACILITIES SECTION
 =================================================== */

.card-meeting {
    bottom: 5%;
    left: 10%;
}

/* Float Animation */
.animate-float {
    animation: float 4s ease-in-out infinite;
    animation-delay: var(--float-delay, 0s);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--color-platinum-ash);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(237, 242, 242, 0.3);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--color-signal-green);
    border-radius: 2px;
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {

    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(8px);
        opacity: 0.3;
    }
}

/* ===================================================
   OUR FACILITIES SECTION
=================================================== */
.facilities {
    padding: 120px 0;
    background: var(--color-soft-white);
    position: relative;
}

.facilities-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Section Header */
.facilities-header {
    text-align: center;
    margin-bottom: 80px;
}

.facilities-badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(23, 198, 79, 0.1);
    border: 1px solid rgba(23, 198, 79, 0.2);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-signal-green);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.facilities-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: var(--color-dark-teal);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.facilities-subtitle {
    font-size: 18px;
    color: var(--color-platinum-ash);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Facilities Grid */
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Facility Card with Scroll Animation */
.facility-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(7, 42, 48, 0.06);
    box-shadow: 0 4px 20px rgba(7, 42, 48, 0.04);
    /* Scroll animation - start hidden */
    opacity: 0;
    transform: translateY(40px) scale(0.95);
}

/* Staggered animation delays for each card */
.facility-card:nth-child(1) {
    --delay: 0s;
}

.facility-card:nth-child(2) {
    --delay: 0.05s;
}

.facility-card:nth-child(3) {
    --delay: 0.1s;
}

.facility-card:nth-child(4) {
    --delay: 0.15s;
}

.facility-card:nth-child(5) {
    --delay: 0.2s;
}

.facility-card:nth-child(6) {
    --delay: 0.25s;
}

.facility-card:nth-child(7) {
    --delay: 0.3s;
}

.facility-card:nth-child(8) {
    --delay: 0.35s;
}

.facility-card:nth-child(9) {
    --delay: 0.4s;
}

.facility-card:nth-child(10) {
    --delay: 0.45s;
}

.facility-card:nth-child(11) {
    --delay: 0.5s;
}

.facility-card:nth-child(12) {
    --delay: 0.55s;
}

/* Animated state when in view */
.facility-card.animate-in {
    animation: cardFadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: var(--delay);
}

@keyframes cardFadeIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Top gradient bar animation */
/* Top gradient bar animation removed */
.facility-card::before {
    display: none;
}

/* Glow effect on hover */
.facility-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, transparent, rgba(23, 198, 79, 0.3), transparent);
    -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;
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Hover effects */
.facility-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow:
        0 20px 50px rgba(7, 42, 48, 0.12),
        0 0 40px rgba(23, 198, 79, 0.15);
    border-color: rgba(23, 198, 79, 0.3);
}

.facility-card:hover::before {
    display: none;
}

.facility-card:hover::after {
    opacity: 1;
}

@keyframes gradientFlow {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Facility Icon with Pulse Animation */
.facility-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(23, 198, 79, 0.15) 0%, rgba(23, 198, 79, 0.05) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--color-signal-green);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

/* Subtle breathing animation for icons */
.facility-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 20px;
    background: radial-gradient(circle, rgba(23, 198, 79, 0.2) 0%, transparent 70%);
    animation: iconPulse 3s ease-in-out infinite;
    opacity: 0;
}

.facility-card:hover .facility-icon::before {
    opacity: 1;
}

@keyframes iconPulse {

    0%,
    100% {
        transform: scale(0.9);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* Icon hover state with rotation */
.facility-card:hover .facility-icon {
    background: linear-gradient(135deg, var(--color-signal-green) 0%, #20e85f 100%);
    color: var(--color-dark-teal);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(23, 198, 79, 0.4);
}

.facility-card:hover .facility-icon svg {
    animation: iconBounce 0.4s ease;
}

@keyframes iconBounce {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }
}

/* Facility Content with Slide Animation */
.facility-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-dark-teal);
    margin-bottom: 12px;
    line-height: 1.3;
    transition: color 0.3s ease, transform 0.3s ease;
}

.facility-card:hover .facility-title {
    color: var(--color-signal-green);
    transform: translateX(4px);
}

.facility-desc {
    font-size: 14px;
    color: var(--color-platinum-ash);
    line-height: 1.6;
    margin: 0;
    transition: color 0.3s ease;
}

.facility-card:hover .facility-desc {
    color: #7a8888;
}

/* ===================================================
   FAQ SECTION
=================================================== */
.faq {
    padding: 120px 0;
    background: var(--color-soft-white);
    position: relative;
    overflow: hidden;
}

.faq-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: flex-start;
}

/* FAQ Image */
.faq-image {
    position: sticky;
    top: 150px;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(7, 42, 48, 0.15);
    aspect-ratio: 4/5;
}

.faq-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-image:hover img {
    transform: scale(1.05);
}

/* FAQ Content */
.faq-header {
    margin-bottom: 48px;
}

.faq-badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(23, 198, 79, 0.1);
    border: 1px solid rgba(23, 198, 79, 0.2);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-signal-green);
    text-transform: none;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.faq-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: var(--color-dark-teal);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

/* FAQ Accordion */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(7, 42, 48, 0.06);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(23, 198, 79, 0.3);
    box-shadow: 0 10px 30px rgba(7, 42, 48, 0.05);
}

.faq-item.active {
    border-color: var(--color-signal-green);
    box-shadow: 0 20px 40px rgba(7, 42, 48, 0.08);
}

.faq-question {
    width: 100%;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    gap: 20px;
}

.faq-question span {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-dark-teal);
    transition: color 0.3s ease;
}

.faq-icon {
    color: var(--color-platinum-ash);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.faq-item.active .faq-question span {
    color: var(--color-signal-green);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--color-signal-green);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fcfdfd;
}

.faq-answer p {
    padding: 0 32px 32px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-platinum-ash);
    margin: 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

/* ===================================================
   ANIMATIONS
=================================================== */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
    animation-delay: var(--delay, 0s);
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-left {
    opacity: 0;
    transform: translateX(50px);
    animation: fadeLeft 0.8s ease forwards;
    animation-delay: var(--delay, 0s);
}

@keyframes fadeLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
    animation-delay: var(--float-delay, 0s);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* ===================================================
   RESPONSIVE DESIGN
=================================================== */

/* Tablet */
@media (max-width: 1024px) {
    .header {
        height: 100px;
    }

    .header-bg {
        height: 100px;
    }

    .header-container {
        padding: 0 24px;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .logo-img {
        height: 55px;
    }

    .btn-get-in-touch {
        width: 180px;
        height: 56px;
        padding: 14px 28px;
    }

    .btn-get-in-touch span {
        font-size: 18px;
    }

    .nav-desktop {
        display: none;
    }

    .header-cta {
        display: none;
    }

    .mobile-menu-toggle {
        display: none;
    }

    .nav-mobile {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 40px 24px;
        text-align: center;
    }

    .hero-content {
        align-items: center;
    }

    .hero-subtitle {
        max-width: 600px;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
    }

    .visual-container {
        max-width: 500px;
    }

    .card-wifi {
        left: 0;
        top: 5%;
    }

    .card-coffee {
        right: 0;
    }

    .card-meeting {
        left: 20%;
    }

    .scroll-indicator {
        display: none;
    }

    /* Facilities Section - Tablet */
    .facilities {
        padding: 80px 0;
    }

    .facilities-container {
        padding: 0 24px;
    }

    .facilities-header {
        margin-bottom: 60px;
    }

    .facilities-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .facility-card {
        padding: 24px 20px;
    }

    .facility-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 20px;
    }

    .facility-title {
        font-size: 16px;
    }

    .facility-desc {
        font-size: 13px;
    }

    /* FAQ Section - Tablet */
    .faq {
        padding: 80px 0;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .faq-image {
        position: relative;
        top: 0;
        aspect-ratio: 16/9;
        border-radius: 30px;
    }

    .faq-header {
        text-align: center;
        margin-bottom: 40px;
    }

    .faq-accordion {
        max-width: 800px;
        margin: 0 auto;
    }
}

/* Mobile */
@media (max-width: 1024px) {
    .nav-desktop {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }
}

@media (max-width: 768px) {
    .header {
        height: 70px;
    }

    .header.scrolled {
        height: 70px;
    }

    .header-container {
        padding: 0 20px;
    }

    .logo-img {
        height: 45px;
    }

    .btn-get-in-touch {
        width: 140px;
        height: 48px;
        padding: 12px 20px;
    }

    .btn-get-in-touch span {
        font-size: 14px;
    }

    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .hero-container {
        padding: 20px;
        gap: 40px;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 24px;
        justify-content: center;
    }

    .stat-divider {
        display: none;
    }

    .stat-item {
        flex: 0 0 auto;
        min-width: 80px;
        align-items: center;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-suffix {
        font-size: 20px;
    }

    .visual-container {
        max-width: 100%;
    }

    .feature-card {
        padding: 10px 14px;
        font-size: 12px;
    }

    .feature-icon {
        width: 32px;
        height: 32px;
    }

    .feature-icon svg {
        width: 16px;
        height: 16px;
    }

    .card-wifi {
        top: 0;
        left: 5%;
    }

    .card-coffee {
        right: 5%;
        bottom: 25%;
    }

    .card-meeting {
        bottom: 0;
        left: 15%;
    }

    .gradient-orb {
        filter: blur(60px);
    }

    .orb-1 {
        width: 300px;
        height: 300px;
    }

    .orb-2 {
        width: 200px;
        height: 200px;
    }

    .orb-3 {
        width: 150px;
        height: 150px;
    }

    /* Facilities Section - Mobile */
    .facilities {
        padding: 60px 0;
    }

    .facilities-container {
        padding: 0 16px;
    }

    .facilities-header {
        margin-bottom: 40px;
    }

    .facilities-badge {
        font-size: 12px;
        padding: 8px 18px;
    }

    .facilities-title {
        font-size: 28px;
    }

    .facilities-subtitle {
        font-size: 15px;
    }

    .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .facility-card {
        padding: 20px 16px;
    }

    .facility-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        margin-bottom: 16px;
    }

    .facility-icon svg {
        width: 24px;
        height: 24px;
    }

    .facility-title {
        font-size: 14px;
    }

    .facility-desc {
        font-size: 12px;
    }

    /* FAQ Section - Mobile */
    .faq {
        padding: 60px 0;
    }

    .faq-container {
        padding: 0 16px;
    }

    .faq-grid {
        gap: 40px;
    }

    .faq-badge {
        font-size: 12px;
        padding: 8px 18px;
    }

    .faq-title {
        font-size: 28px;
    }

    .faq-question {
        padding: 20px 24px;
    }

    .faq-question span {
        font-size: 16px;
    }

    .faq-answer p {
        padding: 0 24px 24px;
        font-size: 14px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-badge {
        padding: 6px 12px 6px 6px;
    }

    .badge-text {
        font-size: 12px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 12px;
    }
}

/* ===================================================
   CONTACT FORM SECTION
=================================================== */
.contact-form-section {
    position: relative;
    padding: 100px 0;
    background: #E8ECF0;
    overflow: hidden;
}

.contact-form-section__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.contact-watermark {
    position: absolute;
    top: -10%;
    left: 0;
    width: 100%;
    height: 120%;
    object-fit: cover;
    opacity: 0.08;
    filter: grayscale(100%);
}

.contact-form-section__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.contact-form-section__content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.contact-form-section__title {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 700;
    color: var(--color-dark-teal);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.contact-form-section__title span {
    color: var(--color-signal-green);
}

.contact-form-section__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
    padding: 12px 24px;
    background: var(--color-signal-green);
    color: var(--color-dark-teal);
    font-size: 14px;
    font-weight: 600;
    border-radius: 100px;
}

/* Contact Form Card */
.contact-form-card {
    background: rgba(128, 138, 143, 0.95);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.contact-form-card__subtitle {
    color: var(--color-soft-white);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 32px;
}

.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form__group {
    margin-bottom: 20px;
}

.contact-form__group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-soft-white);
    margin-bottom: 8px;
    opacity: 0.9;
}

.contact-form__group input,
.contact-form__group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--color-soft-white);
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    color: var(--color-dark-teal);
    transition: all 0.3s ease;
}

.contact-form__group input::placeholder,
.contact-form__group textarea::placeholder {
    color: #8B9399;
}

.contact-form__group input:focus,
.contact-form__group textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(23, 198, 79, 0.3);
}

.contact-form__group textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form__submit {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--color-signal-green);
    color: var(--color-dark-teal);
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.contact-form__submit:hover {
    background: #14B845;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(23, 198, 79, 0.3);
}

/* ===================================================
   READY SECTION
=================================================== */
.ready-section {
    padding: 80px 0;
    background: var(--color-soft-white);
    text-align: center;
}

.ready-section__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.ready-section__title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: var(--color-dark-teal);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.ready-section__subtitle {
    font-size: 18px;
    color: var(--color-platinum-ash);
    margin-bottom: 40px;
}

.ready-section__buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.ready-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ready-btn--primary {
    background: var(--color-signal-green);
    color: var(--color-dark-teal);
}

.ready-btn--primary:hover {
    background: #14B845;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(23, 198, 79, 0.3);
}

.ready-btn--secondary {
    background: var(--color-dark-teal);
    color: var(--color-soft-white);
}

.ready-btn--secondary:hover {
    background: #0D575E;
    transform: translateY(-3px);
}

.ready-btn--whatsapp {
    background: #25D366;
    color: white;
}

.ready-btn--whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-3px);
}

/* ===================================================
   FOOTER
=================================================== */
.footer {
    position: relative;
    background: var(--color-dark-teal);
    padding: 80px 0 0;
    overflow: hidden;
}

.footer__curves {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.footer__curves svg {
    position: absolute;
    top: 0;
    right: -200px;
    width: 120%;
    height: 100%;
}

.footer__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.footer__content {
    text-align: center;
}

.footer__logo {
    margin-bottom: 32px;
}

.footer__logo img {
    height: 60px;
    width: auto;
}

.footer__address {
    font-size: 16px;
    color: var(--color-soft-white);
    margin-bottom: 24px;
    line-height: 1.6;
}

.footer__phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-soft-white);
    text-decoration: none;
    margin-bottom: 40px;
    transition: color 0.3s ease;
}

.footer__phone:hover {
    color: var(--color-signal-green);
}

.footer__phone svg {
    color: var(--color-signal-green);
}

.footer__qr {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
}

.footer__qr img {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    background: white;
    padding: 8px;
}

.footer__qr span {
    font-size: 13px;
    color: var(--color-signal-green);
    font-weight: 500;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 40px;
    text-align: center;
}

.footer__bottom p {
    font-size: 13px;
    color: var(--color-platinum-ash);
    opacity: 0.7;
}

/* ===================================================
   CONTACT FORM & FOOTER - RESPONSIVE
=================================================== */
@media (max-width: 1024px) {
    .contact-form-section__content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-section__left {
        text-align: center;
    }

    .footer__curves svg {
        right: -400px;
    }
}

@media (max-width: 768px) {
    .contact-form-section {
        padding: 60px 0;
    }

    .contact-form-section__container {
        padding: 0 20px;
    }

    .contact-form-section__title {
        font-size: 42px;
    }

    .contact-form-card {
        padding: 28px 20px;
    }

    .contact-form__row {
        grid-template-columns: 1fr;
    }

    .ready-section {
        padding: 60px 0;
    }

    .ready-section__buttons {
        flex-direction: column;
        align-items: center;
    }

    .ready-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .footer {
        padding: 60px 0 0;
    }

    .footer__container {
        padding: 0 20px;
    }

    .footer__logo img {
        height: 50px;
    }

    .footer__address {
        font-size: 14px;
    }

    .footer__phone {
        font-size: 16px;
    }

    .footer__curves {
        display: none;
    }
}

@media (max-width: 480px) {
    .contact-form-section__title {
        font-size: 36px;
    }

    .contact-form-section__badge {
        font-size: 12px;
        padding: 10px 18px;
    }

    .contact-form__submit {
        width: 100%;
        justify-content: center;
    }

    .ready-section__title {
        font-size: 28px;
    }
}

/* ===================================================
   BREAKOUT & RECREATION SECTION
=================================================== */
.breakout {
    position: relative;
    background-color: #072a30;
    padding: 120px 0 100px;
    overflow: hidden;
}

/* Background image with overlay */
.breakout::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('images/brand-vibe-v2.png');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
}

.breakout__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* Header */
.breakout__header {
    text-align: center;
    margin-bottom: 60px;
}

.breakout__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-signal-green);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 20px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
}

.breakout__badge svg {
    color: var(--color-signal-green);
}

.breakout__title {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 16px;
}

.breakout__title-line {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.breakout__title-accent {
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 700;
    color: var(--color-signal-green);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.breakout__intro {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
}

/* Gallery Grid */
.breakout__gallery {
    margin-bottom: 60px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 300px;
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--color-signal-green);
    z-index: 2;
}

.gallery-item--large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item--wide {
    grid-column: span 2;
}

/* Specific item overrides for layout */
.gallery-grid .gallery-item:nth-child(6) {
    grid-column: span 2;
}

.gallery-item__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(7, 42, 48, 0.9) 0%, rgba(7, 42, 48, 0.2) 60%, transparent 100%);
    opacity: 0.9;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-item__overlay {
    opacity: 0.7;
}

.gallery-item__content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px;
    z-index: 2;
    transform: translateY(10px);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-item__content {
    transform: translateY(0);
}

.gallery-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.gallery-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease 0.1s;
}

.gallery-item:hover p {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item--large h3 {
    font-size: 28px;
}

.gallery-item--large p {
    font-size: 16px;
}

/* Footer & Tagline */
.breakout__footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
}

.breakout__tagline {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    font-style: italic;
    max-width: 600px;
}

.breakout__cta-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: var(--color-signal-green);
    color: var(--color-dark-teal);
    border-radius: 100px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.breakout__cta-link:hover {
    background: #fff;
    transform: scale(1.05);
}

/* ===================================================
   WORK SPACES SLIDER (New Unique Interaction)
   =================================================== */
.work-spaces-slider {
    padding: 120px 0;
    background: var(--color-soft-white);
    overflow: hidden;
}

.ws-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.ws-header {
    text-align: center;
    margin-bottom: 80px;
}

.ws-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: rgba(23, 198, 79, 0.15);
    color: var(--color-signal-green-dark);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 100px;
    margin-bottom: 16px;
}

.ws-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    color: var(--color-dark-teal);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

/* Updated Full-Width Slider */
.ws-slider-wrapper {
    position: relative;
    width: 100%;
    /* overflow-x: hidden; */
    /* Allow interaction but hide scrollbar */
}

.ws-track-container {
    width: 100%;
    overflow: hidden;
}

.ws-track {
    display: flex;
    gap: 40px;
    /* Increased gap for better spacing */
    width: max-content;
    animation: scroll 40s linear infinite;
    /* Smooth continuous scroll */
    padding-left: 20px;
    /* Initial offset */
}

/* Individual Card Styles */
.ws-card {
    flex: 0 0 350px;
    height: 500px;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    /* Removed grayscale and opacity for full color */
    transform: scale(0.98);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.ws-card:hover {
    transform: scale(1.02) translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.ws-card-img-wrapper {
    position: absolute;
    inset: 0;
}

.ws-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    /* Boost colors */
    filter: saturate(1.1) contrast(1.05);
}

.ws-card:hover .ws-card-img {
    transform: scale(1.1);
    filter: saturate(1.2) contrast(1.1);
}

.ws-card-overlay {
    position: absolute;
    inset: 0;
    /* Cleaner gradient, only dark at bottom for text readability */
    background: linear-gradient(to top, rgba(7, 42, 48, 0.95) 0%, rgba(7, 42, 48, 0.6) 25%, transparent 60%);
    opacity: 1;
    /* Fully visible gradient but transparent top */
}

.ws-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 32px;
    z-index: 2;
    transform: translateY(0);
    /* Always visible */
    transition: transform 0.4s ease;
}

.ws-card-line {
    width: 40px;
    height: 4px;
    background: var(--color-signal-green);
    margin-bottom: 16px;
    border-radius: 2px;
    transform: scaleX(1);
    /* Always visible */
    transform-origin: left;
    transition: transform 0.4s ease;
}

.ws-card:hover .ws-card-line {
    width: 60px;
    /* Grow on hover */
}

.ws-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    transform: translateY(0);
    opacity: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    /* Ensure readability */
}

.ws-card-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.95);
    /* brighter text */
    /* Brighter text */
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    opacity: 1;
    /* Fully visible */
    transition: opacity 0.4s ease;
}

.ws-card:hover .ws-card-desc {
    opacity: 1;
}

/* Pause animation on hover */
.ws-track:hover {
    animation-play-state: paused;
}

/* Infinite Scroll Animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        /* (350px card + 40px gap) * 4 cards = 1560px */
        transform: translateX(-1560px);
    }
}

/* Hide navigation buttons */
.ws-btn {
    display: none;
}

/* Responsive */
@media (max-width: 1024px) {
    .breakout {
        padding: 80px 0;
    }

    .breakout__title-line {
        font-size: 32px;
    }

    .breakout__title-accent {
        font-size: 36px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
        gap: 12px;
    }

    .gallery-item--large {
        grid-column: span 2;
        grid-row: span 1;
        /* Not too tall on mobile */
        min-height: 250px;
    }

    .gallery-item--wide {
        grid-column: span 2;
    }

    .gallery-grid .gallery-item:nth-child(6) {
        grid-column: span 1;
    }

    .breakout__footer {
        gap: 24px;
    }

    .breakout__tagline {
        font-size: 16px;
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }

    .gallery-item--large,
    .gallery-item--wide,
    .gallery-grid .gallery-item:nth-child(6) {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* =========================================
   Inside SuperCo (Facilities Style)
   ========================================= */
.facilities {
    padding: 8rem 0;
    background-color: var(--color-bg);
    /* Match site background */
    position: relative;
    overflow: hidden;
}

.facilities-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.facilities-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.facilities-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(var(--color-accent-rgb), 0.1);
    color: var(--color-accent);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.facilities-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--color-text);
    /* Ensure contrast */
    letter-spacing: -0.02em;
}

.facilities-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* Grid Layout */
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

/* Facility Card */
.facility-card {
    background: var(--color-card-bg, #fff);
    border: 1px solid rgba(0, 0, 0, 0.05);
    /* Subtle border */
    border-radius: 1.5rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: visible;
    /* Allowing tooltip to show */
    z-index: 1;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.facility-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    /* Stronger shadow on hover */
    border-color: rgba(var(--color-accent-rgb), 0.3);
    z-index: 10;
}

/* Icon & Hover Image Wrapper */
.facility-icon {
    width: 64px;
    height: 64px;
    background: rgba(var(--color-accent-rgb), 0.05);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.facility-card:hover .facility-icon {
    background: linear-gradient(135deg, var(--color-signal-green) 0%, #20e85f 100%);
    color: var(--color-dark-teal);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(23, 198, 79, 0.4);
}

/* Hover Image Tooltip */
.facility-hover-image {
    position: absolute;
    bottom: calc(100% + 15px);
    /* Position above the icon */
    left: 50%;
    transform: translateX(-50%) translateY(10px) scale(0.95);
    width: 220px;
    height: 140px;
    background: white;
    padding: 6px;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15), 0 5px 10px rgba(0, 0, 0, 0.05);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
    z-index: 100;
}

.facility-hover-image::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px;
    border-style: solid;
    border-color: white transparent transparent transparent;
}

.facility-hover-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

/* Show Image When Icon is Hovered - Using Sibling Selector */
.facility-icon:hover+.facility-hover-image {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
}

/* Typography */
.facility-title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
    color: var(--color-text);
}

.facility-desc {
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 1024px) {
    .facilities-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .facilities {
        padding: 5rem 0;
    }

    .facilities-grid {
        grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
        gap: 1.5rem;
    }

    .facility-hover-image {
        display: none;
        /* Hide popup on touch devices to avoid obstruction */
    }
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* =========================================
   Connect Section (Ported from index.html)
   ========================================= */

/* Connect Background Image */
.connect-bg-image {
    width: 100%;
    max-width: 1920px;
    height: auto;
    object-fit: cover;
    /* Ensure it fills the width */
    position: relative;
    z-index: 1;
    display: block;
    margin: 0 auto;
}

/* Connect Section Container */
.connect-section {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 100px 60px;
    /* Reduced side padding to shift content left */
    width: 100%;
    max-width: 1600px;
    /* Increased max-width to allow more spread */
    margin: 0 auto;
    margin-top: -200px;
    /* Reduced overlap from -280px */
    position: relative;
    z-index: 2;
    border-radius: 24px;
    margin-bottom: 80px;
}

/* Top Row: Title + Form side by side */
.connect-top {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 80px;
    /* Reduced gap to bring form closer */
    width: 100%;
}

/* Title Container */
.connect-title {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-shrink: 0;
    gap: 30px;
    /* Reduced gap */
    padding-top: 20px;
}

/* Connect Action Buttons */
.connect-action-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 10px;
}

.btn-connect-primary,
.btn-connect-secondary,
.btn-connect-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: fit-content;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.btn-connect-primary {
    background-color: var(--color-signal-green);
    color: var(--color-dark-teal);
    border: 1px solid var(--color-signal-green);
}

.btn-connect-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(23, 198, 79, 0.3);
    background-color: var(--color-dark-teal);
    color: white;
    border-color: var(--color-dark-teal);
}

.btn-connect-secondary {
    background-color: transparent;
    border: 1px solid var(--color-dark-teal);
    color: var(--color-dark-teal);
}

.btn-connect-secondary:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(7, 42, 48, 0.15);
    background-color: var(--color-dark-teal);
    color: white;
}

.btn-connect-whatsapp {
    background-color: #25D366;
    color: white;
    border: 1px solid #25D366;
}

.btn-connect-whatsapp:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    background-color: #128C7E;
    border-color: #128C7E;
}

.connect-reassurance {
    margin-top: 10px;
}

.connect-reassurance p {
    font-size: 16px;
    color: var(--color-dark-teal);
    opacity: 0.8;
    font-weight: 500;
    letter-spacing: 0.01em;
}

/* Heading */
.let-s-connect {
    font-family: inherit;
    font-weight: 700;
    color: #000000;
    font-size: 56px;
    /* Reduced from 80px */
    letter-spacing: -1px;
    line-height: 1.1;
}

.text-wrapper-3 {
    font-weight: 700;
    color: #000000;
    display: block;
}

.text-wrapper-4 {
    font-weight: 700;
    color: #17c64f;
}

.connect-subtitle {
    font-weight: 500;
    color: #17c64f;
    font-size: 24px;
    /* Reduced from 32px */
    line-height: 1.3;
    display: block;
    margin-top: 10px;
}

/* Card Container - Form Wrapper */
/* Card Container - Form Wrapper */
.frame-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 60px;
    position: relative;
    flex: 1.5;
    /* Grow more to take extra space */
    max-width: 900px;
    /* Widen the form */
    min-width: 500px;
    background-color: #b8c1c1;
    /* Match the grey/greenish tone */
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 24px;
}

.share-your-details {
    font-weight: 400;
    color: #072a30;
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 10px;
    opacity: 0.9;
}

/* Form Row - for side by side fields */
.form-row {
    display: flex;
    gap: 20px;
    width: 100%;
}

/* Form Group */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.form-group.full-width {
    width: 100%;
}

/* Labels */
.form-group label {
    font-weight: 500;
    color: #333;
    font-size: 14px;
}

.required {
    color: #e74c3c;
    margin-left: 2px;
}

/* Input Fields */
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background-color: #f5f5f5;
    /* Light grey/white */
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: 16px;
    color: #072a30;
    outline: none;
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    background-color: #ffffff;
    box-shadow: 0 0 0 2px rgba(23, 198, 79, 0.5);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Submit Button */
.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 40px;
    background-color: #072a30;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: 600;
    color: #17c64f;
    font-size: 16px;
    width: fit-content;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: #000;
    transform: translateY(-2px);
}

/* Benefits Section - Bottom of Connect */
.connect-benefits {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-left: 10px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.benefit-item img {
    width: 28px;
    height: 28px;
}

.benefit-item span {
    font-weight: 500;
    color: #072a30;
    font-size: 20px;
    line-height: 28px;
}

/* Responsive Form */
@media (max-width: 900px) {
    .connect-section {
        padding: 60px 24px;
        margin-top: 0;
        border-radius: 16px;
    }

    .connect-top {
        flex-direction: column;
        gap: 40px;
    }

    .connect-title {
        flex-direction: column;
        /* Force column to keep title and buttons stacked */
        align-items: flex-start;
        justify-content: flex-start;
        gap: 30px;
        width: 100%;
        padding-top: 0;
    }

    .connect-action-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        width: 100%;
        gap: 16px;
    }

    .btn-connect-primary,
    .btn-connect-secondary,
    .btn-connect-whatsapp {
        width: auto;
        flex: 1 1 auto;
        justify-content: center;
        min-width: 200px;
    }

    .connect-reassurance {
        text-align: left;
        width: 100%;
    }

    .frame-wrapper {
        min-width: auto;
        padding: 30px;
        width: 100%;
    }

    .form-row {
        flex-direction: column;
    }

    .let-s-connect {
        font-size: 48px;
        flex: 1 0 100%;
    }
}

/* =========================================
   REVAMPED FOOTER STYLES
   ======================================== */

/* =========================================
   REVAMPED FOOTER STYLES
   ======================================== */

/* Standardized footer styles moved to globals.css */

/* ===================================================
   WORK ZONES HORIZONTAL SCROLL (STICKY)
   =================================================== */
.work-zones-scroll {
    position: relative;
    height: 400vh;
    /* Long scroll track */
    background-color: #072a30;
    /* Dark teal bg same as footer/header */
    z-index: 10;
}

.wz-scroll__spacer {
    height: 100%;
}

.wz-scroll__sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #072a30;
    color: #edf2f2;
}

.wz-scroll__header {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
    width: 100%;
    padding: 0 20px;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.wz-scroll__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(23, 198, 79, 0.1);
    color: #17c64f;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(23, 198, 79, 0.2);
}

.wz-scroll__title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
    color: #fff;
}

.wz-scroll__title-line {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 8px;
}

.wz-scroll__title-accent {
    color: #fff;
}

.wz-scroll__subtitle {
    font-size: 18px;
    color: rgba(237, 242, 242, 0.6);
    max-width: 500px;
    margin: 0 auto;
}

/* Slider Track */
.wz-scroll__slider {
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0;
}

.wz-scroll__slides {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Individual Slide */
.wz-scroll__slide {
    position: absolute;
    width: 900px;
    /* Wider cards */
    max-width: 90vw;
    aspect-ratio: 16/9;
    background: #0d3b42;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.4);
    will-change: transform, opacity;
    /* Initial State controlled by JS, generally hidden below */
}

.wz-scroll__slide-bg {
    position: absolute;
    inset: 0;
}

.wz-scroll__slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wz-scroll__slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, rgba(7, 42, 48, 0.95), rgba(7, 42, 48, 0) 100%);
    color: #fff;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.wz-scroll__slide.active .wz-scroll__slide-content {
    opacity: 1;
    transform: translateY(0);
}

.wz-scroll__slide-number {
    font-size: 80px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.1);
    position: absolute;
    top: -60px;
    right: 20px;
    line-height: 1;
}

.wz-scroll__slide-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.wz-scroll__slide-desc {
    font-size: 18px;
    color: rgba(237, 242, 242, 0.9);
    margin-bottom: 24px;
    line-height: 1.5;
    max-width: 700px;
}

.wz-scroll__slide-tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.wz-scroll__slide-tags span {
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 14px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Progress Indicator */
.wz-scroll__progress {
    position: absolute;
    right: 40px;
    /* Move to side */
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    z-index: 20;
    height: 200px;
    width: 4px;
    bottom: auto;
    left: auto;
}

.wz-scroll__progress-track {
    width: 4px;
    /* Vertical track */
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.wz-scroll__progress-fill {
    width: 100%;
    height: 0%;
    /* Fills vertically */
    background: #17c64f;
    transition: height 0.1s linear;
}

.wz-scroll__progress-text {
    display: none;
}

.wz-scroll__progress-dots {
    display: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .wz-scroll__slide {
        width: 90vw;
        aspect-ratio: 9/16;
        /* Taller on mobile */
    }

    .wz-scroll__title {
        font-size: 32px;
        margin-top: 60px;
        /* Space from header */
    }

    .wz-scroll__slide-title {
        font-size: 28px;
    }

    .wz-scroll__header {
        top: 20px;
    }

    .wz-scroll__title {
        font-size: 32px;
    }
}

/* =========================================
   HERO DOODLE ANIMATIONS
   ======================================== */
.hero-doodle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    /* Behind content (z-2) but above bg */
    opacity: 0.8;
}

.doodle-path {
    stroke-linecap: round;
    fill: none;
}

.doodle-path--1 {
    stroke-dasharray: 2000;
    stroke-dashoffset: 0;
    /* Start fully drawn or use animation to keep it */
    animation: flowDash 30s linear infinite;
    /* Continuous flow */
    opacity: 0.6;
}

.doodle-path--2 {
    stroke-dasharray: 2000;
    stroke-dashoffset: 0;
    opacity: 0.4;
    animation: flowDashReverse 40s linear infinite;
}

.doodle-path--3 {
    stroke-dasharray: 500;
    stroke-dashoffset: 0;
    opacity: 0.5;
}

@keyframes flowDash {
    from {
        stroke-dashoffset: 2000;
    }

    to {
        stroke-dashoffset: 0;
    }
}

@keyframes flowDashReverse {
    from {
        stroke-dashoffset: -2000;
    }

    to {
        stroke-dashoffset: 0;
    }
}

.doodle-dot {
    opacity: 0;
    animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.doodle-dot--1 {
    animation-delay: 1.5s;
}

.doodle-dot--2 {
    animation-delay: 2.5s;
}

.doodle-dot--3 {
    animation-delay: 3.5s;
}



@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(0);
        transform-origin: center;
    }

    to {
        opacity: 1;
        transform: scale(1);
        transform-origin: center;
    }
}

/* Enhanced Hero Text Typography */
.hero-v2__title-accent {
    position: relative;
    display: inline-block;
    background: linear-gradient(90deg, #17c64f, #20e85f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-v2__title-accent::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 6px;
    background: rgba(23, 198, 79, 0.3);
    border-radius: 4px;
    transform: scaleX(0);
    transform-origin: left;
    animation: underlineGrow 1s ease-out forwards 1.2s;
    pointer-events: none;
    z-index: -1;
}

@keyframes underlineGrow {
    to {
        transform: scaleX(1);
    }
}

/* ===================================================
   THE PEOPLE SECTION (V2 - LIGHT MODE)
   =================================================== */
.community-people-v2 {
    padding: 120px 0;
    background-color: #edf2f2;
    /* Soft white background */
    position: relative;
    border-top: 1px solid rgba(7, 42, 48, 0.05);
}

.cp-v2__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.cp-v2__header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
}

.cp-v2__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background-color: rgba(23, 198, 79, 0.08);
    border: 1px solid rgba(23, 198, 79, 0.2);
    border-radius: 100px;
    color: var(--color-signal-green);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 32px;
}

.cp-v2__title {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-dark-teal);
    margin-bottom: 32px;
    letter-spacing: -0.03em;
}

.cp-v2__intro {
    font-size: 20px;
    line-height: 1.6;
    color: #4A5568;
    max-width: 750px;
    margin: 0 auto;
}

.cp-v2__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.cp-v2__image-wrapper {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
}

.cp-v2__main-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.cp-v2__main-image:hover {
    transform: scale(1.05);
}

.cp-v2__content-cards {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.cp-v2__card {
    display: flex;
    gap: 24px;
    padding: 32px;
    background: white;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: all 0.4s ease;
}

.cp-v2__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: rgba(23, 198, 79, 0.2);
}

.cp-v2__card-icon {
    width: 56px;
    height: 56px;
    background: rgba(23, 198, 79, 0.05);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-signal-green);
    flex-shrink: 0;
}

.cp-v2__card-text h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-dark-teal);
    margin-bottom: 8px;
}

.cp-v2__card-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #4A5568;
}

@media (max-width: 1100px) {
    .cp-v2__grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .cp-v2__image-wrapper {
        max-width: 600px;
        margin: 0 auto;
    }
}

/* ===================================================
   VIBE GALLERY EYEBROW
   =================================================== */
.vibe-eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: rgba(23, 198, 79, 0.08);
    border: 1px solid rgba(23, 198, 79, 0.2);
    border-radius: 100px;
    color: var(--color-signal-green);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

/* ===================================================
   FOUNDING MEMBER SECTION (DARK MODE) — PREMIUM
   =================================================== */
.founding-member {
    padding: 160px 0 140px;
    background-color: #041E23;
    color: white;
    position: relative;
    overflow: hidden;
}

/* ---- Background FX ---- */
.fm-bg-effects {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.fm-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.fm-glow--1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(23, 198, 79, 0.12) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation: fmGlowFloat 12s ease-in-out infinite;
}

.fm-glow--2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(23, 198, 79, 0.08) 0%, transparent 70%);
    bottom: -150px;
    left: -80px;
    animation: fmGlowFloat 16s ease-in-out infinite reverse;
}

@keyframes fmGlowFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(40px, -30px) scale(1.08);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.95);
    }
}

.fm-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(23, 198, 79, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(23, 198, 79, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    animation: fmGridDrift 40s linear infinite;
}

@keyframes fmGridDrift {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(80px, 80px);
    }
}

.fm-particles {
    position: absolute;
    inset: 0;
}

/* ---- Layout ---- */
.fm-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.fm-content {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 60px;
}

.fm-content--bottom {
    margin-top: 80px;
    margin-bottom: 0;
}

.fm-visual {
    position: relative;
    margin-bottom: 0;
}

/* ---- Badge ---- */
.fm-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(23, 198, 79, 0.08);
    border: 1px solid rgba(23, 198, 79, 0.2);
    border-radius: 100px;
    color: var(--color-signal-green);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 36px;
    animation: fmBadgePulse 3s ease-in-out infinite;
}

.fm-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-signal-green);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--color-signal-green);
    animation: fmDotBlink 2s ease-in-out infinite;
}

@keyframes fmDotBlink {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 12px var(--color-signal-green);
    }

    50% {
        opacity: 0.4;
        box-shadow: 0 0 4px var(--color-signal-green);
    }
}

@keyframes fmBadgePulse {

    0%,
    100% {
        border-color: rgba(23, 198, 79, 0.2);
    }

    50% {
        border-color: rgba(23, 198, 79, 0.45);
    }
}

/* ---- Reveal Animation ---- */
.fm-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1),
        transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    transition-delay: var(--reveal-delay, 0s);
}

.fm-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Title ---- */
.fm-title {
    font-size: clamp(42px, 6vw, 82px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 48px;
    letter-spacing: -0.03em;
    color: white;
}

.fm-title-accent {
    background: linear-gradient(135deg, #17C64F 0%, #20E85F 50%, #17C64F 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fmTitleShimmer 4s ease-in-out infinite;
}

@keyframes fmTitleShimmer {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* ---- Description ---- */
.fm-description {
    margin-bottom: 48px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.fm-text-lead {
    font-size: 24px;
    line-height: 1.4;
    color: white;
    font-weight: 600;
}

.fm-text-sub {
    font-size: 17px;
    line-height: 1.75;
    color: #9CACAC;
}

/* ---- Vibe Statement ---- */
.fm-vibe-statement {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.vibe-line {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: var(--color-signal-green);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.fm-vibe-statement.is-visible .vibe-line {
    opacity: 1;
    transform: translateY(0);
}

.fm-vibe-statement.is-visible .vibe-line:nth-child(1) {
    transition-delay: 0s;
}

.fm-vibe-statement.is-visible .vibe-line:nth-child(2) {
    transition-delay: 0.15s;
}

.fm-vibe-statement.is-visible .vibe-line:nth-child(3) {
    transition-delay: 0.3s;
}

.vibe-dot {
    width: 10px;
    height: 10px;
    background: var(--color-signal-green);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(23, 198, 79, 0.6);
    flex-shrink: 0;
    animation: fmVibePulse 2s ease-in-out infinite;
}

.vibe-line:nth-child(2) .vibe-dot {
    animation-delay: 0.5s;
}

.vibe-line:nth-child(3) .vibe-dot {
    animation-delay: 1s;
}

@keyframes fmVibePulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(23, 198, 79, 0.6);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 30px rgba(23, 198, 79, 0.9);
        transform: scale(1.3);
    }
}

.vibe-text {
    position: relative;
    display: inline-block;
}

/* ---- Belong Statement ---- */
.fm-belong {
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 700;
    margin-bottom: 44px;
    color: white;
}

.fm-superco-text {
    position: relative;
    display: inline-block;
}

.fm-co {
    color: var(--color-signal-green);
}

.fm-superco-text::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-signal-green), transparent);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.8s ease;
}

.fm-belong.is-visible .fm-superco-text::after {
    transform: scaleX(1);
}

/* ---- CTA ---- */
.fm-cta-wrapper {
    display: flex;
    justify-content: center;
}

.fm-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 20px 48px;
    background: var(--color-signal-green);
    color: var(--color-dark-teal);
    border-radius: 100px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.fm-cta-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.fm-cta-link:hover::before {
    left: 100%;
}

.fm-cta-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(23, 198, 79, 0.35);
}

.fm-cta-link svg {
    transition: transform 0.3s ease;
}

.fm-cta-link:hover svg {
    transform: translateX(4px);
}

/* ---- Image Row ---- */

.fm-image-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    width: 100%;
}

.fm-image-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(23, 198, 79, 0.1);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1),
        box-shadow 0.6s ease;
}

.fm-image-container:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 40px 80px rgba(23, 198, 79, 0.15);
}

.fm-img-main {
    transform: rotate(0deg);
}

.fm-img-secondary {
    transform: rotate(0deg);
}

.fm-img-tertiary {
    transform: rotate(0deg);
}

.fm-main-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.fm-image-container:hover .fm-main-img {
    transform: scale(1.08);
}

.fm-image-shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg,
            transparent 30%,
            rgba(23, 198, 79, 0.08) 45%,
            transparent 60%);
    background-size: 200% 100%;
    animation: fmShimmer 4s ease-in-out infinite;
}

@keyframes fmShimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* ---- Glass Card ---- */
.fm-glass-card {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    background: rgba(7, 42, 48, 0.8);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 18px 32px;
    border-radius: 100px;
    border: 1px solid rgba(23, 198, 79, 0.15);
    color: white;
    animation: fmCardFloat 5s ease-in-out infinite;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 16px;
}

@keyframes fmCardFloat {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-8px);
    }
}

.glass-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-signal-green);
    margin-bottom: 0;
}

.glass-dot {
    width: 8px;
    height: 8px;
    background: var(--color-signal-green);
    border-radius: 50%;
    animation: fmDotBlink 2s ease-in-out infinite;
}

.glass-text {
    font-size: 14px;
    color: #9CACAC;
    margin: 0;
}

/* ---- Floating Decorations ---- */
.fm-float-el {
    position: absolute;
    z-index: 5;
    opacity: 0.25;
    pointer-events: none;
}

.fm-float-el--1 {
    top: 10%;
    right: 5%;
    animation: fmElFloat1 8s ease-in-out infinite;
}

.fm-float-el--2 {
    bottom: 15%;
    left: 10%;
    animation: fmElFloat2 10s ease-in-out infinite;
}

@keyframes fmElFloat1 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.25;
    }

    50% {
        transform: translate(-15px, -20px) rotate(12deg);
        opacity: 0.4;
    }
}

@keyframes fmElFloat2 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.2;
    }

    50% {
        transform: translate(12px, -16px) rotate(-8deg);
        opacity: 0.35;
    }
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .fm-container {
        padding: 0 32px;
    }

    .fm-image-row {
        gap: 16px;
    }

    .fm-main-img {
        height: 220px;
    }

    .fm-glass-card {
        padding: 14px 24px;
    }
}

@media (max-width: 768px) {
    .founding-member {
        padding: 80px 0 70px;
    }

    .fm-container {
        padding: 0 20px;
    }

    .fm-content {
        margin-bottom: 50px;
    }

    .fm-title {
        font-size: clamp(32px, 8vw, 48px);
        margin-bottom: 32px;
    }

    .fm-text-lead {
        font-size: 20px;
    }

    .fm-text-sub {
        font-size: 15px;
        line-height: 1.7;
    }

    .fm-description {
        gap: 18px;
        margin-bottom: 36px;
    }

    .fm-vibe-statement {
        flex-direction: column;
        gap: 16px;
        align-items: center;
        margin-bottom: 36px;
    }

    .vibe-line {
        font-size: 20px;
    }

    .fm-belong {
        font-size: 22px;
        margin-bottom: 32px;
    }

    .fm-content--bottom {
        margin-top: 50px;
    }

    .fm-image-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .fm-main-img {
        height: 200px;
    }

    .fm-glass-card {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin: 20px auto 0;
        animation: none;
        justify-content: center;
        flex-wrap: wrap;
    }

    .fm-cta-link {
        padding: 16px 36px;
        font-size: 16px;
        width: 100%;
        justify-content: center;
    }

    .fm-cta-wrapper {
        width: 100%;
    }

    .fm-float-el {
        display: none;
    }
}

@media (max-width: 480px) {
    .founding-member {
        padding: 60px 0 50px;
    }

    .fm-container {
        padding: 0 16px;
    }

    .fm-title {
        font-size: 30px;
    }

    .fm-text-lead {
        font-size: 18px;
    }

    .fm-text-sub {
        font-size: 14px;
    }

    .fm-badge {
        font-size: 11px;
        padding: 8px 16px;
    }
}

/* Vibe Features Section (Added via request) */
.vibe-features {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 60px;
    width: 100%;
}

.vibe-feature-card {
    flex: 1;
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.vibe-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: rgba(23, 198, 79, 0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #17C64F;
    /* Plans Green */
}

.feature-content h4 {
    margin: 0 0 12px 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    font-family: 'Aeonik Pro', sans-serif;
}

.feature-content p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #556666;
    font-family: 'Inter Tight', sans-serif;
}

@media (max-width: 768px) {
    .vibe-features {
        flex-direction: column;
        gap: 20px;
        margin-top: 40px;
    }

    .vibe-feature-card {
        padding: 24px;
    }
}

/* --- Section Label Pill Theme (Added via request) --- */
.section-label-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 700;
    color: #17C64F;
    /* Plans Green */
    text-transform: none;
    letter-spacing: 0.1em;
    padding: 12px 28px;
    background: rgba(23, 198, 79, 0.08);
    /* Light tint */
    border: 1px solid rgba(23, 198, 79, 0.2);
    border-radius: 100px;
    margin-bottom: 24px;
    font-family: var(--font-primary);
}

.section-label-pill svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

/* --- Intro Section Styles (Refined) --- */
.intro-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background-color: transparent;
}

.intro-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 80px;
}

.intro-container {
    max-width: 1100px;
    /* Narrower to keep content together */
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 450px 1fr;
    /* Fixed width for image, flex for text */
    gap: 60px;
    /* Reduced gap */
    align-items: center;
}

.intro-image-wrapper {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.15);
    aspect-ratio: 1/1;
    width: 100%;
    max-width: 450px;
    /* Smaller image as requested */
}

.intro-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.intro-section:hover .intro-image {
    transform: scale(1.05);
    /* Subtle zoom */
}

.intro-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    /* Tighter internal spacing */
    padding-right: 0;
    text-align: left;
}

.intro-headline {
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    /* Slightly smaller for better balance */
    font-weight: 700;
    color: #072A30;
    line-height: 1.1;
    letter-spacing: -0.04em;
    font-family: var(--font-primary);
    text-transform: none;
    max-width: 800px;
}

.btn-know-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #17C64F;
    color: #072A30;
    padding: 16px 40px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    width: fit-content;
    margin-top: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-know-more:hover {
    background-color: #072A30;
    color: #17C64F;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(23, 198, 79, 0.2);
}

.intro-text {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #556666;
    font-family: 'Inter Tight', sans-serif;
    max-width: 90%;
}

.intro-subhead {
    font-size: 1.75rem;
    font-weight: 700;
    color: #072A30;
    margin-top: 24px;
    font-family: 'Aeonik Pro', sans-serif;
    letter-spacing: -0.02em;
}

@media (max-width: 1024px) {
    .intro-container {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 24px;
        text-align: center;
        justify-items: center;
    }

    .intro-image-wrapper {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .intro-content {
        align-items: center;
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
    }

    .intro-text {
        max-width: 100%;
    }
}

@media (min-width: 1025px) and (max-width: 1200px) {
    .intro-container {
        gap: 40px;
        grid-template-columns: 400px 1fr;
    }
}


/* --- Fix for Work Zones Card Alignment --- */
.space-card__title {
    min-height: 72px;
    /* Sufficient for 2 lines */
    display: flex;
    align-items: flex-start;
    /* Aligns text to the top of the reserved space */
    margin-bottom: 4px !important;
    position: relative;
    z-index: 10;
    line-height: 1.2;
    transform: translateY(14px);
    /* Push text down visibly */
}

.space-card__content {
    position: absolute !important;
    bottom: 0 !important;
    top: auto !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 10 !important;
    padding: 60px 24px 32px !important;
    background: linear-gradient(to top, rgba(7, 42, 48, 0.95) 0%, rgba(7, 42, 48, 0.6) 50%, transparent 100%) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    min-height: 180px !important;
    border-radius: 0 0 24px 24px !important;
}

.space-card:hover .space-card__title {
    transform: translateY(14px) !important;
    /* Maintain position on hover */
}

.space-card__desc {
    position: relative;
    z-index: 9;
    margin-top: 8px;
    font-size: 15px;
    opacity: 0.9;
    font-weight: 400;
}

/* ===================================================
   NEW EXPLORE BUTTONS STYLES
=================================================== */
.btn-explore-center {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 60px auto 0;
    width: fit-content;
    padding: 16px 40px;
    background-color: var(--color-signal-green);
    color: var(--color-dark-teal);
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(23, 198, 79, 0.2);
    font-family: var(--font-primary);
    position: relative;
    z-index: 10;
}

.btn-explore-center:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(23, 198, 79, 0.4);
    background-color: #fff;
    color: var(--color-dark-teal);
}

.btn-explore-center svg {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.btn-explore-center:hover svg {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .btn-explore-center {
        width: 90%;
        max-width: 300px;
        padding: 14px 28px;
        font-size: 16px;
        margin-top: 40px;
    }
}