:root {
    /* Premium Farbpalette - Inklusiv & Warm */
    --primary-color: #6B4EE6;
    /* Hauptfarbe Lila */
    --primary-light: #9D84FF;
    --primary-dark: #5136B8;

    --secondary-color: #FFD166;
    /* Akzent Gelb/Gold */
    --secondary-hover: #FFC43D;

    --accent-color: #06D6A0;
    /* Grün für Positives/Inklusion */
    --accent-dark: #05B589;

    --error-color: #FF4D4D;
    /* Dringlichkeit */

    --bg-gradient-start: #FFF9F2;
    --bg-gradient-end: #FDFDFD;

    --text-color: #2D2D2D;
    --text-muted: #555555;
    /* Etwas dunkler für bessere Lesbarkeit */
    --white: #FFFFFF;

    /* Neue Premium Schatten (farbig getönt) */
    --shadow-soft: 0 10px 30px rgba(107, 78, 230, 0.08);
    --shadow-card: 0 20px 40px rgba(107, 78, 230, 0.1);
    --shadow-hover: 0 25px 50px rgba(107, 78, 230, 0.2);

    --radius-sm: 16px;
    --radius-md: 24px;
    --radius-lg: 40px;

    --transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    /* Bouncy feel */
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(180deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- UTILITIES --- */
.container {
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
}

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

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

.section-padding {
    padding: 80px 0;
}

@media (min-width: 1024px) {
    .section-padding {
        padding: 120px 0;
    }
}

/* --- TYPOGRAPHY --- */
h1,
h2,
h3,
h4 {
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--primary-dark);
    letter-spacing: -0.02em;
}

h1 {
    font-size: 2.2rem;
    margin-bottom: 24px;
}

h2 {
    font-size: 1.8rem;
    margin-bottom: 24px;
}

p {
    margin-bottom: 16px;
    font-size: 1.125rem;
    color: var(--text-muted);
}

.small-note,
.hero-badge,
.urgency-text,
.expert-quote {
    font-family: 'Patrick Hand', cursive;
    letter-spacing: 0.5px;
}

@media (min-width: 1024px) {
    h1 {
        font-size: 3.8rem;
    }

    h2 {
        font-size: 2.8rem;
    }
}

/* --- HEADER --- */
.header {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.fud-logo-img {
    height: 48px;
    width: auto;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.nav-links-desktop {
    display: none;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* TTS Button */
.btn-read-aloud,
.btn-read-aloud-mobile {
    background: #F0EDFF;
    color: var(--primary-dark);
    border: 2px solid rgba(107, 78, 230, 0.1);
    padding: 10px 16px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    display: none;
    /* Mobile hidden mainly, specialized logic */
    align-items: center;
    gap: 8px;
}

.btn-read-aloud:hover {
    background: #E5E0FF;
    border-color: var(--primary-color);
}

.speaking-active {
    background: var(--secondary-color) !important;
    color: var(--text-color) !important;
    animation: pulse-speak 2s infinite;
}

@keyframes pulse-speak {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 209, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 209, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 209, 102, 0);
    }
}

.burger-menu {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 2001;
}

.burger-menu span {
    width: 24px;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--white);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.mobile-nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav-link {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-dark);
    text-decoration: none;
}

.btn-read-aloud-mobile {
    display: flex;
    width: auto;
    font-size: 1.2rem;
    padding: 12px 24px;
}

.mobile-nav-overlay .btn-hero {
    width: auto;
}

/* Desktop Overrides */
@media (min-width: 1024px) {
    .fud-logo-img {
        height: 60px;
    }

    .nav-links-desktop {
        display: flex;
        gap: 24px;
        background: rgba(107, 78, 230, 0.04);
        padding: 8px 24px;
        border-radius: 100px;
    }

    .nav-link {
        text-decoration: none;
        color: var(--primary-dark);
        font-weight: 500;
        transition: var(--transition);
    }

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

    .btn-read-aloud {
        display: flex;
    }

    .cta-signup-nav {
        display: inline-block;
        background: var(--primary-color);
        color: var(--white);
        padding: 12px 24px;
        border-radius: 100px;
        text-decoration: none;
        font-weight: 600;
        transition: var(--transition);
    }

    .cta-signup-nav:hover {
        background: var(--primary-dark);
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(107, 78, 230, 0.2);
    }

    .burger-menu {
        display: none;
    }
}

/* --- HERO SECTION --- */
.hero-section {
    padding-top: 40px;
    padding-bottom: 60px;
    overflow: hidden;
}

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

.hero-content {
    text-align: center;
    order: 1;
}

.badges-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}

.hero-badge {
    display: inline-block;
    padding: 12px 28px;
    background: var(--secondary-color);
    color: var(--primary-dark);
    border-radius: 100px;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    border: 2px solid var(--white);
    box-shadow: 0 8px 25px rgba(255, 209, 102, 0.4);
    transition: var(--transition);
}

.hero-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 209, 102, 0.6);
}

.hero-badge-secondary {
    padding: 6px 16px;
    background: #E6FFFA;
    color: var(--accent-dark);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(6, 214, 160, 0.3);
}

.hero-subheadline {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

/* Countdown */
.countdown-box {
    background: #FFF5F5;
    border: 2px solid var(--error-color);
    border-radius: var(--radius-md);
    padding: 20px;
    margin: 32px 0;
}

.countdown-text {
    color: var(--error-color);
    font-weight: 700;
    margin-bottom: 12px;
}

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

.countdown-item {
    background: white;
    padding: 10px;
    border-radius: 12px;
    min-width: 55px;
    box-shadow: 0 4px 10px rgba(255, 77, 77, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-item span:first-child {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--error-color);
    line-height: 1;
}

.countdown-label {
    font-size: 0.7rem;
    color: #888;
    margin-top: 4px;
}

.expired-msg {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.25rem;
    text-align: center;
    padding: 10px;
    background: white;
    border-radius: 12px;
    width: 100%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* CTA Button */
.btn-hero {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-hover));
    color: var(--primary-dark);
    padding: 16px 36px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 1.2rem;
    text-decoration: none;
    box-shadow: 0 15px 30px rgba(255, 209, 102, 0.4);
    transition: var(--transition);
    width: 100%;
    position: relative;
    overflow: hidden;
}

.btn-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(255, 255, 255, 0.4), transparent);
    opacity: 0;
    transition: 0.3s;
}

.btn-hero:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 209, 102, 0.6);
}

.btn-hero:hover::after {
    opacity: 1;
}

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

@keyframes pulse-button {
    0% {
        box-shadow: 0 15px 30px rgba(255, 209, 102, 0.4);
    }

    50% {
        box-shadow: 0 20px 40px rgba(255, 209, 102, 0.6);
    }

    100% {
        box-shadow: 0 15px 30px rgba(255, 209, 102, 0.4);
    }
}

.hero-image-wrapper {
    order: 2;
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-img-main {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    position: relative;
    z-index: 2;
}

.hero-blob {
    position: absolute;
    width: 120%;
    height: 100%;
    background: var(--secondary-color);
    opacity: 0.15;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 1;
    top: 10%;
    left: -10%;
    animation: blob-float 8s ease-in-out infinite;
}

@keyframes blob-float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(20px, -20px) scale(1.05);
    }
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1.1fr 1fr;
        align-items: center;
    }

    .hero-content {
        text-align: left;
    }

    .badges-wrapper {
        align-items: flex-start;
        flex-direction: row;
    }

    .btn-hero {
        width: auto;
    }

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

    .countdown-timer {
        justify-content: flex-start;
    }
}

/* --- PROBLEM & SOLUTION --- */
.problem-section-wrapper {
    background: linear-gradient(180deg, #F8F4FF 0%, #FFF5F8 100%);
}

.problem-card,
.solution-card {
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    box-shadow: 0 8px 30px rgba(107, 78, 230, 0.08);
    position: relative;
    z-index: 1;
}

/* Gradient border effect for problem cards */
.problem-card {
    border: 2px solid transparent;
    background:
        linear-gradient(var(--white), var(--white)) padding-box,
        linear-gradient(135deg, #C7A6FF 0%, #FFB8D0 100%) border-box;
}

/* Alternative: Specific card border colors based on position */
.problem-grid .problem-card:nth-child(1) {
    background:
        linear-gradient(var(--white), var(--white)) padding-box,
        linear-gradient(135deg, #B8A4FF 0%, #D8C4FF 100%) border-box;
}

.problem-grid .problem-card:nth-child(2) {
    background:
        linear-gradient(var(--white), var(--white)) padding-box,
        linear-gradient(135deg, #E8D0FF 0%, #FFD8E8 100%) border-box;
}

.problem-grid .problem-card:nth-child(3) {
    background:
        linear-gradient(var(--white), var(--white)) padding-box,
        linear-gradient(135deg, #D8C4FF 0%, #FFD0E0 100%) border-box;
}

.problem-grid .problem-card:nth-child(4) {
    background:
        linear-gradient(#FFFBF0, #FFFBF0) padding-box,
        linear-gradient(135deg, #FFE0C8 0%, #FFD0B8 100%) border-box;
}

.problem-card:hover,
.solution-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(107, 78, 230, 0.15);
    z-index: 2;
}

.solution-card {
    border-top: 4px solid var(--accent-color);
}

.problem-grid,
.solution-grid,
.stats-grid {
    display: grid;
    gap: 24px;
    margin-top: 40px;
}

/* Problem card specific styles */
.problem-card .problem-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    line-height: 1;
}

.problem-card h3 {
    color: #7C3AED;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.problem-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.solution-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
}

@media (min-width: 768px) {

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

/* Course Inclusions */
.course-inclusions-box {
    max-width: 800px;
    margin: 24px 0;
    background: #F4F1FF;
    padding: 32px;
    border-radius: 24px;
}

.course-inclusions-box h4 {
    margin-bottom: 16px;
    color: var(--primary-dark);
    text-align: center;
}

.inclusions-list {
    list-style: none;
    padding: 0;
    font-size: 1.1rem;
}

.inclusion-item {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.check-icon {
    color: var(--accent-dark);
    font-weight: bold;
}

@media (min-width: 1024px) {

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

/* --- EXPERT & COOPERATION --- */
.expert-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    overflow: hidden;
}

.expert-grid {
    display: grid;
    gap: 40px;
}

.expert-images-stacked {
    position: relative;
    width: 280px;
    height: 280px;
    margin: 0 auto;
}

.expert-img {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    border: 4px solid var(--secondary-color);
    object-fit: cover;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.partner-logo-overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    z-index: 2;
    object-fit: contain;
    border: 3px solid white;
}

.coop-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 16px;
    display: inline-block;
}

.expert-content h2 {
    color: white;
}

.expert-content p {
    color: rgba(255, 255, 255, 0.9);
}

.partner-link-box {
    margin-top: 24px;
    background: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: var(--radius-sm);
}

.google-rating {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    margin-bottom: 8px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 16px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    color: var(--primary-dark);
}

.partner-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.partner-link:hover {
    color: white;
    text-decoration: underline;
}

@media (min-width: 1024px) {
    .expert-grid {
        grid-template-columns: 1fr 1.5fr;
        align-items: center;
    }

    .expert-images-stacked {
        margin: 0;
    }
}

/* --- STATS --- */
.stat-card {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-weight: 700;
    color: var(--text-color);
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* --- COURSE DETAILS --- */
.course-details-box {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(107, 78, 230, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.course-detail-row {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #EEE;
}

.course-detail-row:last-child {
    border-bottom: none;
}

.course-detail-icon {
    font-size: 2rem;
}

.highlight-price {
    color: var(--primary-color);
    font-weight: 800;
    font-size: 1.5rem;
}

.small-note {
    font-size: 0.9rem;
    color: #888;
    margin-top: 4px;
}

.urgency-text {
    color: var(--error-color);
    font-weight: 700;
    text-align: center;
    margin-top: 24px;
    animation: pulse 2s infinite;
}

/* --- FORM --- */
.form-wrapper {
    max-width: 650px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    border: 1px solid #EEE;
}

.contact-form {
    margin-top: 32px;
}

.contact-form .small-note {
    margin-top: 8px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.form-input {
    width: 100%;
    padding: 16px;
    border: 2px solid #EEE;
    border-radius: 12px;
    font-size: 1rem;
    transition: 0.3s;
    margin-bottom: 8px;
}

.form-input:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 4px rgba(107, 78, 230, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 20px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* --- FAQ SECTION --- */
#faq {
    background: linear-gradient(180deg, #FFFFFF 0%, #F4F1FF 100%);
}

.faq-intro {
    margin-bottom: 40px;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Native HTML5 Details/Summary FAQ */
.faq-details {
    background: #ffffff;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-summary {
    padding: 20px 24px;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-dark);
    cursor: pointer;
    list-style: none;
    /* Remove default arrow */
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
}

.faq-summary::-webkit-details-marker {
    display: none;
    /* Remove default arrow in Chrome/Safari */
}

.faq-summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--secondary-color);
    background: #F0F0F0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    margin-left: 16px;
    transition: var(--transition);
}

.faq-details[open] .faq-summary::after {
    content: '−';
    background: var(--primary-color);
    color: white;
}

.faq-summary:hover {
    background: #F9FAFB;
}

.faq-content {
    padding: 0 24px 24px 24px;
    background: white;
}

.faq-content p {
    margin-bottom: 12px;
}

.faq-content p:last-child {
    margin-bottom: 0;
}

/* --- SOCIAL PROOF / TRUST SECTION --- */
.trust-section {
    background: linear-gradient(135deg, #F4F1FF 0%, #FFF5F8 100%);
    position: relative;
    overflow: hidden;
}

.trust-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(110, 68, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

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

.trust-section-heading {
    margin-bottom: 32px;
    font-size: 1.5rem;
    color: var(--primary-dark);
}

.comparison-table-wrapper {
    max-width: 1000px;
    margin: 0 auto 48px auto;
    overflow-x: auto;
    animation: slideUp 0.8s ease-out;
}

.comparison-table {
    width: 100%;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.comparison-table:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
}

.comparison-table thead tr {
    background: linear-gradient(135deg, #6E44FF 0%, #B373FF 100%);
    color: white;
}

.comparison-table th {
    padding: 24px 20px;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.comparison-table tbody tr {
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s ease;
}

.comparison-table tbody tr:nth-child(even) {
    background: #fafafa;
}

.comparison-table tbody tr:hover {
    background: #f5f3ff;
}

.comparison-table td {
    padding: 18px 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.benefits-grid {
    max-width: 1000px;
    margin: 0 auto;
    animation: slideUp 1s ease-out;
}

.benefit-card {
    background: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 28px rgba(110, 68, 255, 0.2);
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-20px, 20px) scale(1.1);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* Mobile Responsive */
@media (max-width: 768px) {

    .comparison-table th,
    .comparison-table td {
        padding: 12px 16px;
        font-size: 0.9rem;
    }

    .comparison-table th {
        font-size: 1rem;
    }
}


/* --- FOOTER --- */
.footer {
    background: #2D2D2D;
    color: white;
    padding: 60px 0 20px;
}

.footer h4 {
    color: white;
    margin-bottom: 16px;
}

.footer p,
.footer a {
    color: #BBB;
    font-size: 0.95rem;
}

.footer a:hover {
    color: var(--secondary-color);
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 16px;
}

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

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #444;
    padding-top: 20px;
}

/* MODALS */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 3000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    max-width: 600px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
}

.link-button {
    background: none;
    border: none;
    color: #BBB;
    text-decoration: underline;
    cursor: pointer;
    padding: 0;
    font-family: inherit;
}

.link-button:hover {
    color: white;
}

/* Included List Styles */
.included-list {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.included-list li {
    margin-bottom: 8px;
    font-size: 1rem;
    color: var(--text-color);
}

/* --- THANK YOU PAGE --- */
.thank-you-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.emoji-large {
    font-size: 4rem;
    margin-bottom: 20px;
}

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

/* --- COOKIE BANNER --- */
#cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 20px;
    right: 20px;
    background: white;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
    padding: 24px;
    border-radius: 16px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: bottom 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    max-width: 600px;
    margin: 0 auto 20px auto;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

#cookie-banner.show {
    bottom: 0;
}

.cookie-content h4 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.cookie-content p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0;
}

.cookie-actions {
    display: flex;
    gap: 12px;
}

.btn-accept {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    flex: 1;
}

.btn-decline {
    background: #f0f0f0;
    color: #444;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

@media (min-width: 768px) {
    #cookie-banner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .cookie-actions {
        min-width: 280px;
    }
}

/* --- ANIMATIONS & VISUAL POLISH --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays for grids */
.reveal.delay-100 {
    transition-delay: 0.1s;
}

.reveal.delay-200 {
    transition-delay: 0.2s;
}

.reveal.delay-300 {
    transition-delay: 0.3s;
}

.glass-card {
    background: rgba(255, 255, 255, 0.75) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    backdrop-filter: blur(16px) !important;
    border: 1px solid rgba(255, 255, 255, 0.8) !important;
    box-shadow: 0 8px 32px rgba(107, 78, 230, 0.08) !important;
}

/* Premium Enhancements for existing elements */
.problem-card,
.solution-card,
.course-details-box,
.form-wrapper {
    background: rgba(255, 255, 255, 0.85);
    /* Slightly transparent */
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.expert-section {
    box-shadow: 0 20px 50px rgba(107, 78, 230, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* --- EXPERTISE CARDS (Redesign) --- */
.expertise-cards-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
    margin-bottom: 32px;
}

@media (min-width: 900px) {
    .expertise-cards-wrapper {
        flex-direction: row;
        /* Side-by-side on desktop */
        align-items: stretch;
    }

    .expertise-card {
        flex: 1;
    }
}

.expertise-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    /* Rounded corners like design */
    box-shadow: 0 10px 30px rgba(107, 78, 230, 0.15);
    /* Soft premium shadow */
    overflow: hidden;
    /* Clip the header */
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
}

.expertise-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(107, 78, 230, 0.25);
}

/* Card Headers */
.card-header {
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.header-fud {
    /* Purple Gradient */
    background: linear-gradient(135deg, #B597F6 0%, #9066FF 100%);
}

.header-rana {
    /* Pink Gradient */
    background: linear-gradient(135deg, #FFDEE9 0%, #FF99AC 100%);
}

.header-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.card-logo {
    height: 48px;
    width: auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.card-header h4 {
    margin: 0;
    color: var(--white) !important;
    /* Force white text */
    font-size: 1.4rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Card Body */
.card-body {
    padding: 32px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.expertise-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    font-size: 1.1rem;
    color: var(--text-color);
}

.expertise-list li:last-child {
    margin-bottom: 0;
}

.list-icon {
    font-size: 1.5rem;
    min-width: 32px;
    text-align: center;
}

/* Specific text coloring for FUD header if needed */
.header-rana h4 {
    color: #8E1F3D !important;
    /* Darker pink/red for contrast if white is too light? */
    /* Looking at the image, Rana's text is dark red/purple. FUD is white. */
}

/* Correction based on image interaction */
.header-fud h4 {
    color: var(--white) !important;
}

.header-rana h4 {
    color: #6D1B36 !important;
    /* Deep berry color */
}

/* Adjust gradients to match image more closely */
.header-fud {
    background: linear-gradient(90deg, #A88BEB 0%, #D8A6FF 100%);
    /* Lighter purple to match image */
}

/* Actually image shows FUD: Purple block. Rana: Pink block. */
/* FUD css var: --primary-light: #9D84FF; --primary-dark: #5136B8; */

.header-fud {
    background: linear-gradient(90deg, #9D84FF 0%, #C7B2FF 100%);
}

.header-rana {
    background: linear-gradient(90deg, #FFE0E9 0%, #FFC2D1 100%);
}