/* style.css */
:root {
    --aka-primary: #0f3460; /* Глубокий синий (доверие) */
    --aka-secondary: #533483; /* Акцентный фиолетовый (мудрость) */
    --aka-accent: #e94560; /* Кнопки (действие) */
    --aka-light: #f5f6fa;
    --aka-dark: #1a1a2e;
    --aka-text: #333333;
    --aka-grey: #e0e0e0;
    --font-main: 'Roboto', sans-serif;
}

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

body {
    font-family: var(--font-main);
    color: var(--aka-text);
    line-height: 1.6;
    background-color: #fff;
    scroll-behavior: smooth;
}

/* Container */
.aka-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.aka-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.aka-nav-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.aka-logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--aka-primary);
    text-decoration: none;
    text-transform: uppercase;
}

.aka-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.aka-menu a {
    text-decoration: none;
    color: var(--aka-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.aka-menu a:hover {
    color: var(--aka-accent);
}

/* Hamburger */
.aka-burger {
    display: none;
    cursor: pointer;
    font-size: 28px;
}

/* Hero Section */
.aka-hero {
    margin-top: 80px;
    background: linear-gradient(rgba(15, 52, 96, 0.8), rgba(83, 52, 131, 0.8)), url('https://images.pexels.com/photos/3184291/pexels-photo-3184291.jpeg?auto=compress&cs=tinysrgb&h=1080&w=1920');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.aka-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.aka-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
}

.aka-btn {
    display: inline-block;
    padding: 15px 40px;
    background: var(--aka-accent);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
}

.aka-btn:hover {
    background: #c32d45;
}

/* Trust Block */
.aka-trust {
    background: var(--aka-light);
    padding: 40px 0;
}

.aka-trust-grid {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.aka-stat h3 {
    font-size: 2.5rem;
    color: var(--aka-primary);
}

/* Sections General */
.aka-section {
    padding: 80px 0;
}

.aka-title {
    text-align: center;
    margin-bottom: 50px;
    color: var(--aka-primary);
    font-size: 2.2rem;
}

/* About */
.aka-about-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.aka-about-img img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Services */
.aka-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.aka-card {
    background: #fff;
    border: 1px solid var(--aka-grey);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

.aka-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.aka-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.aka-card-body {
    padding: 20px;
}

.aka-card-body h3 {
    margin-bottom: 10px;
    color: var(--aka-secondary);
}

/* FAQ */
.aka-faq-item {
    border-bottom: 1px solid var(--aka-grey);
    margin-bottom: 10px;
}

.aka-faq-question {
    padding: 15px 0;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
}

.aka-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: #666;
}

.aka-faq-item.active .aka-faq-answer {
    max-height: 200px;
    padding-bottom: 15px;
}

/* Contact */
.aka-contact-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.aka-form {
    flex: 1;
    min-width: 300px;
}

.aka-info {
    flex: 1;
    min-width: 300px;
}

.aka-input {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid var(--aka-grey);
    border-radius: 5px;
}

/* Footer */
.aka-footer {
    background: var(--aka-dark);
    color: #fff;
    padding: 50px 0 20px;
    text-align: center;
}

.aka-footer-links {
    margin-bottom: 20px;
}

.aka-footer-links a {
    color: #bbb;
    margin: 0 10px;
    text-decoration: none;
    font-size: 0.9rem;
}

.aka-footer-links a:hover {
    color: #fff;
}

/* Cookie */
.aka-cookie {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #fff;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    border-radius: 8px;
    z-index: 2000;
    max-width: 350px;
    display: none;
}

/* Mobile Adaptive */
@media (max-width: 768px) {
    .aka-burger { display: block; }
    .aka-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background: #fff;
        flex-direction: column;
        text-align: center;
        padding: 40px 0;
        transition: 0.3s;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    .aka-menu.active { left: 0; }
    .aka-about-content { flex-direction: column; }
    .aka-hero h1 { font-size: 2rem; }
}