/* =========================================
   REDitors — OVERHAUL CSS
   All missing, improved, and new styles
   ========================================= */

/* ───── NAV ───── */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: var(--z-nav, 1000);
    padding: 0 clamp(20px, 5vw, 60px);
    height: 72px;
    display: flex;
    align-items: center;
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: all 0.3s ease;
}
.nav.scrolled {
    background: rgba(5,5,5,0.97);
    border-bottom-color: rgba(255,255,255,0.1);
}
.nav-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}
.logo-wrapper { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo {
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: #fff;
    text-decoration: none;
    position: relative;
}
.logo:hover { opacity: 0.8; }
.version {
    font-size: 0.65rem;
    font-weight: 700;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 20px;
    padding: 2px 8px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
}
.nav-center { display: flex; align-items: center; gap: 8px; }
.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    padding: 6px 14px;
    border-radius: 8px;
    transition: all 0.2s;
}
.nav-link:hover, .nav-link.active { color: #fff; background: rgba(255,255,255,0.08); }
.nav-right { display: flex; align-items: center; gap: 10px; }
.nav-icon-btn {
    width: 36px; height: 36px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    background: transparent;
    color: rgba(255,255,255,0.65);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}
.nav-icon-btn:hover { background: rgba(255,255,255,0.08); color: #fff; }
.nav-icon-btn svg { width: 16px; height: 16px; }
.lang-switch {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: rgba(255,255,255,0.65);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 10px;
    cursor: pointer;
    outline: none;
}
.theme-toggle {
    width: 36px; height: 36px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    background: transparent;
    color: rgba(255,255,255,0.65);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
}
.theme-toggle:hover { background: rgba(255,255,255,0.08); color: #fff; }
.nav-btn-primary {
    background: #fff; color: #000;
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
}
.nav-btn-primary:hover { background: #e5e5e5; transform: translateY(-1px); }
.nav-btn-secondary {
    color: rgba(255,255,255,0.7);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.2s;
}
.nav-btn-secondary:hover { color: #fff; background: rgba(255,255,255,0.06); }

/* User avatar */
.user-avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: #fff;
    color: #000;
    font-weight: 800;
    font-size: 0.875rem;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
}
.user-menu { position: relative; }
.user-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    background: rgba(10,10,10,0.97);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 8px;
    display: none;
    min-width: 220px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    z-index: 1100;
}
.user-menu:hover .user-dropdown { display: block; }

/* Mobile Toggle */
.mobile-menu-toggle {
    width: 36px; height: 36px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
}
.mobile-menu-toggle span {
    width: 18px; height: 1.5px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
    display: block;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 72px; left: 0; right: 0; bottom: 0;
    background: rgba(5,5,5,0.98);
    z-index: 999;
    display: none;
    flex-direction: column;
    padding: 40px 24px;
    backdrop-filter: blur(20px);
}
.mobile-menu.open { display: flex; }
.mobile-menu-content { display: flex; flex-direction: column; gap: 8px; }
.mobile-menu-link {
    font-size: 1.25rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: color 0.2s;
}
.mobile-menu-link:hover { color: #fff; }
.mobile-menu-divider { height: 1px; background: rgba(255,255,255,0.1); margin: 16px 0; }
.mobile-menu-cta {
    background: #fff; color: #000 !important;
    padding: 16px 24px;
    border-radius: 12px;
    text-align: center;
    font-weight: 700;
    margin-top: 8px;
    border-bottom: none !important;
}

/* ───── SEARCH MODAL ───── */
.search-modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.9);
    z-index: 2000;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding-top: 80px;
    backdrop-filter: blur(10px);
}
.search-modal.open { display: flex; }
.search-modal-content {
    background: rgba(10,10,10,0.97);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    width: 100%;
    max-width: 640px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.search-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.search-header svg { width: 18px; height: 18px; color: rgba(255,255,255,0.4); flex-shrink: 0; }
.search-header input {
    flex: 1; background: transparent; border: none; outline: none;
    color: #fff; font-size: 1rem; font-family: inherit;
}
.search-header input::placeholder { color: rgba(255,255,255,0.3); }
.search-close { background: transparent; border: none; color: rgba(255,255,255,0.4); cursor: pointer; padding: 4px; }
.search-close:hover { color: #fff; }
.search-results { padding: 16px; }
.search-category h4 { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.3); padding: 8px 12px; }
.search-item {
    display: flex; align-items: center; gap: 12px;
    padding: 12px; border-radius: 10px; cursor: pointer;
    color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.9rem;
    transition: all 0.15s;
}
.search-item:hover { background: rgba(255,255,255,0.06); color: #fff; }
.search-item svg { width: 16px; height: 16px; color: rgba(255,255,255,0.4); }

/* ───── LOADING SCREEN ───── */
.loading-screen {
    position: fixed;
    inset: 0;
    background: #050505;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
}
.loading-screen.hidden { opacity: 0; pointer-events: none; }
.loading-content { text-align: center; }
.loading-logo {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: #fff;
    margin-bottom: 32px;
}
.loading-bar {
    width: 200px;
    height: 2px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    margin: 0 auto 16px;
    overflow: hidden;
}
.loading-progress {
    height: 100%;
    background: #fff;
    border-radius: 2px;
    width: 0;
    animation: loading 2s ease-in-out forwards;
}
.loading-text {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.3);
    font-family: 'JetBrains Mono', monospace;
}

/* ───── HERO ───── */
.hero-header {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #050505;
    padding-top: 72px;
}
.hero-background { position: absolute; inset: 0; z-index: 1; }
.hero-gradient {
    position: absolute; inset: 0;
    background:
        radial-gradient(circle at 30% 50%, rgba(255,255,255,0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.02) 0%, transparent 40%);
}
.hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px clamp(20px, 5vw, 80px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}
.hero-content { max-width: 600px; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 99px;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255,255,255,0.75);
    margin-bottom: 28px;
    letter-spacing: 0.02em;
}
.badge-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #4ade80;
    animation: pulse 2s ease-in-out infinite;
}
.hero-title {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: #fff;
    margin-bottom: 24px;
}
.hero-title-gradient {
    background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.6) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}
.hero-description {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    line-height: 1.7;
    color: rgba(255,255,255,0.55);
    margin-bottom: 36px;
    max-width: 520px;
}
.hero-cta-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 16px;
}
.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #000;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.25s;
    letter-spacing: -0.01em;
}
.btn-hero-primary:hover { background: #e5e5e5; transform: translateY(-2px); box-shadow: 0 12px 30px rgba(255,255,255,0.15); }
.btn-hero-primary svg { width: 16px; height: 16px; }
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.7);
    padding: 14px 20px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.25s;
}
.btn-hero-secondary:hover { color: #fff; background: rgba(255,255,255,0.06); transform: translateY(-1px); }
.btn-hero-secondary svg { width: 16px; height: 16px; }
.hero-sub-note { font-size: 0.78rem; color: rgba(255,255,255,0.35); margin-bottom: 40px; }
.hero-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}
.stat-item { }
.stat-number {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 4px;
}
.stat-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.35);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Preview Window */
.hero-preview { position: relative; flex-shrink: 0; }
.preview-window {
    background: rgba(10,10,10,0.9);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.05);
    width: 100%;
    max-width: 560px;
    backdrop-filter: blur(20px);
}
.preview-titlebar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(255,255,255,0.02);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.preview-dots { display: flex; gap: 7px; }
.preview-dots span {
    width: 12px; height: 12px;
    border-radius: 50%;
    display: block;
}
.dot-red { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green { background: #28c840; }
.preview-title { font-size: 0.75rem; color: rgba(255,255,255,0.35); font-family: 'JetBrains Mono', monospace; }
.preview-body { padding: 0; }
.preview-viewport {
    height: 180px;
    background: #000;
    position: relative;
    overflow: hidden;
}
.preview-film-frame {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.film-strip-line {
    width: 100%;
    height: 12px;
    background: repeating-linear-gradient(90deg, #111 0px, #111 18px, #1a1a1a 18px, #1a1a1a 28px);
    flex-shrink: 0;
}
.film-strip-content {
    flex: 1;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #050505 100%);
    position: relative;
    overflow: hidden;
}
.film-light-beam {
    position: absolute;
    top: -20%;
    left: 20%;
    width: 30%;
    height: 160%;
    background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.04) 50%, transparent 100%);
    transform: skewX(-10deg);
    animation: float 4s ease-in-out infinite;
}
.preview-controls { padding: 12px 16px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.preview-toolbar { display: flex; gap: 8px; }
.ptb-icon {
    width: 34px; height: 34px;
    border-radius: 8px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.2s;
}
.ptb-icon:hover, .ptb-icon.active { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.2); }
.ptb-icon svg { width: 14px; height: 14px; }
.preview-timeline { padding: 12px 16px 16px; display: flex; flex-direction: column; gap: 6px; position: relative; }
.ptl-track {
    height: 28px;
    background: rgba(255,255,255,0.03);
    border-radius: 6px;
    position: relative;
    border: 1px solid rgba(255,255,255,0.06);
    overflow: hidden;
}
.ptl-clip {
    position: absolute;
    height: 100%;
    background: rgba(255,255,255,0.15);
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.2);
}
.ptl-audio {
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,255,255,0.1);
}
.ptl-playhead {
    position: absolute;
    top: 0; bottom: 0;
    left: 35%;
    width: 2px;
    background: rgba(255,255,255,0.8);
    border-radius: 2px;
}
.float-tag {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(10,10,10,0.9);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    padding: 8px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #fff;
    backdrop-filter: blur(10px);
    white-space: nowrap;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.float-tag svg { width: 14px; height: 14px; color: #4ade80; }
.tag-top-right { top: -16px; right: -16px; }
.tag-bottom-left { bottom: -16px; left: -16px; }

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.3);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 3;
    animation: fadeIn 2s ease 2s both;
}
.scroll-mouse {
    width: 24px; height: 36px;
    border: 1.5px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}
.scroll-wheel {
    width: 3px; height: 6px;
    background: rgba(255,255,255,0.5);
    border-radius: 2px;
    animation: scrollWheel 2s ease-in-out infinite;
}
@keyframes scrollWheel {
    0%, 100% { opacity: 1; transform: translateY(0); }
    50% { opacity: 0.3; transform: translateY(8px); }
}

/* ───── PARTNERS MARQUEE ───── */
.partners-section {
    padding: 40px 0;
    background: rgba(255,255,255,0.02);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
}
.partners-title {
    text-align: center;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.25);
    margin-bottom: 28px;
    font-weight: 600;
}
.marquee-wrapper { position: relative; overflow: hidden; }
.marquee-wrapper::before, .marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 120px;
    z-index: 2;
}
.marquee-wrapper::before { left: 0; background: linear-gradient(90deg, #050505, transparent); }
.marquee-wrapper::after { right: 0; background: linear-gradient(-90deg, #050505, transparent); }
.marquee-track {
    display: flex;
    gap: 60px;
    animation: marqueeScroll 25s linear infinite;
    width: max-content;
}
.partner-logo {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.2);
    white-space: nowrap;
    transition: color 0.3s;
    cursor: default;
}
.partner-logo:hover { color: rgba(255,255,255,0.5); }
@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ───── HOW IT WORKS ───── */
.how-it-works-section {
    padding: clamp(80px, 10vw, 120px) 0;
    background: #050505;
}
.steps-grid {
    display: flex;
    align-items: center;
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
}
.step-card {
    flex: 1;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
    padding: 40px 32px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
.step-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s;
}
.step-card:hover::before { opacity: 1; }
.step-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.15); }
.step-number {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255,255,255,0.06);
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 20px;
    font-family: 'JetBrains Mono', monospace;
}
.step-icon {
    width: 48px; height: 48px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.7);
}
.step-icon svg { width: 22px; height: 22px; }
.step-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}
.step-card p { font-size: 0.9rem; color: rgba(255,255,255,0.45); line-height: 1.65; }
.step-connector {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    color: rgba(255,255,255,0.15);
}
.step-connector svg { width: 24px; height: 24px; }
.connector-line { display: none; }

/* ───── FEATURES BENTO ───── */
.features-section { padding: clamp(80px, 10vw, 120px) 0; }
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.bento-item {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
.bento-item:hover {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.14);
    transform: translateY(-2px);
}
.bento-large { grid-column: span 2; }
.bento-wide { grid-column: span 2; }
.bento-icon {
    width: 48px; height: 48px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.7);
}
.bento-icon svg { width: 22px; height: 22px; }
.bento-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}
.bento-description {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.65;
    margin-bottom: 20px;
}
.bento-stats {
    display: flex;
    gap: 24px;
    margin-top: 24px;
}
.bstat .bstat-val {
    display: block;
    font-size: 1.6rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.04em;
}
.bstat .bstat-label {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.bento-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.bento-list li {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.875rem; color: rgba(255,255,255,0.55);
}
.bento-list li svg { width: 14px; height: 14px; color: rgba(255,255,255,0.4); flex-shrink: 0; }

/* Caption Demo */
.bento-demo.caption-demo {
    margin-top: 24px;
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 16px;
    font-family: 'JetBrains Mono', monospace;
}
.caption-line {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.3);
    padding: 4px 0;
    transition: all 0.3s;
}
.caption-line.active { color: #fff; }

/* Silence Demo */
.silence-demo { margin-top: 20px; }
.silence-wave {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 48px;
}
.sw {
    flex: 1;
    background: rgba(255,255,255,0.4);
    border-radius: 2px 2px 0 0;
    min-height: 4px;
}
.sw-removed { background: rgba(239,68,68,0.5); }
.silence-label {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.25);
    margin-top: 8px;
}

/* Scene Demo */
.scene-demo { margin-top: 20px; }
.scene-strip {
    display: flex;
    height: 36px;
    border-radius: 8px;
    overflow: hidden;
    gap: 2px;
    background: rgba(0,0,0,0.5);
}
.scene-seg {
    background: rgba(255,255,255,0.08);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    color: rgba(255,255,255,0.3);
    font-family: 'JetBrains Mono', monospace;
    flex-shrink: 0;
}
.scene-cut {
    width: 2px;
    background: rgba(255,255,255,0.6);
    flex-shrink: 0;
}

/* Text Edit Demo */
.text-edit-demo {
    margin-top: 20px;
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 16px;
}
.ted-line {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    line-height: 2;
}
.ted-del {
    text-decoration: line-through;
    color: rgba(239,68,68,0.6);
    background: rgba(239,68,68,0.1);
    padding: 0 3px;
    border-radius: 3px;
}
.ted-keep {
    color: #fff;
    background: rgba(255,255,255,0.08);
    padding: 0 3px;
    border-radius: 3px;
}

.features-cta {
    text-align: center;
    margin-top: 48px;
}
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.25s;
}
.btn-outline:hover { color: #fff; background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.35); }
.btn-outline svg { width: 16px; height: 16px; }

/* ───── TESTIMONIALS ───── */
.testimonials-section { padding: clamp(80px, 10vw, 120px) 0; }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.testimonial-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s;
}
.testimonial-card:hover { background: rgba(255,255,255,0.04); transform: translateY(-2px); }
.t-stars { font-size: 1rem; color: #facc15; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.65);
    margin-bottom: 24px;
    font-style: italic;
}
.testimonial-header { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    display: flex; align-items: center; justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    color: #fff;
    flex-shrink: 0;
}
.testimonial-author h4 { font-size: 0.9rem; font-weight: 700; color: #fff; margin-bottom: 2px; }
.testimonial-author p { font-size: 0.8rem; color: rgba(255,255,255,0.35); }

/* ───── PRICING TEASER ───── */
.pricing-teaser-section { padding: clamp(80px, 10vw, 120px) 0; background: rgba(255,255,255,0.01); }
.pricing-teaser-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}
.pt-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.3s;
    position: relative;
}
.pt-card h3 { font-size: 1.1rem; font-weight: 700; color: rgba(255,255,255,0.7); }
.pt-price {
    font-size: 2.8rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.04em;
    line-height: 1;
}
.pt-price span { font-size: 1rem; font-weight: 400; color: rgba(255,255,255,0.35); }
.pt-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.pt-card ul li {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.875rem; color: rgba(255,255,255,0.55);
}
.pt-card ul li svg { width: 14px; height: 14px; color: rgba(255,255,255,0.5); flex-shrink: 0; }
.pt-btn {
    display: block;
    text-align: center;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.25s;
    margin-top: auto;
}
.pt-btn:hover { background: rgba(255,255,255,0.06); color: #fff; }
.pt-btn-primary {
    background: #fff !important;
    color: #000 !important;
    border-color: #fff !important;
}
.pt-btn-primary:hover { background: #e5e5e5 !important; transform: translateY(-1px); }
.pt-popular {
    border-color: rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.04);
    box-shadow: 0 0 0 1px rgba(255,255,255,0.1);
}
.pt-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: #000;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: 99px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
}
.pricing-note {
    text-align: center;
    margin-top: 36px;
    font-size: 0.875rem;
}
.pricing-note a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.pricing-note a:hover { color: #fff; }

/* ───── FAQ ───── */
.faq-section { padding: clamp(80px, 10vw, 120px) 0; }
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.faq-item {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.25s;
}
.faq-item.active {
    border-color: rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.04);
}
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    gap: 16px;
    user-select: none;
}
.faq-question h3 {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    margin: 0;
    transition: color 0.2s;
}
.faq-question svg {
    width: 18px; height: 18px;
    color: rgba(255,255,255,0.3);
    flex-shrink: 0;
    transition: transform 0.3s;
}
.faq-item.active .faq-question h3 { color: #fff; }
.faq-item.active .faq-question svg { transform: rotate(180deg); color: rgba(255,255,255,0.6); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 24px;
}
.faq-answer p { font-size: 0.9rem; color: rgba(255,255,255,0.45); line-height: 1.7; }
.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 24px 20px;
}

/* ───── FINAL CTA ───── */
.final-cta-section {
    padding: clamp(80px, 12vw, 140px) 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: #050505;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.final-cta-content { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.cta-glow {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
    pointer-events: none;
}
.final-cta-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.04em;
    margin-bottom: 20px;
    line-height: 1.1;
}
.final-cta-description {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.65;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.final-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.final-cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #000;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.25s;
}
.final-cta-btn-primary:hover { background: #e5e5e5; transform: translateY(-2px); box-shadow: 0 16px 40px rgba(255,255,255,0.15); }
.cta-arrow { font-size: 1.2rem; }
.final-cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 16px 28px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.7);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.25s;
}
.final-cta-btn-secondary:hover { color: #fff; background: rgba(255,255,255,0.06); }
.final-trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}
.final-trust-badges span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
    font-weight: 500;
}
.final-trust-badges svg { width: 14px; height: 14px; color: rgba(255,255,255,0.2); }

/* ───── FOOTER ───── */
.footer {
    background: #030303;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 80px clamp(20px,5vw,80px) 0;
}
.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 80px;
    padding-bottom: 60px;
}
.footer-logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: #fff;
    margin-bottom: 12px;
}
.footer-tagline {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.3);
    margin-bottom: 28px;
    line-height: 1.6;
}
.social-links { display: flex; gap: 10px; }
.social-link {
    width: 38px; height: 38px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: all 0.2s;
}
.social-link:hover { color: #fff; background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.2); }
.social-link svg { width: 16px; height: 16px; }
.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}
.footer-column h4 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.5);
    margin-bottom: 20px;
}
.footer-column a {
    display: block;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.2s;
}
.footer-column a:hover { color: rgba(255,255,255,0.7); }
.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.2); }
.footer-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-badge {
    font-size: 0.7rem;
    font-weight: 600;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
    padding: 4px 10px;
    color: rgba(255,255,255,0.25);
    letter-spacing: 0.04em;
}

/* ───── COOKIE BANNER ───── */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    max-width: 500px;
    margin: 0 auto;
    background: rgba(10,10,10,0.97);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 20px 24px;
    z-index: 5000;
    display: none;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    animation: slideInUp 0.4s ease;
}
.cookie-content p { font-size: 0.875rem; color: rgba(255,255,255,0.6); margin-bottom: 16px; line-height: 1.5; }
.cookie-content p a { color: rgba(255,255,255,0.8); text-decoration: underline; }
.cookie-buttons { display: flex; gap: 10px; }
.cookie-btn-accept {
    flex: 1;
    background: #fff; color: #000;
    border: none; border-radius: 8px;
    padding: 10px;
    font-weight: 700;
    font-size: 0.875rem;
    cursor: pointer;
    transition: background 0.2s;
}
.cookie-btn-accept:hover { background: #e5e5e5; }
.cookie-btn-decline {
    padding: 10px 16px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s;
}
.cookie-btn-decline:hover { color: #fff; border-color: rgba(255,255,255,0.3); }

/* ───── SECTION SHARED STYLES ───── */
.section-header {
    text-align: center;
    margin-bottom: clamp(48px, 7vw, 80px);
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}
.section-header + * { margin-top: 0; }
.section-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 99px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.45);
    margin-bottom: 20px;
}
.section-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 18px;
    letter-spacing: -0.03em;
    color: #fff;
}
.section-description {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    color: rgba(255,255,255,0.4);
    line-height: 1.65;
    max-width: 600px;
    margin: 0 auto;
}

/* ───── RESPONSIVE ───── */
@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; gap: 60px; }
    .hero-preview { display: none; }
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .bento-large { grid-column: span 2; }
    .bento-wide { grid-column: span 2; }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-teaser-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-content { grid-template-columns: 1fr; gap: 40px; }
    .footer-links { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { flex-direction: column; }
    .step-connector { transform: rotate(90deg); padding: 4px; }
}
@media (max-width: 768px) {
    .nav-center { display: none; }
    .mobile-menu-toggle { display: flex; }
    .nav-icon-btn:not(#searchBtn) { display: none; }
    .lang-switch { display: none; }
    .theme-toggle { display: none; }
    .bento-grid { grid-template-columns: 1fr; }
    .bento-large, .bento-wide { grid-column: span 1; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .pricing-teaser-grid { grid-template-columns: 1fr; }
    .footer-links { grid-template-columns: repeat(2, 1fr); }
    .final-cta-buttons { flex-direction: column; align-items: stretch; }
    .final-cta-btn-primary, .final-cta-btn-secondary { justify-content: center; }
    .steps-grid { flex-direction: column; }
}
@media (max-width: 480px) {
    .hero-title { font-size: 2.5rem; }
    .footer-links { grid-template-columns: 1fr 1fr; }
    .hero-stats { gap: 20px; }
}