/* ═══════════════════════════════════════════════════════ */
/* StudioRam — Design System                              */
/* ═══════════════════════════════════════════════════════ */

:root {
    /* Core Colors */
    --bg-primary: #0a0a0f;
    --bg-secondary: #111118;
    --bg-tertiary: #1a1a24;
    --bg-card: #14141e;
    --bg-card-hover: #1a1a28;

    /* Accent — Cyan (Signal Noir) */
    --cyan: #00ced1;
    --cyan-dim: #00a5a8;
    --cyan-glow: rgba(0, 206, 209, 0.3);
    --cyan-subtle: rgba(0, 206, 209, 0.08);

    /* Accent — Gold */
    --gold: #d4a017;
    --gold-dim: #b8891a;

    /* Text */
    --text-primary: #f0f0f5;
    --text-secondary: #e0e0ea;
    --text-muted: #b8b8cc;

    /* Border */
    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(0, 206, 209, 0.3);

    /* Sizing */
    --nav-height: 72px;
    --container-max: 1200px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

body {
    font-family: 'Outfit', -apple-system, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ═══════════ Typography ═══════════ */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

/* ═══════════ Navigation ═══════════ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    z-index: 1000;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s ease;
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav-logo {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.logo-studio {
    color: var(--text-secondary);
    font-weight: 400;
}

.logo-ram {
    color: var(--cyan);
    font-weight: 900;
}

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

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.2s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--cyan);
    transition: width 0.3s var(--ease-out);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-btn {
    font-size: 14px;
    font-weight: 600;
    color: var(--bg-primary);
    background: var(--cyan);
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}

.nav-btn:hover {
    background: #00e5e8;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px var(--cyan-glow);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ═══════════ Buttons ═══════════ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 15px;
    border: none;
    border-radius: var(--radius-sm);
    padding: 12px 24px;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    text-decoration: none;
}

.btn-primary {
    background: var(--cyan);
    color: var(--bg-primary);
}

.btn-primary:hover {
    background: #00e5e8;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--cyan-glow);
}

.btn-ghost {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.btn-ghost:hover {
    border-color: var(--cyan);
    color: var(--cyan);
    background: var(--cyan-subtle);
}

.btn-outline {
    background: transparent;
    color: var(--cyan);
    border: 1px solid var(--cyan-dim);
}

.btn-outline:hover {
    background: var(--cyan);
    color: var(--bg-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--cyan-glow);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 17px;
    border-radius: var(--radius-md);
}

/* ═══════════ Hero ═══════════ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--nav-height) + 40px) 24px 60px;
    position: relative;
    overflow: hidden;
    max-width: var(--container-max);
    margin: 0 auto;
    gap: 40px;
}

.hero-bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(0, 206, 209, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 206, 209, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

.hero-glow {
    position: absolute;
    top: -200px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--cyan-glow) 0%, transparent 70%);
    filter: blur(80px);
    opacity: 0.4;
    pointer-events: none;
    animation: glowPulse 6s ease-in-out infinite;
}

@keyframes glowPulse {

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

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

.hero-content {
    flex: 1;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--cyan);
    background: var(--cyan-subtle);
    border: 1px solid rgba(0, 206, 209, 0.2);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s var(--ease-out) both;
}

.hero-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 24px;
}

.hero-line {
    display: block;
    animation: fadeInUp 0.6s var(--ease-out) both;
}

.hero-line:nth-child(1) {
    animation-delay: 0.1s;
}

.hero-line:nth-child(2) {
    animation-delay: 0.2s;
}

.hero-line:nth-child(3) {
    animation-delay: 0.3s;
}

.hero-accent {
    background: linear-gradient(135deg, var(--cyan) 0%, #00e5e8 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 500px;
    margin-bottom: 32px;
    animation: fadeInUp 0.6s var(--ease-out) 0.4s both;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    animation: fadeInUp 0.6s var(--ease-out) 0.5s both;
}

.hero-stats {
    display: flex;
    gap: 32px;
    animation: fadeInUp 0.6s var(--ease-out) 0.6s both;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat-value {
    font-size: 28px;
    font-weight: 800;
    color: var(--cyan);
    font-family: 'JetBrains Mono', monospace;
}

.hero-stat-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Hero Visual — Floating Cards */
.hero-visual {
    flex: 0 0 400px;
    height: 500px;
    position: relative;
    z-index: 1;
}

.hero-card {
    position: absolute;
    width: 220px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: all 0.5s var(--ease-out);
    animation: floatIn 0.8s var(--ease-out) both;
}

.hero-card:hover {
    transform: translateY(-8px) scale(1.03) !important;
    border-color: var(--cyan-dim);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 40px var(--cyan-glow);
}

.hero-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: top center;
}

.hero-card-label {
    padding: 10px 14px;
    background: var(--bg-card);
    font-size: 13px;
    font-weight: 600;
    color: var(--cyan);
}

.hero-card-1 {
    top: 0;
    left: 0;
    transform: rotate(-3deg);
    animation-delay: 0.3s;
}

.hero-card-2 {
    top: 40px;
    left: 120px;
    transform: rotate(2deg);
    animation-delay: 0.5s;
    z-index: 1;
}

.hero-card-3 {
    top: 80px;
    left: 240px;
    transform: rotate(-1deg);
    animation-delay: 0.7s;
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* ═══════════ Sections ═══════════ */
.section {
    padding: 100px 0;
    position: relative;
}

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

.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--cyan);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    margin-bottom: 16px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--cyan), #00e5e8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* ═══════════ Problem Section ═══════════ */
.problem-section {
    background: var(--bg-secondary);
}

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

.problem-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    transition: all 0.3s var(--ease-out);
}

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

.problem-card-solution {
    background: linear-gradient(135deg, rgba(0, 206, 209, 0.08), rgba(0, 206, 209, 0.02));
    border-color: rgba(0, 206, 209, 0.2);
}

.problem-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.problem-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.problem-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ═══════════ Pipeline Section ═══════════ */
.pipeline-flow {
    max-width: 700px;
    margin: 0 auto;
}

.pipeline-step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all 0.3s var(--ease-out);
}

.pipeline-step:hover {
    border-color: var(--border-hover);
    transform: translateX(8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.pipeline-number {
    font-size: 36px;
    font-weight: 900;
    color: var(--cyan);
    font-family: 'JetBrains Mono', monospace;
    line-height: 1;
    opacity: 0.6;
    flex-shrink: 0;
}

.pipeline-content h3 {
    font-size: 18px;
    margin-bottom: 6px;
}

.pipeline-content p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.pipeline-tech {
    font-size: 11px;
    font-family: 'JetBrains Mono', monospace;
    color: var(--cyan-dim);
    background: var(--cyan-subtle);
    padding: 4px 10px;
    border-radius: 100px;
    display: inline-block;
}

.pipeline-connector {
    width: 2px;
    height: 32px;
    background: linear-gradient(to bottom, var(--cyan-dim), transparent);
    margin: 0 auto;
    opacity: 0.4;
}

/* ═══════════ Showreel / Character Gallery ═══════════ */
.showreel-section {
    background: var(--bg-secondary);
}

.character-showcase {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.char-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-card);
    transition: all 0.4s var(--ease-out);
    cursor: pointer;
}

.char-card:hover {
    border-color: var(--cyan-dim);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px var(--cyan-glow);
}

.char-card-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
}

.char-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s var(--ease-out);
}

.char-card:hover .char-card-image img {
    transform: scale(1.05);
}

.char-card-info {
    padding: 14px 18px;
}

.char-card-info h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--cyan);
}

.char-card-info p {
    font-size: 12px;
    color: var(--text-muted);
}

/* ═══════════ Pricing ═══════════ */

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 36px 28px;
    position: relative;
    transition: all 0.3s var(--ease-out);
}

.pricing-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.pricing-card-featured {
    background: linear-gradient(135deg, rgba(0, 206, 209, 0.06), var(--bg-card));
    border-color: var(--cyan-dim);
    transform: scale(1.03);
    box-shadow: 0 20px 60px rgba(0, 206, 209, 0.1);
}

.pricing-card-featured:hover {
    transform: scale(1.03) translateY(-4px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--cyan);
    color: var(--bg-primary);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 5px 16px;
    border-radius: 100px;
}

.pricing-tag {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
}

.pricing-name {
    font-size: 28px;
    font-weight: 800;
    margin: 8px 0 16px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 12px;
}

.pricing-currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-muted);
}

.pricing-amount {
    font-size: 56px;
    font-weight: 900;
    line-height: 1;
    font-family: 'JetBrains Mono', monospace;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-period {
    font-size: 16px;
    color: var(--text-muted);
}

.pricing-desc {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.5;
}

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

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

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

.pricing-features .check {
    color: var(--cyan);
    font-weight: 700;
}

.pricing-features .x {
    color: var(--text-muted);
}

.pricing-features .muted {
    color: var(--text-muted);
    opacity: 0.65;
}

.pricing-btn {
    width: 100%;
    justify-content: center;
}

/* ═══════════ Productions / Video Section ═══════════ */
.productions-section {
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.productions-section::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, var(--cyan-glow) 0%, transparent 70%);
    filter: blur(120px);
    opacity: 0.1;
    pointer-events: none;
}

.video-hero {
    max-width: 900px;
    margin: 0 auto 48px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.4s var(--ease-out);
}

.video-hero:hover {
    border-color: var(--cyan-dim);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 0 60px var(--cyan-glow);
    transform: translateY(-4px);
}

.video-overlay {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 aspect ratio */
    background: linear-gradient(135deg, rgba(10, 10, 14, 0.95), rgba(18, 18, 24, 0.95));
    background-image:
        radial-gradient(circle at 30% 40%, rgba(0, 206, 209, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(255, 183, 77, 0.03) 0%, transparent 50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(0, 206, 209, 0.15);
    border: 2px solid rgba(0, 206, 209, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    backdrop-filter: blur(10px);
}

.video-play-btn:hover {
    background: rgba(0, 206, 209, 0.25);
    border-color: var(--cyan);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 40px var(--cyan-glow);
}

.coming-soon-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 6px 14px;
    border-radius: 100px;
}

.coming-soon-badge.badge-sm {
    font-size: 10px;
    padding: 4px 10px;
}

.video-info {
    padding: 24px 28px;
}

.video-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.video-info p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.video-thumbnails {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.video-thumb-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s var(--ease-out);
    cursor: pointer;
}

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

.video-thumb-image {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: linear-gradient(135deg, rgba(10, 10, 14, 0.9), rgba(22, 22, 30, 0.9));
    background-image: radial-gradient(circle at 50% 50%, rgba(0, 206, 209, 0.03) 0%, transparent 60%);
}

.thumb-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(0, 206, 209, 0.4);
    transition: all 0.3s ease;
}

.video-thumb-card:hover .thumb-play {
    color: var(--cyan);
    transform: translate(-50%, -50%) scale(1.15);
}

.video-thumb-info {
    padding: 16px 18px;
}

.video-thumb-info h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.video-thumb-info p {
    font-size: 12px;
    color: var(--text-muted);
}

/* ═══════════ Billing Toggle ═══════════ */
.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 48px;
}

.toggle-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.3s ease;
    user-select: none;
}

.toggle-label-active {
    color: var(--text-primary);
    font-weight: 600;
}

.toggle-save {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: var(--bg-primary);
    background: var(--gold);
    padding: 2px 8px;
    border-radius: 100px;
    margin-left: 4px;
    vertical-align: middle;
}

.toggle-switch {
    position: relative;
    width: 48px;
    height: 26px;
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 100px;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.toggle-switch:hover {
    border-color: var(--border-hover);
}

.toggle-switch.active {
    background: rgba(0, 206, 209, 0.1);
    border-color: var(--cyan-dim);
}

.toggle-knob {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 18px;
    height: 18px;
    background: var(--cyan);
    border-radius: 50%;
    transition: all 0.3s var(--ease-spring);
    box-shadow: 0 2px 8px rgba(0, 206, 209, 0.3);
}

.toggle-switch.active .toggle-knob {
    left: 24px;
}

/* ═══════════ Pricing — Updated Grid ═══════════ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: start;
}

.pricing-card-free {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.04), var(--bg-card));
    border-color: rgba(76, 175, 80, 0.15);
}

.pricing-card-free:hover {
    border-color: rgba(76, 175, 80, 0.3);
}

.enterprise-cta {
    text-align: center;
    margin-top: 40px;
    padding: 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.enterprise-cta p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.enterprise-link {
    font-size: 15px;
    font-weight: 600;
    color: var(--cyan);
    transition: all 0.2s ease;
}

.enterprise-link:hover {
    color: #00e5e8;
    text-decoration: underline;
}

/* ═══════════ Tech Grid ═══════════ */
.tech-section {
    background: var(--bg-secondary);
}

.tech-grid {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 24px 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all 0.3s var(--ease-out);
    min-width: 140px;
}

.tech-item:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.tech-icon {
    font-size: 32px;
}

.tech-item span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
}

/* ═══════════ CTA Section ═══════════ */
.cta-section {
    background: linear-gradient(135deg, var(--bg-primary), var(--bg-secondary));
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--cyan-glow) 0%, transparent 70%);
    filter: blur(100px);
    opacity: 0.2;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 36px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ═══════════ Footer ═══════════ */
.footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--border);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 12px;
    max-width: 280px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.footer-col a {
    font-size: 13px;
    color: var(--text-muted);
    transition: color 0.2s ease;
}

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

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    color: var(--text-muted);
}

/* ═══════════ Responsive ═══════════ */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        padding-top: calc(var(--nav-height) + 30px);
        text-align: center;
        min-height: auto;
    }

    .hero-subtitle {
        margin: 0 auto 32px;
    }

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

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

    .hero-visual {
        width: 100%;
        max-width: 600px;
        height: 350px;
        margin: 0 auto;
        flex: none;
    }

    .hero-card {
        width: 180px;
    }

    .hero-card img {
        height: 240px;
    }

    .hero-card-3 {
        left: 200px;
    }

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

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
        margin: 0 auto;
    }

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

    .pricing-card-featured:hover {
        transform: translateY(-4px);
    }

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

    .video-thumbnails .video-thumb-card:last-child {
        grid-column: 1 / -1;
        max-width: 340px;
        margin: 0 auto;
    }

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(8, 8, 15, 0.98);
        border-bottom: 1px solid var(--border);
        padding: 16px 24px;
        gap: 4px;
        backdrop-filter: blur(20px);
    }

    .nav-links.mobile-open {
        display: flex;
    }

    .nav-links a {
        padding: 12px 0;
        font-size: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .nav-toggle {
        display: flex;
    }

    .character-row {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }

    .char-card-image {
        height: 280px;
    }

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

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

    .video-thumbnails {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }

    .video-thumbnails .video-thumb-card:last-child {
        max-width: none;
    }

    .hero-visual {
        height: 300px;
    }

    .hero-card {
        width: 150px;
    }

    .hero-card img {
        height: 200px;
    }

    .hero-card-2 {
        left: 100px;
    }

    .hero-card-3 {
        left: 180px;
    }

    .hero-stats {
        gap: 20px;
    }

    .hero-stat-value {
        font-size: 22px;
    }

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-stats {
        gap: 14px;
    }

    .hero-stat-value {
        font-size: 20px;
    }

    .hero-stat-label {
        font-size: 10px;
    }

    .hero-card {
        width: 120px;
    }

    .hero-card img {
        height: 160px;
    }

    .hero-card-2 {
        left: 80px;
    }

    .hero-card-3 {
        left: 160px;
    }

    .section {
        padding: 60px 0;
    }
}

/* ═══════════ Animations — Scroll Reveal ═══════════ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s var(--ease-out);
}

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

/* ═══════════ Savings Section ═══════════ */
.savings-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.savings-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    transition: all 0.3s var(--ease-out);
}

.savings-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
    box-shadow: 0 20px 60px rgba(0, 206, 209, 0.06);
}

.savings-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
}

.savings-old {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-decoration: line-through;
    text-decoration-color: rgba(255, 80, 80, 0.5);
    font-family: 'JetBrains Mono', monospace;
}

.savings-arrow {
    font-size: 1.4rem;
    color: var(--cyan);
}

.savings-new {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--cyan);
    text-shadow: 0 0 20px var(--cyan-glow);
    font-family: 'JetBrains Mono', monospace;
}

.savings-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.savings-note {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ═══════════ Comparison Table ═══════════ */
.comparison-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -16px;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    margin: 0 auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    min-width: 600px;
}

.comparison-table th,
.comparison-table td {
    padding: 14px 16px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table th {
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--text-primary);
}

.comparison-table .highlight-col {
    background: rgba(0, 206, 209, 0.06);
    color: var(--cyan);
    font-weight: 600;
}

.comparison-table thead .highlight-col {
    color: var(--cyan);
    border-bottom: 2px solid var(--cyan);
}

.comparison-table .x-cell {
    color: var(--text-muted);
    opacity: 0.5;
}

.comparison-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* ═══════════ FAQ Section ═══════════ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 500;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    text-align: left;
    transition: color 0.2s;
}

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

.faq-icon {
    font-size: 1.4rem;
    color: var(--cyan);
    transition: transform 0.3s var(--ease-out);
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-out), padding 0.3s var(--ease-out);
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding-bottom: 20px;
}

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

.faq-answer a {
    color: var(--cyan);
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* ═══════════ Trust Signals ═══════════ */
.beta-trust-signals {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.04);
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid var(--border);
}

.beta-legal {
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 12px;
}

.beta-legal a {
    color: var(--cyan);
}

/* ═══════════ Exit Intent Popup ═══════════ */
.exit-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 90000;
}

.exit-popup-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.exit-popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--bg-secondary);
    border: 1px solid var(--border-hover);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    text-align: center;
    max-width: 440px;
    width: 90%;
    box-shadow: 0 40px 100px rgba(0, 206, 209, 0.1);
    animation: popIn 0.3s var(--ease-spring);
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.exit-popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 4px 8px;
}

.exit-popup-close:hover {
    color: var(--text-primary);
}

.exit-popup-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.exit-popup-content h3 {
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.exit-popup-content p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

/* ═══════════ Responsive — New Sections ═══════════ */
@media (max-width: 768px) {
    .savings-grid {
        grid-template-columns: 1fr;
    }

    .savings-new {
        font-size: 1.4rem;
    }

    .comparison-table {
        font-size: 0.8rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 10px 8px;
    }

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

    .exit-popup-content {
        padding: 32px 24px;
    }
}