/* ============================================================
   AI-Academy, aligned with the site design system
   Dark hero, light content sections, dark closing CTA
   ============================================================ */

/* ===== HERO (dark, like the other subpage heroes) ===== */
.acad-hero {
    min-height: auto;
    display: flex;
    align-items: center;
    background: radial-gradient(1200px 800px at 80% -5%, rgba(109, 40, 217, 0.5), transparent 60%),
                radial-gradient(1000px 700px at 10% 10%, rgba(255, 195, 0, 0.14), transparent 55%),
                linear-gradient(135deg, #0a1628 0%, var(--purple-deeper) 40%, var(--purple) 100%);
    color: var(--white);
    padding: 150px 0 90px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.acad-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(255, 195, 0, 0.14);
    border: 1px solid rgba(255, 195, 0, 0.4);
    padding: 9px 20px;
    border-radius: 999px;
    margin-bottom: 24px;
}
.acad-badge-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 12px 2px rgba(255, 195, 0, 0.9);
    animation: acad-pulse 1.6s ease-in-out infinite;
}
@keyframes acad-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.25); }
}

.acad-welcome {
    font-size: clamp(1.1rem, 2.4vw, 1.6rem) !important;
    font-weight: 500 !important;
    color: rgba(255, 255, 255, 0.82) !important;
    letter-spacing: 0.02em;
    margin: 0 0 4px !important;
    line-height: 1.2 !important;
}
/* The hero headline is one unbreakable token, so it needs more room than the
   default hero content column and a size tuned to Poppins (wider than most). */
.acad-hero .hero-content {
    max-width: 1080px;
}
.acad-title {
    font-weight: 800;
    font-size: clamp(2.2rem, 9.5vw, 8.5rem);
    line-height: 0.92;
    letter-spacing: -0.03em;
    background: linear-gradient(100deg, #FFE7A6 0%, var(--gold) 26%, #FFF4D6 46%, var(--gold-dark) 62%, var(--gold) 82%, #FFE7A6 100%);
    background-size: 220% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    /* Visible without any animation on purpose: the site's .animate-in starts at
       opacity 0, and a second animation here would override its fade-in, leaving
       the headline invisible wherever animations do not run. */
    animation: acad-shimmer 6s linear infinite;
    filter: drop-shadow(0 10px 40px rgba(255, 195, 0, 0.3));
    margin: 0;
}
@keyframes acad-shimmer {
    to { background-position: 220% center; }
}

/* The differentiating claim, directly under the wordmark */
.acad-claim {
    font-size: clamp(1.15rem, 2.5vw, 1.85rem) !important;
    font-weight: 600 !important;
    line-height: 1.35 !important;
    color: rgba(255, 255, 255, 0.9) !important;
    margin: 20px auto 0 !important;
    max-width: 820px;
}
.acad-claim strong {
    color: var(--gold);
    font-weight: 700;
}

.acad-hero-subtitle {
    max-width: 720px;
    margin: 26px auto 0 !important;
    font-size: 1.1rem !important;
    line-height: 1.65 !important;
    color: rgba(255, 255, 255, 0.85) !important;
}
.acad-hero-subtitle strong { color: var(--white); }

/* Countdown */
.acad-countdown-label {
    margin-top: 56px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}
.acad-countdown {
    display: flex;
    gap: clamp(10px, 2vw, 20px);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}
.acad-cd-card {
    min-width: 118px;
    padding: 22px 18px 16px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(14px);
}
.acad-cd-num {
    font-weight: 800;
    font-size: clamp(2.6rem, 6vw, 4.4rem);
    line-height: 1;
    font-variant-numeric: tabular-nums;
    color: var(--white);
}
.acad-cd-lbl {
    margin-top: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}
.acad-cd-card.is-seconds {
    background: rgba(255, 195, 0, 0.16);
    border-color: rgba(255, 195, 0, 0.5);
}
.acad-cd-card.is-seconds .acad-cd-num { color: var(--gold-light); }
.acad-cd-card.is-seconds .acad-cd-lbl { color: var(--gold); }

.acad-launch-line {
    margin-top: 22px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.72);
}
.acad-launch-line strong { color: var(--gold); }

/* ===== MODULE TILES (light) ===== */
.acad-modules-section { background: var(--white); }
.acad-tiles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.acad-tile {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 0 0 24px;
    display: flex;
    flex-direction: column;
    border: 1px solid transparent;
    overflow: hidden;
    transition: var(--transition);
}
.acad-tile:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--gray-200);
}
.acad-tile-art {
    position: relative;
    height: 96px;
    display: flex;
    align-items: center;
    padding: 0 26px;
    margin-bottom: 18px;
}
.acad-tile-num {
    position: absolute;
    right: 20px;
    bottom: 6px;
    font-weight: 800;
    font-size: 2.6rem;
    line-height: 1;
    color: rgba(255, 255, 255, 0.35);
}
.acad-tile h3 {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--gray-800);
    margin: 0 26px;
    display: flex;
    align-items: center;
    flex: 1;
}
.acad-tile p {
    font-size: 0.93rem;
    line-height: 1.6;
    color: var(--gray-500);
    margin: 0 26px;
}

/* ===== CAPSTONE TILE (full width, closing USP) ===== */
.acad-tile.is-wide {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 200px 1fr;
    align-items: center;
    padding: 0 32px 0 0;
}
.acad-tile.is-wide .acad-tile-art {
    height: 100%;
    min-height: 112px;
    margin-bottom: 0;
}
.acad-tile.is-wide h3 {
    margin: 0 0 0 32px;
    font-size: 1.5rem;
}

/* ===== CURRICULUM: 3 acts, 11 modules (light) ===== */
.acad-curriculum-section { background: var(--gray-50); }
.acad-act {
    margin-top: 44px;
}
.acad-act-head {
    display: flex;
    align-items: baseline;
    gap: 16px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--gold);
    margin-bottom: 22px;
}
.acad-act-num {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-dark);
    white-space: nowrap;
}
.acad-act-head h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--purple-dark);
    margin: 0;
}
.acad-act-head span.acad-act-claim {
    font-size: 0.95rem;
    color: var(--gray-500);
    font-style: italic;
}
.acad-modules-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 24px;
}
.acad-module-row {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 14px;
    align-items: start;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 16px 18px;
    transition: var(--transition);
}
.acad-module-row:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-sm);
    transform: translateX(3px);
}
.acad-module-row.is-highlight {
    border-color: rgba(255, 195, 0, 0.6);
    background: linear-gradient(160deg, rgba(255, 195, 0, 0.09), var(--white));
}
.acad-module-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(55, 12, 123, 0.08);
    color: var(--purple);
    font-weight: 800;
    /* Enthaelt ein Themen-Symbol statt einer Modulnummer, deshalb groesser */
    font-size: 1.15rem;
    line-height: 1;
}
.acad-module-row.is-highlight .acad-module-num {
    background: rgba(255, 195, 0, 0.25);
    color: var(--gold-dark);
}
.acad-module-row strong {
    display: block;
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--gray-800);
    line-height: 1.35;
}
.acad-module-row span {
    display: block;
    margin-top: 4px;
    font-size: 0.86rem;
    line-height: 1.55;
    color: var(--gray-500);
}
.acad-curriculum-note {
    margin-top: 40px;
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--gray-600);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
.acad-curriculum-note strong { color: var(--purple-dark); }

/* ===== HOST / AUTHORITY (light) ===== */
.acad-host-section { background: var(--gray-50); }
.acad-host {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 56px;
    align-items: center;
}
.acad-host-photo {
    width: 100%;
    border-radius: var(--radius-lg);
    display: block;
    box-shadow: var(--shadow-md);
}
.acad-host-tuv {
    display: block;
    margin-top: 18px;
    text-decoration: none;
}
.acad-host-tuv img {
    width: 100%;
    max-width: 260px;
    height: auto;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.acad-host-tuv:hover img {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.acad-host-tuv span {
    display: block;
    margin-top: 6px;
    font-size: 0.75rem;
    color: var(--gray-500);
}
.acad-host-content h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--purple-dark);
    margin: 10px 0 18px;
}
.acad-host-content > p {
    font-size: 1.02rem;
    line-height: 1.75;
    color: var(--gray-600);
    margin-bottom: 16px;
}
.acad-credentials {
    list-style: none;
    padding: 0;
    margin: 26px 0 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 24px;
}
.acad-credentials li {
    position: relative;
    padding-left: 30px;
    font-size: 0.94rem;
    line-height: 1.55;
    color: var(--gray-600);
}
.acad-credentials li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 195, 0, 0.18);
    color: var(--gold-dark);
    font-size: 0.72rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== PROOF STRIP (inside the host section) ===== */
.acad-proof {
    margin-top: 34px;
    padding-top: 26px;
    border-top: 1px solid var(--gray-200);
}
.acad-proof-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--purple);
    margin-bottom: 18px;
}
.acad-proof-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.acad-proof-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--purple-dark);
    line-height: 1.15;
}
.acad-proof-items p {
    font-size: 0.85rem;
    line-height: 1.55;
    color: var(--gray-500);
    margin: 4px 0 0;
}
.acad-proof-note {
    margin-top: 18px;
    font-size: 0.8rem;
    font-style: italic;
    color: var(--gray-400);
}

/* ===== FOUNDING COHORT (dark band before the price) ===== */
.acad-founding-section {
    background: linear-gradient(135deg, var(--purple-deeper) 0%, var(--purple) 60%, #6D28D9 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.acad-founding-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -5%;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(255, 195, 0, 0.18), transparent 65%);
    pointer-events: none;
}
.acad-founding-section .section-header {
    position: relative;
    z-index: 1;
}
.acad-founding-section .section-label {
    color: var(--gold);
}
.acad-founding-section .section-title {
    color: var(--white);
}
.acad-founding-section .section-subtitle {
    color: rgba(255, 255, 255, 0.82);
}
.acad-founding-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 46px;
}
.acad-founding-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-lg);
    padding: 34px 28px;
    backdrop-filter: blur(12px);
}
.acad-founding-card h3 {
    font-size: 1.12rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 10px;
}
.acad-founding-card p {
    font-size: 0.94rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}
.acad-founding-note {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 36px auto 0;
    text-align: center;
    font-size: 0.98rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}
.acad-founding-note strong { color: var(--gold); }

/* ===== TEAM / ART. 4 COMPLIANCE BAND ===== */
.acad-compliance-section {
    background: var(--white);
    padding-top: 0;
}
.acad-compliance-card {
    display: grid;
    grid-template-columns: 84px 1fr auto;
    gap: 30px;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 195, 0, 0.12), rgba(255, 195, 0, 0.03));
    border: 1.5px solid rgba(255, 195, 0, 0.55);
    border-radius: var(--radius-lg);
    padding: 40px 44px;
}
.acad-compliance-icon {
    width: 84px;
    height: 84px;
    border-radius: 22px;
    background: var(--white);
    color: var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}
.acad-compliance-body h2 {
    font-size: clamp(1.25rem, 2.2vw, 1.7rem);
    font-weight: 700;
    color: var(--purple-dark);
    line-height: 1.3;
    margin: 0 0 12px;
}
.acad-compliance-body > p {
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--gray-600);
    margin: 0;
}
.acad-compliance-points {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 26px;
}
.acad-compliance-points li {
    position: relative;
    padding-left: 24px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--purple-dark);
}
.acad-compliance-points li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--gold-dark);
    font-weight: 800;
}
.acad-compliance-cta {
    text-align: center;
}
.acad-compliance-cta .btn { white-space: nowrap; }
.acad-compliance-hint {
    display: block;
    margin-top: 10px;
    font-size: 0.78rem;
    color: var(--gray-500);
}

@media (max-width: 1024px) {
    .acad-compliance-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 36px 28px;
        gap: 22px;
    }
    .acad-compliance-icon { margin: 0 auto; }
    .acad-compliance-points { justify-content: center; }
}

/* ===== THREE DIMENSIONS + PROOF OF COMPETENCE ===== */
.acad-dimensions-section { background: var(--gray-50); }
.acad-lia-quote {
    max-width: 760px;
    margin: 0 auto 44px;
    padding: 22px 28px;
    border-left: 3px solid var(--gold);
    background: var(--white);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-size: 1.02rem;
    line-height: 1.7;
    color: var(--gray-700);
    font-style: italic;
    box-shadow: var(--shadow-sm);
}
.acad-lia-quote cite {
    display: block;
    margin-top: 10px;
    font-style: normal;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--purple);
}
.acad-dimensions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.acad-dimension {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 30px 26px;
    display: flex;
    flex-direction: column;
}
.acad-dimension-tag {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 10px;
}
.acad-dimension h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--purple-dark);
    line-height: 1.4;
    margin: 0 0 16px;
}
.acad-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}
.acad-chips span {
    font-size: 0.8rem;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    color: var(--gray-600);
}

.acad-arrow-down {
    display: flex;
    justify-content: center;
    margin: 34px 0 0;
    color: var(--gold-dark);
}

/* Proof of competence document */
.acad-record {
    max-width: 760px;
    margin: 22px auto 0;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-top: 4px solid var(--gold);
    border-radius: var(--radius-md);
    padding: 34px 36px;
    box-shadow: var(--shadow-md);
}
.acad-record-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 20px;
}
.acad-record-head svg { color: var(--purple); flex-shrink: 0; }
.acad-record-head strong {
    font-size: 1.05rem;
    color: var(--purple-dark);
}
.acad-record-row {
    display: grid;
    grid-template-columns: 210px 1fr;
    gap: 16px;
    padding: 11px 0;
    border-bottom: 1px dashed var(--gray-200);
    font-size: 0.92rem;
}
.acad-record-row:last-of-type { border-bottom: 0; }
.acad-record-row dt {
    font-weight: 700;
    color: var(--gray-600);
}
.acad-record-row dd {
    margin: 0;
    color: var(--purple-dark);
    font-weight: 600;
}
.acad-record-legal {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-200);
    font-size: 0.84rem;
    line-height: 1.6;
    color: var(--gray-500);
    font-style: italic;
}
.acad-record-note {
    max-width: 760px;
    margin: 22px auto 0;
    text-align: center;
    font-size: 0.88rem;
    color: var(--gray-500);
}

@media (max-width: 1024px) {
    .acad-dimensions { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
    .acad-record-row { grid-template-columns: 1fr; gap: 4px; }
    .acad-record { padding: 28px 24px; }
}

/* ===== GUARANTEE / RISK REVERSAL (light) ===== */
.acad-guarantee-section { background: var(--white); }
.acad-guarantee {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 44px;
}
.acad-guarantee-card {
    text-align: center;
    padding: 40px 28px;
    border-radius: var(--radius-lg);
    background: var(--gray-50);
    border: 1px solid transparent;
    transition: var(--transition);
}
.acad-guarantee-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--gray-200);
}
.acad-guarantee-card.is-primary {
    background: linear-gradient(160deg, rgba(255, 195, 0, 0.14), rgba(255, 195, 0, 0.04));
    border-color: rgba(255, 195, 0, 0.5);
}
.acad-guarantee-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(55, 12, 123, 0.08);
    color: var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.acad-guarantee-card.is-primary .acad-guarantee-icon {
    background: rgba(255, 195, 0, 0.25);
    color: var(--gold-dark);
}
.acad-guarantee-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--purple-dark);
    margin-bottom: 10px;
}
.acad-guarantee-card p {
    font-size: 0.94rem;
    line-height: 1.7;
    color: var(--gray-500);
    margin: 0;
}

/* ===== PRICING (light) ===== */
.acad-pricing-section { background: var(--gray-50); }
.acad-launch-pill {
    display: inline-block;
    margin-top: 18px;
    padding: 9px 20px;
    border-radius: 999px;
    background: rgba(255, 195, 0, 0.16);
    border: 1px solid rgba(255, 195, 0, 0.5);
    color: var(--gold-dark);
    font-size: 0.85rem;
    font-weight: 700;
}
.acad-plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
    margin-top: 48px;
}
.acad-plan {
    position: relative;
    display: flex;
    flex-direction: column;
    text-align: left;
    padding: 36px 30px;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.acad-plan:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.acad-plan.is-featured {
    border: 2px solid var(--gold);
    box-shadow: var(--shadow-md);
}
.acad-plan-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    padding: 7px 18px;
    border-radius: 999px;
    background: linear-gradient(100deg, var(--gold-light), var(--gold) 55%, var(--gold-dark));
    color: var(--purple-dark);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}
.acad-plan h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--purple-dark);
    margin: 0;
}
.acad-plan-was {
    margin-top: 14px;
    font-size: 0.9rem;
    color: var(--gray-400);
}
.acad-plan-now {
    font-weight: 800;
    font-size: 2.6rem;
    line-height: 1.15;
    color: var(--purple);
    margin-top: 2px;
}
.acad-plan.is-featured .acad-plan-now { font-size: 3rem; }
.acad-plan-now span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-500);
}
.acad-plan-tag {
    margin-top: 6px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold-dark);
}
.acad-plan ul {
    list-style: none;
    padding: 0;
    margin: 24px 0 26px;
    flex-grow: 1;
}
.acad-plan li {
    padding: 9px 0 9px 28px;
    position: relative;
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--gray-600);
    border-bottom: 1px solid var(--gray-100);
}
.acad-plan li::before {
    content: "\2713";
    position: absolute;
    left: 2px;
    color: var(--gold-dark);
    font-weight: 800;
}
.acad-plan .btn {
    width: 100%;
    justify-content: center;
}
.acad-plan-talk {
    display: block;
    text-align: center;
    margin-top: 12px;
    font-size: 0.87rem;
    font-weight: 600;
    color: var(--gray-500);
    text-decoration: none;
}
.acad-plan-talk:hover { color: var(--purple); }
.acad-pricing-note {
    margin-top: 28px;
    font-size: 0.85rem;
    color: var(--gray-500);
    text-align: center;
}

/* ===== FAQ (light, matches the homepage FAQ) ===== */
.acad-faq-section { background: var(--white); }
.acad-faq-section .faq-list {
    max-width: 820px;
    margin: 48px auto 0;
}

/* ===== CLOSING CTA (dark card, like the other subpages) ===== */
.acad-cta-section { background: var(--gray-50); }
.acad-cta-card {
    background: linear-gradient(135deg, var(--purple-deeper) 0%, var(--purple) 55%, #6D28D9 100%);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 72px 52px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}
.acad-cta-card::before {
    content: '';
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 560px;
    height: 560px;
    background: radial-gradient(circle, rgba(255, 195, 0, 0.22), transparent 65%);
    pointer-events: none;
}
.acad-cta-card h2 {
    position: relative;
    z-index: 1;
    color: var(--white);
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.1;
    margin-bottom: 18px;
}
.acad-cta-accent {
    background: linear-gradient(100deg, #FFE7A6, var(--gold), #FFF4D6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.acad-cta-card p {
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 640px;
    margin: 0 auto 32px;
}
.acad-cta-card .btn { position: relative; z-index: 1; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .acad-tiles { grid-template-columns: repeat(2, 1fr); }
    .acad-plans { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }
    .acad-host { grid-template-columns: 1fr; gap: 36px; }
    .acad-host-visual { max-width: 320px; margin: 0 auto; }
    .acad-guarantee { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }
    .acad-founding-grid { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }
    .acad-modules-list { grid-template-columns: 1fr; }
    .acad-tile.is-wide { grid-template-columns: 1fr; padding: 0 0 0 0; }
    .acad-tile.is-wide .acad-tile-art { min-height: 110px; margin-bottom: 22px; }
    .acad-tile.is-wide h3, .acad-tile.is-wide p { margin-left: 26px; margin-right: 26px; }
}
@media (max-width: 768px) {
    .acad-hero { padding: 120px 0 64px; }
    .acad-tiles { grid-template-columns: 1fr; }
    .acad-cd-card { min-width: 88px; padding: 16px 12px 12px; }
    .acad-cta-card { padding: 48px 26px; }
    .acad-credentials { grid-template-columns: 1fr; }
    .acad-proof-items { grid-template-columns: 1fr; gap: 16px; }
}
