/* ═══════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════ */

.hero-section {
    position: relative;
    background-color: #2c2b51;
    overflow: hidden;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px 48px;
    position: relative;
    z-index: 1;
}

/* Geometric grid pattern overlay */
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(237, 167, 32, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(237, 167, 32, 0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

/* Subtle radial glow */
.hero-section::after {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(237, 167, 32, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-partners-wrap {
    margin-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 28px;
}

/* ── Left column: Text content ── */
.hero-content {
    flex: 1;
    min-width: 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(237, 167, 32, 0.15);
    border: 1px solid rgba(237, 167, 32, 0.3);
    color: #eda720;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: heroFadeUp 0.6s ease-out both;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    background: #eda720;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

.hero-headline {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.15;
    margin: 0 0 20px;
    text-wrap: balance;
    animation: heroFadeUp 0.6s ease-out 0.1s both;
}

.hero-headline-accent {
    color: #eda720;
}

.hero-subheadline {
    font-size: 1.125rem;
    color: #b8b6d6;
    line-height: 1.7;
    margin: 0 0 36px;
    max-width: 520px;
    animation: heroFadeUp 0.6s ease-out 0.2s both;
}

/* ── CTAs ── */
.hero-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: heroFadeUp 0.6s ease-out 0.3s both;
}

.hero-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: #eda720;
    color: #2c2b51;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    box-shadow: 0 4px 16px rgba(237, 167, 32, 0.3);
}

.hero-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(237, 167, 32, 0.4);
    background: #f5b530;
    color: #2c2b51;
    text-decoration: none;
}

.hero-cta-primary:active {
    transform: scale(0.97);
}

.hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: transparent;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    text-decoration: none;
    transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.hero-cta-secondary:hover {
    border-color: #eda720;
    background: rgba(237, 167, 32, 0.1);
    color: #eda720;
    text-decoration: none;
}

.hero-cta-secondary:active {
    transform: scale(0.97);
}

/* ── Right column: Decorative graphic ── */
.hero-graphic {
    flex: 0 0 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: heroFadeUp 0.8s ease-out 0.3s both;
}

.hero-graphic-inner {
    position: relative;
    width: 280px;
    height: 280px;
}

.hero-graphic-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(237, 167, 32, 0.15);
}

.hero-graphic-circle-1 {
    inset: 0;
    animation: rotate-slow 25s linear infinite;
}

.hero-graphic-circle-2 {
    inset: 30px;
    border-color: rgba(237, 167, 32, 0.25);
    animation: rotate-slow 20s linear infinite reverse;
}

.hero-graphic-circle-3 {
    inset: 60px;
    border-color: rgba(237, 167, 32, 0.35);
    animation: rotate-slow 15s linear infinite;
}

.hero-graphic-logo {
    position: absolute;
    inset: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-graphic-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.9;
}

/* Orbiting accent dots */
.hero-graphic-circle-1::before,
.hero-graphic-circle-2::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: #eda720;
    border-radius: 50%;
    top: -5px;
    left: 50%;
}

.hero-graphic-circle-2::after {
    width: 8px;
    height: 8px;
    background: rgba(237, 167, 32, 0.6);
    top: auto;
    bottom: -4px;
}

/* ═══════════════════════════════════════════════════
   PARTNER CAROUSEL (trust strip)
   ═══════════════════════════════════════════════════ */

.hero-partners {
    animation: heroFadeUp 0.6s ease-out 0.5s both;
}

.hero-partners-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 20px;
}

.partner-carousel {
    position: relative;
    overflow: hidden;
    height: 80px;
}

.partner-carousel-track {
    display: flex;
    align-items: center;
    gap: 48px;
    animation: partner-scroll 30s linear infinite;
    width: max-content;
}

.partner-carousel-track:hover {
    animation-play-state: paused;
}

.partner-carousel-logo {
    height: 60px;
    width: auto;
    opacity: 0.5;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s ease;
    flex-shrink: 0;
}

.partner-carousel-logo:hover {
    opacity: 0.85;
}

/* Fade edges */
.partner-carousel::before,
.partner-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.partner-carousel::before {
    left: 0;
    background: linear-gradient(to right, #2c2b51, transparent);
}

.partner-carousel::after {
    right: 0;
    background: linear-gradient(to left, #2c2b51, transparent);
}

/* ═══════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════ */

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes partner-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */

@media screen and (max-width: 1024px) {
    .hero-inner {
        padding: 60px 24px 36px;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-headline {
        font-size: 2.25rem;
    }

    .hero-subheadline {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .hero-graphic {
        flex: none;
        order: -1;
    }

    .hero-graphic-inner {
        width: 200px;
        height: 200px;
    }

    .hero-graphic-circle-2 { inset: 20px; }
    .hero-graphic-circle-3 { inset: 40px; }
    .hero-graphic-logo { inset: 55px; }
}

@media screen and (max-width: 640px) {
    .hero-section {
        padding: 40px 0 36px;
    }

    .hero-headline {
        font-size: 1.75rem;
    }

    .hero-subheadline {
        font-size: 1rem;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta-primary,
    .hero-cta-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .hero-graphic-inner {
        width: 160px;
        height: 160px;
    }

    .partner-carousel-logo {
        height: 28px;
    }

    .partner-carousel-track {
        gap: 32px;
    }
}
