/* ============================================
   Quantilead - Stylesheet
   Modernes, conversion-starkes B2B-Design
   ============================================ */

/* Reset & Basis-Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Farbpalette - Dunkelblau + Orange (Option 2) */
    --primary-color: #1a365d;
    --primary-dark: #2c5282;
    --secondary-color: #f97316;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #10b981;
    --error-color: #dc3545;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.15);
    
    /* Typografie */
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-heading: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

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

/* ============================================
   Site Header / Navigation
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 2rem;
}

.site-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.site-logo:hover {
    opacity: 0.8;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
    justify-content: center;
}

.site-nav .nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.2s ease;
    position: relative;
}

.site-nav .nav-link:hover {
    color: var(--primary-color);
}

.site-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.site-nav .nav-link:hover::after {
    width: 100%;
}

.site-nav .nav-link.nav-cta {
    background: #ff8c42;
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    font-weight: 600;
    margin-left: 1rem;
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.site-nav .nav-link.nav-cta::after {
    display: none;
}

.site-nav .nav-link.nav-cta:hover {
    background: #ff7a2e;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 140, 66, 0.3);
}

.site-nav .nav-link.nav-cta:active {
    transform: translateY(0);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 0.25rem;
    background: var(--bg-white);
}

.lang-btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    background: transparent;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lang-btn:hover {
    color: var(--text-dark);
    background: var(--bg-light);
}

.lang-btn.active {
    color: var(--primary-color);
    background: var(--bg-light);
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 5px;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle.is-open span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    flex-direction: column;
    background: var(--bg-white);
    border-top: 1px solid var(--border-color);
    padding: 1rem 0;
    gap: 0.5rem;
}

.mobile-nav.is-open {
    display: flex;
}

.mobile-nav-link {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
    transition: background 0.2s ease;
}

.mobile-nav-link:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

/* Scroll margin for sections */
section[id] {
    scroll-margin-top: 80px;
}

/* ============================================
   Design Hierarchy Improvements
   Premium, Calm, Confident
   ============================================ */

/* Hero Typography - More Impact */
.hero-headline {
    font-size: 4rem !important;
    line-height: 1.15 !important;
    font-weight: 700;
    letter-spacing: -0.02em;
}

@media (max-width: 768px) {
    .hero-headline {
        font-size: 2.5rem !important;
        line-height: 1.2 !important;
    }
}

/* Section Base Class */
.section {
    padding: 5rem 0;
}

@media (max-width: 768px) {
    .section {
        padding: 3rem 0;
    }
}

/* Section Titles - Unified */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

.section-subtitle {
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 60ch;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}

/* Text Content - Max Width */
.text-content {
    max-width: 65ch;
    line-height: 1.7;
}

/* Card System - Premium */
.card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

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

@media (max-width: 768px) {
    .card-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .card {
        padding: 2rem;
    }
}

/* Badge & Chip System - Subtle & Premium */
.badge,
.chip {
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 6px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    color: var(--text-dark);
    letter-spacing: 0.01em;
}

.badge {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Usage Guide & Learn More - More White Space */
#usage-guide,
#learn-more {
    padding: 6rem 0;
}

#usage-guide .card,
#learn-more .card {
    padding: 3rem;
}

#usage-guide ul,
#learn-more ul {
    list-style: none;
    padding-left: 0;
}

#usage-guide li,
#learn-more li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.7;
}

#usage-guide li::before,
#learn-more li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

@media (max-width: 768px) {
    #usage-guide,
    #learn-more {
        padding: 4rem 0;
    }
    
    #usage-guide .card,
    #learn-more .card {
        padding: 2rem;
    }
}

/* Pricing Cards - Equal Height */
.pakete-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.paket-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 600px;
}

.paket-card .btn {
    margin-top: auto;
    width: 100%;
}

/* Premium Badge Styling */
.paket-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--border-color);
    color: var(--primary-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.paket-badge-testing {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #ff8c42 100%);
    color: white;
    border: none;
}

@media (max-width: 768px) {
    .pakete-grid {
        grid-template-columns: 1fr;
    }
    
    .paket-card {
        min-height: auto;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .site-nav {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .language-switcher {
        order: -1;
    }
    
    .site-header-inner {
        padding: 0.75rem 0;
    }
}

@media (max-width: 480px) {
    .site-logo {
        font-size: 1.25rem;
    }
    
    .lang-btn {
        padding: 0.35rem 0.7rem;
        font-size: 0.8rem;
    }
}




/* ============================================
   Design Hierarchy Improvements
   Premium, Calm, Confident
   ============================================ */

/* Hero Typography - More Impact */
.hero-headline {
    font-size: 4rem !important;
    line-height: 1.15 !important;
    font-weight: 700;
    letter-spacing: -0.02em;
}

@media (max-width: 768px) {
    .hero-headline {
        font-size: 2.5rem !important;
        line-height: 1.2 !important;
    }
}

/* Section Base Class */
.section {
    padding: 5rem 0;
}

@media (max-width: 768px) {
    .section {
        padding: 3rem 0;
    }
}

/* Section Titles - Unified */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

.section-subtitle {
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 60ch;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}

/* Text Content - Max Width */
.text-content {
    max-width: 65ch;
    line-height: 1.7;
}

/* Card System - Premium */
.card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

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

@media (max-width: 768px) {
    .card-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .card {
        padding: 2rem;
    }
}

/* Badge & Chip System - Subtle & Premium */
.badge,
.chip {
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 6px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    color: var(--text-dark);
    letter-spacing: 0.01em;
}

.badge {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Usage Guide & Learn More - More White Space */
#usage-guide,
#learn-more {
    padding: 6rem 0;
}

#usage-guide .card,
#learn-more .card {
    padding: 3rem;
}

#usage-guide ul,
#learn-more ul {
    list-style: none;
    padding-left: 0;
}

#usage-guide li,
#learn-more li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.7;
}

#usage-guide li::before,
#learn-more li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

@media (max-width: 768px) {
    #usage-guide,
    #learn-more {
        padding: 4rem 0;
    }
    
    #usage-guide .card,
    #learn-more .card {
        padding: 2rem;
    }
}

/* Pricing Cards - Equal Height */
.pakete-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.paket-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 600px;
}

.paket-card .btn {
    margin-top: auto;
    width: 100%;
}

/* Premium Badge Styling */
.paket-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--border-color);
    color: var(--primary-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-size: 0.75rem;
}

.paket-badge-testing {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #ff8c42 100%);
    color: white;
    border: none;
}

@media (max-width: 768px) {
    .pakete-grid {
        grid-template-columns: 1fr;
    }
    
    .paket-card {
        min-height: auto;
    }
}
/* ============================================
   Header / Navigation
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    position: relative;
}

.logo h1 {
    font-size: 2.2rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-left: -2rem;
}

.nav {
    display: flex;
    gap: 2rem;
    margin-left: 3rem;
}

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

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* ============================================
   Hero-Sektion
   ============================================ */
.hero {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    text-align: center;
}

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

.hero-headline {
    font-size: 3.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.1s forwards;
}

.hero-subline {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.5;
    font-weight: 400;
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.25s forwards;
}

.hero-microcopy {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    line-height: 1.5;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
}

.trust-bar {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.55s forwards;
}

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

.trust-icon {
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.trust-why-uae {
    margin-top: 1.5rem;
    text-align: center;
    padding-top: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.7s forwards;
}

.trust-why-uae-title {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trust-chips {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.trust-chip {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
}

.trust-chip:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--secondary-color);
    color: white;
}

.btn-primary:hover {
    background: #ea580c;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.3);
}

.btn-secondary {
    background: var(--bg-white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

/* ============================================
   Lead-Finder / Konfigurator
   ============================================ */
.lead-finder {
    padding: 80px 0;
    background: var(--bg-white);
}

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

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.configurator-box {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.availability-info-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #e8f4f8;
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin-top: 1.5rem;
    transition: opacity 0.3s ease;
}

.availability-info-box.has-result {
    opacity: 0.5;
}

.availability-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
    line-height: 1;
}

.availability-content {
    flex: 1;
}

.availability-text {
    color: var(--text-dark);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0 0 0.5rem 0;
    font-weight: 500;
}

.availability-tip {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
    font-style: italic;
}

.configurator-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    display: block;
    margin-bottom: 0.625rem;
    font-weight: 600;
    font-size: 0.9375rem;
    color: #1e293b;
    letter-spacing: -0.01em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.9375rem;
    font-family: var(--font-primary);
    background: #ffffff;
    color: #1e293b;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364758b' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: #cbd5e1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1), 0 2px 4px rgba(0, 0, 0, 0.08);
    background: #ffffff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8;
    opacity: 1;
}

/* Conditional input fields - hidden by default, shown via state */
.form-group .conditional-input {
    display: none !important;
    margin-top: 0.75rem;
    width: 100%;
}

.form-group .conditional-input.visible {
    display: block !important;
}

.checkbox-group {
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.875rem; /* 14px - improved spacing for better UX */
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
    white-space: nowrap; /* Prevent text from wrapping */
    flex-wrap: nowrap; /* Prevent flex items from wrapping */
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
    cursor: pointer;
    flex-shrink: 0; /* Prevent checkbox from shrinking */
    width: auto;
    height: auto;
    align-self: center; /* Center checkbox vertically */
    position: relative;
    top: 0.08em; /* Fine-tune vertical alignment to match center of capital "I" */
}

.checkbox-label span {
    flex-shrink: 0; /* Prevent text from shrinking */
    white-space: nowrap; /* Prevent text from wrapping */
    display: inline-block;
    line-height: 1.4;
    vertical-align: middle;
}

.config-result {
    margin-top: 2rem;
    padding: 1.5rem;
    border-radius: 6px;
    font-weight: 500;
}

.config-result.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.config-result.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ============================================
   PLZ-Autovervollständigung
   ============================================ */
.plz-autocomplete-group {
    position: relative;
}

.plz-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-top: none;
    border-radius: 0 0 8px 8px;
    box-shadow: var(--shadow-hover);
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    margin-top: -2px;
}

.plz-suggestion-item {
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 1px solid var(--bg-light);
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.plz-suggestion-item:last-child {
    border-bottom: none;
}

.plz-suggestion-item:hover,
.plz-suggestion-item.selected {
    background: var(--bg-light);
    color: var(--primary-color);
}

.plz-suggestion-item strong {
    color: var(--primary-color);
    font-weight: 600;
    min-width: 60px;
}

.plz-suggestion-item:hover strong,
.plz-suggestion-item.selected strong {
    color: var(--primary-dark);
}

/* ============================================
   Anwendungsbereiche - Tab System
   ============================================ */

.anwendungsbereiche {
    padding: 80px 0;
    background: var(--bg-white);
}

.anwendungsbereiche-tabs {
    max-width: 1000px;
    margin: 3rem auto 0;
}

.anwendungsbereiche-tab-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 1rem;
}

.tab-button {
    background: transparent;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.tab-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.tab-button:hover::before {
    left: 100%;
}

.tab-button:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.tab-button.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 12px rgba(26, 54, 93, 0.3);
}

.tab-icon {
    font-size: 1.2rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.tab-button.active .tab-icon {
    transform: scale(1.2);
}

.tab-text {
    white-space: nowrap;
}

.anwendungsbereiche-tab-content {
    position: relative;
    min-height: 300px;
}

.tab-panel {
    display: none;
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    border-radius: 16px;
    box-shadow: var(--shadow);
    animation: tabFadeIn 0.5s ease-out;
}

.tab-panel.active {
    display: block;
}

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

.tab-panel-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: iconBounce 0.6s ease-out;
}

@keyframes iconBounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.1);
    }
}

.tab-panel h3 {
    color: var(--text-dark);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.tab-panel p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .anwendungsbereiche-tab-buttons {
        gap: 0.5rem;
    }
    
    .tab-button {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    .tab-text {
        display: none;
    }
    
    .tab-icon {
        font-size: 1.5rem;
    }
    
    .tab-panel {
        padding: 2rem 1.5rem;
    }
    
    .tab-panel-icon {
        font-size: 4rem;
    }
    
    .tab-panel h3 {
        font-size: 1.5rem;
    }
    
    .tab-panel p {
        font-size: 1rem;
    }
}

/* ============================================
   Vorteile / USPs
   ============================================ */
.vorteile {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.vorteil-card {
    background: var(--bg-white);
    padding: 2rem 1.75rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.vorteil-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.vorteil-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

/* ============================================
   Funktionsweise / Timeline
   ============================================ */
.funktionsweise {
    padding: 80px 0;
    background: var(--bg-white);
}

.timeline {
    max-width: 900px;
    margin: 3rem auto 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--border-color);
    transform: translateX(-50%);
}

.timeline-step {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-step:nth-child(odd) {
    flex-direction: row;
}

.timeline-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.step-content {
    flex: 1;
    padding: 0 2rem;
    max-width: 400px;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.step-content p {
    color: var(--text-light);
}

/* ============================================
   Lead-Typen
   ============================================ */
.lead-typen {
    padding: 80px 0;
    background: var(--bg-light);
}

.lead-typen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.lead-typ-card {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

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

.lead-typ-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--bg-light);
}

.lead-typ-icon {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 12px;
    flex-shrink: 0;
}

.lead-typ-card h3 {
    font-size: 1.75rem;
    margin: 0;
    color: var(--text-dark);
    font-weight: 700;
}

.lead-typ-description {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.lead-typ-items {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.lead-typ-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--bg-light);
    border-radius: 10px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.lead-typ-item:hover {
    background: #f0f4f8;
    transform: translateX(5px);
}

.lead-typ-item-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: var(--success-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.lead-typ-item-content {
    flex: 1;
}

.lead-typ-item-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 0.4rem 0;
    line-height: 1.3;
}

.lead-typ-item-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

/* ============================================
   Usage Guide
   ============================================ */
.usage-guide {
    padding: 60px 0;
    background: var(--bg-light);
}

.usage-guide-content {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto 3rem;
    align-items: start;
}

.usage-guide-main {
    flex: 1;
}

.usage-guide-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.usage-guide-list li {
    padding: 1rem 0 1rem 2rem;
    position: relative;
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.usage-guide-list li:last-child {
    border-bottom: none;
}

.usage-guide-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1;
}

.usage-guide-sidebar {
    flex-shrink: 0;
}

.best-practice-box {
    background: var(--bg-white);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.best-practice-box h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.best-practice-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
}

.best-practice-steps li {
    counter-increment: step-counter;
    padding: 1rem 0 1rem 2.5rem;
    position: relative;
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border-color);
}

.best-practice-steps li:last-child {
    border-bottom: none;
}

.best-practice-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 1rem;
    width: 1.8rem;
    height: 1.8rem;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.usage-guide-cta {
    text-align: center;
    margin-top: 2rem;
}

/* ============================================
   What Not
   ============================================ */
.what-not {
    padding: 80px 0;
    background: var(--bg-light);
}

.what-not-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 3rem auto 0;
}

.what-not-column {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
}

.what-not-column-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.what-not-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.what-not-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0;
}

.what-not-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--error-color);
    font-weight: 700;
}

.what-is-icon {
    background: var(--success-color);
    color: white;
    border-radius: 50%;
    font-size: 1rem;
}

.what-not-list li span:last-child {
    flex: 1;
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 1rem;
    padding-top: 0.2rem;
}

.what-not-disclaimer {
    text-align: center;
    color: var(--text-light);
    font-style: italic;
    margin-top: 3rem;
    font-size: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   Qualität
   ============================================ */
.qualitaet {
    padding: 80px 0;
    background: var(--bg-white);
}

.qualitaet-content {
    max-width: 900px;
    margin: 3rem auto 0;
}

.qualitaet-text h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.qualitaet-text h3:first-child {
    margin-top: 0;
}

.qualitaet-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.qualitaet-text strong {
    color: var(--text-dark);
}

/* ============================================
   Social Proof / Testimonials
   ============================================ */
.social-proof {
    padding: 80px 0;
    background: var(--bg-light);
}

.testimonials-carousel-wrapper {
    margin-top: 3rem;
    overflow: hidden;
    position: relative;
    width: 100%;
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.testimonials-carousel {
    display: flex;
    gap: 2rem;
    animation: scroll 71.7s linear infinite;
    width: fit-content;
}

.testimonials-carousel:hover {
    animation-play-state: paused;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    min-width: 350px;
    max-width: 350px;
    flex-shrink: 0;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-350px * 8 - 2rem * 8));
    }
}

/* Responsive Anpassungen für das Carousel */
@media (max-width: 768px) {
    .testimonial-card {
        min-width: 280px;
        max-width: 280px;
        padding: 2rem;
    }
    
    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-280px * 8 - 2rem * 8));
        }
    }
}

.testimonial-stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Branchen-Karten */
.branchen-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.branchen-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1;
}

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

.branchen-description {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

.logos-section {
    margin-top: 4rem;
    text-align: center;
}

.logos-section h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

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

.logo-placeholder {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    color: var(--text-light);
    font-weight: 500;
}

.logos-note {
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: italic;
}

/* ============================================
   Preise / Pakete
   ============================================ */
.preise {
    padding: 80px 0;
    background: var(--bg-white);
}

/* Billing Toggle / Abomodell */
.billing-toggle-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 2rem 0 3rem;
    position: relative;
    overflow: visible;
}

.billing-toggle-hint {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.billing-toggle {
    display: flex;
    background: var(--bg-light);
    border-radius: 50px;
    padding: 0.5rem;
    gap: 0.5rem;
    box-shadow: var(--shadow);
    position: relative;
    overflow: visible;
}

.billing-option-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.billing-option {
    padding: 0.75rem 1.5rem;
    border: none;
    background: transparent;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-light);
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
    z-index: 1;
    pointer-events: auto;
    -webkit-tap-highlight-color: transparent;
}

.billing-option:hover {
    color: var(--primary-color);
}

.billing-option.active {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 2px 8px rgba(26, 54, 93, 0.3);
}

.discount-badge-large {
    background: linear-gradient(135deg, #10b981 0%, #00d98b 100%);
    color: white;
    padding: 0.25rem 0.625rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.4);
    animation: pulse 2s infinite;
    white-space: nowrap;
    flex-shrink: 0;
    line-height: 1;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes subtlePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 3px 10px rgba(4, 120, 87, 0.5), 0 0 0 1px rgba(4, 120, 87, 0.2);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 4px 14px rgba(4, 120, 87, 0.6), 0 0 0 2px rgba(4, 120, 87, 0.3);
    }
}

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

.billing-option.active .discount-badge-large {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
}

.discount-badge-inline {
    background: linear-gradient(135deg, #10b981 0%, #00d98b 100%);
    color: white;
    padding: 0.25rem 0.625rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.4);
    white-space: nowrap;
    flex-shrink: 0;
    line-height: 1;
    margin-left: 0.5rem;
}

.billing-option.active .discount-badge-inline {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    color: white;
}

/* Animation for discount options when 1 month is selected */
.billing-option.animate-discount {
    position: relative;
    overflow: hidden;
    animation: subtleBounce 3s ease-in-out infinite;
}

.billing-option.animate-discount::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.15), transparent);
    animation: shine 3s infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

.billing-option.animate-discount .discount-badge-large {
    animation: discountPulse 2s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

.discount-hint {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--success-color), #00d98b);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 18px;
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 5px 20px rgba(16, 185, 129, 0.7);
    animation: fadeInDown 0.5s ease-out;
    z-index: 1000;
    pointer-events: none;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.discount-hint::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid var(--success-color);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes subtleBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

@keyframes discountPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(16, 185, 129, 0.5);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 6px 25px rgba(16, 185, 129, 0.7);
    }
}

.billing-option.animate-discount .discount-badge-large {
    animation: discountPulse 2s ease-in-out infinite;
}

.billing-option.animate-discount {
    animation: subtleBounce 3s ease-in-out infinite;
}

@keyframes subtleBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-2px);
    }
}

@keyframes discountPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(16, 185, 129, 0.5);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 0 6px 20px rgba(16, 185, 129, 0.7);
    }
}

.paket-preis-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.paket-discount-badge {
    background: linear-gradient(135deg, var(--success-color), #00d98b);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    font-size: 1.3rem;
    font-weight: 800;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.5);
    animation: pulse 2s infinite;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.paket-card:hover .paket-discount-badge {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(16, 185, 129, 0.6);
}

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

.paket-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 2px solid var(--border-color);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.paket-card.paket-featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.paket-badge {
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
}

.paket-badge-testing {
    background: var(--success-color);
}

.paket-discount-badge-top {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, var(--success-color), #00d98b);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 800;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.5);
    animation: pulse 2s infinite;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 3;
}

.paket-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.paket-preis {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.paket-preis-small {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.paket-notice {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-style: italic;
}

.preise-b2b-hinweis {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 1rem;
    margin-bottom: 0;
}

.checkbox-hint {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.5rem;
    font-style: italic;
}

.paket-beschreibung {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.paket-best-for {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 0.75rem;
    background: var(--bg-light);
    border-radius: 6px;
    font-size: 0.85rem;
}

.paket-best-for-label {
    color: var(--text-dark);
    font-weight: 600;
    margin-right: 0.25rem;
}

.paket-best-for-item {
    color: var(--text-light);
    padding: 0.25rem 0.5rem;
    background: var(--bg-white);
    border-radius: 4px;
    border: 1px solid var(--border-color);
    font-size: 0.8rem;
}

.paket-features {
    list-style: none;
    margin-bottom: 2rem;
}

.paket-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.paket-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.paket-card .btn {
    width: 100%;
}

.recommended-start-box {
    max-width: 800px;
    margin: 3rem auto 0;
    background: var(--bg-light);
    padding: 1.5rem 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--success-color);
}

.recommended-start-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.recommended-start-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recommended-start-list li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
    position: relative;
}

.recommended-start-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 600;
}

.zahlungsmethoden {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.zahlungsmethoden-title {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.zahlungsmethoden-hinweis {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: 1rem;
    text-align: center;
}

.zahlungsmethoden-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.zahlungs-icon {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--bg-light);
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
}

.preise-hinweis {
    text-align: center;
    color: var(--text-light);
    margin-top: 2rem;
    font-style: italic;
    font-size: 0.95rem;
}

.preise-abo-hinweis {
    text-align: center;
    color: var(--text-light);
    margin-top: 1rem;
    font-style: italic;
    font-size: 0.95rem;
}

.preise-abo-hinweis a {
    color: var(--text-light);
    text-decoration: underline;
    font-style: italic;
    transition: opacity 0.3s ease;
}

.preise-abo-hinweis a:hover {
    opacity: 0.8;
}

/* ============================================
   FAQ
   ============================================ */
.faq,
.faq-section {
    padding: 100px 0 80px 0;
    background: var(--bg-light);
}

.faq-list {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: var(--bg-white);
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-question[aria-expanded="true"] + .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* ============================================
   Kontakt
   ============================================ */
.kontakt {
    padding: 80px 0;
    background: var(--bg-white);
}

.kontakt-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.kontakt-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.kontakt-result {
    margin-top: 1.5rem;
    padding: 1.5rem;
    border-radius: 6px;
    font-weight: 500;
}

.kontakt-result.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.kontakt-result.info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

.kontakt-result.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.kontakt-info {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 12px;
    height: fit-content;
}

.kontakt-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.kontakt-info p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.kontakt-details p {
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.kontakt-details strong {
    color: var(--text-dark);
}

/* ============================================
   UI System - Utility Classes
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}

.section {
    padding: 80px 0;
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
}

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

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 70ch;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
}

.card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .card {
        padding: 1.5rem;
    }
}

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

@media (max-width: 768px) {
    .card-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.badge {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    background: var(--bg-light);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.chip {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    background: var(--bg-light);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
    transition: background 0.2s ease, border-color 0.2s ease;
}

.chip:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.muted {
    color: var(--text-light);
    font-size: 0.9rem;
}

.text-content {
    max-width: 70ch;
    margin: 0 auto;
    line-height: 1.7;
}

.text-content ul,
.text-content ol {
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.text-content li {
    margin: 0.5rem 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .card-grid[style*="grid-template-columns: repeat(2"] {
        grid-template-columns: 1fr !important;
    }
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1.5rem;
}

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

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   Modal: Leads verfügbar
   ============================================ */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: var(--bg-white);
    border-radius: 16px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 1;
}

.modal-close:hover {
    background: var(--bg-light);
    color: var(--text-dark);
}

.modal-header {
    text-align: center;
    padding: 3rem 2rem 2rem;
    border-bottom: 1px solid var(--border-color);
}

.modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--success-color), #00d98b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(0, 168, 107, 0.3);
}

.modal-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.modal-subtitle {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

.modal-body {
    padding: 2rem;
}

.modal-info-box {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary-color);
}

.modal-info-box p {
    margin: 0 0 0.75rem 0;
    font-weight: 600;
    color: var(--text-dark);
}

.modal-info-box ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.modal-info-box li {
    padding: 0.5rem 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
}

.modal-info-box li::before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 0.75rem;
    font-size: 1.2rem;
}

.modal-form-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

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

.modal-form .form-group input,
.modal-form .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: border-color 0.3s ease;
}

.modal-form .form-group input:focus,
.modal-form .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.modal-form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.modal-form-actions .btn {
    flex: 1;
}

.modal-form-result {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
}

.modal-form-result.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.modal-form-result.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ============================================
   Fast Path Mode
   ============================================ */
.fast-hidden {
    display: none !important;
}

.hero-fast-hint {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
    text-align: center;
    padding: 0.75rem 1rem;
    background: var(--bg-light);
    border-radius: 6px;
    border-left: 3px solid var(--primary-color);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow);
    }
    
    .nav.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-headline {
        font-size: 2.25rem;
        line-height: 1.3;
    }
    
    .hero-subline {
        font-size: 1.1rem;
        line-height: 1.5;
    }
    
    .hero-microcopy {
        font-size: 0.85rem;
        margin-top: 1.25rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .usage-guide-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .best-practice-box {
        padding: 1.5rem;
    }
    
    .configurator-box {
        padding: 2rem 1.5rem;
    }
    
    .availability-info-box {
        padding: 0.875rem 1rem;
        gap: 0.75rem;
    }
    
    .availability-text {
        font-size: 0.85rem;
    }
    
    .availability-tip {
        font-size: 0.8rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .what-not-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .what-not-column {
        padding: 2rem 1.5rem;
    }
    
    .vorteile-grid,
    .lead-typen-grid,
    .testimonials-grid,
    .pakete-grid {
        grid-template-columns: 1fr;
    }
    
    .billing-toggle {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .billing-option {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    .lead-typ-card {
        padding: 2rem 1.5rem;
    }
    
    .lead-typ-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .lead-typ-icon {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }
    
    .lead-typ-item {
        padding: 1rem;
    }
    
    .lead-typ-item-content h4 {
        font-size: 1rem;
    }
    
    .lead-typ-item-content p {
        font-size: 0.9rem;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-step {
        flex-direction: row !important;
        padding-left: 60px;
    }
    
    .step-content {
        padding-left: 2rem;
        max-width: 100%;
    }
    
    .kontakt-wrapper {
        grid-template-columns: 1fr;
    }
    
    .paket-card.paket-featured {
        transform: scale(1);
    }
    
    .trust-bar {
        flex-direction: column;
        gap: 1rem;
    }
    
    .trust-chips {
        gap: 0.5rem;
    }
    
    .trust-chip {
        font-size: 0.8rem;
        padding: 0.35rem 0.75rem;
    }
    
    .trust-why-uae-title {
        font-size: 0.8rem;
    }
    
    .zahlungsmethoden-icons {
        gap: 1rem;
    }
    
    .billing-toggle-hint {
        font-size: 0.85rem;
        padding: 0 1rem;
    }
    
    .recommended-start-box {
        padding: 1.25rem 1.5rem;
        margin-top: 2rem;
    }
    
    .recommended-start-title {
        font-size: 1rem;
    }
    
    .recommended-start-list li {
        font-size: 0.9rem;
    }
    
    .paket-best-for {
        padding: 0.6rem;
        gap: 0.4rem;
        font-size: 0.8rem;
    }
    
    .paket-best-for-item {
        font-size: 0.75rem;
        padding: 0.2rem 0.4rem;
    }
}



/* ============================================
   Beispiel-Leads
   ============================================ */
.beispiel-leads {
    padding: 80px 0;
    background: var(--bg-white);
}

.beispiel-box {
    max-width: 1000px;
    margin: 3rem auto 0;
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.beispiel-table-wrapper {
    overflow-x: auto;
    margin-bottom: 2rem;
}

.beispiel-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
}

.beispiel-table thead {
    background: var(--primary-color);
    color: white;
}

.beispiel-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.beispiel-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-dark);
    font-size: 0.95rem;
}

.beispiel-table tbody tr:hover {
    background: var(--bg-light);
}

.beispiel-table tbody tr:last-child td {
    border-bottom: none;
}

.beispiel-hinweis {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    padding: 1rem;
    background: var(--bg-white);
    border-radius: 8px;
}

.beispiel-cta {
    text-align: center;
}

@media (max-width: 768px) {
    .beispiel-box {
        padding: 2rem 1.5rem;
    }
    
    .beispiel-table {
        font-size: 0.85rem;
    }
    
    .beispiel-table th,
    .beispiel-table td {
        padding: 0.75rem 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 1.75rem;
    }
    
    .configurator-box {
        padding: 1.5rem 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .modal-content {
        margin: 10px;
        max-height: 95vh;
    }
    
    .modal-header {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .modal-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .modal-form-actions {
        flex-direction: column;
    }
}


/* ============================================
   Learn More Slider
   ============================================ */
.learn-more-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.learn-more-slider {
    max-width: 1000px;
    margin: 0 auto;
}

.slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: var(--bg-white);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    min-height: 803px;
    height: 803px;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}

.slide {
    min-width: 100%;
    width: 100%;
    display: none;
    padding: 2.5rem;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    min-height: 803px;
    height: 803px;
    box-sizing: border-box;
    overflow-y: auto;
    overflow-x: hidden;
}

.slide.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.slide-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    margin-top: 0;
    text-align: center;
    flex-shrink: 0;
}

.slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    position: relative;
    z-index: 100;
    pointer-events: auto;
}

.slider-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background: var(--bg-white);
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    position: relative;
    z-index: 101;
    pointer-events: auto;
    -webkit-tap-highlight-color: transparent;
}

.slider-btn:hover {
    background: var(--primary-color);
    color: var(--bg-white);
    transform: scale(1.1);
}

.slider-btn:active {
    transform: scale(0.95);
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-dot.active {
    background: var(--primary-color);
    width: 24px;
    border-radius: 6px;
}

.slider-dot:hover {
    background: var(--primary-dark);
}

/* Slide content styles */
.slide-content {
    max-width: 900px;
    margin: 0 auto;
    min-height: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-bottom: 1rem;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    margin-top: 1.5rem;
}

.use-case-item {
    padding: 1.25rem;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.use-case-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.75rem;
}

.use-case-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.use-case-item p {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.industry-item {
    padding: 1.25rem 1rem;
    background: var(--bg-light);
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.9375rem;
}

.what-not-notice {
    text-align: center;
    margin: 2rem 0 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 12px;
    border-left: 4px solid #f59e0b;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.what-not-notice p {
    font-size: 1rem;
    color: #92400e;
    font-weight: 600;
    margin: 0;
    line-height: 1.6;
}

/* Slide CTA Buttons */
.slide-cta-buttons {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.slide-cta-buttons .btn {
    min-width: 160px;
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
}

/* Mobile styles */
@media (max-width: 768px) {
    .slide {
        padding: 1.5rem;
        min-height: 625px;
        height: 625px;
    }
    
    .slider-container {
        min-height: 625px;
        height: 625px;
    }
    
    .slide-content h3 {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .use-cases-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .slide-cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .slide-cta-buttons .btn {
        width: 100%;
    }
}

/* ============================================
   Learn More Accordion (Premium SaaS Style)
   ============================================ */
.accordion {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.accordion-item.active {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: var(--bg-white);
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: background-color 0.2s ease;
    position: relative;
}

.accordion-header:hover {
    background-color: var(--bg-light);
}

.accordion-header:focus {
    outline: none;
    box-shadow: inset 0 0 0 2px var(--primary-color);
}

.accordion-header:focus:not(:focus-visible) {
    box-shadow: none;
}

.accordion-header:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: -2px;
}

.accordion-header .accordion-title {
    flex: 1;
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-dark);
}

.accordion-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-left: 1rem;
    color: var(--primary-color);
    transition: transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accordion-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

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

.accordion-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 1.5rem;
    transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 5000px;
    opacity: 1;
    padding-top: 1rem;
    padding-bottom: 1.5rem;
}

/* Content Typography */
.accordion-content .text-content {
    max-width: 65ch;
    line-height: 1.6;
}

.accordion-content ul,
.accordion-content ol {
    max-width: 65ch;
    line-height: 1.7;
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.accordion-content li {
    margin-bottom: 0.75rem;
}

.accordion-content p {
    max-width: 65ch;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.accordion-content h2,
.accordion-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.accordion-content h2:first-child,
.accordion-content h3:first-child {
    margin-top: 0;
}

/* Accordion Mobile Styles */
@media (max-width: 768px) {
    .accordion {
        gap: 0.875rem;
    }
    
    .accordion-item {
        border-radius: 10px;
    }
    
    .accordion-header {
        padding: 1rem 1.25rem;
        font-size: 1rem;
    }
    
    .accordion-header .accordion-title {
        font-size: 1rem;
    }
    
    .accordion-icon {
        width: 20px;
        height: 20px;
        margin-left: 0.75rem;
    }
    
    .accordion-content {
        padding: 0 1.25rem;
    }
    
    .accordion-item.active .accordion-content {
        padding-top: 0.875rem;
        padding-bottom: 1.25rem;
    }
    
    .accordion-content .text-content,
    .accordion-content p,
    .accordion-content ul,
    .accordion-content ol {
        max-width: 100%;
    }
}

/* Accordion Mobile Styles */
@media (max-width: 768px) {
    .accordion {
        gap: 0.875rem;
    }
    
    .accordion-item {
        border-radius: 10px;
    }
    
    .accordion-header {
        padding: 1rem 1.25rem;
        font-size: 1rem;
    }
    
    .accordion-header .accordion-title {
        font-size: 1rem;
    }
    
    .accordion-icon {
        width: 20px;
        height: 20px;
        margin-left: 0.75rem;
    }
    
    .accordion-content {
        padding: 0 1.25rem;
    }
    
    .accordion-item.active .accordion-content {
        padding-top: 0.875rem;
        padding-bottom: 1.25rem;
    }
    
    .accordion-content .text-content,
    .accordion-content p,
    .accordion-content ul,
    .accordion-content ol {
        max-width: 100%;
    }
}

/* ============================================
   Sticky Bottom CTA (Mobile Only)
   ============================================ */
.sticky-bottom-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    padding: 1rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 999;
    display: none;
}

.sticky-bottom-cta .btn {
    width: 100%;
    max-width: none;
    font-size: 1.1rem;
    padding: 1rem;
}

@media (max-width: 768px) {
    .sticky-bottom-cta {
        display: block;
    }
    
    /* Add padding to body to prevent content from being hidden behind sticky CTA */
    body {
        padding-bottom: 80px;
    }
}

/* ============================================
   Mobile Sticky CTA Bar
   ============================================ */
.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    padding-bottom: calc(1rem + env(safe-area-inset-bottom));
    z-index: 999;
    display: none;
    gap: 0.75rem;
}

.mobile-sticky-cta.is-hidden {
    display: none !important;
}

.mobile-sticky-cta .btn {
    flex: 1;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.mobile-cta-primary {
    background: var(--primary-color);
    color: white;
    border: none;
}

.mobile-cta-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(26, 54, 93, 0.3);
}

.mobile-cta-secondary {
    background: var(--bg-white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.mobile-cta-secondary:hover {
    background: var(--bg-light);
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: flex;
    }
    
    /* Add padding to body to prevent content from being hidden behind sticky CTA */
    body {
        padding-bottom: calc(90px + env(safe-area-inset-bottom));
    }
    
    /* Ensure footer has proper spacing */
    .footer {
        margin-bottom: calc(90px + env(safe-area-inset-bottom));
    }
}


/* ============================================
   Lead Finder 3-Step Mini Flow
   ============================================ */
.lead-finder-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.lead-finder-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    max-width: 150px;
}

.lead-finder-step .step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.lead-finder-step .step-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
}

.lead-finder-arrow {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

@media (max-width: 768px) {
    .lead-finder-steps {
        flex-direction: column;
        gap: 1rem;
    }
    
    .lead-finder-arrow {
        transform: rotate(90deg);
    }
    
    .lead-finder-step {
        max-width: none;
        width: 100%;
    }
}


/* ============================================
   Pricing Trust Badges
   ============================================ */
.pricing-trust-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.pricing-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
}

.pricing-trust-badge .trust-badge-icon {
    font-size: 1rem;
}

@media (max-width: 768px) {
    .pricing-trust-badges {
        gap: 1rem;
    }
    
    .pricing-trust-badge {
        font-size: 0.85rem;
        padding: 0.5rem 0.8rem;
    }
    
    /* Usage Guide Responsive */
    .usage-guide .card-grid[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .usage-guide .section-title {
        font-size: 2rem !important;
        margin-bottom: 2rem !important;
    }
    
    .usage-guide .card {
        padding: 1.5rem !important;
    }
}

/* Usage Guide Hover Effects */
.usage-guide .card:first-child:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12) !important;
}

.usage-guide .card:last-child:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 72px rgba(30, 64, 175, 0.5) !important;
}

/* Hero Trust Section Responsive */
@media (max-width: 768px) {
    .trust-bar {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        max-width: 100% !important;
    }
    
    .trust-item {
        justify-content: center;
    }
    
    .trust-why-uae {
        padding: 2rem 1.5rem !important;
        margin-top: 2.5rem !important;
    }
    
    .trust-chips {
        grid-template-columns: 1fr !important;
        gap: 0.875rem !important;
    }
    
    .trust-chip {
        grid-column: 1 !important;
        max-width: 100% !important;
    }
}

/* ============================================
   Rating Stars - Professional Design
   ============================================ */
.rating-stars {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    font-size: 0;
    line-height: 1;
    vertical-align: middle;
}

.rating-star {
    display: inline-block;
    width: 1.125rem;
    height: 1.125rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z' fill='%23fbbf24' stroke='%23f59e0b' stroke-width='0.5'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
    filter: drop-shadow(0 1px 1px rgba(251, 191, 36, 0.3));
    transition: transform 0.2s ease;
}

.rating-star:hover {
    transform: scale(1.1);
}

.rating-star.empty {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z' fill='none' stroke='%23e2e8f0' stroke-width='1.5'/%3E%3C/svg%3E");
    filter: none;
}

.rating-display {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: #1e293b;
    font-weight: 500;
}

.rating-display .rating-stars {
    gap: 0.2rem;
}

.rating-display .rating-star {
    width: 1rem;
    height: 1rem;
}

/* Rating in select options - inline display */
select option .rating-stars {
    display: inline-flex;
    vertical-align: middle;
}
