/* ============================================================
   KRAXELBANDE – Modelle Page Styles
   ============================================================ */

/* ==========================================================
   HERO
   ========================================================== */
.modelle-hero {
    position: relative;
    background: var(--color-text);
    padding: calc(var(--header-height) + 60px) 0 120px;
    overflow: hidden;
    color: #fff;
}

/* Decorative orbs */
.modelle-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.mhero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.18;
}

.mhero-orb--1 {
    width: 500px;
    height: 500px;
    background: var(--color-accent-1);
    top: -150px;
    right: -100px;
}

.mhero-orb--2 {
    width: 400px;
    height: 400px;
    background: var(--color-accent-2);
    bottom: -100px;
    left: -80px;
}

.mhero-orb--3 {
    width: 300px;
    height: 300px;
    background: var(--color-accent-1);
    top: 50%;
    left: 40%;
    transform: translate(-50%, -50%);
    opacity: 0.1;
}

.modelle-hero-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.modelle-eyebrow {
    display: inline-flex;
    align-items: center;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-accent-1);
    border: 1.5px solid rgba(164, 189, 30, 0.4);
    border-radius: 4px;
    padding: 5px 14px;
}

.modelle-hero-title {
    font-size: clamp(2.4rem, 6vw, 4.5rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin: 0;
}

.mtext-accent {
    color: var(--color-accent-1);
}

.modelle-hero-subtitle {
    font-size: var(--fs-md);
    color: rgba(255, 255, 255, 0.7);
    max-width: 560px;
    line-height: 1.6;
    margin: 0;
}

/* Wave transition */
.modelle-hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
}

.modelle-hero-wave svg {
    display: block;
    width: 100%;
    height: 90px;
}

/* ==========================================================
   CARDS SECTION
   ========================================================== */
.modelle-cards {
    background: var(--color-bg);
}

.modelle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    align-items: start;
}

/* === Card Base === */
.modell-card {
    background: var(--color-bg);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform var(--duration-normal) var(--ease-out), box-shadow var(--duration-normal) var(--ease-out);
    border: 1px solid var(--color-border);
}

.modell-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

/* === Card Header === */
.modell-card-header {
    position: relative;
    padding: 36px 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.modell-header--green {
    background: linear-gradient(135deg, rgba(164, 189, 30, 0.12) 0%, rgba(164, 189, 30, 0.04) 100%);
    border-bottom: 2px solid rgba(164, 189, 30, 0.15);
}

.modell-header--blue {
    background: linear-gradient(135deg, rgba(89, 136, 185, 0.14) 0%, rgba(89, 136, 185, 0.04) 100%);
    border-bottom: 2px solid rgba(89, 136, 185, 0.18);
}

/* === Icon === */
.modell-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    border-radius: var(--radius-lg);
    margin-bottom: 4px;
}

.modell-header--green .modell-icon {
    background: rgba(164, 189, 30, 0.15);
    color: var(--color-accent-1-dark);
}

.modell-header--blue .modell-icon {
    background: rgba(89, 136, 185, 0.15);
    color: var(--color-accent-2);
}

/* === Badge === */
.modell-badge {
    display: inline-flex;
    align-items: center;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: var(--radius-full);
    width: fit-content;
}

.modell-header--green .modell-badge {
    background: rgba(164, 189, 30, 0.18);
    color: var(--color-accent-1-dark);
}

.modell-header--blue .modell-badge {
    background: rgba(89, 136, 185, 0.18);
    color: var(--color-accent-2-dark);
}

/* === Card Body === */
.modell-card-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 16px;
}

.modell-title {
    font-size: var(--fs-md);
    font-weight: 800;
    color: var(--color-text);
    margin: 0;
}

.modell-desc {
    font-size: var(--fs-sm);
    color: var(--color-text-light);
    line-height: 1.65;
    margin: 0;
}

/* === Facts List === */
.modell-facts {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.modell-facts li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: var(--fs-sm);
    font-weight: 500;
    color: var(--color-text);
}

.modell-facts li svg {
    flex-shrink: 0;
    color: var(--color-accent-1-dark);
}

/* === Buttons === */
.modell-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
    padding: 13px 22px;
    border-radius: var(--radius-full);
    font-size: var(--fs-sm);
    font-weight: 700;
    text-decoration: none;
    border: 2px solid var(--color-text);
    color: var(--color-text);
    background: transparent;
    transition: all var(--duration-normal) var(--ease-out);
    white-space: nowrap;
}

.modell-btn:hover {
    background: var(--color-text);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.modell-btn--blue {
    background: var(--color-accent-2);
    color: #fff;
    border-color: var(--color-accent-2);
    box-shadow: 0 4px 14px rgba(89, 136, 185, 0.3);
}

.modell-btn--blue:hover {
    background: var(--color-accent-2-dark);
    border-color: var(--color-accent-2-dark);
    box-shadow: 0 8px 24px rgba(89, 136, 185, 0.4);
}

/* ==========================================================
   CTA BANNER
   ========================================================== */
.modelle-cta-banner {
    background: var(--color-bg-soft);
    padding: var(--space-3xl) 0;
    border-top: 1px solid var(--color-border);
}

.modelle-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xl);
}

.modelle-cta-text h2 {
    font-size: var(--fs-lg);
    font-weight: 800;
    margin-bottom: 6px;
}

.modelle-cta-text p {
    color: var(--color-text-light);
    font-size: var(--fs-sm);
}

.modelle-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--color-accent-2);
    color: #fff;
    font-size: var(--fs-sm);
    font-weight: 700;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: var(--radius-full);
    white-space: nowrap;
    flex-shrink: 0;
    transition: background var(--duration-fast) ease, transform var(--duration-fast) ease, box-shadow var(--duration-fast) ease;
    box-shadow: 0 4px 16px rgba(89, 136, 185, 0.3);
}

.modelle-cta-btn:hover {
    background: var(--color-accent-2-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(89, 136, 185, 0.4);
}

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

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

    .modelle-cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .modelle-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .modelle-hero {
        padding-bottom: 100px;
    }
}