/* ==========================================
   CSS Variables - Silver/Metallic Theme
   ========================================== */
:root {
    --bg-primary: #000000;
    --text-primary: #f5f5f2;
    --text-muted: rgba(255, 255, 255, 0.6);
    --text-subtle: rgba(255, 255, 255, 0.4);
    --accent: #c0c0c0; /* Silver */
    --accent-light: #e5e5e5;
    --accent-dark: #9ca3af;
    --accent-glow: rgba(192, 192, 192, 0.2);
    --accent-soft: rgba(192, 192, 192, 0.05);
    --border: rgba(255, 255, 255, 0.1);
    --border-hover: rgba(255, 255, 255, 0.25);
    --card-bg: rgba(255, 255, 255, 0.03);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================
   Header
   ========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 12px 24px;
    transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease, padding 0.3s ease;
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 24px;
}

.nav {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.logo-img {
    height: 60px;
    width: auto;
    border-radius: 16px;
    pointer-events: none;
    user-select: none;
    position: relative;
    top: 4px;
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-call {
    padding: 9px 18px;
    font-size: 14px;
    font-weight: 700;
    font-family: inherit;
    color: #000;
    text-decoration: none;
    border-radius: 9999px;
    border: none;
    background: linear-gradient(135deg, #fff 0%, #e5e5e5 50%, #c0c0c0 100%);
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(192, 192, 192, 0.2);
}

.btn-call:hover {
    background: linear-gradient(135deg, #fff 0%, #f0f0f0 50%, #e5e5e5 100%);
    box-shadow: 0 4px 12px rgba(192, 192, 192, 0.3);
}

.btn-pricing {
    padding: 9px 12px;
    font-size: 14px;
    font-weight: 700;
    font-family: inherit;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    border-radius: 9999px;
    border: 1px solid transparent;
    background: transparent;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-pricing:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

.btn-login {
    padding: 9px 12px;
    font-size: 14px;
    font-weight: 700;
    font-family: inherit;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    border-radius: 9999px;
    border: 1px solid transparent;
    background: transparent;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-login:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

.btn-register {
    padding: 9px 12px;
    font-size: 14px;
    font-weight: 700;
    font-family: inherit;
    color: #fff;
    background: transparent;
    text-decoration: none;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-register:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}


/* ==========================================
   Hero Section - Scroll Animation
   ========================================== */
.hero-wrapper {
    height: 300vh;
    position: relative;
    width: 100%;
    z-index: 20;
}

.hero-sticky {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-primary);
    overflow: hidden;
    display: flex;
    align-items: center;
    z-index: 10;
    justify-content: center;
}

/* Hero Text - Initial */
.hero-text-initial {
    position: absolute;
    z-index: 20;
    text-align: center;
    pointer-events: none;
    top: 50%;
    transform: translateY(-50%);
    will-change: transform, opacity, filter;
}

.hero-text-initial h1 {
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #fff;
    line-height: 1.2;
    opacity: 1;
}

.hero-logos {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 20px;
}

.hero-logos svg {
    width: 28px;
    height: 28px;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease, transform 0.3s ease;
}

.hero-logos svg:hover {
    color: #fff;
    transform: scale(1.1);
}

.hero-artist-photos {
    display: flex;
    gap: -12px;
    justify-content: center;
    align-items: center;
    margin: 32px 0 24px;
}

.artist-photo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 3px solid var(--bg-primary);
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-left: -12px;
    position: relative;
}

.artist-photo:first-child {
    margin-left: 0;
}

.artist-photo:hover {
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 8px 24px rgba(192, 192, 192, 0.3);
    z-index: 10;
}

.scroll-hint {
    margin-top: 16px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.5);
    opacity: 1;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Hero Text - Secondary */
.hero-text-secondary {
    position: absolute;
    z-index: 20;
    text-align: center;
    pointer-events: none;
    top: 18%;
    padding: 0 16px;
    opacity: 0;
    transform: translateY(20px);
    will-change: transform, opacity;
}

.hero-text-secondary h2 {
    font-size: clamp(30px, 5vw, 48px);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 16px;
}

.hero-text-secondary p {
    font-size: clamp(14px, 2vw, 16px);
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Hero Cards */
.hero-cards-container {
    position: relative;
    z-index: 15;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card {
    position: absolute;
    width: 60px;
    height: 107px;
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* GSAP scrub handles smoothing - no CSS transition needed */
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    will-change: transform;
}

.hero-card:hover {
    box-shadow: 0 12px 40px rgba(192, 192, 192, 0.3), 0 0 20px rgba(192, 192, 192, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: #1a1a1f;
}

.card-inner video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

/* Card gradient backgrounds - silver/metallic themed */
.hero-card:nth-child(1) .card-inner { background: linear-gradient(135deg, #1a1a1f 0%, #2d2d35 50%, #3a3a45 100%); }
.hero-card:nth-child(2) .card-inner { background: linear-gradient(135deg, #252530 0%, #4a4a55 100%); }
.hero-card:nth-child(3) .card-inner { background: linear-gradient(135deg, #18181d 0%, #35353d 50%, #2a2a32 100%); }
.hero-card:nth-child(4) .card-inner { background: linear-gradient(135deg, #1f1f25 0%, #3d3d48 100%); }
.hero-card:nth-child(5) .card-inner { background: linear-gradient(135deg, #151520 0%, #3a3a4a 100%); }
.hero-card:nth-child(6) .card-inner { background: linear-gradient(135deg, #222228 0%, #5a5a65 100%); }
.hero-card:nth-child(7) .card-inner { background: linear-gradient(135deg, #282830 0%, #4d4d55 100%); }
.hero-card:nth-child(8) .card-inner { background: linear-gradient(135deg, #1c1c22 0%, #38383f 50%, #454550 100%); }
.hero-card:nth-child(9) .card-inner { background: linear-gradient(135deg, #201e22 0%, #3f3a40 100%); }
.hero-card:nth-child(10) .card-inner { background: linear-gradient(135deg, #252530 0%, #45454f 100%); }
.hero-card:nth-child(11) .card-inner { background: linear-gradient(135deg, #18181d 0%, #35353d 50%, #2a2a32 100%); }
.hero-card:nth-child(12) .card-inner { background: linear-gradient(135deg, #2f2f38 0%, #55555f 100%); }
.hero-card:nth-child(13) .card-inner { background: linear-gradient(135deg, #1a1a1f 0%, #2d2d35 100%); }
.hero-card:nth-child(14) .card-inner { background: linear-gradient(135deg, #18181d 0%, #2a2a32 100%); }
.hero-card:nth-child(15) .card-inner { background: linear-gradient(135deg, #252530 0%, #4a4a55 100%); }
.hero-card:nth-child(16) .card-inner { background: linear-gradient(135deg, #1f1f25 0%, #3d3d48 100%); }
.hero-card:nth-child(17) .card-inner { background: linear-gradient(135deg, #282830 0%, #4d4d55 100%); }
.hero-card:nth-child(18) .card-inner { background: linear-gradient(135deg, #222228 0%, #5a5a65 100%); }
.hero-card:nth-child(19) .card-inner { background: linear-gradient(135deg, #201e22 0%, #3f3a40 100%); }
.hero-card:nth-child(20) .card-inner { background: linear-gradient(135deg, #252530 0%, #45454f 100%); }

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
    }
}

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

/* ==========================================
   Main Content
   ========================================== */
.main-content {
    position: relative;
    z-index: 1;
    background: var(--bg-primary);
}

/* ==========================================
   Trust Section - OriorAI Style
   ========================================== */
.trust-section {
    position: relative;
    padding: 96px 24px;
    margin-top: 128px;
    background: var(--bg-primary);
    background-image: radial-gradient(ellipse at top, var(--accent-soft) 0%, transparent 70%);
    overflow: hidden;
    width: 100%;
}

.trust-inner {
    text-align: center;
    margin-bottom: 64px;
    opacity: 0;
    transform: translateY(20px);
}

.trust-label {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-subtle);
    margin-bottom: 12px;
}

.trust-platforms {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 32px;
}

.trust-platforms .separator {
    color: rgba(255, 255, 255, 0.3);
}

.trust-stats {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 64px;
    flex-wrap: wrap;
}

.trust-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.trust-counter {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.trust-number {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, #c0c0c0 50%, #e5e5e5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trust-plus {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, #c0c0c0 50%, #e5e5e5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trust-text {
    font-size: 14px;
    color: var(--text-muted);
    text-align: center;
}

/* Platform Logos */
.platform-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.platform-logo {
    font-size: 48px;
    color: var(--text-muted);
    transition: color 0.3s ease;
    opacity: 0.6;
}

.platform-logo:hover {
    color: rgba(255, 255, 255, 0.8);
    opacity: 0.8;
}

.platform-logo svg {
    width: 48px;
    height: 48px;
}

/* ==========================================
   Clients Section - Who We Work With
   ========================================== */
.clients-section {
    padding: 80px 24px;
    background: var(--bg-primary);
}

.clients-section .section-header {
    text-align: center;
    margin-bottom: 48px;
    opacity: 0;
    transform: translateY(20px);
}

.clients-section .section-header h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 500;
    margin-bottom: 12px;
    color: #fff;
}

.clients-section .section-header p {
    font-size: clamp(14px, 2vw, 16px);
    color: var(--text-muted);
}

.clients-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 900px;
    margin: 0 auto;
}

.client-tag {
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
}

.client-tag:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(192, 192, 192, 0.3);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(192, 192, 192, 0.15);
}

@media (max-width: 640px) {
    .clients-section {
        padding: 60px 16px;
    }

    .clients-grid {
        gap: 8px;
    }

    .client-tag {
        padding: 10px 18px;
        font-size: 13px;
    }
}

/* ==========================================
   Video Showcase Section - OriorAI Style
   ========================================== */
.video-showcase-section {
    background: var(--bg-primary);
    padding: 120px 32px;
}

.video-showcase-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.video-showcase-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 64px;
}

.showcase-video {
    width: 14vw;
    max-width: 180px;
    min-width: 100px;
    aspect-ratio: 9 / 16;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
    opacity: 0;
    transform: translateY(20px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.showcase-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-showcase-text {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
}

.video-showcase-text h2 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.video-showcase-text p {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .video-showcase-section {
        padding: 80px 16px;
    }

    .video-showcase-row {
        gap: 8px;
        margin-bottom: 48px;
    }

    .showcase-video {
        width: 13vw;
        min-width: 50px;
        border-radius: 10px;
    }
}

/* ==========================================
   Why Clips Beat Ads Section
   ========================================== */
.clips-vs-ads-section {
    background: var(--bg-primary);
    padding: 120px 24px;
    position: relative;
}

.clips-vs-ads-section .section-header {
    text-align: center;
    margin-bottom: 80px;
}

.clips-vs-ads-section .section-header h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.clips-vs-ads-section .section-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
}

/* Comparison Chart */
.comparison-container {
    max-width: 800px;
    margin: 0 auto 100px;
}

.comparison-chart {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    position: relative;
}

.chart-labels {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.chart-labels .label-views {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.chart-labels .label-time {
    position: absolute;
    bottom: 20px;
    right: 40px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.chart-area {
    height: 200px;
    position: relative;
    margin: 20px 40px 40px;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.chart-line {
    position: absolute;
    inset: 0;
}

.chart-line svg {
    width: 100%;
    height: 100%;
}

.chart-line .line-label {
    display: none;
}

.chart-zone {
    position: absolute;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    border-radius: 4px;
}

.chart-zone.paid-zone {
    top: 30%;
    left: 20%;
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.chart-zone.organic-zone {
    top: 10%;
    right: 10%;
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.chart-caption {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 24px;
}

.caption-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.caption-item .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.caption-item .dot.red {
    background: #ef4444;
}

.caption-item .dot.green {
    background: #22c55e;
}

/* Algorithm Section */
.algorithm-section {
    max-width: 900px;
    margin: 0 auto 100px;
    text-align: center;
}

.algorithm-section h3 {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

.network-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 48px;
}

.algorithm-loop {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.loop-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    min-width: 140px;
    transition: all 0.3s ease;
}

.loop-step:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.loop-step.highlight {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0.05) 100%);
    border-color: rgba(34, 197, 94, 0.3);
}

.loop-step.highlight .step-icon {
    color: #22c55e;
}

.step-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.step-icon svg {
    width: 32px;
    height: 32px;
}

.step-text {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    line-height: 1.4;
}

.loop-arrow {
    color: rgba(255, 255, 255, 0.3);
}

.loop-arrow svg {
    width: 24px;
    height: 24px;
}

.loop-arrow-down {
    display: none;
}

/* Volume Strategy */
.volume-strategy {
    max-width: 800px;
    margin: 0 auto 100px;
    text-align: center;
}

.volume-strategy h3 {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 600;
    color: #fff;
    margin-bottom: 48px;
}

.volume-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.volume-card {
    flex: 1;
    max-width: 250px;
    padding: 40px 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    text-align: center;
}

.volume-card.featured {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0.03) 100%);
    border-color: rgba(34, 197, 94, 0.3);
    transform: scale(1.05);
}

.volume-number {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, #c0c0c0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.volume-card.featured .volume-number {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.volume-label {
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 8px;
}

.volume-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 8px;
}

.volume-visual {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    margin-top: 24px;
    min-height: 40px;
}

.volume-visual.single {
    justify-content: center;
}

.clip-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.volume-card.featured .clip-dot {
    background: rgba(34, 197, 94, 0.5);
}

.volume-card.featured .clip-dot.glow {
    background: #22c55e;
    box-shadow: 0 0 12px #22c55e, 0 0 24px rgba(34, 197, 94, 0.5);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 12px #22c55e, 0 0 24px rgba(34, 197, 94, 0.5); }
    50% { box-shadow: 0 0 20px #22c55e, 0 0 40px rgba(34, 197, 94, 0.7); }
}

.volume-vs {
    font-size: 24px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
}

.volume-caption {
    margin-top: 60px;
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    text-align: center;
}

/* Key Benefits */
.key-benefits {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.benefit-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 28px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 12px;
    color: #22c55e;
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
}

.benefit-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.benefit-text strong {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.benefit-text span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .clips-vs-ads-section {
        padding: 80px 16px;
    }

    .comparison-chart {
        padding: 24px 16px;
    }

    .chart-area {
        margin: 20px 20px 40px;
    }

    .chart-caption {
        flex-direction: column;
        gap: 12px;
    }

    .algorithm-loop {
        flex-direction: column;
    }

    .loop-arrow {
        transform: rotate(90deg);
    }

    .loop-arrow-down {
        display: block;
        transform: none;
    }

    .volume-grid {
        flex-direction: column;
        gap: 24px;
    }

    .volume-card.featured {
        transform: none;
    }

    .volume-vs {
        display: none;
    }

    .key-benefits {
        flex-direction: column;
        align-items: center;
    }

    .benefit-card {
        width: 100%;
        max-width: 320px;
    }
}

/* ==========================================
   Case Study Section
   ========================================== */
.case-study-section {
    background: var(--bg-primary);
    padding: 120px 32px 100px;
    position: relative;
    z-index: 1;
}

.case-study-section .section-header {
    text-align: center;
    margin-bottom: 100px;
}

.case-study-section .section-header h2 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.case-study-section .section-header p {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.case-study-item {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: center;
    margin-bottom: 140px;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 0.8s ease forwards;
}

.case-study-item:last-child {
    margin-bottom: 0;
}

.case-study-item:nth-child(2) {
    animation-delay: 0.1s;
}

.case-study-item:nth-child(3) {
    animation-delay: 0.2s;
}

.case-study-item:nth-child(4) {
    animation-delay: 0.3s;
}

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

.case-study-item-reverse {
    grid-template-columns: 1.2fr 1fr;
}

.case-study-item-reverse .case-study-image {
    order: 2;
}

.case-study-item-reverse .case-study-content {
    order: 1;
}

.case-study-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.case-study-bubble {
    width: 420px;
    height: 420px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.1) 0%, rgba(192, 192, 192, 0.05) 100%);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 0 60px rgba(192, 192, 192, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.case-study-bubble::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.case-study-bubble:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow:
        0 30px 90px rgba(192, 192, 192, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 0 80px rgba(192, 192, 192, 0.1);
}

.case-study-bubble:hover::before {
    opacity: 1;
}

.case-study-bubble img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 0;
    transition: transform 0.5s ease;
}

.case-study-bubble:hover img {
    transform: scale(1.08);
}

.case-study-content {
    padding: 20px;
}

.case-study-content h3 {
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.case-study-stats {
    font-size: 15px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-block;
    padding: 8px 16px;
    background: rgba(192, 192, 192, 0.08);
    border-radius: 20px;
    border: 1px solid rgba(192, 192, 192, 0.2);
}

.case-study-content > p {
    font-size: clamp(17px, 1.6vw, 20px);
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    font-weight: 400;
}

@media (max-width: 1024px) {
    .case-study-item,
    .case-study-item-reverse {
        grid-template-columns: 1fr;
        gap: 50px;
        margin-bottom: 100px;
    }

    .case-study-item-reverse .case-study-image {
        order: 1;
    }

    .case-study-item-reverse .case-study-content {
        order: 2;
    }

    .case-study-bubble {
        width: 350px;
        height: 350px;
    }

    .case-study-content {
        text-align: center;
    }
}

@media (max-width: 640px) {
    .case-study-section {
        padding: 80px 20px 60px;
    }

    .case-study-section .section-header {
        margin-bottom: 60px;
    }

    .case-study-bubble {
        width: 280px;
        height: 280px;
    }

    .case-study-item {
        margin-bottom: 70px;
        gap: 36px;
    }

    .case-study-content {
        padding: 0;
    }

    .case-study-stats {
        font-size: 13px;
        padding: 6px 12px;
    }
}

/* Old stats grid - keep for backward compatibility */
.trust-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.stat-item {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.stat-number {
    font-size: 30px;
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, #c0c0c0 50%, #e5e5e5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-plus {
    font-size: 30px;
    font-weight: 700;
}

.stat-label {
    font-size: 18px;
    color: var(--text-muted);
}

/* ==========================================
   Section Headers - OriorAI Style
   ========================================== */
.section-header {
    text-align: center;
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(20px);
}

.section-header.visible {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}

.section-header h2 {
    font-size: clamp(30px, 4vw, 40px);
    font-weight: 500;
    margin-bottom: 16px;
    color: #fff;
}

.section-header p {
    font-size: clamp(14px, 2vw, 16px);
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ==========================================
   Features / How It Works - OriorAI Style
   ========================================== */
.features-section {
    margin-top: 128px;
    background: #000201;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.features-inner {
    width: 100%;
    background: var(--bg-primary);
    padding: 0 40px;
}

.features-header {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 16px 0;
    text-align: center;
}

.features-header h2 {
    font-size: clamp(30px, 4vw, 40px);
    font-weight: 500;
    margin-bottom: 16px;
    color: #fff;
}

.features-header p {
    font-size: clamp(14px, 2vw, 16px);
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
}

.features-grid {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding-bottom: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.features-timeline {
    position: relative;
    margin-bottom: 200px;
}

.timeline-line {
    position: absolute;
    left: 32px;
    top: 0;
    height: 100%;
    overflow: hidden;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
    mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
}

.timeline-progress {
    position: absolute;
    inset: 0 auto auto 0;
    top: 0;
    width: 2px;
    height: 0;
    background: linear-gradient(to bottom, #e5e5e5 0%, rgba(192, 192, 192, 0.3) 100%);
    border-radius: 9999px;
    box-shadow: 0 0 15px rgba(192, 192, 192, 0.5);
    opacity: 0;
}

.timeline-item {
    display: flex;
    justify-content: flex-start;
    padding: 40px 0 120px;
    min-height: 40vh;
}

.timeline-item:last-child {
    padding-bottom: 40px;
}

.timeline-item-inner {
    position: sticky;
    top: 0;
    align-self: flex-start;
    z-index: 40;
    width: 100%;
    padding-top: 40px;
}

.timeline-dot {
    position: absolute;
    left: 12px;
    top: 40px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dot-inner {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fff 0%, #c0c0c0 100%);
    box-shadow: 0 0 10px rgba(192, 192, 192, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.timeline-content {
    margin-left: 80px;
    padding-right: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.timeline-content h3 {
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 500;
    color: #fff;
    transition: opacity 0.3s ease;
}

.timeline-content p {
    font-size: clamp(14px, 1.5vw, 16px);
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 380px;
}

/* Right side - decorative area with floating bubbles */
.features-visual {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 80px;
}

.features-visual-inner {
    position: sticky;
    top: 96px;
    width: 100%;
    height: 65vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    perspective: 1200px;
    transform-style: preserve-3d;
}

/* 3D Rotating Sphere - video bubbles (OriorAI style) */
.feature-bubble {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.2);
    /* Transitions like OriorAI: duration-200 ease-out */
    transition: transform 0.2s ease-out, opacity 0.2s ease-out;
    transform-style: preserve-3d;
}

.feature-bubble video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

/* ==========================================
   Why Section - OriorAI Style
   ========================================== */
.why-section {
    padding: 96px 24px;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.why-inner {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px 0 48px;
    opacity: 0;
    transform: translateY(40px);
}

.why-grid {
    display: grid;
    grid-template-columns: 0.4fr 0.6fr;
    gap: 112px;
    position: relative;
}

.why-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: -64px;
    margin-left: 48px;
}

.why-left h2 {
    font-size: clamp(30px, 4vw, 40px);
    font-weight: 500;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0 0;
    line-height: 1.2;
}

.inline-logo {
    height: 144px;
    width: auto;
    border-radius: 24px;
    margin: 0 -40px;
    transform: translateY(8px);
    pointer-events: none;
    user-select: none;
}

.why-left p {
    margin-top: -40px;
    font-size: clamp(14px, 2vw, 16px);
    color: var(--text-muted);
}

/* Accordion - OriorAI Style */
.accordion {
    display: flex;
    flex-direction: column;
}

.accordion-item {
    border-bottom: 1px solid var(--border);
    opacity: 0;
    transform: translateY(20px);
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-trigger {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    gap: 16px;
    transition: all 0.3s ease;
}

.accordion-trigger:hover {
    background: rgba(255, 255, 255, 0.02);
}

.accordion-trigger span {
    flex: 1;
    transition: color 0.3s ease;
}

.accordion-trigger:hover span,
.accordion-item.active .accordion-trigger span {
    color: #fff;
}

.accordion-icon {
    flex-shrink: 0;
    margin-top: 2px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.accordion-icon svg {
    width: 16px;
    height: 16px;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.accordion-trigger:hover .accordion-icon {
    background: rgba(255, 255, 255, 0.1);
}

.accordion-trigger:hover .accordion-icon svg {
    color: rgba(255, 255, 255, 0.8);
}

.accordion-item.active .accordion-icon {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(180deg);
}

.accordion-content {
    overflow: hidden;
    height: 0;
    opacity: 0;
}

.accordion-item.active .accordion-content {
    height: auto;
    opacity: 1;
}

/* Initialize first accordion item as open */
.accordion-item:first-child.active .accordion-content {
    height: auto;
    opacity: 1;
}

.accordion-content p {
    padding-bottom: 24px;
    padding-top: 0;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ==========================================
   Pricing Section
   ========================================== */
.pricing-section {
    position: relative;
    padding: 96px 24px;
    background: var(--bg-primary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card-ultra {
    grid-column: 1 / -1;
    margin-top: 4px;
}

.pricing-card-ultra .plan-price {
    font-size: 56px;
}

.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(192, 192, 192, 0.1);
}

.pricing-card.featured {
    border-color: var(--accent);
    background: linear-gradient(to bottom, rgba(192, 192, 192, 0.08), var(--card-bg));
    box-shadow: 0 0 30px rgba(192, 192, 192, 0.15);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: linear-gradient(135deg, #e5e5e5 0%, #c0c0c0 50%, #9ca3af 100%);
    color: #000;
    font-size: 12px;
    font-weight: 600;
    border-radius: 9999px;
    box-shadow: 0 2px 10px rgba(192, 192, 192, 0.3);
}

.plan-name {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.plan-posts {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.plan-price {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #fff 0%, #e5e5e5 30%, #c0c0c0 70%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plan-features {
    list-style: none;
    margin-bottom: 24px;
    text-align: left;
}

.plan-features li {
    font-size: 14px;
    color: var(--text-muted);
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 8px;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li::before {
    content: '✓';
    color: var(--accent);
    font-weight: 600;
}

.btn-plan {
    display: block;
    width: 100%;
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    color: var(--text-primary);
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 9999px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-plan:hover {
    background: var(--text-primary);
    color: var(--bg-primary);
}

.pricing-card.featured .btn-plan {
    background: linear-gradient(135deg, #e5e5e5 0%, #c0c0c0 50%, #a3a3a3 100%);
    color: #000;
    border-color: var(--accent);
    box-shadow: 0 2px 8px rgba(192, 192, 192, 0.2);
}

.pricing-card.featured .btn-plan:hover {
    background: #e5e5e5;
}

/* Enterprise Box */
.enterprise-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 48px;
    background: var(--card-bg);
    border: 1px solid var(--accent);
    border-radius: 24px;
}

.enterprise-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 4px;
}

.enterprise-content p {
    color: var(--text-muted);
}

.enterprise-box .enterprise-price {
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, #c0c0c0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

.btn-enterprise {
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    background: transparent;
    border: 1px solid var(--accent);
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-enterprise:hover {
    background: var(--accent);
    color: #000;
}

/* ==========================================
   About Section - OriorAI Style
   ========================================== */
.about-section {
    position: relative;
    padding: 96px 24px;
    overflow: hidden;
    background: var(--bg-primary);
}

.about-inner {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 16px;
    opacity: 0;
    transform: translateY(30px);
}

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

.about-content h2 {
    font-size: clamp(30px, 4vw, 40px);
    font-weight: 500;
    margin-bottom: 0;
    color: #fff;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
    max-width: 640px;
    margin: 24px auto 0;
    opacity: 0;
    transform: translateY(20px);
}

.about-text p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* ==========================================
   Footer - OriorAI Style
   ========================================== */
.footer {
    position: relative;
    z-index: 10;
    padding: 32px 24px;
    border-top: 1px solid var(--border);
    background: var(--bg-primary);
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-logo {
    height: 80px;
    width: auto;
    border-radius: 16px;
    pointer-events: none;
    user-select: none;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 14px;
    color: var(--text-subtle);
}

.footer-links a {
    color: var(--text-subtle);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-payment {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-payment span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
}

.footer-payment img {
    height: 14px;
    opacity: 0.4;
}

.footer-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-subtle);
    transition: all 0.2s ease;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    transform: translateY(-2px);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

/* ==========================================
   Responsive
   ========================================== */
@media (max-width: 968px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .features-visual {
        display: none;
    }

    .features-inner {
        padding: 0 16px;
    }

    .timeline-item {
        min-height: auto;
        padding: 30px 0 80px;
    }

    .timeline-line {
        left: 32px;
    }

    .timeline-dot {
        left: 12px;
    }

    .why-inner {
        padding: 0 16px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .why-left {
        margin-left: 0;
        margin-top: 0;
        text-align: center;
    }

    .why-left h2 {
        justify-content: center;
    }

    .why-left p {
        margin-top: 8px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .enterprise-box {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .inline-logo {
        height: 100px;
        margin: 0 -24px;
    }
}

@media (max-width: 640px) {
    .header {
        padding: 16px;
    }

    .logo-img {
        height: 50px;
    }

    .hero-card {
        width: 50px;
        height: 89px;
        border-radius: 8px;
    }

    .trust-section {
        margin-top: 64px;
    }

    .trust-inner {
        margin-bottom: 40px;
    }

    .trust-number, .trust-plus {
        font-size: 24px;
    }

    .trust-text {
        font-size: 14px;
    }

    .platform-logos {
        gap: 24px;
    }

    .platform-logo svg {
        width: 36px;
        height: 36px;
    }

    .features-section {
        margin-top: 64px;
    }

    .timeline-content {
        margin-left: 64px;
        padding-right: 16px;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 24px;
    }

    .footer-center {
        order: 2;
    }

    .footer-right {
        align-items: center;
        order: 3;
    }

    .footer-logo {
        height: 60px;
        order: 1;
    }

    .footer-social a {
        width: 36px;
        height: 36px;
    }

    .footer-social svg {
        width: 18px;
        height: 18px;
    }
}

/* ==========================================
   Auth Modal - Blur Glass Effect
   ========================================== */
.auth-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.auth-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.auth-modal {
    position: relative;
    width: 100%;
    max-width: 420px;
    background: rgba(20, 20, 25, 0.6);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 40px;
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: scale(0.95) translateY(20px);
    transition: transform 0.3s ease;
}

.auth-modal-overlay.active .auth-modal {
    transform: scale(1) translateY(0);
}

.auth-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.2s ease;
}

.auth-modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.auth-modal-logo {
    display: block;
    width: 96px;
    height: auto;
    margin: 0 auto 28px;
    border-radius: 16px;
}

.auth-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 28px;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px;
    border-radius: 12px;
}

.auth-tab {
    flex: 1;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.auth-tab:hover {
    color: rgba(255, 255, 255, 0.7);
}

.auth-tab.active {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.auth-title {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #fff 0%, #c0c0c0 50%, #e5e5e5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.auth-form {
    display: block;
}

.auth-form.hidden {
    display: none;
}

.auth-modal .form-group {
    margin-bottom: 20px;
}

.auth-modal .form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.auth-modal .form-group input {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    font-family: inherit;
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    outline: none;
    transition: all 0.2s ease;
}

.auth-modal .form-group input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.auth-modal .form-group input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(192, 192, 192, 0.1);
}

.auth-modal .password-wrapper {
    position: relative;
}

.auth-modal .password-wrapper input {
    padding-right: 48px;
}

.auth-modal .password-toggle {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-modal .password-toggle:hover {
    color: rgba(255, 255, 255, 0.7);
}

.auth-modal .password-toggle svg {
    width: 20px;
    height: 20px;
}

.auth-modal .password-toggle .eye-off {
    display: none;
}

.auth-modal .password-toggle.visible .eye-on {
    display: none;
}

.auth-modal .password-toggle.visible .eye-off {
    display: block;
}

.auth-modal .form-footer {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 16px;
}

.auth-modal .forgot-link {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s ease;
}

.auth-modal .forgot-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

.auth-modal .btn-submit {
    width: 100%;
    padding: 16px 24px;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    color: #000;
    background: linear-gradient(135deg, #fff 0%, #e5e5e5 50%, #c0c0c0 100%);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(192, 192, 192, 0.2);
}

.auth-modal .btn-submit:hover {
    background: linear-gradient(135deg, #fff 0%, #f0f0f0 50%, #e5e5e5 100%);
    box-shadow: 0 4px 16px rgba(192, 192, 192, 0.3);
    transform: translateY(-1px);
}

.auth-modal .btn-submit:active {
    transform: translateY(0);
}

.auth-modal .btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.auth-message {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 13px;
    margin-bottom: 20px;
    display: none;
}

.auth-message.error {
    display: block;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.auth-message.success {
    display: block;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

@media (max-width: 480px) {
    .auth-modal {
        padding: 32px 24px;
        border-radius: 20px;
    }

    .auth-modal-logo {
        width: 80px;
    }

    .auth-title {
        font-size: 20px;
    }
}

/* ==========================================
   Contact Modal - Blur Glass Effect
   ========================================== */
.contact-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.contact-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 420px;
    max-height: 85vh;
    overflow-y: auto;
    background: linear-gradient(145deg, rgba(25, 25, 25, 0.98) 0%, rgba(15, 15, 15, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 28px 26px;
    transform: translateY(20px) scale(0.95);
    transition: transform 0.3s ease;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.contact-modal.active .modal-content {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.modal-close svg {
    width: 16px;
    height: 16px;
}

.modal-content h2 {
    font-size: 21px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.modal-subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-group {
    margin-bottom: 14px;
}

.form-group label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 11px 14px;
    font-size: 13px;
    font-family: inherit;
    color: #fff;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    outline: none;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 90px;
}

.form-hint {
    display: block;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 5px;
}

.btn-submit {
    width: 100%;
    padding: 13px 18px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    color: #000;
    background: linear-gradient(135deg, #fff 0%, #e5e5e5 100%);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 6px;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #fff 0%, #f5f5f5 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
}

.btn-submit:active {
    transform: translateY(0);
}

@media (max-width: 640px) {
    .modal-content {
        padding: 24px 20px;
        border-radius: 16px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .modal-content h2 {
        font-size: 20px;
    }
}
