/* ===== MARKETMINDX BRAND IDENTITY ===== */
/* "The X marks where truth is found" */

/* ===== ROOT VARIABLES ===== */
:root {
    /* Primary Colors */
    --color-primary: #2EB8A6;
    --color-primary-dark: #26A08F;
    --color-primary-light: #00D4C4;

    /* Background Colors */
    --bg-dark: #1A1A2E;
    --bg-darker: #12121A;
    --bg-darkest: #0f0f1a;
    --bg-light: #F5F2ED;
    --bg-cream: #FAF9F6;
    --bg-white: #FFFFFF;

    /* Text Colors */
    --text-primary: #1A1A2E;
    --text-light: #F0EEEA;
    --text-muted: #888888;
    --text-secondary: #666666;

    /* Neutral Colors */
    --stone: #9A9590;
    --stone-light: #C5C0B8;
    --border-light: #E8E5E0;
    --border-dark: rgba(255, 255, 255, 0.1);

    /* Semantic Colors */
    --color-success: #22C55E;
    --color-error: #EF4444;
    --color-warning: #F59E0B;

    /* Typography */
    --font-logo: 'Sora', sans-serif;
    --font-display: 'Tenor Sans', serif;
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing & Effects */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow-soft: 0 4px 30px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 8px 30px rgba(46, 184, 166, 0.25);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

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

/* ===== TYPOGRAPHY ===== */
h1, .h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h2, .h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 600;
    line-height: 1.3;
}

h3, .h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 600;
    line-height: 1.4;
}

h4, .h4 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
}

.label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-primary);
}

.accent-text {
    color: var(--color-primary);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: var(--color-primary);
    color: var(--bg-white);
}

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

.btn-secondary {
    background: var(--bg-dark);
    color: var(--text-light);
}

.btn-secondary:hover {
    background: var(--bg-darker);
}

.btn-outline {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--border-dark);
}

.btn-outline:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn-ghost {
    background: transparent;
    color: var(--text-muted);
    padding: 16px 20px;
}

.btn-ghost:hover {
    color: var(--color-primary);
}

/* ===== HEADER & NAVIGATION ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-dark);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo .logo-img,
.logo .logo-icon {
    height: 55px;
    width: auto;
    max-width: 280px;
}

.logo .logo-text {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text-light);
}

.logo .logo-text .accent {
    color: var(--color-primary);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-light);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    gap: 12px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--text-light);
    transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(46, 184, 166, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(46, 184, 166, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-label {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-primary);
    background: rgba(46, 184, 166, 0.1);
    padding: 8px 20px;
    border-radius: 20px;
    margin-bottom: 24px;
}

.hero-text h1 {
    margin-bottom: 24px;
    color: var(--text-light);
}

.hero-text p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-large {
    opacity: 0.15;
}

.hero-logo-large img {
    width: clamp(200px, 30vw, 350px);
    height: auto;
}

/* ===== STATS BAR ===== */
.stats-bar {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-dark);
    border-bottom: 1px solid var(--border-dark);
    padding: 50px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.stat-item p {
    color: var(--text-muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ===== SECTIONS COMMON ===== */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-header .label {
    margin-bottom: 16px;
    display: block;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7;
}

/* ===== ABOUT FOUNDER ===== */
.about-founder {
    background: var(--bg-darker);
}

.founder-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: center;
}

.founder-image {
    position: relative;
}

.founder-image-placeholder {
    width: 300px;
    height: 300px;
    border-radius: var(--radius-xl);
    background: var(--bg-dark);
    border: 1px solid var(--border-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-logo {
    width: 120px;
    height: auto;
    opacity: 0.8;
}

.founder-image::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 28px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    z-index: -1;
    opacity: 0.2;
}

.founder-info .label {
    margin-bottom: 12px;
    display: block;
}

.founder-info h2 {
    margin-bottom: 24px;
}

.founder-info p {
    color: var(--text-muted);
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.7;
}

/* ===== WHAT YOU'LL LEARN ===== */
.learn-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.learn-card {
    background: var(--bg-darker);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
}

.learn-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-glow);
}

.learn-icon,
.learn-card .icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    background: rgba(46, 184, 166, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--color-primary);
}

.learn-icon svg,
.learn-card .icon svg {
    width: 32px;
    height: 32px;
    color: var(--color-primary);
}

.learn-card h4 {
    margin-bottom: 12px;
    color: var(--text-light);
}

.learn-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

/* ===== COURSES SECTION ===== */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.course-card {
    background: var(--bg-darker);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.course-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-glow);
}

.course-thumbnail {
    height: 180px;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darkest) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    position: relative;
    color: var(--color-primary);
}

.course-thumbnail svg {
    width: 64px;
    height: 64px;
}

.course-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--color-primary);
    color: var(--bg-white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.course-badge.free {
    background: var(--color-success);
}

.course-content {
    padding: 28px;
}

.course-content h4 {
    margin-bottom: 12px;
    color: var(--text-light);
}

.course-content p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 24px;
    line-height: 1.6;
}

.course-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.course-price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-primary);
}

.course-price span {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-left: 8px;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: var(--bg-darker);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.testimonial-card {
    background: var(--bg-dark);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-glow);
}

.testimonial-card .stars {
    color: #F59E0B;
    margin-bottom: 20px;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.testimonial-card p {
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.8;
    font-size: 15px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: var(--bg-white);
}

.author-info h5 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-light);
}

.author-info span {
    font-size: 13px;
    color: var(--text-muted);
}

/* ===== CTA BANNER ===== */
.cta-banner {
    background: var(--color-primary);
    padding: 80px 0;
    text-align: center;
}

.cta-banner h2 {
    color: var(--bg-white);
    margin-bottom: 16px;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    margin-bottom: 32px;
}

.cta-banner .btn {
    background: var(--bg-dark);
    color: var(--text-light);
}

.cta-banner .btn:hover {
    background: var(--bg-darker);
    transform: translateY(-2px);
}

/* ===== FOOTER ===== */
footer {
    background: var(--bg-darkest);
    padding: 70px 0 30px;
    border-top: 1px solid var(--border-dark);
}

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

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand .logo .logo-img,
.footer-brand .logo .logo-icon {
    height: 50px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    max-width: 280px;
}

.footer-section h4 {
    margin-bottom: 24px;
    color: var(--color-primary);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-section ul li {
    margin-bottom: 14px;
}

.footer-section ul li a {
    color: var(--text-muted);
    font-size: 14px;
}

.footer-section ul li a:hover {
    color: var(--text-light);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.social-link {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-md);
    background: var(--bg-dark);
    border: 1px solid var(--border-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
    color: var(--text-light);
}

.social-link svg,
.social-link img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
    transition: var(--transition);
}

.social-link:hover img {
    filter: brightness(0) invert(1);
}

.social-link:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--bg-white);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--border-dark);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 13px;
}

.disclaimer {
    margin-top: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-md);
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== FLOATING BUTTONS ===== */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.floating-btn {
    width: 54px;
    height: 54px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.floating-btn svg,
.floating-btn img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.floating-btn.whatsapp {
    background: #25d366;
}

.floating-btn.telegram {
    background: #0088cc;
}

.floating-btn:hover {
    transform: scale(1.1);
}

/* ===== PAGE HEADERS ===== */
.page-header {
    padding: 160px 0 80px;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(46, 184, 166, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.page-header .label {
    margin-bottom: 16px;
    display: block;
}

.page-header h1 {
    margin-bottom: 16px;
}

.page-header p {
    color: var(--text-muted);
    font-size: 18px;
    max-width: 500px;
    margin: 0 auto;
}

/* ===== COURSES PAGE ===== */
.courses-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 28px;
    border-radius: 30px;
    border: 1px solid var(--border-dark);
    background: transparent;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--color-primary);
    color: var(--bg-white);
    border-color: var(--color-primary);
}

/* ===== ABOUT PAGE ===== */
.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-story-image {
    height: 400px;
    background: var(--bg-darker);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--color-primary);
}

.about-story-text h2 {
    margin-bottom: 24px;
}

.about-story-text p {
    color: var(--text-muted);
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.7;
}

.mission-section {
    background: var(--bg-darker);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mission-card {
    text-align: center;
    padding: 40px 30px;
}

.mission-card .icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    background: rgba(46, 184, 166, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--color-primary);
}

.mission-card .icon svg {
    width: 32px;
    height: 32px;
}

.mission-card h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.mission-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    margin-bottom: 24px;
}

.contact-info > p {
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-method {
    display: flex;
    gap: 16px;
    align-items: center;
}

.contact-method .icon {
    width: 50px;
    height: 50px;
    background: rgba(46, 184, 166, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--color-primary);
}

.contact-method .icon svg {
    width: 24px;
    height: 24px;
}

.contact-method h4 {
    font-size: 15px;
    margin-bottom: 4px;
}

.contact-method p {
    color: var(--text-muted);
    font-size: 13px;
}

.contact-form {
    background: var(--bg-darker);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-xl);
    padding: 40px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-dark);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-md);
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 14px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(46, 184, 166, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form .btn {
    width: 100%;
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }

    .hero-text p {
        margin: 0 auto 40px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
    }

    .hero-logo-large img {
        max-width: 280px;
    }

    .founder-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .founder-image {
        margin: 0 auto;
    }

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

    .about-story {
        grid-template-columns: 1fr;
    }

    .contact-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .logo .logo-img,
    .logo .logo-icon {
        height: 45px;
        max-width: 200px;
    }

    .logo .logo-text {
        font-size: 14px;
    }

    nav {
        padding: 12px 0;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-logo-large img {
        width: 180px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

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

    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }

    .floating-btn {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    section {
        padding: 70px 0;
    }

    .logo .logo-img,
    .logo .logo-icon {
        height: 38px;
        max-width: 160px;
    }

    .logo .logo-text {
        font-size: 12px;
    }

    nav {
        padding: 10px 0;
    }

    .hero {
        min-height: auto;
        padding: 140px 0 80px;
    }

    .hero-logo-large img {
        width: 150px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

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

    .courses-grid,
    .learn-grid,
    .testimonials-slider {
        grid-template-columns: 1fr;
    }

    .placeholder-logo {
        width: 80px;
    }

    .founder-image-placeholder {
        width: 200px;
        height: 200px;
    }
}

/* ===== MOBILE MENU ===== */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-dark);
    z-index: 1002;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    padding: 80px 20px 40px;
    overflow-y: auto;
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav a {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-light);
}

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

.mobile-nav .btn {
    font-size: 1rem;
    padding: 14px 28px;
    margin-top: 10px;
}

.mobile-nav .btn-outline {
    border: 2px solid var(--border-dark);
}

.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-muted);
    z-index: 1001;
}

.mobile-nav-close:hover {
    color: var(--text-light);
}

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    padding: 12px 0;
    text-align: center;
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    z-index: 999;
}

.announcement-bar p {
    font-size: 14px;
    color: var(--bg-white);
    margin: 0;
}

.announcement-bar .highlight {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 10px;
    border-radius: 4px;
    margin-right: 8px;
}

.announcement-bar a {
    color: var(--bg-white);
    text-decoration: underline;
    margin-left: 12px;
    font-weight: 600;
}

.announcement-bar a:hover {
    opacity: 0.9;
}

/* Adjust hero for announcement bar */
.hero {
    padding-top: 130px;
}

/* ===== HERO TRUST INDICATORS ===== */
.hero-trust {
    display: flex;
    gap: 24px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 13px;
}

.trust-item svg {
    width: 18px;
    height: 18px;
    color: var(--color-primary);
}

/* ===== TRUST BADGES SECTION ===== */
.trust-badges {
    padding: 40px 0;
    background: var(--bg-dark);
    border-bottom: 1px solid var(--border-dark);
}

.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--bg-darker);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-dark);
}

.badge-icon {
    width: 48px;
    height: 48px;
    background: rgba(46, 184, 166, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.badge-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
}

.badge-text strong {
    display: block;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 4px;
}

.badge-text span {
    font-size: 12px;
    color: var(--text-muted);
}

/* ===== FREE RESOURCES SECTION ===== */
.free-resources {
    background: var(--bg-darker);
}

.free-resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.free-card {
    background: var(--bg-dark);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.free-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-success);
    box-shadow: 0 8px 30px rgba(34, 197, 94, 0.2);
}

.free-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-success);
    color: var(--bg-white);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}

.free-icon {
    width: 80px;
    height: 80px;
    margin: 20px auto 24px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.free-icon svg {
    width: 36px;
    height: 36px;
    color: var(--color-success);
}

.free-card h4 {
    margin-bottom: 12px;
    color: var(--text-light);
}

.free-card > p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 24px;
    line-height: 1.6;
}

.free-features {
    text-align: left;
    margin-bottom: 24px;
}

.free-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 12px;
}

.free-features li svg {
    width: 18px;
    height: 18px;
    color: var(--color-success);
    flex-shrink: 0;
}

/* ===== FOUNDER CREDENTIALS ===== */
.founder-credentials {
    display: flex;
    gap: 30px;
    margin: 30px 0;
}

.credential {
    text-align: center;
}

.credential-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-primary);
}

.credential-text {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== SKILLS TAGS ===== */
.skills-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.skills-tags span {
    background: rgba(46, 184, 166, 0.1);
    color: var(--color-primary);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
}

/* ===== COURSE SKILLS & EMI ===== */
.course-skills {
    margin-bottom: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border-dark);
}

.course-skills .label {
    font-size: 10px;
    margin-bottom: 8px;
    display: block;
}

.price-section {
    display: flex;
    flex-direction: column;
}

.emi-option {
    font-size: 12px;
    color: var(--color-success);
    margin-top: 4px;
}

.course-certificate {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-dark);
    font-size: 12px;
    color: var(--text-muted);
}

.course-certificate svg {
    width: 16px;
    height: 16px;
    color: var(--color-primary);
}

.courses-cta {
    text-align: center;
    margin-top: 50px;
}

/* ===== WEBINARS SECTION ===== */
.webinars-section {
    background: var(--bg-darker);
}

.webinars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.webinar-card {
    background: var(--bg-dark);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
}

.webinar-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-glow);
}

.webinar-card.upcoming {
    border-color: var(--color-success);
}

.webinar-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.live-badge {
    background: var(--color-success);
    color: var(--bg-white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.premium-badge {
    background: var(--color-warning);
    color: var(--bg-dark);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.webinar-date {
    font-size: 12px;
    color: var(--text-muted);
}

.webinar-card h4 {
    margin-bottom: 12px;
    color: var(--text-light);
}

.webinar-card > p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.webinar-features {
    margin-bottom: 24px;
}

.webinar-features li {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.webinar-features li::before {
    content: '•';
    color: var(--color-primary);
    position: absolute;
    left: 0;
}

/* ===== MENTORSHIP SECTION ===== */
.mentorship-section {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    position: relative;
    overflow: hidden;
}

.mentorship-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at 70% 50%, rgba(46, 184, 166, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.mentorship-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.mentorship-info .label {
    margin-bottom: 12px;
    display: block;
}

.mentorship-info h2 {
    margin-bottom: 20px;
}

.mentorship-info > p {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.7;
}

.mentorship-features {
    margin-bottom: 30px;
}

.mentorship-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 16px;
}

.mentorship-features li svg {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.mentorship-cta {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 16px;
}

.mentorship-price .price {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-primary);
}

.mentorship-price .period {
    font-size: 1rem;
    color: var(--text-muted);
}

.mentorship-note {
    font-size: 13px;
    color: var(--text-muted);
    font-style: italic;
}

.mentorship-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mentorship-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mentorship-stat {
    background: var(--bg-darker);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-lg);
    padding: 30px 40px;
    text-align: center;
}

.mentorship-stat h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.mentorship-stat p {
    color: var(--text-muted);
    font-size: 14px;
}

/* ===== VIDEO TESTIMONIALS ===== */
.video-testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.video-testimonial-card {
    background: var(--bg-dark);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.video-testimonial-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-glow);
}

.video-placeholder {
    height: 180px;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-darkest) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.video-placeholder svg {
    width: 48px;
    height: 48px;
    color: var(--color-primary);
    opacity: 0.8;
}

.video-placeholder span {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.video-info {
    padding: 20px;
}

.video-info h5 {
    font-size: 15px;
    margin-bottom: 4px;
    color: var(--text-light);
}

.video-info p {
    font-size: 13px;
    color: var(--text-muted);
}

/* ===== SOCIAL PROOF NOTIFICATION ===== */
.social-proof-notification {
    position: fixed;
    bottom: 100px;
    left: 30px;
    background: var(--bg-darker);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 998;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.5s ease-out;
    max-width: 320px;
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.notification-avatar {
    width: 44px;
    height: 44px;
    background: rgba(46, 184, 166, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.notification-avatar svg {
    width: 22px;
    height: 22px;
    color: var(--color-primary);
}

.notification-text {
    display: flex;
    flex-direction: column;
}

.notification-text strong {
    font-size: 14px;
    color: var(--text-light);
}

.notification-text span {
    font-size: 12px;
    color: var(--text-muted);
}

.notification-text small {
    font-size: 11px;
    color: var(--color-primary);
    margin-top: 4px;
}

.notification-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    position: absolute;
    top: 8px;
    right: 12px;
}

.notification-close:hover {
    color: var(--text-light);
}

/* ===== CTA BUTTONS ===== */
.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.cta-banner .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--bg-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-banner .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* ===== INLINE CTA ===== */
.cta-inline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 50px;
    background: rgba(46, 184, 166, 0.05);
    border: 1px solid rgba(46, 184, 166, 0.15);
    border-radius: var(--radius-xl);
}

.cta-inline-content {
    flex: 1;
}

.cta-inline-content h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 12px;
}

.cta-inline-content p {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 600px;
}

.cta-inline .btn {
    flex-shrink: 0;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .cta-inline {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
        gap: 24px;
    }

    .cta-inline-content p {
        max-width: 100%;
    }
}

/* ===== RESPONSIVE UPDATES ===== */
@media (max-width: 1024px) {
    .trust-badges-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .free-resources-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .mentorship-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .mentorship-features li {
        justify-content: center;
    }

    .mentorship-cta {
        justify-content: center;
        flex-wrap: wrap;
    }

    .mentorship-stats {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .video-testimonials {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .announcement-bar {
        top: 68px;
        padding: 10px 0;
    }

    .announcement-bar p {
        font-size: 12px;
    }

    .hero {
        padding-top: 140px;
    }

    .hero-trust {
        justify-content: center;
    }

    .trust-badges-grid {
        grid-template-columns: 1fr;
    }

    .free-resources-grid {
        grid-template-columns: 1fr;
    }

    .founder-credentials {
        justify-content: center;
    }

    .video-testimonials {
        grid-template-columns: 1fr;
    }

    .social-proof-notification {
        left: 20px;
        right: 20px;
        bottom: 80px;
        max-width: none;
    }

    .cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 150px;
    }

    .hero-trust {
        flex-direction: column;
        gap: 12px;
    }

    .founder-credentials {
        flex-direction: column;
        gap: 20px;
    }

    .mentorship-stats {
        flex-direction: column;
    }

    .mentorship-stat {
        padding: 20px;
    }
}

/* ===== COUNTDOWN & REGISTRATION SECTION ===== */
.countdown-register-section {
    padding: 60px 0;
    background: var(--bg-darker);
    border-bottom: 1px solid var(--border-dark);
}

/* ===== INLINE REGISTRATION FORM ===== */
.register-form-section {
    background: linear-gradient(135deg, rgba(46, 184, 166, 0.1) 0%, rgba(46, 184, 166, 0.05) 100%);
    border: 1px solid rgba(46, 184, 166, 0.2);
    border-radius: var(--radius-xl);
    padding: 50px;
    margin-top: 40px;
}

.register-form-section h3 {
    text-align: center;
    margin-bottom: 8px;
    font-size: 1.5rem;
}

.register-form-section > p {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.register-form-inline {
    display: flex;
    gap: 16px;
    max-width: 600px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.register-form-inline input {
    flex: 1;
    min-width: 200px;
    padding: 16px 20px;
    background: var(--bg-dark);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-md);
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 14px;
    transition: var(--transition);
}

.register-form-inline input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(46, 184, 166, 0.1);
}

.register-form-inline .btn {
    white-space: nowrap;
}

/* ===== COUNTDOWN TIMER ===== */
.countdown-section {
    text-align: center;
    padding: 30px 0;
}

.countdown-label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.countdown-item {
    background: var(--bg-darker);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    min-width: 90px;
    text-align: center;
}

.countdown-item .number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-primary);
    line-height: 1;
}

.countdown-item .label {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
}

/* ===== SOCIAL PROOF SECTION ===== */
.social-proof-section {
    padding: 60px 0;
    background: var(--bg-darker);
}

.proof-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

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

.proof-stat .number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-primary);
}

.proof-stat .text {
    font-size: 14px;
    color: var(--text-muted);
}

/* ===== MENTOR SECTION ===== */
.mentor-section {
    padding: 80px 0;
}

.mentor-content {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 50px;
    align-items: center;
}

.mentor-image {
    position: relative;
}

.mentor-photo {
    width: 280px;
    height: 280px;
    border-radius: var(--radius-xl);
    background: var(--bg-darker);
    border: 1px solid var(--border-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.mentor-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mentor-photo-placeholder {
    width: 100px;
    opacity: 0.5;
}

.mentor-image::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 28px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    z-index: -1;
    opacity: 0.3;
}

.mentor-info .label {
    margin-bottom: 12px;
    display: block;
}

.mentor-info h3 {
    margin-bottom: 8px;
    font-size: 1.75rem;
}

.mentor-info .title {
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.mentor-info p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.mentor-credentials {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

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

.mentor-credential .number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-primary);
}

.mentor-credential .text {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== URGENCY BADGE ===== */
.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: var(--color-error);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    animation: pulse 2s infinite;
}

.urgency-badge svg {
    width: 16px;
    height: 16px;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* ===== RESPONSIVE FOR NEW COMPONENTS ===== */
@media (max-width: 768px) {
    .register-form-section {
        padding: 30px 20px;
    }

    .register-form-inline {
        flex-direction: column;
    }

    .register-form-inline input {
        min-width: 100%;
    }

    .countdown-item {
        min-width: 70px;
        padding: 16px;
    }

    .countdown-item .number {
        font-size: 1.75rem;
    }

    .proof-stats {
        gap: 30px;
    }

    .mentor-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .mentor-image {
        margin: 0 auto;
    }

    .mentor-photo {
        width: 200px;
        height: 200px;
    }

    .mentor-credentials {
        justify-content: center;
    }
}
