/* ================================
   EkNaam Studios - Sections
   Homepage Section Styles
   ================================ */

/* === ANNOUNCEMENT BAR === */
.announcement-bar {
    height: var(--announcement-bar-height);
    background: linear-gradient(135deg, #0A0B0D 0%, var(--bg-secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: var(--z-sticky);
    transition: height var(--duration-base) var(--ease-smooth);
}

.announcement-bar.scrolled {
    height: 32px;
}

.announcement-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
}

.announcement-text {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    font-weight: var(--weight-medium);
    flex: 1;
}

.announcement-text .mobile-text {
    display: none;
}

.announcement-cta {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--accent-red);
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
    white-space: nowrap;
    flex-shrink: 0;
}

/* === HEADER / NAVIGATION === */
.header {
    height: var(--header-height);
    position: sticky;
    top: 0;
    z-index: var(--z-sticky);
    transition: all var(--duration-base) var(--ease-smooth);
}

.header.scrolled {
    background: rgba(15, 17, 21, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
}

.header .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-8);
}

.logo {
    font-size: var(--text-xl);
    font-weight: var(--weight-bold);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: var(--space-2);
    transition: transform var(--duration-base) var(--ease-smooth);
}

.logo:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 48px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(198, 168, 92, 0.3));
    transition: filter var(--duration-base) var(--ease-smooth);
}

.logo:hover .logo-img {
    filter: drop-shadow(0 4px 16px rgba(198, 168, 92, 0.5));
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-8);
    flex: 1;
    justify-content: center;
}

.nav-menu a {
    font-size: var(--text-base);
    font-weight: var(--weight-medium);
    color: var(--text-secondary);
    transition: color var(--duration-base) var(--ease-smooth);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-red);
    transition: width var(--duration-base) var(--ease-smooth);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--text-primary);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: var(--z-modal);
}

.mobile-menu-toggle span {
    width: 28px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--duration-base) var(--ease-smooth);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(15, 17, 21, 0.98);
    backdrop-filter: blur(30px);
    padding: var(--space-20) var(--space-6);
    transition: right var(--duration-slow) var(--ease-smooth);
    z-index: var(--z-modal);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
    margin-bottom: var(--space-12);
}

.mobile-menu-links a {
    font-size: var(--text-2xl);
    font-weight: var(--weight-semibold);
    color: var(--text-primary);
    transition: color var(--duration-fast) ease;
}

.mobile-menu-links a:hover,
.mobile-menu-links a.active {
    color: var(--accent-red);
}

/* === HERO SECTION === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
    perspective: 1000px;
}

.hero-content h1 {
    font-size: var(--text-6xl);
    font-weight: var(--weight-black);
    line-height: var(--leading-tight);
    margin-bottom: var(--space-6);
    letter-spacing: var(--tracking-tight);
}

.hero-subtext {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-4);
    max-width: 540px;
}

.hero-support {
    font-size: var(--text-base);
    color: var(--text-muted);
    margin-bottom: var(--space-8);
}

.hero-cta {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-8);
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
}

.hero-visual {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.15s ease-out;
    transform-style: preserve-3d;
}

.hero-visual svg {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0 60px rgba(230, 57, 70, 0.3));
    transition: filter 0.3s ease;
}

.hero-visual svg:hover {
    filter: drop-shadow(0 0 80px rgba(230, 57, 70, 0.5));
}

/* Animated SVG Waveform */
#audio-waveform-svg {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
    filter: drop-shadow(0 10px 40px rgba(230, 57, 70, 0.25));
    transition: filter 0.4s ease;
}

#audio-waveform-svg:hover {
    filter: drop-shadow(0 15px 50px rgba(230, 57, 70, 0.4));
}

/* Hero Waveform Image */
.hero-waveform-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
    filter: drop-shadow(0 10px 40px rgba(230, 57, 70, 0.2));
    transition: all 0.4s ease;
    opacity: 0.95;
}

.hero-waveform-image:hover {
    filter: drop-shadow(0 15px 50px rgba(230, 57, 70, 0.35));
    transform: translateY(-5px);
    opacity: 1;
}

/* Soundwave SVG specific styles */
#soundwave-svg {
    width: 100%;
    max-width: 600px;
    height: auto;
}

#soundwave-path {
    will-change: d, opacity;
}

#film-frame {
    will-change: opacity, transform;
}

/* === TRUST SIGNAL STRIP === */
.trust-signal {
    background: var(--bg-secondary);
    padding: var(--space-12) 0;
    text-align: center;
}

.trust-signal h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-6);
    color: var(--text-secondary);
}

.trust-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-8);
}

.trust-stats span {
    color: var(--text-secondary);
    font-size: var(--text-sm);
}

.trust-stats span::before {
    content: '•';
    color: var(--accent-red);
    margin-right: var(--space-2);
}

/* === LISTEN TO OUR SOUND SECTION === */
.listen-section {
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.tracks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-8);
    margin-top: var(--space-12);
}

.track-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    transition: all var(--duration-base) var(--ease-smooth);
}

.track-card:hover {
    border-color: var(--glass-border-hover);
    box-shadow: var(--shadow-glow);
}

.track-genre {
    display: inline-block;
    font-size: var(--text-xs);
    color: var(--accent-red);
    background: rgba(198, 168, 92, 0.1);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-3);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: var(--weight-semibold);
}

.track-card h4 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-2);
}

.track-card p {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin-bottom: var(--space-4);
}

/* === INFINITE TRUST STRIP === */
.infinite-strip {
    background: var(--bg-secondary);
    padding: var(--space-6) 0;
    overflow: hidden;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.ticker-item {
    font-size: var(--text-lg);
    font-weight: var(--weight-semibold);
    color: var(--text-secondary);
    padding: 0 var(--space-8);
    white-space: nowrap;
}

.ticker-item::after {
    content: '•';
    color: var(--accent-red);
    margin-left: var(--space-8);
}

/* === FEATURED WORK CAROUSEL === */
.featured-work {
    background: var(--bg-primary);
}

.carousel {
    display: flex;
    gap: var(--space-6);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: var(--space-6) 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.carousel::-webkit-scrollbar {
    display: none;
}

.carousel-item {
    flex: 0 0 auto;
    width: 400px;
    scroll-snap-align: start;
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    cursor: pointer;
    transition: transform var(--duration-base) var(--ease-smooth);
}

.carousel-item:hover {
    transform: scale(1.05);
}

.carousel-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--duration-base) var(--ease-smooth);
}

.carousel-item:hover .play-overlay {
    opacity: 1;
}

.play-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-primary);
}

/* === SERVICES GRID === */
.services {
    background: var(--bg-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-8);
    margin-top: var(--space-12);
}

/* === PACKAGES SECTION === */
.packages {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-8);
    margin-top: var(--space-12);
}

/* === COUNTERS SECTION === */
.counters {
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
    padding: var(--space-24) 0;
}

.counters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-12);
    text-align: center;
    position: relative;
    z-index: var(--z-base);
}

.counter-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s var(--ease-out);
}

.counter-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.counter-number {
    font-size: var(--text-6xl);
    font-weight: var(--weight-black);
    color: var(--accent-red);
    margin-bottom: var(--space-2);
}

.counter-label {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    font-weight: var(--weight-medium);
}

/* Subtle Studio Equalizer Background */
.studio-eq-bg {
    position: absolute;
    bottom: -10%;
    left: 0;
    width: 100%;
    height: 80%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    opacity: 0.03;
    /* Extremely subtle */
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    padding: 0 var(--space-8);
}

.eq-bar {
    width: 6%;
    background: var(--accent-red);
    height: 100%;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    transform-origin: bottom;
    animation: eqBounce 1s infinite alternate cubic-bezier(0.5, 0, 0.5, 1);
}

/* Staggered animation timings for organic equalizer look */
.eq-bar.bar-1 {
    animation-duration: 1.2s;
    height: 60%;
    animation-delay: 0.1s;
}

.eq-bar.bar-2 {
    animation-duration: 0.8s;
    height: 100%;
    animation-delay: 0.5s;
}

.eq-bar.bar-3 {
    animation-duration: 1.5s;
    height: 40%;
    animation-delay: 0.2s;
}

.eq-bar.bar-4 {
    animation-duration: 1.1s;
    height: 80%;
    animation-delay: 0.8s;
}

.eq-bar.bar-5 {
    animation-duration: 0.9s;
    height: 50%;
    animation-delay: 0.3s;
}

.eq-bar.bar-6 {
    animation-duration: 1.4s;
    height: 90%;
    animation-delay: 0.7s;
}

.eq-bar.bar-7 {
    animation-duration: 1.0s;
    height: 70%;
    animation-delay: 0.4s;
}

.eq-bar.bar-8 {
    animation-duration: 1.3s;
    height: 40%;
    animation-delay: 0.9s;
}

.eq-bar.bar-9 {
    animation-duration: 0.7s;
    height: 100%;
    animation-delay: 0.1s;
}

.eq-bar.bar-10 {
    animation-duration: 1.6s;
    height: 50%;
    animation-delay: 0.6s;
}

.eq-bar.bar-11 {
    animation-duration: 1.1s;
    height: 75%;
    animation-delay: 0.2s;
}

.eq-bar.bar-12 {
    animation-duration: 0.9s;
    height: 60%;
    animation-delay: 0.5s;
}

/* === PROCESS TIMELINE === */
.process {
    background: var(--bg-secondary);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--space-8);
    margin-top: var(--space-12);
    position: relative;
}

.process-step {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    text-align: center;
    transition: all var(--duration-base) var(--ease-smooth);
    position: relative;
}

.process-step:hover {
    border-color: var(--accent-red);
    box-shadow: var(--shadow-glow);
    transform: translateY(-8px);
}

.process-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-4);
    color: var(--accent-red);
}

.process-step h4 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-3);
}

.process-step p {
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

/* === FOUNDER SECTION === */
.founder {
    background: var(--bg-primary);
}

.founder .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.founder-image {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
}

.founder-image img {
    width: 100%;
    height: auto;
    filter: grayscale(20%);
}

.founder-content h2 {
    font-size: var(--text-5xl);
    margin-bottom: var(--space-6);
}

.founder-content p {
    font-size: var(--text-lg);
    line-height: var(--leading-relaxed);
    color: var(--text-secondary);
    margin-bottom: var(--space-8);
}

.founder-cta {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
}

/* === TESTIMONIALS === */
.testimonials {
    background: var(--bg-secondary);
}

.testimonials-carousel {
    display: flex;
    gap: var(--space-6);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: var(--space-6) 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.testimonials-carousel::-webkit-scrollbar {
    display: none;
}

.testimonials-carousel .testimonial-card {
    flex: 0 0 auto;
    width: 400px;
    scroll-snap-align: start;
}

/* === PREMIUM FILTER === */
.premium-filter {
    background: var(--bg-primary);
    padding: var(--space-32) 0;
    /* Expanded padding for regal spacing */
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.premium-bg-lux {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    background: radial-gradient(circle at 50% 120%, rgba(230, 57, 70, 0.05) 0%, transparent 70%);
}

.lux-glow-1 {
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    top: -400px;
    left: -200px;
    filter: blur(80px);
    animation: luxBreathe 12s infinite alternate ease-in-out;
}

.lux-glow-2 {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -300px;
    right: -100px;
    filter: blur(60px);
    animation: luxBreathe 15s infinite alternate-reverse ease-in-out;
}

.lux-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(10rem, 25vw, 30rem);
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.03);
    letter-spacing: -0.02em;
    white-space: nowrap;
    user-select: none;
    animation: luxTextScale 30s infinite alternate ease-in-out;
}

.lux-noise {
    position: absolute;
    inset: 0;
    background: transparent url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" 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') repeat;
    opacity: 0.02;
    mix-blend-mode: overlay;
}

@keyframes luxBreathe {
    0% {
        transform: scale(1) translate(0, 0);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.2) translate(50px, 20px);
        opacity: 1;
    }
}

@keyframes luxTextScale {
    0% {
        transform: translate(-50%, -50%) scale(0.95);
    }

    100% {
        transform: translate(-50%, -50%) scale(1.05);
    }
}

.premium-filter h2 {
    font-size: var(--text-5xl);
    max-width: 800px;
    margin: 0 auto;
    line-height: var(--leading-tight);
}

/* === FINAL CTA === */
.final-cta {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    padding: var(--space-24) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, var(--accent-glow) 0%, transparent 70%);
    opacity: 0.3;
}

.final-cta .container {
    position: relative;
    z-index: var(--z-base);
}

.final-cta h2 {
    font-size: var(--text-5xl);
    margin-bottom: var(--space-8);
}

/* === FAQ SECTION === */
.faq {
    background: var(--bg-secondary);
}

.faq-container {
    max-width: 800px;
    margin: var(--space-12) auto 0;
}

/* === FOUNDER SECTION === */
.founder {
    background: var(--bg-primary);
    padding: var(--space-24) 0;
    position: relative;
    overflow: hidden;
}

/* Premium Founder Background Effects */
.founder-premium-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.founder-glow-ambient {
    position: absolute;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.04) 0%, transparent 60%);
    border-radius: 50%;
    top: 50%;
    left: -30%;
    transform: translateY(-50%);
    filter: blur(100px);
    animation: ambientPulse 15s infinite alternate ease-in-out;
}

.founder-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    transform: perspective(500px) rotateX(60deg) translateY(-100px) translateZ(-200px);
    transform-origin: top;
    opacity: 0.3;
}

.founder-noise-layer {
    position: absolute;
    inset: 0;
    background: transparent url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.85" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E') repeat;
    opacity: 0.02;
    mix-blend-mode: overlay;
}

@keyframes ambientPulse {
    0% {
        transform: translateY(-50%) scale(1);
        opacity: 0.5;
    }

    100% {
        transform: translateY(-50%) scale(1.1);
        opacity: 1;
    }
}

.founder .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

/* === SERVICE DEEP DIVES === */
.service-deep-dive {
    padding: var(--space-20) 0;
    position: relative;
    background: var(--bg-primary);
    overflow: hidden;
}

.deep-dive-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

/* Layout Variations */
.layout-left .deep-dive-visual {
    order: -1;
}

.layout-right .deep-dive-visual {
    order: 2;
}

.deep-dive-visual {
    position: relative;
    width: 100%;
}

.visual-wrapper {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    aspect-ratio: 4/5;
    padding: 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.placeholder-visual {
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.visual-wrapper:hover .placeholder-visual {
    transform: scale(1.05);
}

.visual-tag {
    position: absolute;
    bottom: var(--space-6);
    left: var(--space-6);
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: var(--weight-semibold);
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-primary);
    pointer-events: none;
}

.deep-dive-content h2 {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-4);
}

.service-desc {
    font-size: var(--text-lg);
    line-height: var(--leading-relaxed);
    color: var(--text-secondary);
    margin-bottom: var(--space-6);
}

.service-process {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    margin-bottom: var(--space-6);
}

.service-process ol,
.service-process ul {
    list-style-position: inside;
    color: var(--text-secondary);
    line-height: var(--leading-relaxed);
}

.service-process ol li {
    margin-bottom: var(--space-2);
}

.service-process ol li::marker {
    color: var(--accent-red);
    font-weight: var(--weight-bold);
}

.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    position: relative;
    padding-left: var(--space-6);
    margin-bottom: var(--space-2);
}

.check-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-red);
    font-weight: var(--weight-bold);
}

.service-arsenal {
    padding: var(--space-4) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.service-arsenal p {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    line-height: var(--leading-relaxed);
}

.signal-chain-list {
    list-style: none;
    padding: 0;
}

.signal-chain-list li {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin-bottom: var(--space-1);
}

/* Service Deep Dive Responsive */
@media (max-width: 900px) {
    .deep-dive-grid {
        grid-template-columns: 1fr;
        gap: var(--space-10);
    }

    .layout-left .deep-dive-visual,
    .layout-right .deep-dive-visual {
        order: -1;
        /* Image always on top for mobile */
    }

    .visual-wrapper {
        aspect-ratio: 16/9;
    }
}

/* === PORTFOLIO FILTERS === */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    margin-bottom: var(--space-12);
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-family: var(--font-primary);
    font-weight: var(--weight-medium);
    cursor: pointer;
    transition: all var(--duration-fast) ease;
}

.filter-btn:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--text-primary);
}

.filter-btn.active {
    background: var(--accent-red);
    border-color: var(--accent-red);
    color: var(--text-primary);
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

/* === PORTFOLIO GRID === */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--space-6);
}

.portfolio-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 16/10;
    cursor: pointer;
    background: var(--bg-primary);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

.portfolio-img-wrap {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.portfolio-img-wrap img,
.portfolio-img-wrap .placeholder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
    transition: filter 0.6s ease, opacity 0.6s ease;
}

.portfolio-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.2) 60%, transparent 100%);
    padding: var(--space-6);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* --- CLIENT TESTIMONIAL BREAK --- */
.testimonial-break {
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.5s ease;
}

.testimonial-break:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(230, 57, 70, 0.3);
}

.testimonial-break h2 {
    background: linear-gradient(90deg, #FFFFFF, #bbbbbb);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

.overlay-content {
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.portfolio-tag {
    display: inline-block;
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-red);
    margin-bottom: var(--space-2);
    font-weight: var(--weight-bold);
}

.overlay-content h3 {
    font-size: var(--text-2xl);
    color: var(--text-primary);
    margin-bottom: var(--space-2);
}

.overlay-content p {
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

.small-btn {
    padding: var(--space-2) var(--space-6);
    font-size: var(--text-xs);
}

/* Portfolio Hover Mechanics */
.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.portfolio-card:hover .portfolio-img-wrap {
    transform: scale(1.05);
}

.portfolio-card:hover .portfolio-img-wrap img,
.portfolio-card:hover .portfolio-img-wrap .placeholder-img {
    filter: brightness(0.3);
    opacity: 0;
}

.portfolio-card:hover .portfolio-video {
    opacity: 1;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-card:hover .overlay-content {
    transform: translateY(0);
}

/* === BEFORE & AFTER AUDIO PLAYERS === */
.ba-players-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-8);
}

.ba-player-card {
    padding: var(--space-8);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-2xl);
}

.ba-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-8);
}

.audio-toggle-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    background: rgba(0, 0, 0, 0.3);
    padding: var(--space-4);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: var(--space-8);
}

.toggle-label {
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
    color: var(--text-secondary);
    transition: color var(--duration-fast) ease;
}

.toggle-label.active-side {
    color: var(--accent-red);
}

/* The Switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: var(--text-secondary);
    transition: .4s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: rgba(230, 57, 70, 0.2);
    border: 1px solid rgba(230, 57, 70, 0.4);
}

input:checked+.slider:before {
    transform: translateX(26px);
    background-color: var(--accent-red);
    box-shadow: 0 0 10px rgba(230, 57, 70, 0.5);
}

/* Audio Playback Area */
.audio-playback-controls {
    display: flex;
    align-items: center;
    gap: var(--space-6);
}

.play-pause-btn {
    flex-shrink: 0;
}

.play-pause-btn:hover,
.play-pause-btn:hover svg,
.play-pause-btn:hover svg path {
    color: var(--accent-red) !important;
    fill: var(--accent-red) !important;
}

.audio-progress-bar {
    flex-grow: 1;
    height: 40px;
    /* Increased height for waveform */
    background: transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.audio-waveform-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 1;
    opacity: 0.5;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.dynamic-waveform {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1px;
}

.wave-bar {
    flex: 1;
    background: var(--text-secondary);
    border-radius: 1px;
    height: var(--base-h, 5%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

@keyframes waveform-flutter {

    0%,
    100% {
        transform: scaleY(1);
    }

    50% {
        transform: scaleY(1.4);
    }
}

.ba-player-card.is-playing .wave-bar {
    animation: waveform-flutter 0.3s ease-in-out infinite alternate;
}

.audio-progress-fill {
    height: 100%;
    background: rgba(230, 57, 70, 0.15);
    /* Subtle background fill over waveform */
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    pointer-events: none;
    border-right: 2px solid var(--accent-red);
    box-shadow: 5px 0 15px rgba(230, 57, 70, 0);
    transition: box-shadow 0.5s ease, background 0.5s ease, border-color 0.5s ease;
}

/* --- Emotional Contrast States --- */

/* RAW STATE (Dull, narrow, lifeless) */
.ba-player-card[data-state="raw"] {
    transition: box-shadow 0.6s ease, transform 0.6s ease, border-color 0.6s ease;
    border-color: rgba(255, 255, 255, 0.05);
    transform: scale(0.98);
}

.ba-player-card[data-state="raw"] .wave-bar {
    transform: scaleY(0.4);
    /* Crushed dynamics */
    background: #444444;
}

.ba-player-card[data-state="raw"].is-playing .wave-bar {
    animation-duration: 0.6s;
    /* Slower, less energetic flutter */
}

.ba-player-card[data-state="raw"] .audio-progress-fill {
    background: rgba(255, 255, 255, 0.03);
    /* Greyish fill */
    border-right-color: #555555;
    box-shadow: none;
}

/* MASTERED STATE (Wide, glowing, vibrant WOW Factor) */
.ba-player-card[data-state="mastered"] {
    transition: box-shadow 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275), transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.6s ease;
    box-shadow: 0 20px 60px -10px rgba(230, 57, 70, 0.4), inset 0 0 20px rgba(230, 57, 70, 0.15), 0 0 2px 1px rgba(230, 57, 70, 0.5);
    border-color: rgba(230, 57, 70, 0.5);
    transform: scale(1.02) translateY(-5px);
    /* Pops out at user */
}

.ba-player-card[data-state="mastered"] .audio-waveform-container {
    opacity: 1;
    /* Maximum brightness */
    filter: drop-shadow(0 0 8px rgba(230, 57, 70, 0.8));
}

.ba-player-card[data-state="mastered"] .wave-bar {
    transform: scaleY(1.3);
    /* Massive expanded dynamics */
    background: var(--accent-red);
}

.ba-player-card[data-state="mastered"].is-playing .wave-bar {
    animation-duration: 0.2s;
    /* Aggressive, fast flutter */
}

.ba-player-card[data-state="mastered"] .audio-progress-fill {
    background: rgba(230, 57, 70, 0.25);
    border-right-color: #ff4d5a;
    border-right-width: 3px;
    box-shadow: 5px 0 25px rgba(255, 77, 90, 0.8);
    /* Intense Red playhead glow */
}

/* === PROCESS PAGE TIMELINE === */
.process-timeline-immersive {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-12);
}

.process-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
    align-items: center;
    width: 100%;
}

.process-block.staggered-right {
    direction: rtl;
}

.process-block.staggered-right>* {
    direction: ltr;
    /* Reset text direction for children */
}

.block-content,
.visual-card {
    padding: var(--space-8);
    width: 100%;
}

.visual-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    /* Give the SVG room to breathe */
    background: radial-gradient(circle at center, rgba(230, 57, 70, 0.05) 0%, transparent 70%);
}

.step-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-6);
}

/* Process Timeline Responsive */
@media (max-width: 900px) {
    .process-block {
        grid-template-columns: 1fr;
    }

    .process-block.staggered-right {
        direction: ltr;
        /* Stacks normally on mobile */
    }

    .visual-card {
        min-height: 300px;
    }
}

/* === ABOUT HERO === */
.about-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at center, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

/* === FOUNDER DEEP DIVE (MAGAZINE STYLE) === */
.founder-deep-dive {
    padding: var(--space-32) 0;
    position: relative;
    background: var(--bg-primary);
    overflow: hidden;
}

.founder-deep-dive-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.founder-profile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-20);
    align-items: center;
}

.founder-portrait-wrapper {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.founder-portrait-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-2xl);
    pointer-events: none;
}

.founder-portrait {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4/5;
    object-fit: cover;
    filter: grayscale(20%) contrast(110%);
}

.portrait-overlay {
    position: absolute;
    bottom: var(--space-8);
    left: var(--space-8);
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--space-4) var(--space-6);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.stat-large {
    font-size: var(--text-4xl);
    font-weight: var(--weight-black);
    color: var(--accent-red);
    line-height: 1;
}

.stat-label {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: var(--weight-semibold);
}

.bio-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
}

.bio-badge {
    padding: var(--space-2) var(--space-4);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    color: var(--text-primary);
    transition: all var(--duration-fast) ease;
}

/* === GEAR & STUDIO GRID === */
.gear-photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-auto-rows: 300px;
    gap: var(--space-6);
}

.gear-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    cursor: crosshair;
    /* Specialized Premium Cursor Native Fallback */
}

/* Masonry variations */
.gear-card.tall {
    grid-row: span 2;
}

.gear-card.wide {
    grid-column: span 2;
}

.gear-img-wrap {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gear-img-wrap img,
.placeholder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) contrast(1.1);
    transition: filter 0.6s ease;
}

.gear-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 5, 5, 0.95) 0%, rgba(5, 5, 5, 0.4) 50%, transparent 100%);
    padding: var(--space-8);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0.8;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
}

.gear-overlay h3 {
    font-size: var(--text-2xl);
    color: var(--text-primary);
    margin-bottom: var(--space-2);
    transform: translateY(10px);
    transition: transform 0.4s ease;
}

.gear-overlay p {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

/* Hover Interactions */
.gear-card:hover .gear-img-wrap {
    transform: scale(1.05);
}

.gear-card:hover .gear-img-wrap img,
.gear-card:hover .gear-img-wrap .placeholder-img {
    filter: brightness(0.4) contrast(1.2);
}

.gear-card:hover .gear-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(5, 5, 5, 0.98) 0%, rgba(230, 57, 70, 0.1) 100%);
    border-color: rgba(230, 57, 70, 0.3);
}

.gear-card:hover .gear-overlay h3 {
    transform: translateY(0);
    color: var(--accent-red);
}

.gear-card:hover .gear-overlay p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

@media (max-width: 900px) {
    .founder-profile-grid {
        grid-template-columns: 1fr;
    }

    .gear-photo-grid {
        grid-auto-rows: 250px;
    }

    .gear-card.wide,
    .gear-card.tall {
        grid-column: span 1;
        grid-row: span 1;
    }
}


/* === FOOTER === */
.footer {
    background: var(--bg-footer);
    padding: var(--space-20) 0 var(--space-8);
    border-top: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

/* === PREMIUM FOOTER BACKGROUND EFFECTS === */
.footer-premium-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.footer-glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.15;
    animation: orbFloat 18s infinite alternate ease-in-out;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-red) 0%, transparent 60%);
    bottom: -300px;
    left: -150px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #ff2a2a 0%, transparent 60%);
    top: -200px;
    right: -100px;
    animation-delay: -7s;
    animation-direction: alternate-reverse;
}

/* Footer Cinematic Noise */
.footer-noise {
    position: absolute;
    inset: 0;
    background: transparent url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E') repeat;
    opacity: 0.04;
    mix-blend-mode: overlay;
}

/* Vignette to blend the edges into darkness */
.footer-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 30%, var(--bg-footer) 100%);
}

.relative-z {
    position: relative;
    z-index: 10;
}

@keyframes orbFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(60px, -40px) scale(1.1);
    }

    100% {
        transform: translate(-40px, 30px) scale(0.9);
    }
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-red), transparent);
    box-shadow: 0 0 20px var(--accent-glow);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-12);
    margin-bottom: var(--space-12);
}

.footer-column h4 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-4);
}

.footer-logo {
    display: block;
    margin-bottom: var(--space-6);
}

.footer-logo img {
    height: 56px;
    width: auto;
    max-width: 240px;
    object-fit: contain;
    opacity: 0.9;
    transition: opacity var(--duration-base) var(--ease-smooth);
}

.footer-logo:hover img {
    opacity: 1;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.footer-column a {
    color: var(--text-secondary);
    font-size: var(--text-base);
    transition: all var(--duration-fast) ease;
    display: inline-block;
}

.footer-column a:hover,
.footer-column a.active {
    color: var(--text-primary);
    transform: translateX(4px);
}

.social-links {
    display: flex;
    gap: var(--space-4);
    margin-top: var(--space-4);
}

.footer-bottom {
    padding-top: var(--space-8);
    border-top: 1px solid var(--glass-border);
    text-align: center;
    color: var(--text-muted);
    font-size: var(--text-sm);
}

/* === RESPONSIVE === */
@media (max-width: 1199px) {

    .hero .container,
    .founder .container {
        grid-template-columns: 1fr;
        gap: var(--space-12);
    }

    .hero-visual {
        height: 400px;
    }
}

@media (max-width: 767px) {
    .announcement-text .desktop-text {
        display: none;
    }

    .announcement-text .mobile-text {
        display: inline;
    }

    .announcement-bar {
        height: auto;
        min-height: var(--announcement-bar-height);
        padding: var(--space-2) 0;
    }

    .announcement-bar.scrolled {
        height: auto;
        min-height: 32px;
    }

    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .hero-cta {
        flex-direction: column;
    }

    .carousel-item,
    .testimonials-carousel .testimonial-card {
        width: 300px;
    }

    .packages-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-8);
    }

    .footer-column {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-logo {
        margin: 0 auto var(--space-6) auto;
    }

    .social-links {
        justify-content: center;
    }

    .footer-column ul {
        align-items: center;
    }

    /* === HEADER BOOK BUTTON - Mobile Fix === */
    /* Target only the glow-button inside the header (not mobile-menu) */
    .header .container>.glow-button {
        padding: 8px 16px;
        font-size: 12px;
        letter-spacing: 0.02em;
        white-space: nowrap;
    }
}

/* === QUICK VIEW MODAL === */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 100000;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    padding: var(--space-6);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    position: relative;
    width: 100%;
    max-width: 1000px;
    background: var(--bg-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    max-height: 90vh;
    transform: translateY(20px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
}

.close-modal-btn {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s ease, transform 0.2s ease;
}

.close-modal-btn:hover {
    background: var(--accent-red);
    transform: rotate(90deg);
}

.modal-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    height: 100%;
}

.modal-visual {
    position: relative;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.modal-info {
    padding: var(--space-8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--bg-primary);
}

.modal-info h2 {
    font-size: var(--text-3xl);
    margin: var(--space-2) 0 var(--space-4);
}

.modal-info p {
    color: var(--text-secondary);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-6);
}

.modal-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

.stat-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: var(--space-4);
    border-radius: var(--radius-lg);
    text-align: center;
}

.stat-value {
    display: block;
    font-size: var(--text-2xl);
    font-weight: var(--weight-bold);
    color: var(--accent-red);
    margin-bottom: var(--space-1);
}

.stat-label {
    font-size: var(--text-xs);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 900px) {
    .modal-grid {
        grid-template-columns: 1fr;
    }

    .modal-visual {
        aspect-ratio: 16/9;
    }

    .modal-info {
        padding: var(--space-6);
    }
}

/* Closing max-width: 900px */

/* === YOUTUBE HERO BACKGROUND === */
.hero-yt-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
    /* Let clicks pass through to toggle button */
    /* This creates an object-fit: cover effect for iframes by overscaling it */
}

@media (min-aspect-ratio: 16/9) {
    .hero-yt-bg {
        /* If window is wider than 16:9, scale height up to fit width */
        height: 56.25vw;
    }
}

@media (max-aspect-ratio: 16/9) {
    .hero-yt-bg {
        /* If window is taller than 16:9, scale width up to fit height */
        width: 177.77vh;
    }
}

/* === STICKY CONVERSION BAR === */
.sticky-conversion-bar {
    position: fixed;
    bottom: var(--space-6);
    left: 50%;
    transform: translateX(-50%) translateY(calc(100% + 40px));
    /* Hidden: slid fully below viewport */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    width: 90%;
    max-width: 800px;
    z-index: 99;
    padding: var(--space-4) var(--space-6);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(230, 57, 70, 0.4);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), inset 0 0 10px rgba(230, 57, 70, 0.1);
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease, visibility 0.4s ease;
}

.sticky-conversion-bar:hover {
    transform: translateX(-50%) translateY(-5px);
}

.sticky-conversion-bar.show-sticky-bar {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

@media (max-width: 768px) {
    .sticky-conversion-bar {
        display: none !important;
    }
}

/* === PROCESS NEW DESIGN PILLARS === */
.process-hero-new {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.process-hero-new .text-glow {
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 900;
    line-height: 1.1;
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.4) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 80px rgba(255, 255, 255, 0.1);
}

.pillar-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    z-index: 10;
}

.pillar-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 100px;
    backdrop-filter: blur(10px);
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pillar-btn.active {
    background: var(--accent-red);
    border-color: var(--accent-red);
    box-shadow: 0 0 30px rgba(230, 57, 70, 0.4);
}

.pillar-section {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
    padding: 80px 0;
}

.pillar-section.active {
    display: block;
    opacity: 1;
    animation: fadeInPillar 0.8s ease forwards;
}

@keyframes fadeInPillar {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.immersive-stage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 120px;
    position: relative;
}

.immersive-stage:nth-child(even) {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.immersive-stage:nth-child(even)>* {
    direction: ltr;
}

@media(max-width: 900px) {

    .immersive-stage,
    .immersive-stage:nth-child(even) {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 80px;
        text-align: center;
        direction: ltr;
    }
}

.stage-number {
    position: absolute;
    font-size: 20rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.03);
    z-index: 0;
    top: 50%;
    transform: translateY(-50%);
    left: -5%;
    pointer-events: none;
}

.immersive-stage:nth-child(even) .stage-number {
    left: auto;
    right: -5%;
}

.stage-visual {
    position: relative;
    z-index: 2;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
    background: #050505;
    aspect-ratio: 4/3;
    transition: transform 0.5s var(--ease-out);
}

.stage-visual:hover {
    transform: translateY(-10px) scale(1.02);
}

.stage-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.5), transparent, rgba(255, 255, 255, 0.1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.stage-content {
    position: relative;
    z-index: 2;
}

.stage-content h3 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 20px;
    color: #fff;
}

.stage-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 30px;
}

.highlight-red {
    color: var(--accent-red);
    font-weight: 700;
}

@media(max-width: 768px) {
    .stage-visual {
        aspect-ratio: 16/9;
    }

    .stage-number {
        font-size: 12rem;
        top: 10%;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%);
    }

    .pillar-btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}