/*
Theme Name: Kontrollsystem
Theme URI: https://boerde.digital
Author: Börde.Digital
Description: Warmes modernes Theme
Version: 1.0.0
*/

/* ============================================
   WARME FARBPALETTE - kein kaltes Weiß!
   ============================================ */
:root {
    /* Primär - Waldgrün */
    --primary: #1b6b52;
    --primary-hover: #24896a;
    --primary-dark: #134939;
    
    /* Akzente */
    --green: #2dd4a0;
    --blue: #5ba4f5;
    --amber: #f5a623;
    --coral: #ff7b7b;
    
    /* WARME Backgrounds - cremig, sandig, nicht weiß! */
    --bg-page: #f4efe7;
    --bg-section: #ebe5db;
    --bg-card: linear-gradient(145deg, #fdfaf5 0%, #f7f2ea 100%);
    --bg-card-solid: #faf7f2;
    --bg-input: #f9f6f0;
    --bg-hover: #f0ebe2;
    
    /* Text - warm getönt */
    --text: #3d3830;
    --text-soft: #5c554a;
    --text-muted: #8a8279;
    
    /* Schatten - warm */
    --shadow: 0 4px 20px rgba(60, 50, 40, 0.08);
    --shadow-hover: 0 12px 40px rgba(60, 50, 40, 0.15);
    --shadow-glow: 0 0 30px rgba(27, 107, 82, 0.15);
    
    /* Borders */
    --border: rgba(60, 50, 40, 0.1);
    --border-strong: rgba(60, 50, 40, 0.18);
    
    /* Radius - weich & modern */
    --r-sm: 12px;
    --r-md: 16px;
    --r-lg: 24px;
    --r-xl: 32px;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg-page);
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
h1, h2, h3 { color: var(--text); font-weight: 600; line-height: 1.3; }
img { max-width: 100%; height: auto; }

/* ============================================
   LAYOUT
   ============================================ */
.kst-container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.kst-section { padding: 90px 24px; }

/* ============================================
   BUTTONS - Modern mit Tiefe
   ============================================ */
.kst-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    border: none;
    border-radius: var(--r-md);
    background: var(--bg-card);
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,0.5);
    border: 1px solid var(--border);
}

.kst-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    background: var(--bg-hover);
}

.kst-btn-primary {
    background: linear-gradient(145deg, var(--primary-hover), var(--primary));
    color: #fff;
    border: none;
    box-shadow: var(--shadow), var(--shadow-glow);
}

.kst-btn-primary:hover {
    background: linear-gradient(145deg, var(--primary), var(--primary-dark));
    box-shadow: var(--shadow-hover), var(--shadow-glow);
}

.kst-btn-lg {
    padding: 18px 40px;
    font-size: 1.05rem;
    border-radius: var(--r-lg);
}

.kst-btn-white {
    background: #fff;
    color: var(--primary);
    font-weight: 600;
}

.kst-btn-ghost {
    background: rgba(255,255,255,0.15);
    color: #fff;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.25);
    box-shadow: none;
}

.kst-btn-ghost:hover {
    background: rgba(255,255,255,0.28);
    transform: translateY(-2px);
}

/* ============================================
   HERO - Einladend & Modern
   ============================================ */
.kst-hero {
    background: linear-gradient(160deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-hover) 100%);
    color: #fff;
    padding: 110px 24px 140px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Decorative circles */
.kst-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -15%;
    width: 60%;
    height: 120%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    pointer-events: none;
}

.kst-hero::after {
    content: '';
    position: absolute;
    bottom: -5%;
    left: -10%;
    width: 50%;
    height: 80%;
    background: radial-gradient(circle, rgba(45,212,160,0.12) 0%, transparent 60%);
    pointer-events: none;
}

/* Smooth transition to content */
.kst-hero .kst-hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: var(--bg-page);
    clip-path: ellipse(70% 100% at 50% 100%);
}

.kst-hero-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.kst-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 700;
    margin-bottom: 18px;
    color: #fff;
    letter-spacing: -0.02em;
}

.kst-hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    margin-bottom: 14px;
    opacity: 0.95;
    font-weight: 500;
}

.kst-hero-text {
    font-size: 1.08rem;
    opacity: 0.88;
    margin: 0 auto 38px;
    max-width: 540px;
    line-height: 1.75;
}

.kst-hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   FEATURES - Warme Cards
   ============================================ */
.kst-features {
    background: var(--bg-page);
    position: relative;
    margin-top: -60px;
    padding-top: 20px;
}

.kst-features h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 55px;
}

.kst-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.kst-feature {
    background: var(--bg-card);
    padding: 34px 26px;
    border-radius: var(--r-lg);
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.kst-feature:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.kst-feature-icon {
    width: 68px;
    height: 68px;
    background: linear-gradient(145deg, var(--bg-section), var(--bg-hover));
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 18px;
    box-shadow: inset 0 2px 4px rgba(255,255,255,0.6), inset 0 -2px 4px rgba(0,0,0,0.05);
}

.kst-feature h3 {
    font-size: 1.02rem;
    margin-bottom: 10px;
}

.kst-feature p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.55;
}

/* ============================================
   MODULES - Prominente Produktkarten
   ============================================ */
.kst-modules {
    background: var(--bg-section);
    position: relative;
}

.kst-modules::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
}

.kst-modules h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 12px;
}

.kst-modules-subtitle {
    text-align: center;
    color: var(--text-soft);
    font-size: 1.08rem;
    margin-bottom: 55px;
}

.kst-modules-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.kst-module-card {
    background: var(--bg-card);
    border-radius: var(--r-xl);
    padding: 42px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Farbige Akzentlinie oben */
.kst-module-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #22c55e, #10b981);
}

.kst-module-card.spielplatz::before {
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
}

.kst-module-card:hover {
    transform: translateY(-12px) scale(1.01);
    box-shadow: var(--shadow-hover);
}

.kst-module-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.kst-module-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.kst-module-desc {
    color: var(--text-soft);
    font-size: 1rem;
    margin-bottom: 26px;
}

.kst-module-features {
    list-style: none;
    margin-bottom: 26px;
}

.kst-module-features li {
    padding: 13px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.94rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.kst-module-features li::before {
    content: '✓';
    color: #22c55e;
    font-weight: 700;
    font-size: 1.1rem;
}

.kst-module-card.spielplatz .kst-module-features li::before {
    color: #3b82f6;
}

.kst-module-features li:last-child {
    border-bottom: none;
}

.kst-module-ideal {
    background: var(--bg-section);
    padding: 16px 20px;
    border-radius: var(--r-md);
    font-size: 0.9rem;
    color: var(--text-soft);
}

.kst-module-ideal strong {
    color: var(--text);
}

/* ============================================
   WORKFLOW - Grüner Bereich
   ============================================ */
.kst-workflow {
    background: linear-gradient(160deg, var(--primary-dark), var(--primary));
    color: #fff;
    position: relative;
    overflow: hidden;
}

.kst-workflow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--bg-section);
    clip-path: ellipse(60% 100% at 50% 0%);
}

.kst-workflow h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 55px;
    color: #fff;
    position: relative;
}

.kst-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    position: relative;
}

.kst-step {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: var(--r-lg);
    padding: 34px 26px;
    text-align: center;
    transition: all 0.3s ease;
}

.kst-step:hover {
    background: rgba(255,255,255,0.18);
    transform: translateY(-6px);
}

.kst-step-number {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 18px;
}

.kst-step h3 {
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 10px;
}

.kst-step p {
    opacity: 0.88;
    font-size: 0.94rem;
    line-height: 1.55;
}

/* ============================================
   ANFRAGE FORMULAR
   ============================================ */
.kst-anfrage {
    background: var(--bg-page);
}

.kst-anfrage h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 12px;
}

.kst-anfrage-subtitle {
    text-align: center;
    color: var(--text-soft);
    font-size: 1.08rem;
    margin-bottom: 48px;
}

.kst-anfrage-form {
    max-width: 620px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 48px;
    border-radius: var(--r-xl);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.kst-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.kst-form-group {
    margin-bottom: 22px;
}

.kst-form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 9px;
    font-size: 0.95rem;
    color: var(--text);
}

.kst-form-group input,
.kst-form-group select,
.kst-form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-strong);
    border-radius: var(--r-md);
    font-size: 1rem;
    font-family: inherit;
    background: var(--bg-input);
    color: var(--text);
    transition: all 0.25s ease;
}

.kst-form-group input:focus,
.kst-form-group select:focus,
.kst-form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(27, 107, 82, 0.12);
}

.kst-form-group input::placeholder,
.kst-form-group textarea::placeholder {
    color: var(--text-muted);
}

.kst-checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.kst-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border: 2px solid var(--border-strong);
    border-radius: var(--r-md);
    cursor: pointer;
    background: var(--bg-input);
    transition: all 0.25s ease;
}

.kst-checkbox:hover {
    border-color: var(--primary);
    background: var(--bg-hover);
}

.kst-checkbox input {
    width: 20px;
    height: 20px;
    accent-color: var(--primary);
}

.kst-checkbox:has(input:checked) {
    border-color: var(--primary);
    background: rgba(27, 107, 82, 0.08);
}

.kst-checkbox:has(input:checked) span {
    font-weight: 600;
    color: var(--primary);
}

.kst-form-hint {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 22px;
}

.kst-success-message {
    text-align: center;
    padding: 55px;
}

.kst-success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(145deg, #dcfce7, #bbf7d0);
    color: #16a34a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 24px;
    box-shadow: 0 8px 25px rgba(22, 163, 74, 0.2);
}

.kst-success-message h3 {
    color: #16a34a;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.kst-success-message p {
    color: var(--text-soft);
}

.kst-error-message {
    background: linear-gradient(145deg, #fef2f2, #fee2e2);
    color: #dc2626;
    padding: 16px 20px;
    border-radius: var(--r-md);
    margin-bottom: 22px;
    text-align: center;
    border: 1px solid #fecaca;
}

/* ============================================
   LOGIN HINT
   ============================================ */
.kst-login-hint-section {
    padding: 40px 24px;
    text-align: center;
    background: var(--bg-section);
}

.kst-login-hint-section p {
    margin: 0;
    color: var(--text-soft);
}

.kst-login-hint-section a {
    color: var(--primary);
    font-weight: 600;
}

.kst-login-hint-section a:hover {
    text-decoration: underline;
}

/* ============================================
   FOOTER
   ============================================ */
.kst-footer {
    background: var(--primary-dark);
    color: #fff;
    padding: 40px 24px;
}

.kst-footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.kst-footer-text {
    opacity: 0.75;
    font-size: 0.9rem;
}

.kst-footer-links {
    display: flex;
    gap: 26px;
}

.kst-footer-links a {
    opacity: 0.75;
    font-size: 0.9rem;
    transition: opacity 0.2s;
}

.kst-footer-links a:hover {
    opacity: 1;
}

/* ============================================
   LOGIN PAGE
   ============================================ */
.kst-login {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, var(--primary-dark), var(--primary), var(--primary-hover));
    padding: 24px;
    position: relative;
}

.kst-login::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(45,212,160,0.1) 0%, transparent 50%);
}

.kst-login-box {
    background: var(--bg-card);
    border-radius: var(--r-xl);
    padding: 52px 44px;
    width: 100%;
    max-width: 440px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.25);
    position: relative;
    border: 1px solid var(--border);
}

.kst-login-logo {
    text-align: center;
    margin-bottom: 36px;
}

.kst-login-logo img {
    max-height: 55px;
}

.kst-login-logo h1 {
    font-size: 1.6rem;
    margin-top: 16px;
    color: var(--primary);
}

.kst-login-form .kst-form-group {
    margin-bottom: 20px;
}

.kst-login-form .kst-btn {
    width: 100%;
    padding: 16px;
}

.kst-login-error {
    background: linear-gradient(145deg, #fef2f2, #fee2e2);
    color: #dc2626;
    padding: 14px 18px;
    border-radius: var(--r-md);
    margin-bottom: 22px;
    border: 1px solid #fecaca;
    font-size: 0.9rem;
}

.kst-login-footer {
    text-align: center;
    margin-top: 30px;
    padding-top: 26px;
    border-top: 1px solid var(--border-strong);
}

.kst-login-footer a {
    color: var(--primary);
    font-weight: 500;
}

.kst-login-footer a:hover {
    text-decoration: underline;
}

/* ============================================
   APP HEADER
   ============================================ */
.kst-app-header {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
}

.kst-app-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.kst-app-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary);
}

.kst-app-logo img {
    height: 40px;
}

.kst-app-nav {
    display: flex;
    gap: 6px;
}

.kst-app-nav a {
    padding: 10px 18px;
    border-radius: var(--r-md);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-soft);
    transition: all 0.25s ease;
}

.kst-app-nav a:hover {
    background: var(--bg-hover);
    color: var(--text);
}

.kst-app-nav a.active {
    background: var(--primary);
    color: #fff;
}

.kst-user-menu {
    display: flex;
    align-items: center;
    gap: 14px;
}

.kst-user-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--bg-section), var(--bg-hover));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--text-soft);
    overflow: hidden;
    border: 3px solid var(--bg-section);
}

.kst-user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   APP CONTENT
   ============================================ */
.kst-app-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 24px;
    min-height: calc(100vh - 80px);
}

.kst-app-title {
    font-size: 1.8rem;
    margin-bottom: 32px;
}

/* Module Selector im Dashboard */
.kst-module-selector {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}

.kst-module-select-card {
    background: var(--bg-card);
    border: 2px solid var(--border-strong);
    border-radius: var(--r-xl);
    padding: 44px 32px;
    text-align: center;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-decoration: none;
}

.kst-module-select-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.kst-module-select-card.baum:hover {
    border-color: #22c55e;
    box-shadow: var(--shadow-hover), 0 0 30px rgba(34, 197, 94, 0.15);
}

.kst-module-select-card.spielplatz:hover {
    border-color: #3b82f6;
    box-shadow: var(--shadow-hover), 0 0 30px rgba(59, 130, 246, 0.15);
}

.kst-module-select-card.fahrtenbuch:hover {
    border-color: #2563eb;
    box-shadow: var(--shadow-hover), 0 0 30px rgba(37, 99, 235, 0.15);
}

.kst-module-select-icon {
    font-size: 4rem;
    margin-bottom: 22px;
}

.kst-module-select-card h3 {
    font-size: 1.35rem;
    margin-bottom: 10px;
}

.kst-module-select-card p {
    color: var(--text-soft);
    margin: 0;
}

/* ============================================
   PROFIL PAGE
   ============================================ */
.kst-profile-section {
    background: var(--bg-card);
    border-radius: var(--r-xl);
    padding: 38px;
    margin-bottom: 26px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.kst-profile-section h2 {
    font-size: 1.2rem;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-strong);
    margin-bottom: 26px;
}

.kst-profile-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.kst-profile-field {
    margin-bottom: 20px;
}

.kst-profile-field label {
    display: block;
    font-weight: 500;
    margin-bottom: 9px;
    font-size: 0.9rem;
    color: var(--text-soft);
}

.kst-profile-field input,
.kst-profile-field textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-strong);
    border-radius: var(--r-md);
    font-size: 1rem;
    font-family: inherit;
    background: var(--bg-input);
    transition: all 0.25s ease;
}

.kst-profile-field input:focus,
.kst-profile-field textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(27, 107, 82, 0.12);
}

.kst-media-upload {
    display: flex;
    align-items: center;
    gap: 26px;
}

.kst-media-preview {
    width: 140px;
    height: 95px;
    background: var(--bg-section);
    border: 2px dashed var(--border-strong);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.kst-media-preview img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.kst-media-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ============================================
   EMPTY STATE
   ============================================ */
.kst-empty-state {
    text-align: center;
    padding: 90px 24px;
}

.kst-empty-state-icon {
    font-size: 4.5rem;
    margin-bottom: 26px;
    opacity: 0.6;
}

.kst-empty-state h2 {
    margin-bottom: 12px;
}

.kst-empty-state p {
    color: var(--text-soft);
    max-width: 380px;
    margin: 0 auto 30px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
    .kst-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .kst-modules-grid,
    .kst-steps,
    .kst-module-selector {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .kst-hero {
        padding: 80px 20px 110px;
    }
    .kst-section {
        padding: 65px 20px;
    }
    .kst-features-grid,
    .kst-form-row,
    .kst-profile-row,
    .kst-checkbox-group {
        grid-template-columns: 1fr;
    }
    .kst-anfrage-form {
        padding: 34px 26px;
    }
    .kst-login-box {
        padding: 38px 28px;
    }
    .kst-footer-content {
        flex-direction: column;
        text-align: center;
    }
    .kst-app-nav {
        display: none;
    }
    .kst-media-upload {
        flex-direction: column;
        align-items: stretch;
    }
    .kst-media-preview {
        width: 100%;
    }
    .kst-module-card {
        padding: 32px;
    }
}
