/* =====================================================
   RECHTSSICHER AUSWANDERN
   Modern Premium Design - Level 4
   nature Invest & Staatenlos Partnership
   ===================================================== */

:root {
    /* Colors - Modern Palette */
    --primary: #2B5A1D;
    --primary-light: #4A7C2E;
    --primary-dark: #1A3A0D;
    --accent: #E8D5C4;
    --text-dark: #0D1B0F;
    --text-gray: #5A6B5B;
    --text-light: #8A9B8C;
    --bg-white: #FFFFFF;
    --bg-off: #FAFAF8;
    --border: #E5E3E0;
    --success: #4CAF50;

    /* Typography - Modern & Clean */
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Inter', sans-serif;

    /* Spacing */
    --s-xs: 0.5rem;
    --s-sm: 1rem;
    --s-md: 1.5rem;
    --s-lg: 2rem;
    --s-xl: 3rem;
    --s-2xl: 4rem;
    --s-3xl: 6rem;

    /* Shadows - Modern & Subtle */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 6px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 48px rgba(0, 0, 0, 0.15);

    /* Transitions */
    --transition-fast: 0.2s ease-in-out;
    --transition-normal: 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-slow: 0.5s ease-in-out;
}

@import url('https://rsms.me/inter/inter.css');

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--s-lg);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition-fast);
}

/* =====================================================
   HEADER / NAVIGATION
   ===================================================== */

header {
    position: sticky;
    top: 0;
    z-index: 9998;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--s-md) 0;
}

.nav-logo-group {
    display: flex;
    align-items: center;
    gap: var(--s-md);
}

.nav-logo-image {
    display: flex;
    align-items: center;
    height: 48px;
}

.nav-logo-image img,
.main-logo {
    height: 48px;
    width: auto;
    transition: var(--transition-fast);
}

.nav-logo-image:hover img {
    opacity: 0.9;
}

.nav-cooperation {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-gray);
    margin: 0;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.nav-partner-logo {
    display: flex;
    align-items: center;
    height: 28px;
}

.nav-partner-logo img,
.partner-logo {
    height: 28px;
    width: auto;
    opacity: 0.85;
    transition: var(--transition-fast);
}

.nav-partner-logo:hover img {
    opacity: 1;
}

nav ul {
    display: flex;
    list-style: none;
    gap: var(--s-xl);
}

nav a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-gray);
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition-fast);
}

nav a:hover {
    color: var(--primary);
}

nav a:hover::after {
    width: 100%;
}

/* =====================================================
   MOBILE MENU & HAMBURGER
   ===================================================== */

/* Hamburger Button - Hidden on desktop, shown on mobile */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--s-xs);
    z-index: 10001;
    position: relative;
    width: 40px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.hamburger-line {
    width: 28px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 3px;
    transition: var(--transition-fast);
    transform-origin: center;
}

/* Hamburger Animation when active */
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

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

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Menu - Full Screen Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #F5F5F5 !important;
    background-color: #F5F5F5 !important;
    z-index: 9999;
    padding-top: 90px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    box-shadow: none;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu ul {
    list-style: none;
    padding: var(--s-2xl) var(--s-lg);
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    background: transparent;
}

.mobile-menu li {
    border-bottom: 1px solid var(--border);
}

.mobile-menu li:last-child {
    border-bottom: none;
}

.mobile-menu a {
    display: block;
    padding: 25px 30px !important;
    font-size: 1.8rem !important;
    font-weight: 900 !important;
    color: #000000 !important;
    text-decoration: none !important;
    transition: var(--transition-fast);
    border-radius: 12px;
    margin: 10px 20px !important;
    background: #FFFFFF !important;
    border: 3px solid #000000 !important;
    text-align: center !important;
}

.mobile-menu a:hover {
    color: white !important;
    background: #2B5A1D !important;
    border-color: #2B5A1D !important;
    transform: scale(1.05);
}

/* =====================================================
   HERO SECTION
   ===================================================== */

.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image:
        linear-gradient(135deg, rgba(13, 27, 15, 0.85) 0%, rgba(43, 90, 29, 0.75) 100%),
        url('../images/airport-hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: var(--s-3xl) 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(13, 27, 15, 0.4);
    z-index: 1;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease;
}

.hero-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #4A7C2E;
    margin-bottom: var(--s-xl);
    padding: var(--s-xs) var(--s-md);
    border: 2px solid #4A7C2E;
    border-radius: 50px;
    background: rgba(74, 124, 46, 0.1);
}

.hero-problem {
    font-size: 2.8rem;
    font-weight: 700;
    color: white;
    line-height: 1.3;
    margin-bottom: var(--s-lg);
    letter-spacing: -0.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-solution {
    font-size: 1.5rem;
    font-weight: 600;
    color: #E8D5C4;
    line-height: 1.5;
    margin-bottom: var(--s-xl);
    letter-spacing: -0.3px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-details {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--s-lg);
    line-height: 1.8;
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-scarcity {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
    background: rgba(234, 88, 12, 0.9);
    padding: var(--s-sm) var(--s-lg);
    border-radius: 8px;
    margin-bottom: var(--s-xl);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: var(--s-md);
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: var(--s-xl);
    line-height: 1.7;
    font-weight: 400;
}

.cta-button {
    display: inline-block;
    padding: var(--s-md) var(--s-2xl);
    background: #4A7C2E;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: 0 8px 24px rgba(74, 124, 46, 0.4);
}

.cta-button:hover {
    background: #5A8C3E;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(74, 124, 46, 0.6);
}

/* =====================================================
   SECTIONS GENERAL
   ===================================================== */

section {
    padding: var(--s-3xl) 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: var(--s-lg);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    text-align: center;
    margin-bottom: var(--s-2xl);
    font-weight: 400;
}

/* =====================================================
   DATES SECTION
   ===================================================== */

.dates-section {
    background: white;
}

.dates-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--s-lg);
    align-items: center;
    max-width: 700px;
    margin: 0 auto;
}

.date-card {
    display: block;
    background: white;
    padding: var(--s-2xl);
    border-radius: 16px;
    border: 1px solid var(--border);
    text-align: center;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-xs);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.date-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
    transform: translateY(-4px);
    color: inherit;
}

.date-full {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.3;
    margin-bottom: var(--s-sm);
}

.date-time {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: var(--s-xs);
    font-weight: 400;
}

.divider {
    width: 2px;
    height: 100px;
    background: var(--border);
}

/* =====================================================
   SERVICES SECTION
   ===================================================== */

.services-section {
    background: var(--bg-off);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s-md);
    margin-bottom: var(--s-xl);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    padding: var(--s-lg) var(--s-md);
    border: 1px solid var(--border);
    border-radius: 12px;
    text-align: center;
    transition: var(--transition-normal);
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
    background: var(--bg-off);
}

.service-icon {
    font-size: 2rem;
    margin-bottom: var(--s-sm);
}

.service-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--s-md);
    box-shadow: 0 2px 8px rgba(43, 90, 29, 0.1);
}

.service-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--s-xs);
    line-height: 1.2;
}

.service-card p {
    color: var(--text-gray);
    font-size: 0.8rem;
    margin-bottom: var(--s-md);
    line-height: 1.5;
    max-width: 300px;
}

.service-list {
    list-style: none;
    text-align: left;
    font-size: 0.8rem;
    color: var(--text-gray);
    width: 100%;
    max-width: 280px;
}

.service-list li {
    padding: var(--s-xs) 0;
    padding-left: var(--s-sm);
    position: relative;
    line-height: 1.4;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.2rem;
}

/* =====================================================
   PRICING SECTION
   ===================================================== */

.pricing-block {
    background: var(--bg-off);
    padding: var(--s-2xl);
    border-radius: 16px;
    margin-top: var(--s-2xl);
}

.pricing-block h3 {
    text-align: center;
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: var(--s-xl);
    font-weight: 700;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--s-lg);
}

.price-card {
    background: white;
    padding: var(--s-xl);
    border-radius: 12px;
    border: 1px solid var(--border);
    text-align: center;
    transition: var(--transition-normal);
}

.price-card.highlight {
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-md);
}

.price-card:hover {
    box-shadow: var(--shadow-md);
}

.price-label {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-light);
    letter-spacing: 0.5px;
    margin-bottom: var(--s-xs);
}

.price-amount {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--s-xs);
}

.price-desc {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 400;
}

/* =====================================================
   INVESTMENT SECTION
   ===================================================== */

.investment-section {
    background: white;
}

.investment-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--s-3xl);
    align-items: center;
}

.investment-image {
    order: 2;
    height: 500px;
    overflow: hidden;
}

.investment-text h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: var(--s-lg);
    font-weight: 700;
}

.investment-text > p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: var(--s-lg);
    font-weight: 400;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: var(--s-md);
}

.benefit {
    display: flex;
    gap: var(--s-md);
    align-items: flex-start;
}

.benefit-icon {
    color: var(--success);
    font-weight: bold;
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.benefit-text {
    color: var(--text-gray);
    font-weight: 400;
    line-height: 1.5;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s-lg);
}

.stat-box {
    background: var(--bg-off);
    padding: var(--s-lg);
    border-radius: 12px;
    text-align: center;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-top: var(--s-xs);
    font-weight: 400;
}

/* =====================================================
   CREDIBILITY SECTION (Bekannt aus TV und Presse)
   ===================================================== */

.credibility-section {
    background: var(--bg-off);
    padding: var(--s-3xl) 0;
}

.credibility-eyebrow {
    text-align: center;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: var(--s-sm);
}

.credibility-main-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--s-md);
    line-height: 1.2;
}

.credibility-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: var(--s-3xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.credibility-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s-xl);
    max-width: 1200px;
    margin: 0 auto;
}

.credibility-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.credibility-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.credibility-image {
    width: 100%;
    height: 260px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
}

.credibility-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.credibility-text {
    padding: var(--s-xl);
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.8;
    flex-grow: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* =====================================================
   BENEFITS SECTION (Webinar Benefits)
   ===================================================== */

.benefits-section {
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--s-lg);
    margin-bottom: var(--s-3xl);
}

.benefit-card {
    padding: var(--s-2xl);
    border: 1px solid var(--border);
    border-radius: 16px;
    text-align: center;
    transition: var(--transition-normal);
    background: var(--bg-off);
}

.benefit-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    background: white;
}

.benefit-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: var(--s-md);
}

.benefit-card h4 {
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: var(--s-sm);
}

.benefit-card p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
    font-weight: 400;
}

.benefit-outcome {
    background: var(--accent);
    padding: var(--s-2xl);
    border-radius: 16px;
    text-align: center;
}

.benefit-outcome h3 {
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: var(--s-lg);
    font-weight: 700;
}

.outcome-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--s-md);
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}

.outcome-list li {
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* =====================================================
   TESTIMONIALS SECTION (Kundenstimmen)
   ===================================================== */

.testimonials-section {
    background: var(--bg-off);
    padding: var(--s-3xl) 0;
}

.testimonials-eyebrow {
    text-align: center;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: var(--s-sm);
}

.testimonials-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--s-md);
    line-height: 1.2;
}

.testimonials-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: var(--s-3xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.testimonials-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s-xl);
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

.testimonial-card-new {
    background: white;
    padding: var(--s-3xl) var(--s-xl);
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.testimonial-card-new:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

.testimonial-avatar-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: var(--s-lg);
    border: 3px solid var(--bg-off);
    flex-shrink: 0;
}

.testimonial-avatar-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-quote-new {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: auto;
    flex-grow: 1;
}

.testimonial-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--s-xs);
    margin-top: var(--s-xl);
}

.testimonial-location {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 400;
}

/* =====================================================
   FAQ SECTION
   ===================================================== */

.faq-section {
    background: white;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--s-md);
}

.faq-item-accordion {
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    background: white;
    transition: var(--transition-normal);
}

.faq-item-accordion:hover {
    box-shadow: var(--shadow-sm);
    border-color: var(--primary);
}

.faq-toggle {
    width: 100%;
    padding: var(--s-lg) var(--s-xl);
    background: white;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    transition: var(--transition-fast);
    text-align: left;
    font-family: var(--font-main);
}

.faq-toggle:hover {
    background: var(--bg-off);
}

.faq-question {
    flex: 1;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition-normal);
    flex-shrink: 0;
    margin-left: var(--s-md);
}

.faq-item-accordion.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    background: var(--bg-off);
}

.faq-item-accordion.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 var(--s-xl) var(--s-lg);
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: var(--s-lg) 0 0 0;
}

/* =====================================================
   FORM SECTION
   ===================================================== */

.form-section {
    background: var(--bg-off);
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: var(--s-2xl);
}

.form-header h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: var(--s-sm);
    font-weight: 700;
}

.form-header p {
    color: var(--text-gray);
    font-weight: 400;
}

.form-box {
    background: var(--bg-off);
    padding: var(--s-2xl);
    border-radius: 16px;
}

/* Heller Hintergrund für iframe (hilft bei dunklem Cloudflare-Widget) */
.form-box iframe {
    background: #ffffff;
    border-radius: 8px;
}

/* Alternative: Wenn das Widget trotzdem zu dunkel ist */
.form-box iframe::after {
    content: "";
    display: block;
    padding-bottom: 20px;
}

.form-group {
    margin-bottom: var(--s-lg);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: var(--s-md) var(--s-lg);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-family: var(--font-main);
    font-size: 1rem;
    color: var(--text-dark);
    transition: var(--transition-fast);
    background: white;
}

.form-group input::placeholder {
    color: var(--text-light);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: inset 0 0 0 3px rgba(43, 90, 29, 0.05);
}

.form-submit {
    width: 100%;
    padding: var(--s-md);
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-normal);
    margin-top: var(--s-sm);
}

.form-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.form-notice {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: var(--s-lg);
    font-weight: 400;
}

.form-notice a {
    color: var(--primary);
    font-weight: 600;
}

.success-message {
    text-align: center;
    padding: var(--s-2xl);
    background: #E8F5E9;
    border: 1px solid #A5D6A7;
    border-radius: 16px;
    display: none;
}

.success-message.show {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.success-icon {
    font-size: 2.5rem;
    color: var(--success);
    margin-bottom: var(--s-md);
}

.success-message h3 {
    color: var(--success);
    margin-bottom: var(--s-sm);
}

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

/* =====================================================
   CONTACT SECTION
   ===================================================== */

.contact-section {
    background: white;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--s-md);
    max-width: 1000px;
    margin: 0 auto var(--s-xl);
}

.contact-method {
    display: flex;
    gap: var(--s-lg);
    padding: var(--s-lg);
    background: var(--bg-off);
    border-radius: 12px;
    border: 1px solid var(--border);
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

.contact-method:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-light);
    margin-bottom: 2px;
}

.contact-value {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
}

.partnership-box {
    text-align: center;
    padding: var(--s-lg);
    background: var(--accent);
    border-radius: 12px;
    margin-top: var(--s-lg);
}

.partnership-box p {
    color: var(--text-dark);
    margin: var(--s-xs) 0;
    font-weight: 400;
}

.partnership-link {
    color: var(--primary);
    font-weight: 700;
}

/* =====================================================
   FOOTER
   ===================================================== */

footer {
    background: var(--primary);
    color: white;
    padding: var(--s-2xl) 0 var(--s-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--s-lg);
    margin-bottom: var(--s-lg);
    padding-bottom: var(--s-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: var(--s-sm);
    font-weight: 700;
}

.footer-col p {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.6;
    font-weight: 400;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--s-lg);
    font-size: 0.8rem;
    opacity: 0.8;
    font-weight: 400;
}

.footer-bottom a {
    color: white;
    text-decoration: none;
    margin: 0 var(--s-md);
}

/* =====================================================
   ANIMATIONS
   ===================================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
    }

    /* Mobile Menu: Show hamburger, hide desktop menu */
    .mobile-menu-toggle {
        display: flex !important;
    }

    .nav-menu {
        display: none !important;
    }

    /* Mobile Logo Optimization */
    .nav-logo-image {
        height: 36px;
    }

    .nav-logo-image img,
    .main-logo {
        height: 36px !important;
    }

    .nav-partner-logo {
        height: 16px;
    }

    .nav-partner-logo img,
    .partner-logo {
        height: 16px !important;
    }

    .nav-cooperation {
        font-size: 0.6rem;
        line-height: 1.3;
        white-space: normal;
        max-width: 50px;
        text-align: center;
    }

    .nav-logo-group {
        gap: var(--s-xs);
    }

    h1 {
        font-size: 2.5rem;
    }

    .hero-problem {
        font-size: 2rem;
    }

    .hero-solution {
        font-size: 1.2rem;
    }

    .hero-details {
        font-size: 1rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--s-xl);
    }

    .service-card {
        padding: var(--s-lg);
    }

    .service-card h3 {
        font-size: 1.15rem;
    }

    .service-card p {
        font-size: 0.95rem;
    }

    .service-list {
        font-size: 0.9rem;
    }

    .service-icon-box {
        width: 80px;
        height: 80px;
    }

    .dates-container {
        grid-template-columns: 1fr;
    }

    .divider {
        display: none;
    }

    /* Termine Mobile - Größere Schrift */
    .date-full {
        font-size: 2rem;
    }

    .date-time {
        font-size: 1rem;
    }

    .investment-grid {
        grid-template-columns: 1fr;
        gap: var(--s-2xl);
    }

    nav ul {
        gap: var(--s-lg);
    }

    nav a {
        font-size: 0.85rem;
    }

    .partner-logos {
        gap: var(--s-sm);
    }

    .partner-logo-item {
        height: 24px;
    }

    .credibility-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--s-lg);
    }

    .credibility-main-title {
        font-size: 2rem;
    }

    .credibility-subtitle {
        font-size: 1rem;
    }

    .credibility-image {
        height: 220px;
    }

    .credibility-text {
        padding: var(--s-md);
        font-size: 0.9rem;
    }

    .benefit-outcome h3 {
        font-size: 1.2rem;
    }

    .outcome-list {
        grid-template-columns: 1fr;
    }

    /* Benefits-Cards Mobile Optimization */
    .benefit-card {
        padding: var(--s-lg);
    }

    .benefit-card h4 {
        font-size: 1.2rem;
    }

    .benefit-card p {
        font-size: 1rem;
    }

    .testimonials-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--s-lg);
    }

    .testimonials-title {
        font-size: 2rem;
    }

    .testimonials-subtitle {
        font-size: 1rem;
    }

    .testimonial-avatar-circle {
        width: 80px;
        height: 80px;
    }

    .testimonial-card-new {
        padding: var(--s-xl) var(--s-md);
    }

    /* Stats-Grid mobile optimization */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Form-Box mobile optimization */
    .form-box {
        padding: var(--s-sm) !important;
    }

    /* Form Section Container auf Mobile */
    .form-wrapper {
        padding: 0;
    }

    .form-section .container {
        padding: 0 var(--s-sm);
    }

    /* Footer Bottom - Mobile Optimization */
    .footer-bottom {
        font-size: 0.75rem;
        line-height: 1.8;
        padding-top: var(--s-md);
    }

    .footer-bottom a {
        margin: 0 var(--s-xs);
    }

    /* Pricing Section - Mobile Optimization */
    .pricing-block {
        padding: var(--s-lg);
        margin-top: var(--s-lg);
    }

    .pricing-block h3 {
        font-size: 1.2rem;
        margin-bottom: var(--s-lg);
    }

    .pricing-grid {
        gap: var(--s-md);
    }

    .price-card {
        padding: var(--s-lg);
    }

    .price-label {
        font-size: 0.75rem;
        margin-bottom: 4px;
    }

    .price-amount {
        font-size: 1.8rem;
        margin-bottom: 4px;
    }

    .price-desc {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    /* Extra Small Mobile Logo Optimization */
    .nav-logo-image {
        height: 32px;
    }

    .nav-logo-image img,
    .main-logo {
        height: 32px !important;
    }

    .nav-partner-logo {
        height: 12px;
    }

    .nav-partner-logo img,
    .partner-logo {
        height: 12px !important;
    }

    .nav-cooperation {
        font-size: 0.5rem;
        line-height: 1.2;
        white-space: normal;
        max-width: 40px;
        text-align: center;
        margin: 0;
    }

    .nav-logo-group {
        gap: 4px;
    }

    h1 {
        font-size: 2rem;
    }

    .hero-problem {
        font-size: 1.5rem;
    }

    .hero-solution {
        font-size: 1rem;
    }

    .hero-details {
        font-size: 0.9rem;
    }

    .hero-scarcity {
        font-size: 0.85rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .cta-button {
        padding: var(--s-md) var(--s-lg);
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--s-lg);
    }

    .service-card {
        padding: var(--s-md);
    }

    .service-card h3 {
        font-size: 1.25rem;
    }

    .service-card p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .service-list {
        font-size: 0.95rem;
    }

    .service-list li {
        line-height: 1.6;
    }

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

    nav ul {
        display: none;
    }

    section {
        padding: var(--s-2xl) 0;
    }

    .container {
        padding: 0 var(--s-md);
    }

    /* Termine Extra Small Mobile - Noch größere Schrift */
    .date-full {
        font-size: 2.2rem;
    }

    .date-time {
        font-size: 1rem;
    }

    .date-card {
        padding: var(--s-xl);
    }

    .credibility-grid {
        grid-template-columns: 1fr;
        gap: var(--s-lg);
    }

    .credibility-main-title {
        font-size: 1.6rem;
    }

    .credibility-subtitle {
        font-size: 0.9rem;
    }

    .credibility-image {
        height: 200px;
    }

    .credibility-text {
        font-size: 0.85rem;
        padding: var(--s-sm);
    }

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

    /* Benefits-Cards Extra Small Mobile Optimization */
    .benefit-card {
        padding: var(--s-md);
    }

    .benefit-card h4 {
        font-size: 1.15rem;
    }

    .benefit-card p {
        font-size: 1.05rem;
        line-height: 1.7;
    }

    .testimonials-grid-new {
        grid-template-columns: 1fr;
        gap: var(--s-lg);
    }

    .testimonials-title {
        font-size: 1.6rem;
    }

    .testimonials-subtitle {
        font-size: 0.9rem;
    }

    .testimonial-card-new {
        padding: var(--s-2xl) var(--s-lg);
    }

    .testimonial-avatar-circle {
        width: 70px;
        height: 70px;
    }

    .testimonial-quote-new {
        font-size: 0.9rem;
    }

    /* Stats-Grid extra small mobile optimization */
    .stats-grid {
        grid-template-columns: 1fr;
    }

    /* Form-Box extra small mobile optimization */
    .form-box {
        padding: var(--s-xs) !important;
    }

    /* Form Section Container auf Extra Small Mobile */
    .form-section .container {
        padding: 0 var(--s-xs);
    }

    .form-wrapper {
        max-width: 100%;
    }

    /* Footer Bottom - Extra Small Mobile Optimization */
    .footer-bottom {
        font-size: 0.7rem;
        line-height: 2;
        padding: var(--s-md) var(--s-xs);
    }

    .footer-bottom a {
        margin: 0 2px;
        display: inline-block;
    }

    /* Pricing Section - Extra Small Mobile Optimization */
    .pricing-block {
        padding: var(--s-md);
        margin-top: var(--s-md);
    }

    .pricing-block h3 {
        font-size: 1.1rem;
        margin-bottom: var(--s-md);
    }

    .pricing-grid {
        gap: var(--s-sm);
    }

    .price-card {
        padding: var(--s-md);
    }

    .price-label {
        font-size: 0.7rem;
        margin-bottom: 2px;
    }

    .price-amount {
        font-size: 1.6rem;
        margin-bottom: 2px;
    }

    .price-desc {
        font-size: 0.8rem;
    }
}
