@font-face {
    font-family: 'Raleway';
    src: url('../fonts/Raleway-Regular.ttf') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Raleway';
    src: url('../fonts/Raleway-Medium.ttf') format('woff2');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Raleway';
    src: url('../fonts/Raleway-SemiBold.ttf') format('woff2');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Raleway';
    src: url('../fonts/Raleway-ExtraBold.ttf') format('woff2');
    font-weight: 800;
    font-style: normal;
}

:root {
    --background: #080b14;
    --header: rgba(8, 11, 20, 0.96);
    --btn: #c9920a;
    --btn-hover: #f0b429;
    --promo: rgba(18, 14, 38, 0.88);
    --table: rgba(22, 18, 48, 0.92);
    --white: #e8deff;
    --black: #080b14;
    --title: #ffffff;
    --gold: #d4a017;
    --gold-light: #f5c842;
    --card-bg: rgba(255, 255, 255, 0.04);
    --border-gold: rgba(212, 160, 23, 0.35);
    --border-radius: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

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

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

button {
    all: unset;
    cursor: pointer;
    box-sizing: border-box;
}

input, textarea, button, select {
    font: inherit;
    border: none;
    outline: none;
}

body {
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    line-height: 1.65;
    background-color: var(--background);
    color: var(--white);
    background-image: url(../images/layer.webp);
    background-repeat: no-repeat;
    background-size: 100% auto;
}

ol, ul {
    list-style-position: inside;
    padding-left: 8px;
}

ul li {
    list-style: none;
    margin: 10px 0;
}

ul li::before {
    content: "◆ ";
    color: var(--gold);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--title);
    line-height: 1.2;
}

h1 {
    font-size: 3.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, var(--gold-light) 60%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--gold-light);
    margin: 16px 8px 12px;
}

h3 {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--title);
    margin: 16px 0 8px;
    border-left: 3px solid var(--gold);
    padding-left: 10px;
}

/* ── HEADER ── */
header {
    padding: 12px 160px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--header);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-gold);
    position: sticky;
    top: 0;
    z-index: 100;
    max-width: 100vw;
}

.header-btn {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* ── BUTTONS ── */
.white-btn {
    padding: 10px 24px;
    font-size: 1rem;
    font-weight: 600;
    border: 1.5px solid var(--gold);
    color: var(--gold);
    border-radius: 50px;
    letter-spacing: 0.03em;
}

.green-btn {
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--btn) 0%, var(--btn-hover) 100%);
    color: #0a0d16;
    border-radius: 50px;
    text-align: center;
    letter-spacing: 0.04em;
    box-shadow: 0 4px 18px rgba(212, 160, 23, 0.35);
}

.white-btn:hover {
    background-color: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.green-btn:hover {
    background: linear-gradient(135deg, var(--btn-hover) 0%, #ffd84a 100%);
    box-shadow: 0 6px 24px rgba(212, 160, 23, 0.55);
    transform: translateY(-2px);
}

.hero-cta {
    font-size: 1.15rem;
    padding: 16px 36px;
    margin-top: 8px;
    display: inline-block;
}

/* ── LAYOUT ── */
.wraper {
    max-width: 80%;
    margin: 0 auto;
    padding: 16px 0;
}

.flex {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    padding: 36px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.flex-content {
    width: 50%;
}

/* ── HERO ── */
.hero-section {
    padding: 48px 40px;
    margin: 24px 0 8px;
    background: linear-gradient(135deg, rgba(18,14,38,0.92) 0%, rgba(30,18,8,0.85) 100%);
    border: 1px solid var(--border-gold);
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.promo {
    background-color: var(--promo);
    border-radius: var(--border-radius);
    padding: 36px 40px;
    margin: 16px 0;
    border: 1px solid var(--border-gold);
}

.txt {
    font-size: 1rem;
    margin: 12px 0;
    line-height: 1.7;
    color: rgba(232, 222, 255, 0.9);
}

strong {
    color: var(--gold-light);
    font-weight: 700;
}

/* ── TABLES ── */
.table-wrapper {
    overflow-x: auto;
    margin: 20px 0;
    border-radius: var(--border-radius);
    width: 100%;
}

.table-wrapper table {
    width: 100%;
    min-width: 320px;
    font-size: 0.95rem;
    border-collapse: separate;
    border-spacing: 0 3px;
}

table thead th {
    background-color: var(--table);
    padding: 13px 16px;
    text-align: left;
    color: var(--gold-light);
    font-weight: 700;
    letter-spacing: 0.04em;
}

table thead th:first-child { border-radius: 12px 0 0 12px; }
table thead th:last-child  { border-radius: 0 12px 12px 0; }

tr td {
    padding: 10px 16px;
    text-align: start;
}

tr:nth-child(even) {
    background-color: rgba(255,255,255,0.04);
}

table tbody tr td:first-child { border-radius: 10px 0 0 10px; }
table tbody tr td:last-child  { border-radius: 0 10px 10px 0; }

table tbody tr:hover {
    background-color: rgba(212, 160, 23, 0.08);
    transition: background 0.2s;
}

/* ── BONUS TABLE ── */
.bonus-table {
    border-collapse: separate;
    border-spacing: 0 4px;
    width: 100%;
    color: var(--white);
}

.bonus-table thead th {
    background-color: var(--table);
    padding: 12px 16px;
    text-align: left;
    color: var(--gold-light);
    font-weight: 700;
}

.bonus-table thead th:first-child { border-radius: 12px 0 0 12px; }
.bonus-table thead th:last-child  { border-radius: 0 12px 12px 0; }

.bonus-table tbody td { padding: 12px 16px; }

.bonus-table tbody tr:nth-child(even) { background-color: rgba(255,255,255,0.04); }
.bonus-table tbody tr:hover { background-color: rgba(212,160,23,0.08); transition: background 0.2s; }

.bonus-table thead th:first-child,
.bonus-table tbody td:first-child { width: 28%; }

/* ── REVIEW CARDS ── */
.review-card {
    background: var(--card-bg);
    border: 1px solid var(--border-gold);
    border-radius: var(--border-radius);
    padding: 18px 20px;
    margin-bottom: 14px;
    position: relative;
}

.review-card::before {
    content: "★★★★★";
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 8px;
}

/* ── FAQ ── */
.faq-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 36px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.faq-section h2 {
    margin-bottom: 20px;
}

.qa-scontent-title {
    margin: 10px auto;
    border: 1px solid var(--border-gold);
    border-radius: var(--border-radius);
    width: 80%;
    padding: 16px 24px;
    background: var(--card-bg);
    transition: border-color 0.25s;
}

.qa-scontent-title:hover {
    border-color: var(--gold);
}

.qa-scontent-title h3 {
    font-size: 1.05rem;
    border-left-color: var(--gold);
    margin: 0 0 10px;
}

.qa-answaer {
    font-size: 0.97rem;
    line-height: 1.65;
    color: rgba(232,222,255,0.85);
    padding: 0 4px;
}

/* ── FOOTER ── */
footer {
    padding: 28px 160px;
    border-top: 1px solid var(--border-gold);
    margin-top: 8px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 28px;
    border-bottom: none;
    padding: 0 0 16px;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-disclaimer {
    font-size: 0.78rem;
    color: rgba(232,222,255,0.45);
    margin-top: 10px;
    line-height: 1.5;
}

/* ── RESPONSIVE: 1024px ── */
@media (max-width: 1024px) {
    header {
        padding: 10px 16px;
    }

    header img {
        width: 90px;
        height: auto;
    }

    .white-btn {
        padding: 8px 14px;
        font-size: 0.85rem;
    }

    .green-btn {
        padding: 8px 14px;
        font-size: 0.85rem;
    }

    .hero-cta {
        font-size: 0.95rem;
        padding: 12px 22px;
    }

    .wraper {
        max-width: 96%;
        padding: 8px;
    }

    .flex {
        flex-direction: column;
        gap: 16px;
        padding: 24px 0;
    }

    .flex-content {
        width: 100%;
    }

    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; margin: 8px 4px; }
    h3 { font-size: 1.05rem; }

    .hero-section {
        padding: 28px 20px;
    }

    .promo {
        padding: 24px 20px;
    }

    .bonus-table { font-size: 0.82rem; }
    .bonus-table thead th { padding: 8px 10px; }
    .bonus-table tbody td  { padding: 8px 10px; }

    .qa-scontent-title {
        width: 100%;
        padding: 12px 16px;
    }

    footer {
        padding: 20px 16px;
    }

    .footer-links {
        gap: 10px 16px;
    }
}

/* ── RESPONSIVE: 768px ── */
@media (max-width: 768px) {
    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.3rem; }

    .table-wrapper table { font-size: 0.82rem; }
    tr td { padding: 8px 10px; }

    .review-card { padding: 14px 16px; }
}

/* ── RESPONSIVE: 480px ── */
@media (max-width: 480px) {
    h1 { font-size: 1.25rem; }
    h2 { font-size: 1.1rem; }
    h3 { font-size: 0.95rem; }

    .green-btn, .white-btn {
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .hero-cta {
        width: 100%;
        text-align: center;
    }
}
