/*
Theme Name: AI Sensei
Description: Ein modernes WordPress-Theme für KI-Services und Voice-Agents. Speziell entwickelt für KMU und Handwerk.
Author: AI Sensei
Version: 1.0
License: GPL v2 or later
Text Domain: ai-sensei
Tags: business, modern, responsive, one-page, ai, automation
*/

:root {
    --sensei-green: #95A98F;
    --sensei-red: #E94E1B;
    --sensei-beige: #F5F1E6;
    --dark-text: #2C3E50;
    --light-text: #6B7280;
    --white: #FFFFFF;
    --shadow-light: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--sensei-beige);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* WordPress Core Styles */
.alignnone {
    margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

.wp-caption {
    background: #fff;
    border: 1px solid #f0f0f0;
    max-width: 96%;
    padding: 5px 3px 10px;
    text-align: center;
}

.wp-caption.alignnone {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
    margin: 5px 0 20px 20px;
}

.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto;
}

.wp-caption p.wp-caption-text {
    font-size: 11px;
    line-height: 17px;
    margin: 0;
    padding: 0 4px 5px;
}

/* Skip to main content for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--sensei-red);
    color: white;
    padding: 8px;
    text-decoration: none;
    transition: top 0.3s;
    z-index: 10000;
}

.skip-link:focus {
    top: 6px;
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-light);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo-container {
    flex-shrink: 0;
}

.logo {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover,
.nav-links a:focus {
    color: var(--sensei-green);
}

.nav-links a:focus {
    outline: 2px solid var(--sensei-green);
    outline-offset: 4px;
}

.cta-button {
    background: linear-gradient(135deg, var(--sensei-red), #d63a0e);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(233, 78, 27, 0.3);
    white-space: nowrap;
}

.cta-button:hover,
.cta-button:focus {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(233, 78, 27, 0.4);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-text);
    margin: 3px 0;
    transition: 0.3s;
    transform-origin: center;
}

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

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

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

.mobile-nav {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    box-shadow: var(--shadow-medium);
    padding: 2rem;
    z-index: 999;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav a {
    display: block;
    padding: 1rem 0;
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 500;
    border-bottom: 1px solid #eee;
    transition: color 0.3s ease;
}

.mobile-nav a:hover,
.mobile-nav a:focus {
    color: var(--sensei-green);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--sensei-beige), var(--white));
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(149, 169, 143, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--dark-text), var(--sensei-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero .claim {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: var(--sensei-red);
    font-weight: 600;
    margin-bottom: 2rem;
}

.hero .subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.25rem);
    color: var(--light-text);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--sensei-red), #d63a0e);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(233, 78, 27, 0.3);
    cursor: pointer;
}

.btn-primary:hover,
.btn-primary:focus {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(233, 78, 27, 0.4);
    outline: none;
}

.btn-primary:focus {
    outline: 2px solid var(--sensei-green);
    outline-offset: 4px;
}

.btn-secondary {
    background: var(--white);
    color: var(--sensei-green);
    padding: 16px 32px;
    border: 2px solid var(--sensei-green);
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover,
.btn-secondary:focus {
    background: var(--sensei-green);
    color: white;
    transform: translateY(-2px);
}

/* USP Section */
.usp-section {
    padding: 80px 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 3rem;
    color: var(--dark-text);
    line-height: 1.2;
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.usp-card {
    background: var(--sensei-beige);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(149, 169, 143, 0.2);
    box-shadow: var(--shadow-light);
}

.usp-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.usp-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--sensei-green), #7d9277);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    box-shadow: var(--shadow-light);
}

.usp-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--sensei-red);
}

.usp-card p {
    color: var(--light-text);
    line-height: 1.7;
}

/* Pitch Section */
.pitch-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--sensei-green), #7d9277);
    color: white;
    text-align: center;
}

.pitch-content {
    max-width: 800px;
    margin: 0 auto;
}

.pitch-section h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.pitch-text {
    font-size: clamp(1.1rem, 2.5vw, 1.25rem);
    line-height: 1.8;
    margin-bottom: 3rem;
    opacity: 0.95;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.service-card {
    background: linear-gradient(135deg, var(--sensei-beige), var(--white));
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid rgba(149, 169, 143, 0.1);
    text-align: center;
}

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

.service-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--sensei-red), #d63a0e);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    color: white;
    box-shadow: var(--shadow-light);
}

.service-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
}

.service-card p {
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: var(--sensei-beige);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--dark-text);
    line-height: 1.3;
}

.about-story {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--light-text);
    margin-bottom: 2rem;
}

.about-highlight {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    border-left: 5px solid var(--sensei-red);
    font-style: italic;
    font-weight: 600;
    color: var(--dark-text);
    box-shadow: var(--shadow-light);
}

.about-image {
    background: linear-gradient(135deg, var(--sensei-green), #7d9277);
    height: 400px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    box-shadow: var(--shadow-light);
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: var(--white);
}

.sensei-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.sensei-card {
    background: var(--sensei-beige);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(149, 169, 143, 0.2);
    box-shadow: var(--shadow-light);
}

.sensei-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.sensei-avatar {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--sensei-green), #7d9277);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 3rem;
    color: white;
    box-shadow: var(--shadow-light);
}

.sensei-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--sensei-red);
}

.sensei-role {
    color: var(--sensei-green);
    font-weight: 600;
    margin-bottom: 1rem;
}

.sensei-description {
    color: var(--light-text);
    line-height: 1.6;
}

/* CTA Section */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--sensei-red), #d63a0e);
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.final-cta p {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.btn-white {
    background: white;
    color: var(--sensei-red);
    padding: 18px 36px;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    cursor: pointer;
}

.btn-white:hover,
.btn-white:focus {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}

/* Contact Form Styles */
.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    max-width: 600px;
    margin: 3rem auto 0;
}

.wpcf7-form {
    display: grid;
    gap: 1.5rem;
}

.wpcf7-form-control-wrap {
    position: relative;
}

.wpcf7-form-control {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(149, 169, 143, 0.3);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: var(--sensei-beige);
    font-family: inherit;
}

.wpcf7-form-control:focus {
    outline: none;
    border-color: var(--sensei-green);
}

.wpcf7-textarea {
    height: 120px;
    resize: vertical;
}

.wpcf7-submit {
    background: var(--sensei-red);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.wpcf7-submit:hover {
    background: #d63a0e;
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: var(--dark-text);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--sensei-green);
    font-size: 1.2rem;
}

.footer-section p,
.footer-section a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
    line-height: 1.6;
}

.footer-section a:hover,
.footer-section a:focus {
    color: var(--sensei-green);
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 2rem;
    text-align: center;
    color: #ccc;
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
    z-index: 1000;
    text-decoration: none;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-heavy);
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Screen Reader Only */
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        height: 250px;
        order: -1;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .usp-grid {
        grid-template-columns: 1fr;
    }

    .sensei-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .contact-form {
        margin: 2rem 1rem 0;
        padding: 2rem;
    }

    .whatsapp-button {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .usp-card,
    .service-card,
    .sensei-card {
        padding: 2rem 1.5rem;
    }

    .pitch-section,
    .final-cta {
        padding: 60px 0;
    }

    .about-section,
    .services-section,
    .team-section,
    .usp-section {
        padding: 60px 0;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero h1 {
        -webkit-text-fill-color: var(--dark-text);
        background: none;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* ==============================================
   AI SENSEI WEBSITE OPTIMIERUNGEN
   ============================================== */

/* Back-to-Top Button */
.back-to-top {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background: var(--sensei-green);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    cursor: pointer;
    text-decoration: none;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #7d9277;
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

/* Verbesserte Micro-Animationen */
.usp-card, .service-card, .sensei-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.usp-card:hover, .service-card:hover, .sensei-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}

.btn-primary, .btn-secondary, .cta-button {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.btn-primary:hover, .btn-secondary:hover, .cta-button:hover {
    transform: translateY(-3px) scale(1.02) !important;
}

/* Hero Section Optimierungen */
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-buttons .btn-primary {
    padding: 16px 32px !important;
    font-size: 1.1rem !important;
    min-width: 280px;
}

.hero-buttons .btn-secondary {
    padding: 16px 32px !important;
    font-size: 1.1rem !important;
    min-width: 240px;
}

/* Trust Badges Sektion */
.trust-badges {
    background: rgba(149, 169, 143, 0.05);
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid rgba(149, 169, 143, 0.1);
    border-bottom: 1px solid rgba(149, 169, 143, 0.1);
}

.trust-badges h3 {
    font-size: 1.2rem;
    color: var(--sensei-green);
    margin-bottom: 2rem;
    font-weight: 600;
}

.trust-items {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    align-items: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--light-text);
    font-size: 0.95rem;
    font-weight: 500;
}

.trust-icon {
    color: var(--sensei-green);
    font-size: 1.2rem;
}

/* Character Counter */
.char-counter {
    font-size: 0.85rem;
    color: #6B7280;
    text-align: right;
    margin-top: 0.5rem;
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    top: 50%;
    right: -300px;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--sensei-red), #d63a0e);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 30px 0 0 30px;
    box-shadow: var(--shadow-heavy);
    transition: right 0.3s ease;
    z-index: 998;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
}

.floating-cta.visible {
    right: 0;
}

.floating-cta:hover {
    right: 10px;
    box-shadow: 0 15px 40px rgba(233, 78, 27, 0.4);
}

/* Erweiterte Hover Effekte */
.service-icon, .usp-icon, .sensei-avatar {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.service-card:hover .service-icon,
.usp-card:hover .usp-icon,
.sensei-card:hover .sensei-avatar {
    transform: scale(1.1) rotate(5deg) !important;
}

/* Smooth Scrolling Verbesserung */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Für Fixed Header */
}

/* Mobile Optimierungen */
@media (max-width: 768px) {
    .contact-form {
        margin: 2rem 1rem 0 !important;
        padding: 2rem !important;
    }
    
    .wpcf7-form-control {
        padding: 14px 16px !important;
        font-size: 1rem !important;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }
    
    .back-to-top {
        bottom: 70px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .trust-items {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .floating-cta {
        display: none; /* Verstecken auf Mobile */
    }
}
/* VERSTÄRKTE KONTAKTFORMULAR-OPTIMIERUNGEN */
.contact-form {
    max-width: 500px !important;
    padding: 2rem !important;
    margin: 2rem auto 0 !important;
}

.wpcf7-form {
    gap: 1rem !important;
}

.wpcf7-form-control {
    padding: 10px 14px !important;
    font-size: 0.9rem !important;
    height: 42px !important;
    box-sizing: border-box !important;
}

.wpcf7-textarea {
    height: 85px !important;
    min-height: 85px !important;
    max-height: 150px !important;
    padding: 10px 14px !important;
}

.wpcf7-submit {
    padding: 12px 24px !important;
    font-size: 0.95rem !important;
    height: auto !important;
}

/* MOBILE BUTTON FIXES - VERSTÄRKT */
@media screen and (max-width: 768px) {
    body .btn-primary, 
    body .btn-secondary, 
    body .btn-white, 
    body .cta-button {
        display: block !important;
        width: 100% !important;
        max-width: 280px !important;
        margin: 1rem auto !important;
        padding: 14px 20px !important;
        font-size: 0.95rem !important;
        text-align: center !important;
        white-space: normal !important;
        line-height: 1.3 !important;
        box-sizing: border-box !important;
    }
    
    body .hero-buttons,
    body .pitch-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 1.5rem !important;
        width: 100% !important;
    }
    
    body .pitch-section .btn-white {
        max-width: 300px !important;
        padding: 16px 24px !important;
    }
}