/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* ===== NEW BRAND KIT ===== */

    /* Primary Colors - Deeper, more premium */
    --primary: #7C3AED;
    --primary-light: #A78BFA;
    --primary-dark: #5B21B6;
    --accent: #2563EB;
    --accent-light: #60A5FA;

    /* Gradients */
    --primary-gradient: linear-gradient(135deg, #7C3AED 0%, #2563EB 100%);
    --secondary-gradient: linear-gradient(135deg, #06B6D4 0%, #2563EB 100%);
    --accent-gradient: linear-gradient(135deg, #F59E0B 0%, #EF4444 100%);
    --glass-gradient: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    --hero-gradient: linear-gradient(135deg, #EDE9FE 0%, #DBEAFE 50%, #F0FDFA 100%);

    /* Legacy color tokens (for backward compatibility) */
    --purple-500: #8B5CF6;
    --purple-600: #7C3AED;
    --blue-500: #3B82F6;
    --blue-600: #2563EB;
    --cyan-500: #06B6D4;
    --green-500: #10B981;

    /* Surface & Background - Warmer tones */
    --surface: #FAFAFA;
    --surface-elevated: #FFFFFF;
    --surface-dark: #18181B;

    /* Neutral Scale - Zinc tones for modern feel */
    --gray-50: #FAFAFA;
    --gray-100: #F4F4F5;
    --gray-200: #E4E4E7;
    --gray-300: #D4D4D8;
    --gray-400: #A1A1AA;
    --gray-500: #71717A;
    --gray-600: #52525B;
    --gray-700: #3F3F46;
    --gray-800: #27272A;
    --gray-900: #18181B;
    --white: #FFFFFF;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Outfit', 'Poppins', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    /* Spacing */
    --section-padding: 120px 0;
    --container-padding: 0 24px;

    /* Effects - Enhanced */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 40px rgba(124, 58, 237, 0.15);
    --shadow-glow-strong: 0 0 60px rgba(124, 58, 237, 0.25);

    /* 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.34, 1.56, 0.64, 1);

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--gray-900);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
}

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

/* ===== NAVIGATION ===== */
.nav-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--transition-base);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 20px;
    color: var(--gray-900);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-links a:hover {
    color: var(--purple-600);
}

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

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

.nav-actions {
    display: flex;
    gap: 12px;
}

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

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--gray-700);
    transition: all var(--transition-base);
}

/* ===== BUTTONS ===== */
.btn-primary-large,
.btn-primary-small,
.btn-plan,
.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: var(--primary-gradient);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #9D6EFF 0%, #4A90FF 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

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

.btn-primary-large span,
.btn-primary-large svg {
    position: relative;
    z-index: 1;
}

.btn-primary-large:hover {
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
}

.btn-primary-small {
    padding: 10px 20px;
    font-size: 14px;
}

.btn-secondary-large,
.btn-secondary-small,
.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: transparent;
    color: var(--gray-900);
    text-decoration: none;
    font-weight: 600;
    border-radius: 12px;
    border: 2px solid var(--gray-300);
    cursor: pointer;
    transition: all var(--transition-base);
}

.btn-secondary-large:hover,
.btn-secondary-small:hover {
    border-color: var(--purple-500);
    color: var(--purple-600);
    background: rgba(139, 92, 246, 0.05);
}

.btn-secondary-small {
    padding: 10px 20px;
    font-size: 14px;
}

/* Generic Button Aliases (for consistency across all pages) */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--primary-gradient);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 6px 16px rgba(139, 92, 246, 0.4);
    transform: none !important;
}

.btn-primary-small:hover {
    transform: none !important;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 600;
    border-radius: 10px;
    border: 2px solid var(--gray-300);
    cursor: pointer;
    transition: all var(--transition-base);
}

.btn-secondary:hover {
    border-color: var(--purple-500);
    color: var(--purple-600);
    background: rgba(139, 92, 246, 0.05);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, #F0E7FF 0%, #E0F2FE 100%);
    z-index: 0;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #8B5CF6 0%, transparent 70%);
    top: -10%;
    right: -10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #3B82F6 0%, transparent 70%);
    bottom: -5%;
    left: -5%;
    animation-delay: -5s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #06B6D4 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -10s;
}

.floating-element {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    animation: float 15s infinite ease-in-out;
}

@keyframes float {

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

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

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--gray-900);
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--purple-600) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--gray-600);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-trust {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.trust-text {
    color: var(--gray-500);
    font-size: 14px;
}

.company-logos {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.logo-item {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    color: var(--gray-600);
    box-shadow: var(--shadow-sm);
}

.hero-visual {
    position: relative;
}

.video-showcase {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    padding: 32px;
    border-radius: 24px;
    box-shadow: var(--shadow-2xl);
}

.video-before,
.video-after {
    flex: 1;
    text-align: center;
}

.video-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-500);
    margin-bottom: 12px;
}

.video-placeholder {
    aspect-ratio: 16/9;
    background: var(--gray-200);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    position: relative;
}

.video-placeholder.polished {
    background: linear-gradient(135deg, #F0E7FF 0%, #E0F2FE 100%);
    color: var(--purple-500);
}

.transform-arrow {
    flex-shrink: 0;
}

/* Default: show right arrow, hide down arrow on desktop */
.arrow-mobile {
    display: none;
}

/* New Badge */
.badge-new {
    background: linear-gradient(135deg, #FF6B6B, #EE5253);
    color: white;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 6px;
    vertical-align: middle;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(238, 82, 83, 0.3);
}

.browser-mockup.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.browser-header {
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.browser-dots span:nth-child(1) {
    background: #FF5F56;
}

.browser-dots span:nth-child(2) {
    background: #FFBD2E;
}

.browser-dots span:nth-child(3) {
    background: #27C93F;
}

.sparkle {
    position: absolute;
    font-size: 24px;
    animation: sparkle 2s infinite;
}

.sparkle-1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.sparkle-2 {
    bottom: 10%;
    left: 10%;
    animation-delay: 1s;
}

@keyframes sparkle {

    0%,
    100% {
        opacity: 0;
        transform: scale(0.8) rotate(0deg);
    }

    50% {
        opacity: 1;
        transform: scale(1.2) rotate(180deg);
    }
}

/* ===== SECTION TITLES ===== */
.section-title {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--gray-900);
}

.section-title.dark {
    color: var(--gray-900);
}

.section-title.white {
    color: var(--white);
}

/* ===== PROBLEM SECTION ===== */
.problem-section {
    padding: var(--section-padding);
    background: var(--gray-900);
}

.problem-section .section-title {
    color: var(--white);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.problem-card {
    text-align: center;
    padding: 40px 32px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-base);
}

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

.problem-icon {
    margin-bottom: 24px;
    color: var(--purple-400);
}

.problem-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.problem-description {
    color: var(--gray-400);
    font-size: 16px;
}

.problem-footer {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    background: linear-gradient(90deg, var(--purple-500) 0%, var(--blue-500) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== AI TRANSFORMATION SECTION ===== */
.ai-transform-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
}

.transform-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 80px;
}

.transform-step {
    text-align: center;
    flex: 1;
    max-width: 280px;
}

.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--primary-gradient);
    color: var(--white);
    border-radius: 50%;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-icon {
    margin-bottom: 20px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow-lg);
    color: var(--purple-600);
    display: inline-block;
    transition: all var(--transition-base);
}

.glass-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.glass-card.processing {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
}

.glass-card.complete {
    position: relative;
}

.rotating {
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.sparkle-effect {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: var(--green-500);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

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

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

.step-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--gray-900);
}

.step-description {
    font-size: 14px;
    color: var(--gray-600);
}

.transform-arrow-connector {
    flex-shrink: 0;
}

.ai-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.ai-feature-card {
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition-base);
}

.ai-feature-card:hover {
    transform: translateY(-4px);
}

.feature-icon {
    margin-bottom: 16px;
    color: var(--purple-600);
}

.ai-feature-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--gray-900);
}

.ai-feature-card p {
    font-size: 14px;
    color: var(--gray-600);
}

/* ===== DIFFERENTIATORS SECTION ===== */
.differentiators-section {
    padding: var(--section-padding);
    background: var(--white);
}

.differentiator-cards {
    display: grid;
    gap: 40px;
}

.diff-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    padding: 48px;
    position: relative;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
}

.diff-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.badge-unique {
    display: inline-block;
    background: var(--primary-gradient);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.diff-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--gray-900);
}

.diff-visual {
    margin-bottom: 32px;
    background: var(--gray-50);
    border-radius: 12px;
    padding: 32px;
}

.dual-output-demo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.output-video,
.output-docs {
    background: var(--white);
    border-radius: 8px;
    padding: 16px;
    border: 1px solid var(--gray-200);
}

.output-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-500);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.output-content {
    aspect-ratio: 16/9;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-content {
    background: linear-gradient(135deg, #F0E7FF 0%, #E0F2FE 100%);
}

.docs-content {
    background: var(--gray-50);
    flex-direction: column;
    gap: 8px;
    padding: 16px;
    align-items: stretch;
}

.doc-line {
    height: 12px;
    background: var(--gray-300);
    border-radius: 4px;
}

.doc-line.short {
    width: 60%;
}

.diff-features {
    list-style: none;
    margin-bottom: 24px;
}

.diff-features li {
    padding: 12px 0;
    color: var(--gray-700);
    font-size: 16px;
    border-bottom: 1px solid var(--gray-100);
}

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

.diff-features.checklist li::before {
    content: '';
    display: inline-block;
    margin-right: 8px;
}

.time-comparison {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.time-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-radius: 8px;
}

.time-bar.traditional {
    background: var(--gray-200);
}

.time-bar.traditional .time-duration {
    margin-left: auto;
    width: 100%;
    height: 40px;
    background: var(--gray-400);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--white);
}

.time-bar.ai {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
}

.time-bar.ai .time-duration {
    margin-left: auto;
    width: 10%;
    min-width: 80px;
    height: 40px;
    background: var(--primary-gradient);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--white);
}

.time-label {
    font-weight: 600;
    color: var(--gray-700);
}

.stat-callout {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 24px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    border-radius: 12px;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-text {
    font-size: 14px;
    color: var(--gray-600);
}

.before-after-demo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.ba-side {
    padding: 24px;
    border-radius: 8px;
    text-align: center;
}

.ba-side.before {
    background: var(--gray-200);
}

.ba-side.after {
    background: linear-gradient(135deg, #F0E7FF 0%, #E0F2FE 100%);
}

.ba-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-500);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ba-content {
    padding: 40px 20px;
    border-radius: 8px;
    font-weight: 600;
    color: var(--gray-600);
}

.ba-content.polished {
    background: rgba(255, 255, 255, 0.7);
    color: var(--purple-600);
}

.roi-calculator-widget {
    background: var(--primary-gradient);
    padding: 32px;
    border-radius: 12px;
    text-align: center;
}

.roi-result {
    display: flex;
    flex-direction: column;
}

.roi-amount {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
}

.roi-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

/* ===== HOW IT WORKS SECTION ===== */
.how-it-works-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
    position: relative;
    overflow: hidden;
}

.how-it-works-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></svg>');
    opacity: 0.3;
}

.workflow-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    position: relative;
    z-index: 1;
}

.workflow-step {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    transition: all var(--transition-base);
}

.workflow-step:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.workflow-number {
    font-size: 72px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.2);
    line-height: 1;
    margin-bottom: 16px;
}

.workflow-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
}

.workflow-visual {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 24px;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.record-interface {
    text-align: center;
    width: 100%;
}

.record-button {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: 50%;
    margin: 0 auto 20px;
    position: relative;
    cursor: pointer;
    transition: all var(--transition-base);
}

.record-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
}

.record-button:hover {
    transform: scale(1.1);
}

.upload-zone {
    padding: 20px;
    border: 2px dashed var(--gray-300);
    border-radius: 8px;
    color: var(--gray-600);
    font-size: 14px;
}

.workflow-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.option-tag {
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 12px;
    color: var(--white);
}

.ai-progress {
    width: 100%;
}

.progress-bar {
    width: 100%;
    height: 12px;
    background: var(--gray-200);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 20px;
}

.progress-fill {
    height: 100%;
    width: 70%;
    background: var(--primary-gradient);
    animation: progress 2s ease-in-out infinite;
}

@keyframes progress {
    0% {
        width: 30%;
    }

    50% {
        width: 70%;
    }

    100% {
        width: 30%;
    }
}

.progress-stages {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stage {
    padding: 8px 12px;
    background: var(--gray-100);
    border-radius: 6px;
    font-size: 13px;
    color: var(--gray-700);
    text-align: left;
}

.workflow-time {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.export-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.export-item {
    padding: 16px;
    background: var(--gray-100);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    transition: all var(--transition-base);
    cursor: pointer;
}

.export-item:hover {
    background: var(--primary-gradient);
    color: var(--white);
    transform: scale(1.05);
}

.workflow-languages {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.flags {
    display: flex;
    gap: 6px;
}

.flags span {
    font-size: 20px;
}

.flags .more {
    font-size: 12px;
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
}

/* ===== FEATURES GRID SECTION ===== */
.features-grid-section {
    padding: var(--section-padding);
    background: var(--gray-50);
}

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

.feature-item {
    background: var(--white);
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--purple-300);
}

.feature-item-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.feature-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--gray-900);
}

.feature-item p {
    font-size: 14px;
    color: var(--gray-600);
}

/* ===== COMPARISON SECTION ===== */
.comparison-section {
    padding: var(--section-padding);
    background: var(--white);
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-bottom: 32px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.comparison-table thead {
    background: var(--gray-50);
}

.comparison-table th {
    padding: 20px;
    text-align: left;
    font-weight: 600;
    color: var(--gray-900);
    border-bottom: 2px solid var(--gray-200);
}

.comparison-table th.highlight-col {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    color: var(--purple-600);
}

.comparison-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--gray-100);
    color: var(--gray-700);
}

.comparison-table td.highlight-col {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    font-weight: 600;
    color: var(--purple-600);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-cta {
    text-align: center;
}

.link-arrow {
    color: var(--purple-600);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-base);
}

.link-arrow:hover {
    color: var(--purple-700);
    gap: 8px;
}

/* ===== SOCIAL PROOF SECTION ===== */
.social-proof-section {
    padding: var(--section-padding);
    background: var(--gray-50);
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
    border: 1px solid var(--gray-200);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.testimonial-quote {
    font-size: 16px;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

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

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 600;
    color: var(--gray-900);
}

.author-title {
    font-size: 14px;
    color: var(--gray-600);
}

.company-logo {
    font-weight: 600;
    color: var(--gray-500);
    font-size: 14px;
}

.testimonial-stat {
    padding: 12px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--purple-600);
    text-align: center;
}

.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    padding: 60px 0;
    border-top: 1px solid var(--gray-200);
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 48px;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    color: var(--gray-600);
    font-size: 14px;
}

/* ===== USE CASES SECTION ===== */
.use-cases-section {
    padding: var(--section-padding);
    background: var(--gray-900);
}

.use-cases-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 24px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
}

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

.tab-btn.active {
    background: var(--primary-gradient);
    border-color: transparent;
    color: var(--white);
}

.use-cases-content {
    position: relative;
}

.use-case-panel {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.use-case-panel.active {
    display: grid;
}

.use-case-visual {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 60px 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.use-case-screenshot {
    background: var(--gray-100);
    border-radius: 8px;
    padding: 80px 40px;
    text-align: center;
    font-size: 24px;
    color: var(--gray-600);
}

.use-case-details h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
}

.use-case-details ul {
    list-style: none;
}

.use-case-details li {
    padding: 12px 0 12px 32px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    position: relative;
}

.use-case-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green-500);
    font-weight: 700;
}

/* ===== PRICING SECTION ===== */
.pricing-section {
    padding: var(--section-padding);
    background: var(--white);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 32px;
}

.pricing-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 20px;
    padding: 48px 40px;
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--purple-300);
}

.pricing-card.popular {
    border-color: var(--purple-500);
    border-width: 3px;
    box-shadow: var(--shadow-lg);
}

.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gradient);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.plan-price {
    margin-bottom: 32px;
}

.price-currency {
    font-size: 24px;
    color: var(--gray-600);
    vertical-align: top;
}

.price-amount {
    font-size: 64px;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period {
    font-size: 18px;
    color: var(--gray-600);
}

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

.plan-features li {
    padding: 12px 0;
    color: var(--gray-700);
    font-size: 15px;
    border-bottom: 1px solid var(--gray-100);
}

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

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

.pricing-footer {
    text-align: center;
    color: var(--gray-600);
    margin-bottom: 24px;
}

.roi-calculator-cta {
    text-align: center;
}

/* ===== INTEGRATIONS SECTION ===== */
.integrations-section {
    padding: var(--section-padding);
    background: var(--gray-50);
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.integration-logo {
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    color: var(--gray-400);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
    cursor: pointer;
}

.integration-logo:hover {
    color: var(--purple-600);
    border-color: var(--purple-300);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.integrations-cta {
    text-align: center;
}

/* ===== FINAL CTA SECTION ===== */
.final-cta-section {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
}

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

.cta-title {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 24px;
}

.btn-cta-primary {
    background: var(--white);
    color: var(--purple-600);
}

.btn-cta-primary:hover {
    background: var(--gray-100);
}

.btn-cta-secondary {
    border-color: var(--white);
    color: var(--white);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.cta-trust {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--gray-900);
    padding: 80px 0 40px;
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    margin-bottom: 48px;
}

.footer-col h4 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

.footer-newsletter {
    margin-bottom: 48px;
    text-align: center;
}

.footer-newsletter h4 {
    color: var(--white);
    margin-bottom: 16px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid var(--gray-700);
    background: var(--gray-800);
    color: var(--white);
    font-size: 14px;
}

.newsletter-form button {
    padding: 12px 24px;
    background: var(--primary-gradient);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid var(--gray-800);
}

.footer-social {
    display: flex;
    gap: 24px;
}

.social-icon {
    color: var(--gray-400);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.social-icon:hover {
    color: var(--white);
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 24px;
    color: var(--gray-500);
    font-size: 14px;
}

.compliance-badges {
    display: flex;
    gap: 12px;
}

.badge {
    padding: 4px 12px;
    background: var(--gray-800);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 48px;
    }

    .problem-grid,
    .workflow-steps,
    .testimonials,
    .pricing-cards {
        grid-template-columns: 1fr;
    }

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

    .integrations-grid {
        grid-template-columns: repeat(4, 1fr);
    }

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

    .use-case-panel {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {

    .nav-links,
    .nav-actions {
        display: none;
    }

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

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

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

    .section-title {
        font-size: 32px;
    }

    .features-grid,
    .ai-features-grid {
        grid-template-columns: 1fr;
    }

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

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

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

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

    .cta-title {
        font-size: 32px;
    }

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

    .dual-output-demo,
    .before-after-demo {
        grid-template-columns: 1fr;
    }

    .video-showcase {
        flex-direction: column;
        padding: 20px;
        gap: 16px;
    }

    /* Hide right arrow, show down arrow on mobile */
    .arrow-desktop {
        display: none;
    }

    .arrow-mobile {
        display: block;
    }
}

/* ===== AUTHENTICATION PAGES ===== */
.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #F0E7FF 0%, #E0F2FE 100%);
    padding: 24px;
}

.auth-card {
    background: var(--white);
    width: 100%;
    max-width: 480px;
    padding: 48px;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-200);
}

.auth-header {
    text-align: center;
    margin-bottom: 32px;
}

.auth-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 24px;
    color: var(--gray-900);
    text-decoration: none;
    margin-bottom: 24px;
}

.auth-header h2 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.auth-header p {
    color: var(--gray-600);
    font-size: 16px;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
}

.form-group input {
    padding: 12px 16px;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    font-size: 16px;
    color: var(--gray-900);
    transition: all var(--transition-fast);
    font-family: var(--font-primary);
}

.form-group input:focus {
    outline: none;
    border-color: var(--purple-500);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.forgot-link {
    font-size: 14px;
    color: var(--purple-600);
    text-decoration: none;
    font-weight: 500;
}

.forgot-link:hover {
    text-decoration: underline;
}

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

.auth-footer {
    text-align: center;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-100);
    font-size: 14px;
    color: var(--gray-600);
}

.auth-footer a {
    color: var(--purple-600);
    text-decoration: none;
    font-weight: 600;
}

.auth-footer a:hover {
    text-decoration: underline;
}

@media (max-width: 640px) {
    .auth-card {
        padding: 32px 24px;
    }
}