/* ====================================================
   SUPERZZEROS STUDIO - CSS DESIGN SYSTEM & STYLESHEET
   ==================================================== */

:root {
    --bg-black: transparent;
    --bg-dark: rgba(0, 0, 0, 0.03);
    --surface-card: #ffffff;
    --surface-card-hover: #f9f9fb;
    --text-light: #111111;
    --text-muted: #555555;
    --accent: #333333; 
    --accent-glow: rgba(0, 0, 0, 0.15);
    
    --font-heading: 'Geist', sans-serif;
    --font-display: 'Geist', sans-serif;
    --font-accent: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --border-subtle: rgba(0, 0, 0, 0.1);
    --border-light: rgba(0, 0, 0, 0.15);
    --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.2s ease;
    
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
}

/* Reset & Global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: auto !important;
    overflow-x: hidden !important;
    max-width: 100%;
    width: 100%;
}

html.lenis, html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-smooth iframe {
    pointer-events: none;
}

body {
    font-family: var(--font-body);
    background: linear-gradient(135deg, #f0f0f0 0%, #cccccc 100%);
    background-attachment: fixed;
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden !important;
    max-width: 100%;
    width: 100%;
    position: relative;
}

main {
    overflow-x: hidden !important;
    width: 100%;
    max-width: 100%;
    position: relative;
}

body.lock-scroll {
    overflow: hidden !important;
    height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Container & Global Utilities */
.container {
    width: 90%;
    max-width: 1440px;
    margin: 0 auto;
}

.bg-dark { background-color: var(--bg-dark); }
.bg-black { background-color: var(--bg-black); }
.text-accent { color: var(--accent); }
.btn-block { width: 100%; text-align: center; }

section {
    padding: 8rem 0;
    position: relative;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Section Header standard */
.section-header {
    margin-bottom: 3.5rem;
}

.section-subtitle {
    font-family: var(--font-heading);
    color: #a1a5b0;
    font-size: 0.95rem;
    letter-spacing: 0.22em;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-weight: 700;
}

.text-gradient,
.section-title {
    font-family: "Geist", sans-serif;
    font-weight: 700;
    font-size: clamp(2.4rem, 4.5vw, 4rem);
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -0.06em;
    background: linear-gradient(90deg, #555555 0%, #000000 30%, #000000 70%, #333333 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* Ambient Glow Spotlight */
.ambient-glow {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.035) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
    z-index: 0;
    transition: transform 0.2s ease-out;
}



/* ====================================================
   Header & Navigation
   ==================================================== */
header.site-header {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.8rem 0;
    transition: var(--transition);
}

.nav-container {
    width: 90%;
    max-width: 1650px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
}

.header-logo {
    height: 72px;
    width: auto;
    max-width: 260px;
    object-fit: contain;
    transition: height 0.3s ease, filter 0.3s ease;
}

.main-nav .nav-vertical-links {
    display: flex;
    align-items: center;
    gap: 3.2rem;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--text-light);
    position: relative;
    opacity: 0.85;
}

header.scrolled .nav-link {
    color: var(--text-light);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background: var(--accent);
    bottom: -8px;
    left: 0;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    opacity: 1;
}

.nav-link:hover::after, .nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-action {
    display: flex;
    align-items: center;
}

.btn-primary {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: #ffffff !important;
    background: linear-gradient(135deg, #111111 0%, #333333 100%);
    border: 1.5px solid rgba(0, 0, 0, 0.35);
    padding: 1.1rem 2.2rem;
    border-radius: var(--radius-full);
    transition: var(--transition);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    text-transform: uppercase;
}

.btn-primary:hover {
    background: #000000;
    color: #ffffff !important;
    border-color: #000000;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.btn-quote {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: #111111 !important;
    border: 1.5px solid rgba(0, 0, 0, 0.35);
    padding: 0.75rem 1.8rem;
    border-radius: var(--radius-full);
    transition: var(--transition);
    background: rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(8px);
}

.btn-quote:hover {
    background: #000000;
    color: #ffffff !important;
    border-color: #000000;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

header.scrolled .btn-quote {
    color: #111111 !important;
    border-color: rgba(0, 0, 0, 0.4);
}

header.scrolled .btn-quote:hover {
    background: #000000;
    color: #ffffff !important;
    border-color: #000000;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    width: 36px;
    height: 26px;
    position: relative;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0;
    z-index: 1005;
}

.mobile-menu-toggle span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #000000;
    transition: 0.3s ease;
}

header.scrolled .mobile-menu-toggle span {
    background: #000000;
}

.mobile-menu-toggle span:nth-child(1) { top: 0; }
.mobile-menu-toggle span:nth-child(2) { top: 10px; }
.mobile-menu-toggle span:nth-child(3) { top: 20px; }

.mobile-menu-toggle.active span:nth-child(1) { transform: rotate(45deg); top: 10px; background: #000000; }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active span:nth-child(3) { transform: rotate(-45deg); top: 10px; background: #000000; }

/* Mobile Drawer Menu */
.mobile-drawer {
    position: fixed;
    inset: 0;
    z-index: 99999;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    pointer-events: none;
}

.mobile-drawer.open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.drawer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    cursor: pointer;
}

.drawer-content {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 85%;
    max-width: 340px;
    background: #ffffff;
    border-left: 1px solid var(--border-subtle);
    padding: 2.2rem 1.8rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
    box-shadow: -15px 0 45px rgba(0, 0, 0, 0.18);
    overflow-y: auto;
}

.mobile-drawer.open .drawer-content {
    transform: translateX(0);
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-subtle);
}

.drawer-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.drawer-close {
    font-size: 2.2rem;
    color: #111111;
    background: transparent;
    border: none;
    cursor: pointer;
    line-height: 1;
    padding: 0.2rem;
}

.drawer-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    margin: 2rem 0;
}

.drawer-link {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: #111111;
    text-decoration: none;
    transition: color 0.2s ease;
    display: block;
}

.drawer-link:hover {
    color: #555555;
}

.drawer-footer {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-subtle);
}

.drawer-socials {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    font-family: var(--font-heading);
    color: var(--text-muted);
}

.drawer-socials a:hover {
    color: var(--accent);
}


/* ====================================================
   Zoomoe Studio Style Hero Section (Clean Light Theme)
   ==================================================== */
/* ====================================================
   Fullscreen Cinematic Dark Showreel Hero Section
   ==================================================== */
.hero-section.hero-dark-cinematic {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--bg-black);
    color: var(--text-light);
    padding: 10rem 0 7rem 0;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 50% 30%, rgba(0, 0, 0, 0.06) 0%, rgba(240, 240, 246, 0.8) 50%, rgba(255, 255, 255, 1) 100%),
        radial-gradient(circle at 15% 20%, rgba(0, 0, 0, 0.02) 0%, transparent 45%),
        radial-gradient(circle at 85% 75%, rgba(0, 0, 0, 0.02) 0%, transparent 45%);
    pointer-events: none;
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 1150px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 980px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 0.22em;
    font-weight: 700;
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-subtle);
    padding: 0.55rem 1.4rem;
    border-radius: 30px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 12px var(--accent);
    animation: pulseGlow 1.8s infinite ease-in-out;
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.6; }
}

.hero-main-title {
    font-family: "Geist", sans-serif;
    font-size: clamp(2.8rem, 6.5vw, 5.8rem);
    font-weight: 700;
    line-height: 0.92;
    letter-spacing: -0.06em;
    color: #111111;
    margin-bottom: 1.8rem;
    text-transform: uppercase;
    transform: translateZ(0); /* Hardware acceleration */
}

.hero-main-title .font-accent {
    font-family: var(--font-accent);
    font-style: italic;
    font-weight: 400;
    color: #000000;
    text-transform: none;
    padding: 0 0.1em;
}

.hero-lead-text {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.4vw, 1.25rem);
    color: var(--text-muted);
    max-width: 720px;
    margin: 0 auto 3rem auto;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.8rem;
    flex-wrap: wrap;
}

/* Play Showreel Button */
.btn-showreel {
    display: inline-flex;
    align-items: center;
    gap: 1.2rem;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.01) 100%);
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: 0.8rem 1.8rem 0.8rem 1rem;
    border-radius: var(--radius-full);
    color: #111111;
    transition: var(--transition);
    backdrop-filter: blur(12px);
    cursor: pointer;
}

.btn-showreel:hover {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.play-icon-pulse {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.btn-showreel:hover .play-icon-pulse {
    transform: scale(1.1);
}

.play-icon-pulse svg {
    width: 22px;
    height: 22px;
    margin-left: 3px;
}

.showreel-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.showreel-text strong {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    letter-spacing: 0.12em;
}

.showreel-text small {
    font-size: 0.72rem;
    opacity: 0.65;
    letter-spacing: 0.08em;
}

.btn-secondary-glow {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    letter-spacing: 0.15em;
    font-weight: 700;
    color: #ffffff !important;
    background: #111111;
    border: 1.5px solid #111111;
    padding: 1.1rem 2.5rem;
    border-radius: var(--radius-full);
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-secondary-glow:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

/* Hero Quick Stats Bar */
.hero-quick-stats {
    margin-top: 4.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(240, 240, 245, 0.5) 100%);
    border: 1px solid rgba(0, 0, 0, 0.15);
    padding: 1.2rem 3.5rem;
    border-radius: var(--radius-full);
    backdrop-filter: blur(16px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.quick-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.qs-num {
    font-family: "Geist", sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(90deg, #555555 0%, #000000 35%, #000000 70%, #333333 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.qs-label {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    color: var(--text-muted);
    margin-top: 0.4rem;
}

.quick-stat-divider {
    width: 1px;
    height: 35px;
    background: var(--border-subtle);
}

/* Infinite Marquee Ribbon */
.hero-marquee {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    padding: 0.8rem 0;
    overflow: hidden;
    white-space: nowrap;
    z-index: 6;
}

.marquee-track {
    display: inline-block;
    animation: marquee 35s linear infinite;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 0.22em;
    color: var(--text-muted);
    font-weight: 700;
}

.marquee-track span.star {
    color: var(--accent);
    margin: 0 1.2rem;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Scroll Cue Link */
.hero-scroll-link {
    position: absolute;
    bottom: 3.5rem;
    right: 3.5rem;
    z-index: 7;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    transition: color 0.3s ease;
}

.hero-scroll-link:hover {
    color: var(--accent);
}

.cue-line {
    width: 1px;
    height: 38px;
    background: linear-gradient(to bottom, var(--text-muted), transparent);
    animation: scrollPulse 2s infinite ease-in-out;
}

@keyframes scrollPulse {
    0% { transform: scaleY(0.2); transform-origin: top; opacity: 0.3; }
    50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
    100% { transform: scaleY(0.2); transform-origin: bottom; opacity: 0.3; }
}

/* ====================================================
   About Section
   ==================================================== */
.about-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(180px, auto);
    gap: 1.5rem;
}

.bento-box {
    background: var(--surface-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bento-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.bento-hero {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
}

.bento-pillar {
    grid-column: span 1;
}

.about-text-lead {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 1.2rem;
}

.about-text-body {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 0;
}

.bento-pillar .value-num {
    font-family: 'Syne', 'Geist', sans-serif;
    font-size: 5.5rem;
    font-weight: 800;
    color: #111111;
    line-height: 0.85;
    letter-spacing: -0.07em;
    margin-bottom: 1.2rem;
    display: block;
}

.bento-pillar h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.bento-pillar p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 0;
}

.about-stats-wrapper {
    background: var(--surface-card);
    border: 1px solid var(--border-subtle);
    padding: 3rem 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.stats-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.stat-box {
    text-align: center;
    padding: 1rem;
    border-bottom: 1px solid var(--border-subtle);
}

.stat-box:nth-child(3), .stat-box:nth-child(4) {
    border-bottom: none;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: #111111;
    line-height: 1;
}

.stat-plus {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
}

.stat-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-top: 0.5rem;
    text-transform: uppercase;
}

/* ====================================================
   Sohub.digital Style Stacked Cards Process Section
   ==================================================== */
.process-section {
    position: relative;
    padding: 8rem 0 10rem 0;
    overflow-x: hidden;
}

.process-slider-container {
    width: 100%;
    overflow: hidden; /* Hide outer overflow */
}

.stack-cards-wrapper {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    gap: 1.5rem;
    padding: 2rem 1rem 4rem 1rem;
    margin: 0;
    width: max-content;
}

.stack-card {
    position: relative;
    width: 320px;
    flex: 0 0 auto;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}

.stack-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.stack-card:nth-child(1) {
    background: #ffffff;
}

.stack-card:nth-child(2) {
    background: #fafafa;
}

.stack-card:nth-child(3) {
    background: #f5f5f5;
}

.stack-card:nth-child(4) {
    background: #f0f0f0;
}

.stack-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.8rem;
}

.stack-card-num {
    font-family: "Geist", sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: #111111;
    letter-spacing: 0.05em;
    background: rgba(0, 0, 0, 0.1);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stack-card-tag {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--accent);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-subtle);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
}

.stack-card-title {
    font-family: "Geist", sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.05em;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #555555 0%, #000000 30%, #000000 70%, #333333 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stack-card-desc {
    color: var(--text-muted);
    font-size: 1.08rem;
    line-height: 1.7;
    margin-bottom: 2.2rem;
    max-width: 800px;
}

.stack-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.stack-card-tags span {
    background: rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border-subtle);
    padding: 0.45rem 1.1rem;
    font-size: 0.8rem;
    border-radius: var(--radius-sm);
    color: rgba(0, 0, 0, 0.85);
}

/* ====================================================
   Orionix-Style Massive Arc Typography Showcase
   ==================================================== */
.orbital-showcase-section {
    position: relative;
    padding: 4rem 0;
    background-color: #fafafa;
}

.sticky-scroll-wrapper {
    display: grid;
    grid-template-columns: 4fr 6fr; /* Adjusted ratio to bring cards closer and give them more room */
    gap: 6vw; /* Slightly larger gap to balance the ratio */
    align-items: start;
    width: 100%;
    position: relative;
    padding: 8rem 0;
}

.sticky-left-panel {
    position: sticky;
    top: 25vh; /* Freezes a bit lower so it aligns elegantly with scrolling cards */
    height: auto;
    padding-top: 1rem; /* Visual alignment tweak */
}

.sticky-desc {
    margin-top: 1.5rem;
    margin-bottom: 2rem; /* Add margin-bottom so it pushes the button down naturally */
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 450px;
    line-height: 1.6;
}

.sticky-content-inner .btn-secondary-glow {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 1.5rem;
    margin-top: 1rem;
}

.scrolling-right-panel {
    display: flex;
    flex-direction: column;
    gap: 10vh; /* Spaces out cards so they scroll past one by one */
    padding-bottom: 20vh;
}

.scroll-service-card {
    background: var(--surface-card);
    border: 1px solid var(--border-subtle);
    padding: 3.5rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    transition: var(--transition);
}

.scroll-service-card:hover {
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

.scroll-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(0,0,0,0.1);
    margin-bottom: 1rem;
    line-height: 1;
}

.scroll-service-card h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: var(--text-light);
}

.scroll-service-card p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Scroll-driven blur animation for cards */
@supports (animation-timeline: view()) {
    .scroll-service-card {
        animation: blurReveal linear both;
        animation-timeline: view();
        /* The animation progresses as the element crosses the viewport */
    }
}

@keyframes blurReveal {
    0% {
        opacity: 0;
        filter: blur(20px);
        transform: translateY(15vh);
    }
    30% {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
    }
    70% {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        filter: blur(20px);
        transform: translateY(-15vh);
    }
}

/* Mobile responsive */
@media (max-width: 992px) {
    .desktop-only {
        display: none !important;
    }
}
@media (min-width: 993px) {
    .mobile-only {
        display: none !important;
    }
}

/* Badges */
.orbital-badges {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-end;
    z-index: 10;
}

.badge-orionix {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #000;
    color: #fff;
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.85rem;
    line-height: 1.2;
}

.badge-orionix .badge-icon {
    height: 18px;
    width: auto;
    filter: invert(1);
}

.badge-framer {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #000;
    padding: 0.5rem 1.2rem;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

/* ====================================================
   Works / Portfolio Section
   ==================================================== */
.works-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3.5rem;
}

.works-header-flex .section-header {
    margin-bottom: 0;
}

.portfolio-filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.filter-btn {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    font-weight: 700;
    color: var(--text-muted);
    padding: 0.6rem 1.4rem;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
    color: #ffffff;
    background: var(--accent);
    border-color: var(--accent);
}

.masonry-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 400px;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .masonry-layout {
        grid-template-columns: 1fr;
        grid-auto-rows: 350px;
    }
    .work-item.large {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }
}

.work-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    cursor: pointer;
    background: #111111; /* Dark background */
    border: 1px solid var(--border-subtle);
    transition: all 0.4s ease;
}

.work-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.work-item.hidden {
    display: none !important;
}

.work-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.2);
}

.work-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
    opacity: 0.6; /* Slight dimming so text is readable if no overlay */
    z-index: 0;
}

.work-item:hover .work-image {
    transform: scale(1.06);
    opacity: 0.8;
}

.work-overlay {
    position: relative;
    height: 100%;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    pointer-events: auto;
    z-index: 2;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0) 100%);
}

.work-link-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.work-meta {
    position: relative;
    z-index: 2;
}

.work-category {
    font-family: var(--font-heading);
    color: var(--accent);
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    margin-bottom: 0.6rem;
    text-transform: uppercase;
}

.work-meta h3 {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    line-height: 1.1;
    margin-bottom: 0.8rem;
    color: #ffffff;
}

.work-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1.5rem;
    line-height: 1.5;
    max-width: 90%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.work-view-btn {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    color: #ffffff;
    padding-bottom: 0.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition-fast);
    text-transform: uppercase;
    text-decoration: none;
    width: max-content;
}

.work-view-btn:hover {
    color: var(--accent);
    border-color: var(--accent);
}

.work-view-btn.disabled {
    color: rgba(255, 255, 255, 0.4);
    border-color: transparent;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .work-overlay {
        padding: 2rem;
    }
    .work-meta {
        transform: translateY(0);
    }
    .work-meta h3 {
        font-size: 1.8rem;
    }
    .work-desc {
        font-size: 0.9rem;
    }
}

/* ====================================================
   Testimonials & Clients
   ==================================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 5rem;
}

.testimonial-card {
    background: var(--bg-black);
    border: 1px solid var(--border-subtle);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
}

.testimonial-quote {
    font-style: italic;
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.testimonial-author h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 0.05em;
}

.testimonial-author p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.brand-logos-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-subtle);
}

.brand-logo-item {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: rgba(0, 0, 0, 0.25);
    transition: var(--transition-fast);
}

.brand-logo-item:hover {
    color: #111111;
}

/* ====================================================
   Contacts & Forms
   ==================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.contact-lead-p {
    color: var(--text-muted);
    font-size: 1.15rem;
    margin-bottom: 3rem;
}

.info-block {
    margin-bottom: 2rem;
}

.info-block h4 {
    font-family: var(--font-heading);
    color: var(--accent);
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    margin-bottom: 0.4rem;
}

.info-block p, .info-block a {
    font-size: 1.2rem;
}

.info-block a:hover {
    color: var(--accent);
}

.contact-form-card {
    background: var(--surface-card);
    border: 1px solid var(--border-subtle);
    padding: 3rem 2.5rem;
    border-radius: var(--radius-lg);
}

.form-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
}

.site-form .form-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.site-form label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    color: var(--text-muted);
}

.site-form input,
.site-form select,
.site-form textarea {
    background: var(--bg-black);
    border: 1px solid var(--border-subtle);
    color: #111111;
    padding: 0.9rem 1.2rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.site-form input:focus,
.site-form select:focus,
.site-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 10px rgba(229, 9, 20, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* ====================================================
   Footer
   ==================================================== */
footer {
    padding: 4rem 0 3rem 0;
    border-top: 1px solid var(--border-subtle);
    background: var(--bg-black);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo {
    height: 45px;
    filter: invert(1);
    mix-blend-mode: multiply;
}

.footer-tagline {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.4rem;
}

.footer-copy {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1.8rem;
}

.social-links a {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    color: var(--text-muted);
}

.social-links a:hover {
    color: var(--accent);
}

/* ====================================================
   Modals & Lightboxes
   ==================================================== */
/* Video Modal */
.video-modal-backdrop,
.modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.video-modal-backdrop.open,
.modal-backdrop.open {
    visibility: visible;
    opacity: 1;
}

.video-modal-container {
    width: 100%;
    max-width: 1100px;
    background: var(--bg-dark);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    position: relative;
    padding: 2.5rem;
}

.video-modal-close,
.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.8rem;
    font-size: 2.5rem;
    color: #111111;
    line-height: 1;
    cursor: pointer;
    transition: color 0.2s ease;
}

.video-modal-close:hover,
.modal-close:hover {
    color: var(--accent);
}

.video-modal-header {
    margin-bottom: 1.5rem;
}

.modal-video-cat {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--accent);
    letter-spacing: 0.15em;
}

.modal-video-title {
    font-family: "Geist", sans-serif;
    font-weight: 700;
    font-size: 2rem;
    line-height: 0.92;
    letter-spacing: -0.06em;
}

.video-iframe-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: #000;
}

.video-iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Quote Modal Card */
.quote-modal-card {
    width: 100%;
    max-width: 650px;
    background: var(--surface-card);
    border: 1px solid var(--border-subtle);
    padding: 3rem 2.5rem;
    border-radius: var(--radius-lg);
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    margin-bottom: 2rem;
}

.modal-title {
    font-family: "Geist", sans-serif;
    font-weight: 700;
    font-size: 2.2rem;
    line-height: 0.92;
    letter-spacing: -0.06em;
    margin-bottom: 0.5rem;
}

/* Toast Notification */
.toast-notification {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 3000;
    background: #111111;
    color: #ffffff;
    border-left: 4px solid var(--accent);
    padding: 1rem 1.8rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transform: translateY(100px);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.toast-notification.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-icon {
    color: var(--accent);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Global Default: Hide Mobile Bento Grid on Desktop */
.mobile-services-bento {
    display: none !important;
}

/* ====================================================
   Comprehensive Responsive Styles & Mobile Optimization
   ==================================================== */
@media (max-width: 1200px) {
    .container {
        width: 92%;
    }
    
    .hero-editorial-title, .hero-editorial-statement {
        font-size: clamp(2.2rem, 5vw, 4rem);
    }
}

@media (max-width: 992px) {
    section {
        padding: 5.5rem 0;
    }
    
    .about-bento-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 1.5rem; 
    }
    .bento-hero {
        grid-column: 1 / 3;
    }
    
    .contact-grid { 
        grid-template-columns: 1fr; 
        gap: 3.5rem; 
    }
    
    .masonry-layout { 
        grid-template-columns: 1fr; 
        grid-auto-rows: 360px; 
    }
    
    .work-item.large { 
        grid-column: 1; 
        grid-row: 1; 
    }
    
    .hero-controls {
        right: 1.5rem;
        gap: 1.2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }

    /* Hide desktop orbital dial showcase on mobile/tablet */
    .orbital-showcase-wrapper {
        display: none !important;
    }

    .orbital-showcase-section {
        padding: 4.5rem 0 3rem 0;
        min-height: auto;
    }

    /* Show Mobile Bento Grid Layout on Mobile/Tablet (<992px) */
    .mobile-services-bento {
        display: grid !important;
        grid-template-columns: 1fr;
        gap: 1.4rem;
        margin-top: 2rem;
        width: 100%;
        box-sizing: border-box;
    }

    .bento-card {
        background: var(--surface-card);
        border: 1px solid var(--border-subtle);
        border-radius: var(--radius-md);
        padding: 1.8rem 1.4rem;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        transition: var(--transition);
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }

    .bento-card-featured {
        border-color: var(--accent);
        background: var(--surface-card);
    }

    .bento-card-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1.2rem;
    }

    .bento-num {
        font-family: "Geist", sans-serif;
        font-size: 1.15rem;
        font-weight: 700;
        color: #111111;
        letter-spacing: 0.05em;
    }

    .bento-badge {
        font-family: var(--font-heading);
        font-size: 0.65rem;
        letter-spacing: 0.16em;
        background: rgba(0, 0, 0, 0.12);
        border: 1px solid rgba(0, 0, 0, 0.2);
        color: #111111;
        padding: 0.25rem 0.75rem;
        border-radius: var(--radius-full);
    }

    .bento-title {
        font-family: "Geist", sans-serif;
        font-size: clamp(1.35rem, 5vw, 1.8rem);
        font-weight: 700;
        line-height: 1.12;
        letter-spacing: -0.04em;
        margin-bottom: 0.8rem;
        color: #111111;
        word-break: break-word;
    }

    .bento-desc {
        color: var(--text-muted);
        font-size: 0.9rem;
        line-height: 1.55;
        margin-bottom: 1.2rem;
    }

    .bento-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 0.4rem;
        margin-bottom: 1.4rem;
    }

    .bento-tags span {
        background: rgba(0, 0, 0, 0.06);
        border: 1px solid var(--border-subtle);
        padding: 0.35rem 0.75rem;
        font-size: 0.72rem;
        border-radius: var(--radius-sm);
        color: rgba(0,0,0,0.8);
    }

    .bento-card .btn-quote {
        width: 100%;
        padding: 0.85rem 1rem;
        font-size: 0.78rem;
        letter-spacing: 0.06em;
        text-align: center;
        white-space: normal;
        word-break: break-word;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .bento-link-btn {
        background: transparent;
        border: 1px solid var(--border-subtle);
        border-radius: var(--radius-full);
        color: #111111;
        padding: 0.65rem 1.2rem;
        font-family: var(--font-heading);
        font-size: 0.75rem;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        cursor: pointer;
        text-align: center;
        transition: var(--transition-fast);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        width: 100%;
    }

    .bento-link-btn:hover {
        background: var(--accent);
        border-color: var(--accent);
        box-shadow: 0 0 15px var(--accent-glow);
    }

    /* Header & Mobile Menu for Tablet/Mobile (<992px) */
    .main-nav, .header-action { 
        display: none !important; 
    }
    
    .mobile-menu-toggle { 
        display: block !important; 
    }
}

@media (max-width: 768px) {
    section {
        padding: 4.5rem 0;
    }
    
    .about-bento-grid {
        grid-template-columns: 1fr;
    }
    .bento-hero {
        grid-column: 1 / -1;
    }
    
    /* Header & Mobile Menu */
    header.site-header {
        position: absolute;
        top: 0;
        left: 0;
        gap: 0; 
    }
    
    .contact-form-card {
        padding: 2rem 1.5rem;
    }
    
    /* Input font-size: 16px to prevent auto zoom on iOS */
    .site-form input,
    .site-form select,
    .site-form textarea {
        font-size: 16px;
    }
    
    /* Footer Mobile */
    .footer-content { 
        flex-direction: column; 
        text-align: center;
        gap: 1.5rem;
    }
    
    .social-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.2rem;
    }

    .brand-logos-row {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .brand-logo-item {
        font-size: 1.2rem;
    }

    /* Modals Mobile */
    .video-modal-backdrop, .modal-backdrop {
        padding: 1rem;
    }
    
    .video-modal-container {
        padding: 1.8rem 1.2rem 1.2rem 1.2rem;
    }

    .video-modal-close, .modal-close {
        top: 0.8rem;
        right: 0.8rem;
        font-size: 2rem;
    }
    
    .modal-video-title {
        font-size: 1.4rem;
    }
    
    .quote-modal-card {
        padding: 2rem 1.25rem;
        max-height: 92vh;
    }
    
    .modal-title {
        font-size: 1.75rem;
    }
    
    .toast-notification {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        justify-content: center;
        text-align: center;
        padding: 0.85rem 1.2rem;
    }
}

@media (max-width: 480px) {
    .stats-card { 
        grid-template-columns: 1fr 1fr; 
        gap: 1.5rem; 
    }
    
    .stat-box {
        padding-bottom: 1.2rem;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }

    .masonry-layout {
        grid-auto-rows: 300px;
    }
    
    .work-overlay {
        padding: 1.5rem;
    }
    
    .work-meta h3 {
        font-size: 1.6rem;
    }
    
    .small-play-btn {
        width: 52px;
        height: 52px;
    }
    
    .small-play-btn svg {
        width: 20px;
        height: 20px;
    }
}


/* ====================================================
   Works Grid (Asymmetrical Editorial Layout)
   ==================================================== */
.works-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 300px;
    gap: 1.5rem;
    margin-top: 4rem;
}

.work-item {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    grid-column: span 1;
    grid-row: span 1;
}

.work-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.work-item.wide {
    grid-column: span 2;
    grid-row: span 1;
}

.work-item.tall {
    grid-column: span 1;
    grid-row: span 2;
}

@media (max-width: 1024px) {
    .works-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 250px;
    }
    .work-item.large { grid-column: span 2; grid-row: span 2; }
    .work-item.wide { grid-column: span 2; grid-row: span 1; }
    .work-item.tall { grid-column: span 1; grid-row: span 2; }
}

@media (max-width: 768px) {
    .works-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
        gap: 1rem;
    }
    .work-item.large { grid-column: span 2; grid-row: span 2; }
    .work-item.wide { grid-column: span 2; grid-row: span 1; }
    .work-item.tall { grid-column: span 1; grid-row: span 2; }
}

@media (max-width: 480px) {
    .works-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }
    .work-item, .work-item.large, .work-item.wide, .work-item.tall {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* Portfolio Video Hover Effect */
.work-hover-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1;
    pointer-events: none;
}
.work-item:hover .work-hover-video {
    transform: scale(1.06);
}

/* ====================================================
   About Section ("WHO WE ARE")
   ==================================================== */
.about-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background-color: transparent;
}

.about-grid {
    display: block;
    max-width: 900px;
    margin: 0 auto;
}

.about-content {
    display: flex;
    flex-direction: column;
}

.about-text-lead {
    font-family: var(--font-body);
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.5;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.about-text-body {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.value-item {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.value-num {
    font-family: var(--font-accent);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-muted);
    opacity: 0.6;
    border-bottom: 1px solid var(--border-subtle);
    padding-bottom: 0.5rem;
    display: inline-block;
    width: max-content;
}

.value-item h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-light);
}

.value-item p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ====================================================
   Contacts & Direct Details
   ==================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4.5rem;
    align-items: center;
}

.contact-lead-p {
    color: var(--text-muted);
    font-size: 1.15rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-details-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.direct-contact-card {
    background: #ffffff;
    border: 1px solid var(--border-subtle);
    padding: 2rem 2.2rem;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.direct-contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.07);
    border-color: rgba(0, 0, 0, 0.2);
}

.contact-card-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #111111;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card-content {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.contact-card-label {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
}

.contact-card-value {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 700;
    color: #111111;
    text-decoration: none;
    transition: color 0.2s ease;
    word-break: break-word;
}

.contact-card-value:hover {
    color: #555555;
}

.contact-card-sub {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.contact-btn-group {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.contact-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.4rem;
    background: #111111;
    color: #ffffff;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: all 0.25s ease;
    width: fit-content;
}

.contact-action-btn:hover {
    background: #333333;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.contact-action-btn.whatsapp-btn {
    background: #25D366;
    color: #ffffff;
}

.contact-action-btn.whatsapp-btn:hover {
    background: #1eb954;
}

.btn-block {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

@media (max-width: 1024px) {
    .about-grid {
        max-width: 100%;
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 4.5rem 0;
    }
    
    .about-bento-grid {
        grid-template-columns: 1fr;
    }
    .bento-hero {
        grid-column: 1 / -1;
    }
    
    /* Header & Mobile Menu */
    header.site-header {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        padding: 1.2rem 0;
        z-index: 1000;
    }
    
    .header-logo {
        height: 48px;
        width: auto;
        max-width: 170px;
        object-fit: contain;
    }
    
    /* Hero Section Mobile */
    .hero-section.hero-dark-cinematic {
        min-height: auto;
        padding: 6.5rem 0 2rem 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        max-width: 100vw;
        overflow: hidden;
        position: relative;
    }

    .hero-container {
        width: 100%;
        max-width: 100%;
        padding: 0 1rem;
        box-sizing: border-box;
    }

    .hero-main-title { 
        font-size: clamp(2.3rem, 10vw, 3.6rem); 
        line-height: 1.04; 
        letter-spacing: -0.04em;
        margin-bottom: 1.2rem;
        word-break: break-word;
    }
    
    .hero-lead-text {
        font-size: 1rem;
        line-height: 1.6;
        color: var(--text-muted);
        max-width: 380px;
        margin: 0 auto 1.8rem auto;
        padding: 0;
    }

    .hero-actions {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .btn-secondary-glow {
        width: 100%;
        background: #111111;
        color: #ffffff !important;
        border: 1.5px solid #111111;
        padding: 1.1rem 2rem;
        font-size: 0.9rem;
        font-weight: 700;
        letter-spacing: 0.14em;
        border-radius: var(--radius-full);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .btn-secondary-glow:hover {
        background: #000000;
        color: #ffffff !important;
        transform: translateY(-2px);
    }

    .hero-quick-stats {
        margin-top: 2rem;
        gap: 1.8rem;
        padding: 0.9rem 2rem;
        border-radius: var(--radius-full);
        background: rgba(255, 255, 255, 0.9);
        border: 1px solid rgba(0, 0, 0, 0.12);
        box-shadow: 0 10px 30px rgba(0,0,0,0.06);
        backdrop-filter: blur(12px);
    }
    
    .qs-num {
        font-size: 1.7rem;
        font-weight: 700;
    }
    
    .qs-label {
        font-size: 0.7rem;
        letter-spacing: 0.15em;
    }

    .hero-marquee {
        position: relative;
        margin-top: 2.5rem;
        bottom: auto;
        left: auto;
        width: 100%;
        max-width: 100vw;
        overflow: hidden;
        padding: 0.75rem 0;
        background: rgba(255, 255, 255, 0.85);
    }

    .marquee-track {
        font-size: 0.78rem;
        letter-spacing: 0.18em;
    }
    
    .hero-scroll-link {
        display: none;
    }

    /* Portfolio Filter Bar Horizontal Touch Scroll */
    .works-header-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .portfolio-filter-tabs {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        width: 100%;
        padding-bottom: 0.5rem;
        scrollbar-width: none;
        gap: 0.5rem;
    }

    .portfolio-filter-tabs::-webkit-scrollbar {
        display: none;
    }

    .filter-btn {
        flex-shrink: 0;
        white-space: nowrap;
        padding: 0.5rem 1.1rem;
        font-size: 0.78rem;
    }

    /* Grid & Cards */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.8rem 1.4rem;
    }
    
    .values-grid { 
        grid-template-columns: 1fr; 
        gap: 1.5rem;
    }

    .process-slider-container {
        overflow: visible;
    }

    .stack-cards-wrapper {
        flex-direction: column;
        width: 100%;
        gap: 1.5rem;
        padding: 1rem 0;
    }

    .stack-card {
        width: 100%;
    }
    
    .about-stats-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .form-row { 
        grid-template-columns: 1fr; 
        gap: 0; 
    }
    
    .contact-form-card {
        padding: 2rem 1.5rem;
    }
    
    /* Input font-size: 16px to prevent auto zoom on iOS */
    .site-form input,
    .site-form select,
    .site-form textarea {
        font-size: 16px;
    }
    
    /* Footer Mobile */
    .footer-content { 
        flex-direction: column; 
        text-align: center;
        gap: 1.5rem;
    }
    
    .social-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.2rem;
    }

    .brand-logos-row {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .brand-logo-item {
        font-size: 1.2rem;
    }

    /* Modals Mobile */
    .video-modal-backdrop, .modal-backdrop {
        padding: 1rem;
    }
    
    .video-modal-container {
        padding: 1.8rem 1.2rem 1.2rem 1.2rem;
    }

    .video-modal-close, .modal-close {
        top: 0.8rem;
        right: 0.8rem;
        font-size: 2rem;
    }
    
    .modal-video-title {
        font-size: 1.4rem;
    }
    
    .quote-modal-card {
        padding: 2rem 1.25rem;
        max-height: 92vh;
    }
    
    .modal-title {
        font-size: 1.75rem;
    }
    
    .toast-notification {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        justify-content: center;
        text-align: center;
        padding: 0.85rem 1.2rem;
    }
}

@media (max-width: 480px) {
    .direct-contact-card {
        padding: 1.5rem 1.25rem;
    }
    .contact-card-value {
        font-size: 1.15rem;
    }
    .contact-btn-group {
        width: 100%;
    }
    .contact-btn-group .contact-action-btn {
        flex: 1;
        justify-content: center;
        text-align: center;
    }
}
