/* --- variables.css --- */
/* ============================================
   VARIABLES.CSS — Ooi Solutions
   ============================================ */

:root {
    /* ── BRAND COLORS ── */
    --accent:           #1D7C6E;
    --accent-hover:     #145F55;
    --accent-gold:      #E8C87A;
    --accent-red:       #CC4E3C;
    --accent-green-dot: #4ADE80;

    /* ── LIGHT THEME (Hero & Header) ── */
    --bg:              #F0EBE4;
    --bg-cream:         #F0EBE4;
    --bg-white:         #FFFFFF;
    --white:            #FFFFFF;
    --fg-dark:          #0a0a0a;
    --dark:             #123a34;
    --muted-dark:       #666;
    --border-dark:      rgba(0, 0, 0, 0.1);
    --card-dark:        rgba(0, 0, 0, 0.03);

    /* ── DARK THEME ── */
    --bg-dark:      #0D1F1C;
    --bg-dark-2:    #123A34;
    --fg:           #fafafa;
    --muted:        #ffffff;
    --border:       rgba(255, 255, 255, 0.08);
    --card:         rgba(255, 255, 255, 0.04);

    /* ── TYPOGRAPHY ── */
    --font-primary: 'Inter Tight', sans-serif;
    --font-weight-body:   400;
    --font-weight-medium: 600;
    --font-weight-bold:   700;
    --font-weight-black:  900;

    /* ── HEADING SIZES (Consistent across all sections) ── */
    --heading-hero:     clamp(4.5rem, 16vw, 16rem);
    --heading-section:  clamp(2.6rem, 6vw, 5.5rem);
    --heading-sub:      clamp(2rem, 4.5vw, 3.8rem);
    --heading-card:     clamp(1.3rem, 2vw, 1.8rem);
    --heading-label:    clamp(0.7rem, 1vw, 0.8rem);

    /* ── BODY SIZES ── */
    --body-lg:    clamp(1.1rem, 2vw, 1.75rem);
    --body-md:    clamp(1rem, 1.5vw, 1.15rem);
    --body-sm:    clamp(0.85rem, 1.2vw, 1rem);

    /* ── SPACING ── */
    --space-xs:  8px;
    --space-sm:  16px;
    --space-md:  24px;
    --space-lg:  48px;
    --space-xl:  80px;
    --space-2xl: 120px;
    --section-py: 120px;

    /* ── RADII ── */
    --radius-sm:   6px;
    --radius-md:   14px;
    --radius-lg:   24px;
    --radius-xl:   40px;
    --radius-full: 9999px;

    /* ── TRANSITIONS ── */
    --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth:  cubic-bezier(0.23, 1, 0.32, 1);
    --ease-spring:  cubic-bezier(0.76, 0, 0.24, 1);
    --duration-fast: 0.3s;
    --duration-mid:  0.5s;
    --duration-slow: 0.7s;

    /* ── Z-INDEX ── */
    --z-content:      1;
    --z-header:       900;
    --z-mobile-menu:  1000;
    --z-hamburger:    1001;
    --z-modal:        9998;
    --z-cursor:       9999;
}

/* --- global.css --- */
/* ============================================
   GLOBAL.CSS — Ooi Solutions (v4)
   Reset, base typography, scrollbar, Lenis base
   Smooth loading, no white flash
   ============================================ */

/* ── RESET ── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ── SELECTION ── */
::selection {
    background: var(--accent);
    color: #fff;
}
::-moz-selection {
    background: var(--accent);
    color: #fff;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
    width: 5px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 3px;
}

/* ── LENIS SMOOTH SCROLL BASE ── */
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;
}

/* ── HTML & BODY ── */
/* NOTE: overflow-x: hidden on <html> breaks position:sticky!
   Use overflow:visible on html and overflow-x:clip on body instead. */
html {
    overflow: visible !important;
    height: auto !important;
}
body {
    overflow-x: clip !important;
    overflow-y: auto !important;
    height: auto !important;
    font-family: var(--font-primary);
    font-weight: var(--font-weight-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: var(--bg-dark);
    color: var(--fg);
    line-height: 1.5;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 {
    text-transform: uppercase !important;
}

/* ── LOADING SCREEN ── */
#ooi-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
#ooi-loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.ooi-loader-bar {
    width: 120px;
    height: 2px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    overflow: hidden;
}
.ooi-loader-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--accent-gold));
    border-radius: 2px;
    animation: ooiLoadProgress 1.5s ease-in-out forwards;
}
@keyframes ooiLoadProgress {
    0% { width: 0%; }
    60% { width: 70%; }
    100% { width: 100%; }
}

/* Hide page content while loading — but keep layout intact to prevent flash */
body.ooi-loading > *:not(#ooi-loader) {
    visibility: hidden;
    opacity: 0;
}

/* Smooth fade-in transition for content when loading completes */
body:not(.ooi-loading) > *:not(.squirrel-throw-container):not(.squirrel-nut-particle) {
    opacity: 1;
}

/* Ensure header is always visible once loading is done (no delay) */
body:not(.ooi-loading) .site-header {
    opacity: 1;
    visibility: visible;
}

/* ── LINKS & BUTTONS ── */
a {
    color: inherit;
    text-decoration: none;
}
button {
    font: inherit;
    border: none;
    background: none;
    color: inherit;
    cursor: pointer;
}

/* ── GLOBAL ACCESSIBILITY (Reduced Motion) ── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ── WHITE TEXT OVERRIDE (body text visibility on dark backgrounds) ── */
/* --muted is #a3a3a3 in variables.css — targeted overrides ensure white text on dark bg */
.flow-body,
.flow-feature-desc,
.flow-sub,
.flow-feature-title,
.flow-no-item p,
.cd-header__sub,
.cd-result-desc,
.faq-accordion-content-inner p,
.approach-tab-desc {
    color: #ffffff !important;
}

/* ── LIGHT SECTION EXCEPTIONS ── */
/* Keep dark text on cream/white/light backgrounds */
.search-section p,
.search-section .flow-body,
.search-top p,
.search-bottom-note,
.cta-card p,
.cta-desc,
.service-page-cta p,
.hero-banner-cream p {
    color: var(--muted-dark) !important;
}

/* Dark-themed CTA sections (service-page.css / location pages) — keep light text */
.cta-section .cta-inner p,
.cta-section .cta-subtitle {
    color: var(--muted) !important;
}

/* Flow sections with cream background */
.flow-section[style*="bg-cream"] p,
.flow-section[style*="background-color:var(--bg-cream)"] p,
.flow-section[style*="bg-cream"] .flow-body,
.flow-section[style*="background-color:var(--bg-cream)"] .flow-body,
.flow-section[style*="bg-cream"] .flow-feature-desc,
.flow-section[style*="background-color:var(--bg-cream)"] .flow-feature-desc,
.flow-section[style*="bg-cream"] .flow-sub,
.flow-section[style*="background-color:var(--bg-cream)"] .flow-sub,
.flow-section[style*="bg-cream"] .flow-feature-title,
.flow-section[style*="background-color:var(--bg-cream)"] .flow-feature-title {
    color: var(--fg-dark) !important;
}

/* Accent-colored section — keep white */
.flow-section[style*="var(--accent)"] .flow-body,
.flow-section[style*="var(--accent)"] .flow-sub,
.flow-section[style*="var(--accent)"] p {
    color: #ffffff !important;
}

/* Global Conversion CTA Normalization */
.cta-fix { display: inline-flex !important; align-items: center !important; justify-content: center !important; gap: 15px !important; background: var(--accent) !important; color: #fff !important; border: none !important; padding: 14px 32px !important; border-radius: 12px !important; font-size: 1rem !important; font-weight: 700 !important; font-family: 'Inter Tight', sans-serif !important; cursor: pointer !important; text-transform: none !important; box-shadow: 0 15px 30px rgba(29, 124, 110, 0.3) !important; transition: transform 0.3s, box-shadow 0.3s, background 0.3s !important; margin-top: 0 !important; text-decoration: none !important; }
.cta-fix:hover { background: var(--accent-hover) !important; transform: translateY(-3px) !important; box-shadow: 0 20px 40px rgba(29, 124, 110, 0.4) !important; }

.page-main { overflow-x: hidden; }


/* --- header.css --- */
/* ============================================
   HEADER.CSS — Ooi Solutions (REDESIGNED)
   Full viewport menu, 2-col service grid
   3D animated entrance, full responsive
   ============================================ */

/* ── HEADER BAR ── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-header);
    padding: 16px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: padding var(--duration-mid) ease, background 0.4s ease, backdrop-filter 0.4s ease;
}

/* CHANGED: Restore blur and background when scrolled */
.site-header.scrolled {
    padding-top: 10px;
    padding-bottom: 10px;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
}
.site-header.scrolled .header-logo {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}
.site-header.scrolled .header-logo img {
    height: 54px;
    transition: height 0.3s ease;
}

/* ── LOGO (always sticky & visible) ── */
.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    z-index: 1001;
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
    transition: opacity 0.4s ease, transform 0.4s ease, width 0.4s ease;
}
.header-logo img {
    height: 68px;
    width: auto;
    object-fit: contain;
    transition: height 0.3s ease;
}

/* ── HEADER ACTIONS ── */
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

/* ── CTA PILL ── */
.header-cta-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 20px;
    border-radius: var(--radius-full);
    background: var(--accent);
    color: #fff;
    font-family: var(--font-primary);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(29, 124, 110, 0.3);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease, background 0.3s ease;
}
.header-cta-pill.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.header-cta-pill:hover {
    background: var(--accent-hover);
    transform: translateY(-2px) scale(1.03);
}
.header-cta-pill svg { width: 14px; height: 14px; flex-shrink: 0; transition: transform 0.3s ease; }
.header-cta-pill:hover svg { transform: rotate(-10deg) scale(1.15); }

/* ── MENU TRIGGER ── */
.menu-trigger-btn {
    display: flex !important;
    align-items: center;
    gap: 6px;
    background: var(--accent);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px;
    padding: 12px 20px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(29,124,110,0.4), 0 0 40px rgba(29,124,110,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease, gap 0.3s ease, background 0.3s ease;
    overflow: visible;
    min-height: 48px;
    visibility: visible !important;
    opacity: 1 !important;
}
.menu-trigger-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(29,124,110,0.4);
    gap: 8px;
    background: var(--accent-hover);
}

/* ── HAND ICON (SVG pointer/hand) ── */
.menu-hand-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    transition: background 0.3s ease;
}
.menu-hand-icon svg {
    width: 20px;
    height: 20px;
    stroke: #fff;
    fill: none;
    transform-origin: 70% 70%;
    animation: handWaveAlways 2.5s ease-in-out infinite;
}
.menu-trigger-btn:hover .menu-hand-icon {
    background: rgba(255,255,255,0.25);
}
@keyframes handWaveAlways {
    0% { transform: rotate(0deg); }
    10% { transform: rotate(14deg); }
    20% { transform: rotate(-8deg); }
    30% { transform: rotate(14deg); }
    40% { transform: rotate(-4deg); }
    50% { transform: rotate(10deg); }
    60% { transform: rotate(0deg); }
    100% { transform: rotate(0deg); }
}

/* ── MENU TEXT ── */
.menu-trigger-btn .menu-text {
    font-family: var(--font-primary);
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
    opacity: 0;
    transform: translateX(-8px);
    white-space: nowrap;
    max-width: 0;
    overflow: hidden;
}
.menu-trigger-btn:hover .menu-text {
    color: var(--white);
    opacity: 1;
    transform: translateX(0);
    max-width: 60px;
}

/* ── HAMBURGER ICON ── */
.hamburger-icon {
    width: 26px;
    height: 18px;
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    flex-shrink: 0;
    position: relative;
    cursor: pointer;
    visibility: visible !important;
    opacity: 1 !important;
}
.ham-line {
    display: block !important;
    width: 100%;
    height: 3px;
    background: #fff !important;
    border-radius: 3px;
    transition: all 0.35s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    transform-origin: center;
    box-shadow: 0 0 4px rgba(255,255,255,0.3);
    visibility: visible !important;
    opacity: 1 !important;
}
.menu-trigger-btn:hover .ham-line {
    background: var(--white);
}
.ham-line:nth-child(1) { animation: hamPulse1 3s ease-in-out infinite; }
.ham-line:nth-child(2) { animation: hamPulse2 3s ease-in-out infinite 0.15s; }
.ham-line:nth-child(3) { animation: hamPulse3 3s ease-in-out infinite 0.3s; }

@keyframes hamPulse1 { 0%, 80%, 100% { width: 100%; } 85% { width: 70%; } 90% { width: 100%; } }
@keyframes hamPulse2 { 0%, 80%, 100% { width: 100%; } 83% { width: 85%; } 88% { width: 100%; } }
@keyframes hamPulse3 { 0%, 80%, 100% { width: 100%; } 86% { width: 60%; } 92% { width: 100%; } }

.menu-trigger-btn:hover .ham-line:nth-child(1) { transform: translateY(-2px); animation: hamHover1 0.5s ease-in-out; }
.menu-trigger-btn:hover .ham-line:nth-child(2) { animation: hamHover2 0.5s ease-in-out; }
.menu-trigger-btn:hover .ham-line:nth-child(3) { transform: translateY(2px); animation: hamHover3 0.5s ease-in-out; }

@keyframes hamHover1 { 0% { transform: translateY(0); } 30% { transform: translateY(-4px) scaleX(0.8); } 60% { transform: translateY(-1px) scaleX(1.05); } 100% { transform: translateY(-2px); } }
@keyframes hamHover2 { 0% { transform: scaleX(1); } 30% { transform: scaleX(0.6); } 60% { transform: scaleX(1.1); } 100% { transform: scaleX(1); } }
@keyframes hamHover3 { 0% { transform: translateY(0); } 30% { transform: translateY(4px) scaleX(0.8); } 60% { transform: translateY(1px) scaleX(1.05); } 100% { transform: translateY(2px); } }

.menu-trigger-btn.menu-open .ham-line:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--white); animation: none; }
.menu-trigger-btn.menu-open .ham-line:nth-child(2) { opacity: 0; transform: scaleX(0); animation: none; }
.menu-trigger-btn.menu-open .ham-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--white); animation: none; }
.menu-trigger-btn.menu-open .menu-text { opacity: 0; max-width: 0; }
.menu-trigger-btn.menu-open .menu-hand-icon { opacity: 0; animation: none; }

/* ============================================
   FULLSCREEN MENU — FULL VIEWPORT
   ============================================ */
.fullscreen-menu {
    position: fixed;
    inset: 0;
    z-index: var(--z-mobile-menu);
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    perspective: 1200px;
}
.fullscreen-menu.active { opacity: 1; visibility: visible; }

.menu-close-btn {
    position: absolute;
    top: 24px;
    right: 28px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(250,250,250,0.08);
    border: 1px solid rgba(250,250,250,0.1);
    border-radius: 50px;
    padding: 10px 20px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}
.menu-close-btn:hover { background: rgba(250,250,250,0.15); transform: scale(1.05); }

.close-icon { width: 16px; height: 16px; position: relative; }
.close-icon::before, .close-icon::after {
    content: ''; position: absolute; top: 50%; left: 50%;
    width: 100%; height: 2px; background: #fff; border-radius: 2px;
}
.close-icon::before { transform: translate(-50%,-50%) rotate(45deg); }
.close-icon::after { transform: translate(-50%,-50%) rotate(-45deg); }
.close-label {
    font-family: var(--font-primary);
    font-size: 0.72rem; font-weight: 800; color: #fff;
    text-transform: uppercase; letter-spacing: 0.12em;
}

.menu-inner { width: 100%; height: 100%; display: flex; overflow: hidden; }

/* ── LEFT PANEL ── */
.menu-left {
    flex: 1;
    padding: 80px 48px 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-y: auto;
    transform: translateX(-40px);
    opacity: 0;
    transition: transform 0.7s cubic-bezier(0.16,1,0.3,1) 0.1s, opacity 0.6s ease 0.1s;
}
.fullscreen-menu.active .menu-left { transform: translateX(0); opacity: 1; }

.menu-section-label { display: flex; align-items: center; gap: 10px; margin-bottom: 24px; }
.label-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--accent-green-dot);
    box-shadow: 0 0 8px rgba(74,222,128,0.4);
    animation: dot-pulse 2s ease-in-out infinite;
}
@keyframes dot-pulse { 0%, 100% { box-shadow: 0 0 8px rgba(74,222,128,0.4); } 50% { box-shadow: 0 0 16px rgba(74,222,128,0.7); } }
.menu-section-label span:last-child { font-family: var(--font-primary); font-size: 0.68rem; font-weight: 800; text-transform: uppercase; letter-spacing: 2.5px; color: rgba(250,250,250,0.35); }

/* ── SERVICE GRID (2 columns) ── */
.menu-services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 20px; }
.service-item {
    display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--fg); padding: 10px 14px; border-radius: 12px;
    transition: background 0.3s ease, padding-left 0.3s ease, color 0.3s ease, transform 0.3s ease; transform: translateX(-30px); opacity: 0;
}
.fullscreen-menu.active .service-item { transform: translateX(0); opacity: 1; }
.fullscreen-menu.active .service-item:nth-child(1) { transition-delay: 0.12s; }
.fullscreen-menu.active .service-item:nth-child(2) { transition-delay: 0.14s; }
.fullscreen-menu.active .service-item:nth-child(3) { transition-delay: 0.16s; }
.fullscreen-menu.active .service-item:nth-child(4) { transition-delay: 0.18s; }
.fullscreen-menu.active .service-item:nth-child(5) { transition-delay: 0.20s; }
.fullscreen-menu.active .service-item:nth-child(6) { transition-delay: 0.22s; }
.fullscreen-menu.active .service-item:nth-child(7) { transition-delay: 0.24s; }
.fullscreen-menu.active .service-item:nth-child(8) { transition-delay: 0.26s; }
.fullscreen-menu.active .service-item:nth-child(9) { transition-delay: 0.28s; }
.fullscreen-menu.active .service-item:nth-child(10) { transition-delay: 0.30s; }

.service-item:hover { background: rgba(29,124,110,0.1); padding-left: 22px; color: var(--accent-green-dot); transform: translateX(4px); }
.green-circle { width: 8px; height: 8px; border-radius: 50%; background: var(--accent-green-dot); flex-shrink: 0; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.service-item:hover .green-circle { transform: scale(1.5); box-shadow: 0 0 12px rgba(74,222,128,0.5); }
.service-name { font-family: var(--font-primary); font-size: clamp(0.85rem, 1.4vw, 1.15rem); font-weight: 800; text-transform: uppercase; letter-spacing: 0.01em; flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.service-arrow { font-size: 1rem; opacity: 0; transform: translateX(-8px); transition: opacity 0.3s ease, transform 0.3s ease; color: var(--accent); flex-shrink: 0; }
.service-item:hover .service-arrow { opacity: 1; transform: translateX(0); }

/* ── BOTTOM: Nav + Contact ── */
.menu-bottom { display: flex; flex-direction: column; gap: 14px; padding-top: 20px; border-top: 1px solid rgba(250,250,250,0.06); transform: translateY(20px); opacity: 0; transition: all 0.5s ease 0.4s; }
.fullscreen-menu.active .menu-bottom { transform: translateY(0); opacity: 1; }

.menu-nav-links { display: flex; flex-wrap: wrap; gap: 6px 18px; }
.menu-nav-links a { text-decoration: none; font-family: var(--font-primary); font-size: 0.82rem; font-weight: 700; color: rgba(250,250,250,0.4); text-transform: uppercase; letter-spacing: 0.06em; transition: color 0.2s ease; position: relative; }
.menu-nav-links a:hover, .menu-nav-links a.active { color: var(--accent); }
.menu-nav-links a.active::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 100%; height: 2px; background: var(--accent); border-radius: 1px; }

.menu-contact-info { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.menu-contact-link { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-primary); font-size: 0.72rem; font-weight: 600; color: rgba(250,250,250,0.35); text-decoration: none; transition: color 0.2s ease; }
.menu-contact-link:hover { color: var(--accent); }
.menu-contact-link svg { width: 14px; height: 14px; flex-shrink: 0; }
.menu-locations { display: flex; gap: 6px; }
.location-tag { display: inline-flex; align-items: center; padding: 3px 9px; border-radius: var(--radius-full); background: rgba(29,124,110,0.12); color: var(--accent); font-family: var(--font-primary); font-size: 0.6rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; }

/* ── RIGHT PANEL ── */
.menu-right {
    flex: 0 0 38%; background: var(--accent); position: relative; overflow: hidden; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 80px 32px 40px;
    transform: translateX(40px); opacity: 0; transition: transform 0.7s cubic-bezier(0.16,1,0.3,1) 0.15s, opacity 0.6s ease 0.15s;
}
.fullscreen-menu.active .menu-right { transform: translateX(0); opacity: 1; }

.hover-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 0.5s ease, transform 0.6s ease; transform: scale(1.08); }
.hover-img.visible { opacity: 1; transform: scale(1); }

.menu-right::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(29,124,110,0.75) 0%, rgba(13,31,28,0.5) 100%); z-index: 1; pointer-events: none; transition: background 0.4s ease; }
.menu-right.has-hover::after { background: linear-gradient(135deg, rgba(13,31,28,0.88) 0%, rgba(29,124,110,0.6) 100%); }

.right-content { position: relative; z-index: 2; text-align: center; transform: scale(0.8) rotateY(8deg); opacity: 0; transition: transform 0.8s cubic-bezier(0.16,1,0.3,1) 0.3s, opacity 0.6s ease 0.3s; }
.fullscreen-menu.active .right-content { transform: scale(1) rotateY(0deg); opacity: 1; }

.cta-text { font-family: var(--font-primary); font-size: clamp(2rem, 3.5vw, 3.2rem); font-weight: 900; text-transform: uppercase; color: var(--white); line-height: 1.05; margin-bottom: 28px; letter-spacing: -0.02em; }
.menu-right.has-hover .cta-text { opacity: 0; }

.menu-cta-buttons { display: flex; flex-direction: column; gap: 10px; align-items: center; margin-bottom: 28px; }
.menu-cta-primary, .menu-cta-secondary { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; border-radius: var(--radius-full); font-family: var(--font-primary); font-size: 0.78rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; text-decoration: none; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.menu-cta-primary { background: var(--white); color: var(--accent); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.menu-cta-primary:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 12px 32px rgba(0,0,0,0.3); }
.menu-cta-secondary { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.3); }
.menu-cta-secondary:hover { border-color: #fff; transform: translateY(-2px); }
.menu-cta-primary svg, .menu-cta-secondary svg { width: 16px; height: 16px; flex-shrink: 0; }
.menu-right.has-hover .menu-cta-buttons { opacity: 0; }

.menu-socials { display: flex; align-items: center; justify-content: center; gap: 10px; position: relative; z-index: 2; transition: opacity 0.3s ease; }
.menu-right.has-hover .menu-socials { opacity: 0; }
.social-link { width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.25); display: flex; align-items: center; justify-content: center; text-decoration: none; background: rgba(255,255,255,0.08); transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease; }
.social-link:hover { background: rgba(255,255,255,0.95); border-color: rgba(255,255,255,0.95); transform: translateY(-3px); }
.social-link svg { width: 16px; height: 16px; fill: var(--white); }
.social-link:hover svg { fill: var(--accent); }

.hover-label { position: absolute; bottom: 36px; left: 28px; right: 28px; z-index: 3; color: #fff; font-family: var(--font-primary); font-size: clamp(1rem, 1.6vw, 1.4rem); font-weight: 900; text-transform: uppercase; letter-spacing: 0.02em; opacity: 0; transform: translateY(15px); transition: opacity 0.3s ease, transform 0.3s ease; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.hover-label.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   RESPONSIVE — HEADER
   ============================================ */

/* ── Tablets ── */
@media (max-width: 991px) {
    .menu-right { flex: 0 0 36%; }
    .menu-services-grid { gap: 2px 14px; }
    .service-name { font-size: clamp(0.8rem, 1.3vw, 1rem); }
    .menu-left { padding: 72px 32px 24px; }
}

/* ── Mobile ── */
@media (max-width: 767px) {
    .site-header { padding: 12px 14px; }
    .header-logo img { height: 52px; }
    .header-cta-pill { display: none; }
    .menu-trigger-btn { padding: 10px 16px; gap: 6px; min-height: 46px; }
    .menu-hand-icon { width: 30px; height: 30px; }
    .menu-hand-icon svg { width: 18px; height: 18px; }
    .hamburger-icon { width: 22px; height: 16px; }
    .ham-line { height: 2.5px; box-shadow: 0 0 3px rgba(255,255,255,0.4); }

    .menu-inner { flex-direction: column-reverse; }
    .menu-right { flex: 0 0 auto; min-height: 180px; padding: 24px 20px; }
    .menu-left { flex: 1; padding: 24px 20px 20px; }
    .menu-close-btn { top: 12px; right: 12px; padding: 8px 16px; }

    .menu-services-grid { grid-template-columns: 1fr; gap: 2px; }
    .service-name { font-size: clamp(0.78rem, 4vw, 0.92rem); }
    .service-item { padding: 8px 10px; gap: 8px; }
    .green-circle { width: 7px; height: 7px; }

    .cta-text { font-size: 1.5rem; margin-bottom: 16px; }
    .menu-cta-buttons { flex-direction: row; gap: 8px; margin-bottom: 16px; }
    .menu-cta-primary, .menu-cta-secondary { padding: 9px 18px; font-size: 0.7rem; }
    .social-link { width: 34px; height: 34px; }
    .social-link svg { width: 14px; height: 14px; }
    .menu-socials { gap: 8px; }

    .menu-nav-links { gap: 4px 14px; }
    .menu-nav-links a { font-size: 0.75rem; }
    .menu-contact-info { gap: 8px; }
    .menu-contact-link { font-size: 0.65rem; }
    .location-tag { font-size: 0.55rem; padding: 2px 7px; }
}

/* ── Small Mobile ── */
@media (max-width: 479px) {
    .site-header { padding: 10px 10px; }
    .header-logo img { height: 48px; }
    .menu-trigger-btn { padding: 8px 14px; min-height: 42px; }
    .menu-trigger-btn .menu-text { font-size: 0.72rem; }
    .hamburger-icon { width: 20px; height: 14px; }
    .ham-line { height: 2.5px; }
    .menu-hand-icon { width: 26px; height: 26px; }
    .menu-hand-icon svg { width: 16px; height: 16px; }
    .menu-trigger-btn.menu-open .ham-line:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
    .menu-trigger-btn.menu-open .ham-line:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

    .menu-right { min-height: 150px; padding: 20px 16px; }
    .cta-text { font-size: 1.2rem; margin-bottom: 12px; }
    .menu-cta-primary, .menu-cta-secondary { padding: 8px 14px; font-size: 0.65rem; }
    .social-link { width: 30px; height: 30px; }
    .social-link svg { width: 12px; height: 12px; }

    .menu-left { padding: 20px 14px 16px; }
    .service-name { font-size: 0.76rem; }
    .service-item { padding: 7px 8px; gap: 6px; }

    .menu-nav-links a { font-size: 0.7rem; }
    .menu-contact-link { font-size: 0.6rem; }
    .menu-close-btn { top: 8px; right: 8px; padding: 7px 12px; }
    .close-label { font-size: 0.65rem; }
}

/* ── Very Small (320px) ── */
@media (max-width: 359px) {
    .menu-right { min-height: 130px; }
    .cta-text { font-size: 1rem; }
    .menu-cta-buttons { flex-direction: column; gap: 6px; }
    .service-name { font-size: 0.72rem; }
}

/* ── Large Desktop / 4K ── */
@media (min-width: 1400px) {
    .site-header { padding: 20px 48px; }
    .header-logo img { height: 78px; }
    .header-cta-pill { padding: 11px 26px; font-size: 0.78rem; }
    .menu-trigger-btn { padding: 12px 22px; }

    .menu-left { padding: 100px 64px 40px; }
    .menu-services-grid { gap: 6px 28px; }
    .service-name { font-size: clamp(1rem, 1.6vw, 1.3rem); }
    .menu-right { flex: 0 0 40%; padding: 100px 48px 48px; }
    .cta-text { font-size: clamp(2.4rem, 4vw, 3.8rem); }
    .menu-cta-primary, .menu-cta-secondary { padding: 14px 34px; font-size: 0.85rem; }
    .social-link { width: 46px; height: 46px; }
}

/* ── Accessibility ── */
@media (prefers-reduced-motion: reduce) {
    .label-dot { animation: none; }
    .ham-line { animation: none !important; }
    .service-item, .menu-bottom, .right-content, .menu-left, .menu-right { transform: none; opacity: 1; transition: none; }
    .header-cta-pill { transition: opacity 0.1s ease; }
}

/* --- hero.css --- */
/* ==========================================================================
   HERO.CSS — Ooi Solutions (v18.1 — Optimized Scroll Sequence Layout)
   Canvas-based drone frame scroll sequence with 3 chapters, smart text 
   positioning, directional vignettes, and expanded 2-line heading layouts.
   Uses EXACT Ooi Solutions brand design system from variables.css.
   ========================================================================== */

/* ── Scroll Container ── */
.scroll-spacer {
    position: relative;
    width: 100%;
    height: 400vh;
    z-index: 2;
}

/* ── Sticky Viewport ── */
.sticky-viewport {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
    background: var(--bg-dark);
}

/* ── Canvas ── */
#sequence-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    /* LCP Optimization: Render first frame instantly via CSS while JS loads */
    background-image: url('../images/drone-frames/ezgif-frame-001.jpg');
    background-size: cover;
    background-position: center;
}

@media (max-width: 768px) {
    #sequence-canvas {
        /* Match JS math: (window.innerWidth < 768) ? (canvasW - dw) * 0.75 */
        background-position: 75% center;
    }
}

/* ── Vignette System ── */
.vignette {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 3;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, transparent 90px, black 180px);
    mask-image: linear-gradient(to bottom, transparent 0%, transparent 90px, black 180px);
}

.vignette-left {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 55%;
    background: linear-gradient(
        to right,
        var(--bg-dark) 0%,
        color-mix(in srgb, var(--bg-dark) 90%, transparent) 20%,
        color-mix(in srgb, var(--bg-dark) 62%, transparent) 42%,
        color-mix(in srgb, var(--bg-dark) 25%, transparent) 70%,
        transparent 100%
    );
    opacity: 0;
    transition: opacity var(--duration-slow) var(--ease-out);
}

.vignette-right {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 55%;
    background: linear-gradient(
        to left,
        var(--bg-dark) 0%,
        color-mix(in srgb, var(--bg-dark) 90%, transparent) 20%,
        color-mix(in srgb, var(--bg-dark) 62%, transparent) 42%,
        color-mix(in srgb, var(--bg-dark) 25%, transparent) 70%,
        transparent 100%
    );
    opacity: 0;
    transition: opacity var(--duration-slow) var(--ease-out);
}

/* Top vignette — extended to prevent cropping of text at top */
.vignette-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 15%;
    background: linear-gradient(
        to bottom,
        color-mix(in srgb, var(--bg-dark) 30%, transparent) 0%,
        transparent 100%
    );
}

.vignette-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 28%;
    background: linear-gradient(
        to top,
        var(--bg-dark) 0%,
        color-mix(in srgb, var(--bg-dark) 65%, transparent) 40%,
        transparent 100%
    );
}

.vignette-left.active { opacity: 1; }
.vignette-right.active { opacity: 1; }

/* ── Content Layer ── */
.content-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
    pointer-events: none;
}

/* ── Chapter Content ──
   UPDATED: Max-width increased to 55vw to give headings breathing room
   and force a beautiful 2-line layout that fills horizontal space. */
.chapter {
    position: absolute;
    top: 82%;
    max-width: min(720px, 55vw);
    padding: 0 clamp(2.5rem, 5vw, 4.5rem);
    opacity: 0;
    will-change: opacity, transform;
    transform: translateY(calc(-36% + 20px));
    transition: transform var(--duration-slow) var(--ease-out), opacity var(--duration-slow) var(--ease-out);
}

.chapter.is-visible {
    transform: translateY(-36%);
}

/* Text alignment per chapter position */
.chapter-left {
    left: 0;
    text-align: left;
    align-items: center;
}

.chapter-right {
    right: 0;
    text-align: right;
}

.chapter-center-left {
    left: 0;
    text-align: left;
}

.chapter-center-right {
    right: 0;
    text-align: right;
}

/* ── Chapter Tag (small label above heading) ── */
.chapter-tag {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: var(--heading-label);
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
    padding: 3px 0;
    border-bottom: 1px solid var(--accent);
}

/* ── Chapter Heading ──
   UPDATED: Better clamp scaling and line-height for a punchy 2-line layout. */
.chapter-heading {
    font-family: var(--font-primary);
    font-size: clamp(3.2rem, 5.5vw, 5.8rem);
    font-weight: var(--font-weight-black);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--fg);
    margin-bottom: 16px;
    white-space: pre-line;
    width: 100%;
}

/* Accent word uses Ooi brand accent color */
.chapter-heading .accent-word {
    background: linear-gradient(135deg, var(--accent), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* ── Chapter Paragraph ── */
.chapter-paragraph {
    font-family: var(--font-primary);
    font-size: clamp(1.05rem, 1.35vw, 1.35rem);
    font-weight: var(--font-weight-body);
    line-height: 1.55;
    color: var(--muted);
    max-width: 460px;
}

.chapter-right .chapter-paragraph,
.chapter-center-right .chapter-paragraph {
    margin-left: auto;
}

/* ── Chapter Divider ── */
.chapter-divider {
    width: 32px;
    height: 2px;
    margin-top: 16px;
    background: var(--accent);
    border-radius: var(--radius-full);
    opacity: 0.6;
}

.chapter-right .chapter-divider,
.chapter-center-right .chapter-divider {
    margin-left: auto;
}

/* ── Progress Bar ── */
.progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--border);
    z-index: 10;
}

.progress-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent), var(--accent-gold));
    will-change: width;
}

/* ── Chapter Dots ── */
.chapter-dots {
    position: absolute;
    bottom: clamp(20px, 3.5vh, 36px);
    right: clamp(16px, 2.5vw, 32px);
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.chapter-dot {
    width: 5px;
    height: 5px;
    border-radius: var(--radius-full);
    background: color-mix(in srgb, var(--fg) 12%, transparent);
    transition: all var(--duration-mid) var(--ease-out);
    cursor: pointer;
    pointer-events: auto;
}

.chapter-dot.active {
    width: 22px;
    background: var(--accent);
}

/* ── Scroll Hint ── */
.scroll-hint {
    position: absolute;
    bottom: clamp(20px, 3.5vh, 36px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    opacity: 1;
    transition: opacity var(--duration-slow) ease;
}

.scroll-hint.hidden {
    opacity: 0;
    pointer-events: none;
}

.scroll-hint-text {
    font-family: var(--font-primary);
    font-size: 9px;
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: color-mix(in srgb, var(--fg) 18%, transparent);
}

.scroll-hint-line {
    width: 1px;
    height: 28px;
    background: linear-gradient(to bottom, color-mix(in srgb, var(--fg) 30%, transparent), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ── Responsive: Tablet ── */
@media (max-width: 1024px) {
    .chapter {
        max-width: min(550px, 60vw);
    }

    .chapter-heading {
        font-size: clamp(2.4rem, 4.8vw, 3.8rem);
    }

    .chapter-paragraph {
        font-size: clamp(1rem, 1.6vw, 1.2rem);
    }
}

/* ── Responsive: Mobile ── */
@media (max-width: 768px) {
    .chapter {
        max-width: 95vw;
        padding: 0 1.25rem;
        padding-top: clamp(0px, 4vh, 40px);
    }

    .chapter-heading {
        font-size: clamp(2.2rem, 8vw, 3.4rem);
    }

    .chapter-paragraph {
        font-size: clamp(1rem, 3.4vw, 1.15rem);
        max-width: 100%;
    }

    .chapter-right,
    .chapter-center-right {
        right: 0;
        text-align: left;
    }

    .chapter-right .chapter-paragraph,
    .chapter-center-right .chapter-paragraph {
        margin-left: 0;
    }

    .chapter-right .chapter-divider,
    .chapter-center-right .chapter-divider {
        margin-left: 0;
    }

    .vignette-left,
    .vignette-right {
        width: 65%;
    }

    .vignette-left {
        background: linear-gradient(
            to right,
            var(--bg-dark) 0%,
            color-mix(in srgb, var(--bg-dark) 85%, transparent) 40%,
            transparent 100%
        );
    }

    .vignette-right {
        background: linear-gradient(
            to left,
            var(--bg-dark) 0%,
            color-mix(in srgb, var(--bg-dark) 85%, transparent) 40%,
            transparent 100%
        );
    }

    .chapter-dots {
        flex-direction: row;
        bottom: clamp(14px, 2.5vh, 24px);
        right: 50%;
        transform: translateX(50%);
    }
}

/* ── Responsive: Small phones ── */
@media (max-width: 480px) {
    .chapter-heading {
        line-height: 1.18;
        margin-bottom: 10px;
    }

    .chapter-paragraph {
        line-height: 1.5;
        max-width: 100%;
    }

    .chapter-tag {
        margin-bottom: 10px;
    }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
    .scroll-hint-line {
        animation: none;
    }
    .vignette-left,
    .vignette-right {
        transition-duration: 0.01ms;
    }
    .chapter-dot {
        transition-duration: 0.01ms;
    }
}
/* --- sections.css --- */
/* ============================================
   SECTIONS.CSS — Ooi Solutions
   ============================================ */

/* ── 0. HERO GAP FIX ── */
.sticky-wrap, .sticky-hero {
    max-width: 100%;
    overflow-x: clip;
    margin: 0;
    padding: 0;
}
.flow-main {
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 10;
}

/* ── 1. STORY SCROLL ── */
.flow-section {
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
}
.flow-inner {
    position: relative;
    display: flex;
    min-height: 100vh;
    width: 100%;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.5rem;
    padding: clamp(2rem, 8vw, 4vw) 4vw 4vw;
    will-change: transform;
    transform-origin: bottom left;
}
.flow-badge {
    font-size: var(--heading-label);
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    display: flex;
    align-items: center;
    gap: 10px;
}
.flow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}
.flow-dot-gold { background: var(--accent-gold); }
.flow-dot-white { background: #fff; }
.flow-divider {
    margin: 0.5vw 0;
    border: none;
    border-top: 1px solid currentColor;
    opacity: 0.15;
}
.flow-divider.solid { opacity: 0.25; }
.flow-heading {
    font-size: var(--heading-section);
    font-weight: var(--font-weight-black);
    line-height: 0.92;
    text-transform: uppercase;
    letter-spacing: -0.04em;
    word-break: keep-all;
    overflow-wrap: break-word;
    max-width: 18ch;
}
.flow-heading .accent-word {
    background: linear-gradient(135deg, var(--accent), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.flow-heading .dim-word {
    -webkit-text-fill-color: rgba(255, 255, 255, 0.25);
}
.flow-sub {
    font-size: var(--body-lg);
    font-weight: var(--font-weight-medium);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.4;
    max-width: 40ch;
}
.flow-sub .hl { color: var(--accent); }
.flow-body {
    max-width: 48ch;
    font-size: var(--body-lg);
    font-weight: var(--font-weight-body);
    line-height: 1.7;
}
.flow-feature-grid { display: flex; flex-wrap: wrap; gap: 3vw; }
.flow-feature {
    min-width: 160px;
    flex: 1;
    padding: 24px 0;
    border-top: 1px solid currentColor;
    opacity: 0.3;
    transition: opacity var(--duration-mid);
}
.flow-feature:hover { opacity: 1; }
.flow-feature-num {
    font-size: 0.65rem;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin-bottom: 8px;
    opacity: 0.5;
}
.flow-feature-title {
    margin-bottom: 0.5rem;
    font-size: var(--heading-card);
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.flow-feature-desc {
    font-size: var(--body-sm);
    line-height: 1.65;
    opacity: 0.7;
}
.flow-no-list { display: flex; flex-wrap: wrap; gap: 2vw; }
.flow-no-item {
    flex: 1;
    min-width: 180px;
    padding: 20px 0;
    border-left: 2px solid currentColor;
    padding-left: 20px;
    opacity: 0.35;
    transition: opacity var(--duration-mid);
}
.flow-no-item:hover { opacity: 1; }
.flow-no-item p {
    font-size: var(--body-lg);
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1.3;
}
.flow-years-badge {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    border: 1px solid currentColor;
    border-radius: var(--radius-full);
    padding: 10px 24px;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.8;
}
.flow-years-badge .big {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: var(--font-weight-black);
    line-height: 1;
}
.flow-years-badge .small {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    opacity: 0.6;
}
.flow-deco {
    width: 60px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    margin: 1rem 0;
}
.flow-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border-radius: var(--radius-full);
    padding: 16px 40px;
    font-size: 0.85rem;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    border: none;
    transition: all var(--duration-fast);
    text-decoration: none;
    font-family: inherit;
    background: #fff;
    color: var(--bg-dark);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}
.flow-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}
.flow-cta-btn svg { width: 16px; height: 16px; transition: transform var(--duration-fast); }
.flow-cta-btn:hover svg { transform: translateX(4px); }
/* Snake button styles moved to snake.css to avoid duplication */
.mt-auto { margin-top: auto; }
.ml-auto { margin-left: auto; }
.text-right { text-align: right; }
@media (max-width: 640px) {
    .flow-feature-grid { gap: 6vw; }
    .flow-feature { min-width: 120px; }
    .flow-no-list { gap: 5vw; }
    .flow-no-item { min-width: 140px; }
}


/* ── 2. SEARCH SECTION ── */
.search-section {
    background: var(--bg-cream);
    color: var(--fg-dark);
    padding: var(--section-py) 5% 100px;
    width: 100%;
    margin: 0;
}
.search-top { margin-bottom: 80px; max-width: 720px; }
.search-top .label {
    font-size: var(--heading-label);
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 20px;
}
.search-top h2 {
    font-size: var(--heading-section);
    font-weight: var(--font-weight-black);
    letter-spacing: -0.04em;
    text-transform: uppercase;
    line-height: 0.9;
    margin-bottom: 30px;
    max-width: 12ch;
}
.search-top p { color: var(--muted-dark); font-size: var(--body-md); line-height: 1.7; margin-bottom: 16px; }
.search-top .intro { font-size: 1.3rem; font-weight: var(--font-weight-medium); color: var(--fg-dark); }
.search-list-wrap { position: relative; }
.search-item-list { border-bottom: 1px solid var(--border-dark); }
.search-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 38px 20px;
    border-top: 1px solid var(--border-dark);
    cursor: pointer;
    transition: opacity var(--duration-fast);
    position: relative;
}
.search-list-item:hover { opacity: .4; }
.search-list-item h3 {
    font-size: clamp(1.6rem, 4vw, 3rem);
    font-weight: var(--font-weight-black);
    letter-spacing: -0.03em;
    text-transform: uppercase;
    transition: transform 0.4s var(--ease-spring);
}
.search-list-item:hover h3 { transform: translateX(-12px); }
.search-list-item .arrow { transition: transform 0.4s var(--ease-spring); color: var(--muted-dark); }
.search-list-item .arrow svg { width: 22px; height: 22px; }
.search-list-item:hover .arrow { transform: translateX(12px); }
.search-bottom-note {
    margin-top: 50px;
    font-size: var(--body-md);
    color: var(--fg-dark);
    font-weight: var(--font-weight-medium);
    padding-left: 20px;
    border-left: 3px solid var(--accent);
}

/* Modal & Cursor — FIXED Z-INDEX */
#modal-container {
    position: fixed;
    width: 220px;
    height: 160px;
    pointer-events: none;
    overflow: hidden;
    z-index: var(--z-modal);
    border-radius: var(--radius-md);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
    transform: translate(-50%, -50%) scale(0);
    background: #000;
}
#modal-slider { position: absolute; width: 100%; transition: top 0.5s var(--ease-spring); top: 0; }
.modal-slide { width: 220px; height: 160px; overflow: hidden; position: relative; }
.modal-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.modal-slide .slide-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px 12px 10px;
    color: #fff;
}
.modal-slide .slide-label span { font-size: .7rem; font-weight: var(--font-weight-bold); text-transform: uppercase; letter-spacing: .5px; }

#custom-cursor {
    position: fixed;
    width: 55px;
    height: 55px;
    background-color: var(--accent);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: var(--font-weight-bold);
    pointer-events: none;
    z-index: var(--z-cursor);
    transform: translate(-50%, -50%) scale(0);
    box-shadow: 0 8px 25px rgba(29, 124, 110, 0.45);
    letter-spacing: .5px;
}
@media (min-width: 768px) {
    .search-list-item { padding: 44px 20px; }
    #modal-container { width: 300px; height: 210px; }
    .modal-slide { width: 300px; height: 210px; }
    #custom-cursor { width: 65px; height: 65px; font-size: 12px; }
}
@media (max-width: 767px) {
    #modal-container, #custom-cursor { display: none !important; }
    .search-list-item { padding: 28px 10px; }
    .search-list-item .arrow { display: none; }
}


/* ── 3. APPROACH SECTION ── */
.approach-section {
    width: 100%;
    padding: var(--section-py) 16px 80px;
    background: var(--bg-dark-2);
}
@media (min-width: 768px) { .approach-section { padding: var(--section-py) 32px 120px; } }
@media (min-width: 1024px) { .approach-section { padding: 140px 48px; } }
.approach-inner { max-width: 1280px; margin: 0 auto; }
.approach-grid { display: grid; gap: 48px; align-items: start; }
@media (min-width: 1024px) { .approach-grid { grid-template-columns: 5fr 7fr; gap: 64px; } }
.approach-left { order: 2; display: flex; flex-direction: column; justify-content: center; padding-top: 16px; }
@media (min-width: 1024px) { .approach-left { order: 1; } }
.approach-heading-wrap { margin-bottom: 48px; }
.approach-heading-wrap h2 {
    font-size: var(--heading-sub);
    font-weight: var(--font-weight-black);
    letter-spacing: -0.04em;
    text-transform: uppercase;
    line-height: 0.95;
}
.approach-heading-wrap .sub {
    display: block;
    font-size: var(--heading-label);
    font-weight: 500;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-top: 8px;
}
.approach-tabs { display: flex; flex-direction: column; }
.approach-tab {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 0;
    text-align: left;
    cursor: pointer;
    background: none;
    border: none;
    border-top: 1px solid var(--border);
    color: var(--muted);
    transition: color var(--duration-mid);
    font-family: inherit;
    width: 100%;
}
.approach-tab:first-child { border-top: none; }
.approach-tab:hover, .approach-tab.active { color: var(--fg); }
.approach-tab-num { font-size: 10px; font-weight: 500; margin-top: 6px; opacity: .5; font-variant-numeric: tabular-nums; flex-shrink: 0; }
.approach-tab-content { display: flex; flex-direction: column; gap: 8px; flex: 1; min-width: 0; }
.approach-tab-title {
    font-size: var(--heading-card);
    font-weight: var(--font-weight-bold);
    letter-spacing: -0.02em;
    text-transform: uppercase;
    transition: color var(--duration-mid);
}
.approach-tab-desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--muted);
    max-width: 400px;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.4s var(--ease-smooth), opacity 0.3s, padding 0.3s;
    padding: 0 0 8px;
}
.approach-tab.active .approach-tab-desc { max-height: 120px; opacity: 1; padding: 0 0 8px; }
.approach-tab-progress { position: absolute; left: -16px; top: 0; bottom: 0; width: 2px; background: var(--border); }
@media (min-width: 768px) { .approach-tab-progress { left: -24px; } }
.approach-tab-progress-fill { position: absolute; top: 0; left: 0; width: 100%; height: 0; background: var(--fg); transform-origin: top; }
.approach-tab.active .approach-tab-progress-fill { animation: progressFill 5s linear forwards; }

.approach-right { order: 1; }
@media (min-width: 1024px) { .approach-right { order: 2; } }
.approach-gallery { position: relative; }
.approach-gallery-frame {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
}
@media (min-width: 768px) { .approach-gallery-frame { aspect-ratio: 4/3; border-radius: var(--radius-xl); } }
@media (min-width: 1024px) { .approach-gallery-frame { aspect-ratio: 16/11; } }

/* OLD APPROACH SLIDE ANIMATIONS */
.approach-gallery-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    will-change: transform, opacity;
}
.approach-gallery-slide img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.7s ease; }
.approach-gallery:hover .approach-gallery-slide.active img { transform: scale(1.04); }
.approach-gallery-slide .gradient { position: absolute; bottom: 0; left: 0; right: 0; height: 33%; background: linear-gradient(to top, rgba(0,0,0,0.2), transparent); opacity: .6; }
.approach-gallery-slide.enter-up { transform: translateY(-100%); opacity: 0; }
.approach-gallery-slide.enter-down { transform: translateY(100%); opacity: 0; }
.approach-gallery-slide.center { transform: translateY(0); opacity: 1; transition: transform 0.5s var(--ease-smooth), opacity 0.4s; }
.approach-gallery-slide.exit-up { transform: translateY(100%); opacity: 0; transition: transform 0.5s var(--ease-smooth), opacity 0.3s; }
.approach-gallery-slide.exit-down { transform: translateY(-100%); opacity: 0; transition: transform 0.5s var(--ease-smooth), opacity 0.3s; }

.approach-arrows { position: absolute; bottom: 24px; right: 24px; display: flex; gap: 10px; z-index: 20; }
@media (min-width: 768px) { .approach-arrows { bottom: 32px; right: 32px; gap: 12px; } }
.approach-arrow-btn {
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(13,31,28,0.75);
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    color: var(--fg); cursor: pointer; transition: all 0.2s;
}
@media (min-width: 768px) { .approach-arrow-btn { width: 48px; height: 48px; } }
.approach-arrow-btn:hover { background: rgba(13,31,28,0.9); }
.approach-arrow-btn:active { transform: scale(.9); }
.approach-arrow-btn svg { width: 18px; height: 18px; stroke-width: 1.5; }


/* ── 4. PARTNERS ── */
.partners-section { position: relative; width: 100%; background: var(--bg-dark); overflow: hidden; }
.partners-header { position: relative; z-index: 10; text-align: center; padding: 100px 24px 0; pointer-events: none; }
.partners-header .label { font-size: var(--heading-label); font-weight: var(--font-weight-bold); letter-spacing: 0.3em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.partners-header h2 { font-size: var(--heading-section); font-weight: var(--font-weight-black); letter-spacing: -0.04em; text-transform: uppercase; line-height: 0.9; color: var(--fg); }
.partners-header h2 span { background: linear-gradient(135deg, var(--accent), var(--accent-gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.partners-header p { margin-top: 20px; font-size: var(--body-md); color: var(--muted); max-width: 480px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.partners-canvas-wrap { position: relative; width: 100%; height: 100vh; height: 100dvh; will-change: transform; }
.p-fc { position: absolute; left: 50%; top: 50%; width: 60px; height: 85px; transform-style: preserve-3d; perspective: 1000px; cursor: pointer; will-change: transform, opacity; z-index: 5; }
@media (min-width: 768px) { .p-fc { width: 72px; height: 102px; } }
.p-fi { position: relative; width: 100%; height: 100%; transform-style: preserve-3d; transition: transform 0.6s var(--ease-out); }
.p-fc:hover .p-fi { transform: rotateY(180deg); }
.p-ff, .p-fb { position: absolute; inset: 0; backface-visibility: hidden; -webkit-backface-visibility: hidden; border-radius: 10px; overflow: hidden; }
.p-ff { box-shadow: 0 4px 20px rgba(0, 0, 0, .4); }
.p-ff img { width: 100%; height: 100%; object-fit: cover; display: block; }
.p-ff .p-ov { position: absolute; inset: 0; background: rgba(29, 124, 110, .1); transition: background var(--duration-fast); }
.p-fc:hover .p-ff .p-ov { background: transparent; }
.p-fb { transform: rotateY(180deg); background: var(--bg-dark); border: 1px solid rgba(29, 124, 110, .25); box-shadow: 0 4px 20px rgba(0, 0, 0, .5); display: flex; align-items: center; justify-content: center; }
.partners-prog { position: absolute; bottom: 0; left: 0; height: 3px; background: linear-gradient(90deg, var(--accent), var(--accent-gold)); z-index: 50; pointer-events: none; will-change: width; }
#partnersIntro { position: absolute; z-index: 10; top: 50%; left: 50%; transform: translate(-50%, -50%); text-align: center; pointer-events: none; opacity: 0; will-change: opacity; }
#partnersIntro h3 { font-size: var(--heading-card); font-weight: var(--font-weight-black); letter-spacing: -.03em; text-transform: uppercase; color: var(--fg); }
#partnersIntro h3 span { background: linear-gradient(135deg, var(--accent), var(--accent-gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
#partnersIntro p { margin-top: 1rem; font-size: var(--heading-label); font-weight: var(--font-weight-bold); letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
#partnersActive { position: absolute; z-index: 10; top: 8%; left: 50%; transform: translate(-50%, 0); text-align: center; pointer-events: none; opacity: 0; padding: 0 1rem; will-change: opacity, transform; }
#partnersActive h3 { font-size: var(--heading-card); font-weight: var(--font-weight-black); letter-spacing: -.03em; text-transform: uppercase; color: var(--fg); margin-bottom: .75rem; }
#partnersActive h3 span { background: linear-gradient(135deg, var(--accent), var(--accent-gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
#partnersActive p { font-size: var(--body-md); color: var(--muted); max-width: 520px; margin: 0 auto; line-height: 1.7; }
.partners-dots { position: absolute; top: 1.25rem; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 30; }
.partners-dots span { width: 6px; height: 6px; border-radius: 50%; background: rgba(255, 255, 255, .1); transition: all var(--duration-mid); }
.partners-dots span.on { background: var(--accent); width: 20px; border-radius: 3px; }
@keyframes pbob { 0%, 100% { transform: translateY(0); opacity: .4; } 50% { transform: translateY(8px); opacity: .9; } }
.p-shint { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); z-index: 20; display: flex; flex-direction: column; align-items: center; gap: 6px; animation: pbob 2s ease-in-out infinite; pointer-events: none; }
.p-shint svg { width: 22px; height: 22px; stroke: var(--muted); fill: none; stroke-width: 2; }
.p-shint span { font-size: 9px; font-weight: var(--font-weight-bold); letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.partners-footer { position: relative; z-index: 10; text-align: center; padding: 0 24px 80px; }
.partners-footer p { font-size: var(--body-md); color: var(--muted); max-width: 560px; margin: 0 auto; line-height: 1.7; }
.partners-footer p strong { color: var(--fg); font-weight: var(--font-weight-medium); }


/* ── 5. EXPERTISE WHEEL ── */
.wheel-section { background: var(--bg-dark); }
.gallery-wrap {
    width: 100%;
    background: var(--bg-dark);
    overflow: hidden;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    min-height: 600px;
}
.gallery-header {
    height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding-top: 32px;
}
.gallery-label-text { font-size: var(--heading-label); font-weight: var(--font-weight-bold); letter-spacing: 0.3em; text-transform: uppercase; color: var(--accent); }
/* FIXED: Single line heading */
.gallery-header h1 {
    font-size: var(--heading-sub);
    font-weight: var(--font-weight-black);
    letter-spacing: -0.04em;
    text-transform: uppercase;
    white-space: nowrap;
}
.scroll-hint { color: var(--muted); font-size: 12px; animation: bounce 1s infinite; }
@keyframes bounce { 0%, 100% { transform: translateY(-25%); animation-timing-function: cubic-bezier(.8,0,1,1); } 50% { transform: none; animation-timing-function: cubic-bezier(0,0,.2,1); } }
.pin-container { min-height: 700px; width: 100%; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.mask-container { position: relative; width: 100%; overflow: hidden; -webkit-mask-image: linear-gradient(to top, transparent 0%, black 35%, black 100%); mask-image: linear-gradient(to top, transparent 0%, black 35%, black 100%); }
.wheel { position: absolute; left: 50%; transform: translateX(-50%); will-change: transform; margin: 0; padding: 0; list-style: none; }
.wheel-item { position: absolute; top: 50%; left: 50%; z-index: 10; }
.card-wrapper {
    display: block; cursor: pointer; outline: none; text-align: left;
    width: 220px; height: 300px; overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--bg-dark); border: 1px solid var(--border);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    position: relative;
    transition: transform 0.5s var(--ease-smooth);
    will-change: transform;
}
@media (min-width: 640px) { .card-wrapper { width: 260px; height: 340px; } }
.card-wrapper.is-hovered { transform: scale(1.2) translateY(-28px); z-index: 100; box-shadow: 0 20px 60px rgba(29, 124, 110, 0.2); }
.card-wrapper.is-blurred { opacity: .35; }
.card-wrapper:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.card-img-wrap { position: absolute; inset: 0; overflow: hidden; }
.card-img { height: 100%; width: 100%; object-fit: cover; transition: transform 0.7s ease-out, filter 0.7s ease-out; filter: grayscale(40%) brightness(0.7); }
.card-wrapper.is-hovered .card-img { transform: scale(1.1); filter: grayscale(0%) brightness(1); }
.card-gradient { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13, 31, 28, 0.95) 0%, rgba(13, 31, 28, 0.4) 40%, transparent 70%); pointer-events: none; }
.card-content { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: space-between; padding: 16px; pointer-events: none; }
.card-top { display: flex; justify-content: space-between; align-items: flex-start; }
.card-badge { font-size: 9px; padding: 5px 10px; border-radius: 6px; background: rgba(29,124,110,0.12); border: 1px solid rgba(29,124,110,0.2); color: var(--accent); font-weight: var(--font-weight-bold); letter-spacing: .08em; text-transform: uppercase; pointer-events: auto; }
.card-num { font-size: 11px; font-weight: var(--font-weight-medium); color: rgba(255, 255, 255, 0.3); pointer-events: auto; font-variant-numeric: tabular-nums; }
.card-bottom { transition: transform 0.5s var(--ease-smooth); transform: translateY(8px); }
.card-wrapper.is-hovered .card-bottom { transform: translateY(0); }
.card-bottom h3 { font-size: 1.05rem; font-weight: var(--font-weight-bold); line-height: 1.25; color: var(--fg); letter-spacing: -0.01em; text-transform: uppercase; }
@media (min-width: 640px) { .card-bottom h3 { font-size: 1.15rem; } }
.card-line { height: 2px; background: var(--accent); margin-top: 10px; width: 0; opacity: 0; transition: all 0.5s var(--ease-smooth); border-radius: 2px; }
.card-wrapper.is-hovered .card-line { width: 100%; opacity: 1; }
.gallery-footer { height: 240px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.02); border-top: 1px solid var(--border); }
.gallery-footer p { font-size: var(--body-md); font-weight: var(--font-weight-body); letter-spacing: 0.08em; color: var(--muted); max-width: 500px; text-align: center; line-height: 1.6; }
.gallery-footer p strong { color: var(--fg); font-weight: var(--font-weight-medium); }


/* ── 6. CTA SECTION ── */
.cta-section {
    padding: 48px 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--bg-cream);
}
@media (min-width: 768px) { .cta-section { padding: 96px 24px; } }
.cta-card-wrapper { width: 100%; max-width: 1280px; position: relative; }
.cta-card {
    position: relative;
    overflow: hidden;
    border-radius: 48px;
    border: 1px solid var(--border-dark);
    background: var(--bg-white);
    min-height: 520px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
@media (min-width: 768px) { .cta-card { min-height: 600px; } }
.cta-dither-canvas { position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .3; mix-blend-mode: multiply; }
.cta-card-content { position: relative; z-index: 10; padding: 32px; max-width: 800px; text-align: center; display: flex; flex-direction: column; align-items: center; }
@media (min-width: 768px) { .cta-card-content { padding: 48px; } }
.cta-badge {
    display: inline-flex; align-items: center; gap: 8px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(29,124,110,0.15);
    background: rgba(29,124,110,0.06);
    padding: 8px 18px;
    font-size: 13px; font-weight: var(--font-weight-medium);
    color: var(--accent);
    margin-bottom: 32px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.cta-badge-dot { position: relative; display: flex; width: 8px; height: 8px; }
.cta-badge-dot .ping { position: absolute; inset: 0; border-radius: 50%; background: var(--accent); opacity: .75; animation: ctaPing 1.5s cubic-bezier(0,0,.2,1) infinite; }
.cta-badge-dot .dot { position: relative; border-radius: 50%; width: 8px; height: 8px; background: var(--accent); }
.cta-card h2 {
    font-size: var(--heading-sub);
    font-weight: var(--font-weight-black);
    letter-spacing: -0.04em;
    text-transform: uppercase;
    line-height: 1.05;
    margin-bottom: 24px;
    color: var(--fg-dark);
}
.cta-card h2 .dim { color: rgba(10, 10, 10, 0.4); }
.cta-desc { color: var(--muted-dark); font-size: var(--body-md); line-height: 1.7; max-width: 600px; margin-bottom: 40px; }
.cta-btn {
    position: relative; display: inline-flex; height: 56px;
    align-items: center; justify-content: center; gap: 12px;
    overflow: hidden; border-radius: var(--radius-full);
    background: var(--accent); padding: 0 40px;
    font-size: 15px; font-weight: var(--font-weight-bold);
    text-transform: uppercase; letter-spacing: 0.12em;
    color: #fff; border: none; cursor: pointer;
    transition: all var(--duration-fast); font-family: inherit;
    box-shadow: 0 8px 30px rgba(29, 124, 110, 0.3);
}
.cta-btn:hover { background: var(--accent-hover); transform: scale(1.05); box-shadow: 0 0 0 4px rgba(29,124,110,0.15), 0 12px 40px rgba(29,124,110,0.4); }
.cta-btn:active { transform: scale(.97); }
.cta-btn svg { width: 20px; height: 20px; transition: transform var(--duration-fast); }
.cta-btn:hover svg { transform: translateX(4px); }
@keyframes ctaPing { 75%, 100% { transform: scale(2.5); opacity: 0; } }


/* ── 7. FAQ ACCORDION (About Page) ── */
.faq-accordion-section {
    width: 100%;
    padding: var(--section-py) 4vw 100px;
    background: var(--bg-dark-2);
    color: var(--fg);
}
.faq-accordion-header {
    max-width: 1280px;
    margin: 0 auto 64px;
}
.faq-accordion-header .faq-badge {
    font-size: var(--heading-label);
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.faq-accordion-header .faq-badge .flow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}
.faq-accordion-header h2 {
    font-size: var(--heading-section);
    font-weight: var(--font-weight-black);
    letter-spacing: -0.04em;
    text-transform: uppercase;
    line-height: 0.92;
    max-width: 18ch;
}
.faq-accordion-header h2 .accent-word {
    background: linear-gradient(135deg, var(--accent), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.faq-accordion-header .faq-sub {
    font-size: var(--body-lg);
    font-weight: var(--font-weight-body);
    color: var(--muted);
    line-height: 1.7;
    max-width: 52ch;
    margin-top: 24px;
}
.faq-accordion-list {
    max-width: 1280px;
    margin: 0 auto;
    border-top: 1px solid var(--border);
}
.faq-accordion-item {
    border-bottom: 1px solid var(--border);
    position: relative;
}
.faq-accordion-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 28px 0;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--muted);
    transition: color var(--duration-mid);
    font-family: inherit;
    text-align: left;
}
.faq-accordion-trigger:hover,
.faq-accordion-item.is-open .faq-accordion-trigger {
    color: var(--fg);
}
.faq-accordion-num {
    font-size: 0.7rem;
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.4;
    flex-shrink: 0;
    min-width: 28px;
    padding-top: 4px;
    font-variant-numeric: tabular-nums;
}
.faq-accordion-title-wrap {
    flex: 1;
    min-width: 0;
}
.faq-accordion-title {
    font-size: var(--heading-card);
    font-weight: var(--font-weight-bold);
    letter-spacing: -0.02em;
    text-transform: uppercase;
    line-height: 1.2;
    transition: color var(--duration-mid);
}
.faq-accordion-trigger:hover .faq-accordion-title {
    color: var(--fg);
}
.faq-accordion-item.is-open .faq-accordion-title {
    color: var(--fg);
}
.faq-accordion-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.4s var(--ease-smooth), border-color var(--duration-mid), background var(--duration-mid);
}
.faq-accordion-icon svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 2;
}
.faq-accordion-item.is-open .faq-accordion-icon {
    border-color: var(--accent);
    background: rgba(29, 124, 110, 0.1);
    color: var(--accent);
}
.faq-accordion-trigger:hover .faq-accordion-icon {
    border-color: rgba(29, 124, 110, 0.4);
}
.faq-accordion-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease-smooth), opacity 0.4s, padding 0.4s;
    padding: 0 0 0 52px;
}
.faq-accordion-content-inner {
    padding-bottom: 24px;
    max-width: 720px;
}
.faq-accordion-content-inner p {
    font-size: var(--body-md);
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 12px;
}
.faq-accordion-content-inner p:last-child {
    margin-bottom: 0;
}
.faq-accordion-content-inner .faq-highlight {
    color: var(--accent);
    font-weight: var(--font-weight-medium);
}
.faq-accordion-content-inner .faq-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    background: rgba(29, 124, 110, 0.08);
    border: 1px solid rgba(29, 124, 110, 0.15);
    color: var(--accent);
    margin-top: 8px;
    margin-right: 6px;
}

/* ── ACCORDION PROGRESS INDICATOR ── */
.faq-accordion-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
    opacity: 0;
    transition: opacity var(--duration-mid);
}
.faq-accordion-item.is-open::before {
    opacity: 1;
    background: var(--accent);
}

/* ── RESPONSIVE ── */
@media (min-width: 768px) {
    .faq-accordion-trigger {
        padding: 36px 0;
        gap: 32px;
    }
    .faq-accordion-content {
        padding-left: 60px;
    }
    .faq-accordion-icon {
        width: 40px;
        height: 40px;
    }
    .faq-accordion-icon svg {
        width: 18px;
        height: 18px;
    }
}
@media (max-width: 640px) {
    .faq-accordion-trigger {
        padding: 20px 0;
        gap: 16px;
    }
    .faq-accordion-title {
        font-size: 1.1rem;
    }
    .faq-accordion-content {
        padding-left: 0;
    }
    .faq-accordion-num {
        display: none;
    }
}



/* --- footer.css --- */
/* ============================================
   FOOTER.CSS — Ooi Solutions (FINAL FIX)
   Cinematic fixed footer, pills, marquee, socials
   NO BLUR USED HERE (Performance rule met)
   Uses unified HEX variables
   Full responsive: Mobile / Tablet / Desktop / 4K

   FIX: Badge visibility + z-index fix
   ============================================ */

/* ── FOOTER WRAPPER & FIXED POSITION ── */
.cinematic-footer-wrapper {
    position: relative;
    height: 100vh;
    width: 100%;
    clip-path: polygon(0% 0, 100% 0%, 100% 100%, 0 100%);
    background: var(--bg-dark);
    color: var(--fg);
    z-index: 2; /* FIX: Higher than .page-main z-index:1 */
}

.footer-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none; /* Firefox */
    background: var(--bg-dark);
    padding-bottom: 50px; /* Buffer for extension bars like Five Server */
}
.footer-fixed::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
}

/* ── ANIMATIONS ── */
@keyframes footer-breathe {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    100% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

@keyframes footer-scroll-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.animate-footer-breathe { animation: footer-breathe 8s ease-in-out infinite alternate; }
.animate-footer-scroll-marquee { animation: footer-scroll-marquee 40s linear infinite; }

/* ── BACKGROUNDS (Aurora & Grid) ── */
.footer-aurora {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 80vw;
    height: 60vh;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(circle at 50% 50%, rgba(29, 124, 110, 0.15) 0%, rgba(232, 200, 122, 0.15) 40%, transparent 70%);
}

.footer-bg-grid {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-size: 60px 60px;
    background-image:
        linear-gradient(to right, rgba(250, 250, 250, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(250, 250, 250, 0.03) 1px, transparent 1px);
    mask-image: linear-gradient(to bottom, transparent, black 30%, black 70%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 30%, black 70%, transparent);
}

.footer-giant-bg-text {
    position: absolute;
    bottom: -5vh;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    z-index: 0;
    pointer-events: none;
    font-size: 26vw;
    line-height: 0.75;
    font-weight: var(--font-weight-black);
    letter-spacing: -0.05em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(250, 250, 250, 0.05);
    background: linear-gradient(180deg, rgba(250, 250, 250, 0.1) 0%, transparent 60%);
    -webkit-background-clip: text;
    background-clip: text;
    user-select: none;
}

/* ── MARQUEE BAR ── */
.footer-marquee-bar {
    position: absolute;
    top: 48px;
    left: 0;
    width: 100%;
    overflow: hidden;
    border-top: 1px solid rgba(250, 250, 250, 0.06);
    border-bottom: 1px solid rgba(250, 250, 250, 0.06);
    background: rgba(13, 31, 28, 0.8);
    padding: 16px 0;
    z-index: 10;
    transform: rotate(-2deg) scale(1.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.footer-marquee-track {
    display: flex;
    width: max-content;
    font-size: 11px;
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--muted);
}
.footer-marquee-track span { white-space: nowrap; }
.footer-marquee-track .sep { color: rgba(29, 124, 110, 0.5); margin: 0 36px; }

/* ── CENTER CONTENT ── */
.footer-center {
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    margin-top: 80px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-transform: uppercase;
}

.footer-heading {
    margin: 0 0 16px;
    text-align: center;
    font-size: clamp(2.8rem, 8vw, 7rem);
    font-weight: var(--font-weight-black);
    letter-spacing: -0.04em;
    background: linear-gradient(180deg, var(--fg) 0%, rgba(250, 250, 250, 0.4) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0px 0px 20px rgba(250, 250, 250, 0.15));
}

.footer-subheading {
    max-width: 520px;
    margin: 0 0 40px;
    text-align: center;
    color: var(--muted);
    font-size: clamp(0.82rem, 1.8vw, 1rem);
    font-weight: 500;
    line-height: 1.6;
    text-transform: none;
}

/* ── GLASS PILL SYSTEM (NO BLUR) ── */
.footer-glass-pill {
    background: linear-gradient(145deg, rgba(250, 250, 250, 0.04) 0%, rgba(250, 250, 250, 0.015) 100%);
    box-shadow: 0 10px 30px -10px rgba(13, 31, 28, 0.5), inset 0 1px 1px rgba(250, 250, 250, 0.1);
    border: 1px solid rgba(250, 250, 250, 0.08);
    transition: all 0.4s var(--ease-out);
}

.footer-glass-pill:hover, .footer-glass-pill:focus-visible {
    border-color: rgba(250, 250, 250, 0.2);
    background: linear-gradient(145deg, rgba(250, 250, 250, 0.08) 0%, rgba(250, 250, 250, 0.03) 100%);
    color: var(--fg);
    outline: none;
}

.footer-glass-pill--primary {
    background: linear-gradient(145deg, rgba(29, 124, 110, 0.16) 0%, rgba(29, 124, 110, 0.06) 100%);
    border-color: rgba(29, 124, 110, 0.28);
    box-shadow: 0 10px 30px -10px rgba(29, 124, 110, 0.2), inset 0 1px 1px rgba(29, 124, 110, 0.2);
}
.footer-glass-pill--primary:hover {
    background: linear-gradient(145deg, rgba(29, 124, 110, 0.25) 0%, rgba(29, 124, 110, 0.1) 100%);
    border-color: rgba(29, 124, 110, 0.4);
    box-shadow: 0 20px 40px -10px rgba(29, 124, 110, 0.3), inset 0 1px 1px rgba(29, 124, 110, 0.3);
}

.footer-glass-pill--secondary {
    background: linear-gradient(145deg, rgba(232, 200, 122, 0.16) 0%, rgba(232, 200, 122, 0.06) 100%);
    border-color: rgba(232, 200, 122, 0.28);
    box-shadow: 0 10px 30px -10px rgba(232, 200, 122, 0.2), inset 0 1px 1px rgba(232, 200, 122, 0.2);
}
.footer-glass-pill--secondary:hover {
    background: linear-gradient(145deg, rgba(232, 200, 122, 0.25) 0%, rgba(232, 200, 122, 0.1) 100%);
    border-color: rgba(232, 200, 122, 0.4);
    box-shadow: 0 20px 40px -10px rgba(232, 200, 122, 0.3), inset 0 1px 1px rgba(232, 200, 122, 0.3);
}

/* ── PILLS LAYOUT ── */
.footer-pills-row, .footer-secondary-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    width: 100%;
}
.footer-secondary-pills { margin-top: 24px; gap: 10px; }

.footer-pill-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    border-radius: 9999px;
    font-weight: var(--font-weight-bold);
    font-size: 14px;
    cursor: pointer;
    will-change: transform;
    transform-style: preserve-3d;
    perspective: 600px;
    text-decoration: none;
    color: var(--fg);
}
.footer-pill-btn svg { width: 24px; height: 24px; color: var(--muted); transition: color 0.3s ease; flex-shrink: 0; }
.footer-pill-btn:hover svg { color: var(--fg); }

.footer-pill-sm {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 10px 20px;
    border-radius: 9999px;
    color: var(--muted);
    font-size: 11px;
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.12em;
    cursor: pointer;
    will-change: transform;
    transition: color 0.3s ease;
    text-decoration: none;
}
.footer-pill-sm:hover { color: var(--fg); }

.footer-price-tag {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 600;
}
.footer-price-tag strong { color: var(--fg); font-size: 13px; font-weight: 800; }

/* ── SOCIAL LINKS ── */
.footer-socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.footer-social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(250, 250, 250, 0.12);
    background: rgba(250, 250, 250, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    will-change: transform;
}
.footer-social-link svg {
    width: 18px;
    height: 18px;
    fill: var(--muted);
    transition: fill 0.3s ease;
}
.footer-social-link:hover {
    background: rgba(29, 124, 110, 0.15);
    border-color: rgba(29, 124, 110, 0.4);
}
.footer-social-link:hover svg {
    fill: var(--fg);
}

/* ── BOTTOM BAR ── */
.footer-bottom-bar {
    position: relative;
    z-index: 20;
    width: 100%;
    padding: 24px 24px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 12px;
}

.footer-copyright {
    color: var(--muted);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-align: left;
    justify-self: start;
}

/* FIX: Badge always visible and centered — !important to override GSAP */
.footer-brand-badge {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 9999px;
    color: var(--muted);
    font-size: 10px;
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 1px solid rgba(250, 250, 250, 0.12);
    justify-self: center;
    align-self: center;
    background: linear-gradient(145deg, rgba(250, 250, 250, 0.06) 0%, rgba(250, 250, 250, 0.02) 100%);
    box-shadow: 0 10px 30px -10px rgba(13, 31, 28, 0.5), inset 0 1px 1px rgba(250, 250, 250, 0.1);
    white-space: nowrap;
    position: relative;
    z-index: 20;
    opacity: 1 !important;
    visibility: visible !important;
}
.footer-brand-badge .brand {
    margin-left: 2px;
    color: var(--fg);
    font-size: 14px;
    font-weight: var(--font-weight-black);
    letter-spacing: 0;
    text-transform: none;
}
.footer-brand-badge .brand-sub {
    color: var(--muted);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.footer-top-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    background: transparent;
    cursor: pointer;
    transition: color 0.3s ease;
    justify-self: end;
}
.footer-top-btn:hover { color: var(--fg); }
.footer-top-btn svg { width: 20px; height: 20px; transition: transform 0.3s ease; }
.footer-top-btn:hover svg { transform: translateY(-6px); }


/* ============================================
   RESPONSIVE — FOOTER
   ============================================ */

/* ── Tablets ── */
@media (min-width: 768px) {
    .footer-bottom-bar {
        padding: 24px 48px;
    }
    .footer-copyright { font-size: 12px; }
    .footer-pill-btn { padding: 22px 44px; font-size: 15px; }
    .footer-pill-sm { padding: 12px 24px; font-size: 12px; }
}

/* ── Mobile Landscape / Large Phones ── */
@media (max-width: 767px) {
    .footer-marquee-bar { top: 32px; }
    .footer-marquee-track { font-size: 9px; letter-spacing: 0.2em; }
    .footer-marquee-track .sep { margin: 0 24px; }

    .footer-center {
        justify-content: center;
        padding: 80px 16px 20px;
        margin-top: 60px;
    }
    .footer-heading {
        font-size: clamp(2.2rem, 14vw, 3.5rem);
    }
    .footer-subheading {
        font-size: clamp(0.78rem, 3.5vw, 0.9rem);
        margin-bottom: 28px;
        max-width: 400px;
    }

    .footer-pill-btn {
        width: min(100%, 340px);
        justify-content: center;
        padding: 16px 20px;
        text-align: center;
        font-size: 13px;
    }
    .footer-pill-btn svg { width: 20px; height: 20px; }

    .footer-secondary-pills {
        gap: 8px;
        justify-content: center;
    }
    .footer-pill-sm {
        padding: 8px 16px;
        font-size: 9px;
        letter-spacing: 0.08em;
    }

    .footer-socials { margin-top: 24px; gap: 10px; }
    .footer-social-link { width: 40px; height: 40px; }
    .footer-social-link svg { width: 16px; height: 16px; }

    /* Mobile: stack bottom bar vertically but keep badge visible */
    .footer-bottom-bar {
        padding: 20px 16px;
        gap: 16px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer-copyright { text-align: center; justify-self: center; order: 2; }
    .footer-brand-badge { justify-self: center; align-self: center; order: 1; display: inline-flex; }
    .footer-top-btn { justify-self: center; order: 3; }
}

/* ── Small Mobile ── */
@media (max-width: 479px) {
    .footer-marquee-bar { top: 24px; padding: 12px 0; }
    .footer-marquee-track { font-size: 8px; letter-spacing: 0.15em; }
    .footer-marquee-track .sep { margin: 0 18px; }

    .footer-center {
        padding: 60px 12px 16px;
        margin-top: 48px;
    }
    .footer-heading {
        font-size: clamp(2rem, 12vw, 3rem);
    }
    .footer-subheading {
        font-size: 0.75rem;
        margin-bottom: 22px;
    }

    .footer-pills-row {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .footer-pill-btn {
        width: 100%;
        max-width: 300px;
        padding: 14px 18px;
        font-size: 12px;
    }

    .footer-secondary-pills {
        flex-wrap: wrap;
        justify-content: center;
    }
    .footer-pill-sm {
        padding: 6px 12px;
        font-size: 8px;
    }

    .footer-socials { gap: 8px; margin-top: 20px; }
    .footer-social-link { width: 36px; height: 36px; }
    .footer-social-link svg { width: 14px; height: 14px; }

    .footer-brand-badge {
        padding: 10px 18px;
        gap: 8px;
    }
    .footer-brand-badge .brand { font-size: 12px; }
    .footer-brand-badge .brand-sub { font-size: 8px; }
    .footer-copyright { font-size: 9px; }
}

/* ── Very Small (iPhone SE, 320px) ── */
@media (max-width: 359px) {
    .footer-heading {
        font-size: clamp(1.8rem, 11vw, 2.5rem);
    }
    .footer-pill-btn {
        max-width: 280px;
        padding: 12px 14px;
        font-size: 11px;
        gap: 8px;
    }
    .footer-pill-btn svg { width: 18px; height: 18px; }

    .footer-secondary-pills { display: none; }

    .footer-social-link { width: 32px; height: 32px; }
    .footer-social-link svg { width: 12px; height: 12px; }
}

/* ── Large Desktop / 4K ── */
@media (min-width: 1400px) {
    .footer-marquee-bar { top: 56px; padding: 18px 0; }
    .footer-marquee-track { font-size: 12px; }

    .footer-center { margin-top: 100px; }
    .footer-heading {
        font-size: clamp(3.5rem, 8vw, 8rem);
    }
    .footer-subheading {
        max-width: 560px;
        font-size: clamp(0.9rem, 1.2vw, 1.1rem);
    }

    .footer-pill-btn { padding: 24px 52px; font-size: 16px; }
    .footer-pill-sm { padding: 14px 28px; font-size: 12px; }

    .footer-socials { gap: 16px; margin-top: 40px; }
    .footer-social-link { width: 50px; height: 50px; }
    .footer-social-link svg { width: 20px; height: 20px; }

    .footer-bottom-bar { padding: 28px 64px; }
    .footer-brand-badge { padding: 16px 32px; }
    .footer-brand-badge .brand { font-size: 16px; }
    .footer-copyright { font-size: 13px; }
}

/* ── Accessibility: Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
    .animate-footer-breathe { animation: none; }
    .animate-footer-scroll-marquee { animation: none; }
}

/* --- animations.css --- */
/* ============================================
   ANIMATIONS.CSS — Ooi Solutions
   ONLY Keyframes & utility animation classes
   ⚠️ STRICT RULE: Only animate opacity & transform
   No width, height, top, left, or filter blur here!
   ============================================ */

/* ── CORE KEYFRAMES ── */

/* Approach tab progress bar (Optimized: uses scaleY instead of height) */
@keyframes progressFill {
    from { transform: scaleY(0); }
    to { transform: scaleY(1); }
}

/* Standard entrance animations */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}


/* ── UTILITY ANIMATION CLASSES ── */
/* Add these classes to elements, and use JS/GSAP to add 'is-visible' 
   when they enter the viewport for lightweight CSS animations */

.anim-fade-up {
    opacity: 0;
    transform: translateY(30px);
}
.anim-fade-up.is-visible {
    animation: fadeUp 0.7s var(--ease-out) forwards;
}

.anim-fade-in {
    opacity: 0;
}
.anim-fade-in.is-visible {
    animation: fadeIn 0.6s ease forwards;
}

.anim-scale-in {
    opacity: 0;
    transform: scale(0.9);
}
.anim-scale-in.is-visible {
    animation: scaleIn 0.5s var(--ease-out) forwards;
}

.anim-slide-left {
    opacity: 0;
    transform: translateX(-40px);
}
.anim-slide-left.is-visible {
    animation: slideInLeft 0.7s var(--ease-out) forwards;
}

.anim-slide-right {
    opacity: 0;
    transform: translateX(40px);
}
.anim-slide-right.is-visible {
    animation: slideInRight 0.7s var(--ease-out) forwards;
}


/* ── STAGGER DELAY UTILITIES ── */
/* Use with the animation classes above for staggered children */
.delay-1 { animation-delay: 0.1s !important; }
.delay-2 { animation-delay: 0.2s !important; }
.delay-3 { animation-delay: 0.3s !important; }
.delay-4 { animation-delay: 0.4s !important; }
.delay-5 { animation-delay: 0.5s !important; }


/* ── ANTI-FLICKER: Prevent invisible content on page load ── */
/* data-reveal elements will be made visible by JS (revealPage in main.js)
   This timeout ensures that even if JS fails or is slow, content appears */
[data-reveal] {
    transition: opacity 0.5s ease, transform 0.5s ease !important;
}
/* Safety: After 3 seconds, force all data-reveal elements visible */
@keyframes forceReveal {
    from { opacity: 0; }
    to { opacity: 1; transform: translateY(0); }
}
/* Prevent white flash on page transitions */
html {
    background: #0D1F1C;
}
/* Smooth page appearance */
body {
    opacity: 1;
    transition: opacity 0.3s ease;
}
body.ooi-loading {
    opacity: 0;
}
/* --- utilities.css --- */
/* ============================================
   UTILITIES.CSS — Ooi Solutions
   Helper classes for spacing, text, 
   visibility, and accessibility.
   DO NOT put component styles here.
   ============================================ */

/* ── DISPLAY HELPERS ── */
.hidden { display: none !important; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.gap-sm { gap: var(--space-xs); }
.gap-md { gap: var(--space-sm); }
.gap-lg { gap: var(--space-md); }

/* ── SPACING HELPERS ── */
.mt-auto { margin-top: auto; }
.ml-auto { margin-left: auto; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-sm { margin-bottom: var(--space-xs); }
.mb-md { margin-bottom: var(--space-sm); }
.mb-lg { margin-bottom: var(--space-lg); }
.py-section { padding-top: var(--space-2xl); padding-bottom: var(--space-2xl); }

/* ── TEXT HELPERS ── */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.line-clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.line-clamp-3 { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

/* ── VISIBILITY & ACCESSIBILITY ── */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Global focus styles for accessibility (Keyboard navigation) */
:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 4px;
}
/* Remove default focus for mouse users, keep for keyboard */
:focus:not(:focus-visible) {
    outline: none;
}

/* ── IMAGE / MEDIA HELPERS ── */
.img-cover { width: 100%; height: 100%; object-fit: cover; display: block; }
.img-contain { width: 100%; height: 100%; object-fit: contain; display: block; }
.aspect-square { aspect-ratio: 1 / 1; }
.aspect-video { aspect-ratio: 16 / 9; }

/* ── CONTAINER HELPER ── */
.container {
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}
@media (min-width: 768px) {
    .container { padding-left: 48px; padding-right: 48px; }
}
/* --- responsive.css --- */
/* ============================================
   RESPONSIVE.CSS — Ooi Solutions
   Global responsive overrides & layout shifts.
   Note: Component-specific media queries remain 
   in their respective files (header.css, etc.)
   ============================================ */

/* ── MOBILE FIRST OVERRIDES (< 767px) ── */
@media (max-width: 767px) {
    /* Ensure no horizontal bleed on mobile */
    body, .flow-main, .partners-section, .wheel-section {
        overflow-x: hidden;
    }

    /* Tighten vertical section padding on mobile */
    .search-section,
    .approach-section {
        padding-left: 5%;
        padding-right: 5%;
    }

    /* Fix mobile white gaps — reduce top/bottom padding */
    .search-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    /* Flow section: tighter padding */
    .flow-inner {
        padding: clamp(1.5rem, 6vw, 3rem) 5vw 3rem;
    }

    /* Reduce flow-section min-height to prevent extra gaps */
    .flow-section {
        min-height: auto;
        padding-top: 48px;
        padding-bottom: 48px;
    }

    /* Keep headings to 2 lines max */
    .flow-heading {
        font-size: clamp(2rem, 10vw, 3rem);
        line-height: 0.95;
    }

    .search-top h2 {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    /* Partners header */
    .partners-header h2 {
        font-size: clamp(2rem, 10vw, 3.5rem);
    }

    /* Hero section — handled in hero.css mobile block */

    /* Approach section: tighter padding */
    .approach-section {
        padding-top: 60px;
        padding-bottom: 40px;
    }

    /* CTA section tighter on mobile */
    .cta-section {
        padding: 32px 12px;
    }
}

/* ── SMALL MOBILE TWEAKS (< 480px) ── */
@media (max-width: 480px) {
    /* Prevent text overflow on tiny screens */
    h1, h2, h3, .flow-heading, .search-list-item h3 {
        word-break: break-word;
    }

    /* Flow heading sizing for small screens */
    .flow-heading {
        font-size: clamp(1.8rem, 9vw, 2.6rem);
    }

    /* Reduce massive padding on tiny screens */
    .cta-card {
        border-radius: 24px;
    }
    .cta-card-content {
        padding: 24px;
    }

    .cta-card h2 {
        font-size: clamp(1.6rem, 8vw, 2.5rem);
    }
}

/* ── TABLET ADJUSTMENTS (768px - 1023px) ── */
@media (min-width: 768px) and (max-width: 1023px) {
    /* Give content a bit more breathing room on tablets */
    .search-section {
        padding-left: 8%;
        padding-right: 8%;
    }

    .flow-heading {
        font-size: clamp(2.8rem, 7vw, 4.5rem);
    }
}

/* ── LARGE DESKTOP (> 1400px) ── */
@media (min-width: 1400px) {
    /* Approach inner max width */
    .approach-inner {
        max-width: 1400px;
    }
}

/* --- audit.css --- */
/* ============================================
   INTERACTIVE AUDIT STYLES (v7.0)
   ============================================ */

.interactive-audit-section {
    position: relative;
    background-color: #050a09;
    color: var(--fg);
    overflow: hidden;
}

.audit-scroll-spacer {
    position: relative;
    width: 100%;
    height: 300vh; /* Scroll space for the animation */
}

.audit-sticky-viewport {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

#audit-sequence-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.3; /* Base opacity, will be modified by GSAP */
}

.audit-header {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
    width: 100%;
    padding: 0 20px;
}

.cd-header__title {
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -0.04em;
    margin-bottom: 1rem;
    color: var(--fg);
}

.cd-header__sub {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 500px;
    margin: 0 auto;
}

/* The Bomb Button */
.audit-bomb-container {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.audit-bomb-container.active {
    opacity: 1;
    pointer-events: auto;
}

/* URL Input Screen */
.audit-url-screen, .audit-result-screen {
    position: absolute;
    inset: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(5, 10, 9, 0.95);
    backdrop-filter: blur(10px);
    opacity: 1;
    transition: opacity 0.5s ease, visibility 0.5s;
}

.audit-url-screen.hidden, .audit-result-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.audit-url-box, .audit-result-box {
    background: #0d1512;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 24px;
    padding: 40px;
    max-width: 600px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    transform: translateY(20px);
    opacity: 0;
    animation: slideUpFade 0.6s forwards;
}

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

.audit-url-box h2, .audit-result-box h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.audit-url-box p {
    color: rgba(255,255,255,0.6);
    margin-bottom: 30px;
}

.audit-input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.audit-input-group input {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    padding: 15px 20px;
    border-radius: 12px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.audit-input-group input:focus {
    border-color: var(--accent);
}

.audit-input-group button {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 0 30px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, background 0.3s;
}

.audit-input-group button:hover {
    background: #008f5d;
    transform: translateY(-2px);
}

/* Progress bar */
.audit-progress-container {
    margin-top: 30px;
    text-align: left;
}

.audit-progress-container.hidden {
    display: none;
}

.audit-progress-text {
    font-size: 0.9rem;
    color: var(--accent);
    margin-bottom: 8px;
    font-family: monospace;
}

.audit-progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    overflow: hidden;
}

.audit-progress-fill {
    width: 0%;
    height: 100%;
    background: var(--accent);
    transition: width 0.3s linear;
}

/* Results box */
.audit-result-score {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.audit-result-score .accent-word {
    font-size: 4rem;
    line-height: 1;
}

.audit-problem-list {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.audit-problem-item {
    background: rgba(255,107,0,0.05);
    border: 1px solid rgba(255,107,0,0.2);
    padding: 20px;
    border-radius: 12px;
}

.audit-problem-title {
    font-weight: 600;
    color: #ff6b00;
    margin-bottom: 8px;
}

.audit-problem-fix {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
}

.audit-problem-title span, .audit-problem-fix span {
    opacity: 0.5;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-right: 6px;
}

@media (max-width: 768px) {
    .audit-input-group {
        flex-direction: column;
    }
    .audit-input-group button {
        padding: 15px;
    }
}

/* --- snake.css --- */
/* ============================================
   SQUIRREL.CSS — Ooi Solutions (v11)
   "Don't Click" button + Bomb icon + Squirrel animation
   2-COLUMN LAYOUT: Left=text, Right=video+button at BOTTOM
   Animated bomb icon with flickering fuse
   Squirrel throw animation (section-contained)
   ============================================ */

/* ── 2-COLUMN LAYOUT for Don't Click section ── */
.dont-click-layout {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 40px;
    width: 100%;
    min-height: 400px;
    padding-top: 180px; /* Prevent overlap with the fixed header logo when pinned */
}

/* LEFT COLUMN: All text content */
.dont-click-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

/* RIGHT COLUMN: Video on top, button at BOTTOM */
.dont-click-right {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    padding-bottom: 0;
}

/* ── SQUIRREL VIDEO (above Don't Click button) ── */
.squirrel-mascot-vid {
    width: 200px;
    height: auto;
    max-height: 340px;
    object-fit: contain;
    border-radius: 16px;
    animation: squirrelWiggle 2.5s ease-in-out infinite;
    filter: drop-shadow(0 4px 16px rgba(0,0,0,0.4));
    pointer-events: none;
    user-select: none;
    border: none;
    outline: none;
}

@keyframes squirrelWiggle {
    0%, 100% { transform: rotate(-3deg) scale(1); }
    15% { transform: rotate(4deg) scale(1.05); }
    30% { transform: rotate(-2deg) scale(1); }
    45% { transform: rotate(3deg) scale(1.03); }
    60% { transform: rotate(-1deg) scale(1); }
    75% { transform: rotate(2deg) scale(1.02); }
}

/* ── CTA ROW LAYOUT ── */
.flow-cta-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
    flex-wrap: wrap;
    width: 100%;
}
.flow-cta-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.flow-cta-meta {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.6;
}

/* ── DANGER BUTTON (Don't Click) — with BOMB icon ── */
.flow-cta-btn--danger {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid rgba(204, 78, 60, 0.7);
    border-radius: var(--radius-full);
    padding: 14px 28px;
    background: rgba(204, 78, 60, 0.12);
    color: #fff;
    font-family: var(--font-primary);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    cursor: pointer;
    position: relative;
    overflow: visible;
    transition: all 0.3s ease;
    animation: dangerPulse 2.5s ease-in-out infinite;
    box-shadow:
        0 0 20px rgba(204, 78, 60, 0.15),
        inset 0 0 20px rgba(204, 78, 60, 0.05);
}

/* ── BOMB ICON (animated, replaces warning triangle) ── */
.flow-cta-btn--danger .bomb-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    animation: bombWobble 2s ease-in-out infinite;
    filter: drop-shadow(0 0 6px rgba(255, 165, 0, 0.4));
}
.flow-cta-btn--danger .bomb-icon svg {
    width: 36px;
    height: 36px;
}

/* Bomb wobble animation - subtle shake like it's about to explode */
@keyframes bombWobble {
    0%, 100% { transform: rotate(0deg); }
    10% { transform: rotate(-3deg); }
    20% { transform: rotate(3deg); }
    30% { transform: rotate(-2deg); }
    40% { transform: rotate(2deg); }
    50% { transform: rotate(-1deg); }
    60% { transform: rotate(1deg); }
    70% { transform: rotate(-2deg); }
    80% { transform: rotate(2deg); }
    90% { transform: rotate(-1deg); }
}

/* Spark glow effect around the bomb fuse */
.bomb-spark {
    filter: blur(0.5px);
}

.flow-cta-btn--danger .danger-text {
    position: relative;
    z-index: 1;
}

/* Pulsing glow animation */
@keyframes dangerPulse {
    0%, 100% {
        box-shadow:
            0 0 20px rgba(204, 78, 60, 0.15),
            0 0 10px rgba(255, 165, 0, 0.05),
            inset 0 0 20px rgba(204, 78, 60, 0.05);
        border-color: rgba(204, 78, 60, 0.7);
    }
    50% {
        box-shadow:
            0 0 30px rgba(204, 78, 60, 0.3),
            0 0 60px rgba(204, 78, 60, 0.1),
            0 0 15px rgba(255, 165, 0, 0.15),
            inset 0 0 30px rgba(204, 78, 60, 0.08);
        border-color: rgba(204, 78, 60, 0.9);
    }
}

/* Hover: full danger mode */
.flow-cta-btn--danger:hover {
    background: rgba(204, 78, 60, 0.25);
    border-color: #CC4E3C;
    transform: translateY(-2px) scale(1.03);
    box-shadow:
        0 0 40px rgba(204, 78, 60, 0.4),
        0 0 20px rgba(255, 165, 0, 0.2),
        0 8px 30px rgba(204, 78, 60, 0.3);
    animation: none;
}
.flow-cta-btn--danger:hover .bomb-icon {
    animation: bombShakeHover 0.15s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255, 165, 0, 0.7));
}

/* Faster shake on hover - about to explode! */
@keyframes bombShakeHover {
    0% { transform: rotate(-4deg); }
    50% { transform: rotate(4deg); }
    100% { transform: rotate(-4deg); }
}

.flow-cta-btn--danger:active {
    transform: scale(0.97);
}

/* ── SQUIRREL THROW ANIMATION CONTAINER ── */
.squirrel-throw-container {
    position: absolute;
    inset: 0;
    z-index: 100;
    pointer-events: none;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.squirrel-throw-container.active {
    opacity: 1;
    visibility: visible;
}

/* ── SQUIRREL PROJECTILE IMAGES (BIG SIZE) ── */
.squirrel-projectile {
    position: absolute;
    width: 340px;
    height: auto;
    max-width: 42vw;
    object-fit: contain;
    pointer-events: none;
    will-change: transform, opacity;
    filter: drop-shadow(0 16px 40px rgba(0,0,0,0.6));
    opacity: 0;
    user-select: none;
    z-index: 200;
}

.squirrel-proj-1 { width: 380px; height: auto; max-width: 45vw; }
.squirrel-proj-2 { width: 340px; height: auto; max-width: 40vw; }
.squirrel-proj-3 { width: 360px; height: auto; max-width: 43vw; }
.squirrel-proj-4 { width: 350px; height: auto; max-width: 42vw; }

/* ── NUT PARTICLES ── */
.squirrel-nut-particle {
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    background: var(--accent-gold);
    pointer-events: none;
    will-change: transform, opacity;
    opacity: 0;
    box-shadow: 0 2px 8px rgba(232, 200, 122, 0.5);
}

/* ============================================
   LETS BUILD FULL-WIDTH SCROLL SEQUENCE (BACKGROUND)
   ============================================ */

.bg-sequence-canvas {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 100%; /* Adjusts to container size to prevent gaps */
    object-fit: cover;
    will-change: transform;
    pointer-events: none;
    z-index: 0;
    opacity: 1; /* Keep fully visible as background */
}


/* ── RESPONSIVE ── */
@media (max-width: 767px) {
    .dont-click-layout {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        min-height: auto;
    }
    .dont-click-right {
        align-self: flex-end;
        flex-direction: column;
        align-items: flex-end;
        gap: 12px;
    }
    .squirrel-mascot-vid {
        width: 140px;
        height: auto;
        max-height: 240px;
    }
    .flow-cta-btn--danger {
        padding: 10px 18px;
        font-size: 0.72rem;
    }
    .flow-cta-btn--danger .bomb-icon {
        width: 28px;
        height: 28px;
    }
    .flow-cta-btn--danger .bomb-icon svg {
        width: 28px;
        height: 28px;
    }
    .flow-cta-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .squirrel-projectile {
        width: 200px;
        height: auto;
        max-width: 50vw;
    }
    .squirrel-proj-1 { width: 230px; height: auto; max-width: 55vw; }
    .squirrel-proj-2 { width: 200px; height: auto; max-width: 48vw; }
    .squirrel-proj-3 { width: 210px; height: auto; max-width: 50vw; }
    .squirrel-proj-4 { width: 205px; height: auto; max-width: 49vw; }
}

@media (max-width: 480px) {
    .dont-click-layout {
        gap: 16px;
    }
    .dont-click-right {
        align-self: flex-end;
        gap: 8px;
    }
    .squirrel-mascot-vid {
        width: 100px;
        height: auto;
        max-height: 180px;
    }
    .flow-cta-btn--danger .bomb-icon {
        width: 24px;
        height: 24px;
    }
    .flow-cta-btn--danger .bomb-icon svg {
        width: 24px;
        height: 24px;
    }
    .squirrel-projectile {
        width: 160px;
        height: auto;
        max-width: 55vw;
    }
    .squirrel-proj-1 { width: 180px; height: auto; max-width: 60vw; }
    .squirrel-proj-2 { width: 150px; height: auto; max-width: 50vw; }
    .squirrel-proj-3 { width: 165px; height: auto; max-width: 55vw; }
    .squirrel-proj-4 { width: 155px; height: auto; max-width: 52vw; }
}


