/* 
   Elite Tactics - Landing Page CSS 
   Theme: Dark, Clean, Modern
   Highlight Color: Golden Yellow (#FDB813 or #FFC107)
*/

:root {
    /* Colors */
    --bg-main: #0a0b10;
    --bg-darker: #050608;
    --bg-card: rgba(25, 27, 35, 0.7);
    --gold-primary: #FDB813;
    --gold-dark: #b38000;
    --gold-light: #ffe566;
    --text-main: #e2e8f0;
    --text-muted: #94a3b8;
    --white: #ffffff;

    /* Gradients */
    --gold-gradient: linear-gradient(135deg, var(--gold-primary), #ffa000);
    --dark-gradient: linear-gradient(180deg, var(--bg-main) 0%, var(--bg-darker) 100%);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Shadows & Effects */
    --glow-gold: 0 0 20px rgba(253, 184, 19, 0.3);
    --glow-gold-strong: 0 0 30px rgba(253, 184, 19, 0.6);
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.5);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.highlight {
    color: var(--gold-primary);
}

.bg-darker {
    background-color: var(--bg-darker);
}

.section-padding {
    padding: 100px 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 50px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-normal);
    cursor: pointer;
    border: none;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
    margin-top: 20px;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--bg-main);
    box-shadow: var(--glow-gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-gold-strong);
    background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--text-muted);
}

.btn-outline:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    background: rgba(253, 184, 19, 0.05);
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(253, 184, 19, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(253, 184, 19, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(253, 184, 19, 0);
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition-normal);
    background: rgba(10, 11, 16, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header.scrolled {
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 45px;
    width: auto;
}

.logo-highlight {
    color: var(--gold-primary);
}

.main-nav ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.main-nav a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.main-nav a:not(.btn):hover {
    color: var(--gold-primary);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/images/hero.png');
    background-size: cover;
    background-position: center right;
    z-index: -2;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(10, 11, 16, 1) 0%,
            rgba(10, 11, 16, 0.8) 50%,
            rgba(10, 11, 16, 0.3) 100%);
    z-index: -1;
}

.hero-content {
    width: 100%;
}

.hero-text {
    max-width: 650px;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(253, 184, 19, 0.1);
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--white);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 550px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold-primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 5px;
}

/* About Section */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: var(--gold-primary);
    filter: blur(80px);
    opacity: 0.15;
    z-index: 1;
}

.about-img {
    width: 100%;
    border-radius: 8px;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-card);
}

.about-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.about-list {
    list-style: none;
}

.about-list li {
    margin-bottom: 20px;
    font-size: 1.05rem;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.highlight-icon {
    color: var(--gold-primary);
    font-size: 1.2rem;
    margin-top: 4px;
}

.about-list strong {
    color: var(--white);
    display: block;
    font-family: var(--font-heading);
    margin-bottom: 5px;
}

/* Video Section */
.video-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 40px auto 0;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(253, 184, 19, 0.2);
    background-color: #000;
}

.native-video-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    z-index: 10;
    pointer-events: auto;
}

/* Modules Grid */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.module-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: left;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.module-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--gold-primary);
    transition: var(--transition-normal);
}

.module-card:hover {
    transform: translateY(-10px);
    border-color: rgba(253, 184, 19, 0.3);
    box-shadow: var(--shadow-card);
}

.module-card:hover::before {
    height: 100%;
}

.card-icon {
    font-size: 2.5rem;
    color: var(--gold-primary);
    margin-bottom: 20px;
}

.module-card h3 {
    font-family: var(--font-heading);
    color: var(--white);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.module-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Target Audience */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.audience-item {
    text-align: center;
    padding: 30px;
}

.audience-item i {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
    transition: var(--transition-normal);
}

.audience-item:hover i {
    color: var(--gold-primary);
}

.audience-item h4 {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.audience-item p {
    color: var(--text-muted);
}

/* Companies Section */
.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 50px;
    align-items: center;
}

.company-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 15px;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition-normal);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 90px;
}

.company-card:hover {
    transform: translateY(-5px);
    border-color: rgba(253, 184, 19, 0.3);
    box-shadow: var(--shadow-card);
}

.company-card h3 {
    font-family: var(--font-heading);
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    transition: var(--transition-fast);
}

.company-card:hover h3 {
    color: var(--gold-primary);
}

/* Pricing Section */
.pricing-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid rgba(253, 184, 19, 0.2);
    border-radius: 12px;
    padding: 50px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.pricing-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: var(--gold-primary);
    filter: blur(150px);
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
}

.pricing-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.pricing-header h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 10px;
}

.pricing-header p {
    color: var(--text-muted);
}

.pricing-features {
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.pricing-features ul {
    list-style: none;
    max-width: 400px;
    margin: 0 auto;
}

.pricing-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-main);
}

.pricing-features i {
    color: var(--gold-primary);
}

.pricing-action {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    position: relative;
    z-index: 1;
}

.price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    color: var(--white);
    margin-bottom: 5px;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 10px;
    margin-right: 5px;
}

.amount {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
}

.cents {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 10px;
}

.installments {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.secure-checkout {
    margin-top: 20px;
    color: #4ade80;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    background: var(--bg-card);
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-item:hover {
    border-color: rgba(253, 184, 19, 0.3);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px 25px;
    background: transparent;
    border: none;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-normal);
}

.faq-question:hover {
    color: var(--gold-primary);
}

.faq-question i {
    color: var(--gold-primary);
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: rgba(10, 11, 16, 0.5);
}

.faq-answer p {
    padding: 0 25px 25px 25px;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #000;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 20px;
    max-width: 300px;
}

.footer h4 {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--gold-primary);
}

.footer-contact p {
    color: var(--text-muted);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--gold-primary);
}

.social-links {
    margin-top: 25px;
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition-normal);
}

.social-links a:hover {
    background: var(--gold-primary);
    color: var(--bg-main);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-wrapper {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .header-content {
        justify-content: space-between;
    }

    .main-nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-main);
        flex-direction: column;
        justify-content: center;
        transition: 0.4s ease;
    }

    .main-nav.active {
        left: 0;
    }

    .main-nav ul {
        flex-direction: column;
        text-align: center;
    }

    .main-nav a.btn {
        margin-top: 20px;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-bg {
        background-position: center;
    }

    .hero::after {
        background: linear-gradient(180deg,
                rgba(10, 11, 16, 0.6) 0%,
                rgba(10, 11, 16, 0.9) 100%);
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .audience-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-brand p,
    .footer-contact p {
        margin: 15px auto;
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .pricing-card {
        padding: 30px 20px;
    }
}