:root {
    --red: #cc0000;
    --red-dark: #940000;
    --black: #0a0a0a;
    --gray: #f4f4f6;
    --line: #e6e6ea;
    --white: #ffffff;
    --container: 1160px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    color: var(--black);
    background: var(--white);
}

.material-symbols-outlined {
    font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 24;
    line-height: 1;
    vertical-align: middle;
}

.icon-inline {
    font-size: 20px;
}

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

.container {
    width: min(var(--container), 92%);
    margin: 0 auto;
}

.topbar {
    position: fixed;
    background: white;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20;
    transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.topbar.scrolled {
    background: rgba(10, 10, 10, 0.92);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.nav-wrap {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--white);
    font-weight: 700;
    letter-spacing: 0.08em;
}

.brand span {
    display: none;
}

.brand img {
    width: 60px;
    height: 55px;

}

.nav-links {
    display: flex;
    gap: 24px;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    color: black;
}

.btn {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    font-weight: 700;
    border: 1px solid transparent;
    transition: 0.2s ease;
}

.btn-red {
    background: var(--red);
    color: var(--white);
    padding: 11px 20px;
}

.btn-red:hover {
    background: var(--red-dark);
}

.btn-outline {
    border-color: rgba(255, 255, 255, 0.35);
    color: var(--white);
    padding: 11px 20px;
}

.btn-white {
    background: var(--white);
    color: var(--red);
    padding: 14px 28px;
}

.btn-dark {
    background: #0b0b0d;
    color: var(--white);
    padding: 14px 32px;
}

.btn-lg {
    font-size: 16px;
    padding: 14px 28px;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background:
        linear-gradient(140deg, rgba(10, 10, 10, 0.95), rgba(10, 10, 10, 0.78)),
        url("https://images.unsplash.com/photo-1606927131353-c0ad17d60b56?w=1600&h=900&fit=crop&auto=format") center / cover no-repeat;
}

.hero-overlay {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 8px;
    background: linear-gradient(180deg, #ff3737, #8a0000);
}

.hero-grid {
    position: relative;
    z-index: 1;
    margin-top: 84px;
    padding: 44px 0;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

h1,
h2,
h3,
h4 {
    margin: 0;
    font-family: "Barlow Condensed", sans-serif;
    text-transform: uppercase;
}

h1 {
    color: var(--white);
    font-size: clamp(42px, 8vw, 88px);
    line-height: 0.95;
    margin: 12px 0 22px;
}

h2 {
    font-size: clamp(32px, 6vw, 64px);
    line-height: 0.95;
    margin-bottom: 22px;
    text-align: center;
}

.eyebrow {
    margin: 0;
    color: #ff6464;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 700;
}

.eyebrow.red {
    color: var(--red);
}

.hero-text {
    color: rgba(255, 255, 255, 0.75);
    max-width: 580px;
    line-height: 1.7;
    margin-bottom: 26px;
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-cards {
    display: grid;
    gap: 10px;
}

.mini-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 14px 16px;
    border-radius: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mini-card .material-symbols-outlined {
    font-size: 20px;
}

.stats {
    border-bottom: 1px solid var(--line);
    padding: 52px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.stats-grid article {
    border-left: 1px solid var(--line);
    padding-left: 18px;
}

.stats-grid article:first-child {
    border-left: 0;
    padding-left: 0;
}

.stats-grid h3 {
    font-size: clamp(28px, 4vw, 48px);
    color: var(--red);
    margin-bottom: 6px;
}

.stats-grid p {
    margin: 0;
    color: #5f5f68;
}

.section {
    padding: 94px 0;
}

.section .eyebrow {
    text-align: center;
}

.section.light {
    background: var(--white);
}

.section.gray {
    background: var(--gray);
}

.section.dark {
    background: var(--black);
    color: var(--white);
}

.steps-grid,
.cards-grid {
    margin-top: 24px;
    display: grid;
    gap: 16px;
}

.steps-grid {
    grid-template-columns: repeat(4, 1fr);
}

.cards-grid {
    grid-template-columns: repeat(3, 1fr);
}

.cards-grid article h4 {
    font-size: clamp(32px, 2.8vw, 44px);
    line-height: 0.9;
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: #f7e5e6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.card-icon .material-symbols-outlined {
    font-size: 31px;
    color: #2a2a2d;
}

.steps-grid article,
.cards-grid article,
.faq-item,
.spec-grid article,
.testimonials article {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 20px;
}

.steps-grid .step-number {
    position: absolute;
    right: -4px;
    top: -8px;
    display: flex;
    background: #0d0d0f;
    color: var(--white);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    font-size: 11px;
    font-weight: 700;
}

.step-icon {
    width: 70px;
    height: 70px;
    border-radius: 999px;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 24px rgba(204, 0, 0, 0.22);
    position: relative;
    margin: 0 auto 18px;
}

.step-icon .material-symbols-outlined {
    color: #fff;
    font-size: 34px;
}

.steps-grid {
    position: relative;
    margin-top: 40px;
}

.steps-grid::before {
    content: "";
    position: absolute;
    left: 4%;
    right: 4%;
    top: 35px;
    border-top: 1px solid #efdadb;
}

.steps-grid article {
    text-align: center;
    border: 0;
    background: transparent;
    position: relative;
    padding-top: 0;
}

.steps-grid article h4 {
    font-size: clamp(30px, 2.3vw, 38px);
    line-height: 0.9;
    margin-bottom: 12px;
}

.steps-grid p,
.cards-grid p,
.testimonials p,
.muted {
    margin: 8px 0 0;
    line-height: 1.6;
    color: #5b5b64;
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    align-items: center;
}

.moto-carousel {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
}

.moto-viewport {
    min-width: 0;
}

.moto-slide {
    display: none;
}

.moto-slide.active {
    display: block;
}

.moto-arrow {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.moto-arrow:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.36);
}

.moto-arrow .material-symbols-outlined {
    font-size: 28px;
}

.moto-carousel.single .moto-arrow {
    opacity: 0.35;
    cursor: not-allowed;
}

.split h2,
.split .eyebrow,
.split .muted {
    text-align: left;
}

.bike-media-wrap {
    position: relative;
}

.split img {
    border-radius: 24px;
    min-height: 320px;
    object-fit: cover;
}

.price-badge {
    position: absolute;
    left: 28px;
    bottom: 24px;
    border-radius: 20px;
    padding: 14px 24px;
    background: rgba(44, 44, 46, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.price-badge small {
    display: block;
    color: rgba(255, 255, 255, 0.65);
    font-size: 15px;
    margin-bottom: 6px;
}

.price-badge strong {
    color: var(--red);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 50px;
    line-height: 0.9;
}

.price-badge strong span {
    color: #c8c8c8;
    font-size: 34px;
}

.honda-cta {
    margin-top: 26px;
}

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

.spec-grid article {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
}

.spec-grid small {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 4px;
}

.spec-grid strong {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 26px;
}

.narrow {
    width: min(920px, 92%);
}

.compare-table {
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
}

.compare-table .row {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
}

.compare-table .row span {
    padding: 14px;
    border-top: 1px solid var(--line);
}

.compare-table .header {
    background: var(--black);
}

.compare-table .header span {
    color: var(--white);
    border-top: 0;
    font-weight: 700;
    text-align: center;
}

.compare-table .header span:first-child {
    text-align: left;
}

.compare-table .header span:last-child {
    background: #2a0d0e;
}

.compare-table .header small {
    display: block;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 11px;
    margin-bottom: 7px;
}

.compare-table .header strong {
    font-family: "Barlow Condensed", sans-serif;
    text-transform: uppercase;
    font-size: 40px;
    line-height: 1;
}

.compare-table .header span:nth-child(2) strong {
    color: #8c97ad;
}

.compare-table .header span:last-child small {
    color: #c44646;
}

.compare-table .row span:nth-child(2),
.compare-table .row span:nth-child(3) {
    text-align: center;
}

.status-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.status-icon.fail {
    color: #7c8699;
}

.status-icon.ok {
    color: #20b85e;
}

.compare-table .row:not(.header) span:last-child {
    color: #0e8c2e;
    font-weight: 700;
    background: #f3faf4;
}

.compare-table .row:not(.header) span:nth-child(2) {
    color: #7c8699;
}

.compare-table .header span:last-child {
    background: #2a0d0e;
    color: #ffffff;
}

.compare-table .header .status-icon {
    color: inherit;
}

.testimonials small {
    color: #767680;
}

.testimonials article {
    padding: 34px;
}

.testimonials p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 22px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
}

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

.person-row img {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    object-fit: cover;
}

.person-row strong {
    display: block;
    font-size: 31px;
    line-height: 0.92;
    text-transform: none;
}

.person-row small {
    display: block;
    margin-top: 2px;
}

.stars {
    color: #f8b400;
    font-size: 21px;
    letter-spacing: 0.14em;
    margin-bottom: 10px;
}

.faq-list {
    display: grid;
    gap: 12px;
}

#faq {
    background: #f4f4f8;
}

#faq .narrow {
    max-width: 780px;
}

.faq-btn {
    border: 0;
    width: 100%;
    background: transparent;
    text-align: left;
    cursor: pointer;
    font: 600 16px/1.3 "Inter", sans-serif;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.faq-toggle {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: #f2f3f7;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    color: #202226;
    line-height: 1;
}

.faq-item {
    padding: 22px 24px;
}

.faq-item.active .faq-toggle {
    background: #cc0000;
    color: #fff;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
}

.faq-content p {
    margin: 12px 0 0;
    color: #5d5d66;
}

.faq-item.active .faq-content {
    max-height: 160px;
}

.final-cta {
    background: #cc0000;
    color: var(--white);
    text-align: center;
    padding: 116px 0 104px;
    position: relative;
    overflow: hidden;
}

.final-cta .narrow {
    position: relative;
    z-index: 2;
    width: min(980px, 92%);
}

.final-cta h2 {
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(62px, 7vw, 110px);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: 0.01em;
    margin-bottom: 22px;
}

.final-cta p {
    margin: 0 auto 30px;
    max-width: 740px;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(17px, 1.6vw, 21px);
    line-height: 1.45;
}

.cta-final-btn {
    min-width: 640px;
    width: min(640px, 100%);
    min-height: 72px;
    border-radius: 999px;
    color: #cb0000;
    font-size: clamp(20px, 2.1vw, 24px);
    font-weight: 800;
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.18);
}

.cta-circle {
    position: absolute;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}

.cta-circle-a {
    width: 460px;
    height: 460px;
    top: -170px;
    right: -170px;
}

.cta-circle-b {
    width: 300px;
    height: 300px;
    left: -130px;
    bottom: -130px;
}

.section-subtitle {
    margin: -8px auto 0;
    max-width: 640px;
    color: #8f8f97;
    font-size: clamp(16px, 1.9vw, 20px);
    line-height: 1.3;
    text-align: center;
}

.section-cta-center {
    text-align: center;
    margin-top: 36px;
}

.gallery-section {
    padding-bottom: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 28px;
}

.gallery-item {
    margin: 0;
    border-radius: 20px;
    overflow: hidden;
    height: 250px;
}

.gallery-item.tall {
    height: 420px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer {
    background: var(--black);
    color: var(--white);
    padding: 84px 0 22px;
    border-top: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.7fr 1fr;
    gap: 72px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer h3,
.footer h4 {
    margin-bottom: 14px;
}

.footer h3 {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 34px;
    line-height: 0.95;
    letter-spacing: 0.02em;
}

.footer h4 {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 20px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.14em;
}

.footer p,
.footer a {
    color: rgba(255, 255, 255, 0.68);
    text-decoration: none;
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
}

.footer-brand p {
    max-width: 370px;
    margin-top: 14px;
}

.footer-logo-row {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-logo-row img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.brand-sub {
    margin: 2px 0 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.38);
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.footer-wa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #09b44d;
    color: #fff;
    border-radius: 999px;
    padding: 12px 24px;
    margin-top: 24px;
    font-weight: 700;
}

.footer-links,
.footer-contact {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 11px;
}

.footer-contact li,
.footer-contact a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-socials {
    margin-top: 20px;
    display: flex;
    gap: 20px;
}

.copy-row {
    width: min(var(--container), 92%);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding-top: 24px;
}

.copy {
    margin: 0;
    width: auto;
    color: rgba(255, 255, 255, 0.45);
    font-size: 14px;
}

.floating-wa {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 30;
    background: #11a63b;
    color: var(--white);
    border-radius: 999px;
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(9, 70, 25, 0.4);
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: 0.2s ease;
}

.floating-wa.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.floating-wa .material-symbols-outlined {
    font-size: 30px;
}

@media (max-width: 980px) {
    .nav-links {
        display: none;
    }

    .hero-grid,
    .split {
        grid-template-columns: 1fr;
    }

    .moto-carousel {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .moto-arrow {
        justify-self: center;
    }

    .moto-arrow.prev {
        order: 2;
    }

    .moto-viewport {
        order: 1;
    }

    .moto-arrow.next {
        order: 3;
    }

    .hero-cards {
        grid-template-columns: 1fr 1fr;
    }

    .split h2,
    .split .eyebrow,
    .split .muted {
        text-align: center;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-brand {
        grid-column: 1 / -1;
    }

    .cta-final-btn {
        min-width: 0;
        width: 100%;
        min-height: 64px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .stats-grid article:nth-child(odd) {
        border-left: 0;
        padding-left: 0;
    }

    .stats-grid article:nth-child(3) {
        border-left: 0;
        padding-left: 0;
    }
}

@media (max-width: 640px) {
    .topbar .btn-red {
        display: none;
    }

    .section,
    .final-cta {
        padding: 72px 0;
    }

    .final-cta h2 {
        font-size: clamp(46px, 12vw, 72px);
    }

    .final-cta p {
        font-size: 16px;
    }

    .cards-grid,
    .steps-grid,
    .spec-grid,
    .footer-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .hero-cards {
        grid-template-columns: 1fr;
    }

    .cards-grid article h4,
    .steps-grid article h4,
    .person-row strong,
    .compare-table .header strong {
        font-size: 28px;
    }

    .testimonials article {
        padding: 24px;
    }

    .testimonials p {
        font-size: 15px;
    }

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

    .cta-final-btn {
        font-size: 18px;
        min-height: 58px;
    }

    .faq-item {
        padding: 18px;
    }

    .faq-btn {
        font-size: 15px;
    }

    .gallery-item,
    .gallery-item.tall {
        height: 220px;
    }

    .price-badge {
        left: 14px;
        right: 14px;
        bottom: 14px;
    }

    .price-badge strong {
        font-size: 42px;
    }

    .compare-table .row {
        grid-template-columns: 1fr;
    }

    .compare-table .row span:nth-child(2),
    .compare-table .row span:nth-child(3) {
        text-align: left;
    }

    .status-icon {
        justify-content: flex-start;
    }
}