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

    :root {
        --ink: #0b0e1a;
        --ink-soft: #3a3f56;
        --paper: #f7f6f2;
        --accent: #ff4d00;
        --accent2: #ffb800;
        --card: #ffffff;
        --border: #e2e0d8;
        --grad: linear-gradient(135deg, #ff4d00 0%, #ff8c42 100%);
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: 'DM Sans', sans-serif;
        background: var(--paper);
        color: var(--ink);
        overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px 60px;
        background: rgba(247, 246, 242, 0.92);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid var(--border);
    }

    .logo {
        font-family: 'Syne', sans-serif;
        font-weight: 800;
        font-size: 1.5rem;
        letter-spacing: -0.5px;
        color: var(--ink);
        text-decoration: none;
    }

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

    nav a.cta-nav {
        background: var(--accent);
        color: #fff;
        padding: 10px 24px;
        border-radius: 6px;
        font-size: 0.875rem;
        font-weight: 500;
        text-decoration: none;
        transition: opacity 0.2s;
    }

    nav a.cta-nav:hover {
        opacity: 0.88;
    }

    /* ── HERO ── */
    .hero {
        padding: 160px 60px 100px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
        max-width: 1280px;
        margin: 0 auto;
    }

    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: #fff0eb;
        color: var(--accent);
        padding: 6px 14px;
        border-radius: 100px;
        font-size: 0.78rem;
        font-weight: 600;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        margin-bottom: 24px;
        border: 1px solid #ffd5c5;
    }

    .hero-badge::before {
        content: '';
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: var(--accent);
        animation: blink 1.4s infinite;
    }

    @keyframes blink {

        0%,
        100% {
            opacity: 1
        }

        50% {
            opacity: 0.3
        }
    }

    h1 {
        font-family: 'Syne', sans-serif;
        font-size: clamp(2.4rem, 4vw, 3.6rem);
        font-weight: 800;
        line-height: 1.1;
        letter-spacing: -1.5px;
        color: var(--ink);
    }

    h1 em {
        font-style: normal;
        color: var(--accent);
    }

    .hero p {
        margin-top: 20px;
        font-size: 1.05rem;
        color: var(--ink-soft);
        line-height: 1.7;
        max-width: 480px;
    }

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

    .btn-primary {
        background: var(--accent);
        color: #fff;
        padding: 14px 30px;
        border-radius: 8px;
        font-size: 0.95rem;
        font-weight: 600;
        text-decoration: none;
        transition: transform 0.2s, box-shadow 0.2s;
        box-shadow: 0 4px 20px rgba(255, 77, 0, 0.3);
    }

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 28px rgba(255, 77, 0, 0.38);
    }

    .btn-secondary {
        border: 1.5px solid var(--ink);
        color: var(--ink);
        padding: 14px 30px;
        border-radius: 8px;
        font-size: 0.95rem;
        font-weight: 600;
        text-decoration: none;
        transition: background 0.2s;
    }

    .btn-secondary:hover {
        background: var(--ink);
        color: #fff;
    }

    /* Hero visual */
    .hero-visual {
        position: relative;
    }

    .hero-card {
        background: var(--ink);
        border-radius: 20px;
        padding: 32px;
        color: #fff;
        position: relative;
        overflow: hidden;
    }

    .hero-card::before {
        content: '';
        position: absolute;
        top: -60px;
        right: -60px;
        width: 200px;
        height: 200px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(255, 77, 0, 0.4) 0%, transparent 70%);
    }

    .hero-card-label {
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: rgba(255, 255, 255, 0.5);
        margin-bottom: 20px;
    }

    .metrics-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .metric {
        background: rgba(255, 255, 255, 0.07);
        border-radius: 12px;
        padding: 20px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .metric-num {
        font-family: 'Syne', sans-serif;
        font-size: 2rem;
        font-weight: 800;
        color: var(--accent2);
    }

    .metric-label {
        font-size: 0.78rem;
        color: rgba(255, 255, 255, 0.6);
        margin-top: 4px;
        line-height: 1.4;
    }

    .hero-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 20px;
    }

    .tag {
        background: rgba(255, 255, 255, 0.1);
        color: rgba(255, 255, 255, 0.8);
        padding: 5px 12px;
        border-radius: 100px;
        font-size: 0.75rem;
        border: 1px solid rgba(255, 255, 255, 0.15);
    }

    /* ── TRUST BAR ── */
    .trust-bar {
        background: var(--ink);
        padding: 20px 60px;
        display: flex;
        justify-content: center;
        gap: 48px;
        flex-wrap: wrap;
    }

    .trust-item {
        display: flex;
        align-items: center;
        gap: 10px;
        color: rgba(255, 255, 255, 0.75);
        font-size: 0.85rem;
    }

    .trust-item svg {
        color: var(--accent2);
        flex-shrink: 0;
    }

    /* ── SECTION SHELL ── */
    section {
        /* padding: 100px 60px; */
        max-width: 1280px;
        margin: 0 auto;
    }

    .section-tag {
        display: inline-block;
        font-size: 0.75rem;
        font-weight: 600;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--accent);
        margin-bottom: 12px;
    }

    h2 {
        font-family: 'Syne', sans-serif;
        font-size: clamp(1.8rem, 3vw, 2.6rem);
        font-weight: 800;
        letter-spacing: -1px;
        line-height: 1.15;
        margin-bottom: 16px;
    }

    .section-sub {
        color: var(--ink-soft);
        font-size: 1rem;
        line-height: 1.7;
        max-width: 560px;
        margin-bottom: 52px;
    }

    /* ── SERVICES ── */
    .services-bg {
        background: var(--ink);
        padding: 100px 0;
    }

    .services-inner {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 60px;
    }

    .services-inner h2 {
        color: #fff;
    }

    .services-inner .section-tag {
        color: var(--accent2);
    }

    .services-inner .section-sub {
        color: rgba(255, 255, 255, 0.55);
    }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }

    .service-card {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        padding: 32px;
        transition: border-color 0.3s, background 0.3s, transform 0.3s;
        cursor: default;
    }

    .service-card:hover {
        border-color: var(--accent);
        background: rgba(255, 77, 0, 0.08);
        transform: translateY(-4px);
    }

    .service-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        background: var(--grad);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.4rem;
        margin-bottom: 20px;
    }

    .service-card h3 {
        font-family: 'Syne', sans-serif;
        font-size: 1.1rem;
        font-weight: 700;
        color: #fff;
        margin-bottom: 10px;
    }

    .service-card p {
        font-size: 0.875rem;
        color: rgba(255, 255, 255, 0.55);
        line-height: 1.65;
    }

    .service-pills {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        margin-top: 16px;
    }

    .pill {
        font-size: 0.7rem;
        padding: 3px 10px;
        background: rgba(255, 255, 255, 0.08);
        border-radius: 100px;
        color: rgba(255, 255, 255, 0.6);
    }

    /* ── WHY US ── */
    .why-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    .why-list {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .why-item {
        display: flex;
        gap: 16px;
        align-items: flex-start;
        padding: 20px;
        border-radius: 12px;
        border: 1px solid var(--border);
        background: #fff;
        transition: border-color 0.2s, transform 0.2s;
    }

    .why-item:hover {
        border-color: var(--accent);
        transform: translateX(4px);
    }

    .why-icon {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
        border-radius: 10px;
        background: #fff0eb;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
    }

    .why-text h4 {
        font-family: 'Syne', sans-serif;
        font-size: 0.95rem;
        font-weight: 700;
        margin-bottom: 4px;
    }

    .why-text p {
        font-size: 0.82rem;
        color: var(--ink-soft);
        line-height: 1.55;
    }

    .why-visual {
        background: var(--ink);
        border-radius: 20px;
        padding: 40px;
        position: relative;
        overflow: hidden;
    }

    .why-visual::after {
        content: '';
        position: absolute;
        bottom: -40px;
        left: -40px;
        width: 180px;
        height: 180px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(255, 184, 0, 0.35) 0%, transparent 70%);
    }

    .why-visual h3 {
        font-family: 'Syne', sans-serif;
        font-size: 1.4rem;
        font-weight: 800;
        color: #fff;
        margin-bottom: 28px;
    }

    .benefit-row {
        display: flex;
        gap: 12px;
        align-items: flex-start;
        margin-bottom: 18px;
        color: rgba(255, 255, 255, 0.8);
        font-size: 0.875rem;
        line-height: 1.5;
    }

    .benefit-row::before {
        content: '→';
        color: var(--accent2);
        font-weight: 700;
        flex-shrink: 0;
        margin-top: 1px;
    }

    /* ── PROCESS ── */
    .process-bg {
        background: #fff;
        padding: 100px 0;
    }

    .process-inner {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 60px;
    }

    .process-steps {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 0;
        position: relative;
    }

    .process-steps::before {
        content: '';
        position: absolute;
        top: 36px;
        left: 10%;
        right: 10%;
        height: 2px;
        background: linear-gradient(90deg, var(--accent), var(--accent2));
        z-index: 0;
    }

    .step {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 12px;
        position: relative;
        z-index: 1;
    }

    .step-num {
        width: 72px;
        height: 72px;
        border-radius: 50%;
        background: var(--paper);
        border: 3px solid var(--accent);
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Syne', sans-serif;
        font-size: 1.2rem;
        font-weight: 800;
        color: var(--accent);
        margin-bottom: 20px;
        box-shadow: 0 0 0 6px var(--paper);
    }

    .step h4 {
        font-family: 'Syne', sans-serif;
        font-size: 0.85rem;
        font-weight: 700;
        margin-bottom: 8px;
        color: var(--ink);
    }

    .step p {
        font-size: 0.75rem;
        color: var(--ink-soft);
        line-height: 1.5;
    }

    /* ── ECOMMERCE ── */
    .ecom-grid {
        display: grid;
        grid-template-columns: 1.1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    .ecom-features {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .ecom-feat {
        display: flex;
        gap: 14px;
        align-items: center;
        padding: 16px 20px;
        border-radius: 10px;
        background: var(--card);
        border: 1px solid var(--border);
    }

    .ecom-feat-icon {
        font-size: 1.3rem;
    }

    .ecom-feat span {
        font-size: 0.875rem;
        font-weight: 500;
    }

    .ecom-visual {
        background: var(--grad);
        border-radius: 20px;
        padding: 40px;
        color: #fff;
        position: relative;
        overflow: hidden;
    }

    .ecom-visual::before {
        content: '';
        position: absolute;
        top: -30px;
        right: -30px;
        width: 160px;
        height: 160px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.15);
    }

    .ecom-visual h3 {
        font-family: 'Syne', sans-serif;
        font-size: 1.5rem;
        font-weight: 800;
        margin-bottom: 16px;
    }

    .ecom-visual p {
        font-size: 0.9rem;
        opacity: 0.88;
        line-height: 1.65;
        margin-bottom: 28px;
    }

    .ecom-visual a {
        display: inline-block;
        background: #fff;
        color: var(--accent);
        font-weight: 700;
        padding: 12px 24px;
        border-radius: 8px;
        text-decoration: none;
        font-size: 0.875rem;
    }

    /* ── FAQ ── */
    .faq-bg {
        background: var(--paper);
        padding: 100px 0;
    }

    .faq-inner {
        max-width: 860px;
        margin: 0 auto;
        padding: 0 60px;
    }

    .faq-inner h2 {
        text-align: center;
    }

    .faq-inner .section-tag {
        display: block;
        text-align: center;
    }

    .faq-inner .section-sub {
        margin: 0 auto 52px;
        text-align: center;
    }

    .faq-list {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .faq-item {
        background: #fff;
        border-radius: 12px;
        border: 1px solid var(--border);
        overflow: hidden;
    }

    .faq-q {
        width: 100%;
        text-align: left;
        padding: 20px 24px;
        background: none;
        border: none;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-family: 'DM Sans', sans-serif;
        font-size: 0.95rem;
        font-weight: 600;
        color: var(--ink);
        gap: 16px;
    }

    .faq-q:hover {
        color: var(--accent);
    }

    .faq-arrow {
        width: 28px;
        height: 28px;
        flex-shrink: 0;
        border-radius: 50%;
        background: var(--paper);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.75rem;
        transition: transform 0.3s, background 0.2s;
    }

    .faq-item.open .faq-arrow {
        transform: rotate(180deg);
        background: #fff0eb;
        color: var(--accent);
    }

    .faq-a {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease, padding 0.3s;
        font-size: 0.875rem;
        color: var(--ink-soft);
        line-height: 1.7;
        padding: 0 24px;
    }

    .faq-item.open .faq-a {
        max-height: 200px;
        padding: 0 24px 20px;
    }

    /* ── REVIEWS ── */
    .reviews-bg {
        background: #fff;
        padding: 100px 0;
    }

    .reviews-inner {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 60px;
    }

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

    .review-card {
        background: var(--paper);
        border-radius: 16px;
        padding: 28px;
        border: 1px solid var(--border);
        transition: transform 0.2s, box-shadow 0.2s;
    }

    .review-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    }

    .stars {
        color: var(--accent2);
        font-size: 1rem;
        margin-bottom: 14px;
    }

    .review-text {
        font-size: 0.9rem;
        color: var(--ink-soft);
        line-height: 1.65;
        margin-bottom: 20px;
    }

    .reviewer {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .avatar {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: var(--grad);
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Syne', sans-serif;
        font-size: 0.9rem;
        font-weight: 800;
        color: #fff;
    }

    .reviewer-name {
        font-weight: 600;
        font-size: 0.875rem;
    }

    .reviewer-role {
        font-size: 0.75rem;
        color: var(--ink-soft);
    }

    /* ── CTA ── */
    .cta-block {
        background: var(--ink);
        margin: 0 60px 100px;
        border-radius: 24px;
        padding: 72px 80px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 40px;
        flex-wrap: wrap;
        position: relative;
        overflow: hidden;
    }

    .cta-block::before {
        content: '';
        position: absolute;
        top: -80px;
        right: 100px;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(255, 77, 0, 0.25) 0%, transparent 70%);
    }

    .cta-block::after {
        content: '';
        position: absolute;
        bottom: -60px;
        right: -40px;
        width: 200px;
        height: 200px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(255, 184, 0, 0.2) 0%, transparent 70%);
    }

    .cta-text h2 {
        color: #fff;
        margin-bottom: 12px;
        letter-spacing: -1px;
    }

    .cta-text p {
        color: rgba(255, 255, 255, 0.6);
        font-size: 1rem;
        max-width: 440px;
        line-height: 1.65;
    }

    .cta-actions {
        display: flex;
        gap: 14px;
        flex-shrink: 0;
        flex-wrap: wrap;
    }

    .btn-white {
        background: #fff;
        color: var(--ink);
        padding: 15px 32px;
        border-radius: 8px;
        font-weight: 700;
        text-decoration: none;
        font-size: 0.95rem;
        transition: transform 0.2s;
        display: inline-block;
    }

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

    .btn-outline-white {
        border: 1.5px solid rgba(255, 255, 255, 0.3);
        color: #fff;
        padding: 15px 32px;
        border-radius: 8px;
        font-weight: 600;
        text-decoration: none;
        font-size: 0.95rem;
        transition: border-color 0.2s;
    }

    .btn-outline-white:hover {
        border-color: rgba(255, 255, 255, 0.7);
    }



    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .hero-content>* {
        opacity: 0;
        animation: fadeUp 0.7s forwards;
    }

    .hero-content>*:nth-child(1) {
        animation-delay: 0.1s;
    }

    .hero-content>*:nth-child(2) {
        animation-delay: 0.22s;
    }

    .hero-content>*:nth-child(3) {
        animation-delay: 0.34s;
    }

    .hero-content>*:nth-child(4) {
        animation-delay: 0.46s;
    }

    .hero-visual {
        opacity: 0;
        animation: fadeUp 0.7s 0.3s forwards;
    }

    /* RESPONSIVE */
    @media (max-width: 900px) {
        nav {
            padding: 16px 24px;
        }

        .hero {
            grid-template-columns: 1fr;
            padding: 120px 24px 60px;
            gap: 40px;
        }

        .trust-bar {
            padding: 20px 24px;
            gap: 20px;
        }

        section {
            padding: 70px 24px;
        }

        .services-inner {
            padding: 0 24px;
        }

        .process-inner {
            padding: 0 24px;
        }

        .faq-inner {
            padding: 0 24px;
        }

        .reviews-inner {
            padding: 0 24px;
        }

        .why-grid {
            grid-template-columns: 1fr;
        }

        .ecom-grid {
            grid-template-columns: 1fr;
        }

        .process-steps {
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        .process-steps::before {
            display: none;
        }

        .reviews-grid {
            grid-template-columns: 1fr;
        }

        .cta-block {
            margin: 0 24px 60px;
            padding: 48px 32px;
            flex-direction: column;
        }

        footer {
            padding: 24px;
        }
    }