/* Reset & Base Styles */
:root {
    --bg-dark: #000000;
    --bg-card: #0D0D0D;
    --bg-card-hover: #141414;
    --primary-gold: #FF8C00;
    /* Dark Orange */
    --primary-gold-hover: #FFA500;
    /* Orange */
    --secondary-emerald: #FF4500;
    /* Orange Red */
    --text-main: #FFFFFF;
    --text-muted: #A0A0A0;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --gradient-gold: linear-gradient(135deg, #FF8C00 0%, #FFA500 100%);
    --gradient-emerald: linear-gradient(135deg, #FF4500 0%, #FF8C00 100%);
    --shadow-soft: 0 10px 40px -10px rgba(0, 0, 0, 0.8);
    --shadow-glow: 0 0 25px rgba(255, 140, 0, 0.25);
    --border-glass: 1px solid rgba(255, 140, 0, 0.1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: #fff;
    font-weight: 700;
    line-height: 1.2;
}

.text-gradient {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gold {
    color: var(--primary-gold);
}

/* Utilities */
.section-padding {
    padding: 5rem 0;
}

.text-center {
    text-align: center;
}

.bg-darker {
    background-color: #080b12;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-gold);
    color: #000;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
}

.btn-outline:hover {
    background: var(--primary-gold);
    color: #000;
}

.btn-xl {
    padding: 1rem 3rem;
    font-size: 1.1rem;
}

.btn-glow {
    background: var(--gradient-gold);
    color: #000;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    animation: pulse-glow 2s infinite;
}

.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: var(--border-glass);
    color: #fff;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    background: rgba(11, 15, 25, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: var(--border-glass);
    transition: all 0.3s ease;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 38px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.footer-brand .logo-img {
    height: 45px;
    margin-bottom: 0;
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

.navbar {
    display: flex;
    gap: 2rem;
}

.navbar a {
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    color: var(--text-muted);
}

.navbar a:hover,
.navbar a.active {
    color: #fff;
}

.navbar a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.navbar a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    gap: 1rem;
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #fff;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    /* Header height */
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.5;
    z-index: -1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, #000 100%);
}

.hero .container.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.hero .row {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-content {
    position: relative;
    z-index: 2;
    flex: 1;
}

.hero-image-side {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image-side .image-wrapper {
    height: 480px;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: var(--primary-gold);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 3.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 5rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    border-top: 1px solid rgba(255, 140, 0, 0.15);
    padding-top: 3rem;
    max-width: 700px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 140, 0, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 140, 0, 0.05);
    border-color: var(--primary-gold);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-gold);
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* Bonus Card Centering & Clean Up */
.bonus-card {
    position: relative;
    background: var(--bg-card);
    padding: 3rem 2rem;
    border-radius: 24px;
    text-align: center;
    border: 1px solid rgba(255, 140, 0, 0.1);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bonus-card h3 {
    margin-bottom: 1rem;
    font-size: 1.6rem;
}

.bonus-card p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 0;
}

/* Features */
.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 24px;
    border: var(--border-glass);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    border-radius: 24px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: transparent;
    color: #000;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover .icon-box {
    background: rgba(0, 0, 0, 0.1);
    color: #000;
}

.feature-card:hover p,
.feature-card:hover h3 {
    color: #000;
}

.icon-box {
    width: 70px;
    height: 70px;
    background: rgba(255, 140, 0, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Content Sections */
.content-section .row {
    display: flex;
    gap: 4rem;
}

.content-section .col-lg-6 {
    flex: 1;
}

.content-title {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.content-text {
    margin-bottom: 1.5rem;
    color: #ccc;
    font-size: 1.05rem;
}

.image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: var(--bg-card);
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: var(--border-glass);
    box-shadow: var(--shadow-glow);
}

.content-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.image-wrapper:hover .content-img {
    transform: scale(1.05);
}

.abstract-graphic {
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.05);
}

.abstract-graphic.gold {
    color: rgba(212, 175, 55, 0.1);
}

.glow-effect::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: var(--primary-gold);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.1;
}

/* Bonuses */
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.bonus-card {
    position: relative;
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.bonus-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.1);
}

.bonus-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-gold);
    color: #000;
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 700;
}

.bonus-icon {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}

.bonus-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.bonus-card p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.btn-outline-gold {
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
}

.btn-outline-gold:hover {
    background: var(--primary-gold);
    color: #000;
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border-radius: 10px;
    margin-bottom: 1rem;
    border: var(--border-glass);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.02);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    padding-bottom: 1.5rem;
}

/* Footer */
.footer-section {
    background: #05080e;
    padding-top: 5rem;
    border-top: var(--border-glass);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    color: var(--text-muted);
    margin: 1.5rem 0;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-gold);
    color: #000;
}

.footer-links h4 {
    margin-bottom: 1.5rem;
    color: var(--primary-gold);
    font-size: 1.1rem;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: var(--text-muted);
}

.footer-links ul li a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-bottom {
    padding: 2rem 0;
    border-top: var(--border-glass);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #666;
    font-size: 0.9rem;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--bg-dark);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.4s ease;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2rem;
    cursor: pointer;
    color: #fff;
}

.mobile-link {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #fff;
}

.mobile-actions {
    margin-top: 2rem;
    width: 80%;
}

.full-width {
    width: 100%;
    display: block;
}

/* Animations */
@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    }

    50% {
        box-shadow: 0 0 25px rgba(212, 175, 55, 0.7);
    }

    100% {
        box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    }
}

/* Responsive */
@media (max-width: 991px) {

    .header .navbar,
    .header-actions {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .hero-title {
        font-size: 3rem;
    }

    .content-section .row {
        flex-direction: column;
        gap: 2rem;
    }

    .reverse-mobile {
        flex-direction: column-reverse !important;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-btns {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .btn {
        width: 100%;
    }
}