    :root {
        /* Primary — SetmyBiz indigo / royal blue */
        --brand: #5046E5;
        --brand-hover: #3F35D6;
        --brand-soft: #ECEBFC;
        --brand-ink: #2A1FB0;

        /* Secondary — mint green from the logo */
        --mint: #10B981;
        --mint-soft: #D1FAE5;

        /* Featured ribbon — orange */
        --pop: #F97316;
        --pop-soft: #FFEDD5;

        /* Surface */
        --bg: #FFFFFF;
        --bg-alt: #F8F9FC;
        --card: #F1F2F8;

        /* Text */
        --ink: #0F1429;
        --ink-soft: #4B5168;
        --ink-muted: #8A8FA3;

        /* Lines */
        --line: #E4E6EF;
        --line-strong: #C9CDDB;

        /* --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; */

        --radius: 12px;
        --radius-sm: 8px;
        --radius-lg: 18px;
    }

    * {
        box-sizing: border-box;
    }

    html,
    body {
        margin: 0;
        padding: 0;
        background: var(--bg);
        color: var(--ink);
        /* font-family: var(--font); */
        font-size: 16px;
        line-height: 1.6;
        -webkit-font-smoothing: antialiased;
        text-rendering: optimizeLegibility;
    }

    a {
        color: var(--brand);
        text-decoration: none;
    }

    a:hover {
        color: var(--brand-hover);
    }

    .wrap {
        max-width: 1180px;
        margin: 0 auto;
        padding: 0 32px;
    }

    /* ========== Top Navigation ========== */
    .nav {
        background: var(--bg);
        border-bottom: 1px solid var(--line);
        padding: 18px 0;
        position: sticky;
        top: 0;
        z-index: 50;
    }

    .nav-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
    }

    .nav-brand {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        color: var(--ink);
    }

    .nav-logo {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--brand) 0%, var(--brand) 55%, var(--mint) 100%);
        flex-shrink: 0;
    }

    .nav-brand-text {
        font-size: 22px;
        font-weight: 700;
        letter-spacing: -0.01em;
        color: var(--ink);
    }

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

    .nav-link {
        color: var(--ink-soft);
        font-weight: 600;
        font-size: 13px;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        padding: 6px 0;
        border-bottom: 2px solid transparent;
        transition: color 140ms ease, border-color 140ms ease;
    }

    .nav-link:hover {
        color: var(--ink);
    }

    .nav-link.active {
        color: var(--brand);
        border-bottom-color: var(--brand);
    }

    .nav-cta {
        display: inline-block;
        padding: 11px 22px;
        background: var(--brand);
        color: #FFF;
        border-radius: var(--radius-sm);
        font-weight: 600;
        font-size: 15px;
        transition: background 140ms ease;
    }

    .nav-cta:hover {
        background: var(--brand-hover);
        color: #FFF;
    }

    .nav-mobile-toggle {
        display: none;
    }

    /* ========== Hero ========== */
    .hero {
        padding: 72px 0 32px;
        text-align: center;
        background: var(--bg);
    }

    .hero-eyebrow {
        display: inline-block;
        font-size: 12px;
        letter-spacing: 0.10em;
        text-transform: uppercase;
        color: var(--brand-ink);
        background: var(--brand-soft);
        padding: 8px 16px;
        border-radius: 999px;
        font-weight: 600;
        margin-bottom: 20px;
    }

    .hero h1 {
        font-size: 48px;
        font-weight: 800;
        line-height: 1.12;
        letter-spacing: -0.02em;
        margin: 0 0 18px;
        color: var(--ink);
    }

    .hero h1 .accent {
        color: var(--brand);
    }

    .hero p {
        font-size: 18px;
        color: var(--ink-soft);
        margin: 0 auto;
        max-width: 64ch;
        line-height: 1.6;
    }

    /* ========== Pricing section ========== */
    .pricing-section {
        padding: 56px 0 72px;
    }

    .section-title {
        text-align: center;
        font-size: 32px;
        font-weight: 800;
        letter-spacing: -0.015em;
        color: var(--ink);
        margin: 0 0 56px;
    }

    .pricing {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px;
        max-width: 880px;
        margin: 0 auto;
    }

    .plan {
        background: var(--card);
        border-radius: var(--radius-lg);
        padding: 44px 36px;
        display: flex;
        flex-direction: column;
        position: relative;
        transition: transform 180ms ease, box-shadow 180ms ease;
    }

    .plan:hover {
        transform: translateY(-4px);
        box-shadow: 0 18px 40px rgba(80, 70, 229, 0.10);
    }

    /* Featured plan with diagonal "Popular" / "Save 16%" ribbon */
    .plan--featured {
        background: var(--card);
    }

    .plan-ribbon {
        position: absolute;
        top: 18px;
        right: -42px;
        width: 170px;
        background: var(--pop);
        color: #FFF;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        text-align: center;
        padding: 7px 0;
        transform: rotate(45deg);
        box-shadow: 0 2px 6px rgba(249, 115, 22, 0.30);
    }

    .plan-name {
        font-size: 16px;
        letter-spacing: 0.10em;
        text-transform: uppercase;
        color: var(--brand);
        font-weight: 700;
        text-align: center;
    }

    .plan-icon {
        margin: 24px auto 12px;
        width: 84px;
        height: 84px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .plan-icon svg {
        width: 100%;
        height: 100%;
    }

    .plan-price {
        text-align: center;
        margin: 8px 0 4px;
    }

    .plan-price .amount {
        font-size: 48px;
        font-weight: 800;
        color: var(--ink);
        letter-spacing: -0.02em;
        line-height: 1;
    }

    .plan-price .per {
        color: var(--ink-muted);
        font-size: 16px;
        font-weight: 500;
        margin-left: 4px;
    }

    .plan-effective {
        text-align: center;
        font-size: 13.5px;
        color: var(--ink-muted);
        margin: 6px 0 28px;
        min-height: 22px;
    }

    .plan-features {
        list-style: none;
        padding: 0;
        margin: 0 0 28px;
        display: flex;
        flex-direction: column;
        gap: 14px;
        flex: 1;
    }

    .plan-features li {
        font-size: 15px;
        color: var(--ink);
        padding-left: 34px;
        position: relative;
        line-height: 1.45;
        font-weight: 500;
    }

    /* Blue circle with white check */
    .plan-features li::before {
        content: "";
        position: absolute;
        left: 0;
        top: 1px;
        width: 22px;
        height: 22px;
        background: var(--brand);
        border-radius: 50%;
    }

    .plan-features li::after {
        content: "";
        position: absolute;
        left: 7px;
        top: 7px;
        width: 8px;
        height: 4px;
        border-left: 2.5px solid #FFF;
        border-bottom: 2.5px solid #FFF;
        transform: rotate(-45deg);
    }

    /* Excluded feature variant — same circle, but with × instead of ✓ */
    .plan-features li.excluded {
        color: var(--ink-muted);
    }

    .plan-features li.excluded::before {
        background: var(--ink-muted);
    }

    .plan-features li.excluded::after {
        content: "×";
        left: 6px;
        top: -1px;
        width: auto;
        height: auto;
        border: none;
        transform: none;
        font-size: 16px;
        font-weight: 700;
        color: #FFF;
        line-height: 1;
    }

    .plan-cta {
        display: block;
        text-align: center;
        padding: 14px 22px;
        background: var(--brand);
        color: #FFF;
        border-radius: var(--radius-sm);
        font-weight: 600;
        font-size: 15.5px;
        letter-spacing: 0.005em;
        transition: background 140ms ease, transform 140ms ease;
    }

    .plan-cta:hover {
        background: var(--brand-hover);
        color: #FFF;
        transform: translateY(-1px);
    }

    /* Trust strip */
    .trust {
        text-align: center;
        color: var(--ink-soft);
        font-size: 14px;
        margin-top: 36px;
    }

    .trust strong {
        color: var(--ink);
        font-weight: 700;
    }

    /* ========== Features section ========== */
    .features {
        background: var(--bg-alt);
        padding: 80px 0 88px;
    }

    .feature-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 28px;
    }

    .feature-card {
        background: #FFF;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        padding: 32px 28px;
        transition: transform 180ms ease, box-shadow 180ms ease;
    }

    .feature-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 24px rgba(15, 20, 41, 0.06);
    }

    .feature-icon {
        width: 52px;
        height: 52px;
        border-radius: 12px;
        background: var(--brand-soft);
        color: var(--brand);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        font-weight: 800;
        margin-bottom: 18px;
    }

    .feature-card h3 {
        font-size: 18px;
        font-weight: 700;
        margin: 0 0 8px;
        color: var(--ink);
        letter-spacing: -0.005em;
    }

    .feature-card p {
        font-size: 14.5px;
        color: var(--ink-soft);
        margin: 0;
        line-height: 1.6;
    }

    /* ========== FAQ ========== */
    .faq {
        padding: 80px 0 96px;
        background: var(--bg);
    }

    .faq-list {
        max-width: 760px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .faq-item {
        background: var(--bg-alt);
        border: 1px solid var(--line);
        border-radius: var(--radius);
        overflow: hidden;
    }

    .faq-item summary {
        cursor: pointer;
        padding: 20px 24px;
        font-weight: 600;
        font-size: 15.5px;
        color: var(--ink);
        list-style: none;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
    }

    .faq-item summary::-webkit-details-marker {
        display: none;
    }

    .faq-item summary::after {
        content: "+";
        color: var(--brand);
        font-size: 24px;
        font-weight: 400;
        transition: transform 160ms ease;
        line-height: 1;
    }

    .faq-item[open] summary::after {
        transform: rotate(45deg);
    }

    .faq-item .faq-body {
        padding: 0 24px 22px;
        font-size: 14.5px;
        color: var(--ink-soft);
        line-height: 1.65;
    }

    /* ========== CTA section ========== */
    .cta {
        background: linear-gradient(135deg, var(--brand) 0%, var(--brand-hover) 100%);
        color: #FFF;
        text-align: center;
        padding: 64px 0;
    }

    .cta h2 {
        font-size: 32px;
        font-weight: 800;
        letter-spacing: -0.015em;
        margin: 0 0 12px;
    }

    .cta p {
        font-size: 17px;
        opacity: 0.92;
        max-width: 56ch;
        margin: 0 auto 28px;
    }

    .cta-button {
        display: inline-block;
        padding: 14px 32px;
        background: #FFF;
        color: var(--brand);
        border-radius: var(--radius-sm);
        font-weight: 700;
        font-size: 15.5px;
        transition: transform 140ms ease;
    }

    .cta-button:hover {
        color: var(--brand);
        transform: translateY(-2px);
    }

    /* ========== Footer ========== */
    .footer {
        background: var(--ink);
        color: #C9CDDB;
        padding: 40px 0;
        font-size: 13.5px;
    }

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

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

    .footer-links a {
        color: #C9CDDB;
        font-size: 13.5px;
        transition: color 140ms ease;
    }

    .footer-links a:hover {
        color: #FFF;
    }

    /* ========== Responsive ========== */
    @media (max-width: 880px) {
        .nav-links {
            display: none;
        }

        .pricing {
            grid-template-columns: 1fr;
            max-width: 480px;
        }

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

        .hero {
            padding: 48px 0 24px;
        }

        .hero h1 {
            font-size: 34px;
        }

        .hero p {
            font-size: 16px;
        }

        .section-title {
            font-size: 26px;
            margin-bottom: 36px;
        }

        .plan {
            padding: 36px 28px;
        }

        .features {
            padding: 56px 0 60px;
        }

        .faq {
            padding: 56px 0 72px;
        }

        .cta {
            padding: 48px 0;
        }

        .cta h2 {
            font-size: 26px;
        }

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