@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap');

:root {
/*    --bg: #FBDF50;*/
    --bg: #ededed;
    --surface: #ffffff;
    --surface-muted: #f9fafb;
    --border: #e5e7eb;
    --text: #111827;
    --text-soft: #4b5563;
    --text-muted: #6b7280;
    --accent: #5db130;
    --accent-dark: #1d4ed8;
    --accent-soft: #eff6ff;
    --dark: #111827;
    --dark-soft: #1f2937;
    --success-soft: #ecfdf3;
    --warning: #f97316;
    --shadow-lg: 0 18px 42px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 12px 30px rgba(15, 23, 42, 0.06);
    --radius-xl: 32px;
    --radius-lg: 28px;
    --radius-md: 24px;
    --radius-sm: 18px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    min-height: 100%;
    margin: 0;
    font-family: "Google Sans", sans-serif;
    color: var(--text);
    background: var(--bg);
}

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

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

a {
    color: inherit;
}

.container {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
    padding-left: 14px;
    padding-right: 14px;
}

.container .inner-cont {
    padding-left: 24px;
    padding-right: 24px;
}

.header,
.main,
.footer {
    position: relative;
}

.header {
    padding-top: 16px;
}

.header .header_wrapper,
.footer .footer_wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer .footer_wrapper {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.header .header_wrapper {
    padding-top: 18px;
    padding-bottom: 18px;
    padding: 0;
}

.footer .footer_wrapper {
    padding-top: 20px;
    padding-bottom: 20px;
}

.brand-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--text);
}

.brand-link img {
    height: 50px;
}

.brand-copy {
    display: grid;
    gap: 4px;
}

.brand-name {
    font-size: 26px;
    line-height: 1.05;
    font-weight: 800;
}

.brand-subtitle {
    font-size: 13px;
    line-height: 1.4;
    color: var(--text-muted);
    font-weight: 500;
}

.header_meta {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 12px;
}

.header_badge,
.header .header_wrapper .header_text {
    border-radius: 999px;
    font-size: 13px;
    line-height: 1;
    padding: 10px 14px;
}

.header_badge {
    background: #ecffed;
    color: var(--accent);
    font-weight: 700;
}
.header .header_wrapper .header_text {
    background: var(--surface-muted);
    border: 1px solid var(--border);
    color: var(--text-soft);
}

.main-layout {
    padding-bottom: 72px;
}

.hero-section,
.offers-section,
.partners-section,
.disclaimer-section,
.policy-section {
    padding-top: 16px;
}

.hero_wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.9fr);
    gap: 16px;
    align-items: stretch;
}

.hero_copy,
.hero_banner,
.partners_wrapper,
.disclaimer_wrapper,
.policy_wrapper {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.hero_copy {
    padding: 40px;
}

.hero_eyebrow,
.section_kicker {
    margin: 0 0 12px;
    font-size: 12px;
    line-height: 1.4;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--accent);
}

.hero_title,
.section_title {
    margin: 0;
    color: var(--text);
}

.hero_title {
    font-size: 46px;
    line-height: 1.05;
    margin-bottom: 16px;
}

.section_title {
    font-size: 32px;
    line-height: 1.15;
}

.hero_text,
.section_description,
.footer_note,
.main .bottom_text p,
.policy_card p,
.offer-cards-grid tbody td {
    color: var(--text-soft);
    font-size: 16px;
    line-height: 1.7;
}

.hero_text,
.section_description {
    margin: 0;
}

.hero_points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.hero_point {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border: 1px solid var(--dark-soft);
    border-radius: 999px;
    background: var(--bg);
    color: #374151;
    font-size: 14px;
    font-weight: 500;
}

.hero_banner {
    min-height: 100%;
    overflow: hidden;
    padding: 0;
}

.hero_banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.hero_variant {
    grid-template-columns: 1fr;
    max-width: 700px;
    margin: 0 auto;
    margin-bottom: 36px;
}
.hero_variant .hero_copy {
    background: transparent;
    padding: 0;
    text-align: center;
    border: none;
    box-shadow: none;
}
.hero_variant .hero_points {
    justify-content: center;
    margin-top: 16px;
}
.hero_variant .hero_point {
    border: none;
    background: var(--accent);
    color: white;
}

.offers-section_wrapper,
.partners_wrapper,
.disclaimer_wrapper,
.policy_wrapper {
    padding-top: 34px;
    padding-bottom: 34px;
}
.offers-section_wrapper {
    padding-top: 16px;
}
.section_heading {
    margin-bottom: 28px;
}

.offers_layout {
    display: block;
}

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

.offer {
    width: 100%;
}

.offer-item,
.offer-cards-grid .table,
.policy_card,
.modal-content {
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}

.offer-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
    padding: 22px 14px;
    border-radius: 26px;
    position: relative;
}

.body-card-logo {
    aspect-ratio: 300 / 120;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--surface-muted);
    text-decoration: none;
}

.offer-logo {
    max-height: 80px;
    width: auto;
}

.body-card-banner {
    padding: 0;
    overflow: hidden;
}

.offer-banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.label {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 8px 12px;
    border-radius: 999px;
    color: #ffffff;
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.03em;
    position: absolute;
    top: -14px;
}

.label.one {
    background: var(--accent);
}

.label.two {
    background: var(--dark);
}

.offer-card-info {
    display: grid;
    gap: 12px;
}

.offer-hints {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 10px 16px;
    border: 1px dashed #78b5ff;
    border-radius: 8px;
    background: #f8fafc;
    text-align: center;
}

.offer-hint {
    display: block;
    color: #334155;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 500;
}

.offer-meta-list {
    display: grid;
    gap: 6px;
}

.offer-meta-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.offer-meta-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;
}

.offer-meta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    color: #94a3b8;
    flex: 0 0 16px;
}

.offer-meta-icon svg {
    width: 16px;
    height: 16px;
}
.offer-meta-icon svg path {
    stroke: #578cff;
}

.offer-meta-value {
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.4;
    text-align: right;
    font-weight: 600;
}

.offer-meta-value .bold {
    color: var(--text);
    font-weight: 800;
}

.btn-offer-details {
    color: var(--accent);
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
}

.general_button_wrapper .button {
    width: 100%;
}

.general_button_wrapper .button a,
.general_button_wrapper .button button,
.modal-button .btn-main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 5px;
    padding: 14px 18px;
    border: none;
    border-radius: 100px;
    background: var(--accent);
    box-shadow: 0 6px 12px rgb(62 62 62 / 22%);
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 600;
    cursor: pointer;
}

.general_button_wrapper .button a span {
    margin-left: 6px;
}

.offer-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.offer-cards-grid .list-item a {
    display: block;
    height: 100%;
    text-decoration: none;
}

.offer-cards-grid .table {
    width: 100%;
    height: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 24px;
}

.offer-cards-grid thead th {
    padding: 18px 20px;
    background: var(--dark);
    color: #ffffff;
    font-size: 16px;
    line-height: 1.3;
}

.offer-cards-grid tbody td {
    padding: 14px 20px;
    border-bottom: 1px solid #edf0f3;
    vertical-align: top;
    font-size: 14px;
}

.offer-cards-grid tbody tr:last-child td {
    border-bottom: none;
}

.offer-cards-grid tbody td:first-child {
    width: 38%;
    color: var(--text);
    font-weight: 700;
}

.main .bottom_text p {
    margin: 0 0 12px;
    font-size: 13px;
}

.main .bottom_text p:last-child {
    margin-bottom: 0;
}

.policy_content {
    display: grid;
    gap: 18px;
}

.policy_card {
    padding: 24px;
    border-radius: 20px;
}

.policy_title {
    margin: 0 0 12px;
    font-size: 22px;
    line-height: 1.3;
}

.policy_card p {
    margin: 0 0 14px;
}

.policy_card p:last-child {
    margin-bottom: 0;
}

.footer {
    margin-top: 10px;
}

.copy span {
    display: block;
    margin-bottom: 6px;
    color: #374151;
    font-size: 14px;
    font-weight: 700;
}

.footer_note {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
}

.footer_links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 12px;
}

.footer_links a {
    color: #374151;
    text-decoration: none;
    border-bottom: 1px solid #d1d5db;
    font-size: 14px;
    line-height: 1.4;
}

.footer .brand-link {
    color: var(--text);
}

.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 50;
    background: rgba(17, 24, 39, 0.56);
    padding: 24px 16px;
    overflow-y: auto;
}

.modal-content {
    position: relative;
    width: 100%;
    max-width: 560px;
    margin: 40px auto;
    padding: 26px;
    border-radius: 28px;
}

.close {
    position: absolute;
    top: 12px;
    right: 16px;
    color: #6b7280;
    font-size: 28px;
    line-height: 1;
}

.modal-logo {
    max-width: 180px;
    margin: 0 auto 22px;
}

.modal-details .modal-offer-details {
    display: grid;
    gap: 18px;
}

.modal-details ul.list-style-1,
.modal-details ul.list-style-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    text-align: center;
    gap: 10px;
}

.modal-details ul.list-style-1 li,
.modal-details ul.list-style-2 li {
    padding: 14px 16px;
    border-radius: 16px;
    background: var(--surface-muted);
    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.5;
}

.modal-details ul.list-style-1 li span,
.modal-details ul.list-style-2 li span {
    color: var(--text);
    font-weight: 800;
}

.modal-heading {
    margin: 0;
    color: var(--text);
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
}

.modal-offer-links {
    display: grid;
    gap: 10px;
}

.modal-offer-links a {
    display: block;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--surface);
    color: var(--accent);
    text-align: center;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 700;
}

.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-left: 6px;
    border: 2px solid #fff;
    border-top-color: rgba(255, 255, 255, 0.24);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    vertical-align: middle;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media only screen and (max-width: 1024px) {
    .hero_wrapper {
        grid-template-columns: 1fr;
    }

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

@media only screen and (max-width: 767px) {
    .header_meta {
        display: none;
    }
    .header_wrapper {
        justify-content: center!important;
    }
    .brand-link img {
        height: 35px;
    }
    .hero-section {
        padding-top: 24px;
    }
    .hero_wrapper {
        margin-bottom: 8px;
    }
    .container .inner-cont {
        padding-left: 15px;
        padding-right: 15px;
    }

    .main-layout {
        padding-bottom: 16px;
    }

    .footer .footer_wrapper {
        align-items: center;
        flex-direction: column-reverse;
        border-radius: 20px;
    }
    .footer .footer_wrapper {
        text-align: center;
    }
    .footer_links {
        justify-content: center;
    }

    .header_meta {
        width: 100%;
    }

    .header_text {
        display: none;
    }

    .brand-link {
        gap: 10px;
    }

    .brand-name {
        font-size: 22px;
    }

    .hero_copy,
    .hero_banner,
    .offers-section_wrapper,
    .partners_wrapper,
    .disclaimer_wrapper,
    .policy_wrapper {
        border-radius: 20px;
    }

    .hero_copy {
        padding: 24px;
    }

    .hero_points {
        display: none;
    }

    .hero_title,
    .section_title {
        font-size: 28px;
    }

    .hero_text,
    .section_description,
    .footer_note,
    .main .bottom_text p,
    .policy_card p {
        font-size: 15px;
    }

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

    .offers_wrapper {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 6px;
    }

    .offer-item {
        padding: 18px 12px;
    }

    .hero_banner {
        min-height: 320px;
    }

    .policy_card {
        padding: 18px;
        border-radius: 16px;
    }

    .modal-content {
        margin: 20px auto;
        padding: 22px;
        border-radius: 22px;
    }

    .offer-meta-list,
    .offer-meta-label {
        gap: 4px;
    }

    .offer-meta-item {
        justify-content: center;
        gap: 4px;
    }

}

@media only screen and (max-width: 480px) {
    .hero_copy,
    .partners_wrapper,
    .disclaimer_wrapper,
    .policy_wrapper {
        padding-left: 18px;
        padding-right: 18px;
    }

    .hero_title,
    .section_title {
        font-size: 24px;
    }

    .hero_banner {
        min-height: 280px;
        padding: 0;
    }

    .general_button_wrapper .button a,
    .general_button_wrapper .button button,
    .modal-button .btn-main {
        font-size: 14px;
    }
}
