    :root {
        --bg: #03035a;
        --panel: #1b3b65;
        --panel-2: #0f2a4b;
        --text: #ffffff;
        --ink: #03035a;
        --accent: #e5d000;
        --muted: #d9d9d9;

        --card-shadow: 0 8px 24px rgba(0, 0, 0, .18);
        --radius: 16px;
    }

    /* Base */
    body {
        margin: 0;
        background: var(--bg);
        color: var(--text);
        font-family: Arial, Helvetica, sans-serif;
        line-height: 1.5;
    }

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

    .container {
        max-width: 1000px;
        margin: 0 auto;
        padding: 0 16px;
    }

    /* Header */
    .site-header {
        background: var(--bg);
    }

    .header-inner {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 24px;
        padding: 12px 0;
    }

    .nav-icons {
        display: flex;
        flex-wrap: nowrap;
        /* ✅ never wrap */
        justify-content: center;
        align-items: flex-end;
        gap: 0;
        white-space: nowrap;
        /* extra safety */
    }

    @media (max-width: 860px) {
        .nav-icons img {
            height: 72px;
            /* shrink on smaller screens */
        }
    }

    @media (max-width: 520px) {
        .nav-icons img {
            height: 60px;
            /* shrink more */
        }
    }

    .nav-icons a {
        display: inline-flex;
    }

    .nav-icons img {
        height: 92px;
        /* pick a consistent height */
        width: auto;
    }

    @media (max-width: 860px) {
        .header-inner {
            flex-direction: column;
            align-items: center;
        }
    }

    /* Hero / Section 1 */
    .hero {
        background: var(--panel);
        padding: 32px 0 40px;
    }

    .hero-grid {
        display: grid;
        grid-template-columns: 1.05fr 0.95fr;
        gap: 28px;
        align-items: center;
    }

    @media (max-width: 900px) {
        .hero-grid {
            grid-template-columns: 1fr;
        }
    }

    .hero-media img {
        border-radius: var(--radius);
        box-shadow: var(--card-shadow);
    }

    .hero-title {
        margin: 0 0 10px;
        font-size: 32px;
        font-weight: 800;
        color: var(--text);
    }

    .hero-highlight {
        margin: 0 0 14px;
        font-size: 18px;
        font-weight: 800;
        color: var(--accent);
    }

    .hero-list {
        margin: 0;
        padding-left: 18px;
        font-size: 14px;
        color: var(--text);
    }

    .hero-list li {
        margin: 6px 0;
    }

    .hero-badges {
        margin-top: 18px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        flex-wrap: wrap;
    }

    .hero-badges .graph {
        margin-left: auto;
    }

    .hero-badges .graph img {
        width: 146px;
        height: auto;
    }

    .store-icons {
        display: flex;
        align-items: center;
        justify-content: center;
        /* 👈 centers horizontally */
        gap: 16px;
    }


    .store-icons img {
        width: 52px;
        height: 52px;
    }

    .divider {
        width: 2px;
        height: 35px;
        background: rgba(255, 255, 255, 0.85);
        border-radius: 2px;
    }

    /* Section 2 */
    .features {
        background: var(--bg);
        padding: 38px 0 44px;
    }

    .features h2 {
        margin: 0 0 10px;
        text-align: center;
        font-size: 34px;
        font-weight: 900;
        color: var(--text);
    }

    .features .sub {
        margin: 0 0 22px;
        text-align: center;
        font-size: 18px;
        font-weight: 700;
        color: var(--text);
        opacity: .95;
    }

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

    @media (max-width: 900px) {
        .feature-grid {
            grid-template-columns: 1fr;
        }
    }

    .feature-card {
        background: rgba(255, 255, 255, 0.08);
        border-radius: var(--radius);
        padding: 18px;
    }

    .feature-card img {
        width: 92px;
        height: 92px;
        margin: 0 auto 10px;
    }

    .feature-card h3 {
        margin: 0 0 8px;
        text-align: center;
        font-size: 18px;
        color: var(--accent);
    }

    .feature-card p {
        margin: 0;
        text-align: center;
        font-size: 14px;
        color: var(--text);
    }

    /* Section 3 (Potential) */
    .potential {
        background: #ffffff;
        color: var(--ink);
        padding: 44px 0 52px;
    }

    .potential h2 {
        margin: 0 0 10px;
        text-align: center;
        font-size: 34px;
        font-weight: 900;
        color: var(--ink);
    }

    .potential .lead {
        margin: 0 auto 18px;
        max-width: 820px;
        text-align: center;
        font-size: 18px;
        font-weight: 700;
        color: var(--ink);
    }

    .potential-grid {
        display: grid;
        grid-template-columns: 1fr 1.2fr 1fr;
        gap: 18px;
        align-items: center;
        margin-top: 18px;
    }

    @media (max-width: 980px) {
        .potential-grid {
            grid-template-columns: 1fr;
        }
    }

    .potential-side {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .pill {
        background: #fff;
        border-radius: var(--radius);
        box-shadow: var(--card-shadow);
        padding: 14px;
        display: grid;
        grid-template-columns: 70px 1fr;
        gap: 12px;
        align-items: center;
    }

    .pill img {
        width: 56px;
        height: 56px;
        margin: 0 auto;
    }

    .pill h3 {
        margin: 0 0 6px;
        font-size: 18px;
        color: var(--ink);
    }

    .pill p {
        margin: 0;
        font-size: 14px;
        color: var(--ink);
        opacity: .95;
    }



    /* icon on the right */
    .pill--icon-right {
        grid-template-columns: 1fr 70px;
    }

    .pill--icon-right>img {
        order: 2;
        /* put image second */
        justify-self: end;
        /* align it to the right edge */
    }

    .pill--icon-right>div {
        order: 1;
    }

    .phone-shot {
        display: flex;
        justify-content: center;
    }

    .phone-shot img {
        border-radius: var(--radius);
        box-shadow: var(--card-shadow);
        max-width: 520px;
        width: 100%;
        height: auto;
    }

    /* Section 4 (Pricing) */
    .pricing {
        background: var(--muted);
        padding: 44px 0 52px;
        color: var(--ink);
    }

    .pricing h2 {
        margin: 0 0 6px;
        text-align: center;
        font-size: 28px;
        font-weight: 900;
        color: #1b3b65;
    }

    .pricing .sub {
        margin: 0 0 22px;
        text-align: center;
        font-size: 14px;
        font-weight: 800;
        color: #1b3b65;
    }

    .pricing-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }

    @media (max-width: 900px) {
        .pricing-grid {
            grid-template-columns: 1fr;
        }
    }

    .pricing-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 18px;
        align-items: stretch;
        /* IMPORTANT */
    }

    .price-card {
        display: flex;
        flex-direction: column;
        border-radius: 16px;
        overflow: hidden;
    }

    .price-body {
        flex: 1;
        /* fills available space */
    }

    .price-head {
        padding: 16px;
        background: #ffffff;
        border-bottom: 1px solid rgba(0, 0, 0, .08);
    }

    .price-head h3 {
        margin: 0;
        text-align: center;
        color: #1b3b65;
        font-size: 18px;
        font-weight: 900;
    }

    .price-tag {
        background: var(--panel);
        color: #fff;
        text-align: center;
        font-size: 30px;
        font-weight: 900;
        padding: 14px 16px;
    }

    .price-body {
        background-color: #ffffff;
        padding: 16px;
        color: var(--ink);
        font-size: 14px;
    }

    .ticks {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

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

    .ticks img {
        width: 18px;
        height: 18px;
        margin-top: 2px;
    }

    .price-cta {
        background: #ed7a32;
        color: #fff;

        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;

        min-height: 80px;
        /* 👈 makes both bars same size */
        padding: 0 16px;
    }

    .price-cta a {
        color: #fff;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 10px;
    }

    .price-cta img {
        width: 46px;
        height: auto;
    }

    /* Configurable Features banner */
    .banner {
        background: var(--bg);
        padding: 28px 0;
        text-align: center;
    }

    .banner h2 {
        margin: 0;
        color: #fff;
        font-size: 28px;
        font-weight: 900;
        letter-spacing: .5px;
    }

    /* Configurable Features section */
    .config {
        background: var(--panel);
        padding: 38px 0 52px;
    }

    .config-grid {
        display: grid;
        grid-template-columns: 1.05fr 0.95fr;
        gap: 28px;
        align-items: center;
    }

    @media (max-width: 900px) {
        .config-grid {
            grid-template-columns: 1fr;
        }
    }

    .config-media img {
        border-radius: var(--radius);
    }

    .config-copy h3 {
        margin: 0 0 6px;
        font-size: 22px;
        font-weight: 900;
        color: #fff;
    }

    .config-copy .highlight {
        margin: 0 0 10px;
        font-size: 18px;
        font-weight: 900;
        color: var(--accent);
    }

    .config-copy ul {
        margin: 0 0 18px;
        padding-left: 18px;
        font-size: 14px;
        color: #fff;
    }

    .config-copy li {
        margin: 6px 0;
    }