/* ========== HERO ========== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 40px 0;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, #0e1a50 0%, #06091e 60%);
    z-index: 0;
}

#particleCanvas {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.7;
}

.tiles-wrap {
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow: hidden;
    perspective: 1200px;
}

.tiles-inner {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 120%;
    height: 140%;
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    grid-template-rows: repeat(7, 1fr);
    gap: 5px;
    transform: rotateX(22deg) rotateZ(-8deg);
}

.tile {
    border-radius: 10px;
    border: 1px solid rgba(201, 168, 76, 0.08);
    transition: opacity 1s ease;
}

/* Orbs */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 2;
    pointer-events: none;
}

.orb-gold {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.12), transparent);
    top: -150px;
    right: -150px;
    animation: floatOrb 9s ease-in-out infinite;
}

.orb-blue {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(58, 141, 255, 0.15), transparent);
    bottom: 50px;
    left: -100px;
    animation: floatOrb 12s ease-in-out infinite reverse;
}

.orb-mid {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(0, 198, 255, 0.1), transparent);
    top: 35%;
    left: 35%;
    animation: floatOrb 15s ease-in-out infinite;
}

@keyframes floatOrb {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-40px) scale(1.05);
    }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    max-width: 860px;
}

/* Region badge */
.hero-region-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 50px;
    padding: 8px 20px;
    margin-bottom: 30px;
    animation: fadeSlideDown 0.7s ease both;
}

.region-flags {
    display: flex;
    gap: 4px;
    font-size: 16px;
}

.region-text {
    font-size: 11.5px;
    font-weight: 700;
    color: var(--gold-light);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.region-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

/* Main headline */
.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(36px, 5.2vw, 68px);
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: -2px;
    animation: fadeSlideDown 0.85s 0.1s ease both;
}

.hero-title .word-ai {
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title .word-mena {
    background: linear-gradient(90deg, #3a8dff, #00c6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Rotating typewriter */
.hero-typewriter-wrap {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    animation: fadeSlideDown 0.9s 0.15s ease both;
}

.typewriter-label {
    font-size: clamp(14px, 1.8vw, 20px);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Space Grotesk', sans-serif;
}

.typewriter-text {
    font-size: clamp(14px, 1.8vw, 20px);
    font-weight: 700;
    color: var(--gold-light);
    font-family: 'Space Grotesk', sans-serif;
    min-width: 280px;
    text-align: left;
    border-right: 2px solid var(--gold);
    padding-right: 4px;
    white-space: nowrap;
    overflow: hidden;
}

/* Value pillars */
.value-pillars {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    animation: fadeSlideDown 1s 0.2s ease both;
}

.pillar {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 12px;
    padding: 12px 18px;
    transition: all 0.3s ease;
    cursor: default;
}

.pillar:hover {
    background: rgba(201, 168, 76, 0.08);
    border-color: rgba(201, 168, 76, 0.35);
    transform: translateY(-3px);
}

.pillar-icon {
    width: 34px;
    height: 34px;
    background: rgba(201, 168, 76, 0.12);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.pillar-content {
    text-align: left;
}

.pillar-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1.2;
    letter-spacing: 0.3px;
}

.pillar-desc {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 2px;
    line-height: 1.4;
}

/* Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
    animation: fadeSlideDown 1s 0.3s ease both;
}

.stat-item {
    padding: 0 28px;
    text-align: center;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    bottom: 10%;
    width: 1px;
    background: rgba(201, 168, 76, 0.2);
}

.stat-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 5px;
    letter-spacing: 0.5px;
}

/* CTA */
.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeSlideDown 1s 0.4s ease both;
}

.btn-hero-gold {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    color: var(--navy);
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(201, 168, 76, 0.4);
    font-family: 'Space Grotesk', sans-serif;
    position: relative;
    overflow: hidden;
}

.btn-hero-gold::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-hero-gold:hover::before {
    opacity: 1;
}

.btn-hero-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 42px rgba(201, 168, 76, 0.55);
}

.btn-hero-gold span {
    position: relative;
    z-index: 1;
}

.btn-hero-gold .btn-icon {
    width: 34px;
    height: 34px;
    background: rgba(6, 9, 30, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    position: relative;
    z-index: 1;
}

.btn-hero-ghost {
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-family: 'Space Grotesk', sans-serif;
}

.btn-hero-ghost:hover {
    background: rgba(201, 168, 76, 0.1);
    border-color: rgba(201, 168, 76, 0.5);
    transform: translateY(-3px);
    color: var(--gold-light);
}

.btn-hero-ghost .btn-icon {
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

/* Trust note */
.hero-trust-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.35);
    animation: fadeSlideDown 1s 0.5s ease both;
}

.trust-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.4);
}

/* ========== TRUSTED STRIP ========== */
.trusted-section {
    width: 100%;
    position: relative;
    z-index: 10;
    margin-top: 64px;
}

.trusted-inner {
    background: rgba(6, 9, 30, 0.7);
    border-top: 1px solid rgba(201, 168, 76, 0.12);
    border-bottom: 1px solid rgba(201, 168, 76, 0.06);
    backdrop-filter: blur(20px);
    padding: 0;
}

.trusted-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 60px 0;
}

.trusted-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
}

.trusted-line {
    height: 1px;
    background: linear-gradient(90deg, rgba(201, 168, 76, 0.3), transparent);
    flex: 1;
}

.trusted-count {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
}

.marquee-container {
    padding: 16px 0 22px;
    overflow: hidden;
    position: relative;
}

.marquee-container::before,
.marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.marquee-container::before {
    left: 0;
    background: linear-gradient(90deg, rgba(6, 9, 30, 0.9), transparent);
}

.marquee-container::after {
    right: 0;
    background: linear-gradient(-90deg, rgba(6, 9, 30, 0.9), transparent);
}

.marquee-track {
    display: flex;
    gap: 0;
    width: max-content;
}

.marquee-track.row-1 {
    animation: scroll-left 28s linear infinite;
}

.marquee-track.row-2 {
    animation: scroll-right 24s linear infinite;
    margin-top: 10px;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(-50%)
    }

    100% {
        transform: translateX(0)
    }
}

.logo-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    margin: 0 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.logo-card:hover {
    background: rgba(201, 168, 76, 0.08);
    border-color: rgba(201, 168, 76, 0.25);
    transform: translateY(-2px);
}

.logo-card .l-icon {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.logo-card .l-name {
    font-size: 11.5px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.logo-card:hover .l-name {
    color: rgba(255, 255, 255, 0.85);
}