/* ═══════════════════════════════════════════════════
   FUTTERMANN.AT – Haupt-Stylesheet
   Gold-Design-System
═══════════════════════════════════════════════════ */

:root {
    /* Backgrounds */
    --bg-primary:      #fdf9f0;
    --bg-secondary:    #f5ede0;
    --bg-dark:         #1c1409;
    --card-bg:         #ffffff;
    --card-bg-alt:     #fdf4e3;

    /* Gold Palette */
    --gold-primary:    #c8960c;
    --gold-light:      #e8b430;
    --gold-dark:       #8b6508;
    --gold-glow:       rgba(200, 150, 12, 0.35);
    --gold-subtle:     rgba(200, 150, 12, 0.12);

    /* Text */
    --text-primary:    #1c1409;
    --text-secondary:  #4a3c24;
    --text-muted:      #8a7a5c;
    --text-light:      #f7f0e0;

    /* Borders */
    --border-subtle:   rgba(200, 150, 12, 0.18);
    --border-glow:     rgba(200, 150, 12, 0.4);

    /* CTA */
    --cta-bg:          #c8960c;
    --cta-hover:       #e8a820;
    --cta-text:        #ffffff;
}

/* ─── RESET ─────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ─── TYPOGRAPHY ─────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-primary);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h3 { font-size: 1.35rem; }
p  { color: var(--text-secondary); }
a  { color: var(--gold-primary); text-decoration: none; }
a:hover { color: var(--gold-dark); }

/* ─── LAYOUT ─────────────────────────────────────── */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
section {
    padding: 5rem 0;
}
.section-label {
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--gold-primary);
    margin-bottom: 0.8rem;
    display: block;
}
.section-title {
    margin-bottom: 1rem;
}
.section-sub {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 3rem;
}

/* ─── NAV ─────────────────────────────────────────── */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1rem 2rem;
    background: rgba(253, 249, 240, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    transition: all 0.3s ease;
}
nav.scrolled {
    padding: 0.6rem 2rem;
    background: rgba(253, 249, 240, 0.97);
    box-shadow: 0 4px 24px rgba(200, 150, 12, 0.1);
}
.nav-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo img {
    height: 48px;
    transition: height 0.3s ease;
}
nav.scrolled .nav-logo img { height: 38px; }
.nav-links {
    display: flex;
    gap: 1.8rem;
    align-items: center;
    list-style: none;
}
.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold-primary); }
.nav-cta {
    background: var(--gold-primary);
    color: #fff !important;
    padding: 0.55rem 1.3rem;
    border-radius: 8px;
    font-weight: 600 !important;
    transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover {
    background: var(--gold-light) !important;
    transform: translateY(-1px);
}
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}
.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ─── BUTTONS ────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    transition: all 0.25s;
    border: none;
    text-decoration: none;
}
.btn-primary {
    background: var(--gold-primary);
    color: #fff;
    box-shadow: 0 4px 20px var(--gold-glow);
}
.btn-primary:hover {
    background: var(--gold-light);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px var(--gold-glow);
}
.btn-secondary {
    background: transparent;
    color: var(--gold-primary);
    border: 2px solid var(--border-glow);
}
.btn-secondary:hover {
    background: var(--gold-subtle);
    border-color: var(--gold-primary);
    color: var(--gold-dark);
    transform: translateY(-2px);
}
.btn-large {
    padding: 1.1rem 2.4rem;
    font-size: 1.1rem;
}
.btn-full { width: 100%; justify-content: center; }

/* ─── CARDS ──────────────────────────────────────── */
.card {
    background: var(--card-bg);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}
.card:hover {
    transform: translateY(-5px);
    border-color: var(--border-glow);
    box-shadow: 0 16px 48px var(--gold-glow);
}
.card-icon {
    width: 52px;
    height: 52px;
    background: var(--gold-subtle);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
}
.card h3 { margin-bottom: 0.6rem; }
.card p  { font-size: 0.95rem; }

/* ─── BADGE ──────────────────────────────────────── */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gold-subtle);
    border: 1px solid var(--border-subtle);
    padding: 0.35rem 0.9rem;
    border-radius: 99px;
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-dark);
    margin-bottom: 1.2rem;
}
.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--gold-primary);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50%       { opacity: 1;   transform: scale(1.4); }
}

/* ─── HERO ───────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 90px;
    background: linear-gradient(160deg, #fdf9f0 0%, #f5ede0 100%);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200,150,12,0.08), transparent 70%);
    top: -100px; right: -200px;
    border-radius: 50%;
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(200,150,12,0.05), transparent 70%);
    bottom: -80px; left: 5%;
    border-radius: 50%;
    pointer-events: none;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-text h1 {
    margin-bottom: 1.2rem;
    color: var(--text-primary);
}
.hero-text h1 span { color: var(--gold-primary); }
.hero-text p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}
.hero-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}
.hero-trust {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}
.trust-item span:first-child { color: var(--gold-primary); font-size: 1rem; }
.hero-image {
    position: relative;
}
.hero-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 24px 80px rgba(200,150,12,0.15);
    animation: float-subtle 4s ease-in-out infinite;
}
@keyframes float-subtle {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}
.hero-card-overlay {
    position: absolute;
    bottom: -20px;
    left: -30px;
    background: #fff;
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    padding: 1rem 1.4rem;
    box-shadow: 0 12px 40px rgba(200,150,12,0.12);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.hero-card-overlay .icon { font-size: 1.8rem; }
.hero-card-overlay .text { font-size: 0.85rem; }
.hero-card-overlay .text strong { display: block; color: var(--text-primary); }
.hero-card-overlay .text span  { color: var(--text-muted); font-size: 0.78rem; }

/* ─── DIVIDER ─────────────────────────────────────── */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-glow), transparent);
    margin: 0;
}

/* ─── LEISTUNGEN / FEATURES GRID ─────────────────── */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
}
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* ─── ÜBER MICH ──────────────────────────────────── */
.about-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
    align-items: center;
}
.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(200,150,12,0.12);
}
.about-zert {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--gold-subtle);
    border: 1px solid var(--border-glow);
    border-radius: 99px;
    padding: 0.5rem 1.2rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gold-dark);
    margin-bottom: 1.5rem;
}
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    margin-top: 2rem;
}
.stat-box {
    text-align: center;
    padding: 1.2rem;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border-subtle);
}
.stat-box .number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gold-primary);
    line-height: 1;
    margin-bottom: 0.3rem;
}
.stat-box .label {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.3;
}

/* ─── TESTIMONIALS ───────────────────────────────── */
.testimonial-card {
    background: var(--card-bg);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 1.8rem;
}
.testimonial-stars {
    color: var(--gold-primary);
    font-size: 1rem;
    margin-bottom: 0.8rem;
    letter-spacing: 2px;
}
.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.2rem;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.testimonial-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gold-subtle);
    border: 2px solid var(--border-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}
.testimonial-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-primary);
}
.testimonial-dog {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ─── CTA SECTION ────────────────────────────────── */
.cta-section {
    background: linear-gradient(135deg, #1c1409, #3d2b1f);
    color: #fff;
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(200,150,12,0.15), transparent 70%);
    top: -150px; right: -100px;
    border-radius: 50%;
    pointer-events: none;
}
.cta-section h2 { color: #fff; margin-bottom: 1rem; }
.cta-section p  { color: rgba(247,240,224,0.7); font-size: 1.1rem; margin-bottom: 2rem; }

/* ─── FORMS ──────────────────────────────────────── */
.form-group {
    margin-bottom: 1.2rem;
}
.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.1rem;
    background: var(--card-bg);
    border: 1.5px solid var(--border-subtle);
    border-radius: 9px;
    font-size: 0.95rem;
    font-family: 'Outfit', sans-serif;
    color: var(--text-primary);
    outline: none;
    transition: border 0.25s, box-shadow 0.25s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px var(--gold-subtle);
}
.form-group textarea { resize: vertical; min-height: 100px; }

/* ─── OPTIN BOX ──────────────────────────────────── */
.optin-box {
    background: var(--card-bg);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 2.8rem;
    box-shadow: 0 12px 40px rgba(200,150,12,0.08);
    max-width: 480px;
}
.optin-box h2 { font-size: 1.7rem; margin-bottom: 0.6rem; }
.optin-box p  { font-size: 0.95rem; margin-bottom: 1.8rem; }

/* ─── RECHNER ────────────────────────────────────── */
.rechner-box {
    background: var(--card-bg);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(200,150,12,0.08);
}
.rechner-result {
    background: var(--gold-subtle);
    border: 1px solid var(--border-glow);
    border-radius: 14px;
    padding: 2rem;
    margin-top: 2rem;
    display: none;
}
.rechner-result.show { display: block; }
.result-menge {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold-primary);
    line-height: 1;
}
.result-menge span { font-size: 1.2rem; font-weight: 600; color: var(--text-secondary); }
.result-breakdown {
    margin-top: 1.2rem;
    display: grid;
    gap: 0.6rem;
}
.result-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-subtle);
}
.result-row:last-child { border-bottom: none; }
.result-row .label { color: var(--text-muted); }
.result-row .value { font-weight: 700; color: var(--text-primary); }

/* ─── PRICE CARDS ────────────────────────────────── */
.price-card {
    background: var(--card-bg);
    border: 2px solid var(--border-subtle);
    border-radius: 20px;
    padding: 2.4rem;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}
.price-card.featured {
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 4px var(--gold-subtle), 0 16px 40px var(--gold-glow);
}
.price-card .badge-featured {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-primary);
    color: #fff;
    padding: 0.3rem 1.2rem;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: 'Space Mono', monospace;
    white-space: nowrap;
}
.price-amount {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    margin: 1rem 0 0.4rem;
}
.price-amount sup { font-size: 1.4rem; vertical-align: top; margin-top: 0.8rem; font-weight: 600; }
.price-amount small { font-size: 1rem; color: var(--text-muted); font-weight: 500; }
.price-features {
    list-style: none;
    margin: 1.6rem 0 2rem;
    text-align: left;
}
.price-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.92rem;
    color: var(--text-secondary);
    padding: 0.4rem 0;
    border-bottom: 1px solid var(--border-subtle);
}
.price-features li:last-child { border-bottom: none; }
.price-features li::before {
    content: '✓';
    color: var(--gold-primary);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 0.05rem;
}

/* ─── PDF PRODUCT CARD ───────────────────────────── */
.pdf-card {
    background: var(--card-bg);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}
.pdf-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-glow);
    box-shadow: 0 16px 40px var(--gold-glow);
}
.pdf-card-header {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-primary));
    color: #fff;
    padding: 1.8rem;
    font-size: 0.75rem;
    font-family: 'Space Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}
.pdf-card-header h3 { font-size: 1.2rem; margin-top: 0.6rem; color: #fff; font-family: 'Outfit', sans-serif; }
.pdf-card-body { padding: 1.6rem; flex: 1; }
.pdf-card-body p { font-size: 0.9rem; margin-bottom: 1.4rem; }
.pdf-card-body ul {
    list-style: none;
    margin-bottom: 1.4rem;
}
.pdf-card-body ul li {
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 0.25rem 0;
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
}
.pdf-card-body ul li::before { content: '🐾'; font-size: 0.75rem; }
.pdf-card-footer {
    padding: 0 1.6rem 1.6rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.pdf-price {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--gold-primary);
}
.pdf-price small { font-size: 0.8rem; color: var(--text-muted); font-weight: 400; }

/* ─── KURS LEKTION ────────────────────────────────── */
.kurs-sidebar {
    width: 280px;
    background: #fff;
    border-right: 1px solid var(--border-subtle);
    position: fixed;
    top: 0; left: 0; bottom: 0;
    overflow-y: auto;
    z-index: 50;
}
.kurs-main {
    margin-left: 280px;
    min-height: 100vh;
    background: var(--bg-primary);
}
.lektion-video {
    background: var(--bg-dark);
    aspect-ratio: 16/9;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
}
.modul-item {
    border-left: 2px solid transparent;
    padding: 0.6rem 1.4rem;
    font-size: 0.88rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.modul-item:hover, .modul-item.active {
    background: var(--gold-subtle);
    border-left-color: var(--gold-primary);
    color: var(--text-primary);
}
.modul-item.done { color: var(--gold-dark); }
.modul-item.done::before { content: '✓'; color: var(--gold-primary); font-weight: 700; }

/* ─── FOOTER ─────────────────────────────────────── */
footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 4rem 0 0;
}
.footer-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem 3rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
}
.footer-brand p {
    font-size: 0.9rem;
    color: rgba(247,240,224,0.5);
    line-height: 1.6;
}
.footer-links-group h4 {
    font-size: 0.75rem;
    font-family: 'Space Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold-primary);
    margin-bottom: 1rem;
}
.footer-links-group a {
    display: block;
    font-size: 0.88rem;
    color: rgba(247,240,224,0.55);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.2s;
}
.footer-links-group a:hover { color: var(--gold-light); }
.footer-bottom {
    border-top: 1px solid rgba(200,150,12,0.15);
    padding: 1.2rem 1.5rem;
    text-align: center;
}
.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(247,240,224,0.35);
}

/* ─── COOKIE BANNER ──────────────────────────────── */
.cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 9999;
    padding: 1rem 2rem;
    background: rgba(28, 20, 9, 0.96);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(200,150,12,0.25);
    box-shadow: 0 -4px 30px rgba(0,0,0,0.3);
    animation: slideUp 0.4s ease;
}
@keyframes slideUp {
    from { transform: translateY(100%); opacity: 0; }
    to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.cookie-text p {
    font-size: 0.86rem;
    color: rgba(247,240,224,0.65);
    margin: 0;
}
.cookie-text a { color: var(--gold-light); text-decoration: underline; }
.cookie-actions { display: flex; gap: 0.6rem; flex-shrink: 0; }
.cookie-btn {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.55rem 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    transition: all 0.25s;
    white-space: nowrap;
}
.cookie-btn-accept { background: var(--gold-primary); color: #fff; }
.cookie-btn-accept:hover { background: var(--gold-light); }
.cookie-btn-reject { background: transparent; color: rgba(247,240,224,0.5); border: 1px solid rgba(200,150,12,0.25); }
.cookie-btn-reject:hover { background: rgba(200,150,12,0.08); color: rgba(247,240,224,0.8); }

/* ─── ANIMATIONS ─────────────────────────────────── */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ─── ALERTS ─────────────────────────────────────── */
.alert {
    padding: 0.9rem 1.2rem;
    border-radius: 10px;
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
}
.alert-success {
    background: rgba(34,139,34,0.1);
    border: 1px solid rgba(34,139,34,0.25);
    color: #2d7a2d;
}
.alert-error {
    background: rgba(200,50,50,0.1);
    border: 1px solid rgba(200,50,50,0.25);
    color: #a33333;
}

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 968px) {
    .hero-grid, .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .hero-image { order: -1; }
    .hero-card-overlay { left: 0; }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .about-stats { grid-template-columns: repeat(3, 1fr); }
    .mobile-toggle { display: flex; }
    .nav-links {
        display: none;
        position: fixed;
        top: 0; right: 0; bottom: 0;
        width: 280px;
        background: var(--bg-primary);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 0.5rem;
        box-shadow: -8px 0 40px rgba(200,150,12,0.12);
        border-left: 1px solid var(--border-subtle);
        z-index: 200;
    }
    .nav-links.open { display: flex; }
    .nav-links a { font-size: 1.05rem; padding: 0.5rem 0; }
    .kurs-sidebar { display: none; }
    .kurs-main { margin-left: 0; }
}
@media (max-width: 640px) {
    .grid-3, .grid-2 { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: 1fr 1fr; }
    .footer-inner { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: repeat(3, 1fr); }
    .hero-cta-group { flex-direction: column; }
    section { padding: 3.5rem 0; }
    .optin-box { padding: 1.8rem; }
    .cookie-banner-inner { flex-direction: column; gap: 1rem; }
    .cookie-actions { width: 100%; }
    .cookie-btn { flex: 1; text-align: center; }
}
