:root {
    --red: #E60012;
    --red-dark: #B80F1D;
    --green: #148F5A;
    --ink: #1A1A1A;
    --muted: #6B625F;
    --line: #F0E8E6;
    --paper: #FAFAF9;
    --soft: #FFF5F2;
    --white: #FFFFFF;
    --shadow: 0 18px 44px rgba(31, 24, 21, 0.1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
}

a {
    color: inherit;
}

.nav {
    border-bottom: 1px solid rgba(240, 232, 230, 0.9);
    backdrop-filter: blur(14px);
    transition: box-shadow 0.25s ease, padding 0.25s ease;
}

.nav.scrolled {
    box-shadow: 0 12px 28px rgba(31, 24, 21, 0.08);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-inner,
.brands-wrap,
.why-wrap,
.pricing-wrap,
.form-wrap,
.footer-wrap {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.85fr);
    gap: clamp(30px, 6vw, 70px);
    align-items: center;
}

.hero-tag,
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    margin-bottom: 18px;
    border: 1px solid rgba(230, 0, 18, 0.16);
    border-radius: 999px;
    padding: 8px 13px;
    background: rgba(230, 0, 18, 0.08);
    color: var(--red-dark);
    font-size: 0.78rem;
    font-weight: 800;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--green);
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-top: 0;
}

h1 {
    margin-bottom: 20px;
    font-size: clamp(2.45rem, 5vw, 5rem);
    line-height: 1;
    letter-spacing: 0;
}

h1 em {
    color: var(--red);
    font-style: normal;
}

.hero-sub,
.section-desc {
    color: var(--muted);
}

.hero-sub {
    max-width: 700px;
    font-size: clamp(1rem, 1.7vw, 1.16rem);
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 30px 0;
}

.btn-fill,
.btn-outline,
.btn-floating {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border-radius: 999px;
    padding: 13px 22px;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-fill,
.btn-floating {
    border: 1px solid var(--red);
    background: var(--red);
    color: #fff;
    box-shadow: 0 16px 32px rgba(230, 0, 18, 0.2);
}

.btn-outline {
    border: 1.5px solid rgba(230, 0, 18, 0.26);
    background: #fff;
    color: var(--red-dark);
}

.btn-fill:hover,
.btn-outline:hover,
.btn-floating:hover {
    transform: translateY(-2px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 620px;
}

.stat {
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.72);
}

.stat-num {
    color: var(--red);
    font-size: 1.45rem;
    font-weight: 800;
}

.stat-lbl {
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 700;
}

.hero-card,
.brand-card,
.why-item,
.price-card {
    border: 1.5px solid var(--line);
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.hero-card {
    padding: clamp(24px, 4vw, 36px);
}

.hero-card-tag,
.brand-badge,
.best-badge,
.price-level {
    color: var(--red-dark);
    font-size: 0.78rem;
    font-weight: 800;
}

.hero-card h3 {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    line-height: 1.15;
}

.pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 20px 0;
}

.pill {
    border-radius: 999px;
    padding: 8px 11px;
    background: #FFF1F0;
    color: var(--red-dark);
    font-size: 0.82rem;
    font-weight: 800;
}

.card-divider,
.price-divider {
    height: 1px;
    margin: 20px 0;
    background: var(--line);
}

.card-row {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 9px 0;
}

.label {
    color: var(--muted);
}

.value {
    font-weight: 800;
}

.value.green {
    color: var(--green);
}

.section {
    padding: 82px 0;
}

.centered {
    max-width: 820px;
    margin: 0 auto 36px;
    text-align: center;
}

.section-heading {
    margin-bottom: 14px;
    font-size: clamp(2rem, 4vw, 3.45rem);
    line-height: 1.1;
}

.brands-section,
.pricing-section,
.final-cta-section {
    background: #fff;
}

.brands-grid,
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.brand-card {
    position: relative;
    padding: 24px;
}

.brand-num {
    color: rgba(230, 0, 18, 0.22);
    font-size: 0.86rem;
    font-weight: 800;
}

.brand-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 96px;
    min-height: 96px;
    overflow: hidden;
}

.brand-icon-wrap picture {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.brand-logo {
    display: block !important;
    width: 100% !important;
    max-width: 170px !important;
    height: 58px !important;
    object-fit: contain !important;
}

.brand-logo-nbrs {
    width: 96px !important;
    height: 76px !important;
}

.brand-card h4 {
    margin-bottom: 8px;
    font-size: 1.25rem;
}

.brand-card p,
.why-text p,
.why-item p,
.price-desc,
.price-perks,
.footer p {
    color: var(--muted);
}

.brands-quote {
    max-width: 850px;
    margin: 28px auto 0;
    border-left: 4px solid var(--red);
    border-radius: 0 12px 12px 0;
    padding: 18px 22px;
    background: var(--soft);
}

.brands-table-wrapper {
    overflow: hidden;
}

.why-section {
    background: #FFFBFB;
}

.why-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 34px;
    align-items: start;
}

.why-list {
    display: grid;
    gap: 14px;
}

.why-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    padding: 18px;
}

.why-ico {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 12px;
    background: #FFF1F0;
}

.pricing-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    max-width: 1080px;
    gap: 22px;
    align-items: stretch;
    margin: 0 auto;
}

.price-card {
    position: relative;
    overflow: hidden;
    padding: clamp(28px, 4vw, 42px);
}

.price-card.best {
    border-color: rgba(230, 0, 18, 0.24);
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(145deg, rgba(230, 0, 18, 0.55), rgba(255, 207, 194, 0.35)) border-box;
}

.price-card.best::before {
    content: '';
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: linear-gradient(90deg, var(--red), #ff9b85);
}

.pricing-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1.5px solid var(--line);
    border-radius: 18px;
    padding: clamp(28px, 4vw, 42px);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 250, 248, 0.98) 100%);
    box-shadow: var(--shadow);
}

.pricing-side h3 {
    max-width: 620px;
    margin-bottom: 14px;
    font-size: clamp(1.5rem, 2.3vw, 2.1rem);
    line-height: 1.22;
}

.pricing-side p {
    color: var(--muted);
    max-width: 650px;
    font-size: 1rem;
    line-height: 1.72;
}

.pricing-side-list {
    display: grid;
    gap: 10px;
    margin: 24px 0 28px;
}

.pricing-side-list div {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: start;
    border: 1px solid rgba(240, 232, 230, 0.9);
    border-radius: 12px;
    padding: 14px;
    background: #fff;
}

.pricing-side-list strong {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 999px;
    background: var(--red);
    color: #fff;
    font-size: 0.9rem;
    line-height: 1;
}

.pricing-side-list span {
    color: var(--muted);
    line-height: 1.55;
}

.price-amount {
    margin: 22px 0 18px;
    color: var(--muted);
}

.price-amount strong {
    display: block;
    color: var(--ink);
    margin-top: 4px;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.05;
}

.price-perks {
    display: grid;
    gap: 12px;
    margin: 0 0 28px;
    padding-left: 20px;
}

.price-perks li {
    padding-left: 3px;
    line-height: 1.55;
}

.price-card .btn-fill,
.pricing-side .btn-outline {
    width: fit-content;
}


.footer {
    background: #161212;
    color: #fff;
    padding: 58px 0 26px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 0.8fr 1fr;
    gap: 28px;
}

.footer img {
    max-height: 42px;
    width: auto;
    margin-bottom: 16px;
}

.footer h6 {
    margin: 0 0 12px;
    font-size: 0.82rem;
    text-transform: uppercase;
}

.footer-col {
    display: grid;
    align-content: start;
    gap: 8px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.62);
    text-decoration: none;
}

.footer-disclaimer {
    margin-top: 34px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 22px;
}

.footer-bottom {
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.46);
}

.floating-cta {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 40;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.floating-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 900px) {
    .hero {
        padding-top: 104px;
    }

    .hero-inner,
    .why-grid,
    .pricing-grid,
    .footer-top {
        grid-template-columns: 1fr;
    }

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

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

    .floating-cta {
        right: 12px;
        left: 12px;
    }

    .btn-floating {
        width: 100%;
    }
}

@media (max-width: 560px) {
    .hero-inner,
    .brands-wrap,
    .why-wrap,
    .pricing-wrap,
    .form-wrap,
    .footer-wrap {
        width: min(100% - 28px, 1180px);
    }

    .nav {
        padding: 14px 16px;
    }

    .nav-cta {
        padding: 10px 14px;
    }

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

    .brand-logo {
        max-width: 154px !important;
        height: 54px !important;
    }

    .brand-logo-nbrs {
        width: 86px !important;
        height: 66px !important;
    }

    .form-card {
        padding: 32px 18px !important;
    }
}
