:root {
            --ink: #0d1b1e;
            --muted: #66777b;
            --sand: #f4efe7;
            --paper: #fffdf9;
            --accent: #2fc57a;
            --accent-dark: #15975a;
            --sun: #ffb24a;
            --line: rgba(13, 27, 30, 0.12);
            --shadow: 0 24px 70px rgba(13, 27, 30, 0.12);
            --radius: 28px;
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            background: var(--paper);
            color: var(--ink);
            font-family: "Manrope", sans-serif;
            line-height: 1.65;
        }

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

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

        button,
        input,
        textarea {
            font: inherit;
        }

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

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 18px;
            color: var(--accent-dark);
            font-size: 13px;
            font-weight: 800;
            letter-spacing: 0.11em;
            text-transform: uppercase;
        }

        .eyebrow::before {
            content: "";
            width: 34px;
            height: 2px;
            background: var(--accent);
        }

        h1,
        h2,
        h3,
        p {
            margin-top: 0;
        }

        h1,
        h2 {
            letter-spacing: -0.045em;
        }

        h1 {
            max-width: 760px;
            margin-bottom: 24px;
            font-size: clamp(48px, 7vw, 92px);
            line-height: 0.98;
            font-weight: 800;
        }

        h2 {
            max-width: 760px;
            margin-bottom: 22px;
            font-size: clamp(36px, 5vw, 64px);
            line-height: 1.04;
            font-weight: 800;
        }

        h3 {
            margin-bottom: 10px;
            font-size: 22px;
            line-height: 1.25;
        }

        .lead {
            max-width: 680px;
            color: var(--muted);
            font-size: 19px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            min-height: 54px;
            padding: 0 23px;
            border: 1px solid transparent;
            border-radius: 999px;

            font-weight: 800;
            transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
        }

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

        .btn-primary {
            background: var(--accent);
            color: #062516;
            box-shadow: 0 14px 30px rgba(47, 197, 122, 0.25);
        }

        .btn-primary:hover {
            background: #42d98c;
        }

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

        .btn-outline {
            border-color: rgba(13, 27, 30, 0.18);
            background: rgba(255, 255, 255, 0.7);
        }

        /* Header */

        .site-header {
            position: fixed;
            inset: 0 0 auto 0;
            z-index: 1000;
            background: rgba(255, 253, 249, 0.82);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(13, 27, 30, 0.07);
        }

        .nav {
            min-height: 76px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 30px;
        }

        .brand {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            font-weight: 800;
            letter-spacing: -0.03em;
            font-size: 21px;
        }

        .brand-mark {
            width: 38px;
            height: 38px;
            display: grid;
            place-items: center;
            border-radius: 12px;
            background: var(--ink);
            color: var(--accent);
            transform: rotate(-4deg);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 28px;
            font-size: 14px;
            font-weight: 700;
        }

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

        .menu-toggle {
            display: none;
            width: 46px;
            height: 46px;
            border: 0;
            border-radius: 14px;
            background: var(--ink);
            color: white;
            cursor: pointer;
        }

        /* Hero */

        .hero {
            position: relative;
            overflow: hidden;
            padding: 150px 0 90px;
        }

        .hero::before {
            content: "";
            position: absolute;
            width: 520px;
            height: 520px;
            right: -180px;
            top: 70px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(47, 197, 122, 0.26), rgba(47, 197, 122, 0));
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1.03fr 0.97fr;
            gap: 60px;
            align-items: center;
        }

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

        .hero-copy strong {
            color: var(--accent-dark);
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-top: 32px;
        }

        .hero-points {
            display: flex;
            flex-wrap: wrap;
            gap: 16px 24px;
            margin-top: 34px;
            color: var(--muted);
            font-size: 14px;
            font-weight: 700;
        }

        .hero-points span {
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .hero-points i {
            color: var(--accent-dark);
        }

        .browser-stage {
            position: relative;
            padding: 0px;
            
            border-radius: 34px;
            
        }
        /*
        .browser-stage::after {
            content: "LIVE DEMO";
            position: absolute;
            top: -16px;
            right: 28px;
            padding: 10px 15px;
            border-radius: 999px;
            background: var(--sun);
            color: var(--ink);
            font-size: 11px;
            font-weight: 900;
            letter-spacing: 0.12em;
        }
        */
        .browser-dots {
            position: absolute;
            top: 18px;
            left: 22px;
            display: flex;
            gap: 8px;
        }

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

        .screen {
            overflow: hidden;
            min-height: 500px;
            border-radius: 20px;
            background:
                linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 239, 231, 0.96));
        }

        .mock-nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 22px 24px;
            border-bottom: 1px solid rgba(13, 27, 30, 0.08);
            font-size: 13px;
            font-weight: 800;
        }

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

        .mock-logo-badge {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: var(--accent);
        }

        .mock-hero {
            padding: 46px 34px 24px;
        }

        .mock-kicker {
            color: var(--accent-dark);
            font-size: 11px;
            font-weight: 900;
            letter-spacing: 0.11em;
            text-transform: uppercase;
        }

        .mock-title {
            max-width: 330px;
            margin: 11px 0 16px;
            font-family: "Playfair Display", serif;
            font-size: 47px;
            line-height: 0.98;
        }

        .mock-copy {
            max-width: 330px;
            color: var(--muted);
            font-size: 13px;
        }

        .mock-button {
            display: inline-flex;
            margin-top: 18px;
            padding: 10px 15px;
            border-radius: 999px;
            background: var(--ink);
            color: white;
            font-size: 11px;
            font-weight: 800;
        }

        .mock-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
            padding: 12px 24px 28px;
        }

        .mock-card {
            aspect-ratio: 1 / 1.1;
            border-radius: 14px;
            background:
                linear-gradient(155deg, rgba(47, 197, 122, 0.75), rgba(255, 178, 74, 0.75));
        }

        .mock-card:nth-child(2) {
            background:
                linear-gradient(155deg, rgba(255, 178, 74, 0.8), rgba(13, 27, 30, 0.72));
        }

        .mock-card:nth-child(3) {
            background:
                linear-gradient(155deg, rgba(13, 27, 30, 0.85), rgba(47, 197, 122, 0.6));
        }

        /* Trust strip */

        .trust-strip {
            border-top: 1px solid var(--line);
            border-bottom: 1px solid var(--line);
            background: white;
        }

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

        .trust-item {
            padding: 28px 24px;
            border-right: 1px solid var(--line);
        }

        .trust-item:last-child {
            border-right: 0;
        }

        .trust-value {
            display: block;
            margin-bottom: 3px;
            font-size: 25px;
            font-weight: 900;
            letter-spacing: -0.04em;
        }

        .trust-label {
            color: var(--muted);
            font-size: 13px;
            font-weight: 700;
        }

        /* Showcase */

        .showcase {
            background: var(--sand);
        }

        .section-head {
            display: flex;
            justify-content: space-between;
            align-items: end;
            gap: 30px;
            margin-bottom: 48px;
        }

        .section-head p {
            max-width: 520px;
            margin-bottom: 0;
            color: var(--muted);
        }

        .showcase-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 26px;
        }

        .site-card {
            overflow: hidden;
            border: 1px solid rgba(13, 27, 30, 0.1);
            border-radius: 26px;
            background: white;
            transition: transform 0.25s ease, box-shadow 0.25s ease;
        }

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

        .site-preview {
    position: relative;
    min-height: 360px;
    overflow: hidden;
    background: #f3f1eb;
}

.site-preview img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
}

        .site-card:nth-child(2) .site-preview {
            background: #f3d9bd;
        }

        .site-card:nth-child(2) .site-preview::after {
            background:
                linear-gradient(135deg, rgba(32, 92, 47, 0.82), rgba(255, 135, 36, 0.58)),
                radial-gradient(circle at 28% 30%, rgba(255,255,255,0.55), transparent 38%);
        }

        .site-card:nth-child(3) .site-preview {
            background: #d8e5ef;
        }

        .site-card:nth-child(3) .site-preview::after {
            background:
                linear-gradient(135deg, rgba(9, 52, 76, 0.86), rgba(55, 180, 222, 0.42)),
                radial-gradient(circle at 70% 28%, rgba(255,255,255,0.6), transparent 30%);
        }

        .site-card:nth-child(4) .site-preview {
            background: #eee2d2;
        }

        .site-card:nth-child(4) .site-preview::after {
            background:
                linear-gradient(135deg, rgba(85, 48, 23, 0.84), rgba(220, 156, 72, 0.5)),
                radial-gradient(circle at 65% 35%, rgba(255,255,255,0.5), transparent 35%);
        }

        .preview-label {
            position: absolute;
            left: 66px;
            top: 105px;
            z-index: 2;
            max-width: 250px;
            color: white;
        }

        .preview-label small {
            display: block;
            margin-bottom: 8px;
            font-size: 10px;
            font-weight: 800;
            letter-spacing: 0.12em;
            text-transform: uppercase;
        }

        .preview-label strong {
            display: block;
            font-size: 34px;
            line-height: 1;
            letter-spacing: -0.05em;
        }

        .site-card-body {
            padding: 26px;
        }

        .site-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            margin-bottom: 13px;
        }

        .site-type {
            color: var(--accent-dark);
            font-size: 12px;
            font-weight: 900;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        .site-status {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            color: var(--muted);
            font-size: 12px;
            font-weight: 700;
        }

        .site-status::before {
            content: "";
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--accent);
            box-shadow: 0 0 0 4px rgba(47, 197, 122, 0.14);
        }

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

        .site-card-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 20px;
        }

        /* Features */

        .feature-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
            margin-top: 48px;
        }

        .feature-card {
            padding: 28px;
            border: 1px solid var(--line);
            border-radius: 22px;
            background: white;
        }

        .feature-icon {
            width: 46px;
            height: 46px;
            display: grid;
            place-items: center;
            margin-bottom: 18px;
            border-radius: 14px;
            background: rgba(47, 197, 122, 0.12);
            color: var(--accent-dark);
        }


        .feature-card p {
            margin-bottom: 0;
            color: var(--muted);
            font-size: 14px;
        }

        /* Pricing */

        .pricing {
            position: relative;
            overflow: hidden;
            background: var(--ink);
            color: white;
        }

        .pricing::before {
            content: "";
            position: absolute;
            width: 520px;
            height: 520px;
            left: -260px;
            top: -160px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(47, 197, 122, 0.25), transparent 68%);
        }

        .pricing .eyebrow {
            color: #73e5a8;
        }

        .pricing .lead {
            color: rgba(255,255,255,0.66);
        }

        .pricing-grid {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1.05fr 0.95fr;
            gap: 30px;
            margin-top: 48px;
        }

        .price-card {
            padding: 38px;
            border: 1px solid rgba(255,255,255,0.14);
            border-radius: 26px;
            background: rgba(255,255,255,0.06);
        }

        .price-card.featured {
            background: white;
            color: var(--ink);
            transform: translateY(-10px);
        }

        .price-badge {
            display: inline-flex;
            margin-bottom: 18px;
            padding: 7px 11px;
            border-radius: 999px;
            background: rgba(47, 197, 122, 0.16);
            color: #74e7a9;
            font-size: 11px;
            font-weight: 900;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        .featured .price-badge {
            background: rgba(47, 197, 122, 0.12);
            color: var(--accent-dark);
        }

        .price {
            display: flex;
            align-items: baseline;
            gap: 10px;
            margin: 18px 0 6px;
        }

        .price strong {
            font-size: clamp(48px, 7vw, 78px);
            line-height: 1;
            letter-spacing: -0.06em;
        }

        .price span {
            color: rgba(255,255,255,0.58);
            font-weight: 700;
        }

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

        .price-copy {
            color: rgba(255,255,255,0.64);
        }

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

        .price-list {
            display: grid;
            gap: 13px;
            margin: 28px 0 34px;
            padding: 0;
            list-style: none;
        }

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

        .price-list i {
            margin-top: 5px;
            color: var(--accent);
        }

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

        /* Process */

        .process-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 18px;
            margin-top: 44px;
        }

        .process-step {
            position: relative;
            padding: 26px;
            border: 1px solid var(--line);
            border-radius: 22px;
            background: white;
        }

        .step-number {
            display: block;
            margin-bottom: 18px;
            color: var(--accent);
            font-size: 34px;
            font-weight: 900;
            letter-spacing: -0.05em;
        }

        .process-step p {
            margin-bottom: 0;
            color: var(--muted);
            font-size: 14px;
        }

        /* Ecosystem */

        .ecosystem {
            background: var(--sand);
        }

        .ecosystem-card {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: 28px;
            align-items: center;
            padding: 44px;
            border-radius: 30px;
            background: white;
            box-shadow: var(--shadow);
        }

        .eco-node {
            padding: 28px;
            border: 1px solid var(--line);
            border-radius: 22px;
        }

        .eco-node strong {
            display: block;
            margin-bottom: 10px;
            font-size: 25px;
            letter-spacing: -0.04em;
        }

        .eco-node p {
            margin-bottom: 0;
            color: var(--muted);
        }

        .eco-arrow {
            width: 58px;
            height: 58px;
            display: grid;
            place-items: center;
            border-radius: 50%;
            background: var(--accent);
            color: var(--ink);
            font-size: 20px;
        }

        /* CTA */

        .cta {
            padding: 90px 0;
        }

        .cta-box {
            position: relative;
            overflow: hidden;
            padding: 58px;
            border-radius: 32px;
            background: linear-gradient(135deg, var(--accent), #8ee7b5);
        }

        .cta-box::after {
            content: "";
            position: absolute;
            width: 340px;
            height: 340px;
            right: -90px;
            bottom: -180px;
            border-radius: 50%;
            background: rgba(255,255,255,0.23);
        }

        .cta-box h2 {
            max-width: 800px;
            margin-bottom: 16px;
        }

        .cta-box p {
            max-width: 650px;
            margin-bottom: 28px;
            color: rgba(13,27,30,0.76);
            font-size: 18px;
        }

        /* Footer */

        footer {
            padding: 34px 0;
            border-top: 1px solid var(--line);
        }

        .footer-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            color: var(--muted);
            font-size: 13px;
        }

        .footer-links {
            display: flex;
            gap: 20px;
        }

        /* Responsive */

        @media (max-width: 920px) {
            .nav-links {
                position: absolute;
                top: 76px;
                left: 20px;
                right: 20px;
                display: none;
                flex-direction: column;
                align-items: stretch;
                gap: 0;
                padding: 16px;
                border: 1px solid var(--line);
                border-radius: 18px;
                background: var(--paper);
                box-shadow: var(--shadow);
            }

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

            .nav-links a {
                padding: 12px;
            }

            .nav-links .btn {
                margin-top: 8px;
            }

            .menu-toggle {
                display: inline-grid;
                place-items: center;
            }

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

            .browser-stage {
                max-width: 650px;
                margin: 20px auto 0;
            }

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

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

            .ecosystem-card {
                grid-template-columns: 1fr;
            }

            .eco-arrow {
                transform: rotate(90deg);
                margin: 0 auto;
            }

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

            .trust-item:nth-child(2) {
                border-right: 0;
            }

            .trust-item:nth-child(-n+2) {
                border-bottom: 1px solid var(--line);
            }
        }

        @media (max-width: 640px) {
            .container {
                width: min(100% - 28px, 1180px);
            }

            .section {
                padding: 76px 0;
            }

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

            h1 {
                font-size: 49px;
            }

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

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

            .browser-stage {
                padding: 38px 16px 16px;
                border-radius: 24px;
            }

            .screen {
                min-height: 420px;
            }

            .mock-hero {
                padding: 38px 24px 18px;
            }

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

            .mock-grid {
                padding: 10px 16px 22px;
            }

            .section-head {
                display: block;
            }

            .showcase-grid,
            .feature-grid,
            .process-grid,
            .trust-grid {
                grid-template-columns: 1fr;
            }

            .trust-item {
                border-right: 0;
                border-bottom: 1px solid var(--line);
            }

            .trust-item:last-child {
                border-bottom: 0;
            }

            .site-preview {
                min-height: 300px;
            }

            .preview-label {
                left: 44px;
                top: 92px;
            }

            .preview-label strong {
                font-size: 28px;
            }

            .price-card,
            .cta-box,
            .ecosystem-card {
                padding: 28px;
            }

            .price-card.featured {
                transform: none;
            }

            .footer-row {
                align-items: flex-start;
                flex-direction: column;
            }
        }
    

/* Floating side controls */

.whatsapp-float,
.back-to-top {
    position: fixed;
    right: 0;
    z-index: 9999;

    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;

    border: 0;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);

    cursor: pointer;
    pointer-events: auto;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.back-to-top {
    bottom: calc(50px + env(safe-area-inset-bottom));
    background: #111;

    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease,
        background 0.25s ease;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.whatsapp-float {
    bottom: calc(102px + env(safe-area-inset-bottom));
    background: #25d366;

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.whatsapp-float i {
    font-size: 25px;
}

.back-to-top i {
    font-size: 17px;
}

/* Only apply hover effects on devices that genuinely support hover */

@media (hover: hover) and (pointer: fine) {
    .whatsapp-float:hover {
        color: #fff;
        background: #1ebe5d;
        transform: translateX(-4px);
    }

    .back-to-top:hover {
        color: #fff;
        background: var(--accent-dark);
        transform: translateX(-4px);
    }
}

.btn-disabled {
    opacity: 0.55;
    cursor: default;
    pointer-events: none;
    user-select: none;
}

.site-status.is-progress::before {
    background: #ffb24a;
    box-shadow: 0 0 0 4px rgba(255, 178, 74, 0.16);
}

.portfolio-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 42px;
}

.pagination-pages {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pagination-page,
.pagination-arrow {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;

    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    color: var(--ink);

    font-size: 14px;
    font-weight: 800;
    text-decoration: none;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease,
        color 0.2s ease;
}

.pagination-page:hover,
.pagination-arrow:hover {
    border-color: var(--accent);
    background: rgba(47, 197, 122, 0.1);
    transform: translateY(-2px);
}

.pagination-page.is-active {
    border-color: var(--accent);
    background: var(--accent);
    color: var(--ink);
    pointer-events: none;
}

.pagination-arrow.is-disabled {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
}

.site-status.is-progress::before {
    background: var(--sun);
    box-shadow: 0 0 0 4px rgba(255, 178, 74, 0.16);
}

.btn-disabled {
    opacity: 0.55;
    cursor: default;
    pointer-events: none;
    user-select: none;
}

@media (max-width: 640px) {
    .portfolio-pagination {
        gap: 8px;
        margin-top: 32px;
    }

    .pagination-pages {
        gap: 6px;
    }

    .pagination-page,
    .pagination-arrow {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }
}
 
.site-status.is-private::before {
    background: #6f7f85;
    box-shadow: 0 0 0 4px rgba(111, 127, 133, 0.16);
}
