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

:root {
    --aiminds-body-font: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    /* Brand accent — AI CERTs gold (aligned with /agentic-ai-masterclass) */
    --aiminds-accent: #cfa935;
    --aiminds-accent-hover: #a67c1a;
    --aiminds-accent-soft: rgba(207, 169, 53, 0.16);
    --primary: #cfa935;
    --primary-hover: #a67c1a;
    /* Legacy name: second stop for gradients (was teal; now deep gold) */
    --brand-teal: #b8942a;
    --bg-main: #fafaf9;
    --bg-card: #ffffff;
    --bg-subtle: #f5f2eb;
    --text-main: #0c1222;
    --text-muted: #5c6370;
    --text-on-brand: #ffffff;
    --border-color: #e8e6e3;
    --input-border: #d4d0c8;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--brand-teal) 100%);
    --aiminds-heading-font: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    /* Golden / white / black system (surfaces + ink — matches agentic masterclass) */
    --site-white: #ffffff;
    --site-ink: #0c1222;
    --site-charcoal: #1c1914;
    --site-divider: #ebe8e2;
}

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

a {
    text-decoration: none;
}

html {
    font-size: 18px; /* 40+ readability baseline */
    scroll-behavior: smooth;
    scroll-padding-top: 72px;
    /* Header height (64px) + breathing room */
}

body {
    font-size: 1.0625rem;
    font-family: var(--aiminds-body-font, 'Montserrat', sans-serif);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    padding-top: 64px;
    /* Compensate for fixed header */
    padding-bottom: 80px;
}

/* ── Montserrat for all headings ─────────────────────────── */
h1, h2, h3, h4, h5, h6,
.section-heading,
.section-title,
.companies-heading,
.benefits-heading,
.alumni-heading,
.reviews-heading,
.webinar-hero-section .hero-content h1,
.hero-title,
.card-title {
    font-family: var(--aiminds-heading-font);
}

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

/* Home page: full width */
body.home-page .container {
    max-width: 1400px !important;
}

body.home-page .learn-seats-wrap {
    max-width: 100%;
    padding-left: 4rem;
    padding-right: 4rem;
}

/* Landing page (webinar etc): full width */
body.landing-page .container,
body.landing-page .companies-heading-wrap,
body.landing-page .benefits-inner,
body.landing-page .course-upsell-section,
body.landing-page .certificate-section {
    max-width: 1400px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

body.landing-page .companies-heading-wrap {
    padding-left: 2rem;
    padding-right: 2rem;
}

body.landing-page .masonry-grid {
    max-width: 100%;
}


/* --- Hero & Page Spacing --- */
.page-header-section,
.thank-you-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

@media (max-width: 768px) {

    .page-header-section,
    .thank-you-section {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }
}

/* --- Modern Minimal Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 2000;
    display: flex;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: var(--aiminds-heading-font, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
}

.navbar__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    padding: 0 1.5rem;
    margin: 0 auto;
}

/* Header: horizontal logo (primary) */
.navbar__logo .logo-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.navbar__logo .logo-img,
.logo-img {
    height: 30px;
    width: auto;
    max-height: 34px;
    display: block;
    object-fit: contain;
    object-position: left center;
    transition: transform 0.3s ease;
}

.navbar__logo .logo-school {
    font-size: 0.75rem;
    font-weight: 600;
    color: #475569;
    letter-spacing: 0.5px;
    margin-left: 36px;
    margin-top: -4px;
}

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

.nav-list {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: #334155;
    text-decoration: none;
    padding: 0.5rem 0;
    transition: all 0.2s ease;
    position: relative;
    display: inline-block;
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--aiminds-accent);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--aiminds-accent);
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.is-active::after {
    width: 100%;
}

/* WhatsApp Nav Button */
.nav-btn-whatsapp {
    color: #1f2937 !important;
    background: #f0fdf4 !important;
    border: 1.5px solid #22c55e !important;
    border-radius: 6px !important;
    padding: 0.45rem 1rem !important;
    font-weight: 600 !important;
    font-size: 0.875rem !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.nav-btn-whatsapp:hover {
    background: #dcfce7 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.15) !important;
    border-color: #16a34a !important;
}

/* Mentor Nav Button */
.nav-btn-mentor {
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    color: #64748b !important;
    border: 1.5px solid var(--border-color) !important;
    border-radius: 6px !important;
    padding: 0.45rem 1rem !important;
    transition: all 0.3s ease !important;
}

.nav-btn-mentor:hover {
    background: var(--bg-main) !important;
    color: var(--text-main) !important;
    border-color: #94a3b8 !important;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 2100;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.hamburger {
    width: 24px;
    height: 18px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--site-charcoal);
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.65, 0, 0.35, 1);
}

@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: white;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 2050;
        padding-top: 2rem;
        overflow-y: auto;
    }

    .navbar__nav.is-active {
        right: 0;
    }

    .mobile-menu-header {
        display: block !important;
        text-align: center;
        padding: 1.5rem 0 2rem;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        width: 100%;
        padding: 0 2rem;
    }

    .nav-link {
        font-size: 1.1rem;
        font-weight: 600;
    }

    .nav-btn-whatsapp {
        font-size: 0.95rem !important;
        padding: 0.75rem 1.5rem !important;
    }

    .nav-btn-mentor {
        font-size: 1rem !important;
        padding: 0.75rem 1.75rem !important;
    }

    .mobile-nav-toggle.is-active .hamburger span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-nav-toggle.is-active .hamburger span:nth-child(2) {
        opacity: 0;
    }

    .mobile-nav-toggle.is-active .hamburger span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .no-scroll {
        overflow: hidden;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(180deg, #d9bc4e 0%, #cfa935 50%, #b8942a 100%);
    color: #0c1222;
    box-shadow: 0 4px 14px rgba(207, 169, 53, 0.35);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.btn-primary:hover {
    background: linear-gradient(180deg, #e0c55a 0%, #d4af37 50%, #c9a227 100%);
    color: #0c1222;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(207, 169, 53, 0.42);
}

/* Register / Pay CTAs — same gold system as primary (was green) */
.btn-primary.js-razorpay-sticky,
.btn-primary.js-razorpay-pay,
.btn-primary.btn-cta-green {
    background: linear-gradient(180deg, #d9bc4e 0%, #cfa935 50%, #b8942a 100%);
    color: #0c1222;
    box-shadow: 0 4px 14px rgba(207, 169, 53, 0.38);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.btn-primary.js-razorpay-sticky:hover,
.btn-primary.js-razorpay-pay:hover,
.btn-primary.btn-cta-green:hover {
    background: linear-gradient(180deg, #e0c55a 0%, #d4af37 50%, #c9a227 100%);
    color: #0c1222;
    box-shadow: 0 6px 20px rgba(207, 169, 53, 0.48);
}

.btn-discount {
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.95;
    margin-left: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-lg {
    padding: 1rem 3rem;
    font-size: 1.125rem;
}

.full-width {
    width: 100%;
}

/* Animated CTA */
.animated-cta-block {
    text-align: center;
    margin-top: 1.5rem;
    margin-bottom: 0;
}

.animated-cta-block .animated-cta-wrapper {
    display: inline-block;
}

.animated-cta-block .animated-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    color: var(--text-on-brand);
    background: var(--primary);
    box-shadow: 0 4px 14px rgba(217, 37, 98, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.animated-cta-block .animated-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.animated-cta-block .animated-cta-btn:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 8px 20px rgba(217, 37, 98, 0.45);
    background: var(--primary-hover);
}

.animated-cta-block .animated-cta-btn:hover::before {
    left: 100%;
}

.animated-cta-block .animated-cta-btn .animated-cta-text {
    position: relative;
    z-index: 1;
}

/* Sections */
section {
    padding: 6rem 0;
}

.section-heading {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.centered {
    text-align: center;
}

.section-heading.centered,
.section-sub.centered {
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.section-heading.light {
    color: #fff;
}

.section-sub.light {
    color: rgba(255, 255, 255, 0.85);
}

/* Hero */
/* Page Header Section */
.page-header-section {
    background: linear-gradient(135deg, var(--text-main) 0%, var(--site-charcoal) 100%);
    color: #fff;
    padding: 4rem 0 3rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-header-content {
    max-width: 100%;
    padding: 0 4rem;
    margin: 0 auto;
}

.page-header-title {
    font-family: var(--aiminds-body-font);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.page-header-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-weight: 400;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.page-header-logistics {
    display: flex;
    align-items: left;
    justify-content: left;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    /* padding: 1.25rem 2rem; */
    /* background: rgba(4, 161, 166, 0.08); */
    /* border-radius: 12px; */
    /* border: 1.5px solid rgba(4, 161, 166, 0.2); */
    width: 100%;
    margin: 0 auto;
    /* box-shadow: 0 2px 15px rgba(4, 161, 166, 0.15); */
}

.page-header-logistics-date,
.page-header-logistics-time,
.page-header-logistics-platform {
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.page-header-logistics-separator {
    color: rgba(255, 255, 255, 0.4);
    margin: 0 0.5rem;
    font-weight: 300;
}

.landing-hero {
    background: var(--text-main);
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.landing-hero-grid {
    text-align: left;
}

/* Webinar Show Page Sections */
.webinar-hero-section {
    background: linear-gradient(135deg, var(--text-main) 0%, var(--site-charcoal) 100%);
    color: #fff;
    padding: 4rem 0;
}

.webinar-hero-section .hero-content h1 {
    color: #fff;
    font-family: var(--aiminds-heading-font);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.webinar-hero-section .subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    line-height: 1.7;
}

.webinar-content-section {
    background: #fff;
    color: var(--text-main);
    padding: 4rem 0;
}

.webinar-details-list {
    list-style: none;
    margin-bottom: 1.5rem;
    padding: 0;
    font-size: 0.95rem;
}

.webinar-hero-section .webinar-details-list {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(4, 161, 166, 0.15);
    border: 1px solid rgba(4, 161, 166, 0.3);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
}

.webinar-hero-section .webinar-details-list li {
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.95);
}

.webinar-hero-section .webinar-details-list li:last-child {
    margin-bottom: 0;
}

.webinar-hero-section .webinar-details-list strong {
    color: var(--aiminds-accent);
    font-weight: 700;
}

.hero-grid {
    display: grid;
    gap: 2rem;
}

.hero-grid-hero {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
}

@media (max-width: 900px) {
    .hero-grid-hero {
        grid-template-columns: 1fr;
    }

    .form-card-hero {
        order: 2;
    }
}

.hero-content-hero {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hero-content-hero>* {
    transition: opacity 0.3s ease;
}

.badge {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    border-radius: 9999px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.landing-badge {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.landing-title {
    font-family: var(--aiminds-heading-font);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #fff;
}

.landing-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-weight: 400;
}

.hero-inside-masterclass-section {
    margin-bottom: 2rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-inside-masterclass-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-inside-masterclass-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-inside-masterclass-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
}

.hero-inside-masterclass-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
    line-height: 1.2;
}

.hero-inside-masterclass-content {
    flex: 1;
}

.hero-inside-masterclass-content strong {
    color: #fff;
    font-weight: 600;
}

.hero-why-joining-section {
    background: rgba(4, 161, 166, 0.06);
    border-left: 3px solid var(--aiminds-accent);
    border-radius: 12px;
    padding: 1.75rem;
    margin-bottom: 0;
    border: 1px solid rgba(4, 161, 166, 0.15);
}

.hero-why-joining-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}

.hero-why-joining-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.hero-why-joining-text strong {
    color: #fff;
    font-weight: 700;
}

.hero-why-joining-quote {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    font-style: italic;
    line-height: 1.5;
    margin: 0;
    padding-left: 1rem;
    border-left: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-what-makes-different-section {
    margin-bottom: 2rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-what-makes-different-title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}

.hero-what-makes-different-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hero-what-makes-different-item {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.5;
    padding-left: 1.5rem;
    position: relative;
}

.hero-what-makes-different-item::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--aiminds-accent);
    font-weight: 700;
}

.hero-what-makes-different-item strong {
    color: #fff;
    font-weight: 600;
}

.hero-logistics-section {
    margin-bottom: 2rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-logistics-inline {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.hero-logistics-date,
.hero-logistics-time,
.hero-logistics-platform {
    color: #fff;
    font-weight: 600;
}

.hero-logistics-separator {
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0.25rem;
}

.hero-cta-text {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-cta-text p {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.when-how-hero {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    margin-bottom: 2rem;
}

.when-how-hero-item {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
}

.hero-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem 2rem;
}

.hero-metric-item {
    text-align: left;
}

.hero-metric-value {
    font-family: var(--aiminds-heading-font);
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}

.hero-metric-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
}

/* Form card */
.form-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
    color: var(--text-main);
}

.form-card-title {
    font-family: var(--aiminds-heading-font);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.form-card-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.35rem;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--input-border);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(217, 37, 98, 0.15);
}

.form-control::placeholder {
    color: #9ca3af;
}

.form-trust-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.25rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.form-footer-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Companies section */
/* Session Logistics Section */
.session-logistics-section {
    background: #f9fafb;
    padding: 3rem 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.session-logistics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.session-logistics-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: all 0.2s ease;
}

.session-logistics-item:hover {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    border-color: #d1d5db;
}

.session-logistics-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(4, 161, 166, 0.1) 0%, rgba(4, 161, 166, 0.05) 100%);
    border-radius: 12px;
    border: 1px solid rgba(4, 161, 166, 0.2);
}

.session-logistics-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.session-logistics-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.session-logistics-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.2;
}

.companies-section {
    padding: 4rem 0;
    background: var(--bg-main);
    color: var(--text-main);
}

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

.companies-heading {
    font-family: var(--aiminds-heading-font);
    font-size: clamp(1.85rem, 4.5vw, 2.75rem);
    font-weight: 700;
    color: var(--text-main);
    text-align: center;
    margin-bottom: 2.5rem;
    line-height: 1.3;
}

.companies-heading-span {
    display: inline-block;
    position: relative;
}

.companies-heading-underline {
    display: block;
    margin-top: 0.35rem;
    line-height: 0;
}

.companies-heading-underline svg {
    width: 100%;
    max-width: 280px;
    height: auto;
    display: block;
}

.companies-logo-wrapper {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

.companies-logo-wrapper:hover .companies-logo-track {
    animation-play-state: paused;
}

.companies-logo-track {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 2rem;
    padding: 0.5rem 0;
    animation: companies-marquee 50s linear infinite;
    width: max-content;
}

@keyframes companies-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.companies-logo-card {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 250px;
    max-width: 250px;
    height: 140px;
    padding: 1.25rem;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.companies-logo-card:hover {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    border-color: #d1d5db;
}

.companies-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-height: 100px;
}

@media (max-width: 640px) {
    .companies-logo-track {
        gap: 1.25rem;
        animation-duration: 40s;
    }

    .companies-logo-card {
        width: 160px;
        max-width: 160px;
        height: 96px;
        padding: 1rem;
    }

    .companies-logo-img {
        max-height: 56px;
    }
}

/* Who's Taking It */
.landing-section {
    padding: 5rem 0;
}

/* Free Resources Section - What You Will Get */
.free-resource-card:hover {
    border-color: var(--aiminds-accent) !important;
    box-shadow: 0 4px 12px rgba(4, 161, 166, 0.12) !important;
    background: #ffffff !important;
}

.landing-who-reserve {
    background: #fff;
    color: var(--text-main);
}

.who-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

@media (max-width: 768px) {
    .who-grid {
        grid-template-columns: 1fr;
    }
}

.who-col-photo {
    order: 1;
}

.who-col-content {
    order: 2;
}

@media (max-width: 768px) {

    .who-col-photo,
    .who-col-content {
        order: unset;
    }
}

.instructor-img-wrapper {
    max-width: 100%;
}

.instructor-img {
    width: 100%;
    display: block;
    border-radius: 0.5rem;
}

.instructor-img-compact {
    max-width: 480px;
}

.instructor-role {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: block;
}

.instructor-title {
    font-size: 1.2rem;
    color: var(--text-main);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.instructor-desc {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.instructor-bullets {
    list-style: none;
    margin-bottom: 1.5rem;
    color: var(--text-main);
    font-size: 0.95rem;
}

.instructor-bullets li {
    margin-bottom: 0.35rem;
}

.instructor-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 1.25rem 1.5rem;
    margin-top: 1.25rem;
}

.instructor-logo-img {
    height: 120px;
    width: auto;
    max-width: 240px;
    object-fit: contain;
    opacity: 0.9;
    transition: opacity 0.2s;
}

.instructor-logo-img:hover {
    opacity: 1;
}

/* Learning */
.learning-section {
    background: #fff;
    color: var(--text-main);
}

.demos-teaser {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1rem;
    max-width: 700px;
    margin: 0 auto 1.5rem;
}

.demos-teaser-badge {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--brand-teal);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.demos-teaser-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.toc-list {
    max-width: 700px;
    margin: 0 auto;
    padding-left: 1.5rem;
    color: var(--text-main);
    line-height: 1.6;
}

.toc-list li {
    margin-bottom: 1rem;
}

/* Benefits */
.benefits-section {
    position: relative;
    background: var(--site-charcoal);
    color: #fff;
    padding: 4rem 0 5rem;
    overflow: hidden;
}

.benefits-bg {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.benefits-inner {
    position: relative;
    z-index: 1;
}

.benefits-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.benefits-heading {
    font-family: var(--aiminds-heading-font);
    font-size: clamp(1.85rem, 4.5vw, 2.75rem);
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.5rem 0;
}

.benefits-subheading {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.benefits-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    overflow: hidden;
}

.benefit-item:first-child {
    border-radius: 0.75rem 0.75rem 0 0;
}

.benefit-item:not(:last-child) {
    border-bottom: none;
}

.benefit-item:last-child {
    border-radius: 0 0 0.75rem 0.75rem;
}

.benefit-item[open] {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
}

.benefit-summary {
    list-style: none;
    cursor: pointer;
    padding: 1.25rem 1.5rem;
    display: block;
    transition: background 0.2s ease;
}

.benefit-summary:hover {
    background: rgba(255, 255, 255, 0.06);
}

.benefit-title-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-icon-wrap {
    flex-shrink: 0;
}

.benefit-icon {
    display: block;
}

.benefit-description {
    flex: 1;
    min-width: 0;
}

.benefit-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.25rem 0;
}

.benefit-teaser {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

.benefit-toggle {
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.6);
}

.benefit-content-wrap {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease-out;
}

.benefit-item[open] .benefit-content-wrap {
    grid-template-rows: 1fr;
}

.benefit-content-wrap>.benefit-content {
    overflow: hidden;
    min-height: 0;
}

.benefit-content {
    padding: 1rem 1.5rem 1.5rem;
    padding-left: calc(1.5rem + 48px + 1rem);
}

.benefit-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 640px) {
    .benefit-content {
        padding: 1rem 1.5rem 1.5rem;
        padding-left: 1.5rem;
    }
}

/* Resources */
.resources-section {
    background: #fff;
    color: var(--text-main);
}

.resources-section .section-heading.light,
.resources-section .section-sub.light {
    color: var(--text-main);
}

.resources-section .resources-list {
    list-style: none;
    max-width: 560px;
    margin: 2rem auto 0;
    padding: 0;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-main);
}

.resources-section .resources-list li {
    margin-bottom: 1rem;
    padding-left: 0;
}

/* Value Comparison Section */
.value-comparison-section {
    padding: 4rem 0;
    background: #fff;
}

.value-comparison-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 3rem auto 0;
}

.value-comparison-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.value-pay-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--brand-teal) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-pay-card .value-card-title {
    color: #fff;
    margin-bottom: 1rem;
}

.value-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.value-price-current {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.value-price-old {
    font-size: 1.25rem;
    text-decoration: line-through;
    opacity: 0.8;
}

.value-price-discount {
    font-size: 1rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.25);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    margin-top: 0.25rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.value-price-note {
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 0.5rem;
}

.value-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.value-get-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.value-get-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #e5e7eb;
}

.value-get-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.value-get-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-subtle);
    border-radius: 8px;
}

.value-get-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.value-get-content strong {
    font-size: 1.05rem;
    color: var(--text-main);
    font-weight: 600;
}

.value-get-content span {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.value-total {
    padding-top: 1.5rem;
    border-top: 1.5px solid #e5e7eb;
    text-align: center;
}

.value-total-label {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.value-total-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.value-total-savings {
    font-size: 1rem;
    color: #059669;
    font-weight: 600;
}

/* WhatsApp Community Section */
.whatsapp-community-section {
    padding: 5rem 0;
    background: #fff;
}

.whatsapp-community-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.whatsapp-community-content {
    text-align: center;
}

.whatsapp-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
}

.whatsapp-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.whatsapp-benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem;
    background: #fff;
    border-radius: 12px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-main);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.whatsapp-benefit-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    margin-top: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp svg {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

.whatsapp-note {
    margin-top: 1rem;
    font-size: 1rem;
    color: var(--text-muted);
}

/* Alumni */
.alumni-section {
    padding: 5rem 0;
    background: #fff;
    color: var(--text-main);
}

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

.alumni-title-block {
    text-align: center;
    margin-bottom: 1.5rem;
}

.alumni-heading {
    font-family: var(--aiminds-heading-font);
    font-size: clamp(1.85rem, 4.5vw, 2.75rem);
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.3;
}

.alumni-heading-underline {
    display: block;
    margin-top: 0.35rem;
    line-height: 0;
}

.alumni-heading-underline svg {
    width: 100%;
    max-width: 200px;
    height: auto;
    display: block;
}

.learn-heading-underline {
    display: block;
    margin-top: 0.35rem;
    line-height: 0;
}

.learn-heading-underline svg {
    width: 100%;
    max-width: 200px;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.alumni-subheading {
    font-family: var(--aiminds-heading-font);
    font-size: 1.15rem;
    color: #334155;
}

.alumni-subheading span {
    color: var(--text-main);
    font-weight: 700;
}

.alumni-companies-wrapper {
    margin-top: 1.5rem;
}

.alumni-motivation {
    text-align: center;
    font-family: var(--aiminds-heading-font);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.alumni-logos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1.25rem;
}

.alumni-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 100px;
    padding: 0.75rem 1.25rem;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.alumni-logo-item:hover {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    border-color: #d1d5db;
}

.alumni-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-height: 75px;
}

@media (max-width: 640px) {
    .alumni-logos-grid {
        gap: 0.75rem 1rem;
    }

    .alumni-logo-item {
        width: 120px;
        height: 72px;
    }

    .alumni-logo-img {
        max-height: 48px;
    }
}

/* Wall of Love / Reviews */
.wall-of-love-section {
    background: #fff;
    padding: 5rem 0;
}

.reviews-section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.reviews-heading {
    font-family: var(--aiminds-heading-font);
    font-size: clamp(1.85rem, 4.5vw, 2.75rem);
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

.heading-stroke-span {
    display: inline-block;
    position: relative;
}

.heading-stroke {
    display: block;
    margin-top: 0.35rem;
    line-height: 0;
}

.heading-stroke svg {
    width: 100%;
    max-width: 230px;
    height: auto;
    display: block;
}

.reviews-subheading {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-align: center;
}

.masonry-grid {
    column-count: 3;
    column-gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .masonry-grid {
        column-count: 2;
    }
}

@media (max-width: 600px) {
    .masonry-grid {
        column-count: 1;
    }
}

.tweet-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 1.75rem;
    margin-bottom: 1.5rem;
    break-inside: avoid;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.tweet-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    border-color: #d1d5db;
}

.tweet-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.tweet-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--border-color);
    object-fit: cover;
}

.tweet-info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.tweet-name {
    font-weight: 700;
    color: var(--text-main);
}

.tweet-handle {
    font-size: 1rem;
    color: var(--text-muted);
}

.tweet-handle .company-tag {
    color: var(--brand-teal);
    font-weight: 600;
}

.tweet-body {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.5;
}

.tweet-highlight {
    background: rgba(217, 37, 98, 0.1);
    color: var(--primary);
    font-weight: 600;
    padding: 0 2px;
}

/* Reviews module (Google / Trustpilot / Course Report) */
.reviews-module-section-standalone {
    padding: 4rem 0;
    background: var(--bg-main);
}

.reviews-module-wrapper {
    margin-bottom: 0;
}

.reviews-module-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.5rem 2rem;
}

.reviews-module-section a {
    display: block;
    transition: opacity 0.2s, transform 0.2s;
}

.reviews-module-section a.reviews-module-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
    padding-top: 0px;
}

.reviews-module-section a:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.reviews-module-badge {
    display: block;
    width: 100%;
    max-width: 280px;
    height: auto;
    object-fit: contain;
}

.reviews-module-stars {
    font-size: 1rem;
    letter-spacing: 0.15em;
    color: #fbbc05;
    line-height: 1;
}

@media (max-width: 768px) {
    .reviews-module-section {
        gap: 1rem;
    }

    .reviews-module-badge {
        max-width: 240px;
    }
}

/* FAQ */
.faq-section {
    background: #fff;
}

.faq-list {
    max-width: 640px;
    margin: 0 auto;
}

.faq-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.faq-item:last-child {
    border-bottom: 0;
}

.faq-q {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.faq-a {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

/* CTA / Secure Your Seat */
.landing-cta-section {
    background: var(--text-main);
    color: #fff;
    padding: 4rem 0;
}

.landing-cta-section .section-heading {
    color: #fff;
}

.landing-cta-section .section-sub {
    color: rgba(255, 255, 255, 0.85);
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.card-audience {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.card-audience:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.card-audience h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.75rem;
}

@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .card-audience {
        padding: 1.5rem;
    }

    .card-audience h3 {
        font-size: 1.25rem;
    }
}

.cta-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
}

@media (max-width: 768px) {
    .cta-grid {
        grid-template-columns: 1fr;
    }
}

.landing-cta-section .cta-meta {
    list-style: none;
    margin: 0 0 2rem;
    padding: 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.landing-cta-section .cta-meta li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.landing-cta-section .cta-meta li:last-of-type {
    border-bottom: 0;
}

.guarantee-block {
    max-width: 400px;
    padding: 1.75rem;
    background: #fff;
    border: 1.5px dashed var(--aiminds-accent);
    border-radius: 16px;
}

.guarantee-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.guarantee-block h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.guarantee-block p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

/* Sticky bar */
.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 1rem 0;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.06);
    z-index: 1000;
    border-top: 1px solid #e5e7eb;
}

.sticky-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.sticky-price {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.sticky-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.sticky-val {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
}

.sticky-old {
    font-size: 0.9rem;
    font-weight: 400;
    text-decoration: line-through;
    color: var(--text-muted);
    margin-left: 0.5rem;
}

.sticky-discount {
    font-size: 1rem;
    font-weight: 700;
    color: #059669;
    background: #d1fae5;
    padding: 0.2rem 0.6rem;
    border-radius: 9999px;
    margin-left: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sticky-bar .btn {
    display: inline-flex;
}

/* Registration Modal */
.registration-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.registration-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
}

.registration-modal-content {
    position: relative;
    z-index: 10001;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.registration-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10002;
    transition: all 0.2s ease;
}

.registration-modal-close:hover {
    background: rgba(0, 0, 0, 0.15);
    transform: rotate(90deg);
}

.registration-modal-content .form-card {
    margin: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.registration-modal-content .form-card-title {
    margin-top: 0;
}

@media (max-width: 768px) {
    .registration-modal {
        padding: 0.5rem;
    }

    .registration-modal-content {
        max-width: 100%;
        max-height: 95vh;
    }

    .registration-modal-close {
        top: 0.75rem;
        right: 0.75rem;
        width: 32px;
        height: 32px;
        font-size: 1.25rem;
    }

    .registration-modal-content .form-card {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .sticky-bar {
        padding: 0.5rem 0;
        padding-bottom: max(0.5rem, env(safe-area-inset-bottom, 0px));
        padding-left: env(safe-area-inset-left, 0);
        padding-right: env(safe-area-inset-right, 0);
    }

    .sticky-bar .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .sticky-content {
        gap: 0.75rem;
        flex-wrap: nowrap;
        min-height: 0;
    }

    .sticky-price {
        min-width: 0;
        flex-shrink: 0;
    }

    .sticky-label {
        font-size: 1rem;
    }

    .sticky-val {
        font-size: 1.1rem;
    }

    .sticky-old {
        font-size: 0.8rem;
        margin-left: 0.35rem;
    }

    .sticky-discount {
        font-size: 1rem;
        padding: 0.15rem 0.5rem;
        margin-left: 0.35rem;
    }

    .sticky-bar .btn {
        flex-shrink: 0;
        min-height: 44px;
        min-width: 120px;
        padding: 0.6rem 1rem;
        font-size: 0.9375rem;
    }
}

@media (max-width: 400px) {
    .sticky-val {
        font-size: 1rem;
    }

    .sticky-bar .btn {
        min-width: 100px;
        padding: 0.55rem 0.85rem;
        font-size: 1rem;
    }
}

/* Footer */
.site-footer {
    background: #000;
    color: rgba(255, 255, 255, 0.85);
    padding: 3rem 0;
    margin-top: 0;
    width: 100%;
    max-width: 100%;
}

.site-footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    text-align: center;
    width: 100%;
    max-width: 100%;
}

.site-footer-logo {
    display: block;
}

.site-footer-logo img {
    height: 36px;
    width: auto;
    max-height: 42px;
    display: block;
    object-fit: contain;
    object-position: left center;
}

.site-footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 1.5rem;
}

.site-footer-nav a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
}

.site-footer-nav a:hover {
    color: #fff;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    text-align: left;
}

.footer-section-title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}

.footer-link-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-link-list li {
    margin-bottom: 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.footer-link-list a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.95rem;
    display: block;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.footer-link-list a:hover {
    color: #fff;
}

.footer-section {
    min-width: 0;
    overflow: hidden;
}

.footer-links-grid {
    grid-template-columns: repeat(3, 1fr);
}

.site-footer-copy {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Thank You Page */
.thank-you-page {
    padding-bottom: 0;
}

.thank-you-section {
    padding: 4rem 0;
    background: var(--bg-main);
    min-height: calc(100vh - 200px);
}

.thank-you-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thank-you-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--aiminds-accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(4, 161, 166, 0.3);
}

.thank-you-title {
    font-family: var(--aiminds-heading-font);
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.thank-you-sub {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.thank-you-email-confirmation {
    background: #dcfce7;
    border: 1px solid #86efac;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 0 auto 2rem;
    max-width: 600px;
    text-align: left;
}

.thank-you-email-confirmation p {
    margin: 0 0 0.75rem 0;
    color: #166534;
    font-weight: 600;
}

.thank-you-email-confirmation ul {
    margin: 0.75rem 0 0 0;
    padding-left: 1.5rem;
    color: #166534;
}

.thank-you-email-confirmation li {
    margin-bottom: 0.5rem;
}

.thank-you-section-title {
    font-family: var(--aiminds-heading-font);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    margin: 2.5rem 0 1.5rem;
    text-align: center;
}

.thank-you-session-info {
    margin: 2rem 0;
}

.thank-you-session-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
}

.thank-you-session-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--site-divider);
}

.thank-you-session-item:last-child {
    border-bottom: none;
}

.thank-you-session-label {
    font-weight: 600;
    color: var(--text-muted);
}

.thank-you-session-value {
    color: var(--text-main);
    font-weight: 600;
}

.thank-you-timeline {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.thank-you-timeline-item {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 2rem;
    position: relative;
}

.thank-you-timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 19px;
    top: 48px;
    width: 2px;
    height: calc(100% - 16px);
    background: var(--border-color);
}

.thank-you-timeline-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: var(--aiminds-accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.thank-you-timeline-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    margin: 0 0 0.35rem 0;
}

.thank-you-timeline-content p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.6;
}

.thank-you-whatsapp {
    background: #fff;
    border: 2px solid #25D366;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.thank-you-whatsapp-desc {
    margin-bottom: 1rem;
    color: var(--text-main);
    line-height: 1.6;
}

.thank-you-whatsapp-hint {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.45);
}

.thank-you-whatsapp-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.75rem;
    margin-bottom: 0;
}

.thank-you-no-whatsapp {
    background: #fef3c7;
    border: 1px solid #fcd34d;
    border-radius: 8px;
    padding: 1.25rem;
    margin: 2rem 0;
    color: #92400e;
}

.thank-you-resources {
    margin: 3rem 0;
}

.thank-you-resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.thank-you-resource-item {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.thank-you-resource-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.thank-you-resource-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.thank-you-resource-item h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
    margin: 0 0 0.5rem 0;
}

.thank-you-resource-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}

.thank-you-resources-note {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.thank-you-support {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.thank-you-support h2 {
    text-align: center;
}

.thank-you-support ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
}

.thank-you-support li {
    margin-bottom: 0.75rem;
    color: var(--text-main);
}

.thank-you-support a {
    color: var(--aiminds-accent);
    text-decoration: none;
    font-weight: 600;
}

.thank-you-support a:hover {
    text-decoration: underline;
}

.thank-you-actions {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.thank-you-back {
    display: inline-block;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.thank-you-back:hover {
    color: var(--primary);
}

@media (max-width: 768px) {
    .thank-you-section {
        padding: 2.5rem 0;
    }

    .thank-you-icon {
        width: 64px;
        height: 64px;
        font-size: 2rem;
    }

    .thank-you-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .thank-you-sub {
        font-size: 1rem;
    }

    .thank-you-section-title {
        font-size: 1.25rem;
        margin: 2rem 0 1rem;
    }

    .thank-you-session-card {
        padding: 1.25rem;
    }

    .thank-you-timeline-item {
        gap: 1rem;
    }

    .thank-you-timeline-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .thank-you-timeline-item:not(:last-child)::after {
        left: 17px;
        top: 44px;
    }

    .thank-you-whatsapp {
        padding: 1.5rem;
    }

    .thank-you-resources-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .thank-you-resource-item {
        padding: 1.25rem;
    }
}

/* Razorpay */
.razorpay-toast {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    max-width: 90%;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    box-shadow: var(--shadow-xl);
}

.razorpay-toast--error {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

.razorpay-payment-done-msg {
    padding: 0.75rem 1rem;
    background: #dcfce7;
    color: #166534;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

/* Mobile – full-page optimization */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    section {
        padding: 3rem 0;
    }

    .landing-section,
    .companies-section,
    .alumni-section,
    .wall-of-love-section,
    .reviews-module-section-standalone,
    .session-logistics-section {
        padding: 3rem 0;
    }

    .session-logistics-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 100%;
    }

    .session-logistics-item {
        padding: 1rem;
    }

    .session-logistics-icon {
        width: 48px;
        height: 48px;
        font-size: 1.75rem;
    }

    .session-logistics-value {
        font-size: 1rem;
    }

    .landing-page .btn-lg {
        font-size: 1.0625rem;
        padding: 0.85rem 1.5rem;
        min-height: 44px;
    }

    .landing-hero {
        padding: 2.5rem 0 3rem;
    }

    .landing-hero-grid .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .hero-grid-hero {
        gap: 2rem;
    }

    .landing-title {
        font-size: clamp(2rem, 7vw, 2.75rem);
    }

    .landing-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-inside-masterclass-section {
        margin-bottom: 1.5rem;
        padding: 1rem;
    }

    .hero-inside-masterclass-title {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .hero-inside-masterclass-item {
        font-size: 0.9rem;
        gap: 0.6rem;
    }

    .hero-inside-masterclass-icon {
        font-size: 1.1rem;
    }

    .hero-why-joining-section {
        padding: 1.25rem;
        margin-bottom: 0;
    }

    .hero-why-joining-title {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }

    .hero-why-joining-text {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }

    .hero-why-joining-quote {
        font-size: 0.9rem;
        padding-left: 0.75rem;
    }

    .hero-what-makes-different-section {
        margin-bottom: 1.25rem;
    }

    .hero-what-makes-different-title {
        font-size: 0.95rem;
        margin-bottom: 0.6rem;
    }

    .hero-what-makes-different-item {
        font-size: 0.9rem;
        padding-left: 1.25rem;
    }

    .hero-logistics-section {
        margin-bottom: 1.5rem;
        padding: 0.75rem 0;
    }

    .hero-logistics-inline {
        font-size: 0.9rem;
        gap: 0.4rem 0.6rem;
    }

    .hero-cta-text {
        margin-top: 1.25rem;
        padding-top: 1.25rem;
    }

    .hero-cta-text p {
        font-size: 0.95rem;
    }

    .when-how-hero {
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
        align-items: flex-start;
    }

    .when-how-hero-item {
        font-size: 1rem;
    }

    .hero-metrics {
        gap: 1rem 1.5rem;
    }

    .hero-metric-value {
        font-size: 1.4rem;
    }

    .hero-metric-label {
        font-size: 0.8rem;
    }

    .form-card {
        padding: 1.5rem;
    }

    .form-card-hero {
        padding: 1.5rem;
    }

    .form-card-title {
        font-size: 1.25rem;
    }

    .form-card-desc {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    .form-control {
        padding: 0.65rem 1rem;
        font-size: 1rem;
        min-height: 44px;
    }

    .form-trust-row {
        gap: 0.75rem;
        font-size: 0.8rem;
        margin-top: 1rem;
        flex-wrap: wrap;
    }

    .companies-heading-wrap {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .companies-heading {
        margin-bottom: 1.5rem;
    }

    .who-grid {
        gap: 2rem;
    }

    .instructor-img-compact {
        max-width: 100%;
    }

    .instructor-title {
        font-size: 1.1rem;
    }

    .instructor-desc {
        font-size: 0.95rem;
    }

    .instructor-bullets {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }

    .instructor-logos {
        gap: 1rem;
    }

    .instructor-logo-img {
        height: 48px;
        max-width: 140px;
    }

    .section-heading.centered,
    .section-sub.centered {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .learning-section .section-heading {
        font-size: clamp(1.5rem, 4.5vw, 2rem);
    }

    .demos-teaser {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        margin-bottom: 1.25rem;
    }

    .demos-teaser-badge {
        font-size: 0.85rem;
    }

    .demos-teaser-text {
        font-size: 0.9rem;
    }

    .toc-list {
        padding-left: 1.25rem;
        max-width: 100%;
    }

    .toc-list li {
        margin-bottom: 0.85rem;
        font-size: 0.95rem;
    }

    .benefits-section {
        padding: 3rem 0 4rem;
    }

    .benefits-header {
        margin-bottom: 1.5rem;
    }

    .benefits-heading {
        font-size: clamp(1.5rem, 4.5vw, 2rem);
    }

    .benefits-subheading {
        font-size: 1rem;
    }

    .benefit-summary {
        padding: 1rem 1.25rem;
    }

    .benefit-title-box {
        gap: 0.75rem;
    }

    .benefit-title {
        font-size: 1rem;
    }

    .benefit-teaser {
        font-size: 0.85rem;
    }

    .benefit-icon {
        width: 48px;
        height: 48px;
    }

    .resources-section .resources-list {
        font-size: 0.95rem;
    }

    .value-comparison-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .value-comparison-card {
        padding: 1.5rem;
    }

    .value-price-current {
        font-size: 2.5rem;
    }

    .value-get-item {
        margin-bottom: 1rem;
        padding-bottom: 1rem;
    }

    .value-get-icon {
        width: 2rem;
        height: 2rem;
        font-size: 1.25rem;
    }

    .value-total-amount {
        font-size: 2rem;
    }

    .whatsapp-benefits {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .whatsapp-benefit-item {
        font-size: 1rem;
        padding: 0.875rem;
    }

    .whatsapp-icon-wrapper {
        width: 64px;
        height: 64px;
    }

    .alumni-title-block {
        margin-bottom: 1rem;
    }

    .alumni-heading {
        font-size: clamp(1.5rem, 4.5vw, 2rem);
    }

    .alumni-subheading {
        font-size: 1rem;
    }

    .alumni-motivation {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .reviews-section-header {
        margin-bottom: 1.5rem;
    }

    .reviews-heading {
        font-size: clamp(1.5rem, 4.5vw, 2rem);
    }

    .reviews-subheading {
        font-size: 1rem;
    }

    .tweet-card {
        padding: 1.25rem;
        margin-bottom: 1.25rem;
    }

    .tweet-body {
        font-size: 0.9rem;
    }

    .reviews-module-section-standalone {
        padding: 3rem 0;
    }

    .faq-item {
        padding: 1rem 0;
    }

    .faq-q {
        font-size: 1rem;
        margin-bottom: 0.35rem;
    }

    .faq-a {
        font-size: 0.9rem;
    }

    .landing-cta-section {
        padding: 3rem 0;
    }

    .landing-cta-section .section-heading {
        font-size: clamp(1.5rem, 4.5vw, 2rem);
    }

    .landing-cta-section .section-sub {
        font-size: 0.95rem;
    }

    .landing-cta-section .cta-meta {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .landing-cta-section .cta-meta li {
        padding: 0.4rem 0;
    }

    .guarantee-block {
        max-width: 100%;
        padding: 1.25rem;
    }

    .guarantee-block h3 {
        font-size: 1rem;
    }

    .guarantee-block p {
        font-size: 0.85rem;
    }

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

    .grid-2.cta-grid {
        gap: 1.5rem;
    }

    .landing-cta-section .form-card {
        padding: 1.5rem;
    }

    .animated-cta-block {
        margin-top: 1.25rem;
    }

    .animated-cta-block .animated-cta-btn {
        min-height: 44px;
        padding: 0.65rem 1.25rem;
        font-size: 0.9rem;
    }

    .site-footer {
        padding: 2rem 0;
    }

    .site-footer-inner {
        gap: 1rem;
    }

    .footer-links-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        text-align: left;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .footer-section-title {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

    .footer-link-list a {
        font-size: 0.9rem;
    }

    .footer-link-list li,
    .footer-link-list a {
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
    }

    .training-location-grid {
        grid-template-columns: 1fr !important;
    }

    .site-footer-nav {
        gap: 0.75rem 1rem;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .training-location-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .training-location-grid {
        grid-template-columns: 1fr !important;
    }

    .footer-links-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    section {
        padding: 2.5rem 0;
    }

    .landing-section,
    .companies-section,
    .alumni-section,
    .wall-of-love-section,
    .reviews-module-section-standalone,
    .value-comparison-section,
    .whatsapp-community-section,
    .session-logistics-section,
    .page-header-section,
    .webinar-hero-section,
    .webinar-content-section {
        padding: 2.5rem 0;
    }

    .webinar-hero-section {
        padding-top: 5rem;
    }

    .webinar-hero-section .hero-content h1 {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }

    .webinar-hero-section .subtitle {
        font-size: 1rem;
    }

    .webinar-hero-section .webinar-details-list {
        padding: 1rem 1.25rem;
        font-size: 0.9rem;
    }

    .webinar-hero-section .webinar-details-list li {
        margin-bottom: 0.625rem;
    }

    .page-header-section {
        padding: 2rem 0 1.5rem;
    }

    .page-header-title {
        font-size: clamp(1.5rem, 5.5vw, 2.25rem);
        margin-bottom: 1rem;
    }

    .page-header-subtitle {
        font-size: clamp(0.9rem, 1.8vw, 1rem);
        margin-bottom: 1.25rem;
    }

    .page-header-logistics {
        padding: 1rem;
        gap: 0.75rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .page-header-logistics-date,
    .page-header-logistics-time,
    .page-header-logistics-platform {
        font-size: 1rem;
    }

    .page-header-logistics-separator {
        display: none;
    }

    .session-logistics-section {
        padding: 2rem 0;
    }

    .session-logistics-item {
        padding: 0.875rem;
        gap: 0.75rem;
    }

    .session-logistics-icon {
        width: 44px;
        height: 44px;
        font-size: 1.5rem;
    }

    .session-logistics-label {
        font-size: 1rem;
    }

    .session-logistics-value {
        font-size: 0.9375rem;
    }

    .value-comparison-card {
        padding: 1.25rem;
    }

    .value-price-current {
        font-size: 2rem;
    }

    .value-price-old {
        font-size: 1rem;
    }

    .value-price-discount {
        font-size: 1rem;
        padding: 0.2rem 0.6rem;
    }

    .btn-discount {
        font-size: 1rem;
    }

    .value-card-title {
        font-size: 1.25rem;
    }

    .value-get-content strong {
        font-size: 0.9375rem;
    }

    .value-get-content span {
        font-size: 1rem;
    }

    .value-total-amount {
        font-size: 1.75rem;
    }

    .whatsapp-icon-wrapper {
        width: 56px;
        height: 56px;
        margin-bottom: 1rem;
    }

    .whatsapp-benefit-item {
        font-size: 0.9375rem;
        padding: 0.75rem;
    }

    .whatsapp-benefit-icon {
        font-size: 1.25rem;
    }

    body {
        padding-bottom: max(72px, 60px + env(safe-area-inset-bottom, 0px));
    }

    .landing-hero {
        padding: 2rem 0 2.5rem;
    }

    .landing-title {
        font-size: clamp(1.75rem, 6.5vw, 2.25rem);
    }

    .landing-subtitle {
        font-size: 0.9375rem;
        margin-bottom: 1.25rem;
    }

    .hero-inside-masterclass-section {
        margin-bottom: 1.25rem;
    }

    .hero-inside-masterclass-title {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }

    .hero-inside-masterclass-item {
        font-size: 0.85rem;
        gap: 0.5rem;
    }

    .hero-inside-masterclass-icon {
        font-size: 1rem;
    }

    .hero-why-joining-section {
        padding: 0.85rem;
        margin-bottom: 1rem;
    }

    .hero-why-joining-title {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .hero-why-joining-text {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }

    .hero-why-joining-quote {
        font-size: 0.85rem;
        padding-left: 0.6rem;
    }

    .hero-what-makes-different-section {
        margin-bottom: 1rem;
    }

    .hero-what-makes-different-title {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }

    .hero-what-makes-different-item {
        font-size: 0.85rem;
        padding-left: 1rem;
    }

    .hero-logistics-section {
        margin-bottom: 1rem;
    }

    .hero-logistics-inline {
        font-size: 0.85rem;
        gap: 0.35rem 0.5rem;
    }

    .hero-cta-text {
        margin-top: 1rem;
        padding-top: 1rem;
    }

    .hero-cta-text p {
        font-size: 0.9rem;
    }

    .hero-metrics {
        gap: 0.75rem 1.25rem;
    }

    .hero-metric-value {
        font-size: 1.25rem;
    }

    .hero-metric-label {
        font-size: 1rem;
    }

    .badge.landing-badge {
        font-size: 0.8rem;
        padding: 0.3rem 0.7rem;
    }

    .form-card,
    .form-card-hero {
        padding: 1.25rem;
    }

    .form-card-title {
        font-size: 1.1rem;
    }

    .form-trust-row {
        font-size: 1rem;
        gap: 0.5rem;
    }

    .companies-heading {
        margin-bottom: 1.25rem;
        font-size: clamp(1.35rem, 5vw, 1.75rem);
    }

    .companies-heading-underline svg {
        max-width: 200px;
    }

    .section-heading.centered {
        font-size: clamp(1.35rem, 4.5vw, 1.75rem);
    }

    .section-sub.centered {
        font-size: 0.9rem;
    }

    .learn-heading-underline svg {
        max-width: 160px;
    }

    .alumni-heading-underline svg {
        max-width: 160px;
    }

    .toc-list {
        padding-left: 1rem;
    }

    .toc-list li {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }

    .benefits-heading,
    .reviews-heading,
    .alumni-heading {
        font-size: clamp(1.35rem, 4.5vw, 1.75rem);
    }

    .benefit-summary {
        padding: 0.85rem 1rem;
    }

    .benefit-title {
        font-size: 0.95rem;
    }

    .benefit-icon-wrap .benefit-icon {
        width: 44px;
        height: 44px;
    }

    .reviews-module-badge {
        max-width: 200px;
    }

    .tweet-card {
        padding: 1rem;
    }

    .tweet-avatar {
        width: 40px;
        height: 40px;
    }

    .tweet-name {
        font-size: 0.95rem;
    }

    .tweet-handle {
        font-size: 0.8rem;
    }

    .tweet-body {
        font-size: 1rem;
    }

    .faq-q {
        font-size: 0.95rem;
    }

    .faq-a {
        font-size: 0.85rem;
    }

    .landing-cta-section .section-heading {
        font-size: clamp(1.35rem, 4.5vw, 1.75rem);
    }

    .guarantee-block {
        padding: 1rem;
    }

    .guarantee-block h3 {
        font-size: 0.95rem;
    }

    .guarantee-block p {
        font-size: 0.8rem;
    }

    .site-footer {
        padding: 2rem 0;
    }

    .footer-links-grid {
        gap: 2rem;
    }

    /* Fix hero showcase overflow */
    .hero-image-showcase {
        min-width: 100% !important;
        height: auto !important;
        min-height: 400px !important;
        margin-top: 2rem;
    }

    .instructor-card-floating {
        position: static !important;
        margin: 1.5rem auto 0 !important;
        width: 100% !important;
        left: 0 !important;
        transform: none !important;
    }

    .floating-badges-wrap {
        position: static !important;
        flex-direction: row !important;
        justify-content: center !important;
        margin-top: 1rem !important;
        right: 0 !important;
    }
}

/* Landing page overrides */
.landing-page .section-heading,
.landing-page .companies-heading {
    font-size: clamp(1.85rem, 4.5vw, 2.75rem);
}

.landing-page .btn {
    font-size: 1.0625rem;
}

.landing-page .btn-lg {
    font-size: 1.2rem;
}

/* Webinar Agenda / Timeline Mobile Fixes */
@media (max-width: 768px) {
    .webinar-timeline-item {
        flex-direction: column !important;
        gap: 1rem !important;
    }

    .webinar-time-badge {
        width: auto !important;
        display: inline-block !important;
        padding: 0.25rem 0.75rem !important;
        font-size: 0.875rem !important;
    }

    .webinar-content-card {
        padding: 1.25rem !important;
    }

    .webinar-agenda-dot {
        display: none !important;
    }

    .webinar-vertical-line {
        display: none !important;
    }
}

/* --- Course Hero Optimization & Teacher Outline --- */
.teacher-outline {
    filter: drop-shadow(4px 4px 0 rgba(255, 255, 255, 1)) drop-shadow(-4px -4px 0 rgba(255, 255, 255, 1)) drop-shadow(4px -4px 0 rgba(255, 255, 255, 1)) drop-shadow(-4px 4px 0 rgba(255, 255, 255, 1)) drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}

/* --- Professional Background Utilities --- */
.bg-pro-dark {
    background: var(--text-main) !important;
    color: white !important;
}

.bg-pro-slate {
    background: var(--site-charcoal) !important;
    color: white !important;
}

.bg-pro-light {
    background: var(--bg-main) !important;
    color: var(--site-charcoal) !important;
}

.bg-pro-white {
    background: #ffffff !important;
    color: var(--site-charcoal) !important;
}

.bg-pro-gradient-dark {
    background: linear-gradient(135deg, var(--text-main) 0%, var(--site-charcoal) 100%) !important;
    color: white !important;
}

.bg-pro-gradient-light {
    background: linear-gradient(135deg, var(--bg-main) 0%, var(--site-divider) 100%) !important;
}

.bg-pro-cyan-subtle {
    background: #ecfeff !important;
}

.bg-pro-blue-subtle {
    background: #eff6ff !important;
}

@media (max-width: 768px) {
    .page-header-section {
        padding-top: 1rem !important;
        padding-bottom: 3rem !important;
        overflow-x: hidden;
    }

    .page-header-content {
        flex-direction: column !important;
        text-align: center !important;
        gap: 1.5rem !important;
    }

    .page-header-content>div {
        flex: 1 1 auto !important;
        min-width: 0 !important;
        width: 100% !important;
        padding: 0 !important;
    }

    .page-header-title {
        font-size: clamp(2.2rem, 8vw, 2.8rem) !important;
        text-align: center !important;
        margin-bottom: 1.25rem !important;
        line-height: 1.2 !important;
    }

    .page-header-subtitle {
        font-size: 1.1rem !important;
        text-align: left !important;
        margin-bottom: 2rem !important;
        max-width: 100% !important;
    }

    .page-header-logistics {
        flex-direction: column !important;
        gap: 0.75rem !important;
        padding: 1.25rem !important;
        margin: 0 auto !important;
        align-items: center !important;
        width: 100% !important;
    }

    .page-header-logistics-separator {
        display: none !important;
    }

    .hero-image-showcase {
        min-height: 400px !important;
        margin-top: 1rem !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .instructor-card-floating {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        margin: 1rem auto !important;
        max-width: 90% !important;
        width: 90% !important;
        transform: none !important;
        padding: 1.5rem !important;
        z-index: 10 !important;
        text-align: left !important;
    }

    .teacher-outline {
        position: relative !important;
        height: 350px !important;
        width: auto !important;
        transform: none !important;
        left: auto !important;
        margin: 0 auto;
        display: block;
    }

    .hero-image-showcase>div {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        min-height: auto !important;
    }

    .floating-badges-wrap {
        display: none !important;
    }

    .hero-image-showcase>div {
        min-height: 350px !important;
        width: 100% !important;
    }

    .folded-faculty-panel {
        position: relative !important;
        margin: 1rem auto !important;
        justify-content: center !important;
        width: fit-content !important;
    }
}

/* --- Fixed Company Logos next to Teacher --- */
.instructor-logo-fixed {
    position: absolute;
    width: clamp(100px, 12vw, 130px);
    height: auto;
    max-height: 80px;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.instructor-logo-fixed img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

@media (max-width: 768px) {
    .instructor-logo-fixed {
        width: 80px;
        max-height: 50px;
    }
}

/* --- Floating Company Logos around Teacher --- */
.floating-company-logo {
    position: absolute;
    width: 85px;
    height: 85px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
    z-index: 5;
    padding: 18px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.floating-company-logo:hover {
    transform: scale(1.15) translateY(-8px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
    border-color: var(--aiminds-accent);
    z-index: 10;
}

.floating-company-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: none !important;
}

.float-anim-1 {
    animation: float-diag-1 6s ease-in-out infinite;
}

.float-anim-2 {
    animation: float-diag-2 7s ease-in-out infinite;
}

.float-anim-3 {
    animation: float-diag-1 8s ease-in-out infinite reverse;
}

@keyframes float-diag-1 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(12px, -25px) rotate(6deg);
    }

    66% {
        transform: translate(-12px, -12px) rotate(-6deg);
    }
}

@keyframes float-diag-2 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(-18px, -18px) rotate(-12deg);
    }
}

@media (max-width: 768px) {
    .floating-company-logo {
        width: 60px;
        height: 60px;
        padding: 12px;
        border-width: 2px;
    }
}

/* --- Accordion Styles --- */
details.module-accordion[open] summary .accordion-icon {
    transform: rotate(180deg);
}

details.module-accordion summary::-webkit-details-marker {
    display: none;
}

/* --- Companies Logo Carousel (Marquee) --- */
.companies-logo-wrapper {
    overflow: hidden;
    position: relative;
    /* width: 100%; */
    padding: 1rem 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.companies-logo-track {
    display: flex;
    gap: 3rem;
    width: max-content;
    animation: scroll-left 40s linear infinite;
}

.companies-logo-card {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.companies-logo-img {
    height: 52px;
    width: 200px;
    object-fit: contain;
    /* Removed filter: grayscale(100%) and opacity: 0.7 to show colors always */
    transition: all 0.3s ease;
}

.companies-logo-card:hover .companies-logo-img {
    /* Removed filter and opacity change on hover since they are now always visible */
    transform: scale(1.1);
}

@keyframes scroll-left {
    to {
        transform: translateX(-50%);
    }
}

/* --- Navigation Button (Mentor) --- */
.nav-btn-mentor {
    color: var(--aiminds-accent) !important;
    font-weight: 600;
    border: 1px solid var(--aiminds-accent);
    padding: 0.5rem 1rem !important;
    border-radius: 5px;
    margin-left: 1rem;
    transition: all 0.3s ease;
}

.nav-btn-mentor:hover {
    background: linear-gradient(180deg, #d9bc4e 0%, #cfa935 100%);
    color: #0c1222 !important;
}

@media (max-width: 768px) {
    .nav-btn-mentor {
        margin-left: 0;
        margin-top: 1rem;
    }
}

/* ========== 3. Available seats / Learn image section ========== */
.learn-seats-section {
    padding: 0.5rem 0;
}

@media (min-width: 768px) {
    .learn-seats-section {
        padding: 2.5rem 0;
    }
}

.learn-seats-wrap {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 4rem;
    border-radius: 12px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .learn-seats-wrap {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

.learn-seats-img {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 12px;
}

.learn-seats-img--desktop {
    display: none;
}

@media (min-width: 768px) {
    .learn-seats-img--desktop {
        display: block;
    }

    .learn-seats-img--mobile {
        display: none;
    }
}

.learn-seats-img--mobile {
    display: block;
}

/* ========== 10M+ Learners section (clean, readable) ========== */
.learners-section {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .learners-section {
        flex-direction: row;
        align-items: stretch;
        gap: 1.5rem;
    }
}

.learners-stat-card {
    flex: 1;
    min-width: 0;
    padding: 2rem 1.5rem 2.25rem;
    background-color: #fcf8ef;
    background-image: url("https://d31bwppm8yl9g2.cloudfront.net/learner/website/dots.svg");
    background-repeat: repeat;
    background-size: 12px 12px;
    border-radius: 1.25rem;
    border: 1px solid #e5e5e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

@media (min-width: 768px) {
    .learners-stat-card {
        width: 70%;
        padding: 2.25rem 2rem 2.5rem;
    }
}

.learners-stat-text-block {
    text-align: left;
    margin-bottom: 2rem;
    padding: 0 0.25rem;
}

@media (min-width: 768px) {
    .learners-stat-text-block {
        margin-bottom: 2.25rem;
    }
}

.learners-stat-heading {
    font-size: clamp(1.75rem, 4vw, 2rem);
    font-weight: 600;
    color: #002726;
    margin: 0 0 0.25rem 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.learners-stat-heading span {
    font-weight: 800;
    color: #002726;
}

.learners-stat-desc {
    font-size: 1rem;
    font-weight: 400;
    color: #52525b;
    margin: 0;
    line-height: 1.5;
}

.learners-marquee-wrap {
    overflow: hidden;
    width: 100%;
    margin: 0 -0.25rem;
    position: relative;
}

.learners-marquee {
    display: flex;
    white-space: nowrap;
    animation: learners-marquee 32s linear infinite;
    will-change: transform;
}

@media (max-width: 640px) {
    .learners-marquee {
        animation-duration: 26s;
    }
}

@keyframes learners-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.learners-marquee-item {
    flex-shrink: 0;
    padding: 0 0.5rem;
}

.learners-marquee-img-wrap {
    width: 120px;
    /* height: 68px; */
    /* border-radius: 10px; */
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    background: #fff;
}

.learners-marquee-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Our Impact – pure CSS vertical card sliding animation (GeeksforGeeks-style) */
.learners-impact-card {
    width: 100%;
    min-height: 220px;
    background: #fff;
    border-radius: 1.25rem;
    border: 1px solid #e5e5e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    overflow: visible;
}

@media (min-width: 768px) {
    .learners-impact-card {
        width: 30%;
        flex-shrink: 0;
        min-height: 280px;
    }
}

.learners-impact-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #002726;
    margin: 0;
    padding: 1rem 1.25rem 0.5rem;
    text-align: center;
    letter-spacing: 0.02em;
}

/* Slider container: mask so only center card is fully visible, edges fade */
.learners-impact-slider {
    flex: 1;
    min-height: 200px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
}

@media (min-width: 768px) {
    .learners-impact-slider {
        min-height: 240px;
    }
}

/* Cards: absolute, stacked; slideUp animation with staggered delay */
.learners-impact-item {
    position: absolute;
    left: 0.5rem;
    right: 0.5rem;
    top: 50%;
    margin-top: -90px;
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 1rem;
    background: linear-gradient(180deg, #f0fdf4 0%, #ecfdf5 100%);
    border: 1px solid #bbf7d0;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-main);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    opacity: 0;
    pointer-events: none;
    animation: learners-impact-slideUp 9s infinite;
}

@media (min-width: 768px) {
    .learners-impact-item {
        left: 1rem;
        right: 1rem;
        margin-top: -108px;
        height: 216px;
        padding: 1.5rem 1.25rem;
    }
}

/* When card is in center (visible), allow click */
.learners-impact-item:focus,
.learners-impact-item:hover {
    box-shadow: 0 8px 24px rgba(5, 150, 105, 0.15);
}

/* 9s cycle; each card visible ~3s; staggered delay so next appears as previous exits */
.learners-impact-item--1 {
    animation-delay: 0s;
}

.learners-impact-item--2 {
    animation-delay: 3s;
}

.learners-impact-item--3 {
    animation-delay: 6s;
}

/* Visible only in center; no enter/exit ghost – no empty card */
@keyframes learners-impact-slideUp {

    0%,
    28% {
        transform: translateY(0) scale(1);
        opacity: 1;
        pointer-events: auto;
    }

    33%,
    100% {
        transform: translateY(-100%) scale(0.85);
        opacity: 0;
        pointer-events: none;
    }
}

.learners-impact-logo {
    display: block;
    margin-bottom: 0.5rem;
    line-height: 0;
}

.learners-impact-logo svg,
.learners-impact-logo img {
    display: block;
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.learners-impact-platform {
    font-size: 1rem;
    font-weight: 700;
    color: #047857;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.learners-impact-rating {
    font-size: 2rem;
    font-weight: 800;
    color: #002726;
    line-height: 1;
}

.learners-impact-rating-max {
    font-size: 1rem;
    font-weight: 600;
    color: #64748b;
}

.learners-impact-users {
    font-size: 0.9375rem;
    color: #52525b;
    margin-top: 0.35rem;
}

/* --- Mobile/Tablet Marquee vs Desktop Slider --- */
@media (max-width: 900px) {
    .learners-impact-card {
        display: none !important;
    }

    .learners-impact-marquee {
        display: flex !important;
    }
}

@media (min-width: 901px) {
    .learners-impact-marquee {
        display: none !important;
    }

    .learners-impact-card {
        display: block !important;
    }
}

.learners-impact-marquee {
    display: none;
    width: 100%;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
}

.impact-marquee-content {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    animation: marquee-scroll 25s linear infinite;
}

.impact-marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    margin-right: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

.impact-marquee-logo svg,
.impact-marquee-logo img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.impact-marquee-logo {
    background: var(--bg-main);
    padding: 0.25rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.impact-marquee-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.impact-platform {
    font-size: 1rem;
    font-weight: 700;
    color: var(--site-charcoal);
}

.impact-rating {
    font-size: 0.85rem;
    font-weight: 800;
    color: #047857;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}