
        :root {
            /* Fresh Vibrant Colors */
            --coral: #ff6b6b;
            --coral-light: #ff8787;
            --coral-dark: #ee5a5a;
            --coral-glow: rgba(255, 107, 107, 0.4);
            
            --mint: #51cf66;
            --mint-light: #69db7c;
            --mint-dark: #40c057;
            --mint-glow: rgba(81, 207, 102, 0.4);
            
            --sky: #339af0;
            --sky-light: #4dabf7;
            --sky-dark: #228be6;
            --sky-glow: rgba(51, 154, 240, 0.4);
            
            --violet: #9775fa;
            --violet-light: #b197fc;
            --violet-dark: #845ef7;
            --violet-glow: rgba(151, 117, 250, 0.4);
            
            --sun: #fcc419;
            --sun-light: #ffd43b;
            --sun-glow: rgba(252, 196, 25, 0.4);
            
            --dark: #1a1b2e;
            --dark-lighter: #252842;
            --dark-card: #2a2d47;
            
            --text-white: #ffffff;
            --text-light: rgba(255, 255, 255, 0.9);
            --text-muted: rgba(255, 255, 255, 0.6);
            --text-subtle: rgba(255, 255, 255, 0.4);
            
            --border: rgba(255, 255, 255, 0.1);
            --border-light: rgba(255, 255, 255, 0.05);
            
            --glass: rgba(255, 255, 255, 0.05);
            --glass-hover: rgba(255, 255, 255, 0.1);
            
            --font-display: 'Sora', sans-serif;
            --font-body: 'Inter', sans-serif;
            
            --radius-sm: 12px;
            --radius-md: 16px;
            --radius-lg: 24px;
            --radius-xl: 32px;
            --radius-full: 9999px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            background: var(--dark);
            color: var(--text-white);
            min-height: 100vh;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* === ANIMATED BACKGROUND === */
        .bg-canvas {
            position: fixed;
            inset: 0;
            z-index: -1;
            overflow: hidden;
        }

        .bg-gradient-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(120px);
            animation: orbFloat 25s ease-in-out infinite;
        }

        .orb-1 {
            width: 800px;
            height: 800px;
            background: linear-gradient(135deg, var(--coral-glow), var(--violet-glow));
            top: -400px;
            left: -200px;
            animation-delay: 0s;
        }

        .orb-2 {
            width: 600px;
            height: 600px;
            background: linear-gradient(135deg, var(--sky-glow), var(--mint-glow));
            bottom: -200px;
            right: -200px;
            animation-delay: -8s;
        }

        .orb-3 {
            width: 500px;
            height: 500px;
            background: linear-gradient(135deg, var(--violet-glow), var(--sun-glow));
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation-delay: -16s;
        }

        @keyframes orbFloat {
            0%, 100% { transform: translate(0, 0) scale(1); }
            25% { transform: translate(50px, -50px) scale(1.1); }
            50% { transform: translate(-30px, 30px) scale(0.9); }
            75% { transform: translate(30px, 50px) scale(1.05); }
        }

        /* Grid Pattern Overlay */
        .bg-grid {
            position: fixed;
            inset: 0;
            z-index: -1;
            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: 50px 50px;
            mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
        }

        /* Floating Particles */
        .particles {
            position: fixed;
            inset: 0;
            z-index: -1;
            overflow: hidden;
        }

        .particle {
            position: absolute;
            border-radius: 50%;
            animation: particleFloat linear infinite;
            opacity: 0.6;
        }

        @keyframes particleFloat {
            0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
            10% { opacity: 0.6; }
            90% { opacity: 0.6; }
            100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
        }

        /* === HEADER === */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 1rem 1.5rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        header.scrolled {
            background: rgba(26, 27, 46, 0.9);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
            padding: 0.75rem 1.5rem;
        }

        nav {
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--text-white);
            z-index: 1001;
        }

        .logo-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--coral), var(--violet));
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            box-shadow: 0 8px 32px var(--coral-glow);
            transition: transform 0.3s ease;
        }

        .logo:hover .logo-icon {
            transform: rotate(-10deg) scale(1.05);
        }

        .logo-icon::before {
            content: '';
            position: absolute;
            inset: -2px;
            background: linear-gradient(135deg, var(--coral), var(--violet), var(--sky));
            border-radius: var(--radius-md);
            z-index: -1;
            animation: borderRotate 4s linear infinite;
        }

        @keyframes borderRotate {
            0% { filter: hue-rotate(0deg); }
            100% { filter: hue-rotate(360deg); }
        }

        .logo-icon svg {
            width: 26px;
            height: 26px;
            fill: white;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            color: var(--text-muted);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            padding: 0.5rem 0;
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-links a::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--coral), var(--violet));
            border-radius: var(--radius-full);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-links a:hover {
            color: var(--text-white);
        }

        .nav-links a:hover::before {
            width: 100%;
        }

        .nav-actions {
            display: flex;
            gap: 0.75rem;
            align-items: center;
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.85rem 1.5rem;
            border-radius: var(--radius-full);
            font-family: var(--font-body);
            font-size: 0.9rem;
            font-weight: 700;
            text-decoration: none;
            cursor: pointer;
            border: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .btn-ghost {
            background: var(--glass);
            color: var(--text-light);
            border: 1px solid var(--border);
        }

        .btn-ghost:hover {
            background: var(--glass-hover);
            border-color: var(--text-subtle);
            transform: translateY(-2px);
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--coral), var(--coral-dark));
            color: white;
            box-shadow: 0 8px 32px var(--coral-glow);
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, var(--violet), var(--coral));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .btn-primary:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 12px 40px var(--coral-glow);
        }

        .btn-primary:hover::before {
            opacity: 1;
        }

        .btn-primary span {
            position: relative;
            z-index: 1;
        }

        .btn-glow {
            background: linear-gradient(135deg, var(--mint), var(--mint-dark));
            color: white;
            box-shadow: 0 8px 32px var(--mint-glow);
        }

        .btn-glow:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px var(--mint-glow);
        }

        .btn-lg {
            padding: 1.1rem 2rem;
            font-size: 1rem;
        }

        .btn-xl {
            padding: 1.25rem 2.5rem;
            font-size: 1.1rem;
        }

        /* Mobile Menu Button */
        .mobile-menu-btn {
            display: none;
            width: 48px;
            height: 48px;
            background: var(--glass);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            cursor: pointer;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 6px;
            z-index: 1001;
            transition: all 0.3s ease;
        }

        .mobile-menu-btn span {
            width: 22px;
            height: 2px;
            background: var(--text-white);
            border-radius: var(--radius-full);
            transition: all 0.3s ease;
        }

        .mobile-menu-btn.active {
            background: var(--coral);
            border-color: var(--coral);
        }

        .mobile-menu-btn.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .mobile-menu-btn.active span:nth-child(2) {
            opacity: 0;
            transform: translateX(-10px);
        }

        .mobile-menu-btn.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        /* Mobile Menu Overlay */
        .mobile-menu {
            position: fixed;
            inset: 0;
            background: rgba(26, 27, 46, 0.98);
            backdrop-filter: blur(30px);
            z-index: 999;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 2rem;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .mobile-menu.active {
            opacity: 1;
            visibility: visible;
        }

        .mobile-menu-links {
            list-style: none;
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .mobile-menu-links li {
            transform: translateY(30px);
            opacity: 0;
            transition: all 0.4s ease;
        }

        .mobile-menu.active .mobile-menu-links li {
            transform: translateY(0);
            opacity: 1;
        }

        .mobile-menu.active .mobile-menu-links li:nth-child(1) { transition-delay: 0.1s; }
        .mobile-menu.active .mobile-menu-links li:nth-child(2) { transition-delay: 0.15s; }
        .mobile-menu.active .mobile-menu-links li:nth-child(3) { transition-delay: 0.2s; }
        .mobile-menu.active .mobile-menu-links li:nth-child(4) { transition-delay: 0.25s; }

        .mobile-menu-links a {
            font-family: var(--font-display);
            font-size: 2rem;
            font-weight: 700;
            color: var(--text-white);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .mobile-menu-links a:hover {
            color: var(--coral);
        }

        .mobile-menu-actions {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            width: 100%;
            max-width: 280px;
            transform: translateY(30px);
            opacity: 0;
            transition: all 0.4s ease 0.3s;
        }

        .mobile-menu.active .mobile-menu-actions {
            transform: translateY(0);
            opacity: 1;
        }

        .mobile-menu-actions .btn {
            width: 100%;
        }

        /* === MAIN CONTENT === */
        main {
            max-width: 950px;
            margin: 0 auto;
            padding: 7rem 1.5rem 4rem;
        }

        /* === HERO === */
        .hero {
            text-align: center;
            margin-bottom: 3rem;
            padding-top: 2rem;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            padding: 0.6rem 1.25rem;
            background: var(--glass);
            border: 1px solid var(--border);
            border-radius: var(--radius-full);
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text-light);
            margin-bottom: 1.75rem;
            animation: fadeInDown 0.8s ease forwards;
            backdrop-filter: blur(10px);
        }

        .hero-badge-dot {
            width: 8px;
            height: 8px;
            background: var(--mint);
            border-radius: 50%;
            animation: pulse 2s ease-in-out infinite;
            box-shadow: 0 0 10px var(--mint-glow);
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.3); opacity: 0.7; }
        }

        @keyframes fadeInDown {
            from { opacity: 0; transform: translateY(-30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .hero h1 {
            font-family: var(--font-display);
            font-size: clamp(2.5rem, 8vw, 4.5rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            animation: fadeInUp 0.8s ease 0.1s forwards;
            opacity: 0;
            letter-spacing: -0.02em;
        }

        .hero h1 .highlight {
            background: linear-gradient(135deg, var(--coral), var(--violet), var(--sky), var(--mint));
            background-size: 300% 300%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientShift 6s ease infinite;
        }

        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .hero-text {
            color: var(--text-muted);
            font-size: 1.25rem;
            max-width: 600px;
            margin: 0 auto 2.5rem;
            animation: fadeInUp 0.8s ease 0.2s forwards;
            opacity: 0;
            line-height: 1.7;
        }

        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
            animation: fadeInUp 0.8s ease 0.3s forwards;
            opacity: 0;
        }

        /* Stats */
        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin-top: 4rem;
            padding: 2rem;
            background: var(--glass);
            border: 1px solid var(--border);
            border-radius: var(--radius-xl);
            backdrop-filter: blur(10px);
            animation: fadeInUp 0.8s ease 0.4s forwards;
            opacity: 0;
        }

        .hero-stat {
            text-align: center;
        }

        .hero-stat-value {
            font-family: var(--font-display);
            font-size: 2.25rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--coral), var(--violet));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-stat-label {
            font-size: 0.9rem;
            color: var(--text-muted);
            font-weight: 600;
            margin-top: 0.25rem;
        }

        /* === UPLOAD CARD === */
        .upload-card {
            background: linear-gradient(135deg, var(--dark-card), var(--dark-lighter));
            border: 1px solid var(--border);
            border-radius: var(--radius-xl);
            padding: 2.5rem;
            margin-top: 3rem;
            position: relative;
            overflow: hidden;
            animation: fadeInUp 0.8s ease 0.5s forwards;
            opacity: 0;
        }

        .upload-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--coral), var(--violet), var(--sky), var(--mint));
            background-size: 300% 100%;
            animation: gradientMove 4s linear infinite;
        }

        @keyframes gradientMove {
            0% { background-position: 0% 50%; }
            100% { background-position: 300% 50%; }
        }

        /* Steps */
        .steps {
            display: flex;
            justify-content: center;
            gap: 0.75rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .step {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.7rem 1.25rem;
            border-radius: var(--radius-full);
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--text-subtle);
            background: var(--glass);
            border: 1px solid var(--border-light);
            transition: all 0.4s ease;
        }

        .step.active {
            background: linear-gradient(135deg, var(--coral), var(--coral-dark));
            color: white;
            border-color: transparent;
            box-shadow: 0 8px 32px var(--coral-glow);
        }

        .step.completed {
            background: linear-gradient(135deg, var(--mint), var(--mint-dark));
            color: white;
            border-color: transparent;
        }

        .step-num {
            width: 26px;
            height: 26px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(255,255,255,0.15);
            font-size: 0.8rem;
        }

        /* Upload Zone */
        .upload-zone {
            border: 2px dashed var(--border);
            border-radius: var(--radius-lg);
            padding: 4rem 2rem;
            text-align: center;
            cursor: pointer;
            transition: all 0.4s ease;
            position: relative;
            background: var(--glass);
        }

        .upload-zone::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: var(--radius-lg);
            background: linear-gradient(135deg, var(--coral-glow), var(--violet-glow));
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .upload-zone:hover,
        .upload-zone.drag-over {
            border-color: var(--coral);
            transform: scale(1.01);
        }

        .upload-zone:hover::before,
        .upload-zone.drag-over::before {
            opacity: 0.3;
        }

        .upload-icon {
            width: 120px;
            height: 120px;
            margin: 0 auto 2rem;
            background: linear-gradient(135deg, var(--coral), var(--violet));
            border-radius: var(--radius-xl);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3.5rem;
            position: relative;
            z-index: 1;
            box-shadow: 0 20px 60px var(--coral-glow);
            animation: iconBounce 3s ease-in-out infinite;
        }

        @keyframes iconBounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .upload-zone:hover .upload-icon {
            animation: iconShake 0.5s ease;
        }

        @keyframes iconShake {
            0%, 100% { transform: rotate(0deg); }
            25% { transform: rotate(-10deg); }
            75% { transform: rotate(10deg); }
        }

        .upload-zone h3 {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            position: relative;
            z-index: 1;
        }

        .upload-zone p {
            color: var(--text-muted);
            font-size: 1rem;
            position: relative;
            z-index: 1;
        }

        .upload-zone .browse {
            color: var(--coral);
            font-weight: 700;
            text-decoration: underline;
            text-underline-offset: 3px;
        }

        .upload-zone input {
            display: none;
        }

        .file-types {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 2rem;
            position: relative;
            z-index: 1;
            flex-wrap: wrap;
        }

        .file-type {
            padding: 0.5rem 1rem;
            background: var(--dark);
            border-radius: var(--radius-full);
            font-size: 0.75rem;
            font-weight: 700;
            color: var(--text-muted);
            border: 1px solid var(--border);
            transition: all 0.3s ease;
        }

        .file-type:hover {
            border-color: var(--coral);
            color: var(--coral);
            transform: translateY(-3px);
        }

        /* File Preview */
        .file-preview {
            display: none;
            background: var(--glass);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 1.5rem;
            margin-top: 1.5rem;
            animation: slideIn 0.5s ease;
        }

        @keyframes slideIn {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .file-preview.visible {
            display: block;
        }

        .file-info {
            display: flex;
            align-items: center;
            gap: 1.25rem;
        }

        .file-icon-box {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, var(--sky), var(--violet));
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.75rem;
            flex-shrink: 0;
            box-shadow: 0 8px 32px var(--sky-glow);
        }

        .file-details {
            flex: 1;
            min-width: 0;
        }

        .file-name {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 1.1rem;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .file-meta {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-top: 0.3rem;
        }

        .file-remove {
            width: 48px;
            height: 48px;
            background: var(--glass);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            color: var(--text-muted);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            transition: all 0.3s ease;
        }

        .file-remove:hover {
            background: rgba(255, 107, 107, 0.2);
            border-color: var(--coral);
            color: var(--coral);
            transform: rotate(90deg);
        }

        /* Progress */
        .upload-progress {
            display: none;
            margin-top: 1.25rem;
        }

        .upload-progress.visible {
            display: block;
        }

        .progress-bar {
            height: 8px;
            background: var(--dark);
            border-radius: var(--radius-full);
            overflow: hidden;
        }

        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--coral), var(--violet), var(--sky), var(--mint));
            background-size: 300% 100%;
            border-radius: var(--radius-full);
            width: 0%;
            transition: width 0.3s ease;
            animation: progressShine 2s linear infinite;
        }

        @keyframes progressShine {
            0% { background-position: 0% 50%; }
            100% { background-position: 300% 50%; }
        }

        .progress-text {
            display: flex;
            justify-content: space-between;
            margin-top: 0.75rem;
            font-size: 0.85rem;
            color: var(--text-muted);
            font-weight: 600;
        }

        /* Pricing */
        .pricing-section {
            display: none;
            margin-top: 2.5rem;
            padding-top: 2.5rem;
            border-top: 1px dashed var(--border);
            animation: fadeInUp 0.5s ease;
        }

        .pricing-section.visible {
            display: block;
        }

        .section-title {
            font-family: var(--font-display);
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .section-title-icon {
            font-size: 1.5rem;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .price-card {
            padding: 1.5rem;
            background: var(--glass);
            border: 2px solid var(--border);
            border-radius: var(--radius-lg);
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .price-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, var(--coral-glow), var(--violet-glow));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .price-card:hover {
            border-color: var(--coral);
            transform: translateY(-5px);
        }

        .price-card:hover::before {
            opacity: 0.5;
        }

        .price-card.selected {
            border-color: var(--coral);
            background: linear-gradient(135deg, rgba(255,107,107,0.15), rgba(151,117,250,0.15));
            box-shadow: 0 8px 32px var(--coral-glow);
        }

        .price-amount {
            font-family: var(--font-display);
            font-size: 2rem;
            font-weight: 800;
            position: relative;
            z-index: 1;
        }

        .price-card.selected .price-amount {
            background: linear-gradient(135deg, var(--coral), var(--violet));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .price-label {
            font-size: 0.85rem;
            color: var(--text-muted);
            font-weight: 600;
            position: relative;
            z-index: 1;
            margin-top: 0.25rem;
        }

        .custom-price-input {
            position: relative;
            margin-top: 1.5rem;
        }

        .currency-symbol {
            position: absolute;
            left: 1.5rem;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-muted);
            font-weight: 700;
            font-size: 1.25rem;
        }

        .price-input {
            width: 100%;
            padding: 1.25rem 1.25rem 1.25rem 3.5rem;
            background: var(--dark);
            border: 2px solid var(--border);
            border-radius: var(--radius-lg);
            color: var(--text-white);
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 700;
            transition: all 0.3s ease;
        }

        .price-input:focus {
            outline: none;
            border-color: var(--coral);
            box-shadow: 0 0 0 4px var(--coral-glow);
        }

        .price-input::placeholder {
            color: var(--text-subtle);
            font-weight: 500;
            font-size: 1rem;
        }

        /* Content Details */
        .content-details {
            margin-top: 2rem;
        }

        .text-input {
            width: 100%;
            padding: 1rem 1.25rem;
            background: var(--dark);
            border: 2px solid var(--border);
            border-radius: var(--radius-md);
            color: var(--text-white);
            font-family: var(--font-body);
            font-size: 1rem;
            font-weight: 500;
            transition: all 0.3s ease;
            margin-bottom: 1rem;
        }

        .text-input:focus {
            outline: none;
            border-color: var(--violet);
            box-shadow: 0 0 0 4px var(--violet-glow);
        }

        .text-input::placeholder {
            color: var(--text-subtle);
        }

        textarea.text-input {
            min-height: 100px;
            resize: vertical;
        }

        /* Generate Button */
        .generate-section {
            display: none;
            margin-top: 2rem;
            animation: fadeInUp 0.5s ease;
        }

        .generate-section.visible {
            display: block;
        }

        .generate-btn {
            width: 100%;
            padding: 1.5rem;
            font-size: 1.15rem;
            background: linear-gradient(135deg, var(--coral), var(--violet));
            border-radius: var(--radius-lg);
            position: relative;
            overflow: hidden;
        }

        .generate-btn::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, var(--violet), var(--sky));
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .generate-btn:hover::before {
            opacity: 1;
        }

        .generate-btn .btn-content {
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
        }

        /* Result */
        .result-section {
            display: none;
            margin-top: 2rem;
            animation: fadeInUp 0.5s ease;
        }

        .result-section.visible {
            display: block;
        }

        .success-card {
            background: linear-gradient(135deg, rgba(81,207,102,0.1), rgba(81,207,102,0.05));
            border: 2px solid var(--mint);
            border-radius: var(--radius-xl);
            padding: 2.5rem;
            text-align: center;
            margin-bottom: 1.5rem;
        }

        .success-icon {
            width: 90px;
            height: 90px;
            margin: 0 auto 1.5rem;
            background: linear-gradient(135deg, var(--mint), var(--mint-dark));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            box-shadow: 0 20px 60px var(--mint-glow);
            animation: successBounce 0.6s ease;
        }

        @keyframes successBounce {
            0% { transform: scale(0) rotate(-180deg); }
            50% { transform: scale(1.2) rotate(10deg); }
            70% { transform: scale(0.9) rotate(-5deg); }
            100% { transform: scale(1) rotate(0deg); }
        }

        .success-card h3 {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--mint);
            margin-bottom: 0.5rem;
        }

        .success-card p {
            color: var(--text-muted);
            font-size: 1rem;
        }

        .link-container {
            background: var(--dark);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 1rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .link-text {
            flex: 1;
            font-family: 'Courier New', monospace;
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--sky);
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .copy-btn {
            padding: 1rem 1.75rem;
            background: linear-gradient(135deg, var(--sky), var(--sky-dark));
            border: none;
            border-radius: var(--radius-full);
            color: white;
            font-family: var(--font-body);
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
            box-shadow: 0 8px 32px var(--sky-glow);
        }

        .copy-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px var(--sky-glow);
        }

        .copy-btn.copied {
            background: linear-gradient(135deg, var(--mint), var(--mint-dark));
            box-shadow: 0 8px 32px var(--mint-glow);
        }

        .share-buttons {
            display: flex;
            justify-content: center;
            gap: 0.75rem;
            margin-top: 1.5rem;
            flex-wrap: wrap;
        }

        .share-btn {
            width: 56px;
            height: 56px;
            background: var(--glass);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .share-btn:hover {
            background: var(--glass-hover);
            border-color: var(--coral);
            transform: translateY(-5px) scale(1.05);
        }

        .stats-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .stats-card {
            text-align: center;
            padding: 1.5rem;
            background: var(--glass);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
        }

        .stats-card-value {
            font-family: var(--font-display);
            font-size: 1.75rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--coral), var(--violet));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stats-card-label {
            font-size: 0.85rem;
            color: var(--text-muted);
            font-weight: 600;
            margin-top: 0.25rem;
        }

        /* === FEATURES === */
        .features-section {
            margin-top: 5rem;
        }

        .features-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .features-header h2 {
            font-family: var(--font-display);
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }

        .features-header p {
            color: var(--text-muted);
            font-size: 1.15rem;
            max-width: 500px;
            margin: 0 auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .feature-card {
            background: var(--glass);
            border: 1px solid var(--border);
            border-radius: var(--radius-xl);
            padding: 2rem;
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--coral), var(--violet));
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            border-color: var(--coral);
            box-shadow: 0 20px 60px rgba(255, 107, 107, 0.2);
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            background: linear-gradient(135deg, var(--coral-glow), var(--violet-glow));
            border-radius: var(--radius-lg);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            transition: transform 0.4s ease;
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .feature-card:nth-child(2) .feature-icon {
            background: linear-gradient(135deg, var(--sky-glow), var(--mint-glow));
        }

        .feature-card:nth-child(3) .feature-icon {
            background: linear-gradient(135deg, var(--violet-glow), var(--sun-glow));
        }

        .feature-card h3 {
            font-family: var(--font-display);
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
        }

        .feature-card p {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* === HOW IT WORKS === */
        .how-section {
            margin-top: 5rem;
            text-align: center;
        }

        .how-section h2 {
            font-family: var(--font-display);
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 3rem;
        }

        .how-steps {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            position: relative;
        }

        .how-steps::before {
            content: '';
            position: absolute;
            top: 45px;
            left: 20%;
            right: 20%;
            height: 4px;
            background: linear-gradient(90deg, var(--coral), var(--violet), var(--sky));
            border-radius: var(--radius-full);
            z-index: 0;
        }

        .how-step {
            position: relative;
            z-index: 1;
        }

        .how-step-num {
            width: 70px;
            height: 70px;
            margin: 0 auto 1.5rem;
            background: linear-gradient(135deg, var(--coral), var(--violet));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-display);
            font-size: 1.75rem;
            font-weight: 800;
            box-shadow: 0 10px 40px var(--coral-glow);
            border: 4px solid var(--dark);
        }

        .how-step:nth-child(2) .how-step-num {
            background: linear-gradient(135deg, var(--violet), var(--sky));
            box-shadow: 0 10px 40px var(--violet-glow);
        }

        .how-step:nth-child(3) .how-step-num {
            background: linear-gradient(135deg, var(--sky), var(--mint));
            box-shadow: 0 10px 40px var(--sky-glow);
        }

        .how-step h3 {
            font-family: var(--font-display);
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .how-step p {
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        /* === TESTIMONIALS === */
        .testimonials-section {
            margin-top: 5rem;
        }

        .testimonials-section h2 {
            font-family: var(--font-display);
            font-size: 2.5rem;
            font-weight: 800;
            text-align: center;
            margin-bottom: 3rem;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }

        .testimonial-card {
            background: var(--glass);
            border: 1px solid var(--border);
            border-radius: var(--radius-xl);
            padding: 2rem;
            transition: all 0.3s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            border-color: var(--violet);
            box-shadow: 0 20px 60px var(--violet-glow);
        }

        .testimonial-text {
            font-size: 1.05rem;
            color: var(--text-light);
            line-height: 1.7;
            margin-bottom: 1.5rem;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .testimonial-avatar {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--coral), var(--violet));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
        }

        .testimonial-name {
            font-family: var(--font-display);
            font-weight: 700;
        }

        .testimonial-role {
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        /* === FOOTER === */
        footer {
            margin-top: 6rem;
            background: var(--dark-lighter);
            border-top: 1px solid var(--border);
            padding: 4rem 1.5rem 2rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr repeat(3, 1fr);
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-brand p {
            color: var(--text-muted);
            font-size: 0.95rem;
            max-width: 300px;
            margin: 1rem 0 1.5rem;
            line-height: 1.7;
        }

        .social-links {
            display: flex;
            gap: 0.75rem;
        }

        .social-link {
            width: 44px;
            height: 44px;
            background: var(--glass);
            border: 1px solid var(--border);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            text-decoration: none;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: var(--coral);
            border-color: var(--coral);
            color: white;
            transform: translateY(-3px);
        }

        .footer-column h4 {
            font-family: var(--font-display);
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 1.25rem;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column li {
            margin-bottom: 0.75rem;
        }

        .footer-column a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        .footer-column a:hover {
            color: var(--coral);
        }

        .footer-bottom {
            padding-top: 2rem;
            border-top: 1px solid var(--border);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-bottom p {
            color: var(--text-subtle);
            font-size: 0.9rem;
        }

        .footer-legal {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .footer-legal a {
            color: var(--text-subtle);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .footer-legal a:hover {
            color: var(--text-white);
        }

        /* Scroll to top */
        .scroll-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, var(--coral), var(--violet));
            border: none;
            border-radius: var(--radius-md);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.4s ease;
            z-index: 100;
            box-shadow: 0 10px 40px var(--coral-glow);
        }

        .scroll-top.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .scroll-top:hover {
            transform: translateY(-5px);
        }

        .scroll-top svg {
            width: 24px;
            height: 24px;
            fill: white;
        }

        /* === RESPONSIVE === */
        @media (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .how-steps::before {
                display: none;
            }

            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .nav-links,
            .nav-actions .btn {
                display: none;
            }

            .mobile-menu-btn {
                display: flex;
            }

            main {
                padding: 5.5rem 1rem 3rem;
            }

            .hero {
                padding-top: 1rem;
            }

            .hero h1 {
                font-size: 2.25rem;
            }

            .hero-text {
                font-size: 1.05rem;
            }

            .hero-stats {
                flex-direction: column;
                gap: 1.5rem;
                padding: 1.5rem;
            }

            .hero-stat-value {
                font-size: 1.75rem;
            }

            .upload-card {
                padding: 1.5rem;
            }

            .upload-zone {
                padding: 2.5rem 1.5rem;
            }

            .upload-icon {
                width: 90px;
                height: 90px;
                font-size: 2.5rem;
            }

            .steps {
                gap: 0.5rem;
            }

            .step span:not(.step-num) {
                display: none;
            }

            .step {
                padding: 0.6rem;
                width: 44px;
                height: 44px;
                justify-content: center;
            }

            .step-num {
                width: 100%;
                height: 100%;
                background: transparent !important;
            }

            .pricing-grid {
                grid-template-columns: 1fr;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .features-header h2,
            .how-section h2,
            .testimonials-section h2 {
                font-size: 1.75rem;
            }

            .how-steps {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 2rem;
            }

            .footer-brand {
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .footer-brand p {
                max-width: 100%;
            }

            .social-links {
                justify-content: center;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .footer-legal {
                justify-content: center;
            }

            .stats-cards {
                grid-template-columns: 1fr;
            }

            .link-container {
                flex-direction: column;
            }

            .link-text {
                width: 100%;
                text-align: center;
            }

            .copy-btn {
                width: 100%;
            }

            .share-buttons {
                gap: 0.5rem;
            }

            .share-btn {
                width: 48px;
                height: 48px;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.85rem;
            }

            .hero-buttons {
                flex-direction: column;
                width: 100%;
            }

            .hero-buttons .btn {
                width: 100%;
            }

            .btn-lg, .btn-xl {
                padding: 1rem 1.5rem;
            }

            .upload-zone h3 {
                font-size: 1.25rem;
            }

            .file-types {
                gap: 0.4rem;
            }

            .file-type {
                padding: 0.4rem 0.75rem;
                font-size: 0.7rem;
            }

            .file-info {
                flex-direction: column;
                text-align: center;
            }

            .file-remove {
                position: absolute;
                top: 1rem;
                right: 1rem;
            }

            .file-preview {
                position: relative;
            }

            .scroll-top {
                width: 48px;
                height: 48px;
                bottom: 1rem;
                right: 1rem;
            }
        }
