:root {
    --color-gold-rgb: 183, 153, 98;
}

.hero {
    background-image:
        linear-gradient(165deg,
            rgba(10, 12, 18, 0.85) 0%,
            rgba(10, 12, 18, 0.6) 50%,
            rgba(10, 12, 18, 0.85) 100%),
        var(--hero-image, none);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (prefers-reduced-motion: reduce) {
    .hero-content {
        animation: none !important;
    }

    * {
        scroll-behavior: auto !important;
    }
}

/* KEN BURNS SLIDER */
.impressions-section .container {
    position: relative;
    z-index: 2;
    margin-bottom: 1.2rem;
}

.kb-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 26/9;
    max-height: 380px;
    overflow: hidden;
    background: #000;
}

.impressions-section .kb-slider {
    width: min(100% - 3rem, 1200px);
    margin-left: auto;
    margin-right: auto;
    border-radius: 12px;
}

.kb-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.kb-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.kb-slide.kb-active {
    opacity: 1;
}

.kb-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 6s linear;
}

.kb-slide.kb-active img {
    transform: scale(1.1);
}

.kb-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.kb-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.kb-dot.active {
    background: #fff;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .kb-slider {
        aspect-ratio: 16/9;
        max-height: 300px;
    }
}

@media (max-width: 480px) {
    .kb-slider {
        aspect-ratio: 4/3;
        max-height: 240px;
    }
}
/* ============================================
   FAQ PREMIUM ACCORDION
   ============================================ */

.section details {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 0 1.25rem;
    margin: 0 0 0.9rem 0;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.section details:hover {
    border-color: rgba(var(--color-gold-rgb, 183, 153, 98), 0.22);
    background: rgba(var(--color-gold-rgb, 183, 153, 98), 0.03);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
    transform: translateY(-1px);
}

.section details summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
    padding: 1.05rem 0;
    font-weight: 600;
    font-size: 1.05rem;
    line-height: 1.4;
    letter-spacing: 0.01em;
}

.section details summary::-webkit-details-marker {
    display: none;
}

.section details summary::after {
    content: '+';
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--color-gold);
    font-weight: 300;
    font-size: 1.4rem;
    flex-shrink: 0;
    transition: transform 0.25s ease, background 0.2s ease, border-color 0.2s ease;
}

.section details[open] summary::after {
    content: '-';
    background: rgba(var(--color-gold-rgb, 183, 153, 98), 0.10);
    border-color: rgba(var(--color-gold-rgb, 183, 153, 98), 0.22);
}

.section details summary:focus-visible {
    outline: 2px solid rgba(var(--color-gold-rgb, 183, 153, 98), 0.35);
    outline-offset: 4px;
    border-radius: 10px;
}

.section details > *:not(summary) {
    padding: 0 0 1.15rem 0;
    opacity: 0.9;
    line-height: 1.75;
}

@media (max-width: 768px) {
    .section details {
        padding: 0 1rem;
        border-radius: 12px;
    }

    .section details summary {
        font-size: 1rem;
    }
}

/* ============================================
   FINAL CTA AND USEFUL LINKS UPGRADE
   ============================================ */

.section.cta-final {
    padding-top: 4.2rem;
    padding-bottom: 4.2rem;
}

.section.cta-final h2 {
    margin-bottom: 0.8rem;
}

.section.cta-final p {
    margin-bottom: 2rem;
    opacity: 0.85;
    line-height: 1.6;
}

.section.cta-final .btn-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.section.cta-final .btn-group a,
.section.cta-final .btn-group button {
    min-width: 260px;
}

@media (max-width: 768px) {
    .section.cta-final .btn-group a,
    .section.cta-final .btn-group button {
        width: 100%;
        min-width: 0;
    }
}

.section.useful-links {
    padding-top: 3.2rem;
    padding-bottom: 3.2rem;
}

.section.useful-links .links-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.1rem 1.6rem;
    align-items: center;
}

.section.useful-links a {
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.section.useful-links a:hover {
    border-bottom-color: rgba(var(--color-gold-rgb, 183, 153, 98), 0.55);
}

/* ============================================
   WHY SECTION GRID UPGRADE
   ============================================ */

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.6rem;
    margin-top: 2rem;
}

.why-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 2rem;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.why-card:hover {
    transform: translateY(-2px);
    border-color: rgba(var(--color-gold-rgb, 183, 153, 98), 0.20);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.16);
}

.why-card h3 {
    margin-top: 0;
    margin-bottom: 0.6rem;
}

.why-card p {
    margin: 0;
    opacity: 0.9;
    line-height: 1.75;
}

@media (max-width: 900px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 1.1rem;
    }

    .why-card {
        padding: 1.4rem;
        border-radius: 12px;
    }
}

/* ============================================
   TARGET GROUPS GRID BALANCE
   ============================================ */

.target-groups-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.6rem;
}

@media (max-width: 1024px) {
    .target-groups-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .target-groups-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   FINAL CTA VISUAL FIX
   ============================================ */

.section.cta-final {
    text-align: center;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.section.cta-final p {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.section.cta-final .btn-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.2rem;
    margin-top: 2.2rem;
    flex-wrap: wrap;
}

.section.cta-final .btn-primary,
.section.cta-final .btn-secondary {
    min-width: 280px;
    padding: 0.9rem 1.6rem;
}

.section.cta-final .btn-secondary {
    color: var(--color-gold);
    border: 2px solid var(--color-gold);
    background: transparent;
}

.section.cta-final .btn-secondary:hover {
    background: rgba(var(--color-gold-rgb, 183, 153, 98), 0.12);
}

@media (max-width: 768px) {
    .section.cta-final .btn-group {
        flex-direction: column;
        gap: 0.9rem;
    }

    .section.cta-final .btn-primary,
    .section.cta-final .btn-secondary {
        width: 100%;
        min-width: 0;
    }
}
