:root {
    --bg-color: #0d0d0d;
    --card-bg: #1a1a1a;
    --primary-color: #ff4b5c; /* Фирменный розовый */
    --text-white: #ffffff;
    --text-gray: #a0a0a0;
    --text-dark-gray: #3f3f3f;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-white);
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    padding: 20px 0;
    position: sticky;
    top: 0;
    background: rgba(13, 13, 13, 0.9);
    backdrop-filter: blur(10px);
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 900;
    font-size: 24px;
    letter-spacing: -1px;
}

.logo span {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    padding: 80px 0;
    text-align: center;
}

h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.highlight {
    color: var(--primary-color);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto 40px;
}

/* Кнопки */
.btn-main {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 20px rgba(255, 75, 92, 0.3);
}

.btn-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 75, 92, 0.5);
}

.btn-small {
    background: #333;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
}

/* Features Grid */
.features {
    padding: 60px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid #222;
}

.card h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--text-white);
}

.card p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.highlight-card {
    border: 1px solid var(--primary-color);
}

/* Footer */
.footer {
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid #222;
}
.footer .disclaimer {
    font-size: 11px;
    color: var(--text-dark-gray);
    margin-top: 10px;
}
/* Адаптивность для мобилок */
@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }
    .btn-main {
        width: 100%;
    }
}
/* Бейдж над заголовком */
.badge {
    display: inline-block;
    background: rgba(255, 75, 92, 0.1);
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Маленький текст под кнопкой про 50 грн */
.bonus-tag {
    margin-top: 15px;
    font-size: 14px;
    color: #00ff88;
    /* Зеленый цвет подчеркивает выгоду */
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

/* В мобильной версии центрируем */
@media (max-width: 768px) {
    .bonus-tag {
        justify-content: center;
    }
}

/* Улучшение заголовка */
h1 {
    font-size: 3.8rem;
    margin-bottom: 15px;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: var(--bg-color);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: 900;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    margin-bottom: 15px;
    border-radius: 16px;
    border: 1px solid #222;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item[open] {
    border-color: var(--primary-color);
}

.faq-question {
    padding: 20px 25px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    position: relative;
    outline: none;
}

/* Стрілочка праворуч */
.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 25px;
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-question::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px 20px 25px;
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
}

/* Адаптивність */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }

    .faq-question {
        padding: 15px 20px;
        font-size: 1rem;
    }
}