:root {
    --font-main: "Jost", sans-serif;
    --color-gray: #E2E2E2;
    --color-yellow: #FFC116;
    --color-text: #343434;
    --color-text-soft: #5c5c5c;
    --color-dark: #20232B;
    --container: 1120px;
    --section-padding: clamp(56px, 8vw, 96px);
    --radius-lg: 32px;
    --radius-md: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-main);
    color: var(--color-text);
    background: #ffffff;
}

body,
button,
input,
textarea {
    font-family: var(--font-main);
}

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

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(100% - 40px, var(--container));
    margin-inline: auto;
}

@media (max-width: 560px) {
    .container {
        width: min(100% - 32px, var(--container));
    }
}

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

.section-yellow {
    background: var(--color-yellow);
}


/* ── Header ── */

.site-header {
    background: var(--color-gray);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.header-inner {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 32px;
}

@media (max-width: 900px) {
    .header-inner {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding-block: 18px;
        gap: 10px;
    }
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: clamp(24px, 2.3vw, 34px);
    font-weight: 800;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.logo-icon {
    width: 52px;
    height: 52px;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    background: var(--color-yellow);
    color: #2f2f2f;
    font-size: 3.3px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.header-links {
    max-width: 420px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 4px 6px;
    text-align: left;
    color: var(--color-text-soft);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.35;
}

@media (max-width: 900px) {
    .header-links {
        justify-content: flex-start;
        text-align: left;
        font-size: 13px;
    }
}

.header-links a {
    color: #3157c8;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}


/* ── Hero ── */

.hero {
    position: relative;
    overflow: hidden;
    padding: clamp(38px, 5vw, 72px) 0 var(--section-padding);
}

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

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
    align-items: center;
    gap: clamp(28px, 5vw, 80px);
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

.hero-copy {
    position: relative;
    z-index: 2;
}

.hero-kicker,
.hero h1 {
    margin: 0;
    color: rgba(176, 176, 176, 0.88);
    font-weight: 900;
    letter-spacing: 0.015em;
    line-height: 0.82;
}

.hero-kicker {
    font-size: clamp(56px, 8.8vw, 122px);
}

@media (max-width: 560px) {
    .hero-kicker {
        font-size: clamp(28px, 8.5vw, 56px);
        line-height: 0.9;
    }
}

.hero h1 {
    margin-top: -4px;
    font-size: clamp(68px, 10.6vw, 148px);
}

@media (max-width: 560px) {
    .hero h1 {
        font-size: clamp(34px, 10.5vw, 68px);
        line-height: 0.88;
    }
}

.hero-text {
    max-width: 540px;
    margin: 28px 0 0;
    font-size: clamp(10px, 2.2vw, 30px);
    font-weight: 500;
    line-height: 1.08;
    color: #4C4C4C;
}

@media (max-width: 560px) {
    .hero-text {
        font-size: clamp(14px, 3.8vw, 18px);
        line-height: 1.5;
        margin-top: 14px;
        max-width: 100%;
    }
}

.hero-visual {
    position: relative;
    min-height: clamp(320px, 34vw, 952px);
    display: grid;
    place-items: center;
    overflow: visible;
}

@media (max-width: 900px) {
    .hero-visual {
        min-height: 260px;
    }
}

@media (max-width: 560px) {
    .hero-visual {
        min-height: 180px;
    }
}

.hero-visual img {
    position: relative;
    z-index: 2;
    width: min(100%, 6222px);
    max-width: 6222px;
    height: auto;
    max-height: 1904px;
    object-fit: contain;
    filter: drop-shadow(0 18px 18px rgba(0, 0, 0, 0.08));
    transform: scale(1.8) translateX(18%);
    transform-origin: center;
}

@media (max-width: 900px) {
    .hero-visual img {
        width: min(86%, 380px);
        transform: scale(1.35) translateX(12%);
    }
}

@media (max-width: 560px) {
    .hero-visual img {
        width: min(92%, 360px);
        transform: scale(1.1) translateX(6%);
    }
}

.decor {
    position: absolute;
    display: block;
    border-radius: 999px;
    background: rgba(255, 235, 208, 0.5);
    border: 4px solid rgba(232, 196, 163, 0.42);
}

.decor-one {
    width: 132px;
    height: 76px;
    top: 0;
    right: 19%;
}

@media (max-width: 560px) {
    .decor-one {
        width: 80px;
        height: 46px;
        right: 48%;
    }
}

.decor-two {
    width: 118px;
    height: 70px;
    top: 28%;
    right: 1%;
}

@media (max-width: 560px) {
    .decor-two {
        width: 72px;
        height: 44px;
    }
}

.decor-three {
    width: 64px;
    height: 54px;
    right: 12%;
    bottom: 24%;
}

@media (max-width: 560px) {
    .decor-three {
        width: 44px;
        height: 36px;
    }
}


/* ── Benefits ── */

.benefit-row {
    padding: clamp(44px, 6.2vw, 78px) 0;
}

@media (max-width: 560px) {
    .benefit-row {
        padding: 36px 0;
    }
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: clamp(36px, 7vw, 100px);
}

@media (max-width: 900px) {
    .benefit-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .benefit-grid {
        gap: 20px;
    }
}

.benefit-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-image img {
    width: min(100%, 610px);
    aspect-ratio: 1;
    object-fit: contain;
    filter: drop-shadow(0 18px 14px rgba(0, 0, 0, 0.08));
}

@media (max-width: 560px) {
    .benefit-image img {
        width: min(85%, 300px);
    }
}

.image-right .benefit-image {
}

@media (max-width: 900px) {
    .image-right .benefit-image {
        order: -1;
    }
}

.benefit-content {
    max-width: 460px;
}

@media (max-width: 900px) {
    .benefit-content {
        max-width: 100%;
        justify-self: stretch;
        text-align: left;
    }
}

.image-left .benefit-content {
    justify-self: start;
}

@media (max-width: 900px) {
    .image-left .benefit-content {
        justify-self: stretch;
    }
}

.image-right .benefit-content {
    justify-self: end;
}

@media (max-width: 900px) {
    .image-right .benefit-content {
        justify-self: stretch;
    }
}

.benefit-content h2 {
    margin: 0 0 106px;
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.025em;
}

@media (max-width: 900px) {
    .benefit-content h2 {
        margin-bottom: 20px;
    }
}

@media (max-width: 560px) {
    .benefit-content h2 {
        margin-bottom: 14px;
        font-size: clamp(20px, 5.5vw, 26px);
    }
}

.benefit-content p {
    margin: 0 0 30px;
    color: #3f3f3f;
    font-size: clamp(18px, 2vw, 25px);
    font-weight: 300;
    line-height: 1.16;
}

@media (max-width: 900px) {
    .benefit-content p {
        line-height: 1.5;
    }
}

@media (max-width: 560px) {
    .benefit-content p {
        font-size: clamp(14px, 3.8vw, 17px);
        line-height: 1.55;
        margin-bottom: 10px;
    }
}

.benefit-content p + p {
    margin-top: 22px;
}


/* ── Offers ── */

.offers-section {
    padding: 60px 0 90px;
    background: #fff;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 80px;
}

@media (max-width: 1200px) {
    .offers-grid {
        gap: 30px 40px;
    }
}

@media (max-width: 1024px) {
    .offers-grid {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: auto;
        max-width: 520px;
        gap: 42px;
    }
}

@media (max-width: 560px) {
    .offers-grid {
        gap: 20px;
    }
}

.offer-item {
    max-width: 520px;
}

@media (max-width: 1024px) {
    .offer-item {
        width: 100%;
    }
}

.offer-top {
    height: 44px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 12px;
}

@media (max-width: 560px) {
    .offer-top {
        min-height: 52px;
        margin-bottom: 10px;
    }
}

.offer-logo {
    width: auto;
    max-width: 240px;
    max-height: 44px;
    object-fit: contain;
}

@media (max-width: 560px) {
    .offer-logo {
        height: 30px;
        max-width: 160px;
        max-height: 42px;
    }
}

.likes {
    min-width: 84px;
    height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    background: #2d2d2d;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 18px;
    font-weight: 600;
    flex-shrink: 0;
    border: none;
    cursor: pointer;
    transition: background 0.15s;
}

@media (max-width: 560px) {
    .likes {
        min-width: 64px;
        height: 34px;
        padding: 0 10px;
        font-size: 13px;
    }
}

.likes--active {
    color: #FFC116;
}

.offer-card {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-color: #adadad;
    padding: 20px;
    display: flex;
    flex-direction: column;
    /*aspect-ratio: 475 / 194;*/
}

@media (max-width: 560px) {
    .offer-card {
        min-height: auto;
        border-radius: 20px;
        gap: 8px;
    }
}

.offer-card-top {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.offer-badge {
    --badge-width: 85px;

    width: var(--badge-width);
    height: var(--badge-width);
    max-width: var(--badge-width);
    max-height: var(--badge-width);
    object-fit: contain;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .offer-badge {
        --badge-width: 70px;
    }
}

@media (max-width: 560px) {
    .offer-badge {
        --badge-width: 45px;
    }
}

.offer-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
    flex-shrink: 1;
    align-items: flex-start;
}

.offer-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.5);
    color: white;
    font-size: 20px;
    line-height: 1;
    padding: 8px 17px;
    border-radius: 100px;
    margin: 0;
}

@media (max-width: 1024px) {
    .offer-info-item {
        padding: 5px 15px;
        font-size: 16px;
    }
}

@media (max-width: 540px) {
    .offer-info-item {
        padding: 5px 15px;
        font-size: 14px;
    }
}

.offer-info-item svg { width: 26px; }

@media (max-width: 540px) {
    .offer-info-item svg { width: 16px; }
}

.offer-percent {
    background: #FFC116;
    display: flex;
    align-items: center;
    gap: 5px;
    color: #434343;
}

.offer-link {
    width: 100%;
    border-radius: 999px;
    background: #FFC116;
    color: #434343;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-top: 15px;
    padding: 8px;
}

.more-offers {
    width: 100%;
    height: 92px;
    margin-top: 70px;
    border-radius: 999px;
    background: #FFC116;
    color: #434343;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 5px;
}

@media (max-width: 1024px) {
    .more-offers {
        height: 72px;
        font-size: 28px;
    }
}

@media (max-width: 560px) {
    .more-offers {
        height: 58px;
        margin-top: 40px;
        font-size: 20px;
    }
}


/* ── Footer ── */

.site-footer {
    padding: 34px 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: minmax(210px, 1fr) auto minmax(150px, 1fr);
    align-items: center;
    gap: 28px;
}

@media (max-width: 900px) {
    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.copyright p {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
}

.footer-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

@media (max-width: 560px) {
    .footer-nav {
        flex-direction: column;
        gap: 10px;
    }
}

.footer-nav a {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    border-radius: 10px;
    background: #ffffff;
    color: #333333;
    font-size: 13px;
    font-weight: 600;
}

.store-link {
    justify-self: end;
    width: 150px;
}

@media (max-width: 900px) {
    .store-link {
        justify-self: center;
    }
}


/* ── Policy ── */

.policy-section {
    padding: 70px 0 90px;
    background: #fff;
}

.policy-content {
    max-width: 900px;
}

.policy-content h2 {
    margin: 0 0 24px;
    font-size: 42px;
    font-weight: 800;
}

.policy-content h3 {
    margin: 42px 0 16px;
    font-size: 28px;
    font-weight: 800;
}

.policy-content h4 {
    margin: 28px 0 12px;
    font-size: 22px;
    font-weight: 700;
}

.policy-content p,
.policy-content li {
    font-size: 18px;
    line-height: 1.55;
    color: #444;
}

.policy-content ul {
    padding-left: 24px;
}
