﻿/* 
   --------------------------------------------------------------
   VeoGen-X "Next-Gen" Ultra-Premium Design System
   Target: Enterprise Software / SaaS
   Theme: Aurora Dark / Glassmorphism
   --------------------------------------------------------------
*/

:root {
    /* Color Palette */
    --bg-deep: #0A0D17;
    --bg-card: rgba(17, 24, 39, 0.6);
    --bg-glass: rgba(255, 255, 255, 0.03);

    --primary: #5D66D0;
    /* Indigo / Blurple */
    --primary-light: #7E86E0;
    --accent: #F5428D;
    /* Rose/Red for "Cinema" feel */
    --accent-glow: #F96C9D;
    --secondary: #06B6D4;
    /* Sky Blue */

    --text-white: #f8fafc;
    --text-dim: #94a3b8;
    --text-dark: #111827;

    --border-glass: 1px solid rgba(255, 255, 255, 0.08);
    --border-glow: 1px solid rgba(245, 66, 141, 0.3);

    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;

    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Basics */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-deep);
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    background-image: radial-gradient(circle at 50% 50%, rgba(17, 24, 39, 0) 0%, rgba(10, 13, 23, 1) 100%);
}

/* Ambient Lighting */
.ambient-light {
    position: fixed;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    filter: blur(140px);
    z-index: -2;
    opacity: 0.3;
    animation: drift 20s infinite alternate;
}

.light-1 {
    top: -150px;
    left: -150px;
    background: radial-gradient(circle, var(--primary), transparent 70%);
}

.light-2 {
    bottom: -150px;
    right: -150px;
    background: radial-gradient(circle, var(--accent), transparent 70%);
    animation-delay: -5s;
}

@keyframes drift {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(50px, 30px) scale(1.1);
    }

    100% {
        transform: translate(-30px, 50px) scale(0.9);
    }
}

.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    z-index: -1;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 0) 90%);
    pointer-events: none;
}

/* Typography Utilities */
h1,
h2,
h3,
h4,
.brand-text {
    font-family: var(--font-heading);
    letter-spacing: -0.03em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-accent {
    color: var(--accent);
}

.text-white {
    color: var(--text-white);
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(to right, var(--accent), #f59e0b, var(--primary));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: gradientText 5s linear infinite;
}

@keyframes gradientText {
    to {
        background-position: 200% center;
    }
}

/* Loader */
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-deep);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease, visibility 0.8s;
}

.is-loaded .loader-overlay {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.loader-bar {
    width: 250px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto 15px;
}

.loader-progress {
    width: 0%;
    height: 100%;
    background: var(--accent);
    animation: loadProgress 2.5s ease-in-out forwards;
}

.loader-text {
    font-family: monospace;
    color: var(--text-dim);
    font-size: 0.9rem;
}

@keyframes loadProgress {
    0% {
        width: 0;
    }

    50% {
        width: 60%;
    }

    100% {
        width: 100%;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 13, 23, 0.9);
    backdrop-filter: blur(16px);
    border-bottom: var(--border-glass);
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 0 25px rgba(245, 66, 141, 0.4);
    color: white;
}

.brand-text {
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
}

.nav-middle {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    padding: 6px 8px;
    display: flex;
    border: var(--border-glass);
    backdrop-filter: blur(10px);
}

.nav-item {
    padding: 9px 26px;
    border-radius: 30px;
    font-size: 0.95rem;
    color: var(--text-dim);
    font-weight: 500;
    transition: var(--transition);
}

.nav-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.link-text {
    font-weight: 600;
    color: var(--text-white);
    font-size: 0.95rem;
}

.btn-glow {
    position: relative;
    padding: 12px 28px;
    background: var(--text-white);
    color: var(--bg-deep);
    border-radius: 10px;
    font-weight: 700;
    overflow: hidden;
    transition: var(--transition);
}

.btn-glow:hover {
    transform: scale(1.05);
    box-shadow: 0 0 35px rgba(255, 255, 255, 0.4);
}

.mobile-toggle {
    display: none;
}

/* Hero Section (3D & Tilt) */
.hero-section {
    padding-top: 180px;
    padding-bottom: 120px;
    position: relative;
    overflow: hidden;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(245, 66, 141, 0.1);
    border: 1px solid rgba(245, 66, 141, 0.3);
    border-radius: 50px;
    margin-bottom: 24px;
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.5;
    }
}

.hero-title {
    font-size: 4.8rem;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-dim);
    margin-bottom: 48px;
    max-width: 550px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.btn-primary-xl {
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--accent), #E63972);
    color: white;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1.15rem;
    box-shadow: 0 10px 40px rgba(230, 57, 114, 0.4);
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-primary-xl:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(230, 57, 114, 0.6);
}

.btn-secondary-xl {
    padding: 18px 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 14px;
    font-weight: 600;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-secondary-xl:hover {
    background: rgba(255, 255, 255, 0.1);
}

.trust-signals span {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dim);
    margin-bottom: 20px;
    font-weight: 600;
}

.logos-row {
    display: flex;
    gap: 35px;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.5);
}

.logos-row i:hover {
    color: white;
    transition: 0.3s;
    transform: scale(1.1);
}

/* 3D Dashboard Visual */
.hero-visual-3d {
    perspective: 1500px;
    display: flex;
    justify-content: center;
}

.dashboard-container {
    width: 100%;
    max-width: 650px;
    background: #111827;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 60px 120px -30px rgba(0, 0, 0, 0.8);
    transform: rotateX(8deg) rotateY(-8deg) rotateZ(1deg);
    transition: transform 0.1s ease-out;
    position: relative;
    overflow: hidden;
}

.dashboard-header {
    background: #172033;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.red {
    background: #ef4444;
}

.yellow {
    background: #f59e0b;
}

.green {
    background: #22c55e;
}

.bar-address {
    margin-left: auto;
    margin-right: auto;
    font-family: monospace;
    color: #94a3b8;
    font-size: 0.85rem;
    background: #0A0D17;
    padding: 6px 14px;
    border-radius: 6px;
    border: 1px solid #172033;
}

.status-indicator {
    font-size: 0.8rem;
    color: #22c55e;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

.status-indicator::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 10px #22c55e;
}

.dashboard-body {
    padding: 0;
    min-height: 400px;
    position: relative;
}

/* Video Preview Box (New Feature) */
.video-preview-box {
    width: 100%;
    height: 250px;
    background: #000;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #334155;
    background-image: linear-gradient(45deg, #12192B 25%, #1C263F 25%, #1C263F 50%, #12192B 50%, #12192B 75%, #1C263F 75%, #1C263F 100%);
    background-size: 40px 40px;
}

.preview-overlay {
    color: var(--text-dim);
    font-family: monospace;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.style-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(245, 66, 141, 0.2);
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.console-output {
    background: #0A0D17;
    padding: 20px;
    font-family: 'Fira Code', monospace;
    font-size: 0.85rem;
    color: #cbd5e1;
    height: 150px;
    overflow: hidden;
}

.log-line {
    margin-bottom: 8px;
    opacity: 0.9;
    display: flex;
    align-items: center;
}

.time {
    color: #475569;
    margin-right: 12px;
    font-size: 0.75rem;
}

.info {
    color: #60a5fa;
    font-weight: bold;
    margin-right: 8px;
}

.success {
    color: #22c55e;
    font-weight: bold;
    margin-right: 8px;
}

.warn {
    color: #facc15;
    font-weight: bold;
    margin-right: 8px;
}

.float-widget {
    position: absolute;
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(12px);
    padding: 14px 24px;
    border-radius: 12px;
    border: 1px solid var(--primary);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    z-index: 10;
}

.w-1 {
    top: 40%;
    right: -50px;
    transform: translateZ(60px);
    color: var(--accent);
    border-color: var(--accent);
}

.w-2 {
    bottom: 40px;
    left: -40px;
    transform: translateZ(90px);
    color: #38bdf8;
    border-color: #38bdf8;
}

/* Bento Grid */
.bento-section {
    padding: 120px 0;
}

.section-label {
    text-align: center;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-heading {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 80px;
    color: var(--text-dim);
    font-weight: 700;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 30px;
}

.bento-card {
    background: var(--bg-card);
    border: var(--border-glass);
    border-radius: 24px;
    padding: 35px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.bento-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.span-1 {
    grid-column: span 1;
}

.span-2 {
    grid-column: span 2;
}

.row-2 {
    grid-row: span 2;
}

.badge-pill {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    color: #fff;
    font-weight: 600;
    margin-bottom: 15px;
    width: fit-content;
}

.tech-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tech-tags span {
    background: rgba(93, 102, 208, 0.2);
    color: #a5b4fc;
    font-size: 0.8rem;
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid rgba(93, 102, 208, 0.3);
}

.card-content h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: white;
}

.card-content p {
    color: var(--text-dim);
    font-size: 1rem;
    line-height: 1.6;
}

/* Bento Visuals */
.visual-graph {
    height: 100px;
    display: flex;
    gap: 20px;
    align-items: flex-end;
    margin-top: auto;
}

.visual-graph .bar {
    width: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px 8px 0 0;
}

.visual-graph .bar.active {
    background: var(--accent);
    box-shadow: 0 0 20px var(--accent-glow);
}

.gradient-card {
    background: linear-gradient(135deg, rgba(93, 102, 208, 0.15), rgba(245, 66, 141, 0.1));
}

.big-icon {
    font-size: 8rem;
    position: absolute;
    bottom: -20px;
    right: -20px;
    opacity: 0.08;
    color: white;
    transform: rotate(-10deg);
    transition: 0.4s;
}

.bento-card:hover .big-icon {
    transform: rotate(0deg) scale(1.1);
    opacity: 0.12;
}

.model-visual {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.model-node {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    color: var(--text-dim);
    font-size: 0.9rem;
    font-family: monospace;
}

.model-node::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--secondary);
    border-radius: 50%;
    margin-right: 12px;
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: var(--bg-deep);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Pricing */
.pricing-section {
    padding: 120px 0;
    position: relative;
}

.pricing-header {
    text-align: center;
    margin-bottom: 80px;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 40px;
    align-items: center;
}

.price-card {
    background: var(--bg-card);
    border: var(--border-glass);
    border-radius: 28px;
    padding: 45px;
    position: relative;
    backdrop-filter: blur(20px);
    transition: var(--transition);
}

.price-card:hover {
    transform: translateY(-12px);
    border-color: rgba(255, 255, 255, 0.2);
}

.price-card.featured {
    border: 1px solid var(--accent);
    background: linear-gradient(160deg, rgba(245, 66, 141, 0.1), rgba(17, 24, 39, 0.9));
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
}

.price-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.glow-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--accent);
    box-shadow: 0 0 20px var(--accent);
}

.price {
    font-size: 3.8rem;
    font-weight: 800;
    font-family: var(--font-heading);
    margin: 20px 0;
    color: white;
}

.period {
    font-size: 1.1rem;
    color: var(--text-dim);
    font-weight: 400;
}

.desc {
    color: var(--text-dim);
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.btn-gradient {
    display: block;
    width: 100%;
    text-align: center;
    padding: 18px;
    background: linear-gradient(to right, var(--accent), #E63972);
    color: white;
    border-radius: 12px;
    font-weight: 700;
    margin-top: 35px;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(230, 57, 114, 0.3);
}

.btn-outline {
    display: block;
    width: 100%;
    text-align: center;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    border-radius: 12px;
    font-weight: 600;
    margin-top: 35px;
    transition: 0.3s;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: white;
}

/* Code Window / Tech Section */
.tech-container {
    display: flex;
    gap: 80px;
    align-items: flex-start;
    margin-top: 50px;
    margin-bottom: 100px;
}

.tech-info {
    flex: 1;
}

.scrolling-text-bg {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    font-size: 12rem;
    font-weight: 900;
    white-space: nowrap;
    opacity: 0.03;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
    font-family: var(--font-heading);
}

.accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 25px 0;
    cursor: pointer;
}

.acc-header {
    font-size: 1.3rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 25px;
    transition: 0.3s;
}

.acc-header span {
    color: var(--primary);
    font-family: monospace;
    font-size: 1rem;
    opacity: 0.8;
}

.acc-body {
    color: var(--text-dim);
    margin-top: 10px;
    max-height: 0;
    overflow: hidden;
    transition: 0.4s;
    font-size: 1rem;
    line-height: 1.7;
    padding-left: 50px;
}

.accordion-item.active .acc-body {
    max-height: 150px;
    margin-top: 20px;
}

.accordion-item.active .acc-header {
    color: white;
}

.accordion-item.active .acc-header span {
    color: var(--accent);
}

.code-window {
    flex: 1;
    background: #0d1117;
    border: 1px solid #30363d;
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    font-family: 'Fira Code', monospace;
    font-size: 0.95rem;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

/* Comparisons Table */
.comparison-section {
    padding: 80px 0;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 50px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.comparison-table th,
.comparison-table td {
    padding: 25px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-table th {
    background: rgba(255, 255, 255, 0.05);
    font-size: 1.1rem;
    color: white;
}

.comparison-table td {
    color: var(--text-dim);
    font-size: 1.05rem;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table .feature-col {
    font-weight: 600;
    color: white;
    width: 40%;
}

.comparison-table .veo-col {
    color: var(--accent);
    font-weight: 700;
    font-size: 1.2rem;
    background: rgba(245, 66, 141, 0.05);
}

.comparison-table .other-col {
    color: #94a3b8;
}

.check-mark {
    color: #22c55e;
    margin-right: 8px;
}

.x-mark {
    color: #ef4444;
    margin-right: 8px;
}

/* Feature Cards Grid (Custom for Niche Presets) */
.presets-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.preset-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s;
}

.preset-card:hover {
    background: rgba(245, 66, 141, 0.1);
    border-color: var(--accent);
    transform: translateY(-5px);
}

.preset-icon {
    font-size: 2rem;
    color: var(--text-dim);
    margin-bottom: 15px;
    display: block;
}

.preset-card:hover .preset-icon {
    color: var(--accent);
}

.preset-title {
    font-weight: 600;
    color: white;
}

/* Footer */
.main-footer {
    background: #000;
    padding: 90px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top {
    display: flex;
    gap: 100px;
    margin-bottom: 70px;
}

.footer-brand {
    flex: 2;
}

.footer-brand h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
}

.footer-brand p {
    color: var(--text-dim);
    max-width: 320px;
    margin-bottom: 35px;
    font-size: 1.05rem;
}

.social-links {
    display: flex;
    gap: 20px;
    font-size: 1.6rem;
    color: var(--text-dim);
}

.social-links a {
    background: rgba(255, 255, 255, 0.05);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-3px);
}

.footer-cols {
    flex: 3;
    display: flex;
    justify-content: space-between;
}

.col h4 {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: white;
    font-weight: 700;
}

.col a {
    display: block;
    color: var(--text-dim);
    margin-bottom: 14px;
    font-size: 1rem;
    transition: 0.2s;
}

.col a:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    color: var(--text-dim);
    font-size: 0.95rem;
    align-items: center;
}

.tech-specs {
    display: flex;
    gap: 15px;
}

.spec-tag {
    background: #172033;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.85rem;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Feature Workflows (New) */
.feature-rows {
    padding: 100px 0;
}

.row-aligned {
    align-items: flex-start;
}

.row-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

.row-feature.reverse {
    direction: rtl;
}

.row-feature.reverse .text-col {
    direction: ltr;
}

.text-col h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    line-height: 1.2;
}

.text-col p {
    font-size: 1.1rem;
    color: var(--text-dim);
    margin-bottom: 40px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.feature-list li i {
    color: var(--accent);
    margin-top: 5px;
}

.workflow-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.workflow-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: rgba(0, 0, 0, 0.3);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

.step {
    background: #172033;
    padding: 15px 25px;
    border-radius: 8px;
    color: var(--text-dim);
    font-weight: 600;
    text-align: center;
    border: 1px solid transparent;
    min-width: 100px;
}

.step.active {
    background: rgba(245, 66, 141, 0.15);
    border-color: var(--accent);
    color: white;
    box-shadow: 0 0 20px rgba(245, 66, 141, 0.2);
}

.step i {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.arrow {
    color: #475569;
}

/* Video Gallery Grid (New) */
.video-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    width: 100%;
}

.video-card {
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    aspect-ratio: 16/9;
}

.video-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: 0.3s;
}

.video-card:hover img {
    opacity: 0.4;
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: 0.3s;
}

.play-button i {
    color: white;
    font-size: 1.5rem;
    margin-left: 4px;
}

.video-card:hover .play-button {
    background: var(--accent);
    border-color: var(--accent);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 30px var(--accent);
}

.video-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}

.genre-tag {
    font-size: 0.75rem;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    display: block;
}

.video-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Dropdown Menu Styles */
.nav-item-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 10px;
    width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    z-index: 1100;
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(15px);
}

.dropdown-link {
    display: flex !important;
    /* Override default a display */
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    color: var(--text-dim);
    transition: 0.2s;
    font-size: 0.9rem;
    font-weight: 500;
}

.dropdown-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

.dropdown-link i {
    color: var(--accent);
    width: 20px;
    text-align: center;
}

/* Add arrow to nav item */
.nav-item.dropdown-trigger::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: 6px;
    font-size: 0.8em;
    transition: transform 0.3s;
}

.nav-item-dropdown:hover .nav-item.dropdown-trigger::after {
    transform: rotate(180deg);
}

/* Product Specific Styles - Quick Tweaks */
.product-hero-badge {
    background: rgba(93, 102, 208, 0.15) !important;
    border-color: var(--primary) !important;
    color: var(--primary-light) !important;
}

.feature-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 1024px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-subtitle {
        margin: 0 auto 48px;
    }

    .trust-signals {
        margin: 0 auto;
        text-align: center;
    }

    .logos-row {
        justify-content: center;
    }

    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tech-container {
        flex-direction: column;
    }

    .nav-middle {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .row-feature {
        grid-template-columns: 1fr;
    }

    .presets-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .price-card.featured {
        transform: none;
    }

    .hero-title {
        font-size: 3.2rem;
    }

    .footer-top {
        flex-direction: column;
        gap: 50px;
    }

    .footer-cols {
        flex-direction: column;
        gap: 40px;
    }

    .comparison-table {
        display: block;
        overflow-x: auto;
    }

    .video-gallery {
        grid-template-columns: 1fr;
    }

    .feature-rows {
        padding: 60px 0;
    }

    .row-feature {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .row-feature.reverse {
        direction: ltr;
    }
}

/* 
   --------------------------------------------------------------
   Popup & Modal Systems (High Design)
   --------------------------------------------------------------
*/

/* Welcome Popup Overlay */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 13, 23, 0.85);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s, backdrop-filter 0.4s;
}

.popup-overlay.show-popup {
    opacity: 1;
    visibility: visible;
}

/* Glass Card Modal */
.popup-glass-card {
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 40px rgba(93, 102, 208, 0.4), inset 0 0 20px rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 24px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(20px);
    overflow: hidden;
}

.popup-overlay.show-popup .popup-glass-card {
    transform: scale(1) translateY(0);
}

/* Visual Elements */
.popup-visual {
    position: relative;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.popup-icon {
    width: 80px;
    height: 80px;
    z-index: 2;
    filter: drop-shadow(0 0 15px rgba(245, 66, 141, 0.5));
}

.glow-orb {
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--accent), transparent 70%);
    opacity: 0.4;
    filter: blur(40px);
    animation: pulse 3s infinite ease-in-out;
}

.popup-text h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 15px;
}

.popup-text p {
    color: var(--text-dim);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.popup-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.5rem;
    cursor: pointer;
    transition: 0.2s;
}

.popup-close-btn:hover {
    color: white;
    transform: rotate(90deg);
}

/* Scroll Offer Slide-in */
.offer-slide-popup {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: rgba(17, 24, 39, 0.95);
    border: 1px solid var(--accent);
    backdrop-filter: blur(12px);
    padding: 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 9000;
    transform: translateX(150%);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    max-width: 400px;
}

.offer-slide-popup.active {
    transform: translateX(0);
}

.offer-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.offer-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent), #E63972);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.offer-details {
    display: flex;
    flex-direction: column;
}

.offer-label {
    text-transform: uppercase;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 1px;
}

.offer-details p {
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0;
}

.offer-cta {
    background: white;
    color: var(--bg-deep);
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: 0.2s;
}

.offer-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.close-offer {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 24px;
    height: 24px;
    background: #334155;
    border: 1px solid #475569;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    cursor: pointer;
    opacity: 0;
    transition: 0.3s;
}

.offer-slide-popup:hover .close-offer {
    opacity: 1;
    transform: scale(1);
}

/* 
   --------------------------------------------------------------
   NEW: Feature Highlight (Side)
   --------------------------------------------------------------
*/
.feature-side-popup {
    position: fixed;
    left: 30px;
    top: 50%;
    transform: translateY(-50%) translateX(-150%);
    width: 280px;
    background: rgba(30, 41, 59, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    z-index: 9900;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.feature-side-popup.active {
    transform: translateY(-50%) translateX(0);
}

.feature-side-popup:hover {
    border-color: var(--accent);
}

.feature-icon-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 15px;
    box-shadow: 0 10px 20px rgba(93, 102, 208, 0.3);
    z-index: 2;
}

.feature-text-content h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: white;
}

.feature-text-content p {
    font-size: 0.85rem;
    color: var(--text-dim);
    line-height: 1.5;
}

.feature-glow {
    position: absolute;
    top: -50px;
    left: -50px;
    width: 100px;
    height: 100px;
    background: var(--primary);
    filter: blur(50px);
    opacity: 0.3;
}

.close-feature {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    color: var(--text-dim);
    cursor: pointer;
    font-size: 1rem;
    transition: 0.2s;
}

.close-feature:hover {
    color: white;
}

/* 
   --------------------------------------------------------------
   NEW: Social Proof Toast
   --------------------------------------------------------------
*/
.social-proof-toast {
    position: fixed;
    top: 100px;
    /* Below Navbar */
    right: 30px;
    background: rgba(17, 24, 39, 0.9);
    backdrop-filter: blur(10px);
    border-left: 4px solid var(--accent);
    padding: 12px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 9950;
    transform: translateX(150%);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    max-width: 320px;
}

.social-proof-toast.active {
    transform: translateX(0);
}

.toast-avatar {
    position: relative;
    width: 40px;
    height: 40px;
}

.toast-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.status-dot {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    border: 2px solid #111827;
}

.toast-info {
    display: flex;
    flex-direction: column;
}

.toast-name {
    font-size: 0.85rem;
    color: white;
    font-weight: 600;
}

.toast-plan {
    font-size: 0.75rem;
    color: var(--accent);
    font-weight: 700;
}

.toast-time {
    font-size: 0.7rem;
    color: var(--text-dim);
}

/* 
   --------------------------------------------------------------
   NEW: Exit Intent Modal
   --------------------------------------------------------------
*/
.exit-card {
    background: radial-gradient(circle at top right, #12192B, #0A0D17);
    border: 1px solid var(--accent);
    box-shadow: 0 0 60px rgba(245, 66, 141, 0.2);
    padding: 0;
    display: flex;
    flex-direction: column;
    max-width: 450px;
}

.exit-visual {
    background: linear-gradient(135deg, var(--accent), #be123c);
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.limit-badge {
    display: inline-block;
    background: rgba(0, 0, 0, 0.3);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
    margin-bottom: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.exit-heading {
    font-size: 3.5rem;
    margin: 0;
    line-height: 1;
    color: white;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.discount-circle {
    position: absolute;
    bottom: -25px;
    right: 30px;
    width: 90px;
    height: 90px;
    background: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-weight: 900;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transform: rotate(-10deg);
}

.discount-circle span {
    font-size: 1.8rem;
    line-height: 1;
}

.discount-circle small {
    font-size: 0.8rem;
    text-transform: uppercase;
}

.exit-content {
    padding: 40px 30px 30px;
    text-align: center;
}

.exit-content p {
    color: var(--text-dim);
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.5;
}

.coupon-code {
    background: rgba(255, 255, 255, 0.05);
    border: 1px dashed rgba(255, 255, 255, 0.2);
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 25px;
    font-family: monospace;
    font-size: 1.2rem;
    color: white;
}

.code-text {
    color: var(--accent);
    letter-spacing: 2px;
}

/* 
   --------------------------------------------------------------
   NEW: Toggle Pricing Styling
/* 
   --------------------------------------------------------------
   NEW: Sticky Bottom Sale Banner
   --------------------------------------------------------------
*/
.sticky-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(17, 24, 39, 0.95);
    border-top: 1px solid var(--accent);
    backdrop-filter: blur(16px);
    z-index: 9999;
    padding: 12px 0;
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
}

.sticky-banner.active {
    transform: translateY(0);
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 1200px;
    width: 95%;
    justify-content: space-between;
}

.timer-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.fire-icon {
    font-size: 1.5rem;
    color: #f59e0b;
    animation: pulse 1s infinite alternate;
}

.banner-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-dim);
    letter-spacing: 1px;
    display: block;
    margin-bottom: 2px;
}

.countdown-timer {
    display: flex;
    gap: 6px;
    font-family: monospace;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    align-items: center;
}

.time-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    min-width: 32px;
    text-align: center;
}

.time-box small {
    font-size: 0.6rem;
    color: var(--accent);
    margin-left: 2px;
}

.banner-separator {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

.banner-offer {
    display: flex;
    flex-direction: column;
}

.offer-big {
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--accent);
    line-height: 1;
}

.offer-desc {
    font-size: 0.8rem;
    color: white;
}

.banner-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-banner {
    background: linear-gradient(90deg, #f59e0b, #ef4444);
    color: white;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.4);
    transition: 0.3s;
}

.btn-banner:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.6);
}

.close-banner-btn {
    background: transparent;
    border: none;
    color: var(--text-dim);
    cursor: pointer;
    font-size: 1.2rem;
    transition: 0.2s;
}

.close-banner-btn:hover {
    color: white;
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .banner-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 10px 0;
    }

    .banner-separator {
        display: none;
    }

    .sticky-banner {
        /* Allow scroll or smaller fixed */
        height: auto;
    }
}

/* 
   --------------------------------------------------------------
   NEW: Unified Responsive Pricing Grid
   --------------------------------------------------------------
*/

.pricing-grid-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    /* Align cards to the bottom so featured pops up */
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
    padding-bottom: 20px;
}

.price-card {
    background: rgba(30, 41, 59, 0.4);
    /* Cleaner background */
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    width: 250px;
    /* Base width */
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    backdrop-filter: blur(10px);
}

.price-card:hover {
    transform: translateY(-5px);
    background: rgba(30, 41, 59, 0.6);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Featured Card Styling */
.price-card.featured {
    width: 280px;
    /* Slightly wider */
    background: radial-gradient(circle at top right, rgba(230, 57, 114, 0.1), rgba(17, 24, 39, 0.95));
    border: 1px solid var(--accent);
    transform: scale(1.05);
    /* Proper Scaling */
    z-index: 2;
    /* Lift above others */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    padding-top: 35px;
    /* Room for badge */
}

.price-card.featured:hover {
    transform: scale(1.08);
    /* slight grow on hover */
}

.discount-pill {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    /* Center on top border */
    background: var(--accent);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(245, 66, 141, 0.4);
    z-index: 10;
    white-space: nowrap;
}

.card-top {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.plan-name {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-dim);
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.price-card.featured .plan-name {
    color: var(--accent);
}

.price {
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin: 10px 0;
}

.period {
    font-size: 1rem;
    color: var(--text-dim);
    font-weight: 500;
}

.desc {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-top: 5px;
}

.features-list {
    margin: 0 0 25px 0;
    padding: 0;
    list-style: none;
    flex-grow: 1;
    /* Pushes button down */
}

.features-list li {
    font-size: 0.9rem;
    color: #cbd5e1;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.features-list li i {
    color: var(--primary);
    min-width: 16px;
}

.price-card.featured .features-list li i {
    color: var(--accent);
}

/* Button Resets */
.btn-outline,
.btn-gradient {
    width: 100%;
    text-align: center;
    display: block;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.3s;
    margin-top: auto;
    /* Force to bottom */
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-outline:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.05);
}

.btn-gradient {
    background: linear-gradient(135deg, var(--accent), #be123c);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(245, 66, 141, 0.3);
}

.btn-gradient:hover {
    box-shadow: 0 10px 25px rgba(245, 66, 141, 0.5);
    transform: translateY(-2px);
}

/* 
   --------------------------------------------------------------
   NEW: Robust Mobile Menu & Responsive Fixes
   --------------------------------------------------------------
*/

/* Mobile Menu Styles */
.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 1002;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    /* Drawer width */
    height: 100%;
    background: #0A0D17;
    /* Deep background */
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1003;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    padding: 30px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.mobile-close {
    background: transparent;
    border: none;
    color: var(--text-dim);
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-link {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-white);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-link:hover {
    color: var(--accent);
    padding-left: 10px;
}

.mobile-auth {
    margin-top: auto;
}

.full-width {
    width: 100%;
    display: block;
    text-align: center;
}

/* Global Responsive Fixes */
@media (max-width: 1024px) {

    .nav-middle,
    .nav-right {
        display: none !important;
    }

    .mobile-toggle {
        display: block;
    }

    .pricing-grid-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .price-card {
        width: 100%;
        max-width: 380px;
    }

    .price-card.featured {
        width: 100%;
        max-width: 380px;
        transform: scale(1);
        order: -1;
        margin-bottom: 20px;
        border-width: 2px;
    }
}

@media (max-width: 768px) {

    /* Hero Fixes */
    .hero-title {
        font-size: 2.8rem !important;
        /* Smaller title */
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary-xl,
    .btn-secondary-xl {
        width: 100%;
        justify-content: center;
    }

    /* Bento Grid Single Column */
    .bento-grid {
        grid-template-columns: 1fr !important;
        grid-auto-rows: auto;
        /* Let content dictate height */
    }

    .bento-card {
        min-height: 250px;
        grid-column: span 1 !important;
        /* Force all to 1 col */
    }

    /* Footer Stack */
    .footer-top {
        flex-direction: column;
        text-align: center;
    }

    .footer-cols {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    /* Row Features (Missing Layout) */
    .row-feature {
        flex-direction: column !important;
        text-align: center;
    }

    .row-feature .feature-list li {
        justify-content: center;
    }

    /* Comparison Table Scroll */
    .comparison-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    /* Presets Grid */
    .presets-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .presets-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Row Features (Studio Automation) Layout --- */
.section-padding {
    padding: 120px 0;
}

.feature-rows {
    position: relative;
    overflow: hidden;
}

.row-feature {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.row-feature.reverse {
    flex-direction: row-reverse;
}

.text-col {
    flex: 1;
}

.text-col h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-dim);
}

.text-col p {
    font-size: 1.1rem;
    color: var(--text-dim);
    margin-bottom: 30px;
    line-height: 1.7;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: var(--text-white);
}

.feature-list li i {
    color: var(--accent);
    margin-top: 4px;
    font-size: 1.2rem;
}

.visual-col {
    flex: 1;
    border-radius: 20px;
    position: relative;
}

.glass-panel {
    background: rgba(17, 24, 39, 0.5);
    border: var(--border-glass);
    backdrop-filter: blur(10px);
}

.workflow-steps {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.workflow-steps .step {
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--text-dim);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.workflow-steps .step.active {
    background: rgba(245, 66, 141, 0.1);
    color: white;
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(245, 66, 141, 0.2);
}

.workflow-steps .arrow {
    color: var(--text-dim);
}

/* --- Custom Animated FAQ Accordion --- */
.faq-accordion-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-accordion-item {
    background: rgba(17, 24, 39, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.faq-accordion-item:hover {
    border-color: rgba(245, 66, 141, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}

.faq-accordion-header {
    padding: 22px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    position: relative;
    z-index: 2;
    background: transparent;
    transition: all 0.3s ease;
}

.faq-accordion-header h3 {
    font-size: 1.15rem;
    color: var(--text-white);
    margin: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-icon-cross {
    width: 20px;
    height: 20px;
    position: relative;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.faq-icon-cross::before,
.faq-icon-cross::after {
    content: '';
    position: absolute;
    background-color: var(--accent);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.faq-icon-cross::before {
    top: 9px;
    left: 0;
    width: 20px;
    height: 2px;
}

.faq-icon-cross::after {
    top: 0;
    left: 9px;
    width: 2px;
    height: 20px;
}

.faq-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
    background: rgba(0, 0, 0, 0.2);
}

.faq-accordion-content {
    padding: 0 25px 25px 25px;
    color: var(--text-dim);
    line-height: 1.7;
    font-size: 1rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s ease;
}

/* Active State */
.faq-accordion-item.active {
    border-color: var(--accent);
    box-shadow: 0 0 25px rgba(245, 66, 141, 0.15);
    background: rgba(17, 24, 39, 0.7);
}

.faq-accordion-item.active .faq-accordion-header {
    background: rgba(245, 66, 141, 0.05);
}

.faq-accordion-item.active .faq-icon-cross {
    transform: rotate(180deg);
}

.faq-accordion-item.active .faq-icon-cross::after {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-accordion-item.active .faq-accordion-body {
    max-height: 500px;
    transition: max-height 0.5s ease-in-out;
}

.faq-accordion-item.active .faq-accordion-content {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
    transition-duration: 0.4s;
}

