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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Exo', sans-serif;
    font-weight: 400;
    color: #FFFFFF;
    background-color: #141919;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}

input,
textarea,
select {
    font-family: inherit;
    color: inherit;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 42px;
}

.header {
    background-color: #070805;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header__nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 24px;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.header__logo-img {
    width: 48px;
    height: 48px;
    border-radius: 8px;
}

.header__logo-text {
    font-size: 20px;
    font-weight: 800;
    color: #FFFFFF;
}

.header__menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header__link {
    font-size: 14px;
    font-weight: 700;
    color: #B7B7B7;
    transition: color 0.3s ease;
}

.header__link:hover {
    color: #51E359;
}

.header__badges {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header__badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 32px;
    font-size: 12px;
    font-weight: 700;
}

.header__badge--red {
    background: rgba(227, 81, 83, 0.1);
    border: 1px solid rgba(227, 81, 83, 0.3);
    color: #E35153;
}

.header__badge--green {
    background: rgba(81, 227, 89, 0.1);
    border: 1px solid rgba(81, 227, 89, 0.3);
    color: #51E359;
}

.header__badge-icon-18 {
    font-weight: 800;
    font-size: 13px;
}

.header__badge-label {
    font-size: 12px;
}

.header__badge-label--green {
    color: #51E359;
    font-weight: 800;
}

.header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    padding: 4px;
}

.header__burger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: #FFFFFF;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.header__burger--open .header__burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.header__burger--open .header__burger-line:nth-child(2) {
    opacity: 0;
}

.header__burger--open .header__burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.topbar {
    background-color: #070805;
    border-bottom: 1px solid rgba(227, 81, 83, 0.2);
}

.topbar__text {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 42px;
    text-align: center;
    font-size: 12px;
    font-weight: 400;
    color: #E35153;
}

.tag {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 32px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
}

.tag--green {
    background: rgba(81, 227, 89, 0.15);
    border: 1px solid rgba(81, 227, 89, 0.3);
    color: #51E359;
}

.tag--green-light {
    background: rgba(81, 227, 89, 0.1);
    color: #51E359;
    border: 1px solid rgba(81, 227, 89, 0.2);
}

.tag--outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #B7B7B7;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    border: none;
    text-align: center;
}

.btn--primary {
    background: linear-gradient(180deg, #51E359 0%, #48A13F 100%);
    color: #070805;
    box-shadow: 0 4px 15px rgba(81, 227, 89, 0.3);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(81, 227, 89, 0.4);
}

.btn--outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
}

.btn--outline:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

.hero {
    background-color: #070805;
    padding: 68px 0;
    text-align: center;
}

.hero__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
    justify-content: center;
}

.hero__content {
    margin-bottom: 32px;
}

.hero__title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
    color: #FFFFFF;
}

.hero__description {
    font-size: 16px;
    font-weight: 400;
    color: #B7B7B7;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.hero__actions {
    display: flex;
    gap: 12px;
    margin-bottom: 48px;
    justify-content: center;
}

.hero__stats {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 24px 32px;
    background: transparent;
    border-radius: 0;
    border: none;
    justify-content: center;
}

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

.hero__stat-number {
    font-size: 28px;
    font-weight: 800;
    color: #51E359;
}

.hero__stat-label {
    font-size: 13px;
    font-weight: 400;
    color: #B7B7B7;
}

.hero__stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

.featured {
    background: #0e1210;
    padding: 72px 0;
}

.featured__header {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: center;
    margin-bottom: 48px;
}

.featured__title {
    font-weight: 800;
    font-size: 48px;
    line-height: 100%;
    color: #FFFFFF;
}

.featured__description {
    font-weight: 500;
    font-size: 18px;
    line-height: 120%;
    color: #B7B9BC;
}

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

.featured__card {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px;
    background: #070805;
    border: 1px solid rgba(81, 227, 89, 0.3);
    border-radius: 6px;
}

.featured__card-logo {
    flex-shrink: 0;
    width: 280px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border-radius: 6px;
    overflow: hidden;
}

.featured__card-img {
    max-width: 90%;
    max-height: 80%;
    object-fit: contain;
}

.featured__card-rating {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.featured__card-score {
    font-weight: 800;
    font-size: 48px;
    line-height: 100%;
    color: #FFFFFF;
}

.featured__card-stars {
    display: flex;
    gap: 2px;
}

.featured__star {
    color: #51E359;
    font-size: 20px;
}

.featured__card-votes {
    font-weight: 500;
    font-size: 14px;
    color: #B7B9BC;
}

.featured__card-offer {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.featured__card-bonus {
    font-weight: 700;
    font-size: 18px;
    line-height: 120%;
    color: #FFFFFF;
    text-transform: uppercase;
}

.featured__card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: linear-gradient(180deg, #51E359 0%, #48A13F 100%);
    border-radius: 6px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    color: #070805;
    transition: background 0.2s ease, transform 0.2s ease;
}

.featured__card-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(81, 227, 89, 0.3);
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header .tag {
    margin-bottom: 16px;
}

.section-title {
    font-size: 44px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 12px;
    line-height: 1.15;
}

.section-subtitle {
    font-size: 15px;
    font-weight: 400;
    color: #B7B7B7;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.guide-expert {
    background-color: #141919;
    padding: 68px 0;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.info-card {
    background: #282B2A;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 3px solid rgba(81, 227, 89, 0.5);
    border-radius: 12px;
    padding: 28px;
}

.info-card__title {
    font-size: 22px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 12px;
    line-height: 1.4;
}

.info-card__title--sm {
    font-size: 15px;
}

.info-card__title--md {
    font-size: 18px;
}

.info-card__role {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #51E359;
    margin-bottom: 10px;
}

.info-card__text {
    font-size: 14px;
    font-weight: 400;
    color: #B7B7B7;
    line-height: 1.7;
    margin-bottom: 8px;
}

.info-card__text:last-child {
    margin-bottom: 0;
}

.info-card--small {
    padding: 20px;
    border-left: 3px solid rgba(81, 227, 89, 0.5);
}

.cta-box {
    background: #282B2A;
    border: 1px solid rgba(81, 227, 89, 0.2);
    border-radius: 12px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.cta-box__content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cta-box__title {
    font-size: 24px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 4px;
}

.cta-box__text {
    font-size: 15px;
    color: #B7B7B7;
}

.cta-box__note {
    font-size: 12px;
    color: #B7B7B7;
}

.responsible {
    background-color: #070805;
    padding: 68px 0;
}

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

.responsible__section-title {
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 16px;
}

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

.alert-card {
    border-radius: 12px;
    padding: 28px;
}

.alert-card--red {
    background: rgba(227, 81, 83, 0.08);
    border: 1px solid rgba(227, 81, 83, 0.25);
    border-left: 3px solid rgba(227, 81, 83, 0.6);
}

.alert-card--green {
    background: rgba(81, 227, 89, 0.06);
    border: 1px solid rgba(81, 227, 89, 0.2);
    border-left: 3px solid rgba(81, 227, 89, 0.5);
}

.alert-card__title {
    font-size: 22px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.alert-card__text {
    font-size: 14px;
    color: #B7B7B7;
    line-height: 1.7;
    margin-bottom: 12px;
}

.alert-card__text:last-child {
    margin-bottom: 0;
}

.alert-card__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.alert-card__list li {
    font-size: 14px;
    color: #B7B7B7;
    padding-left: 4px;
    line-height: 1.6;
}

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

.support-card {
    background: rgba(81, 227, 89, 0.06);
    border: 1px solid rgba(81, 227, 89, 0.15);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.support-card__name {
    font-size: 15px;
    font-weight: 700;
    color: #51E359;
}

.support-card__phone {
    font-size: 14px;
    font-weight: 700;
    color: #51E359;
}

.support-card__desc {
    font-size: 13px;
    color: #B7B7B7;
    line-height: 1.5;
    margin-top: 4px;
}

.faq {
    background-color: #141919;
    padding: 68px 0;
}

.faq__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq__item {
    background: #282B2A;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq__item--open {
    border-color: rgba(81, 227, 89, 0.3);
}

.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 28px;
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s ease;
    gap: 16px;
}

.faq__question:hover {
    background: rgba(255, 255, 255, 0.03);
}

.faq__question-text {
    flex: 1;
}

.faq__toggle {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 20px;
    font-weight: 400;
    color: #B7B7B7;
    transition: background 0.3s ease, transform 0.3s ease;
}

.faq__toggle::after {
    content: '+';
    line-height: 1;
}

.faq__toggle--close::after {
    content: '\00d7';
    font-size: 20px;
}

.faq__item--open .faq__toggle {
    background: rgba(81, 227, 89, 0.15);
    color: #51E359;
}

.faq__answer {
    padding: 0 28px 24px;
}

.faq__answer p {
    font-size: 14px;
    color: #B7B7B7;
    line-height: 1.7;
    margin-bottom: 8px;
}

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

.warning-bar {
    background: linear-gradient(180deg, rgba(227, 81, 83, 0.12) 0%, rgba(227, 81, 83, 0.04) 100%);
    border-top: 1px solid rgba(227, 81, 83, 0.25);
    border-bottom: 1px solid rgba(227, 81, 83, 0.25);
    padding: 24px 0;
}

.warning-bar .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}

.warning-bar__badge {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.warning-bar__18 {
    background: rgba(81, 227, 89, 0.15);
    border: 1px solid rgba(81, 227, 89, 0.3);
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 16px;
    font-weight: 800;
    color: #51E359;
}

.warning-bar__label {
    font-size: 13px;
    font-weight: 700;
    color: #E35153;
    white-space: nowrap;
}

.warning-bar__text {
    font-size: 13px;
    color: #B7B7B7;
    line-height: 1.6;
}

.warning-bar__text strong {
    color: #51E359;
}

.footer {
    background-color: #070805;
    padding: 48px 0 32px;
}

.footer__partners {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.footer__partner-img {
    height: 44px;
    width: auto;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.footer__partner-img:hover {
    opacity: 1;
}

.footer__divider {
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 24px 0;
}

.footer__brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__desc {
    font-size: 13px;
    color: #B7B7B7;
    line-height: 1.6;
}

.footer__columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

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

.footer__col-title {
    font-size: 14px;
    font-weight: 700;
    color: #51E359;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer__col-link {
    font-size: 13px;
    color: #B7B7B7;
    transition: color 0.3s ease;
}

.footer__col-link:hover {
    color: #51E359;
}

.footer__support-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer__support-item strong {
    font-size: 13px;
    font-weight: 700;
    color: #FFFFFF;
}

.footer__support-item span {
    font-size: 12px;
    color: #B7B7B7;
}

.footer__bottom {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
}

.footer__bottom-text {
    font-size: 12px;
    color: #666;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner--visible {
    transform: translateY(0);
}

.cookie-banner__content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 42px;
    background: #282B2A;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cookie-banner__header {
    display: flex;
    align-items: center;
}

.cookie-banner__label {
    font-size: 12px;
    font-weight: 700;
    color: #51E359;
    background: rgba(81, 227, 89, 0.1);
    padding: 4px 12px;
    border-radius: 32px;
}

.cookie-banner__title {
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
}

.cookie-banner__text {
    font-size: 13px;
    color: #B7B7B7;
    line-height: 1.6;
}

.cookie-banner__actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.cookie-banner__btn {
    padding: 10px 20px;
    font-size: 13px;
}

.cookie-banner__link {
    font-size: 12px;
    color: #B7B7B7;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-banner__link:hover {
    color: #51E359;
}

.page-hero {
    background-color: #070805;
    padding: 48px 0;
}

.page-hero--center {
    text-align: center;
}

.page-hero .tag {
    margin-bottom: 16px;
}

.page-hero__title {
    font-size: 44px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 12px;
    line-height: 1.15;
}

.page-hero__subtitle {
    font-size: 15px;
    color: #B7B7B7;
    line-height: 1.7;
    max-width: 700px;
}

.page-hero__subtitle--center {
    margin: 0 auto;
    max-width: 750px;
}

.content-section {
    padding: 68px 0;
}

.content-section--alt {
    background-color: #070805;
}

.content-section__title {
    font-size: 28px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.content-section__text {
    font-size: 14px;
    color: #B7B7B7;
    line-height: 1.7;
    margin-bottom: 12px;
}

.content-section__text:last-child {
    margin-bottom: 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 24px;
}

.value-card {
    background: #282B2A;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 28px;
}

.value-card__icon {
    font-size: 28px;
    margin-bottom: 12px;
    display: block;
}

.value-card__title {
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.value-card__text {
    font-size: 14px;
    color: #B7B7B7;
    line-height: 1.6;
}

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

.team-card {
    background: #282B2A;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 28px;
    text-align: center;
}

.team-card__avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(81, 227, 89, 0.1);
    border: 2px solid rgba(81, 227, 89, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
}

.team-card__name {
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 4px;
}

.team-card__role {
    font-size: 13px;
    color: #51E359;
    font-weight: 700;
    margin-bottom: 8px;
}

.team-card__desc {
    font-size: 13px;
    color: #B7B7B7;
    line-height: 1.5;
}

.team-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.affiliate-box {
    background: rgba(81, 227, 89, 0.06);
    border: 1px solid rgba(81, 227, 89, 0.25);
    border-left: 3px solid rgba(81, 227, 89, 0.5);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
}

.affiliate-box__title {
    font-size: 28px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 20px;
    line-height: 1.2;
}

.affiliate-box__text {
    font-size: 14px;
    color: #B7B7B7;
    line-height: 1.7;
    margin-bottom: 12px;
}

.affiliate-box__cta-text {
    font-size: 15px;
    color: #B7B7B7;
    margin-top: 16px;
    margin-bottom: 16px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 700px;
    margin: 0 auto 32px;
}

.contact-cards .info-card {
    padding: 20px 24px;
}

.contact-cards .info-card__role {
    margin-bottom: 4px;
}

.contact-cards .info-card__text {
    margin: 0;
}

.contact-form-card {
    background: #282B2A;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 32px;
    max-width: 700px;
    margin: 0 auto;
}

.contact-form {
    max-width: 100%;
    margin: 0;
}

.contact-form__group {
    margin-bottom: 16px;
}

.contact-form__label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-form__input {
    width: 100%;
    padding: 14px 16px;
    background: #1a1d1c;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #FFFFFF;
    font-size: 14px;
    font-family: 'Exo', sans-serif;
    outline: none;
    transition: border-color 0.3s ease;
}

.contact-form__input:focus {
    border-color: #51E359;
}

.contact-form__input::placeholder {
    color: #555;
}

select.contact-form__input {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23888' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
}

select.contact-form__input option {
    background: #1a1d1c;
    color: #FFFFFF;
}

textarea.contact-form__input {
    min-height: 120px;
    resize: vertical;
}

.contact-form__consent {
    font-size: 13px;
    color: #B7B7B7;
    margin-bottom: 16px;
    line-height: 1.5;
}

.contact-form__link {
    color: #51E359;
    text-decoration: none;
}

.contact-form__link:hover {
    text-decoration: underline;
}

.contact-form__submit {
    width: 100%;
    margin-top: 0;
}

.contact-form__disclaimer {
    font-size: 12px;
    color: #888;
    line-height: 1.6;
    margin-top: 16px;
}

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

.guide-section--alt {
    background-color: #070805;
}

.guide-section__tag {
    margin-bottom: 12px;
}

.guide-section__title {
    font-size: 24px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.guide-section__text {
    font-size: 14px;
    color: #B7B7B7;
    line-height: 1.7;
    margin-bottom: 12px;
}

.guide-section__text:last-child {
    margin-bottom: 0;
}

.guide-section__list {
    margin: 12px 0;
    padding-left: 20px;
    list-style: disc;
}

.guide-section__list li {
    font-size: 14px;
    color: #B7B7B7;
    line-height: 1.7;
    margin-bottom: 6px;
}

.guide-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 20px;
}

.guide-card {
    background: #282B2A;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
}

.guide-card__title {
    font-size: 15px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.guide-card__text {
    font-size: 13px;
    color: #B7B7B7;
    line-height: 1.6;
}

.legal-section {
    padding: 32px 0;
}

.legal-section__title {
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.legal-section__text {
    font-size: 14px;
    color: #B7B7B7;
    line-height: 1.7;
    margin-bottom: 10px;
}

.legal-section__text:last-child {
    margin-bottom: 0;
}

.legal-section__list {
    margin: 8px 0 12px;
    padding-left: 20px;
    list-style: disc;
}

.legal-section__list li {
    font-size: 14px;
    color: #B7B7B7;
    line-height: 1.7;
    margin-bottom: 4px;
}

.guide-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card__section-title {
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 16px 0 6px;
}

.info-card__list {
    margin: 6px 0 12px;
    padding-left: 20px;
    list-style: disc;
}

.info-card__list li {
    font-size: 14px;
    color: #B7B7B7;
    line-height: 1.7;
    margin-bottom: 4px;
}

.alert-card--center {
    text-align: center;
    border-left: none;
    border-top: 3px solid rgba(227, 81, 83, 0.5);
}

@media (max-width: 992px) {
    .featured {
        padding: 48px 0;
    }

    .featured__title {
        font-size: 28px;
    }

    .featured__card {
        flex-direction: column;
        text-align: center;
    }

    .featured__card-logo {
        width: 100%;
        height: 80px;
    }

    .featured__card-bonus {
        font-size: 16px;
    }

    .container {
        padding: 0 24px;
    }

    .header__nav {
        padding: 0 24px;
    }

    .header__badges {
        display: none;
    }

    .header__burger {
        display: flex;
    }

    .header__menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        bottom: 0;
        background: #070805;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 48px;
        gap: 24px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 99;
    }

    .header__menu--open {
        transform: translateX(0);
    }

    .header__link {
        font-size: 18px;
    }

    .topbar__text {
        padding: 10px 24px;
        font-size: 11px;
    }

    .hero__title {
        font-size: 32px;
    }

    .hero__stats {
        flex-direction: column;
        gap: 16px;
        align-items: center;
        padding: 20px;
    }

    .hero__stat-divider {
        width: 100%;
        height: 1px;
    }

    .faq__question {
        font-size: 16px;
        padding: 18px 20px;
    }

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

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

    .info-card__title {
        font-size: 18px;
    }

    .footer__columns {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .warning-bar__text {
        font-size: 12px;
    }

    .footer__partners {
        gap: 20px;
    }

    .cookie-banner__content {
        padding: 20px 24px;
    }

    .cookie-banner__actions {
        flex-direction: column;
    }

    .cookie-banner__btn {
        width: 100%;
    }

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

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

    .contact-form-card {
        padding: 24px;
    }

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

    .page-hero__title {
        font-size: 32px;
    }

    .section-title {
        font-size: 32px;
    }

    .affiliate-box {
        padding: 28px;
    }

    .affiliate-box__title {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .header__nav {
        padding: 0 16px;
    }

    .hero {
        padding: 40px 0;
    }

    .hero__title {
        font-size: 26px;
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn {
        width: 100%;
    }

    .hero__stat-number {
        font-size: 22px;
    }

    .guide-expert,
    .responsible,
    .faq,
    .content-section {
        padding: 48px 0;
    }

    .section-title {
        font-size: 26px;
    }

    .faq__question {
        padding: 14px 16px;
        font-size: 15px;
    }

    .faq__answer {
        padding: 0 16px 14px;
    }

    .page-hero__title {
        font-size: 26px;
    }

    .affiliate-box {
        padding: 20px;
    }

    .affiliate-box__title {
        font-size: 20px;
    }

    .footer__partner-img {
        height: 30px;
    }
}
