/**
 * MockAttempt Academy — Public marketing and discovery
 * Version: 1.0.0
 */

.marketing-page {
    background: var(--ma-surface);
    color: var(--ma-text);
}

.marketing-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: clamp(4rem, 8vw, 7rem) 0;
    color: var(--ma-text-inverse);
    background: var(--ma-dark-gradient);
}

.marketing-hero::before,
.marketing-hero::after {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    content: '';
    filter: blur(12px);
    pointer-events: none;
}

.marketing-hero::before {
    width: min(42rem, 70vw);
    height: min(42rem, 70vw);
    top: -24rem;
    right: -8rem;
    background: rgb(37 99 235 / 0.42);
}

.marketing-hero::after {
    width: 24rem;
    height: 24rem;
    bottom: -18rem;
    left: 12%;
    background: rgb(13 148 136 / 0.28);
}

.marketing-hero--compact {
    padding: clamp(3rem, 6vw, 5rem) 0;
}

.marketing-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
    gap: clamp(2rem, 6vw, 5rem);
    align-items: center;
}

.marketing-hero--centered .marketing-hero__inner {
    display: block;
    max-width: 58rem;
    text-align: center;
}

.marketing-hero__content {
    min-width: 0;
}

.marketing-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--ma-space-2);
    margin: 0 0 var(--ma-space-3);
    color: var(--ma-primary);
    font-size: var(--ma-font-caption);
    font-weight: var(--ma-font-weight-bold);
    letter-spacing: 0.1em;
    line-height: 1.4;
    text-transform: uppercase;
}

.marketing-eyebrow--inverse {
    color: #bfdbfe;
}

.marketing-hero__title {
    max-width: 13ch;
    margin: 0;
    color: #ffffff;
    font-size: clamp(2.5rem, 5vw, 4.8rem);
    font-weight: var(--ma-font-weight-extrabold);
    letter-spacing: -0.055em;
    line-height: 1.02;
}

.marketing-hero--compact .marketing-hero__title,
.marketing-hero--centered .marketing-hero__title {
    max-width: 19ch;
    font-size: clamp(2.2rem, 4vw, 3.8rem);
}

.marketing-hero--centered .marketing-hero__title,
.marketing-hero--centered .marketing-hero__lead {
    margin-inline: auto;
}

.marketing-hero__lead {
    max-width: 42rem;
    margin: var(--ma-space-5) 0 0;
    color: rgb(255 255 255 / 0.72);
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.75;
}

.marketing-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--ma-space-3);
    margin-top: var(--ma-space-8);
}

.marketing-hero--centered .marketing-hero__actions {
    justify-content: center;
}

.marketing-hero__aside {
    min-width: 0;
}

.marketing-hero__panel {
    padding: clamp(1.4rem, 4vw, 2rem);
    border: 1px solid rgb(255 255 255 / 0.14);
    border-radius: var(--ma-radius-xl);
    background: rgb(255 255 255 / 0.075);
    box-shadow: var(--ma-shadow-xl);
    backdrop-filter: blur(16px);
}

.marketing-hero__panel-title {
    margin-bottom: var(--ma-space-5);
    color: #ffffff;
    font-size: var(--ma-font-h5);
}

.marketing-search {
    display: flex;
    gap: var(--ma-space-2);
    max-width: 42rem;
    margin-top: var(--ma-space-8);
    padding: var(--ma-space-2);
    border: 1px solid rgb(255 255 255 / 0.16);
    border-radius: var(--ma-radius-lg);
    background: #ffffff;
    box-shadow: var(--ma-shadow-lg);
}

.marketing-search .form-control {
    min-width: 0;
    min-height: var(--ma-control-lg);
    border: 0;
    box-shadow: none;
}

.marketing-search .btn {
    flex: 0 0 auto;
}

.marketing-quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--ma-space-2) var(--ma-space-5);
    margin-top: var(--ma-space-5);
    color: rgb(255 255 255 / 0.62);
    font-size: var(--ma-font-body-sm);
}

.marketing-quick-links a {
    color: #ffffff;
    font-weight: var(--ma-font-weight-semibold);
    text-underline-offset: 0.25rem;
}

.marketing-loop {
    display: grid;
    gap: var(--ma-space-3);
    margin: 0;
    padding: 0;
    list-style: none;
}

.marketing-loop__step {
    display: grid;
    grid-template-columns: 2.5rem minmax(0, 1fr);
    gap: var(--ma-space-3);
    align-items: start;
    padding: var(--ma-space-3);
    border-radius: var(--ma-radius-md);
    background: rgb(255 255 255 / 0.065);
}

.marketing-loop__number {
    display: inline-flex;
    width: 2.5rem;
    height: 2.5rem;
    align-items: center;
    justify-content: center;
    border: 1px solid rgb(255 255 255 / 0.18);
    border-radius: var(--ma-radius);
    color: #dbeafe;
    background: rgb(37 99 235 / 0.3);
    font-weight: var(--ma-font-weight-bold);
}

.marketing-loop__step strong {
    display: block;
    margin-bottom: 0.15rem;
    color: #ffffff;
}

.marketing-loop__step span {
    color: rgb(255 255 255 / 0.65);
    font-size: var(--ma-font-body-sm);
    line-height: var(--ma-line-height-relaxed);
}

.marketing-stat-strip {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: calc(var(--ma-space-10) * -1);
    overflow: hidden;
    border: 1px solid var(--ma-border);
    border-radius: var(--ma-radius-xl);
    background: var(--ma-surface);
    box-shadow: var(--ma-shadow-lg);
}

.marketing-stat {
    padding: var(--ma-space-6);
}

.marketing-stat + .marketing-stat {
    border-left: 1px solid var(--ma-border);
}

.marketing-stat__value {
    display: block;
    margin-bottom: var(--ma-space-1);
    color: var(--ma-text-strong);
    font-size: clamp(1.35rem, 3vw, 1.9rem);
    font-weight: var(--ma-font-weight-extrabold);
}

.marketing-stat__label {
    color: var(--ma-text-muted);
    font-size: var(--ma-font-body-sm);
}

.marketing-section {
    padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.marketing-section--muted {
    border-block: 1px solid var(--ma-border-light);
    background: var(--ma-bg);
}

.marketing-section-heading {
    display: flex;
    gap: var(--ma-space-8);
    align-items: end;
    justify-content: space-between;
    margin-bottom: clamp(2rem, 5vw, 3.25rem);
}

.marketing-section-heading--centered {
    display: block;
    max-width: 48rem;
    margin-inline: auto;
    text-align: center;
}

.marketing-section-heading__title {
    max-width: 24ch;
    margin: 0;
    color: var(--ma-text-strong);
    font-size: clamp(1.8rem, 3.5vw, 2.7rem);
    font-weight: var(--ma-font-weight-extrabold);
    letter-spacing: -0.04em;
    line-height: 1.12;
}

.marketing-section-heading--centered .marketing-section-heading__title {
    margin-inline: auto;
}

.marketing-section-heading__description {
    max-width: 42rem;
    margin: var(--ma-space-3) 0 0;
    color: var(--ma-text-muted);
    font-size: var(--ma-font-body-lg);
    line-height: var(--ma-line-height-relaxed);
}

.marketing-section-heading__action,
.marketing-path-card__link,
.marketing-card-link {
    display: inline-flex;
    flex: 0 0 auto;
    gap: var(--ma-space-2);
    align-items: center;
    color: var(--ma-primary);
    font-weight: var(--ma-font-weight-bold);
    text-decoration: none;
}

.marketing-section-heading__action:hover,
.marketing-path-card__link:hover,
.marketing-card-link:hover {
    color: var(--ma-primary-hover);
}

.marketing-path-card {
    --path-tone: var(--ma-primary);
    --path-surface: var(--ma-primary-light);
    --path-border: var(--ma-primary-border);
    display: flex;
    height: 100%;
    min-height: 20rem;
    flex-direction: column;
    padding: 1.25rem 1.35rem !important;
    border: 1px solid rgba(226, 232, 240, 0.85);
    border-radius: 16px !important;
    background: var(--ma-surface);
    box-shadow: 0 4px 16px -4px rgba(15, 23, 42, 0.05), 0 2px 4px -2px rgba(15, 23, 42, 0.03);
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.2s ease, box-shadow 0.2s ease;
}

.marketing-path-card:hover {
    border-color: var(--path-border);
    box-shadow: 0 12px 28px -6px rgba(15, 23, 42, 0.08), 0 4px 8px -2px rgba(15, 23, 42, 0.04);
    transform: translateY(-2px);
}

.marketing-path-card--secondary {
    --path-tone: var(--ma-secondary);
    --path-surface: var(--ma-secondary-light);
    --path-border: var(--ma-secondary-border);
}

.marketing-path-card--accent {
    --path-tone: var(--ma-warning-text);
    --path-surface: var(--ma-accent-light);
    --path-border: var(--ma-accent-border);
}

.marketing-path-card--info {
    --path-tone: var(--ma-info-text);
    --path-surface: var(--ma-info-light);
    --path-border: var(--ma-info-border);
}

.marketing-path-card__icon {
    display: inline-flex;
    width: 3.25rem;
    height: 3.25rem;
    align-items: center;
    justify-content: center;
    margin-bottom: auto;
    border: 1px solid var(--path-border);
    border-radius: var(--ma-radius-lg);
    color: var(--path-tone);
    background: var(--path-surface);
    font-size: 1.35rem;
}

.marketing-path-card__eyebrow {
    margin: var(--ma-space-8) 0 var(--ma-space-2);
    color: var(--path-tone);
    font-size: var(--ma-font-caption);
    font-weight: var(--ma-font-weight-bold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.marketing-path-card__title {
    margin: var(--ma-space-5) 0 var(--ma-space-2);
    color: var(--ma-text-strong);
    font-size: var(--ma-font-h3);
}

.marketing-path-card__eyebrow + .marketing-path-card__title {
    margin-top: 0;
}

.marketing-path-card__description {
    margin: 0 0 var(--ma-space-6);
    color: var(--ma-text-muted);
    line-height: var(--ma-line-height-relaxed);
}

.marketing-path-card__details {
    color: var(--ma-text-muted);
    font-size: var(--ma-font-body-sm);
    line-height: var(--ma-line-height-relaxed);
}

.marketing-path-card__details:empty {
    display: none;
}

.marketing-path-card__link {
    margin-top: auto;
    color: var(--path-tone);
}

.home-hero {
    color: #ffffff;
    background:
        radial-gradient(circle at 20% 20%, rgb(14 165 233 / 0.18) 0%, transparent 40%),
        radial-gradient(circle at 80% 30%, rgb(16 185 129 / 0.15) 0%, transparent 45%),
        linear-gradient(135deg, #070b14 0%, #0c1424 50%, #070d18 100%);
}

.home-ambient--cyan {
    top: -9.375rem;
    right: 5%;
}

.home-ambient--emerald {
    bottom: -9.375rem;
    left: -5%;
}

.home-ambient--purple {
    top: 20%;
    left: 35%;
}

.home-trust-chip {
    border: 1px solid transparent;
    background: rgb(15 23 42 / 0.88);
}

.home-trust-chip--warning {
    border-color: rgb(245 158 11 / 0.45);
}

.home-trust-chip--success {
    border-color: rgb(16 185 129 / 0.45);
}

.home-signal-dot {
    width: 0.5rem;
    height: 0.5rem;
}

.home-signal-dot--small {
    width: 0.375rem;
    height: 0.375rem;
}

.home-hero-lead,
.home-high-contrast-copy {
    color: #f1f5f9 !important;
}

.home-hero-lead {
    font-size: 1.075rem;
}

.home-hero-search {
    border-color: rgb(255 255 255 / 0.22) !important;
    background: rgb(15 23 42 / 0.9) !important;
}

.home-dark-tile,
.home-cockpit-row {
    border: 1px solid rgb(255 255 255 / 0.16);
    background: rgb(255 255 255 / 0.08);
    border-radius: 14px !important;
    padding: 0.85rem 1rem !important;
}

.home-cockpit-strip {
    border: 1px solid rgb(255 255 255 / 0.14);
    background: rgb(0 0 0 / 0.55);
    border-radius: 10px !important;
    padding: 0.65rem 0.85rem !important;
}

.home-avatar {
    width: 2.75rem;
    height: 2.75rem;
    flex: 0 0 2.75rem;
}

.home-avatar--md {
    width: 3rem;
    height: 3rem;
    flex-basis: 3rem;
}

.home-avatar--lg {
    width: 3.125rem;
    height: 3.125rem;
    flex-basis: 3.125rem;
}

.home-avatar--blue,
.home-avatar--tone-1 {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.home-avatar--navy,
.home-avatar--tone-2 {
    background: linear-gradient(135deg, #0f172a, #334155);
}

.home-avatar--tone-3 {
    background: linear-gradient(135deg, #047857, #10b981);
}

.home-avatar--tone-4 {
    background: linear-gradient(135deg, #6d28d9, #7c3aed);
}

.home-proof-badge--success {
    border: 1px solid rgb(16 185 129 / 0.45);
    background: rgb(16 185 129 / 0.2);
    color: #a7f3d0;
}

.home-proof-badge--info {
    border: 1px solid rgb(14 165 233 / 0.45);
    background: rgb(14 165 233 / 0.2);
    color: #bae6fd;
}

.home-stat--amber {
    color: #b45309 !important;
}

.home-stat--purple {
    color: #6d28d9;
}

.home-emerald-callout {
    border: 1px solid rgb(16 185 129 / 0.45);
    background: rgb(6 78 59 / 0.9);
}

.home-course-card__header {
    background: linear-gradient(135deg, #0b132b, #1e293b);
}

.home-live-badge {
    border: 1px solid rgb(255 255 255 / 0.35);
    background: rgb(255 255 255 / 0.18);
    color: #ffffff;
}

.home-ai-cockpit {
    border-color: rgb(139 92 246 / 0.45);
    box-shadow: 0 20px 40px -15px rgb(0 0 0 / 0.6), 0 0 25px rgb(139 92 246 / 0.16);
}

.home-ai-badge,
.home-ai-cta {
    border-color: #6d28d9 !important;
    background: linear-gradient(135deg, #7c3aed, #6d28d9) !important;
    color: #ffffff !important;
}

.home-ai-icon {
    background: #f5f3ff;
    color: #6d28d9;
}

.home-comparison-head {
    border-bottom: 2px solid #334155 !important;
}

.home-comparison-head--factor {
    width: 32%;
    background: #0f172a !important;
    color: #ffffff !important;
}

.home-comparison-head--traditional {
    width: 33%;
    background: #1e293b !important;
    color: #cbd5e1 !important;
}

.home-comparison-head--academy {
    width: 35%;
    border-bottom-color: #047857 !important;
    background: #064e3b !important;
    color: #a7f3d0 !important;
}

.home-comparison-highlight {
    background: #f0fdf4 !important;
}

.home-calculator-option {
    border-color: rgb(255 255 255 / 0.18) !important;
    background: rgb(255 255 255 / 0.08) !important;
    color: #ffffff !important;
}

.home-calculator-option.is-active {
    border-color: #10b981 !important;
    background: linear-gradient(135deg, #047857, #10b981) !important;
}

.home-cta-lead {
    color: rgb(255 255 255 / 0.9) !important;
    font-size: 1.05rem;
}

.about-hero {
    color: var(--ma-text-strong);
    background:
        radial-gradient(circle at 10% 15%, rgb(37 99 235 / 0.08), transparent 45%),
        radial-gradient(circle at 90% 15%, rgb(139 92 246 / 0.08), transparent 45%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 60%, #f1f5f9 100%);
}

.about-pillar-card,
.about-card,
.about-soft-panel {
    border-color: var(--ma-border) !important;
}

.about-pillar-card {
    border-top-width: 0.25rem !important;
}

.about-pillar-card--primary {
    border-top-color: var(--ma-primary) !important;
}

.about-pillar-card--success {
    border-top-color: var(--ma-success) !important;
}

.about-pillar-card--danger {
    border-top-color: var(--ma-danger) !important;
}

.about-pillar-card--warning {
    border-top-color: var(--ma-warning) !important;
}

.about-icon,
.about-index-badge {
    width: 2.75rem;
    height: 2.75rem;
    align-items: center;
    justify-content: center;
}

.about-icon--md {
    width: 3rem;
    height: 3rem;
}

.about-index-badge {
    width: 3.25rem;
    height: 3.25rem;
}

.about-dark-section,
.about-cta-panel {
    border: 1px solid rgb(255 255 255 / 0.12) !important;
    background: linear-gradient(135deg, #071226 0%, #172554 58%, #08101f 100%) !important;
}

.about-dark-tile {
    border: 1px solid rgb(255 255 255 / 0.16);
    background: rgb(255 255 255 / 0.08);
}

.about-table-col {
    width: 30%;
}

.about-table-col--wide {
    width: 35%;
}

.marketing-link-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--ma-space-4);
}

.marketing-link-card {
    display: flex;
    min-height: 9rem;
    flex-direction: column;
    justify-content: space-between;
    padding: var(--ma-space-5);
    border: 1px solid var(--ma-border);
    border-radius: var(--ma-radius-lg);
    color: var(--ma-text);
    background: var(--ma-surface);
    text-decoration: none;
    transition: transform var(--ma-transition), border-color var(--ma-transition), box-shadow var(--ma-transition);
}

.marketing-link-card:hover {
    border-color: var(--ma-primary-border);
    color: var(--ma-primary);
    box-shadow: var(--ma-shadow);
    transform: translateY(-2px);
}

.marketing-link-card__icon {
    color: var(--ma-primary);
    font-size: 1.25rem;
}

.marketing-link-card__meta {
    color: var(--ma-text-muted);
    font-size: var(--ma-font-caption);
}

.marketing-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--ma-space-5);
}

.marketing-content-card {
    display: flex;
    min-width: 0;
    height: 100%;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--ma-border);
    border-radius: var(--ma-radius-xl);
    background: var(--ma-surface);
    box-shadow: var(--ma-shadow-sm);
    transition: transform var(--ma-transition), box-shadow var(--ma-transition);
}

.marketing-content-card:hover {
    box-shadow: var(--ma-shadow-md);
    transform: translateY(-3px);
}

.marketing-content-card__image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: var(--ma-bg-subtle);
}

.marketing-content-card__body {
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    padding: var(--ma-space-6);
}

.marketing-content-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--ma-space-2) var(--ma-space-4);
    align-items: center;
    margin-bottom: var(--ma-space-3);
    color: var(--ma-text-muted);
    font-size: var(--ma-font-caption);
}

.marketing-content-card__title {
    margin: 0 0 var(--ma-space-3);
    font-size: var(--ma-font-h4);
    line-height: var(--ma-line-height-snug);
}

.marketing-content-card__title a {
    color: var(--ma-text-strong);
    text-decoration: none;
}

.marketing-content-card__title a:hover {
    color: var(--ma-primary);
}

.marketing-content-card__excerpt {
    flex-grow: 1;
    margin: 0 0 var(--ma-space-5);
    color: var(--ma-text-muted);
    line-height: var(--ma-line-height-relaxed);
}

.marketing-content-card__footer {
    display: flex;
    flex-wrap: wrap;
    gap: var(--ma-space-2) var(--ma-space-4);
    align-items: center;
    justify-content: space-between;
    padding-top: var(--ma-space-4);
    border-top: 1px solid var(--ma-border-light);
    color: var(--ma-text-muted);
    font-size: var(--ma-font-caption);
}

.marketing-content-layout {
    display: grid;
    grid-template-columns: minmax(14rem, 18rem) minmax(0, 1fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}

.marketing-filter-panel {
    position: sticky;
    top: 7rem;
    padding: var(--ma-space-5);
    border: 1px solid var(--ma-border);
    border-radius: var(--ma-radius-lg);
    background: var(--ma-surface);
    box-shadow: var(--ma-shadow-sm);
}

.marketing-filter-list {
    display: grid;
    gap: var(--ma-space-2);
    margin: 0;
    padding: 0;
    list-style: none;
}

.marketing-filter-link {
    display: flex;
    min-height: var(--ma-touch-target);
    gap: var(--ma-space-3);
    align-items: center;
    justify-content: space-between;
    padding: var(--ma-space-2) var(--ma-space-3);
    border-radius: var(--ma-radius);
    color: var(--ma-text-secondary);
    font-weight: var(--ma-font-weight-semibold);
    text-decoration: none;
}

.marketing-filter-link:hover,
.marketing-filter-link.is-active {
    color: var(--ma-primary);
    background: var(--ma-primary-light);
}

.marketing-filter-link[aria-current='page'] {
    box-shadow: inset 3px 0 0 var(--ma-primary);
}

.marketing-filter-count {
    color: var(--ma-text-muted);
    font-size: var(--ma-font-caption);
}

.marketing-results-bar {
    display: flex;
    flex-wrap: wrap;
    gap: var(--ma-space-4);
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--ma-space-6);
}

.marketing-results-bar .marketing-search-form {
    width: min(100%, 30rem);
}

.marketing-search-form {
    display: flex;
    gap: var(--ma-space-2);
}

.marketing-search-form .form-control-ma,
.marketing-search-form .form-select-ma {
    min-width: 0;
}

.marketing-proof-grid,
.marketing-feature-grid,
.marketing-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--ma-space-5);
}

.marketing-proof,
.marketing-feature,
.marketing-contact-card {
    padding: clamp(1.4rem, 3vw, 2rem);
    border: 1px solid var(--ma-border);
    border-radius: var(--ma-radius-xl);
    background: var(--ma-surface);
}

.marketing-proof__icon,
.marketing-feature__icon,
.marketing-contact-card__icon {
    display: inline-flex;
    width: 3rem;
    height: 3rem;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--ma-space-5);
    border-radius: var(--ma-radius-md);
    color: var(--ma-primary);
    background: var(--ma-primary-light);
    font-size: 1.25rem;
}

.marketing-proof h3,
.marketing-feature h3,
.marketing-contact-card h2,
.marketing-contact-card h3 {
    margin-bottom: var(--ma-space-2);
    color: var(--ma-text-strong);
}

.marketing-proof p,
.marketing-feature p,
.marketing-contact-card p {
    margin-bottom: 0;
    color: var(--ma-text-muted);
    line-height: var(--ma-line-height-relaxed);
}

.marketing-contact-card a {
    overflow-wrap: anywhere;
}

.marketing-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--ma-space-5);
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: marketing-step;
}

.marketing-steps li {
    position: relative;
    padding: var(--ma-space-6);
    border-top: 2px solid var(--ma-primary-border);
    counter-increment: marketing-step;
}

.marketing-steps li::before {
    display: inline-flex;
    width: 2rem;
    height: 2rem;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--ma-space-4);
    border-radius: var(--ma-radius-pill);
    color: #ffffff;
    background: var(--ma-primary);
    content: counter(marketing-step, decimal-leading-zero);
    font-size: var(--ma-font-caption);
    font-weight: var(--ma-font-weight-bold);
}

.marketing-steps h3 {
    font-size: var(--ma-font-h4);
}

.marketing-steps p {
    margin-bottom: 0;
    color: var(--ma-text-muted);
    line-height: var(--ma-line-height-relaxed);
}

.marketing-cta {
    display: flex;
    gap: clamp(2rem, 6vw, 5rem);
    align-items: center;
    justify-content: space-between;
    padding: clamp(2rem, 6vw, 4rem);
    border: 1px solid rgb(255 255 255 / 0.1);
    border-radius: var(--ma-radius-2xl);
    color: #ffffff;
    background: var(--ma-dark-gradient);
    box-shadow: var(--ma-shadow-xl);
}

.marketing-cta__copy {
    max-width: 43rem;
}

.marketing-cta__title {
    margin: 0;
    color: #ffffff;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    letter-spacing: -0.04em;
}

.marketing-cta__description {
    margin: var(--ma-space-3) 0 0;
    color: rgb(255 255 255 / 0.68);
    font-size: var(--ma-font-body-lg);
    line-height: var(--ma-line-height-relaxed);
}

.marketing-cta__actions {
    display: flex;
    flex: 0 0 auto;
    flex-wrap: wrap;
    gap: var(--ma-space-3);
}

.marketing-cta__secondary {
    border: 1px solid rgb(255 255 255 / 0.35);
    color: #ffffff !important;
    background: transparent;
}

.marketing-cta__secondary:hover {
    border-color: #ffffff;
    background: rgb(255 255 255 / 0.1);
}

.marketing-breadcrumbs {
    margin-bottom: var(--ma-space-8);
}

.marketing-article {
    max-width: var(--ma-container-reading);
    margin-inline: auto;
}

.marketing-article__header {
    padding-bottom: var(--ma-space-8);
    border-bottom: 1px solid var(--ma-border);
}

.marketing-article__title {
    max-width: 18ch;
    margin-bottom: var(--ma-space-5);
    color: var(--ma-text-strong);
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: -0.045em;
    line-height: 1.08;
}

.marketing-article__meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--ma-space-2) var(--ma-space-5);
    color: var(--ma-text-muted);
    font-size: var(--ma-font-body-sm);
}

.marketing-article__image {
    width: 100%;
    max-height: 30rem;
    margin: var(--ma-space-8) 0;
    border-radius: var(--ma-radius-xl);
    object-fit: cover;
    box-shadow: var(--ma-shadow-md);
}

.marketing-prose {
    margin-block: var(--ma-space-10);
    color: var(--ma-text-secondary);
    font-size: 1.0625rem;
    line-height: 1.85;
}

.marketing-prose :is(h2, h3, h4) {
    margin-top: 1.8em;
    margin-bottom: 0.65em;
    color: var(--ma-text-strong);
}

.marketing-prose :is(img, iframe, video, table) {
    max-width: 100%;
}

.marketing-prose a {
    text-underline-offset: 0.2rem;
}

.marketing-author {
    display: flex;
    gap: var(--ma-space-4);
    align-items: center;
    margin: var(--ma-space-8) 0;
    padding: var(--ma-space-5);
    border: 1px solid var(--ma-border);
    border-radius: var(--ma-radius-lg);
    background: var(--ma-bg);
}

.marketing-author__photo,
.marketing-author__initial {
    width: 4rem;
    height: 4rem;
    flex: 0 0 4rem;
    border-radius: var(--ma-radius-circle);
    object-fit: cover;
}

.marketing-author__initial {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: var(--ma-primary);
    font-size: 1.25rem;
    font-weight: var(--ma-font-weight-bold);
}

.marketing-disclaimer {
    display: flex;
    gap: var(--ma-space-3);
    align-items: flex-start;
    padding: var(--ma-space-4);
    border: 1px solid var(--ma-info-border);
    border-radius: var(--ma-radius-md);
    color: var(--ma-info-text);
    background: var(--ma-info-light);
    font-size: var(--ma-font-body-sm);
    line-height: var(--ma-line-height-relaxed);
}

.marketing-landing-block + .marketing-landing-block {
    margin-top: clamp(4rem, 8vw, 6rem);
}

.marketing-faq {
    max-width: var(--ma-container-reading);
    margin-inline: auto;
}

@media (max-width: 991.98px) {
    .marketing-hero__inner,
    .marketing-content-layout {
        grid-template-columns: 1fr;
    }

    .marketing-hero__aside {
        max-width: 42rem;
    }

    .marketing-filter-panel {
        position: static;
    }

    .marketing-link-grid,
    .marketing-card-grid,
    .marketing-proof-grid,
    .marketing-feature-grid,
    .marketing-contact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .marketing-cta {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 767.98px) {
    .marketing-hero {
        padding: 3.5rem 0 5rem;
    }

    .marketing-hero__title {
        font-size: clamp(2.35rem, 12vw, 3.4rem);
    }

    .marketing-search,
    .marketing-search-form,
    .marketing-section-heading,
    .marketing-results-bar {
        align-items: stretch;
        flex-direction: column;
    }

    .marketing-search .btn,
    .marketing-search-form .btn,
    .marketing-hero__actions .btn,
    .marketing-cta__actions .btn {
        width: 100%;
    }

    .marketing-stat-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .marketing-stat:nth-child(3) {
        border-left: 0;
    }

    .marketing-stat:nth-child(n + 3) {
        border-top: 1px solid var(--ma-border);
    }

    .marketing-link-grid,
    .marketing-card-grid,
    .marketing-proof-grid,
    .marketing-feature-grid,
    .marketing-contact-grid,
    .marketing-steps {
        grid-template-columns: 1fr;
    }

    .marketing-path-card {
        min-height: 19rem;
    }

    .marketing-cta__actions {
        width: 100%;
    }

    .marketing-author {
        align-items: flex-start;
    }
}

@media (prefers-reduced-motion: reduce) {
    .marketing-path-card,
    .marketing-link-card,
    .marketing-content-card {
        transition: none;
    }

    .marketing-path-card:hover,
    .marketing-link-card:hover,
    .marketing-content-card:hover {
        transform: none;
    }
}

/* ==========================================================================
   MOCKATTEMPT ACADEMY 2026 — VIBRANT & TRUST-FIRST HOMEPAGE REDESIGN SYSTEM
   ========================================================================== */

/* 1. Vibrant Mesh Backgrounds & Text Gradients for Universal Light Theme */
.hero-vibrant-wrapper {
    position: relative;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 2rem;
    padding-bottom: 3rem;
    background: radial-gradient(circle at 10% 15%, rgba(37, 99, 235, 0.08) 0%, transparent 45%),
                radial-gradient(circle at 90% 15%, rgba(139, 92, 246, 0.08) 0%, transparent 45%),
                radial-gradient(circle at 50% 90%, rgba(16, 185, 129, 0.06) 0%, transparent 45%),
                linear-gradient(180deg, #ffffff 0%, #f8fafc 60%, #f1f5f9 100%);
    overflow: hidden;
    color: #0f172a;
    isolation: isolate;
    border-bottom: 1px solid #e2e8f0;
}

.hero-vibrant-wrapper::before {
    content: '';
    position: absolute;
    top: -25%;
    left: 20%;
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.08) 0%, rgba(37, 99, 235, 0.04) 45%, transparent 70%);
    filter: blur(60px);
    z-index: -1;
    pointer-events: none;
    animation: heroPulse 10s ease-in-out infinite alternate;
}

@keyframes heroPulse {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.15) translate(3%, 4%); }
}

.gradient-text-vibrant {
    background: linear-gradient(135deg, #1d4ed8 0%, #7c3aed 45%, #db2777 85%, #d97706 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.gradient-text-cyan {
    background: linear-gradient(135deg, #0284c7 0%, #4338ca 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.gradient-text-gold {
    background: linear-gradient(135deg, #d97706 0%, #b45309 60%, #92400e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.gradient-text-emerald {
    background: linear-gradient(135deg, #059669 0%, #047857 60%, #065f46 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Hero Main Title 2-Line Typography */
.hero-main-title {
    font-size: clamp(1.75rem, 3.1vw, 2.75rem);
    line-height: 1.16;
    letter-spacing: -0.035em;
    font-weight: 800;
    color: #0f172a;
}

.hero-title-line1 {
    display: block;
}

.hero-title-line2 {
    display: block;
}

@media (min-width: 992px) {
    .hero-title-line1 {
        white-space: nowrap;
    }
    .hero-title-line2 {
        white-space: nowrap;
    }
}

/* 2. Trust Pill Badges & Pulsing Lights */
.trust-badge-glow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1.1rem;
    border-radius: 9999px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #0f172a;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.06);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.trust-badge-glow:hover {
    transform: translateY(-2px);
    border-color: #93c5fd;
}

.trust-badge-glow--gold {
    background: #fffbeb;
    border-color: #fde68a;
    color: #92400e;
}

.trust-badge-glow--emerald {
    background: #ecfdf5;
    border-color: #a7f3d0;
    color: #065f46;
}

/* Live Candidate Card in Hero (Light Theme) */
.hero-candidate-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
    position: relative;
    overflow: hidden;
}

.hero-candidate-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #7c3aed, #ec4899, #10b981);
}

.live-pulse-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.25rem 0.65rem;
    border-radius: 9999px;
    background: #ecfdf5;
    color: #059669;
    border: 1px solid #a7f3d0;
}

.live-pulse-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #10b981;
    box-shadow: 0 0 0 rgba(16, 185, 129, 0.6);
    animation: livePulse 1.8s infinite;
}

@keyframes livePulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.8); }
    70% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Sleek Floating Capsule Search Component in Hero (Light Theme) */
.hero-glass-search-wrap {
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    border-radius: 9999px;
    padding: 0.35rem 0.45rem 0.35rem 1.1rem;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    max-width: 580px;
}

.hero-glass-search-wrap:focus-within {
    border-color: #2563eb;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.15), 0 0 0 3px rgba(37, 99, 235, 0.15);
    background: #ffffff;
}

.hero-glass-search-input {
    background: transparent;
    border: none;
    outline: none;
    color: #0f172a;
    font-size: 0.875rem;
    font-weight: 500;
    width: 100%;
    padding: 0.25rem 0.5rem;
}

.hero-glass-search-input::placeholder {
    color: #94a3b8;
    font-size: 0.8125rem;
}

.hero-glass-search-input:focus {
    outline: none;
    box-shadow: none;
}

.hero-trend-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.71875rem;
    font-weight: 600;
    padding: 0.2rem 0.65rem;
    border-radius: 9999px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #475569;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 2px 5px rgba(15, 23, 42, 0.03);
}

.hero-trend-pill:hover {
    background: #eff6ff;
    border-color: #93c5fd;
    color: #1d4ed8;
    transform: translateY(-1px);
}

.hero-metric-tile {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.875rem;
    padding: 0.75rem 0.5rem;
    transition: all 0.2s ease;
}

.hero-metric-tile:hover {
    background: #ffffff;
    border-color: #93c5fd;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.06);
}

/* 3. The Legal Agreement Trust Shield (Light Theme) */
.legal-shield-section {
    position: relative;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
    color: #0f172a;
    padding: 1.75rem 0 2rem 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.legal-contract-preview-box {
    background: #ffffff;
    border: 1.5px solid #fde68a;
    border-radius: 1.25rem;
    padding: 1.5rem;
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.08);
    position: relative;
}

.legal-stamp-seal {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    border: 2px dashed #f59e0b;
    background: #fffbeb;
    color: #b45309;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.62rem;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.1;
    transform: rotate(-12deg);
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.15);
}

.legal-pillar-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 1rem 1.15rem;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.03);
    transition: transform 0.2s ease, border-color 0.2s ease;
    height: 100%;
}

.legal-pillar-card:hover {
    transform: translateY(-2px);
    border-color: #cbd5e1;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

/* 4. Hiring Partners Continuous Marquee */
.hiring-marquee-wrapper {
    background: #ffffff;
    padding: 1.75rem 0;
    border-bottom: 1px solid #e2e8f0;
    overflow: hidden;
    position: relative;
}

.hiring-marquee-track {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    width: max-content;
    animation: marqueeScroll 35s linear infinite;
}

.hiring-marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.hiring-partner-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1.1rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 9999px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.hiring-partner-pill:hover {
    transform: translateY(-2px);
    border-color: #93c5fd;
    background: #ffffff;
}

/* 5. Career Salary Growth & ROI Calculator */
.roi-calculator-container {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.calc-track-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.1rem;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 0.875rem;
    text-align: left;
    width: 100%;
    color: #0f172a;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    cursor: pointer;
}

.calc-track-btn:hover {
    border-color: #93c5fd;
    background: #f0fdf4;
}

.calc-track-btn.active {
    border-color: #2563eb;
    background: #eff6ff;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.12);
}

.calc-output-display {
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    border-radius: 1.25rem;
    padding: 1.5rem;
    color: #0f172a;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.05);
}

.salary-progression-bar {
    height: 12px;
    border-radius: 9999px;
    background: #e2e8f0;
    overflow: hidden;
    position: relative;
}

.salary-progression-fill {
    height: 100%;
    border-radius: 9999px;
    background: linear-gradient(90deg, #2563eb 0%, #059669 100%);
    transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 6. Comparison Table (MockAttempt vs Traditional EdTech) */
.comparison-table-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1.5rem;
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.05);
    overflow: hidden;
}

.comp-col-highlight {
    background: rgba(37, 99, 235, 0.04);
    border-left: 2px solid #2563eb;
    border-right: 2px solid #2563eb;
}

.comp-col-highlight-header {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff !important;
}

/* 7. Transparent 5-Step Roadmap Flow */
.roadmap-step-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1.25rem;
    padding: 1.5rem 1.25rem;
    position: relative;
    height: 100%;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.roadmap-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.1);
    border-color: #93c5fd;
}

.roadmap-step-num {
    width: 40px;
    height: 40px;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.05rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* 8. Placement Stories & Proof Cards */
.placement-story-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1.25rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.placement-story-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    border-color: #93c5fd;
}

.verified-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 0.2rem 0.55rem;
    border-radius: 0.375rem;
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

/* 9. AI Virtual Mock Interview & Timed Testing Spotlight (Universal Light Theme) */
.ai-spotlight-light-box {
    background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 50%, #f5f3ff 100%);
    border: 1.5px solid #bfdbfe;
    border-radius: 1.75rem;
    padding: clamp(1.75rem, 3.5vw, 2.5rem);
    color: #0f172a;
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.08);
    position: relative;
    overflow: hidden;
}

.ai-waveform-bar {
    display: inline-block;
    width: 4px;
    height: 18px;
    background: #2563eb;
    border-radius: 2px;
    animation: waveBounce 1.2s ease-in-out infinite alternate;
}

.ai-waveform-bar:nth-child(2) { animation-delay: 0.2s; height: 28px; background: #7c3aed; }
.ai-waveform-bar:nth-child(3) { animation-delay: 0.4s; height: 36px; background: #ec4899; }
.ai-waveform-bar:nth-child(4) { animation-delay: 0.1s; height: 24px; background: #0284c7; }
.ai-waveform-bar:nth-child(5) { animation-delay: 0.3s; height: 30px; background: #059669; }

@keyframes waveBounce {
    0% { transform: scaleY(0.4); }
    100% { transform: scaleY(1.2); }
}

/* 10. Guarantee FAQ Accordion (Wide Balanced Spacing) */
.marketing-faq {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    width: 100%;
}

.faq-accordion-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 0.9rem;
    overflow: hidden;
    transition: all 0.2s ease;
}

.faq-accordion-item:hover {
    border-color: #93c5fd;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.06);
}

.faq-accordion-btn {
    width: 100%;
    padding: 1.15rem 1.5rem;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.98rem;
    font-weight: 700;
    color: #0f172a;
    cursor: pointer;
}

.faq-accordion-btn:focus {
    outline: none;
}

.faq-accordion-body {
    padding: 0 1.5rem 1.25rem 1.5rem;
    color: #475569;
    font-size: 0.9rem;
    line-height: 1.65;
}

/* 11. Grand Finale Bottom Conversion Banner (Universal Light Theme) */
.bottom-luxury-cta {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #eff6ff 100%);
    border: 2px solid #bfdbfe;
    border-radius: 1.75rem;
    padding: clamp(1.75rem, 4vw, 2.75rem);
    color: #0f172a;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(37, 99, 235, 0.08);
}

.gold-seal-badge {
    width: 106px;
    height: 106px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4);
    border: 3px solid #fef3c7;
    margin-bottom: 0.85rem;
    line-height: 1.15;
}

/* Responsive tweaks for new components */
@media (max-width: 991.98px) {
    .hiring-marquee-track {
        gap: 1rem;
    }
}

/* =========================================================================
   12. Universal Premium White Rounded Cards (.premium-course-card)
   ========================================================================= */
.premium-course-card {
    background: #ffffff !important;
    border: 1.5px solid #e2e8f0 !important;
    border-radius: 1.25rem !important; /* 20px modern rounded corners */
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05) !important;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease !important;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.premium-course-card:hover {
    transform: translateY(-4px);
    border-color: #93c5fd !important;
    box-shadow: 0 16px 36px rgba(37, 99, 235, 0.1) !important;
}

.course-guarantee-strip {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.75rem;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    border-radius: 0.65rem;
    font-size: 0.725rem;
    font-weight: 700;
    color: #065f46;
}

.course-guarantee-strip .bullet {
    color: #cbd5e1;
}

.ai-mock-feature-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.75rem;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 0.65rem;
    font-size: 0.725rem;
    color: #1e40af;
}

.course-metrics-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0.75rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.65rem;
}

.course-price-block {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
}

.course-price-current {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
}

.course-price-original {
    font-size: 0.825rem;
    text-decoration: line-through;
    color: #94a3b8;
}

.course-discount-badge {
    font-size: 0.675rem;
    font-weight: 700;
    color: #16a34a;
    background: #dcfce7;
    border: 1px solid #bbf7d0;
    padding: 0.1rem 0.4rem;
    border-radius: 0.375rem;
}

/* =========================================================================
   HUMAN-PSYCHOLOGY DRIVEN DESIGN SYSTEM & COLOR TOKENS
   ========================================================================= */

:root {
    --psy-midnight: #060b17;
    --psy-obsidian: #0b132b;
    --psy-slate-900: #0f172a;
    --psy-slate-800: #1e293b;
    --psy-slate-700: #334155;
    --psy-slate-600: #475569;
    --psy-slate-100: #f1f5f9;
    --psy-slate-50: #f8fafc;
    --psy-emerald: #10b981;
    --psy-emerald-dark: #047857;
    --psy-emerald-light: #ecfdf5;
    --psy-cyan: #06b6d4;
    --psy-cyan-light: #ecfeff;
    --psy-blue: #2563eb;
    --psy-indigo: #4f46e5;
    --psy-violet: #8b5cf6;
    --psy-purple-dark: #5b21b6;
    --psy-amber: #f59e0b;
    --psy-amber-dark: #b45309;
    --psy-amber-light: #fffbeb;
}

/* 1. Deep Midnight & Obsidian Canvas with High-Clarity Lighting */
.hero-psychology-dark {
    position: relative;
    background: radial-gradient(circle at 80% 10%, #1e1b4b 0%, #0b132b 40%, #060b17 100%);
    color: #ffffff;
    overflow: hidden;
}

.hero-headline-smart {
    font-size: clamp(1.85rem, 2.35vw + 0.4rem, 3.15rem);
    font-weight: 800;
    line-height: 1.16;
    letter-spacing: -0.035em;
    color: #ffffff;
}

.hero-headline-smart .headline-line {
    display: block;
    text-wrap: balance;
}

@media (min-width: 992px) {
    .hero-headline-smart .headline-line {
        white-space: nowrap;
    }
}

.bg-opacity-15 { --bs-bg-opacity: 0.15 !important; }
.bg-opacity-20 { --bs-bg-opacity: 0.2 !important; }
.bg-opacity-25 { --bs-bg-opacity: 0.25 !important; }
.bg-opacity-30 { --bs-bg-opacity: 0.3 !important; }

.text-gradient-aurora {
    background: linear-gradient(135deg, #38bdf8 0%, #818cf8 40%, #34d399 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.text-gradient-gold {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.text-gradient-emerald {
    background: linear-gradient(135deg, #34d399 0%, #10b981 60%, #059669 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* 2. Ambient Mesh Glow Orbs */
.ambient-glow-cyan {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.18) 0%, rgba(56, 189, 248, 0) 70%);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.ambient-glow-emerald {
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, rgba(16, 185, 129, 0) 70%);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.ambient-glow-purple {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.16) 0%, rgba(139, 92, 246, 0) 70%);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

/* 3. Glassmorphic Cockpit Card */
.cockpit-glass-card {
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(56, 189, 248, 0.25);
    border-radius: 1.25rem;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.6), 0 0 25px 0 rgba(56, 189, 248, 0.1);
    color: #ffffff;
}

/* 4. Action & Trust Buttons */
.btn-glow-emerald {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: #ffffff !important;
    border: none;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.35);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-glow-emerald:hover {
    background: linear-gradient(135deg, #047857 0%, #059669 100%);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
    transform: translateY(-2px);
}

.btn-ghost-frosted {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #ffffff !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-ghost-frosted:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

/* 5. Elevated Cards with Micro-Lifts */
.card-modern-elevated {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 1.15rem;
    box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.05), 0 2px 6px -1px rgba(15, 23, 42, 0.03);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-modern-elevated:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px -4px rgba(15, 23, 42, 0.09), 0 4px 12px -2px rgba(15, 23, 42, 0.04);
    border-color: rgba(148, 163, 184, 0.4);
}

/* 6. High-Contrast Pillar Cards */
.pillar-card-student {
    border-top: 4px solid #10b981 !important;
}
.pillar-card-student:hover {
    border-color: #10b981 !important;
    box-shadow: 0 12px 28px -4px rgba(16, 185, 129, 0.15) !important;
}

.pillar-card-trainer {
    border-top: 4px solid #2563eb !important;
}
.pillar-card-trainer:hover {
    border-color: #2563eb !important;
    box-shadow: 0 12px 28px -4px rgba(37, 99, 235, 0.15) !important;
}

.pillar-card-recruiter {
    border-top: 4px solid #f59e0b !important;
}
.pillar-card-recruiter:hover {
    border-color: #f59e0b !important;
    box-shadow: 0 12px 28px -4px rgba(245, 158, 11, 0.15) !important;
}

/* =========================================================================
   7. HERO DESIGN SYSTEM & CONVERSION-OPTIMIZED TOKENS
   ========================================================================= */

.hero-enterprise-dark {
    position: relative;
    background-color: #070b14 !important;
    background: radial-gradient(circle at 20% 20%, rgba(14, 165, 233, 0.18) 0%, transparent 40%),
                radial-gradient(circle at 80% 30%, rgba(16, 185, 129, 0.15) 0%, transparent 45%),
                radial-gradient(circle at 50% 90%, rgba(99, 102, 241, 0.12) 0%, transparent 50%),
                linear-gradient(135deg, #070b14 0%, #0c1424 50%, #070d18 100%) !important;
    color: #ffffff !important;
    overflow: hidden;
}

.hero-enterprise-dark::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(56, 189, 248, 0.3) 50%, transparent 100%);
}

/* Atmospheric Glow Meshes */
.ambient-glow-cyan {
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.3) 0%, rgba(14, 165, 233, 0) 70%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
}

.ambient-glow-emerald {
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.28) 0%, rgba(16, 185, 129, 0) 70%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
}

.ambient-glow-purple {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.22) 0%, rgba(168, 85, 247, 0) 70%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
}

.ambient-glow-amber {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.25) 0%, rgba(245, 158, 11, 0) 70%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
}

/* High-Converting Gradients */
.text-gradient-aurora {
    background: linear-gradient(135deg, #38bdf8 0%, #34d399 50%, #6ee7b7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.text-gradient-emerald-cyan {
    background: linear-gradient(135deg, #10b981 0%, #06b6d4 50%, #38bdf8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.text-gradient-gold {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #fb923c 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.text-gradient-indigo {
    background: linear-gradient(135deg, #818cf8 0%, #6366f1 50%, #c084fc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Glassmorphism Cards */
.card-glass-dark {
    background: rgba(15, 23, 42, 0.78);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.05);
    border-radius: 1.25rem;
    color: #ffffff;
}

.card-glass-light {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.08), 0 2px 8px -2px rgba(15, 23, 42, 0.04);
    border-radius: 1.25rem;
}

/* Glowing Interactive Action Buttons */
.btn-glow-primary {
    background: linear-gradient(135deg, #2563eb 0%, #0284c7 100%);
    color: #ffffff !important;
    border: none;
    box-shadow: 0 4px 18px rgba(37, 99, 235, 0.4);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-glow-primary:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #0369a1 100%);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.55);
    transform: translateY(-2px);
}

.btn-glow-amber {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #0f172a !important;
    border: none;
    font-weight: 800;
    box-shadow: 0 4px 18px rgba(245, 158, 11, 0.35);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-glow-amber:hover {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.5);
    transform: translateY(-2px);
    color: #000000 !important;
}

/* Micro Elements & Indicators */
.live-pulse-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #10b981;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: livePulse 2s infinite;
}

@keyframes livePulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.trust-pill-dark {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.9rem;
    border-radius: 9999px;
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-search-wrapper {
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 9999px;
    padding: 0.4rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.4);
    transition: all 0.25s ease;
}

.hero-search-wrapper:focus-within {
    border-color: rgba(56, 189, 248, 0.6);
    box-shadow: 0 12px 30px -5px rgba(14, 165, 233, 0.35);
}

/* Master Contrast Subsystem for Marketing Canvas */
.hero-enterprise-dark,
.hero-psychology-dark,
.card-glass-dark,
.cockpit-glass-card {
    --ma-text: #ffffff;
    --ma-text-secondary: #e2e8f0;
    --ma-text-muted: #cbd5e1;
    color: #ffffff !important;
}

.hero-enterprise-dark .text-muted,
.hero-psychology-dark .text-muted,
.card-glass-dark .text-muted,
.cockpit-glass-card .text-muted {
    color: #cbd5e1 !important;
}

.hero-enterprise-dark .text-secondary,
.hero-psychology-dark .text-secondary,
.card-glass-dark .text-secondary,
.cockpit-glass-card .text-secondary {
    color: #e2e8f0 !important;
}

.hero-enterprise-dark .text-dark,
.hero-psychology-dark .text-dark,
.card-glass-dark .text-dark {
    color: #ffffff !important;
}


