.hero {
    position: relative;
    min-height: 580px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--color-brand);
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-color: rgba(13, 71, 161, 0.72);
}

.hero__content {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    padding: 80px 20px;
}

.hero__eyebrow {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.75);
    margin: 0 0 12px;
    line-height: 1.6;
}

.hero__title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 20px;
    line-height: 1.6;
}

.hero__subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    color: rgba(255,255,255,0.88);
    margin: 0 0 36px;
    line-height: 1.6;
}

.hero__content .btn-cta {
    font-size: 16px;
    padding: 14px 40px;
}

.stats-strip {
    background-color: var(--color-brand);
    border-top: 1px solid rgba(255,255,255,0.12);
}

.stats-strip__inner {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 28px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 64px;
    flex-wrap: wrap;
}

.stats-strip__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.stats-strip__num {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.6;
}

.stats-strip__label {
    font-size: 13px;
    font-weight: 400;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
    text-align: center;
}

.home-layout {
    background-color: #f7f9ff;
    padding: 64px 0;
}

.home-layout__inner {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: start;
}

.section-header {
    margin-bottom: 32px;
}

.section-header__title {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--color-brand);
    margin: 0 0 6px;
    line-height: 1.6;
}

.section-header__sub {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    align-items: start;
}

.masonry-card {
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    overflow: hidden;
}

.masonry-card--featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 0;
}

.masonry-card--featured .masonry-card__img-wrap {
    max-height: 340px;
}

.masonry-card--featured .masonry-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.masonry-card--featured .masonry-card__body {
    padding: 36px 32px;
}

.masonry-card__img-wrap {
    overflow: hidden;
    background-color: #e8edf8;
}

.masonry-card__img-wrap img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.masonry-card:hover .masonry-card__img-wrap img {
    transform: translateY(-3px);
}

.masonry-card__body {
    padding: 20px;
}

.masonry-card__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.masonry-card__cat {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-brand);
    line-height: 1.6;
}

.masonry-card__time {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.6;
}

.masonry-card__title {
    margin: 0 0 10px;
    line-height: 1.6;
}

.masonry-card__title a {
    color: #111;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1.6;
    transition: color 0.2s;
}

.masonry-card__title a:hover {
    color: var(--color-brand);
}

.masonry-card__title--lg a {
    font-size: 1.4rem;
}

.masonry-card__excerpt {
    font-size: 14px;
    color: #555;
    margin: 0 0 14px;
    line-height: 1.6;
}

.masonry-card__date {
    font-size: 13px;
    color: #999;
    line-height: 1.6;
}

.home-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-block {
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    padding: 24px;
}

.sidebar-block--highlight {
    border-color: var(--color-brand);
    border-width: 2px;
}

.sidebar-block--newsletter {
    background-color: var(--color-brand);
    border-color: var(--color-brand);
}

.sidebar-block--newsletter .sidebar-block__title {
    color: #fff;
}

.sidebar-block--newsletter .sidebar-block__intro {
    color: rgba(255,255,255,0.8);
}

.sidebar-block__title {
    display: block;
    font-weight: 700;
    font-size: 15px;
    color: var(--color-brand);
    margin-bottom: 16px;
    line-height: 1.6;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.sidebar-block__intro {
    font-size: 14px;
    color: #555;
    margin: 0 0 14px;
    line-height: 1.6;
}

.cat-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cat-list__item {
    border-bottom: 1px solid #eee;
}

.cat-list__item:last-child {
    border-bottom: none;
}

.cat-list__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    line-height: 1.6;
    transition: color 0.2s;
}

.cat-list__link:hover {
    color: var(--color-brand);
    text-decoration: none;
}

.cat-list__count {
    font-size: 12px;
    color: #999;
    background-color: #f0f0f0;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 400;
    line-height: 1.6;
}

.deal-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.deal-card img {
    border-radius: 6px;
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.deal-card__name {
    font-weight: 700;
    color: #111;
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

.deal-card__desc {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.deal-card__price {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.deal-card__new {
    font-size: 1.3rem;
    font-weight: 700;
    color: #111;
    line-height: 1.6;
}

.deal-card__old {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
    line-height: 1.6;
}

.compare-table {
    font-size: 13px;
}

.compare-table th,
.compare-table td {
    padding: 8px 10px;
    font-size: 13px;
}

.sidebar-link {
    display: inline-block;
    margin-top: 12px;
    font-size: 13px;
    font-weight: 700;
    color: var(--color-brand);
    text-decoration: none;
    line-height: 1.6;
}

.sidebar-link:hover {
    text-decoration: underline;
}

.nl-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nl-form__label {
    font-size: 13px;
    font-weight: 400;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
}

.nl-form__input {
    padding: 11px 14px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 6px;
    background-color: rgba(255,255,255,0.12);
    color: #fff;
    font-size: 16px;
    line-height: 1.6;
    width: 100%;
    font-family: var(--font-main);
    transition: border-color 0.2s;
}

.nl-form__input::placeholder {
    color: rgba(255,255,255,0.45);
}

.nl-form__input:focus {
    outline: none;
    border-color: rgba(255,255,255,0.7);
    background-color: rgba(255,255,255,0.18);
}

.finder-section {
    background-color: #fff;
    padding: 72px 0;
    border-top: 1px solid #e8edf8;
    border-bottom: 1px solid #e8edf8;
}

.finder-section__inner {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.finder-section__title {
    font-size: 1.7rem;
    font-weight: 700;
    color: #111;
    margin: 0 0 10px;
    line-height: 1.6;
}

.finder-section__sub {
    font-size: 15px;
    color: var(--text-muted);
    margin: 0 0 40px;
    line-height: 1.6;
}

.finder-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.finder-card {
    background-color: #f7f9ff;
    border: 1px solid #dce6f7;
    border-radius: 8px;
    padding: 32px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.finder-card__icon {
    color: var(--color-brand);
    display: flex;
    align-items: center;
    justify-content: center;
}

.finder-card__q {
    font-size: 15px;
    font-weight: 700;
    color: #222;
    margin: 0;
    line-height: 1.6;
}

.finder-card .btn-cta {
    font-size: 14px;
    padding: 10px 22px;
}

.about-strip {
    background-color: var(--color-brand);
    padding: 72px 0;
}

.about-strip__inner {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 56px;
}

.about-strip__img img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255,255,255,0.25);
    flex-shrink: 0;
}

.about-strip__text {
    flex: 1;
}

.about-strip__title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px;
    line-height: 1.6;
}

.about-strip__text p {
    color: rgba(255,255,255,0.85);
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 14px;
}

.about-strip__text .btn-cta {
    margin-top: 8px;
}

@media (max-width: 1024px) {
    .home-layout__inner {
        grid-template-columns: 1fr;
    }

    .home-sidebar {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 440px;
    }

    .hero__title {
        font-size: 1.8rem;
    }

    .hero__content {
        padding: 60px 16px;
    }

    .stats-strip__inner {
        gap: 32px;
        padding: 20px 16px;
    }

    .stats-strip__num {
        font-size: 1.5rem;
    }

    .masonry-card--featured {
        grid-template-columns: 1fr;
    }

    .masonry-card--featured .masonry-card__img-wrap {
        max-height: 220px;
    }

    .masonry-card--featured .masonry-card__body {
        padding: 20px;
    }

    .masonry-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .home-layout {
        padding: 40px 0;
    }

    .home-layout__inner {
        gap: 32px;
        width: 100%;
        padding: 0 16px;
    }

    .home-sidebar {
        grid-template-columns: 1fr;
    }

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

    .about-strip__inner {
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }

    .about-strip__img img {
        width: 140px;
        height: 140px;
    }

    .finder-section {
        padding: 48px 0;
    }

    .about-strip {
        padding: 48px 0;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 1.5rem;
    }

    .hero__subtitle {
        font-size: 1rem;
    }

    .stats-strip__inner {
        gap: 20px;
    }

    .stats-strip__item {
        min-width: 80px;
    }

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

    .section-header__title {
        font-size: 1.4rem;
    }
}