/* Всі стилі для лендінгу - Освітній формат */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Oswald:wght@400;500;700&display=swap');

:root {
    /* Візуальні змінні (Dark Theme) */
    --bg-color: #111827;       /* Gray 900 */
    --card-bg: #1F2937;        /* Gray 800 */
    --text-color: #F3F4F6;     /* Gray 100 */
    --text-muted: #9CA3AF;     /* Gray 400 */
    --accent-color: #10B981;   /* Emerald 500 */
    --accent-hover: #059669;   /* Emerald 600 */
    --secondary-color: #3B82F6; /* Blue 500 */
    
    /* Градієнти */
    --gradient-primary: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    --gradient-dark: linear-gradient(to right, rgba(17, 24, 39, 0.9), rgba(17, 24, 39, 0.7));
    --gradient-card: linear-gradient(180deg, #1F2937 0%, #111827 100%);

    /* Шрифти */
    --font-heading: 'Oswald', sans-serif;
    --font-text: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-text);
    -webkit-font-smoothing: antialiased;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
}

/* Кнопки та інтерактивні елементи */
.btn-primary {
    background: var(--gradient-primary);
    color: white;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.4);
}

/* Мобільне меню */
#mobile-menu {
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
}

#mobile-menu.open {
    max-height: 300px;
    opacity: 1;
}

/* Кастомні нумеровані списки для карток */
.numbered-list-accent {
    list-style: none;
    counter-reset: custom-counter;
    padding-left: 0;
}

.numbered-list-accent li {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.numbered-list-accent li::before {
    counter-increment: custom-counter;
    content: counter(custom-counter);
    position: absolute;
    left: 0;
    top: -0.1rem;
    width: 1.8rem;
    height: 1.8rem;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: bold;
}

/* Форми */
.form-input {
    background-color: #374151;
    border: 1px solid #4B5563;
    color: var(--text-color);
}
.form-input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
}

/* Cookie Banner (JS Version) */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #1F2937; /* Колір фону банера */
    color: #ffffff;
    padding: 1.5rem;
    text-align: center;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.5);
    border-top: 1px solid #374151;
}

.cookie-btn {
    cursor: pointer;
    padding: 0.6rem 2rem;
    margin: 0.5rem;
    background-color: var(--accent-color);
    color: #ffffff;
    border-radius: 4px;
    border: none;
    display: inline-block;
    font-weight: bold;
    font-family: var(--font-heading);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cookie-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.cookie-btn-alt {
    background-color: #4B5563; 
}
.cookie-btn-alt:hover {
    background-color: #6B7280;
}