/* Orga-Mate – Hauptstylesheet */

:root {
    --primary: #002060;
    --primary-mid: #1a3a8a;
    --primary-light: #2e6ae6;
    --accent: #00b4d8;
    --accent-light: #90e0ef;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --text-dark: #1a1a2e;
    --text-muted: #6b7280;
    --border: #e5e7eb;
    --shadow: 0 4px 24px rgba(0, 32, 96, 0.1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, sans-serif;
    background-color: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.6;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition:
        background 0.3s,
        box-shadow 0.3s;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 32, 96, 0.1);
}

.navbar.scrolled .nav-logo span,
.navbar.scrolled .nav-links a {
    color: var(--primary);
}

.navbar.scrolled .nav-links .nav-cta {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-logo img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.nav-logo span {
    font-family: 'Rochester', cursive;
    font-size: 1.5em;
    color: white;
    transition: color 0.3s;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.95em;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--accent-light);
}

.nav-links .nav-cta {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 8px 20px;
    border-radius: 6px;
    backdrop-filter: blur(4px);
    transition:
        background 0.2s,
        border-color 0.2s;
}

.nav-links .nav-cta:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #002060 0%, #0d3580 40%, #1565c0 75%, #1e88e5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px 60px;
    position: relative;
    overflow: hidden;
}

/* Dekorative Hintergrundkreise */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.hero-logo {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 24px;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
}

.hero-title {
    font-family: 'Rochester', cursive;
    font-size: 4em;
    color: white;
    margin-bottom: 16px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.5em;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
    line-height: 1.4;
}

.hero-subtitle strong {
    color: white;
}

.hero-description {
    font-size: 1.05em;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 1em;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #1e88e5, #00b4d8);
    color: white;
    box-shadow: 0 4px 20px rgba(30, 136, 229, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(30, 136, 229, 0.5);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.btn-white {
    background: white;
    color: var(--primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.2);
}

/* ===== ALLGEMEINE LAYOUT-HELFER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-label {
    font-size: 0.78em;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--primary-light);
    text-transform: uppercase;
    margin-bottom: 8px;
}

/* ===== PAIN-SECTION ===== */
.pain-section {
    background: var(--bg-light);
    padding: 80px 0;
    text-align: center;
}

.pain-section h2 {
    font-size: 2.2em;
    color: var(--primary);
    margin-bottom: 48px;
    line-height: 1.3;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.pain-card {
    background: white;
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: var(--shadow);
    border-top: 3px solid var(--primary);
}

.pain-icon {
    font-size: 2.5em;
    margin-bottom: 16px;
}

.pain-card h3 {
    color: var(--primary);
    font-size: 1.15em;
    margin-bottom: 10px;
}

.pain-card p {
    color: var(--text-muted);
    font-size: 0.95em;
    line-height: 1.55;
}

/* ===== FASNET-SECTION ===== */
.fasnet-section {
    background: var(--primary);
    padding: 80px 0;
    text-align: center;
}

.fasnet-section .section-label {
    color: rgba(255, 255, 255, 0.75);
}

.fasnet-section h2 {
    font-size: 2.2em;
    color: white;
    margin-bottom: 24px;
    line-height: 1.3;
}

.fasnet-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05em;
    line-height: 1.7;
    max-width: 780px;
    margin: 0 auto;
}

/* ===== WHY-SECTION ===== */
.why-section {
    background: white;
    padding: 80px 0;
    text-align: center;
}

.why-section h2 {
    font-size: 2.2em;
    color: var(--primary);
    margin-bottom: 48px;
    line-height: 1.3;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    text-align: left;
}

.why-item {
    padding: 28px;
    background: var(--bg-light);
    border-radius: 16px;
    border-left: 4px solid var(--primary-light);
    transition: transform 0.2s ease;
}

.why-item:hover {
    transform: translateY(-4px);
}

.why-icon {
    font-size: 2em;
    margin-bottom: 12px;
}

.why-item h3 {
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 1.1em;
}

.why-item p {
    color: var(--text-muted);
    font-size: 0.92em;
    line-height: 1.6;
}

/* ===== FEATURES-SECTION ===== */
.features-section {
    /* Kein eigener Hintergrund – jeder Block bringt seinen eigenen mit */
}

/* Einleitungs-Band mit Gradient-Akzent */
.features-intro {
    background: var(--primary);
    background: linear-gradient(135deg, #002060 0%, #0d3580 60%, #1565c0 100%);
    padding: 80px 0 72px;
    text-align: center;
    color: white;
}

.features-intro .section-label {
    color: rgba(255, 255, 255, 0.7);
}

.features-intro h2 {
    font-size: 2.6em;
    color: white;
    margin-bottom: 16px;
}

.features-intro p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05em;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Jeder Feature-Block ist ein eigenes Band mit wechselndem Hintergrund */
.feature-block {
    padding: 96px 0;
    background: var(--bg-light);
}

.feature-block:nth-child(even) {
    background: white;
}

.feature-block .section-label {
    text-align: left;
    margin-bottom: 10px;
}

.feature-block h2 {
    font-size: 2em;
    color: var(--primary);
    text-align: left;
    margin-bottom: 48px;
    padding-left: 18px;
    border-left: 4px solid var(--primary-light);
    line-height: 1.25;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.feature-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 32, 96, 0.15);
}

.feature-card img {
    width: 100%;
    height: 210px;
    object-fit: contain;
    background: #f0f4ff;
    cursor: zoom-in;
    transition: opacity 0.2s;
    display: block;
}

.feature-card img:hover {
    opacity: 0.9;
}

/* Kopieren-Button fuer E-Mail-Adressen */
.btn-copy {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 9px 18px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.87em;
    font-family: inherit;
    transition:
        background 0.2s,
        border-color 0.2s;
    margin-top: 10px;
}

.btn-copy:hover {
    background: rgba(255, 255, 255, 0.27);
    border-color: rgba(255, 255, 255, 0.6);
}

/* Kontakt-Aktionsbuttons (E-Mail / WhatsApp) */
.contact-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}

.btn-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 0.95em;
    font-weight: 600;
    text-decoration: none;
    transition:
        background 0.2s,
        border-color 0.2s,
        transform 0.15s;
}

.btn-action:hover {
    background: rgba(255, 255, 255, 0.27);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
}

/* WhatsApp-Button in grünem Akzent */
.btn-action--wa {
    background: rgba(37, 211, 102, 0.25);
    border-color: rgba(37, 211, 102, 0.5);
}

.btn-action--wa:hover {
    background: rgba(37, 211, 102, 0.4);
    border-color: rgba(37, 211, 102, 0.8);
}

.feature-card-body {
    padding: 20px 22px 24px;
    flex-grow: 1;
}

.feature-card-body h3 {
    color: var(--primary);
    font-size: 1.05em;
    margin-bottom: 8px;
}

.feature-card-body p {
    color: var(--text-muted);
    font-size: 0.88em;
    line-height: 1.55;
}

/* Text-only Feature-Cards (ohne Bild) */
.feature-card--text {
    padding: 32px 28px;
    justify-content: flex-start;
    align-items: flex-start;
}

.feature-card-icon {
    font-size: 2.8em;
    margin-bottom: 14px;
    line-height: 1;
}

/* ===== TECH-SECTION ===== */
.tech-section {
    background: var(--bg-light);
    padding: 64px 0;
    text-align: center;
}

.tech-section .section-label {
    color: var(--primary-light);
}

.tech-section h2 {
    font-size: 1.7em;
    color: var(--primary);
    margin-bottom: 36px;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.tech-item {
    background: white;
    border-radius: 14px;
    padding: 28px 22px;
    border: 1px solid var(--border);
    transition: box-shadow 0.2s;
}

.tech-item:hover {
    box-shadow: 0 4px 20px rgba(0, 32, 96, 0.08);
}

.tech-icon {
    font-size: 2em;
    margin-bottom: 12px;
}

.tech-item h3 {
    font-size: 1.05em;
    color: var(--primary);
    margin-bottom: 8px;
}

.tech-item p {
    color: var(--text-muted);
    font-size: 0.9em;
    line-height: 1.55;
}

/* ===== IN ENTWICKLUNG / GEPLANT ===== */
.dev-section {
    /* Dunkler Gradient als klares Highlight – hebt sich bewusst ab */
    background: linear-gradient(135deg, #002060 0%, #0d3580 50%, #00b4d8 100%);
    padding: 96px 0;
    text-align: center;
    color: white;
}

.dev-section .section-label {
    color: rgba(255, 255, 255, 0.7);
}

.dev-section h2 {
    font-size: 2em;
    color: white;
    margin-bottom: 12px;
}

.dev-intro {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1em;
    margin-bottom: 48px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.coming-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 820px;
    margin: 0 auto 64px;
}

.coming-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 18px;
    padding: 32px 28px;
    text-align: left;
    position: relative;
    transition:
        background 0.2s,
        transform 0.2s;
}

.coming-card:hover {
    background: rgba(255, 255, 255, 0.17);
    transform: translateY(-4px);
}

.coming-card-icon {
    font-size: 2.2em;
    margin-bottom: 14px;
    line-height: 1;
}

.coming-card h3 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.coming-card p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92em;
    line-height: 1.55;
    margin-bottom: 16px;
}

.coming-badge {
    display: inline-block;
    background: rgba(0, 180, 216, 0.35);
    border: 1px solid rgba(0, 180, 216, 0.6);
    color: #90e0ef;
    font-size: 0.75em;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
}

/* Trennbereich zwischen "In Entwicklung" und "Geplant" */
.planned-header {
    margin-top: 24px;
    margin-bottom: 32px;
    padding-top: 56px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.planned-header .section-label {
    color: rgba(255, 255, 255, 0.7);
}

.planned-header h2 {
    margin-bottom: 0;
}

.planned-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 10px;
    max-width: 1000px;
    margin: 32px auto 0;
}

.planned-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 13px 16px;
    font-size: 0.88em;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

/* ===== ENTWICKLER-SECTION ===== */
.developer-section {
    background: var(--bg-light);
    padding: 80px 0;
}

.developer-section .section-label {
    text-align: center;
}

.developer-inner {
    display: flex;
    gap: 48px;
    align-items: flex-start;
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 48px;
    box-shadow: var(--shadow);
}

.developer-photo {
    flex-shrink: 0;
}

.developer-photo img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-position: center top;
    border: 4px solid var(--primary-light);
    box-shadow: 0 4px 20px rgba(0, 32, 96, 0.15);
    display: block;
    image-rendering: auto;
    /* Verhindert Unschärfe durch Subpixel-Rendering */
    transform: translateZ(0);
    will-change: transform;
}

.developer-text h2 {
    font-size: 1.75em;
    color: var(--primary);
    margin-bottom: 16px;
}

.developer-text p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 12px;
    font-size: 0.95em;
}

/* ===== CTA / KONTAKT-SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, #002060 0%, #0d3580 50%, #00b4d8 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 2.4em;
    color: white;
    margin-bottom: 16px;
}

.cta-section > .container > p {
    font-size: 1.05em;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 32px;
}

.contact-info {
    margin-bottom: 32px;
}

.contact-info strong {
    display: block;
    font-size: 1.2em;
    color: white;
    margin-bottom: 6px;
}

.cta-section #email-display {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1em;
}

/* ===== LIGHTBOX ===== */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.88);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.lightbox-overlay img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
    cursor: zoom-out;
}

.lightbox-btn {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 1.5em;
    padding: 12px 18px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s;
}

.lightbox-btn:hover {
    background: rgba(255, 255, 255, 0.28);
}

.lightbox-prev {
    left: 5%;
}
.lightbox-next {
    right: 5%;
}

/* ===== MOBILE NAVIGATION (Hamburger) ===== */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s;
}

.navbar.scrolled .nav-toggle span {
    background: var(--primary);
}

/* Hamburger-Animation zu X */
.nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile {
    display: none;
    flex-direction: column;
    padding: 8px 24px 20px;
    background: rgba(0, 20, 70, 0.97);
    backdrop-filter: blur(12px);
}

.navbar.scrolled .nav-mobile {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 8px 20px rgba(0, 32, 96, 0.12);
}

.nav-mobile a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 1em;
    font-weight: 500;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.2s;
}

.navbar.scrolled .nav-mobile a {
    color: var(--primary);
    border-bottom-color: var(--border);
}

.nav-mobile a:last-child {
    border-bottom: none;
}

.nav-mobile-cta {
    display: block;
    margin-top: 14px;
    background: linear-gradient(135deg, #1e88e5, #00b4d8) !important;
    color: white !important;
    padding: 13px 20px !important;
    border-radius: 8px;
    text-align: center;
    border-bottom: none !important;
    font-weight: 600 !important;
}

.nav-mobile.open {
    display: flex;
}

/* ===== RECHTLICHE LINKS ===== */
.legal-links {
    text-align: center;
    padding: 24px 0 8px;
    font-size: 0.9em;
}

.legal-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin: 0 12px;
}

.legal-links a:hover {
    color: var(--primary);
    text-decoration: underline;
}

.legal-links span {
    color: var(--border);
}

/* ===== FOOTER ===== */
footer {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85em;
    padding: 10px 0 28px;
}

/* ===== RESPONSIVE ===== */

/* Tablet (≤ 900px) */
@media (max-width: 900px) {
    .developer-inner {
        flex-direction: column;
        align-items: center;
        padding: 32px 24px;
        text-align: center;
    }
}

/* Mobiltelefon (≤ 768px) */
@media (max-width: 768px) {
    /* Navigation */
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    /* Hero */
    .hero-title {
        font-size: 2.8em;
    }

    .hero-subtitle {
        font-size: 1.2em;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn {
        text-align: center;
    }

    /* Überschriften */
    .pain-section h2,
    .why-section h2,
    .tech-section h2,
    .dev-section h2,
    .cta-section h2 {
        font-size: 1.75em;
    }

    /* Feature-Grid immer einspaltig */
    .feature-grid {
        grid-template-columns: 1fr;
    }

    /* Sektions-Abstände verkleinern */
    .pain-section,
    .why-section,
    .feature-block,
    .tech-section,
    .dev-section,
    .developer-section,
    .cta-section {
        padding: 56px 0;
    }
}

/* Kleines Smartphone (≤ 480px) */
@media (max-width: 480px) {
    /* Container-Innenabstand reduzieren */
    .container {
        padding: 0 16px;
    }

    /* Hero */
    .hero {
        padding: 70px 16px 48px;
        min-height: auto;
    }

    .hero-logo {
        width: 100px;
        height: 100px;
        margin-bottom: 18px;
    }

    .hero-title {
        font-size: 2.3em;
    }

    .hero-subtitle {
        font-size: 1.05em;
    }

    .hero-description {
        font-size: 0.95em;
    }

    .hero-actions .btn {
        width: 100%;
        padding: 14px 20px;
    }

    /* Sektions-Abstände weiter reduzieren */
    .pain-section,
    .why-section,
    .feature-block,
    .tech-section,
    .dev-section,
    .developer-section,
    .cta-section {
        padding: 44px 0;
    }

    /* Überschriften */
    .pain-section h2,
    .why-section h2,
    .tech-section h2,
    .dev-section h2 {
        font-size: 1.5em;
    }

    .cta-section h2 {
        font-size: 1.65em;
    }

    .feature-block h2 {
        font-size: 1.5em;
    }

    /* Grids auf 1 Spalte */
    .pain-grid,
    .why-grid,
    .tech-grid,
    .coming-grid {
        grid-template-columns: 1fr;
    }

    /* Geplante Features: 2 Spalten auf kleinen Screens */
    .planned-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Cards */
    .pain-card {
        padding: 24px 18px;
    }

    .why-item {
        padding: 20px 18px;
    }

    .tech-item {
        padding: 24px 20px;
    }

    /* Entwicklerbereich */
    .developer-inner {
        padding: 24px 16px;
    }

    .developer-photo img {
        width: 130px;
        height: 130px;
    }

    /* CTA-Bereich */
    .cta-section .btn-white {
        width: 100%;
        text-align: center;
    }

    /* Feature-Kartenbilder etwas kleiner */
    .feature-card img {
        height: 180px;
    }
}
