:root {
            --primary: #2563eb;
            --primary-dark: #1d4ed8;
            --secondary: #7c3aed;

            --dark: #0f172a;
            --text: #334155;
            --muted: #64748b;

            --light: #f8fafc;
            --white: #ffffff;

            --border: #e2e8f0;

            --success: #16a34a;

            --radius: 18px;
            --shadow: 0 20px 50px rgba(15, 23, 42, 0.10);

            --max-width: 1180px;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family:
                Inter,
                -apple-system,
                BlinkMacSystemFont,
                "Segoe UI",
                Roboto,
                Arial,
                sans-serif;

            color: var(--text);
            background: var(--white);
            line-height: 1.6;
        }

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

        button,
        input,
        textarea {
            font: inherit;
        }

        .container {
            width: min(calc(100% - 40px), var(--max-width));
            margin: 0 auto;
        }

        /* HEADER */

        header {
            position: sticky;
            top: 0;
            z-index: 1000;

            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(14px);

            border-bottom: 1px solid rgba(226, 232, 240, 0.8);
        }

        .nav {
            height: 76px;

            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 30px;
        }

        .logo {
            font-size: 24px;
            font-weight: 800;
            letter-spacing: -1px;
            color: var(--dark);
        }

        .logo span {
            color: var(--primary);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 28px;

            font-size: 15px;
            font-weight: 600;
        }

        .nav-links a {
            transition: color 0.2s ease;
        }

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

        .btn {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            gap: 8px;

            min-height: 48px;
            padding: 0 22px;

            border-radius: 12px;

            font-weight: 700;
            border: 0;

            cursor: pointer;

            transition:
                transform 0.2s ease,
                box-shadow 0.2s ease,
                background 0.2s ease;
        }

        .btn:hover {
            transform: translateY(-2px);
        }

        .btn-primary {
            color: var(--white);

            background:
                linear-gradient(
                    135deg,
                    var(--primary),
                    var(--secondary)
                );

            box-shadow:
                0 10px 25px rgba(37, 99, 235, 0.25);
        }

        .btn-primary:hover {
            box-shadow:
                0 14px 30px rgba(37, 99, 235, 0.32);
        }

        .btn-secondary {
            background: var(--white);
            color: var(--dark);

            border: 1px solid var(--border);
        }

        /* HERO */

        .hero {
            position: relative;
            overflow: hidden;

            padding: 110px 0 90px;

            background:
                radial-gradient(
                    circle at 20% 20%,
                    rgba(37, 99, 235, 0.12),
                    transparent 32%
                ),
                radial-gradient(
                    circle at 85% 30%,
                    rgba(124, 58, 237, 0.10),
                    transparent 30%
                ),
                linear-gradient(
                    180deg,
                    #ffffff,
                    #f8fafc
                );
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1.08fr 0.92fr;
            gap: 70px;
            align-items: center;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;

            margin-bottom: 24px;

            padding: 8px 13px;

            border-radius: 999px;

            background: #eff6ff;
            color: var(--primary-dark);

            font-size: 14px;
            font-weight: 700;
        }

        .badge-dot {
            width: 8px;
            height: 8px;

            background: var(--success);
            border-radius: 50%;
        }

        h1 {
            max-width: 750px;

            font-size: clamp(44px, 6vw, 72px);
            line-height: 1.02;
            letter-spacing: -3px;

            color: var(--dark);
        }

        .gradient-text {
            background:
                linear-gradient(
                    135deg,
                    var(--primary),
                    var(--secondary)
                );

            -webkit-background-clip: text;
            background-clip: text;

            color: transparent;
        }

        .hero-description {
            max-width: 650px;

            margin-top: 25px;

            font-size: 20px;
            color: var(--muted);
        }

        .hero-actions {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;

            margin-top: 34px;
        }

        .hero-points {
            display: flex;
            gap: 22px;
            flex-wrap: wrap;

            margin-top: 28px;

            font-size: 14px;
            color: var(--muted);
        }

        .hero-point {
            display: flex;
            align-items: center;
            gap: 7px;
        }

        .check {
            color: var(--success);
            font-weight: 900;
        }

        /* WEBSITE PREVIEW */

        .preview-wrap {
            position: relative;
        }

        .preview-glow {
            position: absolute;
            inset: 10% 5%;

            background:
                linear-gradient(
                    135deg,
                    rgba(37, 99, 235, 0.28),
                    rgba(124, 58, 237, 0.24)
                );

            filter: blur(60px);
        }

        .browser {
            position: relative;

            overflow: hidden;

            border: 1px solid var(--border);
            border-radius: 22px;

            background: var(--white);
            box-shadow: var(--shadow);

            transform: rotate(1.5deg);
        }

        .browser-top {
            height: 45px;

            display: flex;
            align-items: center;
            gap: 7px;

            padding: 0 16px;

            background: #f1f5f9;
            border-bottom: 1px solid var(--border);
        }

        .browser-dot {
            width: 9px;
            height: 9px;
            border-radius: 50%;
            background: #cbd5e1;
        }

        .browser-address {
            margin-left: 10px;

            flex: 1;

            padding: 5px 12px;

            border-radius: 7px;

            background: var(--white);

            color: #94a3b8;
            font-size: 11px;
        }

        .mock-site {
            min-height: 460px;
            padding: 34px 36px 30px;

            position: relative;
            overflow: hidden;

            background:
                radial-gradient(
                    circle at 90% 10%,
                    rgba(251, 191, 36, 0.22),
                    transparent 32%
                ),
                radial-gradient(
                    circle at 10% 90%,
                    rgba(180, 83, 9, 0.12),
                    transparent 35%
                ),
                linear-gradient(
                    145deg,
                    #fffaf0,
                    #fff7e6
                );

            color: #3f2d20;
        }

        .mock-site::before {
            content: "";

            position: absolute;
            width: 220px;
            height: 220px;

            top: -100px;
            right: -70px;

            border-radius: 50%;

            background:
                linear-gradient(
                    135deg,
                    rgba(245, 158, 11, 0.25),
                    rgba(217, 119, 6, 0.08)
                );
        }

        .mock-site::after {
            content: "";

            position: absolute;

            width: 150px;
            height: 150px;

            left: -70px;
            bottom: -90px;

            border-radius: 50%;

            background: rgba(245, 158, 11, 0.12);
        }

        .mock-nav {
            position: relative;
            z-index: 2;

            display: flex;
            justify-content: space-between;
            align-items: center;

            margin-bottom: 52px;
        }

        .mock-logo {
            display: flex;
            align-items: center;
            gap: 9px;

            font-weight: 900;
            font-size: 17px;

            color: #442c1c;
        }

        .mock-logo-icon {
            width: 31px;
            height: 31px;

            display: flex;
            align-items: center;
            justify-content: center;

            border-radius: 10px;

            background:
                linear-gradient(
                    135deg,
                    #f59e0b,
                    #d97706
                );

            color: white;

            font-size: 16px;

            box-shadow:
                0 7px 18px rgba(217, 119, 6, 0.25);
        }

        .mock-menu {
            display: flex;
            gap: 18px;

            font-size: 9px;
            font-weight: 700;

            color: #8a6b53;

            letter-spacing: 0.4px;
        }

        .mock-hero {
            position: relative;
            z-index: 2;

            display: grid;
            grid-template-columns: 1.1fr 0.9fr;

            align-items: center;

            gap: 20px;
        }

        .mock-label {
            display: inline-flex;
            align-items: center;

            width: max-content;

            padding: 5px 9px;

            margin-bottom: 12px;

            border-radius: 999px;

            background: #fef3c7;
            color: #b45309;

            font-weight: 800;
            font-size: 9px;

            letter-spacing: 0.5px;
        }

        .mock-title {
            max-width: 320px;

            font-size: 35px;
            line-height: 1.03;
            font-weight: 900;

            letter-spacing: -1.4px;

            color: #3b2618;
        }

        .mock-title span {
            color: #d97706;
        }

        .mock-text {
            max-width: 300px;

            margin-top: 14px;

            color: #846650;
            font-size: 11px;

            line-height: 1.55;
        }

        .mock-actions {
            display: flex;
            align-items: center;
            gap: 10px;

            margin-top: 20px;
        }

        .mock-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;

            padding: 10px 15px;

            background:
                linear-gradient(
                    135deg,
                    #e38b11,
                    #c96d05
                );

            color: white;

            border-radius: 9px;

            font-size: 10px;
            font-weight: 800;

            box-shadow:
                0 8px 20px rgba(217, 119, 6, 0.24);
        }

        .mock-link {
            color: #7c5a42;

            font-size: 9px;
            font-weight: 700;
        }

        
        .mock-product-area {
            position: relative;

            min-height: 220px;

            display: flex;
            align-items: center;
            justify-content: center;
        }

        .mock-photo-wrap {
            position: relative;
            z-index: 2;

            width: 100%;
            max-width: 245px;

            padding: 10px;

            border-radius: 22px;

            background: rgba(255, 255, 255, 0.70);

            box-shadow:
                0 18px 40px rgba(91, 58, 28, 0.14);

            backdrop-filter: blur(8px);
        }

        .mock-photo {
            display: block;

            width: 100%;
            height: 220px;
            object-fit: cover;

            border-radius: 16px;
        }

        .mock-photo-badge {
            position: absolute;
            left: -18px;
            bottom: 18px;
            z-index: 3;

            padding: 9px 11px;

            border-radius: 14px;

            background: #ffffff;
            color: #6b4428;

            font-size: 8px;
            font-weight: 800;
            line-height: 1.35;

            box-shadow:
                0 10px 24px rgba(91, 58, 28, 0.12);
        }

        .mock-photo-badge span {
            display: block;
            color: #b45309;
            font-size: 11px;
            margin-bottom: 2px;
        }

        .mock-photo-glow {
            position: absolute;
            inset: 10px 8px 8px 18px;

            border-radius: 28px;

            background:
                radial-gradient(
                    circle at 30% 30%,
                    rgba(245, 158, 11, 0.30),
                    transparent 45%
                );

            filter: blur(18px);
            z-index: 1;
        }

        .mock-features {
            position: relative;
            z-index: 3;

            display: grid;
            grid-template-columns: repeat(3, 1fr);

            gap: 8px;

            margin-top: 28px;
        }

        .mock-feature {
            padding: 11px;

            border: 1px solid rgba(217, 119, 6, 0.12);
            border-radius: 11px;

            background: rgba(255, 255, 255, 0.72);

            backdrop-filter: blur(6px);

            box-shadow:
                0 7px 20px rgba(91, 58, 28, 0.05);
        }

        .mock-feature strong {
            display: block;

            margin-bottom: 2px;

            color: #51331e;

            font-size: 9px;
        }

        .mock-feature span {
            display: block;

            color: #9a765a;

            font-size: 7px;
            line-height: 1.4;
        }

        /* SECTIONS */

        section {
            padding: 95px 0;
        }

        .section-label {
            margin-bottom: 10px;

            text-align: center;

            color: var(--primary);
            font-size: 14px;
            font-weight: 800;

            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .section-title {
            max-width: 760px;

            margin: 0 auto;

            text-align: center;

            color: var(--dark);
            font-size: clamp(34px, 5vw, 48px);
            line-height: 1.1;
            letter-spacing: -1.8px;
        }

        .section-description {
            max-width: 680px;

            margin: 18px auto 0;

            text-align: center;

            color: var(--muted);
            font-size: 18px;
        }

        /* FEATURES */

        .features {
            background: var(--light);
        }

        .cards {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;

            margin-top: 55px;
        }

        .card {
            padding: 34px;

            border: 1px solid var(--border);
            border-radius: var(--radius);

            background: var(--white);

            transition:
                transform 0.25s ease,
                box-shadow 0.25s ease;
        }

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

        .icon {
            width: 52px;
            height: 52px;

            display: flex;
            align-items: center;
            justify-content: center;

            margin-bottom: 22px;

            border-radius: 14px;

            background:
                linear-gradient(
                    135deg,
                    #eff6ff,
                    #ede9fe
                );

            font-size: 25px;
        }

        .card h3 {
            margin-bottom: 10px;

            color: var(--dark);
            font-size: 20px;
        }

        .card p {
            color: var(--muted);
        }

        /* PROCESS */

        .steps {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;

            margin-top: 60px;
        }

        .step {
            text-align: center;
        }

        .step-number {
            width: 55px;
            height: 55px;

            display: flex;
            align-items: center;
            justify-content: center;

            margin: 0 auto 20px;

            border-radius: 50%;

            background:
                linear-gradient(
                    135deg,
                    var(--primary),
                    var(--secondary)
                );

            color: white;

            font-size: 18px;
            font-weight: 800;
        }

        .step h3 {
            margin-bottom: 10px;

            color: var(--dark);
            font-size: 20px;
        }

        .step p {
            color: var(--muted);
        }

        /* PRICE */

        .pricing {
            background:
                linear-gradient(
                    180deg,
                    #f8fafc,
                    #ffffff
                );
        }

        .price-card {
            max-width: 690px;

            margin: 55px auto 0;
            padding: 50px;

            border: 1px solid #dbeafe;
            border-radius: 26px;

            background: white;

            box-shadow:
                0 30px 70px rgba(37, 99, 235, 0.13);

            position: relative;
            overflow: hidden;
        }

        .price-card::before {
            content: "";

            position: absolute;
            top: 0;
            left: 0;

            width: 100%;
            height: 5px;

            background:
                linear-gradient(
                    90deg,
                    var(--primary),
                    var(--secondary)
                );
        }

        .price-name {
            color: var(--dark);
            font-size: 23px;
            font-weight: 800;
        }

        .price {
            margin: 15px 0;

            color: var(--dark);
            font-size: 60px;
            line-height: 1;
            font-weight: 900;
            letter-spacing: -3px;
        }

        .price small {
            color: var(--muted);
            font-size: 16px;
            font-weight: 500;
            letter-spacing: 0;
        }

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

        .price-list {
            display: grid;
            gap: 13px;

            margin: 28px 0 32px;

            list-style: none;
        }

        .price-list li {
            display: flex;
            gap: 10px;
            align-items: flex-start;
        }

        .price-card .btn {
            width: 100%;
        }

        /* FAQ */

        .faq {
            max-width: 800px;
            margin: 50px auto 0;
        }

        details {
            padding: 22px 0;

            border-bottom: 1px solid var(--border);
        }

        summary {
            cursor: pointer;

            color: var(--dark);
            font-size: 18px;
            font-weight: 700;
        }

        details p {
            margin-top: 14px;

            color: var(--muted);
        }

        /* CTA */

        .cta {
            padding-top: 40px;
        }

        .cta-box {
            padding: 70px 50px;

            border-radius: 28px;

            text-align: center;

            color: white;

            background:
                linear-gradient(
                    135deg,
                    #1d4ed8,
                    #6d28d9
                );
        }

        .cta-box h2 {
            max-width: 700px;

            margin: auto;

            font-size: clamp(32px, 5vw, 50px);
            line-height: 1.1;
            letter-spacing: -2px;
        }

        .cta-box p {
            max-width: 600px;

            margin: 18px auto 30px;

            color: #dbeafe;
            font-size: 18px;
        }

        .cta-box .btn {
            background: white;
            color: var(--primary-dark);
        }

        /* FOOTER */

        footer {
            padding: 50px 0;

            border-top: 1px solid var(--border);
        }

        .footer-grid {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 25px;
            flex-wrap: wrap;
        }

        .copyright {
            color: var(--muted);
            font-size: 14px;
        }

        /* MOBILE */

        .menu-button {
            display: none;

            padding: 9px;

            border: 0;
            background: transparent;

            color: var(--dark);
            font-size: 24px;

            cursor: pointer;
        }

        @media (max-width: 900px) {

            .hero {
                padding-top: 80px;
            }

            .hero-grid {
                grid-template-columns: 1fr;
                gap: 55px;
            }

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

            .hero-description {
                margin-left: auto;
                margin-right: auto;
            }

            .hero-actions,
            .hero-points {
                justify-content: center;
            }

            .preview-wrap {
                max-width: 600px;
                margin: auto;
            }

            .cards,
            .steps {
                grid-template-columns: 1fr;
            }

            .card {
                max-width: 600px;
                margin: auto;
                width: 100%;
            }
        }

        @media (max-width: 720px) {

            .nav-links {
                display: none;

                position: absolute;
                top: 76px;
                left: 0;
                right: 0;

                padding: 25px;

                flex-direction: column;

                background: white;

                border-bottom: 1px solid var(--border);

                box-shadow:
                    0 15px 30px rgba(15, 23, 42, 0.08);
            }

            .nav-links.open {
                display: flex;
            }

            .menu-button {
                display: block;
            }

            h1 {
                letter-spacing: -2px;
            }

            section {
                padding: 75px 0;
            }

            .mock-site {
                min-height: 350px;
                padding: 28px;
            }

            .mock-nav {
                margin-bottom: 50px;
            }

            .mock-title {
                font-size: 29px;
            }

            .mock-hero {
                grid-template-columns: 1fr;
            }

            .mock-product-area {
                display: none;
            }

            .mock-menu {
                gap: 10px;
                font-size: 8px;
            }

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

            .price-card {
                padding: 35px 25px;
            }

            .cta-box {
                padding: 55px 25px;
            }
        }

        @media (max-width: 480px) {

            .container {
                width: min(calc(100% - 26px), var(--max-width));
            }

            .hero {
                padding: 65px 0 70px;
            }

            .hero-description {
                font-size: 17px;
            }

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

            .hero-actions .btn {
                width: 100%;
            }

            .price {
                font-size: 52px;
            }
        }
