*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', system-ui, sans-serif;
    color: #111;
    background: #fff;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    list-style: none;
}

:root {
    --red: #C8102E;
    --redd: #A30E25;
    --redbg: #FBF0F2;
    --k: #111;
    --g7: #444;
    --g5: #767676;
    --g3: #C4C4C4;
    --g1: #F2F2F2;
    --g0: #F8F8F8;
    --w: #fff;
    --bd: #E0E0E0;
    --sh: 0 4px 20px rgba(0, 0, 0, .09);
    --shl: 0 14px 52px rgba(0, 0, 0, .13);
    --nh: 66px;
    --tr: .2s ease;
}

.wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 36px;
}

/* Nav */
#siteNav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nh);
    background: rgba(255, 255, 255, .97);
    border-bottom: 1px solid var(--bd);
    z-index: 1000;
    transition: box-shadow var(--tr);
}

#siteNav.scrolled {
    box-shadow: var(--sh);
}

.nav-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 36px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.nav-name {
    font-size: 14.5px;
    font-weight: 800;
    color: #111;
    letter-spacing: -.2px;
}

.nav-tag {
    font-size: 8.5px;
    font-weight: 600;
    color: var(--g5);
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
}

.nav-link {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--g7);
    padding: 7px 12px;
    border-radius: 4px;
    transition: all var(--tr);
    white-space: nowrap;
    display: block;
}

.nav-link:hover,
.nav-link.active {
    color: #111;
    background: var(--g0);
}

.nav-link.active {
    color: var(--red);
}

.nav-cta-btn {
    font-size: 12.5px;
    font-weight: 700;
    color: #fff;
    background: var(--red);
    padding: 9px 20px;
    border-radius: 3px;
    white-space: nowrap;
    transition: background var(--tr);
}

.nav-cta-btn:hover {
    background: var(--redd);
}

.nav-chevron {
    width: 10px;
    height: 10px;
    margin-left: 3px;
    transition: transform var(--tr);
    opacity: .5;
}

.nav-dd {
    position: relative;
}

.nav-dd-btn {
    display: inline-flex;
    align-items: center;
    cursor: default;
}

.nav-dd-panel {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border: 1px solid var(--bd);
    border-top: 2px solid var(--red);
    min-width: 200px;
    box-shadow: var(--shl);
    z-index: 200;
    padding: 6px 0;
}

.nav-dd:hover .nav-dd-panel {
    display: block;
}

.nav-dd:hover .nav-chevron {
    transform: rotate(180deg);
    opacity: 1;
}

.nav-dd-panel a {
    display: block;
    padding: 9px 18px;
    font-size: 12.5px;
    color: var(--g7);
    border-left: 2px solid transparent;
    transition: all var(--tr);
}

.nav-dd-panel a:hover {
    color: var(--red);
    border-left-color: var(--red);
    background: var(--g0);
    padding-left: 22px;
}

.nav-ham {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-ham span {
    display: block;
    width: 21px;
    height: 1.5px;
    background: #111;
    transition: var(--tr);
}

.nav-ham.open span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.nav-ham.open span:nth-child(2) {
    opacity: 0;
}

.nav-ham.open span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}

.nav-mobile {
    display: none;
    flex-direction: column;
    position: fixed;
    top: var(--nh);
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--bd);
    box-shadow: var(--shl);
    z-index: 999;
}

.nav-mobile.open {
    display: flex;
}

.nav-mobile a {
    padding: 13px 36px;
    font-size: 13px;
    font-weight: 600;
    color: var(--g7);
    border-bottom: 1px solid var(--g1);
}

.nav-mobile a:hover {
    color: var(--red);
    background: var(--g0);
}

/* Page hero */
.pg-hero {
    position: relative;
    background: var(--k);
    border-bottom: 3px solid var(--red);
    padding: calc(var(--nh) + 56px) 0 56px;
}

.pg-hero-inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, .4);
    transition: color var(--tr);
}

.breadcrumb a:hover {
    color: rgba(255, 255, 255, .7);
}

.breadcrumb span {
    color: rgba(255, 255, 255, .2);
}

.pg-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -.6px;
    line-height: 1.12;
    margin-bottom: 0;
}

.pg-title em {
    font-style: italic;
    color: var(--red);
}

.pg-desc {
    font-size: 14.5px;
    color: rgba(255, 255, 255, .6);
    line-height: 1.8;
    max-width: 420px;
    align-self: flex-end;
}

/* Section */
.sec {
    padding: 80px 0;
}

.sec-grey {
    background: var(--g0);
}

.sec-dark {
    background: #111;
}

.sec-red {
    background: var(--red);
}

.eyebrow {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.eyebrow::before {
    content: '';
    display: block;
    width: 18px;
    height: 2px;
    background: var(--red);
    flex-shrink: 0;
}

.eyebrow.light {
    color: rgba(200, 16, 46, .8);
}

.eyebrow.white {
    color: rgba(255, 255, 255, .5);
}

.eyebrow.white::before {
    background: rgba(255, 255, 255, .3);
}

.sec-title {
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    font-weight: 800;
    color: #111;
    line-height: 1.15;
    letter-spacing: -.4px;
    margin-bottom: 14px;
}

.sec-title.light {
    color: #fff;
}

.sec-desc {
    font-size: 14.5px;
    color: var(--g7);
    line-height: 1.8;
    max-width: 560px;
}

/* CTA band */
.cta-band {
    background: #111;
    border-top: 3px solid var(--red);
    padding: 72px 0;
}

.cta-band-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-band-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.cta-band-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-red {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red);
    color: #fff;
    font-weight: 700;
    font-size: 12.5px;
    letter-spacing: .3px;
    padding: 12px 28px;
    border-radius: 3px;
    border: none;
    cursor: pointer;
    transition: background var(--tr);
}

.btn-red:hover {
    background: var(--redd);
    color: #fff;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #111;
    font-weight: 700;
    font-size: 12.5px;
    padding: 12px 28px;
    border-radius: 3px;
    transition: opacity var(--tr);
}

.btn-white:hover {
    opacity: .9;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: 12.5px;
    padding: 11px 24px;
    border-radius: 3px;
    border: 2px solid rgba(255, 255, 255, .3);
    transition: all var(--tr);
}

.btn-outline:hover {
    border-color: #fff;
}

.cta-phone {
    font-size: 12px;
    color: rgba(255, 255, 255, .45);
}

.cta-phone a {
    color: rgba(255, 255, 255, .6);
    font-weight: 600;
    transition: color var(--tr);
}

.cta-phone a:hover {
    color: var(--red);
}

/* Forms */
.fg {
    margin-bottom: 16px;
}

.fg label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: var(--g5);
    margin-bottom: 6px;
}

.fg input,
.fg textarea,
.fg select {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--bd);
    background: #fff;
    font-family: inherit;
    font-size: 13.5px;
    color: #111;
    border-radius: 3px;
    outline: none;
    transition: border-color var(--tr);
}

.fg input:focus,
.fg textarea:focus,
.fg select:focus {
    border-color: var(--red);
}

.fg textarea {
    height: 110px;
    resize: vertical;
}

.fg select {
    cursor: pointer;
}

.hp-trap {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    overflow: hidden;
    pointer-events: none;
}

.form-success {
    display: none;
    margin-top: 14px;
    padding: 14px 16px;
    background: #E8F5E9;
    border: 1px solid #A5D6A7;
    border-left: 3px solid #2E7D32;
    font-size: 13.5px;
    color: #1B5E20;
    border-radius: 3px;
}

/* Footer */
.site-footer {
    background: #111;
    border-top: 3px solid var(--red);
}

.footer-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 52px 36px 44px;
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr 1.3fr;
    gap: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-name {
    display: block;
    font-size: 14px;
    font-weight: 800;
    color: #fff;
}

.footer-tag {
    display: block;
    font-size: 8.5px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .3);
}

.footer-brand p {
    font-size: 12.5px;
    color: rgba(255, 255, 255, .38);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 7px;
}

.footer-social a {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .4);
    border-radius: 2px;
    transition: all var(--tr);
}

.footer-social a:hover {
    border-color: var(--red);
    color: var(--red);
}

.footer-col h5 {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 16px;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    font-size: 12.5px;
    color: rgba(255, 255, 255, .38);
    transition: color var(--tr);
}

.footer-col ul li a:hover {
    color: #fff;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fc-row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.fc-row span {
    font-size: 12.5px;
    color: rgba(255, 255, 255, .38);
    line-height: 1.55;
}

.fc-row a {
    color: rgba(255, 255, 255, .38);
    transition: color var(--tr);
}

.fc-row a:hover {
    color: var(--red);
}

.footer-bar {
    border-top: 1px solid rgba(255, 255, 255, .06);
}

.footer-bar-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 18px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-bar-inner p {
    font-size: 11px;
    color: rgba(255, 255, 255, .2);
}

.footer-bar-links {
    display: flex;
    gap: 18px;
}

.footer-bar-links a {
    font-size: 11px;
    color: rgba(255, 255, 255, .3);
    transition: color var(--tr);
}

.footer-bar-links a:hover {
    color: var(--red);
}

/* WA float */
.wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 500;
    width: 48px;
    height: 48px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(37, 211, 102, .4);
    transition: transform var(--tr);
}

.wa-float:hover {
    transform: scale(1.1);
}

/* Responsive */
@media(max-width:900px) {
    .nav-links {
        display: none;
    }

    .nav-ham {
        display: flex;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .pg-hero-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-band-inner {
        flex-direction: column;
    }

    .cta-band-actions {
        align-items: flex-start;
    }
}

@media(max-width:600px) {
    .wrap {
        padding: 0 18px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
    }

    .pg-title {
        font-size: 2rem;
    }

    .cta-band-btns {
        flex-direction: column;
    }
}

/* Rating summary */
.rating-band {
    background: #111;
    border-bottom: 3px solid var(--red);
    padding: 52px 0;
}

.rating-inner {
    display: grid;
    grid-template-columns: 200px 1fr auto;
    gap: 52px;
    align-items: center;
}

.rating-big {
    text-align: center;
}

.rating-num {
    font-size: 5rem;
    font-weight: 800;
    color: var(--red);
    line-height: 1;
    letter-spacing: -3px;
}

.rating-stars {
    font-size: 24px;
    color: var(--red);
    margin: 6px 0;
}

.rating-count {
    font-size: 11px;
    color: rgba(255, 255, 255, .4);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.rating-bars {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rb-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rb-label {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, .5);
    width: 20px;
    text-align: right;
    flex-shrink: 0;
}

.rb-track {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, .1);
    border-radius: 3px;
    overflow: hidden;
}

.rb-fill {
    height: 100%;
    background: var(--red);
    border-radius: 3px;
}

.rb-pct {
    font-size: 11px;
    color: rgba(255, 255, 255, .4);
    width: 32px;
    text-align: right;
    flex-shrink: 0;
}

.rating-attrs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rating-attr {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rating-attr-stars {
    color: var(--red);
    font-size: 14px;
}

.rating-attr-label {
    font-size: 13px;
    color: rgba(255, 255, 255, .65);
}

/* Review cards */
.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--bd);
    margin-bottom: 60px;
}

.review-card {
    background: #fff;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: box-shadow var(--tr);
}

.review-card:hover {
    box-shadow: var(--sh);
    z-index: 1;
    position: relative;
}

.rc-stars {
    color: var(--red);
    font-size: 18px;
    letter-spacing: 2px;
}

.rc-body {
    font-size: 14px;
    color: var(--g7);
    line-height: 1.85;
    font-style: italic;
    flex: 1;
}

.rc-reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--bd);
}

.rc-avatar {
    width: 40px;
    height: 40px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.rc-name {
    font-size: 14px;
    font-weight: 700;
    color: #111;
}

.rc-meta {
    font-size: 11.5px;
    color: var(--g5);
    margin-top: 2px;
}

.rc-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--red);
    margin-top: 8px;
}

.rc-badge svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
}

/* Write review */
.write-review {
    border: 1px solid var(--bd);
    border-top: 3px solid var(--red);
    padding: 48px;
}

.wr-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    margin-top: 32px;
}

/* Trust strip */
.trust-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--bd);
    border: 1px solid var(--bd);
    margin-bottom: 60px;
}

.trust-cell {
    background: var(--g0);
    padding: 28px 20px;
    text-align: center;
}

.trust-n {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--red);
    letter-spacing: -.5px;
    line-height: 1;
    display: block;
}

.trust-l {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--g5);
    margin-top: 5px;
    display: block;
}

/* Star select */
.star-row {
    display: flex;
    flex-direction: row-reverse;
    gap: 4px;
    margin-bottom: 4px;
}

.star-row input {
    display: none;
}

.star-row label {
    font-size: 28px;
    color: var(--g3);
    cursor: pointer;
    transition: color var(--tr);
}

.star-row input:checked~label,
.star-row label:hover,
.star-row label:hover~label {
    color: var(--red);
}

@media(max-width:1000px) {
    .rating-inner {
        grid-template-columns: 1fr 1fr;
    }

    .rating-attrs {
        display: none;
    }
}

@media(max-width:900px) {
    .review-grid {
        grid-template-columns: 1fr;
    }

    .wr-grid {
        grid-template-columns: 1fr;
    }

    .trust-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .rating-inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}