/* ===== БАЗА ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #0a0a0a;
    color: #e0e0e0;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== ЗАГОЛОВКИ ===== */
.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    color: #ffffff;
    letter-spacing: -0.02em;
    line-height: 1.2;
}
.section-title span {
    background: linear-gradient(135deg, #F5A623, #f7c948);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== КНОПКИ ===== */
.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    letter-spacing: 0.3px;
}
.btn--trust {
    background: linear-gradient(135deg, #F5A623, #f7c948);
    color: #0a0a0a;
    box-shadow: 0 8px 30px rgba(245, 166, 35, 0.3);
}
.btn--trust:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(245, 166, 35, 0.5);
}
.btn--outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.2);
}
.btn--outline:hover {
    background: rgba(245, 166, 35, 0.1);
    border-color: #F5A623;
    transform: translateY(-3px);
}

/* ===== ШАПКА ===== */
.header {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}
.logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: -0.5px;
}
.logo span {
    color: #F5A623;
}
.nav {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}
.nav a {
    padding: 8px 16px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}
.nav a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}
.nav a.active {
    color: #0a0a0a;
    background: linear-gradient(135deg, #F5A623, #f7c948);
}

/* ===== СТОРІНКИ ===== */
.page-content {
    padding: 80px 0;
    animation: fadeIn 0.5s ease;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== КАРТКИ ===== */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.card {
    background: linear-gradient(145deg, #161616, #1a1a1a);
    padding: 30px 28px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.card:hover {
    border-color: rgba(245, 166, 35, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.card .icon {
    font-size: 2.8rem;
    margin-bottom: 16px;
    display: block;
}
.card h3 {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 1.25rem;
    font-weight: 700;
}
.card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

/* ===== ГОЛОВНА ===== */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 60px 0;
}
.hero__title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #ffffff;
    letter-spacing: -0.03em;
}
.hero__title span {
    background: linear-gradient(135deg, #F5A623, #f7c948);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero__title em {
    font-style: normal;
    color: #ffffff;
}
.hero__subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}
.hero__buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== ФУТЕР ===== */
.footer {
    background: #050505;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}
.footer p {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
}
.footer a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer a:hover {
    color: #F5A623;
}

/* ===== АДАПТИВ ===== */
@media (max-width: 1024px) {
    .hero__title {
        font-size: 3rem;
    }
}
@media (max-width: 768px) {
    .hero__title {
        font-size: 2.2rem;
    }
    .hero__subtitle {
        font-size: 1.1rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .nav a {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    .card-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 480px) {
    .header__inner {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    .nav {
        justify-content: center;
    }
    .hero__title {
        font-size: 1.8rem;
    }
}
