/* ============================================
   PROMPT GENERATOR - Creative Store Styles
   ============================================ */

/* === CSS Variables === */
:root {
    /* Colors - Premium & Refined Palette */
    --color-bg: #09090b;
    --color-bg-secondary: #0f0f12;
    --color-bg-card: #18181b;
    --color-bg-elevated: #1f1f23;

    --color-text: #fafafa;
    --color-text-secondary: #a1a1aa;
    --color-text-muted: #868691;
    /* Improved contrast: 6.5:1 (WCAG AAA compliant) */

    /* Gradient Accents - Sophisticated */
    --gradient-primary: linear-gradient(135deg, #8b5cf6 0%, #6366f1 50%, #4f46e5 100%);
    --gradient-secondary: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
    --gradient-cta: linear-gradient(135deg, #a78bfa 0%, #818cf8 50%, #6366f1 100%);
    --gradient-card: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);

    /* Solid Accents - Refined Tones */
    --color-accent-1: #8b5cf6;
    /* Violet */
    --color-accent-2: #f59e0b;
    /* Amber */
    --color-accent-3: #6366f1;
    /* Indigo */
    --color-accent-4: #a78bfa;
    /* Light violet */
    --color-accent-5: #10b981;
    /* Emerald */

    /* Functional */
    --color-success: #10b981;
    --color-warning: #f59e0b;
    --color-error: #ef4444;

    /* Typography */
    --font-display: 'Syne', 'Inter', 'Segoe UI', system-ui, sans-serif;
    --font-body: 'Space Grotesk', 'Inter', 'Segoe UI', system-ui, sans-serif;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    /* Shadows - Subtle & Elegant */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.12);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.16);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 60px rgba(139, 92, 246, 0.15);

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

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

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

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

/* === Container === */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

/* === Typography === */
.section-tag {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    /* Increased from 0.75rem for better readability */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent-3);
    margin-bottom: var(--space-lg);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-4xl);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    /* Improved from 1.1 for multi-line titles */
    margin-bottom: var(--space-lg);
}

.section-subtitle {
    font-size: 1.125rem;
    /* Slightly increased */
    line-height: 1.6;
    /* Added for better readability */
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

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

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-text);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-lg {
    padding: var(--space-lg) var(--space-2xl);
    font-size: 1rem;
}

.btn-xl {
    padding: var(--space-xl) var(--space-3xl);
    font-size: 1.125rem;
}

.btn-arrow {
    width: 20px;
    height: 20px;
    transition: transform var(--transition-base);
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* === Navigation === */
.nav-floating {
    position: fixed;
    top: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: calc(100% - var(--space-3xl));
    max-width: 1200px;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) var(--space-xl);
    background: rgba(18, 18, 26, 0.8);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
}

.logo-icon {
    font-size: 1.5rem;
}

.logo-text .accent {
    color: var(--color-accent-1);
}

.nav-links {
    display: flex;
    gap: var(--space-xl);
}

.nav-link {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-base);
}

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

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

.btn-nav {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-text);
    padding: var(--space-sm) var(--space-lg);
}

.btn-nav:hover {
    background: var(--gradient-primary);
    color: var(--color-bg);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - var(--space-3xl));
    max-width: 400px;
    background: rgba(18, 18, 26, 0.95);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    z-index: 999;
    flex-direction: column;
    gap: var(--space-md);
}

.mobile-menu.active {
    display: flex;
}

.mobile-link {
    padding: var(--space-md);
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.mobile-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text);
}

.mobile-cta {
    margin-top: var(--space-md);
}

/* === Hero Section === */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    padding: var(--space-4xl) var(--space-xl);
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.25;
    animation: float 25s ease-in-out infinite;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: var(--color-accent-1);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: var(--color-accent-4);
    bottom: -150px;
    left: -100px;
    animation-delay: -7s;
}

.blob-3 {
    width: 400px;
    height: 400px;
    background: var(--color-accent-3);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
}

@keyframes float {

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

    25% {
        transform: translate(30px, -30px) scale(1.05);
    }

    50% {
        transform: translate(-20px, 20px) scale(0.95);
    }

    75% {
        transform: translate(20px, 40px) scale(1.02);
    }
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-content {
    max-width: 700px;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-2xl);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-success);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-xl);
}

.title-line {
    display: block;
}

.underline-anim {
    position: relative;
}

.underline-anim::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--gradient-primary);
    border-radius: 3px;
    transform: scaleX(0);
    transform-origin: left;
    animation: underline 1s ease-out 0.5s forwards;
}

@keyframes underline {
    to {
        transform: scaleX(1);
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    /* Added for better readability */
    color: var(--color-text-secondary);
    margin-bottom: var(--space-2xl);
    max-width: 500px;
}

.hero-subtitle strong {
    color: var(--color-text);
}

.hero-cta {
    display: flex;
    gap: var(--space-lg);
    margin-bottom: var(--space-3xl);
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: var(--space-2xl);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-suffix {
    font-size: 1.5rem;
}

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

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

.hero-visual {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-cards {
    position: relative;
    width: 100%;
    height: 500px;
}

.float-card {
    position: absolute;
    width: 280px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-slow);
}

.float-card img {
    width: 100%;
    height: auto;
}

.card-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%) rotate(-5deg);
    z-index: 3;
    animation: floatCard1 6s ease-in-out infinite;
}

.card-2 {
    top: 60px;
    left: 10%;
    transform: rotate(8deg);
    z-index: 2;
    animation: floatCard2 7s ease-in-out infinite;
}

.card-3 {
    bottom: 0;
    right: 10%;
    transform: rotate(-3deg);
    z-index: 1;
    animation: floatCard3 8s ease-in-out infinite;
}

@keyframes floatCard1 {

    0%,
    100% {
        transform: translateX(-50%) rotate(-5deg) translateY(0);
    }

    50% {
        transform: translateX(-50%) rotate(-3deg) translateY(-20px);
    }
}

@keyframes floatCard2 {

    0%,
    100% {
        transform: rotate(8deg) translateY(0);
    }

    50% {
        transform: rotate(6deg) translateY(-15px);
    }
}

@keyframes floatCard3 {

    0%,
    100% {
        transform: rotate(-3deg) translateY(0);
    }

    50% {
        transform: rotate(-5deg) translateY(-10px);
    }
}

.float-card:hover {
    transform: scale(1.05) rotate(0deg) !important;
    z-index: 10;
}

.scroll-indicator {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-text-muted), transparent);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {

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

    50% {
        opacity: 1;
        transform: scaleY(1.2);
    }
}

/* === Hero Redesigned - No Video (Performance) === */
.hero-redesigned {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 140px var(--space-xl) var(--space-4xl);
    background: linear-gradient(135deg, #09090b 0%, #18181b 50%, #0f0f12 100%);
}

/* Particles Canvas */
.particles-canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

/* Glassmorphic Trust Bar */
.trust-bar-glass {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-xl);
    margin-bottom: var(--space-4xl);
    padding: var(--space-md) var(--space-xl);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-full);
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: wrap;
    animation: fadeInDown 0.8s ease-out;
}

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

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

/* Glassmorphic Hero Container */
.hero-glass-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto var(--space-4xl);
    padding: var(--space-3xl) var(--space-2xl);
    background: rgba(24, 24, 27, 0.4);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.hero-content-inner {
    text-align: center;
}

/* Hero Headline with Gradient */
.hero-headline-new {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: var(--space-xl);
    letter-spacing: -0.03em;
}

.headline-gradient {
    background: linear-gradient(135deg, #a78bfa 0%, #818cf8 50%, #6366f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        filter: hue-rotate(0deg);
    }

    50% {
        filter: hue-rotate(20deg);
    }
}

.headline-pulse {
    display: inline-block;
    animation: textPulse 2s ease-in-out infinite;
}

@keyframes textPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

/* Hero Description */
.hero-description-new {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-2xl);
}

.hero-description-new strong {
    color: var(--color-text);
    font-weight: 600;
}

/* Hero Actions with Glow */
.hero-actions-new {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-3xl);
    flex-wrap: wrap;
}

.btn-glow {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-lg) var(--space-3xl);
    font-weight: 700;
    font-size: 1.125rem;
    border-radius: var(--radius-full);
    overflow: hidden;
    transition: all var(--transition-base);
}

.btn-primary-new {
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    color: white;
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.4);
}

.btn-primary-new::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, transparent 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.btn-primary-new:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 60px rgba(139, 92, 246, 0.6);
}

.btn-primary-new:hover::before {
    opacity: 1;
}

.btn-primary-new::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #a78bfa, #818cf8);
    border-radius: var(--radius-full);
    z-index: -1;
    opacity: 0;
    filter: blur(20px);
    transition: opacity var(--transition-base);
}

.btn-primary-new:hover::after {
    opacity: 0.8;
    animation: glowPulse 1.5s ease-in-out infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}

/* CTA Price Badge */
.cta-price-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--space-sm) var(--space-lg);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
}

.price-from {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.price-amount {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-accent-2);
}

/* Hero Stats with Glass Effect */
.hero-stats-new {
    display: flex;
    justify-content: center;
    gap: var(--space-2xl);
    flex-wrap: wrap;
}

.stat-glass {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--space-lg) var(--space-xl);
    background: rgba(255, 255, 255, 0.04);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    min-width: 120px;
    transition: all var(--transition-base);
}

.stat-glass:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-plus,
.stat-star {
    display: inline;
    font-size: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
}

.stat-divider-new {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    align-self: center;
}

/* 3D Product Cards */
.hero-products-3d {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    max-width: 1100px;
    margin: 0 auto var(--space-3xl);
}

.product-3d-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: rgba(24, 24, 27, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
}

.product-3d-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.product-3d-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 25px 60px rgba(139, 92, 246, 0.3);
}

.product-3d-card:hover::before {
    opacity: 1;
}

/* Glowing Border Effect */
.card-glow-border {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0;
    filter: blur(15px);
    transition: opacity var(--transition-base);
}

.product-3d-card:hover .card-glow-border {
    opacity: 0.6;
}

.featured-3d {
    border-color: rgba(139, 92, 246, 0.3);
}

.featured-3d .card-glow-border.featured-glow {
    opacity: 0.4;
}

.featured-3d:hover .card-glow-border.featured-glow {
    opacity: 0.8;
    animation: borderGlow 2s ease-in-out infinite;
}

@keyframes borderGlow {

    0%,
    100% {
        opacity: 0.8;
    }

    50% {
        opacity: 1;
    }
}

/* Showcase Badge with Pulse */
.showcase-badge-new {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-full);
    z-index: 3;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}

.badge-pulse {
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

/* Showcase Info */
.showcase-info-new {
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.showcase-tag-new {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent-1);
    font-weight: 600;
}

.showcase-title-new {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text);
}

.showcase-meta-new {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

/* Product Image Zoom Effect */
.product-3d-card .showcase-image {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--color-bg-elevated);
}

.product-3d-card .showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.product-3d-card:hover .showcase-image img {
    transform: scale(1.1);
}

/* Animated Scroll Indicator */
.scroll-indicator-new {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    color: var(--color-text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: bounce 2s ease-in-out infinite;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    position: relative;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--color-accent-1);
    border-radius: 2px;
    animation: scrollWheel 1.5s ease-in-out infinite;
}

@keyframes scrollWheel {

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

    50% {
        opacity: 0.3;
        transform: translateY(12px);
    }
}

/* Responsive for Hero Redesigned */
@media (max-width: 1024px) {
    .hero-products-3d {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-3d-card:last-child {
        grid-column: span 2;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero-redesigned {
        padding-top: 120px;
        padding-bottom: var(--space-3xl);
    }

    .trust-bar-glass {
        flex-direction: column;
        gap: var(--space-sm);
        padding: var(--space-md);
    }

    .trust-divider {
        display: none;
    }

    .hero-headline-new {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .hero-description-new {
        font-size: 1rem;
    }

    .hero-glass-container {
        padding: var(--space-2xl) var(--space-lg);
    }

    .hero-products-3d {
        grid-template-columns: 1fr;
    }

    .product-3d-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }

    .hero-stats-new {
        gap: var(--space-lg);
    }

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

/* === Marquee === */
.marquee-section {
    padding: var(--space-xl) 0;
    background: var(--color-bg-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.marquee {
    display: flex;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    gap: var(--space-2xl);
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

.marquee-content span {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-muted);
}

.marquee-dot {
    color: var(--color-accent-1) !important;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* === Products Section === */
.products-section {
    padding: var(--space-4xl) 0;
    background: var(--color-bg);
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-3xl);
    flex-wrap: wrap;
}

.tab-btn {
    padding: var(--space-sm) var(--space-xl);
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid transparent;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-text);
}

.tab-btn.active {
    background: var(--gradient-primary);
    color: var(--color-bg);
    font-weight: 600;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: var(--space-lg);
}

.product-card {
    position: relative;
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: var(--shadow-lg);
}

.product-card.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(165, 94, 234, 0.1) 0%, rgba(255, 107, 107, 0.1) 100%);
    border-color: rgba(165, 94, 234, 0.3);
}

.product-badge {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    padding: var(--space-xs) var(--space-md);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    z-index: 5;
}

.product-badge.bestseller {
    background: var(--color-accent-1);
    color: white;
}

.product-badge.new {
    background: var(--color-accent-3);
    color: var(--color-bg);
}

.product-badge.hot {
    background: var(--color-accent-2);
    color: var(--color-bg);
}

.product-badge.starter {
    background: var(--color-accent-5);
    color: var(--color-bg);
}

.product-badge.mega {
    background: var(--gradient-secondary);
    color: white;
}

.product-image {
    position: relative;
    aspect-ratio: 4/5;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
    overflow: hidden;
}

.product-card.featured .product-image {
    aspect-ratio: 16/9;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: var(--space-md);
    transition: transform var(--transition-slow);
}

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

.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.preview-btn {
    padding: var(--space-md) var(--space-xl);
    background: white;
    color: var(--color-bg);
    font-weight: 600;
    border-radius: var(--radius-full);
    transform: translateY(20px);
    transition: transform var(--transition-base);
}

.product-card:hover .preview-btn {
    transform: translateY(0);
}

.product-content {
    padding: var(--space-lg);
}

.product-tag {
    display: inline-block;
    padding: var(--space-xs) var(--space-sm);
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-accent-3);
    background: rgba(72, 219, 251, 0.1);
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-sm);
}

.product-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--space-xs);
}

.product-desc {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
    margin-bottom: var(--space-md);
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: var(--space-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: var(--space-md);
}

.prompt-count {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.product-rating {
    color: var(--color-accent-2);
    font-weight: 600;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-sm);
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: var(--space-sm);
    flex-wrap: nowrap;
    white-space: nowrap;
}

.price-old {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    text-decoration: line-through;
    white-space: nowrap;
}

.price-current {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 800;
    color: var(--color-accent-1);
    white-space: nowrap;
}

.btn-cart {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-md);
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-text);
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all var(--transition-base);
}

.btn-cart svg {
    width: 18px;
    height: 18px;
}

.btn-cart:hover {
    background: var(--gradient-primary);
    color: var(--color-bg);
}

.btn-cart.btn-featured {
    background: var(--gradient-primary);
    color: var(--color-bg);
}

/* === How It Works === */
.how-section {
    padding: var(--space-4xl) 0;
    background: var(--color-bg-secondary);
}

.steps-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: var(--space-xl);
    margin-bottom: var(--space-4xl);
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    max-width: 280px;
}

.step-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    margin-bottom: var(--space-md);
}

.step-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-lg);
    color: var(--color-accent-3);
}

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

.step-title {
    font-family: var(--font-display);
    font-size: 1.375rem;
    /* Increased for better visibility */
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: var(--space-sm);
}

.step-desc {
    font-size: 1rem;
    /* Increased from 0.9375rem */
    line-height: 1.65;
    /* Added for better readability */
    color: var(--color-text-secondary);
}

.step-connector {
    flex: 0 0 80px;
    padding-top: 120px;
    color: rgba(255, 255, 255, 0.1);
}

.demo-box {
    max-width: 800px;
    margin: 0 auto;
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.demo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-lg) var(--space-xl);
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.demo-tag {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.copy-btn {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-text-secondary);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    transition: all var(--transition-fast);
}

.copy-btn svg {
    width: 16px;
    height: 16px;
}

.copy-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--color-text);
}

.copy-btn.copied {
    background: var(--color-success);
    color: var(--color-bg);
}

.demo-code {
    padding: var(--space-xl);
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
    white-space: pre-wrap;
    word-break: break-word;
}

/* === Benefits Section === */
.benefits-section {
    padding: var(--space-4xl) 0;
    background: var(--color-bg);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.benefit-card {
    text-align: center;
    padding: var(--space-2xl);
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.benefit-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.15);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: var(--space-lg);
}

.benefit-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: var(--space-sm);
}

.benefit-card p {
    font-size: 0.9375rem;
    line-height: 1.6;
    /* Added for better readability */
    color: var(--color-text-secondary);
}

/* === Testimonials === */
.testimonials-section {
    padding: var(--space-4xl) 0;
    background: var(--color-bg-secondary);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.testimonial-card {
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.testimonial-content {
    margin-bottom: var(--space-xl);
}

.stars {
    color: var(--color-accent-2);
    font-size: 1.25rem;
    margin-bottom: var(--space-lg);
}

.testimonial-content p {
    font-size: 1.0625rem;
    /* Slightly increased for comfort */
    line-height: 1.75;
    /* Increased for better readability */
    color: var(--color-text-secondary);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.author-avatar {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-weight: 700;
    color: var(--color-bg);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 1rem;
    /* Added explicit size */
    font-weight: 600;
    color: var(--color-text);
}

.author-role {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.4;
}

/* === FAQ === */
.faq-section {
    padding: var(--space-4xl) 0;
    background: var(--color-bg);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-lg) var(--space-xl);
    text-align: left;
    font-size: 1.125rem;
    /* Increased from 1rem for better readability */
    font-weight: 600;
    line-height: 1.4;
    color: var(--color-text);
    transition: background var(--transition-fast);
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.03);
}

.faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--color-accent-3);
    transition: transform var(--transition-base);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
}

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

.faq-answer p {
    padding: 0 var(--space-xl) var(--space-xl);
    font-size: 1rem;
    /* Increased from 0.9375rem */
    line-height: 1.75;
    /* Increased for better readability */
    color: var(--color-text-secondary);
}

/* === CTA Section === */
.cta-section {
    padding: var(--space-4xl) 0;
    background: linear-gradient(180deg, var(--color-bg-secondary) 0%, var(--color-bg) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

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

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: var(--space-lg);
}

.cta-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-2xl);
}

.cta-buttons {
    margin-bottom: var(--space-xl);
}

.cta-guarantee {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-text-muted);
    font-size: 0.9375rem;
}

.cta-guarantee svg {
    width: 20px;
    height: 20px;
    color: var(--color-success);
}

/* === Footer === */
.footer {
    background: var(--color-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: var(--space-4xl);
    margin-bottom: var(--space-3xl);
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: var(--space-lg);
}

.footer-desc {
    font-size: 0.9375rem;
    /* Added explicit size */
    line-height: 1.65;
    /* Added for better readability */
    color: var(--color-text-secondary);
    max-width: 300px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.footer-column h4 {
    font-family: var(--font-display);
    font-weight: 700;
    margin-bottom: var(--space-lg);
}

.footer-column a {
    display: block;
    font-size: 0.9375rem;
    /* Added explicit size */
    color: var(--color-text-secondary);
    padding: var(--space-xs) 0;
    transition: color var(--transition-fast);
}

.footer-column a:hover {
    color: var(--color-text);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.payment-icons {
    color: var(--color-text-muted);
    font-size: 0.875rem;
}



/* === Responsive === */
@media (max-width: 1200px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 180px;
    }

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

    .hero-subtitle {
        margin: 0 auto var(--space-2xl);
    }

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

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

    .hero-visual {
        display: none;
    }

    .product-card.featured {
        grid-column: span 1;
    }

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

    .testimonials-slider {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .btn-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

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

    .hero-stats {
        flex-direction: column;
        gap: var(--space-lg);
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .steps-container {
        flex-direction: column;
        align-items: center;
    }

    .step-connector {
        display: none;
    }

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

    .footer-links {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }

    .nav-floating {
        width: calc(100% - var(--space-xl));
    }

    .hero {
        padding: 140px var(--space-md) var(--space-3xl);
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn-lg {
        width: 100%;
    }

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

/* === HERO OPTIMIZED - HEATMAP SPLIT SCREEN === */
.hero-optimized {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px var(--space-xl) var(--space-4xl);
    background: linear-gradient(135deg, #09090b 0%, #18181b 50%, #0f0f12 100%);
    overflow: hidden;
}

.hero-split {
    display: grid;
    grid-template-columns: 47% 53%;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto 60px;
}

.hero-visual-side {
    position: relative;
    z-index: 2;
}

.visual-demo-container {
    margin-bottom: var(--space-xl);
}

.demo-window {
    background: rgba(15, 15, 20, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.demo-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(20, 20, 25, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.demo-dots {
    display: flex;
    gap: 6px;
}

.demo-dots i {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.demo-dots i:nth-child(1) {
    background: #ff5f57;
}

.demo-dots i:nth-child(2) {
    background: #febc2e;
}

.demo-dots i:nth-child(3) {
    background: #28c840;
}

.demo-title {
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.demo-content {
    padding: var(--space-xl);
}

.typing-demo {
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    color: #00ff41;
    margin-bottom: var(--space-xl);
    min-height: 60px;
}

.prompt-symbol {
    color: #00ff41;
    margin-right: 8px;
}

.typewriter-text {
    color: var(--color-text);
}

.cursor-blink {
    color: #00ff41;
    animation: blink 1s infinite;
}

.demo-output {
    background: rgba(0, 255, 65, 0.05);
    border: 1px solid rgba(0, 255, 65, 0.2);
    border-radius: 8px;
    padding: var(--space-md);
}

.output-label {
    color: #00ff41;
    font-size: 0.875rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.result-preview {
    width: 100%;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.trust-badges-left {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
}

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

.badge-text {
    color: var(--color-text-secondary);
    font-weight: 500;
}

.hero-content-side {
    position: relative;
    z-index: 2;
}

.hero-badge-top {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    color: var(--color-accent-1);
    margin-bottom: var(--space-lg);
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--color-accent-1);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.hero-headline-optimized {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: var(--space-2xl);
    letter-spacing: -0.02em;
    color: var(--color-text);
}

.headline-highlight {
    background: linear-gradient(135deg, #a78bfa 0%, #818cf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-3xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.hero-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1.0625rem;
    line-height: 1.6;
    color: var(--color-text-secondary);
}

.check-icon {
    width: 24px;
    height: 24px;
    color: #00ff41;
    flex-shrink: 0;
    margin-top: 2px;
}

.hero-cta-area {
    margin-bottom: var(--space-2xl);
}

.btn-cta-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    font-size: 1.125rem;
    font-weight: 700;
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    color: white;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.4);
    position: relative;
}

.btn-cta-large::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    border-radius: var(--radius-full);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-cta-large:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.6);
}

.btn-cta-large:hover::before {
    opacity: 1;
}

.btn-cta-large svg {
    transition: transform 0.3s;
}

.btn-cta-large:hover svg {
    transform: translateX(4px);
}

.price-highlight {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-top: var(--space-md);
    font-size: 0.9375rem;
}

.price-from {
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.8125rem;
}

.price-main {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent-2);
}

.price-note {
    color: var(--color-text-muted);
}

.social-proof-compact {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
}

.proof-avatars {
    display: flex;
    margin-right: 4px;
}

.avatar,
.avatar-more {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    border: 2px solid var(--color-bg);
}

.avatar {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    margin-left: -8px;
}

.avatar:first-child {
    margin-left: 0;
}

.avatar-more {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-text-secondary);
    margin-left: -8px;
}

.proof-text {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
}

.proof-text strong {
    color: var(--color-text);
    font-weight: 600;
}

@media (max-width: 1024px) {
    .hero-split {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }

    .hero-visual-side {
        order: 2;
    }

    .hero-content-side {
        order: 1;
    }
}

@media (max-width: 768px) {
    .hero-optimized {
        padding: 100px var(--space-md) var(--space-3xl);
    }

    .hero-headline-optimized {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-benefits li {
        font-size: 1rem;
    }

    .btn-cta-large {
        width: 100%;
        justify-content: center;
        padding: 18px 32px;
    }


    .social-proof-compact {
        flex-direction: column;
        text-align: center;
    }
}

/* === Marketing Popup === */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    padding: var(--space-md);
}

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

.popup-content {
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 800px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: scale(0.95);
    transition: all var(--transition-base);
}

.popup-overlay.active .popup-content {
    transform: scale(1);
}

.popup-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--color-text);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    z-index: 10;
}

.popup-close:hover {
    background: var(--color-error);
    transform: rotate(90deg);
}

.popup-image {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.popup-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popup-details {
    padding: var(--space-2xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.popup-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--color-accent-2);
    color: var(--color-bg);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
    align-self: flex-start;
}

.popup-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: var(--space-md);
    line-height: 1.1;
}

.popup-desc {
    color: var(--color-text-secondary);
    font-size: 1rem;
    margin-bottom: var(--space-xl);
    line-height: 1.6;
}

.popup-price {
    display: flex;
    align-items: baseline;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.popup-old-price {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    text-decoration: line-through;
}

.popup-new-price {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-success);
}

.popup-cta {
    width: 100%;
    text-align: center;
    font-size: 1.125rem;
    padding: var(--space-lg);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .popup-content {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .popup-image {
        display: none;
        /* Hide image on mobile to save space */
    }

    .popup-details {
        padding: var(--space-xl);
        text-align: center;
    }

    .popup-tag {
        align-self: center;
    }

    .popup-title {
        font-size: 1.75rem;
    }

    .popup-price {
        justify-content: center;
    }
}