        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --red: #e63946;
            --red-dark: #c1121f;
            --red-light: #fef2f2;
            --black: #0a0a0a;
            --white: #ffffff;
            --gray-50: #fafafa;
            --gray-100: #f5f5f5;
            --gray-200: #e5e5e5;
            --gray-300: #d4d4d4;
            --gray-400: #a3a3a3;
            --gray-500: #737373;
            --gray-600: #525252;
            --gray-700: #404040;
            --gray-800: #262626;
            --gray-900: #171717;
            --max-w: 1200px;
            --ease: cubic-bezier(0.16, 1, 0.3, 1);
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }
        * {
            -webkit-tap-highlight-color: transparent;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--white);
            color: var(--gray-900);
            overflow-x: hidden;
            line-height: 1.6;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            color: var(--gray-900);
        }

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

        /* ============ LOADER ============ */
        .loader {
            position: fixed;
            inset: 0;
            background: var(--white);
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 24px;
            transition: opacity 0.6s var(--ease), visibility 0.6s;
        }
        .loader.hidden {
            opacity: 0;
            visibility: hidden;
        }
        .loader img {
            width: 60px;
            height: 60px;
            animation: pulse 1.2s infinite;
        }
        .loader-bar {
            width: 120px;
            height: 2px;
            background: var(--gray-200);
            border-radius: 2px;
            overflow: hidden;
        }
        .loader-bar::after {
            content: '';
            display: block;
            width: 40%;
            height: 100%;
            background: var(--red);
            border-radius: 2px;
            animation: loaderSlide 1s infinite var(--ease);
        }
        @keyframes loaderSlide {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(350%); }
        }
        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.6; transform: scale(0.95); }
        }

        /* ============ NAV ============ */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 16px 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
        }
        nav.scrolled {
            background: rgba(255,255,255,0.92);
            backdrop-filter: blur(20px);
            box-shadow: 0 1px 0 rgba(0,0,0,0.06);
        }
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 800;
            font-size: 1.1rem;
            color: var(--gray-900);
        }
        .nav-logo img {
            width: 42px;
            height: 42px;
        }
        .nav-links {
            display: flex;
            gap: 32px;
            list-style: none;
            align-items: center;
        }
        .nav-links a {
            font-size: 0.88rem;
            font-weight: 500;
            color: var(--gray-600);
            transition: color 0.3s;
            position: relative;
        }
        .nav-links a:hover {
            color: var(--gray-900);
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--red);
            transition: width 0.3s var(--ease);
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .nav-cta {
            background: var(--red);
            color: var(--white);
            padding: 10px 24px;
            border-radius: 8px;
            font-size: 0.85rem;
            font-weight: 600;
            transition: transform 0.3s var(--ease), box-shadow 0.3s;
            cursor: pointer;
            border: none;
            font-family: inherit;
        }
        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(230,57,70,0.35);
        }

        /* Mobile Nav */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            z-index: 1001;
        }
        .hamburger span {
            width: 24px;
            height: 2px;
            background: var(--gray-900);
            transition: 0.3s;
        }

        /* ============ HERO ============ */
        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 140px 40px 100px;
            position: relative;
            overflow: hidden;
            background: var(--white);
        }
        .hero::before {
            content: '';
            position: absolute;
            width: 700px;
            height: 700px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(230,57,70,0.06) 0%, transparent 70%);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            pointer-events: none;
            animation: heroGlow 4s ease-in-out infinite alternate;
        }
        @keyframes heroGlow {
            0% { opacity: 0.5; transform: translate(-50%, -50%) scale(0.9); }
            100% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--red-light);
            border: 1px solid rgba(230,57,70,0.2);
            padding: 8px 20px;
            border-radius: 100px;
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--red);
            margin-bottom: 32px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            animation: fadeUp 0.8s var(--ease) both;
        }
        .hero-badge .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--red);
            animation: blink 1.5s infinite;
        }
        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.3; }
        }
        .hero h1 {
            font-size: clamp(2.8rem, 6vw, 5rem);
            font-weight: 800;
            line-height: 1.05;
            margin-bottom: 24px;
            color: var(--gray-900);
            animation: fadeUp 0.8s 0.15s var(--ease) both;
        }
        .hero h1 .accent {
            background: linear-gradient(135deg, var(--red), #ff6b7a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero p {
            font-size: clamp(1rem, 1.3vw, 1.2rem);
            color: var(--gray-500);
            max-width: 600px;
            margin: 0 auto 40px;
            line-height: 1.7;
            animation: fadeUp 0.8s 0.3s var(--ease) both;
        }
        .hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            justify-content: center;
            animation: fadeUp 0.8s 0.45s var(--ease) both;
        }
        .btn-primary {
            background: var(--red);
            color: var(--white);
            padding: 14px 32px;
            border-radius: 10px;
            font-size: 0.95rem;
            font-weight: 600;
            transition: transform 0.3s var(--ease), box-shadow 0.3s;
            cursor: pointer;
            border: none;
            font-family: inherit;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(230,57,70,0.4);
        }
        .btn-secondary {
            background: transparent;
            color: var(--gray-900);
            padding: 14px 32px;
            border-radius: 10px;
            font-size: 0.95rem;
            font-weight: 600;
            border: 1px solid var(--gray-200);
            transition: all 0.3s var(--ease);
            cursor: pointer;
            font-family: inherit;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn-secondary:hover {
            border-color: var(--gray-400);
            background: var(--gray-50);
            transform: translateY(-3px);
        }

        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* MVP Banner */
        .mvp-banner {
            margin-top: 48px;
            padding: 20px 32px;
            background: var(--red-light);
            border: 1px solid rgba(230,57,70,0.15);
            border-radius: 16px;
            display: flex;
            align-items: center;
            gap: 16px;
            animation: fadeUp 0.8s 0.6s var(--ease) both;
            max-width: 620px;
        }
        .mvp-icon {
            font-size: 2rem;
            flex-shrink: 0;
        }
        .mvp-text {
            text-align: left;
        }
        .mvp-text strong {
            display: block;
            font-size: 1rem;
            margin-bottom: 2px;
            color: var(--gray-900);
        }
        .mvp-text span {
            font-size: 0.85rem;
            color: var(--gray-500);
        }

        /* ============ SECTION COMMONS ============ */
        section {
            padding: 120px 40px;
        }
        .container {
            max-width: var(--max-w);
            margin: 0 auto;
        }
        .section-label {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--red);
            margin-bottom: 16px;
        }
        .section-title {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 20px;
            color: var(--gray-900);
        }
        .section-subtitle {
            font-size: 1.05rem;
            color: var(--gray-500);
            max-width: 600px;
            line-height: 1.7;
        }

        /* ============ TAB NAVIGATION ============ */
        .tabs-section {
            background: var(--gray-50);
        }
        .tabs-header {
            text-align: center;
            margin-bottom: 56px;
        }
        .tabs-nav {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-bottom: 56px;
            flex-wrap: wrap;
        }
        .tab-btn {
            padding: 14px 28px;
            border-radius: 12px;
            border: 1px solid var(--gray-200);
            background: var(--white);
            color: var(--gray-500);
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s var(--ease);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .tab-btn:hover {
            border-color: var(--gray-300);
            color: var(--gray-900);
        }
        .tab-btn.active {
            background: var(--gray-900);
            color: var(--white);
            border-color: var(--gray-900);
        }
        .tab-btn .tab-icon {
            font-size: 1.2rem;
        }
        .tab-content {
            display: none;
        }
        .tab-content.active {
            display: block;
            animation: fadeUp 0.5s var(--ease);
        }

        /* ============ PRICING CARDS ============ */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .pricing-card {
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: 20px;
            padding: 40px 32px;
            position: relative;
            transition: all 0.4s var(--ease);
            display: flex;
            flex-direction: column;
        }
        .pricing-card:hover {
            border-color: rgba(230,57,70,0.3);
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.08);
        }
        .pricing-card.featured {
            border-color: var(--red);
            background: linear-gradient(180deg, var(--red-light) 0%, var(--white) 40%);
        }
        .pricing-card.featured::before {
            content: 'POPULAIRE';
            position: absolute;
            top: -1px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--red);
            color: var(--white);
            padding: 6px 20px;
            border-radius: 0 0 10px 10px;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 1.5px;
        }
        .card-name {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--gray-900);
        }
        .card-description {
            font-size: 0.85rem;
            color: var(--gray-500);
            margin-bottom: 24px;
            line-height: 1.5;
        }
        .card-price {
            display: flex;
            align-items: baseline;
            gap: 4px;
            margin-bottom: 8px;
        }
        .card-price .amount {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1;
            color: var(--gray-900);
        }
        .card-price .currency {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--gray-400);
        }
        .card-delay {
            font-size: 0.8rem;
            color: var(--gray-500);
            margin-bottom: 28px;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .card-features {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-bottom: 32px;
            flex: 1;
        }
        .card-features li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 0.88rem;
            color: var(--gray-600);
            line-height: 1.5;
        }
        .card-features li .check {
            flex-shrink: 0;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: var(--red-light);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 1px;
        }
        .card-features li .check svg {
            width: 12px;
            height: 12px;
        }
        .card-ia {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 12px 16px;
            background: var(--red-light);
            border: 1px solid rgba(230,57,70,0.12);
            border-radius: 10px;
            margin-bottom: 24px;
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--red);
        }
        .card-ia .ia-icon {
            font-size: 1rem;
        }
        .card-btn {
            width: 100%;
            padding: 14px;
            border-radius: 10px;
            border: none;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 0.9rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s var(--ease);
        }
        .card-btn-primary {
            background: var(--red);
            color: var(--white);
        }
        .card-btn-primary:hover {
            box-shadow: 0 8px 30px rgba(230,57,70,0.35);
            transform: translateY(-2px);
        }
        .card-btn-secondary {
            background: var(--gray-50);
            color: var(--gray-900);
            border: 1px solid var(--gray-200);
        }
        .card-btn-secondary:hover {
            background: var(--gray-100);
            transform: translateY(-2px);
        }

        /* ============ IA OPTION SECTION ============ */
        .ia-section {
            background: var(--white);
            position: relative;
            overflow: hidden;
        }
        .ia-section::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(230,57,70,0.05) 0%, transparent 70%);
            top: 50%;
            right: -100px;
            transform: translateY(-50%);
            pointer-events: none;
        }
        .ia-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center;
        }
        .ia-content .ia-price-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--red-light);
            border: 1px solid rgba(230,57,70,0.15);
            padding: 8px 18px;
            border-radius: 8px;
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--red);
            margin-bottom: 24px;
        }
        .ia-features {
            display: flex;
            flex-direction: column;
            gap: 24px;
            margin-top: 32px;
        }
        .ia-feature {
            display: flex;
            gap: 16px;
            align-items: flex-start;
        }
        .ia-feature-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: var(--red-light);
            border: 1px solid rgba(230,57,70,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            flex-shrink: 0;
        }
        .ia-feature h4 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 4px;
            color: var(--gray-900);
        }
        .ia-feature p {
            font-size: 0.85rem;
            color: var(--gray-500);
            line-height: 1.6;
        }
        .ia-visual {
            position: relative;
        }
        .ia-mockup {
            background: var(--gray-900);
            border: 1px solid var(--gray-800);
            border-radius: 20px;
            padding: 40px;
            position: relative;
        }
        .ia-mockup-header {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 24px;
        }
        .ia-mockup-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
        }
        .ia-mockup-chat {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .chat-msg {
            padding: 14px 18px;
            border-radius: 14px;
            font-size: 0.85rem;
            line-height: 1.5;
            max-width: 85%;
            animation: chatAppear 0.5s var(--ease) both;
        }
        .chat-msg.visitor {
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.1);
            align-self: flex-start;
            color: var(--gray-300);
        }
        .chat-msg.bot {
            background: rgba(230,57,70,0.15);
            border: 1px solid rgba(230,57,70,0.25);
            align-self: flex-end;
            color: #fca5ab;
        }
        .chat-msg.bot .bot-label {
            font-size: 0.7rem;
            font-weight: 700;
            color: var(--red);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 6px;
            display: block;
        }
        @keyframes chatAppear {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .chat-msg:nth-child(2) { animation-delay: 0.2s; }
        .chat-msg:nth-child(3) { animation-delay: 0.4s; }
        .chat-msg:nth-child(4) { animation-delay: 0.6s; }

        /* ============ PROCESS SECTION ============ */
        .process-section {
            background: var(--gray-50);
        }
        .process-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
            margin-top: 56px;
        }
        .process-step {
            text-align: center;
            padding: 32px 20px;
            border-radius: 16px;
            border: 1px solid var(--gray-200);
            background: var(--white);
            transition: all 0.3s var(--ease);
            position: relative;
        }
        .process-step:hover {
            border-color: rgba(230,57,70,0.2);
            box-shadow: 0 8px 30px rgba(0,0,0,0.06);
            transform: translateY(-4px);
        }
        .step-number {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--red-light);
            border: 1px solid rgba(230,57,70,0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 1.1rem;
            font-weight: 800;
            color: var(--red);
            margin: 0 auto 20px;
        }
        .process-step h4 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--gray-900);
        }
        .process-step p {
            font-size: 0.82rem;
            color: var(--gray-500);
            line-height: 1.6;
        }

        /* ============ CTA SECTION ============ */
        .cta-section {
            background: var(--white);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(230,57,70,0.05) 0%, transparent 60%);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            pointer-events: none;
        }
        .cta-box {
            background: var(--gray-900);
            border-radius: 24px;
            padding: 64px 48px;
            position: relative;
            overflow: hidden;
        }
        .cta-box::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(230,57,70,0.15) 0%, transparent 70%);
            top: -100px;
            right: -100px;
            pointer-events: none;
        }
        .cta-box .section-label {
            color: rgba(230,57,70,0.9);
        }
        .cta-box h2 {
            font-size: clamp(2rem, 4vw, 2.8rem);
            font-weight: 800;
            margin-bottom: 16px;
            color: var(--white);
        }
        .cta-box p {
            color: var(--gray-400);
            font-size: 1.05rem;
            max-width: 500px;
            margin: 0 auto 36px;
            line-height: 1.7;
        }
        .cta-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }
        .cta-box .btn-secondary {
            color: var(--white);
            border-color: rgba(255,255,255,0.2);
        }
        .cta-box .btn-secondary:hover {
            border-color: rgba(255,255,255,0.4);
            background: rgba(255,255,255,0.06);
        }
        .cta-free {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-top: 32px;
            justify-content: center;
        }
        .cta-free .free-badge {
            background: rgba(74,222,128,0.1);
            border: 1px solid rgba(74,222,128,0.2);
            color: #4ade80;
            padding: 6px 14px;
            border-radius: 6px;
            font-size: 0.78rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .cta-free span {
            font-size: 0.9rem;
            color: var(--gray-400);
        }

        /* ============ STATS COUNTER ============ */
        .stats-section {
            background: var(--gray-900);
            padding: 80px 40px;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
            text-align: center;
        }
        .stat-item {
            position: relative;
        }
        .stat-number {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: clamp(2.2rem, 4vw, 3.2rem);
            font-weight: 800;
            color: var(--white);
            line-height: 1;
            margin-bottom: 8px;
        }
        .stat-number .stat-suffix {
            color: var(--red);
        }
        .stat-label {
            font-size: 0.85rem;
            color: var(--gray-400);
            font-weight: 500;
        }
        .stat-item::after {
            content: '';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 1px;
            height: 40px;
            background: rgba(255,255,255,0.1);
        }
        .stat-item:last-child::after { display: none; }

        /* ============ PORTFOLIO ============ */
        .portfolio-section {
            background: var(--white);
        }
        .portfolio-header {
            text-align: center;
            margin-bottom: 56px;
        }
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 28px;
        }
        .portfolio-card {
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid var(--gray-200);
            background: var(--white);
            transition: all 0.4s var(--ease);
        }
        .portfolio-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.1);
            border-color: rgba(230,57,70,0.25);
        }
        .portfolio-card.wide {
            grid-column: 1 / -1;
        }
        .portfolio-preview {
            position: relative;
            height: 280px;
            overflow: hidden;
            background: var(--gray-100);
        }
        .portfolio-preview iframe {
            width: 200%;
            height: 200%;
            border: none;
            transform: scale(0.5);
            transform-origin: top left;
            pointer-events: none;
        }
        .portfolio-card:hover .portfolio-preview iframe {
            pointer-events: auto;
        }
        .portfolio-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.7) 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 24px;
            transition: all 0.4s var(--ease);
        }
        .portfolio-card:hover .portfolio-overlay {
            background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.8) 100%);
        }
        .portfolio-overlay h4 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 4px;
        }
        .portfolio-overlay p {
            font-size: 0.82rem;
            color: rgba(255,255,255,0.7);
            margin-bottom: 12px;
        }
        .portfolio-overlay-actions {
            display: flex;
            gap: 10px;
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.3s var(--ease);
        }
        .portfolio-card:hover .portfolio-overlay-actions {
            opacity: 1;
            transform: translateY(0);
        }
        .portfolio-link {
            padding: 8px 18px;
            border-radius: 8px;
            font-size: 0.78rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.2s;
        }
        .portfolio-link-primary {
            background: var(--red);
            color: var(--white);
        }
        .portfolio-link-primary:hover {
            box-shadow: 0 4px 20px rgba(230,57,70,0.4);
        }
        .portfolio-link-secondary {
            background: rgba(255,255,255,0.15);
            color: var(--white);
            border: 1px solid rgba(255,255,255,0.25);
            backdrop-filter: blur(4px);
        }
        .portfolio-link-secondary:hover {
            background: rgba(255,255,255,0.25);
        }
        .portfolio-tag {
            position: absolute;
            top: 12px;
            left: 12px;
            padding: 5px 12px;
            border-radius: 6px;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            z-index: 2;
            backdrop-filter: blur(8px);
        }
        .portfolio-tag.fullcode { background: rgba(10,10,10,0.85); color: var(--white); }
        .portfolio-tag.shopify { background: rgba(150,191,72,0.9); color: var(--white); }
        .portfolio-tag.wordpress { background: rgba(33,117,155,0.9); color: var(--white); }
        .portfolio-tag.wix { background: rgba(0,100,210,0.9); color: var(--white); }
        .portfolio-more {
            text-align: center;
            margin-top: 40px;
        }
        .portfolio-more p {
            font-size: 0.9rem;
            color: var(--gray-500);

        }

        /* Stagger animations */
        .reveal-stagger { opacity: 0; transform: translateY(40px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
        .reveal-stagger.visible { opacity: 1; transform: translateY(0); }
        .reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
        .reveal-left.visible { opacity: 1; transform: translateX(0); }
        .reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
        .reveal-right.visible { opacity: 1; transform: translateX(0); }
        .reveal-scale { opacity: 0; transform: scale(0.92); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
        .reveal-scale.visible { opacity: 1; transform: scale(1); }

        @media (max-width: 1024px) {
            .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
            .stat-item:nth-child(2)::after { display: none; }
        }
        @media (max-width: 768px) {
            .stats-section { padding: 60px 20px; }
            .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
            .portfolio-grid { grid-template-columns: 1fr; }
            .portfolio-preview { height: 220px; }
        }
        @media (max-width: 480px) {
            .stats-grid { grid-template-columns: 1fr; gap: 28px; }
            .stat-item::after { display: none; }
        }
            color: var(--gray-600);
            font-weight: 500;
        }

        /* ============ TEMPLATES EXPLORER ============ */
        .templates-section {
            background: var(--gray-50);
        }
        .templates-header {
            text-align: center;
            margin-bottom: 56px;
        }
        .templates-tabs {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }
        .tpl-tab {
            padding: 10px 22px;
            border-radius: 10px;
            border: 1px solid var(--gray-200);
            background: var(--white);
            color: var(--gray-500);
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 0.85rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s var(--ease);
        }
        .tpl-tab:hover { border-color: var(--gray-300); color: var(--gray-900); }
        .tpl-tab.active { background: var(--gray-900); color: var(--white); border-color: var(--gray-900); }
        .tpl-content { display: none; }
        .tpl-content.active { display: block; animation: fadeUp 0.5s var(--ease); }

        /* Browser frame */
        .browser-frame {
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 40px rgba(0,0,0,0.06);
            max-width: 1000px;
            margin: 0 auto;
        }
        .browser-bar {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 20px;
            background: var(--gray-50);
            border-bottom: 1px solid var(--gray-200);
        }
        .browser-dots {
            display: flex;
            gap: 6px;
        }
        .browser-dots span {
            width: 10px;
            height: 10px;
            border-radius: 50%;
        }
        .browser-dots span:nth-child(1) { background: #ff5f57; }
        .browser-dots span:nth-child(2) { background: #ffbd2e; }
        .browser-dots span:nth-child(3) { background: #28ca41; }
        .browser-url {
            flex: 1;
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: 6px;
            padding: 6px 14px;
            font-size: 0.75rem;
            color: var(--gray-500);
            font-family: 'Inter', sans-serif;
        }
        .browser-open-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 30px;
            height: 30px;
            border-radius: 6px;
            background: var(--gray-100);
            border: 1px solid var(--gray-200);
            color: var(--gray-500);
            font-size: 0.9rem;
            text-decoration: none;
            transition: all 0.2s;
            flex-shrink: 0;
        }
        .browser-open-btn:hover {
            background: var(--red);
            color: var(--white);
            border-color: var(--red);
        }
        .browser-viewport {
            height: 560px;
            overflow-y: auto;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }
        .browser-viewport::-webkit-scrollbar { width: 6px; }
        .browser-viewport::-webkit-scrollbar-track { background: var(--gray-50); }
        .browser-viewport::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 3px; }
        .browser-viewport::-webkit-scrollbar-thumb:hover { background: var(--gray-400); }

        /* Mini-template shared styles */
        .tpl-site { font-family: 'Inter', sans-serif; }
        .tpl-site * { box-sizing: border-box; margin: 0; padding: 0; }

        .tpl-hero {
            padding: 60px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .tpl-nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 40px;
            border-bottom: 1px solid rgba(0,0,0,0.06);
        }
        .tpl-nav-brand {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 800;
            font-size: 1.1rem;
        }
        .tpl-nav-links {
            display: flex;
            gap: 24px;
            list-style: none;
            font-size: 0.82rem;
            font-weight: 500;
        }
        .tpl-nav-links li {
            cursor: default;
            opacity: 0.6;
        }
        .tpl-btn {
            display: inline-block;
            padding: 10px 24px;
            border-radius: 8px;
            font-size: 0.85rem;
            font-weight: 600;
            cursor: default;
            transition: none;
        }
        .tpl-section {
            padding: 48px 40px;
        }
        .tpl-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
        .tpl-grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
        .tpl-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
        .tpl-card {
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid #eee;
        }
        .tpl-card-img {
            height: 140px;
            background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
        }
        .tpl-card-body { padding: 16px; }
        .tpl-card-body h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 4px; }
        .tpl-card-body p { font-size: 0.75rem; color: #888; line-height: 1.4; }
        .tpl-card-body .tpl-price { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1rem; color: #111; margin-top: 6px; }
        .tpl-footer {
            padding: 24px 40px;
            text-align: center;
            font-size: 0.72rem;
            color: #999;
            border-top: 1px solid #eee;
        }
        .tpl-swatch {
            width: 100%;
            height: 8px;
            border-radius: 0;
        }

        /* Specific template color themes */
        .tpl-fullcode .tpl-accent { color: var(--red); }
        .tpl-fullcode .tpl-btn-fill { background: var(--red); color: #fff; }
        .tpl-fullcode .tpl-hero { background: linear-gradient(145deg, #fef2f2, #fff); }
        .tpl-fullcode .tpl-swatch { background: linear-gradient(90deg, var(--red), #0a0a0a); }

        .tpl-shopify .tpl-accent { color: #96bf48; }
        .tpl-shopify .tpl-btn-fill { background: #96bf48; color: #fff; }
        .tpl-shopify .tpl-hero { background: linear-gradient(145deg, #f4f9ec, #fff); }
        .tpl-shopify .tpl-swatch { background: linear-gradient(90deg, #96bf48, #5e8e3e); }
        .tpl-shopify .tpl-badge {
            display: inline-block;
            padding: 3px 8px;
            border-radius: 4px;
            font-size: 0.65rem;
            font-weight: 700;
            text-transform: uppercase;
        }
        .tpl-shopify .tpl-badge-sale { background: #fee2e2; color: #dc2626; }
        .tpl-shopify .tpl-badge-new { background: #ecfdf5; color: #059669; }
        .tpl-shopify .tpl-old-price { text-decoration: line-through; color: #bbb; font-size: 0.8rem; margin-right: 4px; }

        .tpl-wordpress .tpl-accent { color: #21759b; }
        .tpl-wordpress .tpl-btn-fill { background: #21759b; color: #fff; }
        .tpl-wordpress .tpl-hero { background: linear-gradient(145deg, #eef6fa, #fff); }
        .tpl-wordpress .tpl-swatch { background: linear-gradient(90deg, #21759b, #0e3a50); }
        .tpl-wordpress .tpl-blog-meta {
            font-size: 0.7rem;
            color: #999;
            margin-bottom: 6px;
        }
        .tpl-wordpress .tpl-sidebar {
            background: #f9fafb;
            border-radius: 12px;
            padding: 20px;
            border: 1px solid #eee;
        }
        .tpl-wordpress .tpl-sidebar h4 {
            font-size: 0.85rem;
            margin-bottom: 12px;
            font-weight: 700;
        }
        .tpl-wordpress .tpl-sidebar-list {
            list-style: none;
            font-size: 0.78rem;
            color: #555;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .tpl-wordpress .tpl-sidebar-list li::before {
            content: '→ ';
            color: #21759b;
        }

        .tpl-explore-label {
            text-align: center;
            margin-top: 20px;
            font-size: 0.82rem;
            color: var(--gray-400);
        }

        @media (max-width: 1024px) {
            .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .portfolio-grid { grid-template-columns: 1fr; }
            .portfolio-thumb { height: 180px; }
            .browser-viewport { height: 400px; }
            .tpl-grid-2, .tpl-grid-3, .tpl-grid-4 { grid-template-columns: 1fr; }
            .tpl-nav-links { display: none; }
            .tpl-hero { padding: 40px 20px; }
            .tpl-section { padding: 32px 20px; }
        }

        /* ============ CONTACT FORM ============ */
        .form-section {
            background: var(--gray-50);
        }
        .form-wrapper {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 56px;
            align-items: start;
        }
        .form-info {
            position: sticky;
            top: 120px;
        }
        .form-info .section-subtitle {
            margin-top: 16px;
        }
        .form-trust {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-top: 40px;
        }
        .form-trust-item {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 0.9rem;
            color: var(--gray-600);
        }
        .form-trust-icon {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            background: var(--red-light);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            flex-shrink: 0;
        }
        .contact-form {
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: 20px;
            padding: 40px;
        }
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group.full {
            grid-column: 1 / -1;
        }
        .form-group label {
            display: block;
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--gray-700);
            margin-bottom: 8px;
        }
        .form-group label .required {
            color: var(--red);
        }
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid var(--gray-200);
            border-radius: 10px;
            font-family: 'Inter', sans-serif;
            font-size: 0.9rem;
            color: var(--gray-900);
            background: var(--gray-50);
            transition: border-color 0.3s, box-shadow 0.3s;
            outline: none;
        }
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--red);
            box-shadow: 0 0 0 3px rgba(230,57,70,0.08);
            background: var(--white);
        }
        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: var(--gray-400);
        }
        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }
        .form-group select {
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23737373' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 14px center;
            padding-right: 40px;
            cursor: pointer;
        }
        .form-group select option {
            color: var(--gray-900);
        }

        /* File upload */
        .file-upload-zone {
            border: 2px dashed var(--gray-200);
            border-radius: 12px;
            padding: 24px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s var(--ease);
            background: var(--gray-50);
        }
        .file-upload-zone:hover {
            border-color: var(--red);
            background: var(--red-light);
        }
        .file-upload-zone.dragover {
            border-color: var(--red);
            background: var(--red-light);
        }
        .file-upload-zone input[type="file"] {
            display: none;
        }
        .file-upload-icon {
            font-size: 1.6rem;
            margin-bottom: 8px;
        }
        .file-upload-text {
            font-size: 0.85rem;
            color: var(--gray-500);
            line-height: 1.5;
        }
        .file-upload-text strong {
            color: var(--red);
            cursor: pointer;
        }
        .file-upload-hint {
            font-size: 0.75rem;
            color: var(--gray-400);
            margin-top: 6px;
        }
        .file-list {
            margin-top: 12px;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .file-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 8px 14px;
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: 8px;
            font-size: 0.82rem;
            color: var(--gray-700);
        }
        .file-item .file-remove {
            background: none;
            border: none;
            color: var(--red);
            cursor: pointer;
            font-size: 1rem;
            padding: 0 4px;
            line-height: 1;
        }

        .form-submit-btn {
            width: 100%;
            padding: 16px;
            border-radius: 12px;
            border: none;
            background: var(--red);
            color: var(--white);
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s var(--ease);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-top: 8px;
        }
        .form-submit-btn:hover {
            box-shadow: 0 12px 40px rgba(230,57,70,0.35);
            transform: translateY(-2px);
        }
        .form-submit-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }
        .form-footer {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-top: 16px;
            justify-content: center;
        }
        .form-footer .free-badge {
            background: rgba(74,222,128,0.1);
            border: 1px solid rgba(74,222,128,0.2);
            color: #16a34a;
            padding: 4px 10px;
            border-radius: 5px;
            font-size: 0.72rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .form-footer span {
            font-size: 0.8rem;
            color: var(--gray-400);
        }
        .form-success {
            display: none;
            text-align: center;
            padding: 48px 24px;
        }
        .form-success.show {
            display: block;
            animation: fadeUp 0.5s var(--ease);
        }
        .form-success-icon {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: rgba(74,222,128,0.1);
            border: 2px solid rgba(74,222,128,0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin: 0 auto 20px;
        }
        .form-success h3 {
            font-size: 1.3rem;
            margin-bottom: 8px;
        }
        .form-success p {
            font-size: 0.9rem;
            color: var(--gray-500);
            line-height: 1.6;
        }

        @media (max-width: 768px) {
            .form-wrapper {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .form-info {
                position: static;
            }
            .form-row {
                grid-template-columns: 1fr;
            }
            .contact-form {
                padding: 20px;
                border-radius: 14px;
            }
            .form-group input,
            .form-group select,
            .form-group textarea {
                padding: 14px 14px;
                font-size: 16px;
            }
            .form-submit-btn {
                padding: 16px;
                font-size: 0.95rem;
            }
        }

        /* ============ FOOTER ============ */
        footer {
            background: var(--gray-50);
            border-top: 1px solid var(--gray-200);
            padding: 48px 40px 32px;
            text-align: center;
        }
        .footer-brand {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 8px;
        }
        .footer-brand span { color: var(--red); }
        footer p {
            font-size: 0.82rem;
            color: var(--gray-500);
        }
        footer a {
            color: var(--red);
            transition: opacity 0.3s;
        }
        footer a:hover {
            opacity: 0.7;
        }
        .footer-legal-links {
            margin-top: 12px;
            display: flex;
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
        }
        .footer-legal-links a {
            font-size: 0.78rem;
            color: var(--gray-500);
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer-legal-links a:hover {
            color: var(--red);
        }

        /* ============ LEGAL MODAL ============ */
        .legal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.5);
            z-index: 10000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
            backdrop-filter: blur(4px);
        }
        .legal-overlay.active {
            display: flex;
        }
        .legal-modal {
            background: var(--white);
            border-radius: 16px;
            max-width: 800px;
            width: 100%;
            max-height: 85vh;
            overflow-y: auto;
            padding: 48px;
            position: relative;
            box-shadow: 0 24px 48px rgba(0,0,0,0.15);
        }
        .legal-modal h2 {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--gray-900);
            margin-bottom: 24px;
        }
        .legal-modal h3 {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--gray-900);
            margin: 24px 0 8px;
        }
        .legal-modal p, .legal-modal li {
            font-size: 0.88rem;
            color: var(--gray-600);
            line-height: 1.7;
            margin-bottom: 8px;
        }
        .legal-modal ul {
            padding-left: 20px;
            margin-bottom: 12px;
        }
        .legal-close {
            position: absolute;
            top: 16px;
            right: 20px;
            background: none;
            border: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--gray-500);
            transition: color 0.3s;
            line-height: 1;
        }
        .legal-close:hover { color: var(--red); }

        /* ============ MOBILE STICKY CTA ============ */
        .mobile-sticky-cta {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--red);
            color: var(--white);
            text-align: center;
            padding: 16px 20px;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 0.95rem;
            font-weight: 700;
            z-index: 998;
            text-decoration: none;
            box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
            transition: transform 0.3s var(--ease);
        }
        .mobile-sticky-cta.visible {
            transform: translateY(0);
        }
        .mobile-sticky-cta.hidden {
            transform: translateY(100%);
        }
        @media (max-width: 768px) {
            .mobile-sticky-cta {
                display: block;
            }
        }

        /* ============ COOKIE BANNER ============ */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--white);
            border-top: 1px solid var(--gray-200);
            box-shadow: 0 -4px 24px rgba(0,0,0,0.08);
            z-index: 9999;
            padding: 20px 32px;
            display: none;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            flex-wrap: wrap;
        }
        .cookie-banner.active {
            display: flex;
        }
        .cookie-text {
            font-size: 0.85rem;
            color: var(--gray-600);
            line-height: 1.6;
            flex: 1;
            min-width: 260px;
        }
        .cookie-text a {
            color: var(--red);
            text-decoration: underline;
        }
        .cookie-actions {
            display: flex;
            gap: 10px;
            flex-shrink: 0;
        }
        .cookie-btn {
            padding: 10px 22px;
            border-radius: 8px;
            font-size: 0.82rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            border: none;
        }
        .cookie-btn-accept {
            background: var(--red);
            color: var(--white);
        }
        .cookie-btn-accept:hover {
            background: #c62d3a;
        }
        .cookie-btn-refuse {
            background: var(--gray-100);
            color: var(--gray-700);
        }
        .cookie-btn-refuse:hover {
            background: var(--gray-200);
        }
        @media (max-width: 600px) {
            .cookie-banner {
                flex-direction: column;
                text-align: center;
                padding: 16px 20px;
            }
            .cookie-actions {
                width: 100%;
                justify-content: center;
            }
            .legal-modal {
                padding: 28px 20px;
            }
        }

        /* ============ SCROLL REVEAL ============ */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
        }
        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ============ RESPONSIVE ============ */
        @media (max-width: 1024px) {
            .pricing-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .pricing-card:last-child {
                grid-column: 1 / -1;
                max-width: 400px;
                margin: 0 auto;
            }
            .ia-grid {
                grid-template-columns: 1fr;
                gap: 48px;
            }
            .process-steps {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            section {
                padding: 60px 16px;
            }
            nav {
                padding: 12px 16px;
            }
            .nav-logo {
                gap: 8px;
                font-size: 0.95rem;
            }
            .nav-logo img {
                width: 32px;
                height: 32px;
            }
            .nav-cta {
                display: none;
            }
            .nav-links {
                display: none;
                position: fixed;
                inset: 0;
                background: rgba(255,255,255,0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 28px;
                z-index: 999;
            }
            .nav-links.open {
                display: flex;
            }
            .nav-links a {
                font-size: 1.2rem;
                color: var(--gray-900);
            }
            .hamburger {
                display: flex;
            }
            .hamburger.open span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }
            .hamburger.open span:nth-child(2) {
                opacity: 0;
            }
            .hamburger.open span:nth-child(3) {
                transform: rotate(-45deg) translate(5px, -5px);
            }
            .hero {
                padding: 100px 16px 60px;
                min-height: auto;
            }
            .hero h1 {
                font-size: 2.2rem;
                margin-bottom: 16px;
            }
            .hero p {
                font-size: 0.95rem;
                margin-bottom: 28px;
            }
            .hero-badge {
                font-size: 0.72rem;
                padding: 6px 14px;
                margin-bottom: 20px;
            }
            .hero-buttons {
                flex-direction: column;
                width: 100%;
            }
            .btn-primary, .btn-secondary {
                width: 100%;
                justify-content: center;
                padding: 14px 24px;
            }
            .mvp-banner {
                flex-direction: column;
                text-align: center;
                padding: 16px 20px;
                margin-top: 32px;
            }
            .mvp-text {
                text-align: center;
            }
            .section-title {
                font-size: 1.7rem;
            }
            .section-subtitle {
                font-size: 0.92rem;
            }
            .pricing-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .pricing-card {
                padding: 28px 22px;
            }
            .pricing-card:last-child {
                max-width: none;
            }
            .pricing-card:hover {
                transform: none;
            }
            .card-price .amount {
                font-size: 2.2rem;
            }
            .tabs-nav {
                gap: 6px;
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
                flex-wrap: nowrap;
                justify-content: flex-start;
                padding-bottom: 8px;
            }
            .tab-btn {
                padding: 10px 16px;
                font-size: 0.8rem;
                white-space: nowrap;
                flex-shrink: 0;
            }
            .ia-mockup {
                padding: 24px;
                border-radius: 14px;
            }
            .chat-msg {
                max-width: 95%;
                font-size: 0.8rem;
                padding: 12px 14px;
            }
            .process-steps {
                grid-template-columns: 1fr;
                gap: 12px;
            }
            .process-step {
                padding: 24px 16px;
                text-align: left;
                display: flex;
                align-items: center;
                gap: 16px;
            }
            .step-number {
                margin: 0;
                width: 40px;
                height: 40px;
                min-width: 40px;
                font-size: 0.95rem;
            }
            .process-step:hover {
                transform: none;
            }
            .cta-box {
                padding: 36px 20px;
                border-radius: 16px;
            }
            .cta-buttons {
                flex-direction: column;
            }
            .cta-buttons .btn-primary,
            .cta-buttons .btn-secondary {
                width: 100%;
                justify-content: center;
            }
            .cta-free {
                flex-direction: column;
                gap: 8px;
            }
            .stats-section {
                padding: 48px 16px;
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
            }
            .stat-item::after {
                display: none;
            }
            .portfolio-card:hover {
                transform: none;
            }
            .portfolio-overlay-actions {
                opacity: 1;
                transform: translateY(0);
            }
            .templates-tabs {
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
                flex-wrap: nowrap;
                justify-content: flex-start;
                padding-bottom: 8px;
            }
            .tpl-tab {
                white-space: nowrap;
                flex-shrink: 0;
            }
            .browser-bar {
                padding: 8px 12px;
            }
            .browser-url {
                font-size: 0.65rem;
                padding: 5px 10px;
            }
            footer {
                padding: 36px 16px 24px;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            .section-title {
                font-size: 1.5rem;
            }
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .card-name {
                font-size: 1.1rem;
            }
            .ia-feature-icon {
                width: 40px;
                height: 40px;
                font-size: 1.1rem;
            }
        }
