    .nf {
        background: #1f2124;
        color: #b9bec6;
        font-size: .9rem;
        border-top: 3px solid #fb8f2e;
        margin-top: 3rem;
    }
    .nf a {
        color: #b9bec6;
        text-decoration: none;
        transition: color .15s ease;
    }
    .nf a:hover {
        color: #fb8f2e;
        text-decoration: none;
    }
    .nf-main {
        padding: 3rem clamp(1.25rem, 4vw, 4rem) 2.5rem;
    }
    .nf-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
        gap: 2.5rem 3rem;
        align-items: start;
    }
    .nf-h {
        color: #ffffff;
        font-size: .78rem;
        font-weight: 700;
        letter-spacing: .12em;
        text-transform: uppercase;
        margin-bottom: 1rem;
    }
    .nf-brand {
        color: #ffffff;
        font-size: 1.35rem;
        font-weight: 800;
        letter-spacing: .02em;
        margin-bottom: .75rem;
    }
    /* The brand square - a real square (the "." glyph is round in Montserrat),
       same element as behind the navbar logo. */
    .nf-brand span {
        width: 8px;
        height: 8px;
        background: #fb8f2e;
        display: inline-block;
        margin-left: 4px;
    }
    .nf ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }
    .nf-links li {
        margin: 0 0 .55rem;
    }
    .nf-social a {
        display: inline-flex;
        align-items: center;
        gap: .5rem;
    }
    .nf-social i {
        font-size: 1.25rem;
    }
    .nf-payments {
        display: flex;
        flex-wrap: wrap;
        gap: .5rem;
    }
    .nf-payment {
        display: inline-flex;
        align-items: center;
        gap: .45rem;
        background: #ffffff;
        color: #26282b;
        border-radius: .4rem;
        padding: .35rem .6rem;
        font-size: .78rem;
        font-weight: 600;
        line-height: 1.2;
    }
    .nf-payment img {
        height: 20px;
        width: auto;
        display: block;
    }
    .nf-badges {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: .75rem;
        max-width: 320px;
    }
    .nf-cancel-btn {
        display: inline-block;
        background: #fb8f2e;
        color: #ffffff !important;
        font-weight: 700;
        border-radius: .4rem;
        padding: .5rem .95rem;
        margin-top: .75rem;
    }
    .nf-cancel-btn:hover {
        background: #e07c1d;
        text-decoration: none;
    }
    .nf-reviews {
        display: flex;
        flex-direction: column;
        gap: .6rem;
        max-width: 260px;
    }
    .nf-review-card {
        display: flex;
        align-items: center;
        gap: .7rem;
        background: rgba(255, 255, 255, .06);
        border: 1px solid rgba(255, 255, 255, .08);
        border-radius: .5rem;
        padding: .6rem .75rem;
        transition: border-color .15s ease, background .15s ease;
    }
    .nf-review-card:hover {
        background: rgba(255, 255, 255, .1);
        border-color: #fb8f2e;
    }
    .nf-review-card:hover .nf-review-name {
        color: #ffffff;
    }
    .nf-review-icon {
        flex: 0 0 34px;
        height: 34px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
        font-size: 1rem;
    }
    .nf-review-icon.nf-g {
        background: #4285f4;
    }
    .nf-review-name {
        display: block;
        color: #ffffff;
        font-weight: 700;
        line-height: 1.25;
    }
    .nf-review-sub {
        display: block;
        font-size: .78rem;
        color: #8d939b;
    }
    .nf-stars {
        position: relative;
        display: inline-block;
        line-height: 1;
        font-size: .72rem;
        letter-spacing: .1em;
        color: rgba(255, 255, 255, .22);
        vertical-align: -1px;
        margin-right: .25rem;
    }
    .nf-stars-fill {
        position: absolute;
        top: 0;
        left: 0;
        overflow: hidden;
        white-space: nowrap;
    }
    .nf-stars.nf-stars-g .nf-stars-fill {
        color: #fbbc04;
    }
    .nf-bottom {
        border-top: 1px solid rgba(255, 255, 255, .08);
        padding: 1rem clamp(1.25rem, 4vw, 4rem);
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        font-size: .8rem;
        color: #8d939b;
    }

    #ui-feedback-modal .ui-feedback-star {
        background: none;
        border: none;
        font-size: 1.8rem;
        line-height: 1;
        color: #ccc;
        cursor: pointer;
        padding: 0 .15rem;
    }
    #ui-feedback-modal .ui-feedback-star.active {
        color: #fb8f2e;
    }
    #ui-feedback-honeypot {
        position: absolute;
        left: -9999px;
    }
