/* Base Reset & Variables */
:root {
    --bg-dark: #0a0a0a;
    --bg-card: #141414;
    --text-main: #f0f0f0;
    --text-muted: #a0a0a0;
    --primary-gold: #d4af37;
    --primary-gold-hover: #b5952f;
    --accent-blue: #2563eb;
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f6e27a 50%, #d4af37 100%);
    --gradient-dark: linear-gradient(to bottom, #0a0a0a, #1a1a1a);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --spacing-container: 1200px;
}

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

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

.container {
    max-width: var(--spacing-container);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

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

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

/* Utilities */
.text-left {
    text-align: left;
}

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

/* Announcement Bar */
.announcement-bar {
    background: var(--primary-gold);
    color: #000;
    text-align: center;
    padding: 10px 0;
    font-weight: 700;
    font-size: 0.9rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.2);
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    text-align: center;
}

.primary-cta {
    background: var(--gradient-gold);
    color: #000;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.primary-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

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

.secondary-cta:hover {
    background: rgba(212, 175, 55, 0.1);
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
    }

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

/* Hero Section */
.hero-section {
    padding: 100px 0;
    text-align: center;
    position: relative;
    background: radial-gradient(circle at center, #1a1a1a 0%, #0a0a0a 70%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.2);
    color: var(--primary-gold);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.main-headline {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.sub-headline {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.trust-indicators {
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.trust-indicators i {
    color: var(--primary-gold);
    margin-right: 5px;
}

/* Sections Common */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
}

/* Pain Points */
.pain-points-section,
.bonuses-section {
    padding: 80px 0;
    background: var(--bg-dark);
}

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

.card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #2a2a2a;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
}

.card-icon {
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

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

/* Solution Section */
.solution-section {
    padding: 100px 0;
    background: linear-gradient(to right, #0f0f0f, #141414);
}

.reverse-flex-mobile {
    display: flex;
    align-items: center;
    gap: 60px;
}

.solution-content {
    flex: 1;
}

.solution-image {
    flex: 1;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.benefits-list {
    list-style: none;
    margin-bottom: 40px;
}

.benefits-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.benefits-list li i {
    color: var(--primary-gold);
    margin-right: 15px;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: #1a1a1a;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #333;
    border: 1px solid #333;
}

.image-placeholder i {
    color: #333;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.gradient-border:hover i {
    color: var(--primary-gold);
}

/* Curriculum */
.curriculum-section {
    padding: 100px 0;
}

.curriculum-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.curriculum-day {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-gold);
}

.day-header {
    margin-bottom: 30px;
    border-bottom: 1px solid #2a2a2a;
    padding-bottom: 20px;
}

.day-tag {
    color: var(--primary-gold);
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

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

.topics-list li {
    margin-bottom: 15px;
    color: #d0d0d0;
    display: flex;
}

.topics-list li i {
    color: var(--primary-gold);
    margin-right: 10px;
    margin-top: 5px;
    font-size: 0.8rem;
}

/* Pricing */
.pricing-section {
    padding: 100px 0;
    text-align: center;
}

.pricing-box {
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    padding: 60px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.urgency-text {
    color: #fe4a49;
    font-weight: 600;
    margin-top: 10px;
}

.price-display {
    margin: 40px 0;
}

.regular-price {
    text-decoration: line-through;
    color: #666;
    font-size: 1.5rem;
    margin-right: 20px;
}

.offer-price {
    font-size: 4rem;
    font-weight: 800;
    color: #fff;
}

.large-cta {
    width: 100%;
    font-size: 1.2rem;
}

.guarantee {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #888;
}

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

/* Footer */
.site-footer {
    padding: 60px 0;
    border-top: 1px solid #222;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    margin: 0 15px;
    color: #888;
}

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

.disclaimer {
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.5;
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 768px) {
    .main-headline {
        font-size: 2.5rem;
    }

    .reverse-flex-mobile {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

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

    .curriculum-grid {
        grid-template-columns: 1fr;
    }

    .benefits-list li {
        justify-content: center;
    }

    .pricing-box {
        padding: 30px;
    }
}

/* SEBI Badge */
.sebi-badge {
    display: inline-block;
    background-color: #202050;
    /* Deep Blue from image */
    color: #ffffff;
    padding: 10px 30px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}