/* ===== DESIGN SYSTEM ===== */
:root {
    --bg-primary: #050a18;
    --bg-secondary: #0a1228;
    --bg-card: #0d1730;
    --bg-card-hover: #111e3d;
    --surface: rgba(15, 25, 55, 0.7);
    --gold: #d4a853;
    --gold-light: #f0d78c;
    --gold-dark: #a07830;
    --accent: #2563eb;
    --accent-light: #60a5fa;
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --red: #ef4444;
    --green: #22c55e;
    --border: rgba(212, 168, 83, 0.12);
    --border-strong: rgba(212, 168, 83, 0.25);
    --glow-gold: rgba(212, 168, 83, 0.15);
    --font-display: 'Outfit', system-ui, sans-serif;
    --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    color: inherit;
}

/* ===== UTILITIES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-red {
    color: var(--red);
}

.highlight-gold {
    color: var(--gold);
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(5, 10, 24, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(5, 10, 24, 0.95);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.nav-toybox-logo {
    height: 55px;
    width: auto;
}

.nav-wb-logo {
    height: 45px;
    width: auto;
}

.nav-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(212, 168, 83, 0.08);
    border: 1px solid var(--border-strong);
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--gold);
    text-transform: uppercase;
    white-space: nowrap;
}

.nav-cta-btn {
    padding: 12px 28px;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-primary);
    transition: var(--transition);
    cursor: pointer;
    white-space: nowrap;
}

.nav-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 168, 83, 0.3);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 60px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-primary) 0%, #0a1535 50%, #0d1a40 100%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1340px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(212, 168, 83, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse at 80% 20%, rgba(37, 99, 235, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-content {
    position: relative;
    max-width: 560px;
    flex: 1 1 50%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(212, 168, 83, 0.1);
    border: 1px solid var(--border-strong);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease-out;
}

.badge-icon {
    font-size: 1rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out 0.1s backwards;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 500px;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-cta-group {
    margin-bottom: 36px;
    animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-primary);
    font-size: 1rem;
    font-weight: 700;
    border-radius: 100px;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(212, 168, 83, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(212, 168, 83, 0.4);
}

.btn-large {
    padding: 20px 48px;
    font-size: 1.125rem;
}

.hero-disclaimer {
    margin-top: 12px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 28px;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold);
}

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

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-strong);
}

.hero-video-wrapper {
    position: relative;
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    animation: floatIn 1.2s ease-out 0.3s backwards;
}

.hero-video-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid var(--border-strong);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(212, 168, 83, 0.1);
}

.hero-institutional-video {
    width: 100%;
    max-width: 520px;
    display: block;
    border-radius: 14px;
}

/* ===== MACHINE SHOWCASE ===== */
.section-machine {
    padding: 40px 0 60px;
    background: var(--bg-primary);
}

.machine-showcase {
    display: flex;
    justify-content: center;
}

.machine-showcase-trigger {
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}

.machine-showcase-trigger:hover {
    transform: scale(1.02);
}

.machine-showcase-img {
    max-height: 500px;
    width: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
    transition: var(--transition);
}

.machine-glow {
    position: absolute;
    width: 400px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(212, 168, 83, 0.18) 0%, rgba(37, 99, 235, 0.04) 50%, transparent 70%);
    filter: blur(60px);
    animation: pulse 4s ease-in-out infinite;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.wb-watermark {
    position: absolute;
    top: -10px;
    right: -20px;
    z-index: 0;
    opacity: 0.06;
    pointer-events: none;
}

.wb-watermark-img {
    width: 180px;
    height: auto;
}

.hero-machine-img {
    position: relative;
    z-index: 1;
    max-height: 700px;
    width: auto;
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 60px rgba(212, 168, 83, 0.15));
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-machine-wrapper:hover .hero-machine-img {
    transform: scale(1.03);
}

.licensed-strip {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding: 10px 24px;
    background: rgba(212, 168, 83, 0.08);
    border: 1px solid var(--border-strong);
    border-radius: 100px;
    backdrop-filter: blur(10px);
}

.strip-wb-logo {
    height: 28px;
    width: auto;
    border-radius: 2px;
}

.strip-text {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
}

/* ===== MACHINE VIDEO TRIGGER ===== */
.machine-video-trigger {
    position: relative;
    cursor: pointer;
}

.play-overlay {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px 10px 14px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(212, 168, 83, 0.4);
    border-radius: 100px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    z-index: 3;
}

.machine-video-trigger:hover .play-overlay {
    background: rgba(212, 168, 83, 0.2);
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(212, 168, 83, 0.3);
}

.play-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse-play 2s infinite;
}

@keyframes pulse-play {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(212, 168, 83, 0.5);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(212, 168, 83, 0);
    }
}

.play-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* ===== VIDEO MODAL ===== */
.video-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
}

.video-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
}

.video-modal-content {
    position: relative;
    z-index: 1;
    max-width: 420px;
    width: 90%;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-strong);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(212, 168, 83, 0.1);
    animation: modalIn 0.3s ease;
}

@keyframes modalIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.video-modal-content video {
    width: 100%;
    display: block;
    background: #000;
}

.video-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 1.4rem;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.video-modal-close:hover {
    background: var(--gold);
    color: var(--bg-primary);
}

/* ===== LEAD FORM MODAL ===== */
.lead-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.lead-modal.active {
    display: flex;
}

.lead-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
}

.lead-modal-content {
    position: relative;
    z-index: 1;
    max-width: 440px;
    width: 92%;
    background: linear-gradient(145deg, var(--bg-card), var(--bg-secondary));
    border-radius: 20px;
    border: 1px solid var(--border-strong);
    padding: 40px 36px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(212, 168, 83, 0.1);
    animation: modalIn 0.3s ease;
}

.lead-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-secondary);
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lead-modal-close:hover {
    background: var(--gold);
    color: var(--bg-primary);
}

.lead-modal-header {
    text-align: center;
    margin-bottom: 28px;
}

.lead-modal-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
}

.lead-modal-logo {
    height: 50px;
    width: auto;
}

.lead-modal-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.lead-modal-subtitle {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--gold);
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: var(--font-body);
    transition: var(--transition);
    outline: none;
    box-sizing: border-box;
}

.form-group input:focus {
    border-color: var(--gold);
    background: rgba(212, 168, 83, 0.04);
    box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.1);
}

.form-group input::placeholder {
    color: var(--text-muted);
}

.phone-input-wrapper {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: var(--transition);
    overflow: hidden;
}

.phone-input-wrapper:focus-within {
    border-color: var(--gold);
    background: rgba(212, 168, 83, 0.04);
    box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.1);
}

.phone-prefix {
    padding: 14px 12px 14px 16px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    white-space: nowrap;
    border-right: 1px solid var(--border);
}

.phone-input-wrapper input {
    border: none;
    background: transparent;
    border-radius: 0;
    padding: 14px 16px;
}

.phone-input-wrapper input:focus {
    border: none;
    box-shadow: none;
    background: transparent;
}

.lead-submit-btn {
    width: 100%;
    justify-content: center;
    margin-top: 6px;
    font-size: 0.9rem;
}

.lead-submit-btn.loading {
    opacity: 0.7;
    pointer-events: none;
}

.lead-form-disclaimer {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ===== PLUSH CAROUSEL ===== */
.section-plush {
    background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(10, 18, 42, 1) 50%, var(--bg-primary) 100%);
    padding: 80px 0;
    overflow: hidden;
}

.plush-header {
    text-align: center;
    margin-bottom: 40px;
}

.plush-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.plush-subtitle {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.6;
}

.plush-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.plush-tab {
    padding: 8px 18px;
    border-radius: 100px;
    border: 1px solid var(--border-subtle);
    background: transparent;
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.plush-tab:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.plush-tab.active {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-primary);
    border-color: transparent;
}

.plush-carousel-wrapper {
    position: relative;
    padding: 0 50px;
}

.plush-carousel {
    overflow: hidden;
}

.plush-track {
    display: flex;
    gap: 20px;
}

.plush-card {
    flex: 0 0 200px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.plush-card.hidden {
    display: none;
}

.plush-img-wrap {
    width: 200px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(212, 168, 83, 0.05), rgba(212, 168, 83, 0.02));
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.plush-img-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: radial-gradient(circle at 50% 80%, rgba(212, 168, 83, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.plush-card:hover .plush-img-wrap::before {
    opacity: 1;
}

.plush-img-wrap img {
    max-height: 190px;
    max-width: 170px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.3));
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.plush-card:hover .plush-img-wrap {
    border-color: var(--gold);
    box-shadow: 0 0 30px rgba(212, 168, 83, 0.15), 0 10px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

.plush-card:hover .plush-img-wrap img {
    transform: scale(1.08);
}

.plush-name {
    display: block;
    margin-top: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.plush-franchise {
    display: block;
    font-size: 0.7rem;
    color: var(--gold);
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-top: 4px;
    opacity: 0.7;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border-subtle);
    background: rgba(5, 10, 24, 0.8);
    color: var(--gold);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.carousel-arrow:hover {
    background: var(--gold);
    color: var(--bg-primary);
    border-color: var(--gold);
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

/* ===== PROOF BAR ===== */
.proof-bar {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
}

.proof-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 16px;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
}

/* ===== OPPORTUNITY SECTION ===== */
.section-opportunity {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

/* Opportunity Layout */
.opportunity-layout {
    display: flex;
    align-items: center;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 56px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.04), rgba(10, 18, 40, 0.8));
    border: 1px solid var(--border-strong);
    position: relative;
}

.opportunity-wrapper {
    flex: 1 1 55%;
    text-align: center;
}

.opportunity-machine {
    flex: 1 1 45%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.opp-accent {
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    border-radius: 2px;
}

.opp-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 24px;
}

.opp-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.opp-text strong {
    color: var(--text-primary);
}

.opp-highlight {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.6;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

/* ===== SECTIONS ===== */
.section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(212, 168, 83, 0.1);
    border: 1px solid var(--border);
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-title-left {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    text-align: left;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== PROBLEM / COMPARISON ===== */
.section-problem {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.comparison-card {
    position: relative;
    padding: 36px;
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.card-licensed {
    border-color: var(--border-strong);
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.05), var(--bg-card));
}

.card-glow-border {
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--gold), transparent, var(--gold-dark));
    z-index: -1;
    opacity: 0.3;
}

.card-header-bad,
.card-header-good {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.card-header-bad h3,
.card-header-good h3 {
    font-size: 1.25rem;
    font-weight: 700;
}

.comparison-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.comparison-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.comparison-list li::before {
    content: '✕';
    color: var(--red);
    font-weight: 700;
    flex-shrink: 0;
}

.gold-list li::before {
    content: '✓';
    color: var(--gold);
}

/* ===== HOW IT WORKS ===== */
.section-how {
    background: var(--bg-secondary);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.step-card {
    position: relative;
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    border: 1px solid var(--border);
    text-align: center;
    transition: var(--transition);
    overflow: hidden;
}

.step-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-strong);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.step-number {
    position: absolute;
    top: 12px;
    right: 16px;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: rgba(212, 168, 83, 0.06);
    line-height: 1;
}

.step-icon {
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

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

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.benefit-card {
    padding: 36px;
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-strong);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.benefit-icon {
    margin-bottom: 20px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 168, 83, 0.08);
    border-radius: var(--radius-md);
}

.benefit-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== EXCLUSIVE SECTION ===== */
.section-exclusive {
    background: var(--bg-primary);
}

.exclusive-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.exclusive-badge-col {
    flex-shrink: 0;
}

.badge-img {
    width: 280px;
    border-radius: var(--radius-lg);
    filter: drop-shadow(0 20px 40px rgba(212, 168, 83, 0.15));
}

.exclusive-content-col {
    flex: 1;
}

.exclusive-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 28px;
}

.exclusive-points {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ex-point {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1rem;
    font-weight: 500;
}

.ex-check {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 168, 83, 0.12);
    border-radius: 50%;
    color: var(--gold);
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* ===== BRANDS ===== */
.section-brands {
    background: var(--bg-secondary);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.brand-card {
    padding: 28px;
    border-radius: var(--radius-md);
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.brand-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-4px);
}

.brand-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 8px;
}

.brand-chars {
    font-size: 0.85rem;
    color: var(--text-muted);
}

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

.faq-list {
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    border-color: var(--border-strong);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--gold);
}

.faq-chevron {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== FINAL CTA ===== */
.section-cta {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg-primary), #0a1535);
}

.cta-wrapper {
    position: relative;
    text-align: center;
    padding: 80px 48px;
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.04), rgba(10, 18, 40, 0.8));
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(212, 168, 83, 0.1), transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.2;
    margin: 16px 0;
    position: relative;
}

.cta-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 36px;
    position: relative;
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ===== FOOTER ===== */
.footer {
    padding: 40px 0;
    border-top: 1px solid var(--border);
    background: var(--bg-primary);
}

.footer-content {
    text-align: center;
}

.footer-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.footer-toybox-logo {
    height: 60px;
    width: auto;
}

.footer-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.footer-copy {
    font-size: 0.75rem;
    color: var(--text-muted);
    opacity: 0.6;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }

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

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

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

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ===== RESPONSIVE ===== */
/* ===== VISIBILITY HELPERS ===== */
.mobile-only {
    display: none;
}

.desktop-only {
    display: block;
}

/* ===== MOBILE VIDEO ===== */
.hero-mobile-video video {
    width: 100%;
    border-radius: 16px;
    border: 1px solid var(--border-strong);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

/* ===== RESPONSIVE: TABLET (1024px) ===== */
@media (max-width: 1024px) {
    .hero-inner {
        flex-direction: column;
        text-align: center;
        padding: 0 24px;
    }

    .hero {
        padding-top: 100px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-machine-wrapper {
        margin-top: 40px;
    }

    .hero-machine-img {
        max-height: 400px;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .opportunity-wrapper {
        padding: 36px 28px;
    }

    .exclusive-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .exclusive-content-col {
        text-align: left;
    }

    .section-title-left {
        text-align: center;
    }

    .badge-img {
        width: 200px;
    }
}

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

    /* Show/hide mobile/desktop elements */
    .mobile-only {
        display: block;
    }

    .desktop-only {
        display: none !important;
    }

    /* Navbar */
    .navbar {
        padding: 10px 0;
    }

    .nav-container {
        padding: 0 16px;
    }

    .nav-toybox-logo {
        height: 36px;
    }

    .nav-wb-logo {
        height: 28px;
    }

    .nav-badge {
        display: none;
    }

    .nav-cta-btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }

    /* Hero */
    .hero {
        padding: 90px 0 40px;
        min-height: auto;
    }

    .hero-inner {
        flex-direction: column;
        text-align: center;
        gap: 24px;
        padding: 0 20px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta-group {
        margin-bottom: 24px;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 12px;
        width: 100%;
    }

    .stat-divider {
        display: none;
    }

    .hero-video-wrapper {
        margin-top: 16px;
        width: 100%;
    }

    .machine-glow {
        display: none;
    }

    .hero-institutional-video {
        max-width: 100%;
    }

    .machine-showcase-img {
        max-height: 350px;
    }

    .licensed-strip {
        margin-top: 16px;
    }

    /* Sections */
    .section {
        padding: 60px 0;
    }

    .container {
        padding: 0 16px;
    }

    /* Plush Carousel */
    .plush-header {
        text-align: center;
    }

    .plush-title {
        font-size: 1.5rem;
    }

    .plush-tabs {
        flex-wrap: wrap;
        justify-content: center;
    }

    .plush-carousel-wrapper {
        padding: 0 20px;
    }

    /* Comparison */
    .comparison-grid {
        grid-template-columns: 1fr;
    }

    /* Benefits */
    .benefits-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    /* Proof */
    .proof-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    /* Steps */
    .steps-grid {
        grid-template-columns: 1fr;
    }

    /* Brands */
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Opportunity */
    .opportunity-layout {
        flex-direction: column;
        gap: 32px;
        padding: 28px 20px;
    }

    /* CTA */
    .cta-wrapper {
        padding: 40px 20px;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .cta-trust {
        flex-direction: column;
        align-items: center;
    }

    .btn-large {
        padding: 16px 24px;
        font-size: 0.9rem;
    }

    /* Exclusive section center */
    .exclusive-wrapper {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .exclusive-content-col {
        text-align: center;
    }

    .exclusive-points {
        align-items: center;
    }

    .exclusive-point {
        justify-content: center;
    }

    .section-title-left {
        text-align: center;
    }

    /* Lead Form */
    .lead-modal-content {
        padding: 28px 20px;
        width: 95%;
    }

    .lead-modal-logo {
        height: 40px;
    }

    .lead-modal-title {
        font-size: 1.2rem;
    }

    /* Footer */
    .footer-toybox-logo {
        height: 40px;
    }
}

/* ===== RESPONSIVE: SMALL MOBILE (480px) ===== */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

    .btn-primary {
        padding: 14px 24px;
        font-size: 0.9rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .brands-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 48px 0;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .plush-carousel-wrapper {
        padding: 0 10px;
    }

    .cta-title {
        font-size: 1.3rem;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}