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

body {
    font-family: 'Inter', sans-serif;
    background-color: #000000;
    color: #e0e0e0;
    overflow-x: hidden;
    scroll-behavior: smooth;
}


:root {
    --gold: #D4AF37;
    --gold-dark: #B28B2C;
    --gold-glow: rgba(212, 175, 55, 0.3);
    --black-deep: #0A0A0A;
    --black-card: #111111;
    --gray-premium: #1C1C1C;
}


#mainNav {
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
    padding: 0.8rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.8rem;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #fff 30%, var(--gold) 80%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
}

.brand-gold {
    color: var(--gold);
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    font-size: 1.6rem;
}

.nav-link {
    color: #ddd !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: 0.3s;
    position: relative;
}

.nav-link:hover {
    color: var(--gold) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: var(--gold);
    transition: 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}


.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 30% 20%, #1a1a1a, #000000);
    overflow: hidden;
}

.hero-bg-graphic {
    position: absolute;
    width: 100%;
    height: 100%;
    svg>');
 background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.3;
    animation: slowShift 20s infinite alternate;
}

@keyframes slowShift {
    0% {
        transform: scale(1) translateX(0);
    }

    100% {
        transform: scale(1.05) translateX(2%);
    }
}

.hero-premium-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    backdrop-filter: blur(4px);
    border: 1px solid var(--gold);
    padding: 0.5rem 1.2rem;
    border-radius: 40px;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    color: var(--gold);
}

.gold-text {
    color: var(--gold);
    font-weight: 700;
}

.btn-golden {
    background: linear-gradient(95deg, var(--gold) 0%, #F3E5AB 100%);
    border: none;
    padding: 0.9rem 2.2rem;
    font-weight: 700;
    border-radius: 50px;
    color: #000;
    transition: all 0.3s;
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-golden:hover {
    background: linear-gradient(95deg, #E5C05A 0%, var(--gold) 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(212, 175, 55, 0.3);
    color: #000;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.scroll-indicator span {
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.5;
    animation: bounce 1.4s infinite;
}

.scroll-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.scroll-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.3;
    }

    50% {
        transform: translateY(10px);
        opacity: 1;
    }
}


.section-py {
    padding: 100px 0;
}

.section-subtitle {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
    font-size: 0.8rem;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.gold-divider {
    width: 70px;
    height: 3px;
    background: var(--gold);
    margin: 1rem 0 1.5rem;
}

.section-desc {
    font-size: 1.1rem;
    color: #aaa;
    max-width: 700px;
    margin: 0 auto;
}


.trend-card {
    background: var(--black-card);
    border-radius: 24px;
    padding: 2rem 1.5rem;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    border: 1px solid rgba(212, 175, 55, 0.15);
    height: 100%;
    backdrop-filter: blur(2px);
}

.trend-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 35px -12px rgba(212, 175, 55, 0.2);
}

.trend-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.trend-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.trend-card p {
    color: #b0b0b0;
    line-height: 1.5;
}

.trend-tag {
    margin-top: 1.2rem;
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    padding: 0.3rem 1rem;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.5px;
}


.stats-section {
    background: linear-gradient(145deg, #050505 0%, #0F0F0F 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.stat-block {
    padding: 1rem;
}

.stat-number {
    font-size: 3.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #aaa;
}


.graphic-golden-circle {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, rgba(0, 0, 0, 0.8) 90%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 2px dashed var(--gold);
    transition: 0.4s;
}

.graphic-golden-circle i {
    font-size: 5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.graphic-golden-circle span {
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--gold);
}

.insight-block {
    padding: 0 0.5rem;
}

.insight-icon {
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.insight-block h3 {
    font-size: 1.9rem;
    font-weight: 700;
    color: white;
}

.insight-list {
    list-style: none;
    padding-left: 0;
    margin-top: 1.5rem;
}

.insight-list li {
    margin-bottom: 0.6rem;
}

.insight-list li i {
    color: var(--gold);
    margin-right: 10px;
}


.contact-section {
    background: radial-gradient(ellipse at top, #0A0A0A, #000000);
    position: relative;
}

.contact-form-wrapper {
    max-width: 550px;
}

.modern-input {
    background: rgba(20, 20, 20, 0.9);
    border: 1px solid #2a2a2a;
    color: #fff;
    padding: 12px 20px;
    border-radius: 50px;
    transition: 0.3s;
}

.modern-input::placeholder {
    color: #aaa;
}

.modern-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
    background: #000;
    color: white;
}

.form-message {
    color: var(--gold);
    font-size: 0.9rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    margin: 0 0.5rem;
    color: var(--gold);
    font-size: 1.3rem;
    transition: 0.3s;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--gold);
    color: #000;
    transform: translateY(-5px);
}

.footer {
    background: #010101;
    padding: 2rem 0;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    font-size: 0.85rem;
}


.fade-up {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.revealed {
    opacity: 1;
    transform: translateY(0);
}


@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .hero-section h1 {
        font-size: 2.2rem;
    }

    .graphic-golden-circle {
        width: 200px;
        height: 200px;
        margin-bottom: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .section-py {
        padding: 60px 0;
    }
}