:root {
    --bg-dark: #1E2A47;
    --bg-dark-accent: #2A3A5E;
    --text-light: #FFFFFF;
    --text-muted: #A0AEC0;
    --accent-cyan: #00F5D4;
    --shadow-light: rgba(255, 255, 255, 0.05);
    --shadow-dark: rgba(0, 0, 0, 0.3);
    --radius: 16px;
    --font-family: 'Manrope', sans-serif;
    --transition: all 0.3s ease;
}

/* --- Загальні стилі --- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-family);
    line-height: normal;
    margin: 0;
    background-color: var(--bg-dark);
    color: var(--text-light);
}
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
img { display: block; max-width: 100%; height: auto; }

/* --- Хедер (Glassmorphism) --- */
.header {
    background: rgba(30, 42, 71, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--shadow-light);
}
.header .container { display: flex; justify-content: space-between; align-items: center; }
.logo img { width: 120px; filter: brightness(0) invert(1); } /* Інвертуємо лого для темного фону */
.navigation { display: flex; gap: 2rem; }
.navigation a { color: var(--text-muted); text-decoration: none; font-weight: 500; transition: color 0.2s; }
.navigation a:hover { color: var(--text-light); }
.burger { display: none; } /* Спрощено, логіка в JS залишається */

/* --- Головна секція --- */
.main-content { padding: 3rem 0; }
.hero { text-align: center; margin-bottom: 3rem; }
.main-title { font-size: clamp(2.2rem, 5vw, 3.5rem); margin-bottom: 0.5rem; font-weight: 800; }
.main-title .highlight { color: var(--accent-cyan); }
.subtitle { font-size: clamp(1rem, 3vw, 1.25rem); color: var(--text-muted); margin: 0; }

.anchor { display: block; position: relative; top: -100px; visibility: hidden; }

/* --- Список пропозицій (Neumorphism) --- */
.offers-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}
.offer-card {
    background: var(--bg-dark);
    border-radius: var(--radius);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    box-shadow: -8px -8px 16px var(--shadow-light), 8px 8px 16px var(--shadow-dark);
}
.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: -10px -10px 20px var(--shadow-light), 10px 10px 20px var(--shadow-dark);
}
.offer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}
.offer-logo a {
    display: flex;
    height: 100px;
}
.offer-logo img {
    width: 100%;
}
.offer-info { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; text-align: center; width: 100%; margin-bottom: 1.5rem; }
.info-item .label { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.25rem; }
.info-item .value { font-size: 1.1rem; font-weight: 700; color: var(--text-light); }

.approval-chance { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.rating-bar { flex-grow: 1; height: 6px; background-color: var(--bg-dark-accent); border-radius: 3px; overflow: hidden; }
.rating-fill { height: 100%; background-color: var(--accent-cyan); border-radius: 3px; }

.cta-button {
    margin-top: auto;
    padding: 14px 16px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--bg-dark);
    background-color: var(--accent-cyan);
    border-radius: 12px;
    text-decoration: none;
    text-align: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: -4px -4px 8px var(--shadow-light), 4px 4px 8px var(--shadow-dark);
}
.cta-button:hover { filter: brightness(1.1); }
.cta-button:active {
    box-shadow: inset -4px -4px 8px var(--shadow-light), inset 4px 4px 8px var(--shadow-dark);
    transform: translateY(2px);
}
.offer-links { display: flex; justify-content: center; gap: 1.5rem; margin-top: 1rem; }
.offer-links a { font-size: 0.8rem; color: var(--text-muted); text-decoration: none; }
.offer-links a:hover { text-decoration: underline; }

/* --- FAQ --- */
.faq { margin-top: 4rem; }
.section-title { text-align: center; font-size: 2.2rem; margin-bottom: 2.5rem; }
.accordion { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.accordion-item {
    background: var(--bg-dark);
    border-radius: var(--radius);
    box-shadow: -5px -5px 10px var(--shadow-light), 5px 5px 10px var(--shadow-dark);
}
.accordion-header { cursor: pointer; padding: 1.25rem; display: flex; justify-content: space-between; align-items: center; }
.accordion-title { font-size: 1.1rem; font-weight: 700; margin: 0; }
.arrow-accord { width: 12px; height: 12px; border-right: 2px solid var(--text-muted); border-bottom: 2px solid var(--text-muted); transform: rotate(45deg); transition: transform 0.3s; }
.accordion-item.active .arrow-accord { transform: rotate(225deg); }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out; padding: 0 1.25rem; color: var(--text-muted); }
.accordion-item.active .accordion-content { padding-bottom: 1.25rem; }

/* --- Footer --- */
.footer { border-top: 1px solid var(--shadow-light); padding: 2rem 0; margin-top: 3rem; }
.footer-content { display: flex; justify-content: space-between; align-items: center; gap: 2rem; flex-wrap: wrap; }
.footer-info { flex-basis: 60%; font-size: 0.85rem; color: var(--text-muted); }
.footer-contact { flex-basis: 35%; text-align: right; }
.footer-contact span { display: block; color: var(--text-muted); }
.footer-contact a { color: var(--accent-cyan); font-weight: 500; text-decoration: none; }
.footer-bottom { border-top: 1px solid var(--shadow-light); margin-top: 2rem; padding-top: 1.5rem; display: flex; justify-content: space-between; font-size: 0.85rem; color: var(--text-muted); }
.footer-bottom a { color: var(--text-muted); text-decoration: none; }

/* --- Лоадер та помилки --- */
.loader {
    width: 50px;
    height: 50px;
    border: 5px solid var(--bg-dark-accent);
    border-top-color: var(--accent-cyan);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 5rem auto;
}
@keyframes spin { to { transform: rotate(360deg); } }
.error-placeholder { width: 100%; text-align: center; padding: 3rem; background-color: var(--bg-dark-accent); border-radius: var(--radius); color: var(--text-muted); font-weight: 500; }

/* --- Адаптивність --- */
@media (max-width: 768px) {
    .navigation { display: none; } /* Спрощено, керується JS */
    .burger { display: block; } /* Потрібно буде додати JS для мобільного меню, якщо його немає */
    .offers-list { grid-template-columns: 1fr; }
    .footer-content, .footer-bottom { flex-direction: column; text-align: center; gap: 1.5rem; }
    .footer-contact { text-align: center; }
}```

---

### **3. Код для файлу `www/js/main.js`**
*(Цей файл залишається без змін, оскільки він керує базовою інтерактивністю, незалежною від дизайну)*

```javascript
document.addEventListener('DOMContentLoaded', () => {

    // --- Burger Menu for Mobile ---
    const burger = document.getElementById('burger-menu');
    const navigation = document.querySelector('.navigation');

    if (burger && navigation) {
        burger.addEventListener('click', () => {
            burger.classList.toggle('active');
            navigation.classList.toggle('active');
        });
    }

    // --- Accordion (FAQ) ---
    const accordionItems = document.querySelectorAll('.accordion-item');

    accordionItems.forEach(item => {
        const header = item.querySelector('.accordion-header');
        if (!header) return;

        header.addEventListener('click', () => {
            const content = item.querySelector('.accordion-content');
            
            accordionItems.forEach(otherItem => {
                if (otherItem !== item && otherItem.classList.contains('active')) {
                    otherItem.classList.remove('active');
                    otherItem.querySelector('.accordion-content').style.maxHeight = null;
                }
            });

            const isActive = item.classList.toggle('active');
            if (isActive) {
                content.style.maxHeight = content.scrollHeight + 'px';
            } else {
                content.style.maxHeight = null;
            }
        });
    });
    
    if (accordionItems.length > 0) {
        const firstItem = accordionItems[0];
        const firstContent = firstItem.querySelector('.accordion-content');
        if(firstContent) {
            firstItem.classList.add('active');
            firstContent.style.maxHeight = firstContent.scrollHeight + 'px';
        }
    }
});