/* AI Business Empire Builder - Premium Black & Gold Stylesheet */
/* Axis Strategic Holdings Brand Aesthetic */
/* Colors: Background #000000 to #0f0f0f, Accent Gold #FFD700 / #E3B341 */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

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

:root {
    --bg-black: #000000;
    --bg-charcoal: #0f0f0f;
    --bg-dark: #1a1a1a;
    --gold-primary: #FFD700;
    --gold-secondary: #E3B341;
    --gold-dark: #D4AF37;
    --text-white: #FFFFFF;
    --text-gray: #CCCCCC;
    --text-muted: #999999;
    --border-gold: rgba(255, 215, 0, 0.3);
    --shadow-gold: rgba(255, 215, 0, 0.2);
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #E3B341 100%);
    --gradient-gold-hover: linear-gradient(135deg, #E3B341 0%, #FFD700 100%);
    --gradient-dark: linear-gradient(180deg, #000000 0%, #0f0f0f 100%);
    --gradient-black: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

body {
    font-family: 'Poppins', 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-white);
    background: var(--bg-black);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-white);
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
}

h3 {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.7;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border-gold);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-primary);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: all 0.3s ease;
}

.logo:hover {
    color: var(--gold-secondary);
    text-shadow: 0 0 20px var(--shadow-gold);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

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

.nav-menu a:hover {
    color: var(--gold-primary);
}

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--bg-black);
    box-shadow: 0 4px 20px var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--shadow-gold);
    background: var(--gradient-gold-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--gold-primary);
}

.btn-secondary:hover {
    background: var(--gold-primary);
    color: var(--bg-black);
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.15rem;
}

.btn-nav {
    padding: 10px 24px;
    font-size: 0.95rem;
}

.btn-gold-glow {
    animation: goldShimmer 3s ease-in-out infinite;
    box-shadow: 0 4px 25px var(--shadow-gold), 0 0 40px rgba(255, 215, 0, 0.3);
}

@keyframes goldShimmer {
    0%, 100% {
        box-shadow: 0 4px 25px var(--shadow-gold), 0 0 40px rgba(255, 215, 0, 0.3);
    }
    50% {
        box-shadow: 0 4px 35px rgba(255, 215, 0, 0.4), 0 0 60px rgba(255, 215, 0, 0.5);
    }
}

.btn-module {
    background: transparent;
    color: var(--gold-primary);
    border: 2px solid var(--gold-primary);
    padding: 12px 28px;
    font-size: 0.95rem;
    margin-top: 1rem;
}

.btn-module:hover {
    background: var(--gold-primary);
    color: var(--bg-black);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px var(--shadow-gold);
}

.btn-pricing {
    width: 100%;
    margin-top: 2rem;
    padding: 16px 32px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--gradient-black);
    padding-top: 100px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background-image: url('/assets/images/10.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.05) 0%, transparent 70%),
                linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(15, 15, 15, 0.8) 100%);
    animation: pulseGlow 4s ease-in-out infinite;
    z-index: 1;
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.8;
    }
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 215, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 215, 0, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    animation: gridMove 20s linear infinite;
    z-index: 1;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    z-index: 2;
    position: relative;
}

.hero-headline {
    margin-bottom: 1.5rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.3));
    animation: fadeInUp 0.8s ease-out;
}

.hero-subheadline {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    animation: fadeInUp 1s ease-out;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
    animation: fadeInUp 1.2s ease-out;
}

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

/* Sections */
.section {
    padding: 100px 0;
    position: relative;
}

.section-dark {
    background: var(--bg-black);
}

.section-dark-alt {
    background: var(--bg-charcoal);
}

.section-cta {
    background: var(--gradient-black);
    padding: 120px 0;
}

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

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    margin-bottom: 1rem;
    color: var(--text-white);
}

.section-title p {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* Modules Grid */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.module-card {
    background: var(--bg-dark);
    border: 1px solid var(--border-gold);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.module-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.module-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-primary);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.2);
}

.module-card:hover::before {
    transform: scaleX(1);
}

.module-badge {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--bg-black);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.module-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.module-card h3 {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.module-description {
    color: var(--text-gray);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.workbook-badge {
    display: block;
    margin-top: 1rem;
    padding: 8px 16px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--border-gold);
    border-radius: 6px;
    color: var(--gold-primary);
    font-size: 0.85rem;
    text-align: center;
    font-weight: 500;
}

/* Value Stack */
.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.value-card {
    background: var(--bg-dark);
    border: 2px solid var(--border-gold);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
    box-shadow: 0 10px 30px var(--shadow-gold);
}

.value-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.value-card h3 {
    color: var(--gold-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.value-card p {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Dashboard Section */
.dashboard-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.dashboard-image {
    position: relative;
}

.dashboard-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    border: 2px solid var(--border-gold);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.dashboard-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px var(--shadow-gold);
    border-color: var(--gold-primary);
}

.dashboard-benefits h2 {
    margin-bottom: 2rem;
    color: var(--text-white);
}

.dashboard-benefits-centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.dashboard-benefits-centered h2 {
    text-align: center;
}

.dashboard-benefits-centered .benefits-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

.dashboard-benefits-centered .benefits-list li {
    justify-content: center;
    text-align: center;
}

.dashboard-benefits-centered .benefits-list li > div {
    text-align: center;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.benefit-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: var(--gradient-gold);
    color: var(--bg-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.benefits-list strong {
    color: var(--gold-primary);
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.benefits-list p {
    color: var(--text-gray);
    margin: 0;
    font-size: 1rem;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.testimonial-card {
    background: var(--bg-dark);
    border: 1px solid var(--border-gold);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
    box-shadow: 0 10px 30px var(--shadow-gold);
}

.testimonial-stars {
    color: var(--gold-primary);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: 4px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--bg-black);
    font-size: 1.1rem;
}

.author-info h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-white);
}

.author-info p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.credibility-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 3rem;
    padding: 1.5rem;
    background: var(--bg-dark);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    color: var(--gold-primary);
    font-weight: 600;
}

.badge-icon {
    font-size: 1.5rem;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.pricing-card {
    background: var(--bg-dark);
    border: 2px solid var(--border-gold);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-primary);
    box-shadow: 0 15px 50px var(--shadow-gold);
}

.pricing-card-featured {
    border-color: var(--gold-primary);
    border-width: 3px;
    transform: scale(1.05);
    box-shadow: 0 10px 40px var(--shadow-gold);
}

.pricing-card-featured:hover {
    transform: scale(1.08) translateY(-8px);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-gold);
    color: var(--bg-black);
    padding: 8px 24px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-gold);
}

.pricing-header h3 {
    color: var(--gold-primary);
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.pricing-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.5rem;
    color: var(--gold-primary);
    font-weight: 600;
    margin-top: 0.5rem;
}

.amount {
    font-size: 4rem;
    font-weight: 800;
    color: var(--gold-primary);
    line-height: 1;
}

.pricing-period {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin: 0;
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* FAQ */
.faq-container {
    max-width: 900px;
    margin: 3rem auto;
}

.faq-item {
    background: var(--bg-dark);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--gold-primary);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-white);
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

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

.faq-icon {
    font-size: 1.5rem;
    color: var(--gold-primary);
    font-weight: 300;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

.guarantee-section {
    margin-top: 4rem;
    text-align: center;
}

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 3rem;
    background: var(--bg-dark);
    border: 2px solid var(--border-gold);
    border-radius: 16px;
    max-width: 700px;
}

.guarantee-icon {
    font-size: 3rem;
}

.guarantee-badge h3 {
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.guarantee-badge p {
    color: var(--text-gray);
    margin: 0;
    font-size: 1rem;
}

/* Final CTA */
.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    margin-bottom: 1rem;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--text-white);
}

.cta-content p {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
}

/* Footer */
.footer {
    background: var(--bg-black);
    color: var(--text-white);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-gold);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-section p {
    color: var(--text-gray);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.footer-brand {
    margin-top: 1rem;
    color: var(--gold-primary);
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.footer-links a:hover {
    color: var(--gold-primary);
    padding-left: 5px;
}

.footer-divider {
    height: 1px;
    background: var(--gradient-gold);
    margin: 2rem 0;
    opacity: 0.3;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Resources Center Styles */
.resources-hero {
    text-align: center;
    padding: 1rem 0;
}

.resources-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.resources-modules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
    align-items: stretch;
}

.resource-module-card {
    background: var(--bg-dark);
    border: 2px solid var(--border-gold);
    border-radius: 18px;
    padding: 1.875rem;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.resource-module-card:hover {
    transform: translateY(-3px);
    border-color: var(--gold-primary);
    box-shadow: 0 8px 20px var(--shadow-gold);
}

.module-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.125rem;
}

.status-badge {
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.status-available {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    border: 1px solid #4CAF50;
}

.status-coming-soon {
    background: rgba(255, 215, 0, 0.1);
    color: var(--gold-primary);
    border: 1px solid var(--border-gold);
}

.module-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-primary);
    opacity: 0.5;
}

.module-icon-large {
    font-size: 3rem;
    margin: 0.75rem 0;
    text-align: center;
    display: block;
}

.resource-module-card h3 {
    color: var(--text-white);
    margin-bottom: 0.75rem;
    font-size: 1.65rem;
    text-align: center;
    line-height: 1.3;
}

.resource-module-card .module-description {
    color: var(--text-gray);
    font-size: 1.275rem;
    margin-bottom: 1.5rem;
    text-align: center;
    line-height: 1.4;
    flex-grow: 1;
}

.module-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.125rem;
    margin-top: auto;
}

.resource-module-card .btn {
    padding: 12px 24px;
    font-size: 1.025rem;
    border-radius: 9px;
}

.btn-link {
    color: var(--gold-primary);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-link:hover {
    color: var(--gold-secondary);
    text-decoration: underline;
}

.module-progress {
    margin-top: 0;
}

.progress-bar {
    width: 100%;
    height: 9px;
    background: var(--bg-charcoal);
    border-radius: 4.5px;
    overflow: hidden;
    margin-bottom: 0.375rem;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-gold);
    border-radius: 4.5px;
    transition: width 0.3s ease;
}

.progress-text {
    font-size: 1.125rem;
    color: var(--text-muted);
    text-align: center;
    display: block;
}

.resources-bonus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    align-items: stretch;
}

.bonus-resource-card {
    background: var(--bg-dark);
    border: 2px solid var(--border-gold);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.bonus-resource-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
    box-shadow: 0 10px 30px var(--shadow-gold);
}

.bonus-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.bonus-resource-card h3 {
    color: var(--gold-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.bonus-resource-card p {
    color: var(--text-gray);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.quick-links-section {
    max-width: 1200px;
    margin: 0 auto;
}

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

.quick-link-card {
    background: var(--bg-dark);
    border: 2px solid var(--border-gold);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

.quick-link-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
    box-shadow: 0 10px 30px var(--shadow-gold);
}

.quick-link-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.quick-link-card h3 {
    color: var(--gold-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.quick-link-card p {
    color: var(--text-gray);
    font-size: 1rem;
    margin: 0;
}

.nav-menu a.active {
    color: var(--gold-primary);
}

.nav-menu a.active::after {
    width: 100%;
}

/* Admin Section */
.admin-section {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--bg-dark);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
}

.admin-section h3 {
    text-align: center;
    margin-bottom: 2rem;
}

.admin-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.admin-link-group {
    padding: 1rem;
}

.admin-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.admin-links li {
    margin-bottom: 0.5rem;
}

.admin-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: block;
    padding: 0.25rem 0;
}

.admin-links a:hover {
    color: var(--gold-primary);
    padding-left: 5px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .dashboard-section {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .pricing-card-featured {
        transform: scale(1);
    }
    
    .pricing-card-featured:hover {
        transform: translateY(-8px);
    }
    
    .resources-bonus-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        padding: 2rem;
        border-top: 1px solid var(--border-gold);
        gap: 1.5rem;
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: block;
    }

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

    .modules-grid,
    .value-grid,
    .pricing-grid,
    .testimonials-grid,
    .resources-modules-grid,
    .resources-bonus-grid,
    .quick-links-grid,
    .admin-links-grid {
        grid-template-columns: 1fr;
    }
    
    .admin-section {
        padding: 1.5rem;
        margin: 2rem 0;
    }

    .section {
        padding: 60px 0;
    }

    .container {
        padding: 0 1.5rem;
    }

    .module-card,
    .value-card,
    .pricing-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

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

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 16px 32px;
        font-size: 1rem;
    }

    .amount {
        font-size: 3rem;
    }

    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 1.5rem;
    }

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

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.hidden { display: none; }
.visible { display: block; }

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Additional Animations */
.fade-in {
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
