/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, var(--dark) 0%, #2d3748 100%);
    color: white;
    padding: 64px 24px;
    position: relative;
    overflow: visible !important;
}

.hero::before {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(21,127,196,0.2);
    pointer-events: none;
}

.hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    overflow: visible;
}

.hero-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
}

.hero-logo {
    flex-shrink: 0;
}

.hero-logo img {
    max-width: 120px;
    height: auto;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.2));
}

.hero-text h2 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.3;
    margin-bottom: 6px;
    color: white;
}

.hero-text p {
    font-size: 16px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 0;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 0;
}

/* Dropdown в hero */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown summary {
    list-style: none;
    cursor: pointer;
}

.dropdown summary::-webkit-details-marker,
.dropdown summary::marker {
    display: none;
}

.dropdown summary .btn-ghost-white {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.dropdown summary .btn-ghost-white:hover {
    background: rgba(255,255,255,0.2);
    border-radius: 0;    
}

.dropdown[open] summary .btn-ghost-white {
    border-radius: 0;
}

.dropdown summary svg:last-child {
    transition: transform 0.3s ease;
}

.dropdown[open] summary svg:last-child {
    transform: rotate(180deg);
}

.dropdown-content {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 280px;
    background: var(--white);
    box-shadow: 0 20px 35px -10px rgba(0,0,0,0.2);
    border: 1px solid var(--border);
    list-style: none;
    margin: 0;
    z-index: 99999;
}

.dropdown-content li a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: var(--dark);
    text-decoration: none;
    transition: var(--transition);
}

.dropdown-content li a:hover {
    background-color: var(--accent-light);
    color: var(--accent);
}

@media (max-width: 768px) {
    .hero-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .hero-logo img {
        max-width: 90px;
    }
    .hero-text h2 {
        font-size: 20px;
    }
    .hero-text p {
        font-size: 14px;
    }
    .hero { padding: 40px 24px; }
    
    .dropdown-content {
        position: fixed;
        top: auto;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 32px);
        max-width: 320px;
    }
}