/* ============================================
   DEALER IGNITION — GLOBAL STYLES
   Extracted from Concept B Final
   GSAP + Lenis + Custom cursor + Preloader +
   Kinetic type + Parallax + Noise texture
   ============================================ */

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

:root {
    --black: #000000;
    --dark: #060606;
    --dark-surface: #0c0c0c;
    --dark-elevated: #141414;
    --dark-border: #1c1c1c;
    --white: #ffffff;
    --off-white: #e8e8e8;
    --gray-100: #f0f0f0;
    --gray-300: #999999;
    --gray-500: #666666;
    --gray-700: #333333;
    --lime: #b0ff19;
    --lime-50: rgba(176, 255, 25, 0.5);
    --lime-20: rgba(176, 255, 25, 0.2);
    --lime-10: rgba(176, 255, 25, 0.1);
    --lime-05: rgba(176, 255, 25, 0.05);
    --red: #e93d3d;
    --red-dim: rgba(233, 61, 61, 0.15);
    --font-display: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --surface-light: #f5f5f5;
    --surface-mid: #e8e8e8;
    --surface-warm: #faf9f7;
    --text-on-light: #1a1a1a;
    --text-on-light-secondary: #666666;
    --border-light: #e0e0e0;
    --accent-on-light: #2d7a00;
}

html.lenis, html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    cursor: auto;
}

/* Noise texture overlay */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

::selection {
    background: var(--lime);
    color: var(--black);
}

a { color: inherit; text-decoration: none; }

/* ---- PRELOADER ---- */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--black);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.done {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-logo {
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-logo img {
    height: 36px;
    width: auto;
}

.preloader-bar {
    width: 120px;
    height: 2px;
    background: var(--dark-border);
    margin-top: 24px;
    position: relative;
    overflow: hidden;
}

.preloader-fill {
    width: 0%;
    height: 100%;
    background: var(--lime);
    transition: width 0.3s ease;
}

.preloader-count {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-500);
    margin-top: 12px;
    letter-spacing: 0.1em;
    opacity: 0;
}

/* ---- NAV ---- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 28px 56px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.5s var(--ease);
    opacity: 0;
    transform: translateY(-20px);
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--dark-border);
}

.nav.visible {
    opacity: 1;
    transform: translateY(0);
}

.nav.scrolled {
    padding: 16px 56px;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 40px;
    width: auto;
    display: block;
}

.nav-center {
    display: flex;
    gap: 48px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-center a {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gray-300);
    transition: color 0.3s ease;
    position: relative;
}

.nav-center a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--lime);
    transition: width 0.4s var(--ease);
}

.nav-center a:hover { color: var(--white); }
.nav-center a:hover::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 32px; }

.nav-diablo {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--lime);
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-diablo::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--lime);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
}

.nav-book {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 12px 28px;
    background: var(--lime);
    color: var(--black);
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    position: relative;
    overflow: hidden;
}

.nav-book::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--white);
    transform: translateY(100%);
    transition: transform 0.4s var(--ease);
}

.nav-book:hover::before {
    transform: translateY(0);
}

.nav-book:hover {
    transform: translateY(-1px);
}

.nav-book span {
    position: relative;
    z-index: 1;
}

/* ---- HERO ---- */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    perspective: 1000px;
}

.hero-scene {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    will-change: transform;
    transform-style: preserve-3d;
}

/* Video background */
.hero-video-wrap {
    position: absolute;
    inset: -20px;
    z-index: 0;
    will-change: transform;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    transform: scale(1.05);
    z-index: 1;
    position: relative;
}

/* Fallback animated gradient for when video hasn't loaded */
.hero-video-fallback {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 30% 40%, var(--lime-05) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 70% 60%, rgba(233, 61, 61, 0.03) 0%, transparent 50%),
        var(--black);
    animation: heroShift 12s ease-in-out infinite alternate;
}

@keyframes heroShift {
    0% { background-position: 0% 0%, 100% 100%, 0 0; }
    100% { background-position: 100% 100%, 0% 0%, 0 0; }
}

/* Cinematic overlays */
.hero-vignette {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(ellipse 70% 60% at 50% 50%, transparent 30%, rgba(0,0,0,0.7) 100%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg,
        rgba(0,0,0,0.4) 0%,
        rgba(0,0,0,0.15) 40%,
        rgba(0,0,0,0.15) 60%,
        rgba(0,0,0,0.6) 85%,
        var(--black) 100%
    );
    pointer-events: none;
}

/* Mouse-reactive orbs (on top of video) */
.hero-orbs {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0;
}

.hero-orb {
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--lime-10) 0%, var(--lime-05) 25%, transparent 65%);
    border-radius: 50%;
    filter: blur(60px);
    will-change: transform;
}

.hero-orb-secondary {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(233, 61, 61, 0.05) 0%, transparent 65%);
    border-radius: 50%;
    filter: blur(40px);
    will-change: transform;
}

/* Floating depth lines */
.hero-depth-lines {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0;
}

.depth-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--lime-20), transparent);
    opacity: 0.3;
}

.depth-line:nth-child(1) { top: 20%; left: -5%; width: 35%; }
.depth-line:nth-child(2) { top: 45%; right: -5%; width: 25%; }
.depth-line:nth-child(3) { top: 75%; left: 10%; width: 20%; }
.depth-line:nth-child(4) { top: 35%; right: 8%; width: 15%; }
.depth-line:nth-child(5) { top: 85%; right: 15%; width: 30%; }

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1100px;
    padding: 0 48px;
    will-change: transform;
}

.hero-eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--lime);
    line-height: 1.4;
    margin-bottom: 32px;
    opacity: 0;
    filter: blur(8px);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 8vw, 130px);
    font-weight: 900;
    line-height: 1.0;
    letter-spacing: -0.045em;
    margin-bottom: 44px;
    text-shadow: 0 4px 80px rgba(0, 0, 0, 0.5);
}

.hero-title .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(80px) rotateX(40deg) scale(1.1);
    filter: blur(6px);
}

.hero-title .accent { color: var(--lime); text-shadow: 0 0 80px var(--lime-20); }

.hero-title .strike {
    color: var(--red);
    position: relative;
}

.hero-title .strike::after {
    content: '';
    position: absolute;
    top: 55%;
    left: -4px;
    right: -4px;
    height: 4px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
}

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

.hero-desc {
    font-size: 18px;
    font-weight: 400;
    color: var(--off-white);
    line-height: 1.65;
    max-width: 620px;
    text-wrap: balance;
    margin: 0 auto 48px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(30px);
    filter: blur(4px);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    opacity: 0;
    transform: translateY(30px);
}

.btn-primary {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 18px 44px;
    background: var(--lime);
    color: var(--black);
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--white);
    transform: translateY(100%);
    transition: transform 0.4s var(--ease);
}

.btn-primary:hover::before {
    transform: translateY(0);
}

.btn-primary span {
    position: relative;
    z-index: 1;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(176, 255, 25, 0.2);
}

.btn-secondary {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 18px 44px;
    background: transparent;
    color: var(--white);
    border: 1px solid var(--gray-700);
    cursor: pointer;
    transition: all 0.3s var(--ease);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--white);
    transform: translateY(100%);
    transition: transform 0.4s var(--ease);
}

.btn-secondary:hover::before {
    transform: translateY(0);
}

.btn-secondary span {
    position: relative;
    z-index: 1;
}

.btn-secondary:hover {
    border-color: var(--white);
    color: var(--black);
    transform: translateY(-2px);
}

.hero-badges {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-top: 32px;
}
.hero-badge {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--lime);
    padding: 8px 20px;
    border: 1px solid var(--lime-20);
    background: rgba(176, 255, 25, 0.05);
    border-radius: 4px;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0;
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: var(--gray-700);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--lime);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { top: -100%; }
    50% { top: 0; }
    100% { top: 100%; }
}

.scroll-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gray-500);
}

/* ---- MARQUEE ---- */
.marquee {
    padding: 36px 0;
    border-top: 1px solid var(--dark-border);
    border-bottom: 1px solid var(--dark-border);
    overflow: hidden;
    opacity: 0;
}

.marquee-track {
    display: flex;
    gap: 56px;
    width: max-content;
    will-change: transform;
}

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

.marquee-item {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray-500);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 56px;
    transition: color 0.3s ease;
}

.marquee-item:hover {
    color: var(--lime);
}

.marquee-item::after {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--lime);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ---- SECTIONS ---- */
.numbered-section {
    padding: 180px 56px;
    position: relative;
}

.section-number {
    font-family: var(--font-display);
    font-size: 220px;
    font-weight: 900;
    color: var(--dark-elevated);
    position: absolute;
    top: 80px;
    right: 56px;
    line-height: 1;
    letter-spacing: -0.04em;
    user-select: none;
    pointer-events: none;
    z-index: 0;
}

.section-tag {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.section-tag::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--lime);
}

/* ---- RESULTS ROW ---- */
.result-stat {
    padding: 48px 32px;
    text-align: center;
    border-right: 1px solid var(--dark-border);
}
.result-stat:last-child { border-right: none; }
.result-value {
    font-family: var(--font-display);
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 900;
    color: var(--lime);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 8px;
}
.result-value .unit { color: var(--lime); }
.result-label {
    font-size: 14px;
    color: var(--gray-300);
}

/* ---- GAP SECTION ---- */
.gap-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--dark);
    border-top: 1px solid var(--dark-border);
}

.gap-inner { width: 100%; position: relative; z-index: 1; }

.gap-headline {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 76px);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.05;
    text-wrap: balance;
    max-width: 850px;
    margin-bottom: 80px;
}

.gap-headline .word {
    display: inline-block;
    overflow: hidden;
    vertical-align: top;
    margin-right: 0.25em;
}

.gap-headline .word-inner {
    display: inline-block;
    transform: translateY(110%);
}

.gap-headline .red { color: var(--red); }

.gap-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.metric {
    padding: 56px;
    border: 1px solid var(--dark-border);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
    transition: background 0.4s ease;
}

.metric::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--lime);
    transition: width 0.8s var(--ease);
}

.metric:hover::before { width: 100%; }
.metric:hover { background: var(--dark-elevated); }

.metric-value {
    font-family: var(--font-display);
    font-size: clamp(52px, 7vw, 88px);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 16px;
}

.metric-value .accent { color: var(--lime); }
.metric-value .red { color: var(--red); }
.metric-value .counter { display: inline-block; }

.metric-label {
    font-size: 15px;
    color: var(--gray-300);
    line-height: 1.5;
}

.metric-source {
    font-size: 11px;
    color: var(--gray-500);
    margin-top: 16px;
    font-style: italic;
}

/* ---- SECTION TRANSITION BRIDGES ---- */
.section-bridge-dark-to-light {
    height: 4px;
    background: linear-gradient(90deg, var(--lime) 0%, var(--lime) 30%, transparent 30%, transparent 32%, rgba(176,255,25,0.3) 32%, rgba(176,255,25,0.3) 33%, transparent 33%);
    position: relative;
    z-index: 1;
}

.section-bridge-light-to-dark {
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, transparent 67%, rgba(176,255,25,0.3) 67%, rgba(176,255,25,0.3) 68%, transparent 68%, transparent 70%, var(--lime) 70%, var(--lime) 100%);
    position: relative;
    z-index: 1;
}

.section-bridge-warm-to-dark {
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, transparent 50%, rgba(176,255,25,0.3) 50%, rgba(176,255,25,0.3) 51%, transparent 51%, transparent 60%, var(--lime) 60%, var(--lime) 100%);
    position: relative;
    z-index: 1;
}

.section-bridge-dark-to-warm {
    height: 4px;
    background: linear-gradient(90deg, var(--lime) 0%, var(--lime) 40%, transparent 40%, transparent 42%, rgba(176,255,25,0.3) 42%, rgba(176,255,25,0.3) 43%, transparent 43%);
    position: relative;
    z-index: 1;
}

/* ---- SOLUTION ---- */
.section-light.solution-section {
    border-top: none;
}

.solution-section {
    border-top: 1px solid var(--dark-border);
}

.solution-intro {
    max-width: 720px;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.solution-intro p {
    font-size: 22px;
    font-weight: 300;
    color: var(--off-white);
    line-height: 1.7;
}

.solution-intro p strong {
    color: var(--lime);
    font-weight: 600;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    position: relative;
    z-index: 1;
}

.service-block {
    padding: 64px;
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-sm);
    position: relative;
    cursor: pointer;
    opacity: 0;
    transform: translateY(40px);
    transition: background 0.4s ease, border-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}

.service-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, var(--lime-05) 0%, transparent 100%);
    border-radius: var(--radius-sm);
    transition: height 0.6s var(--ease);
}

.service-block:hover::before { height: 100%; }
.service-block:hover { background: var(--dark-elevated); }

.service-number {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--lime);
    letter-spacing: 0.05em;
    margin-bottom: 28px;
}

.service-name {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    transition: color 0.3s ease;
}

.service-block:hover .service-name { color: var(--lime); }

.service-desc {
    font-size: 15px;
    color: var(--gray-300);
    line-height: 1.65;
    margin-bottom: 28px;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-tag {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-500);
    padding: 6px 14px;
    border: 1px solid var(--dark-border);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.service-block:hover .service-tag {
    border-color: var(--gray-700);
    color: var(--gray-300);
}

/* ---- PILLAR CARDS ---- */
.pillar-card {
    padding: 32px 20px;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    transition: all 0.3s var(--ease);
}
.pillar-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border-color: var(--accent-on-light);
}
.pillar-icon { margin-bottom: 16px; color: var(--accent-on-light); line-height: 1; }
.pillar-title {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--text-on-light);
    margin-bottom: 8px;
}
.pillar-desc {
    font-size: 13px;
    color: var(--text-on-light-secondary);
    line-height: 1.5;
}

/* ---- WORK ---- */
.work-section {
    border-top: none;
}

.work-intro {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.work-headline {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.work-cta-link {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--lime);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: gap 0.3s var(--ease);
}

.work-cta-link:hover { gap: 20px; }

.work-cta-link svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s var(--ease);
}

.work-cta-link:hover svg { transform: translateX(4px); }

.work-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.work-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--dark-elevated);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-sm);
    transition: border-color 0.4s ease;
    opacity: 0;
    transform: translateY(40px);
}

.work-item:hover { border-color: var(--lime); }
.work-item:first-child { grid-row: span 2; }

.work-item-visual {
    width: 100%;
    aspect-ratio: 16/10;
    background: var(--dark-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.work-item:first-child .work-item-visual {
    aspect-ratio: auto;
    height: 100%;
    min-height: 400px;
}

.work-item-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease), filter 0.6s var(--ease);
}

.work-item:hover .work-item-visual img {
    transform: scale(1.02);
}

/* Dark overlay on work images that lifts on hover */
.work-item-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.6s var(--ease);
    pointer-events: none;
    z-index: 1;
}

.work-item:hover .work-item-visual::after {
    background: rgba(0, 0, 0, 0);
}

.work-item-info {
    padding: 24px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.work-item-name {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.work-item:hover .work-item-name { color: var(--lime); }

.work-item-type {
    font-size: 12px;
    color: var(--gray-500);
    letter-spacing: 0.05em;
    margin-top: 2px;
}

.work-item-arrow {
    width: 36px;
    height: 36px;
    border: 1px solid var(--dark-border);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease);
    flex-shrink: 0;
}

.work-item:hover .work-item-arrow {
    background: var(--lime);
    border-color: var(--lime);
    transform: rotate(-45deg);
}

.work-item-arrow svg {
    width: 14px;
    height: 14px;
    stroke: var(--gray-500);
    transition: stroke 0.3s ease;
}

.work-item:hover .work-item-arrow svg { stroke: var(--black); }

/* ---- DIABLO ---- */
.diablo-section {
    border-top: 1px solid var(--dark-border);
    background: var(--dark);
    overflow: hidden;
}

.diablo-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.diablo-headline {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 60px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin-bottom: 28px;
}

.diablo-headline .accent { color: var(--lime); }

.diablo-body {
    font-size: 18px;
    color: var(--gray-300);
    line-height: 1.7;
    margin-bottom: 48px;
}

.diablo-product-list {
    list-style: none;
    margin-bottom: 48px;
}

.diablo-product-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--dark-border);
    font-size: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.diablo-product-list li:hover {
    padding-left: 12px;
    color: var(--lime);
    border-color: var(--lime-20);
}

.diablo-product-list li::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--lime);
    flex-shrink: 0;
    transition: width 0.3s ease;
}

.diablo-product-list li:hover::before { width: 40px; }

.diablo-product-list .price {
    margin-left: auto;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    color: var(--gray-500);
}

.btn-diablo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 18px 44px;
    background: transparent;
    color: var(--lime);
    border: 1px solid var(--lime);
    cursor: pointer;
    transition: all 0.3s var(--ease);
    position: relative;
    overflow: hidden;
}

.btn-diablo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--lime);
    transform: translateY(100%);
    transition: transform 0.4s var(--ease);
}

.btn-diablo:hover::before { transform: translateY(0); }

.btn-diablo span, .btn-diablo svg {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.btn-diablo:hover span { color: var(--black); }
.btn-diablo:hover svg { stroke: var(--black); }
.btn-diablo:hover { transform: translateY(-2px); }

/* Diablo Mockup */
.diablo-mockup {
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    position: relative;
}

.mockup-topbar {
    padding: 12px 16px;
    background: var(--dark-elevated);
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--dark-border);
}

.mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--dark-border);
}

.mockup-dot:first-child { background: var(--red); }
.mockup-dot:nth-child(2) { background: #f5a623; }
.mockup-dot:nth-child(3) { background: var(--lime); }

.mockup-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: calc(100% - 44px);
    justify-content: center;
    align-items: center;
    position: relative;
    background: var(--dark-surface);
}

.demo-overlay-btn {
    position: absolute;
    bottom: 24px;
    right: 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.15);
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--lime);
    text-decoration: none;
    transition: all 0.3s var(--ease);
    z-index: 5;
}
.demo-overlay-btn:hover {
    background: var(--lime);
    color: var(--black);
    border-color: var(--lime);
}
.demo-overlay-btn:hover svg { stroke: var(--black); }

/* ---- PRICING ---- */
.pricing-section {
    border-top: none;
}

.section-light.pricing-section {
    border-top: none;
}

.pricing-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.pricing-headline {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 24px;
}

.pricing-body {
    font-size: 18px;
    color: var(--gray-300);
    line-height: 1.7;
    margin-bottom: 40px;
}

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: var(--red-dim);
    border: 1px solid rgba(233, 61, 61, 0.3);
    border-radius: var(--radius-sm);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--red);
}

.pricing-card {
    background: var(--dark-elevated);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-md);
    padding: 56px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--lime), var(--red));
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.pricing-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 24px;
}

.pricing-amount {
    font-family: var(--font-display);
    font-size: 60px;
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 8px;
}

.pricing-amount .per {
    font-size: 20px;
    font-weight: 400;
    color: var(--gray-500);
}

.pricing-original {
    font-size: 16px;
    color: var(--gray-500);
    text-decoration: line-through;
    margin-bottom: 36px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 40px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    font-size: 15px;
    color: var(--off-white);
    border-bottom: 1px solid var(--dark-border);
}

.check-icon {
    width: 18px;
    height: 18px;
    background: var(--lime);
    flex-shrink: 0;
    clip-path: polygon(20% 50%, 40% 70%, 80% 30%, 85% 35%, 40% 80%, 15% 55%);
}

.pricing-badge-item {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 12px;
    background: rgba(45, 122, 0, 0.1);
    color: var(--accent-on-light);
    border-radius: 4px;
}

.btn-pricing {
    width: 100%;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 18px;
    background: var(--lime);
    color: var(--black);
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-pricing::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--white);
    transform: translateY(100%);
    transition: transform 0.4s var(--ease);
}

.btn-pricing:hover::before { transform: translateY(0); }

.btn-pricing span {
    position: relative;
    z-index: 1;
}

.btn-pricing:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(176, 255, 25, 0.15);
}

/* ---- ADD-ONS ---- */
.pricing-addons {
    grid-column: 1 / -1;
    margin-top: 80px;
    padding-top: 64px;
    border-top: 1px solid var(--border-light);
}

.addons-heading {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 32px;
    color: var(--text-on-light);
}

.addons-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.surface-warm {
    background: var(--surface-warm);
}

.addon-item {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s var(--ease);
}
.addon-item:hover {
    border-color: var(--accent-on-light);
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.addon-header {
    display: flex;
    align-items: center;
    padding: 18px 22px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-on-light);
}
.addon-name { flex: 1; }
.addon-name em { color: var(--text-on-light-secondary); font-style: italic; }
.addon-price {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--accent-on-light);
    margin-right: 16px;
}
.addon-toggle {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-on-light-secondary);
    transition: transform 0.3s var(--ease);
    width: 24px;
    text-align: center;
}
.addon-item.open .addon-toggle {
    transform: rotate(45deg);
}
.addon-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
    padding: 0 22px;
}
.addon-item.open .addon-body {
    max-height: 200px;
    padding: 0 22px 18px;
}
.addon-body p {
    font-size: 14px;
    color: var(--text-on-light-secondary);
    line-height: 1.6;
}

/* ---- BOOK SECTION ---- */
.book-section {
    padding: 180px 56px;
    border-top: 1px solid var(--dark-border);
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-light.book-section {
    border-top: 1px solid var(--border-light);
    padding-top: 120px;
}

.book-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    width: 100%;
}

.book-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.book-image-wrap {
    perspective: 800px;
}

.book-image-wrap img {
    max-width: 340px;
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 24px 60px rgba(0, 0, 0, 0.6)) drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4));
    transform: rotateY(-6deg) rotateX(2deg);
    transition: transform 0.6s var(--ease), filter 0.6s var(--ease);
}

.book-image-wrap:hover img {
    transform: rotateY(0deg) rotateX(0deg) translateY(-8px);
    filter: drop-shadow(0 32px 80px rgba(0, 0, 0, 0.5)) drop-shadow(0 12px 30px rgba(0, 0, 0, 0.3));
}

.book-amazon {
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.book-amazon:hover {
    opacity: 1;
}

.book-amazon span {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-500);
}

.book-amazon img {
    height: 20px;
    width: auto;
    filter: brightness(0) invert(1);
}

.book-amazon .amazon-svg {
    height: 24px;
    width: auto;
}

.book-text .section-tag {
    margin-bottom: 28px;
}

.book-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 24px;
}

.book-title .accent { color: var(--lime); }

.book-desc {
    font-size: 18px;
    color: var(--gray-300);
    line-height: 1.7;
    margin-bottom: 36px;
}

.book-stats {
    display: flex;
    gap: 48px;
}

.book-stat-value {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 900;
    color: var(--lime);
    letter-spacing: -0.02em;
}

.book-stat-label {
    font-size: 13px;
    color: var(--gray-500);
    margin-top: 4px;
}

/* ---- TESTIMONIAL ---- */
.testimonial-section {
    padding: 180px 56px;
    border-top: none;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.testimonial-bg {
    position: absolute;
    font-family: var(--font-display);
    font-size: 600px;
    font-weight: 900;
    color: var(--dark-elevated);
    line-height: 0.8;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    user-select: none;
    pointer-events: none;
}

.testimonial-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-video-wrap {
    width: 100%;
    max-width: 720px;
    aspect-ratio: 16/9;
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    margin-bottom: 56px;
    border: 1px solid var(--dark-border);
    transition: all 0.4s var(--ease);
}

.testimonial-video-wrap:hover {
    border-color: var(--lime);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.testimonial-video-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--ease);
}

.testimonial-video-wrap:hover .testimonial-video-poster {
    transform: scale(1.03);
}

.testimonial-video-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.testimonial-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    transition: all 0.3s var(--ease);
}

.testimonial-video-wrap:hover .testimonial-video-play {
    background: var(--lime);
    border-color: var(--lime);
    transform: translate(-50%, -50%) scale(1.1);
}

.testimonial-video-wrap:hover .testimonial-video-play svg {
    fill: var(--black);
}

.testimonial-video-label {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    padding: 8px 20px;
    border-radius: 4px;
    white-space: nowrap;
    transition: opacity 0.3s ease;
}

.testimonial-video-wrap.playing .testimonial-video-play,
.testimonial-video-wrap.playing .testimonial-video-label {
    opacity: 0;
    pointer-events: none;
}

.testimonial-avatars {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid var(--dark-border);
    object-fit: cover;
    opacity: 0.4;
    cursor: pointer;
    transition: all 0.5s var(--ease);
    filter: grayscale(100%);
}

.testimonial-avatar.active {
    width: 80px;
    height: 80px;
    border-color: var(--lime);
    opacity: 1;
    filter: grayscale(0%);
}

.testimonial-dots {
    display: flex;
    gap: 8px;
    margin-top: 32px;
    opacity: 0;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-700);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--lime);
    width: 24px;
    border-radius: 4px;
}

.testimonial-text {
    font-family: var(--font-display);
    font-size: clamp(24px, 3.5vw, 44px);
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: -0.02em;
    text-wrap: balance;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
}

.testimonial-name {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    opacity: 0;
}

.testimonial-company {
    font-size: 14px;
    color: var(--gray-500);
    margin-top: 4px;
    opacity: 0;
}

/* ---- FOUNDER STRIP ---- */
.founder-section {
    padding: 180px 56px;
    border-top: 1px solid var(--dark-border);
    position: relative;
    overflow: hidden;
}

.founder-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.founder-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.06;
}

.founder-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    max-width: 1200px;
    margin: 0 auto;
}

.founder-card {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.founder-photo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--lime-20);
    flex-shrink: 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.founder-info {
    display: flex;
    flex-direction: column;
}

.founder-name {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}

.founder-title {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 20px;
}

.founder-bio {
    font-size: 15px;
    color: var(--gray-300);
    line-height: 1.65;
    max-width: 380px;
}

/* ---- FINAL CTA ---- */
.final-cta {
    padding: 200px 56px;
    text-align: center;
    border-top: 1px solid var(--dark-border);
    position: relative;
    overflow: hidden;
}

.final-glow {
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--lime-10) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.final-headline {
    font-family: var(--font-display);
    font-size: clamp(44px, 8vw, 120px);
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 0.92;
    text-wrap: balance;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.final-headline .accent { color: var(--lime); }

.final-sub {
    font-size: 18px;
    color: var(--gray-300);
    line-height: 1.65;
    text-wrap: balance;
    max-width: 520px;
    margin: 0 auto 56px;
    position: relative;
    z-index: 2;
}

.final-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    position: relative;
    z-index: 2;
}

/* ---- FOOTER ---- */
.footer {
    padding: 80px 56px;
    border-top: 1px solid var(--dark-border);
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.footer-logo img {
    height: 32px;
    width: auto;
    display: block;
}

.footer-desc {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
    max-width: 280px;
}

.footer-col h4 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: var(--gray-300);
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-col a:hover { color: var(--lime); }

.footer-bottom {
    padding: 28px 56px;
    border-top: 1px solid var(--dark-border);
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--gray-500);
}

.footer-bottom a {
    color: var(--gray-500);
    transition: color 0.3s ease;
}

.footer-bottom a:hover { color: var(--lime); }

/* ---- VIDEO PLAY OVERLAY ---- */
.work-item-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s var(--ease);
    pointer-events: none;
}

.work-item[data-video]:hover .work-item-play {
    opacity: 1;
}

.work-item-play::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 18px;
    border-color: transparent transparent transparent var(--white);
    margin-left: 4px;
}

/* ---- SECTION LIGHT THEME ---- */
.section-light {
    background: var(--surface-light);
    color: var(--text-on-light);
}
.section-light .section-number {
    color: var(--border-light);
}
.section-light .section-tag {
    color: var(--accent-on-light);
}
.section-light .section-tag::before {
    background: var(--accent-on-light);
}
.section-light .solution-intro p {
    color: var(--text-on-light);
}
.section-light .solution-intro p strong {
    color: var(--accent-on-light);
}
.section-light .service-block {
    background: #ffffff;
    border-color: var(--border-light);
    border-left: 3px solid var(--border-light);
    border-radius: var(--radius-sm);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.section-light .service-block::before {
    background: linear-gradient(180deg, var(--lime-05) 0%, transparent 100%);
    border-radius: var(--radius-sm);
}
.section-light .service-block:hover {
    background: #fffdf8;
    border-left: 3px solid var(--accent-on-light);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.section-light .service-name {
    color: var(--text-on-light);
}
.section-light .service-desc {
    color: var(--text-on-light-secondary);
}
.section-light .service-tag {
    color: var(--text-on-light-secondary);
    border-color: var(--border-light);
}
.section-light .service-block:hover .service-tag {
    border-color: #ccc;
    color: var(--text-on-light);
}
.section-light .service-number {
    color: var(--accent-on-light);
}
.section-light .service-block:hover .service-name {
    color: var(--accent-on-light);
    transition: color 0.3s ease;
}

.section-light.pricing-section .pricing-headline,
.section-light.pricing-section .pricing-body {
    color: var(--text-on-light);
}
.section-light.pricing-section .pricing-body {
    color: var(--text-on-light-secondary);
}
.section-light .pricing-card {
    background: #ffffff;
    border-color: var(--border-light);
    border-radius: var(--radius-md);
    box-shadow: 0 12px 48px rgba(0,0,0,0.08);
}
.section-light .pricing-label { color: var(--accent-on-light); }
.section-light .pricing-amount { color: var(--text-on-light); }
.section-light .pricing-original { color: var(--text-on-light-secondary); }
.section-light .pricing-features li {
    color: var(--text-on-light);
    border-color: var(--border-light);
}

.section-light.book-section .book-title { color: var(--text-on-light); }
.section-light.book-section .book-desc { color: var(--text-on-light-secondary); }
.section-light.book-section .book-stat-value { color: var(--accent-on-light); }
.section-light.book-section .book-stat-label { color: var(--text-on-light-secondary); }
.section-light.book-section .book-amazon img {
    filter: none;
    mix-blend-mode: normal;
    height: 28px;
}
.section-light.book-section .book-amazon .amazon-svg {
    height: 28px;
}
.section-light.book-section .book-amazon .amazon-svg path:not([fill="#f90"]) {
    fill: var(--text-on-light);
}
.section-light.book-section .book-amazon span {
    color: var(--text-on-light-secondary);
}
.section-light.book-section .section-tag {
    color: var(--accent-on-light);
}
.section-light.book-section .book-image-wrap img {
    filter: drop-shadow(0 24px 60px rgba(0, 0, 0, 0.15)) drop-shadow(0 8px 20px rgba(0, 0, 0, 0.1));
}
.section-light.book-section .book-title .accent {
    color: var(--accent-on-light);
}

/* ---- GREEN GRADIENT SHIMMER ---- */
.section-light .service-number,
.section-light .pricing-label,
.section-light .section-tag,
.section-light .book-title .accent {
    background: linear-gradient(135deg, #2d7a00 0%, #5cb800 50%, #2d7a00 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.section-light .service-block:hover .service-name {
    background: linear-gradient(135deg, #2d7a00 0%, #5cb800 50%, #2d7a00 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 2s ease-in-out infinite;
}

/* ---- WORK VIDEO CARDS ---- */
.work-video-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--dark-elevated);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-sm);
    transition: border-color 0.4s ease;
    opacity: 0;
    transform: translateY(40px);
}
.work-video-card:hover { border-color: var(--lime); }

.work-video-thumb {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.work-video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--ease);
}
.work-video-card:hover .work-video-thumb img {
    transform: scale(1.03);
}

.work-video-thumb iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.work-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease);
    backdrop-filter: blur(8px);
    z-index: 2;
}
.work-video-card:hover .work-video-play {
    background: var(--lime);
    border-color: var(--lime);
    transform: translate(-50%, -50%) scale(1.1);
}
.work-video-card:hover .work-video-play svg {
    fill: var(--black);
}

.work-video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}
.work-video-grid .work-video-thumb {
    aspect-ratio: 16/9;
}

.work-shorts-label {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 40px 0 24px;
    position: relative;
    z-index: 1;
}

.work-shorts-label-text {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-500);
    white-space: nowrap;
}

.work-shorts-label-line {
    flex: 1;
    height: 1px;
    background: var(--dark-border);
}

.work-shorts-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    position: relative;
    z-index: 1;
}
.work-shorts-row .work-video-thumb {
    aspect-ratio: 9/16;
}
.work-shorts-row .work-video-play {
    width: 44px;
    height: 44px;
}
.work-shorts-row .work-video-play svg {
    width: 18px;
    height: 18px;
}
.work-shorts-row .work-item-info {
    padding: 16px 18px;
}
.work-shorts-row .work-item-name {
    font-size: 14px;
}
.work-shorts-row .work-item-type {
    font-size: 11px;
}

.work-video-card .work-item-info {
    padding: 24px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.work-video-card .work-item-name {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    transition: color 0.3s ease;
}
.work-video-card:hover .work-item-name { color: var(--lime); }
.work-video-card .work-item-type {
    font-size: 12px;
    color: var(--gray-500);
    letter-spacing: 0.05em;
    margin-top: 2px;
}

@media (max-width: 768px) {
    .work-video-grid { grid-template-columns: 1fr; }
    .work-shorts-row { grid-template-columns: repeat(2, 1fr); }
}

/* ---- MAGNETIC BUTTON ---- */
[data-magnetic] {
    transition: transform 0.3s var(--ease);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
    .nav { padding: 16px 24px; }
    .nav.scrolled { padding: 12px 24px; }
    .nav-center, .nav-diablo { display: none; }
    .hero-content { padding: 0 24px; }
    .hero-actions { flex-direction: column; align-items: center; }
    .numbered-section { padding: 100px 24px; }
    .section-number { display: none; }
    .gap-metrics { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .work-grid { grid-template-columns: 1fr; }
    .work-item:first-child { grid-row: auto; }
    .diablo-layout { grid-template-columns: 1fr; gap: 48px; }
    .pricing-layout { grid-template-columns: 1fr; gap: 48px; }
    .book-section { padding: 100px 24px; }
    .book-layout { grid-template-columns: 1fr; gap: 48px; text-align: center; }
    .book-text .section-tag { justify-content: center; }
    .book-stats { justify-content: center; }
    .testimonial-section { padding: 120px 24px; }
    .founder-section { padding: 100px 24px; }
    .founder-inner { grid-template-columns: 1fr; gap: 40px; }
    .founder-card { flex-direction: column; text-align: center; align-items: center; }
    .founder-photo { width: 120px; height: 120px; }
    .addons-grid { grid-template-columns: 1fr; }
    .pillars-section > div { grid-template-columns: repeat(2, 1fr) !important; }
    .results-row { grid-template-columns: 1fr !important; }
    .final-cta { padding: 120px 24px; }
    .footer { grid-template-columns: 1fr; padding: 48px 24px; }
    .footer-bottom { padding: 24px; flex-direction: column; gap: 8px; }
}

/* ---- DARK FUNNEL ROWS ---- */
.funnel-rows-dark {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.funnel-row-dark {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 28px 36px;
    background: var(--dark-elevated);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-sm);
    transition: all 0.3s var(--ease);
    opacity: 0;
    transform: translateY(30px);
}

.funnel-row-dark:hover {
    border-color: var(--lime-20);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.funnel-stage-dark {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 4px;
    white-space: nowrap;
    background: var(--lime-10);
    color: var(--lime);
}

.funnel-stage-dark-mid {
    background: var(--lime-05);
}

.funnel-stage-dark-bottom {
    background: rgba(176,255,25,0.03);
}

.funnel-channel-dark {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    flex: 1;
}

.funnel-label-dark {
    font-size: 13px;
    color: var(--gray-300);
}

/* ---- ACTIVE NAV LINK ---- */
.nav-center a.active {
    color: var(--white);
}

/* ---- PRODUCT PRICE UNIT ---- */
.product-price .unit {
    font-size: 14px;
    font-weight: 500;
    -webkit-text-fill-color: var(--text-on-light-secondary);
}

/* ---- SECTION DARK BG UTILITY ---- */
.section-dark {
    background: var(--dark);
}

/* ---- CUSTOM BRIDGE VARIANT ---- */
.section-bridge-custom-work {
    height: 4px;
    background: linear-gradient(90deg, var(--lime) 0%, var(--lime) 20%, transparent 20%, transparent 22%, rgba(176,255,25,0.3) 22%, rgba(176,255,25,0.3) 23%, transparent 23%, transparent 50%, rgba(176,255,25,0.3) 50%, rgba(176,255,25,0.3) 51%, transparent 51%);
    position: relative;
    z-index: 1;
}

/* ---- VIDEO SHOWCASE DARK ---- */
.video-showcase-dark {
    background: var(--dark);
    padding-top: 180px;
}

/* ---- RESULTS SECTION FLUSH ---- */
.results-section-flush {
    padding-bottom: 0;
}

/* ---- STATS SECTION COMPACT ---- */
.stats-section-compact {
    padding: 120px 56px;
}

@media (max-width: 768px) {
    .stats-section-compact {
        padding: 80px 24px;
    }
    .funnel-rows-dark .funnel-row-dark {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 24px;
    }
}

/* ---- MOBILE HAMBURGER MENU ---- */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}
.nav-hamburger span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s var(--ease);
}
.nav-hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav-hamburger.open span:nth-child(2) {
    opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease);
}
.mobile-menu.open {
    opacity: 1;
    visibility: visible;
}
.mobile-menu a {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}
.mobile-menu a:hover {
    color: var(--lime);
}
.mobile-menu .mobile-cta {
    margin-top: 16px;
    padding: 16px 36px;
    background: var(--lime);
    color: var(--black);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
}

@media (max-width: 768px) {
    .nav-hamburger { display: flex; }
    .mobile-menu { display: flex; }
    .nav-center { display: none; }
    .nav-right { display: none; }
}
