/*
Theme Name: Hello Child - HeyGen Website
Description: Child Theme für HeyGen Affiliate Website von Ingo Weltz - Optimiert für Performance und SEO
Author: Ingo Weltz - Zoom Internetagentur  
Template: hello-elementor
Version: 1.0.0
Text Domain: hello-child-heygen
*/

/* Performance-optimierte CSS für HeyGen Website */

/* CSS Custom Properties für bessere Browser-Performance */
:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary-color: #f59e0b;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --text-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-light: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    --gradient-secondary: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

/* Base Styles - Optimiert für Performance */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    font-display: swap; /* Bessere Font-Loading-Performance */
}

/* Container & Layout System */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-lg {
    padding: 120px 0;
}

/* Typography Hierarchy */
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
.h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
.h3 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
.h4 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }

.text-lg { font-size: 1.25rem; }
.text-xl { font-size: 1.5rem; }
.text-2xl { font-size: 2rem; }

/* Color System */
.text-primary { color: var(--primary-color); }
.text-secondary { color: var(--secondary-color); }
.text-success { color: var(--success-color); }
.text-white { color: var(--text-white); }
.text-light { color: var(--text-light); }

.bg-primary { background-color: var(--primary-color); }
.bg-secondary { background-color: var(--secondary-color); }
.bg-light { background-color: var(--bg-light); }
.bg-white { background-color: var(--bg-white); }
.bg-gradient-primary { background: var(--gradient-primary); }
.bg-gradient-secondary { background: var(--gradient-secondary); }

/* Button System - Performance optimiert */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1.5;
    gap: 8px;
    will-change: transform; /* GPU-Beschleunigung */
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    text-decoration: none;
    color: var(--text-white);
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: var(--text-white);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    text-decoration: none;
    color: var(--text-white);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-white);
    text-decoration: none;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-xl {
    padding: 20px 40px;
    font-size: 1.2rem;
}

/* Grid System - CSS Grid optimiert */
.grid {
    display: grid;
    gap: 30px;
}

.grid-2 { 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
}
.grid-3 { 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
}
.grid-4 { 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
}

/* Card System */
.card {
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
}

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

/* Hero Section */
.hero-section {
    background: var(--gradient-primary);
    color: var(--text-white);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="%23ffffff" fill-opacity="0.1" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 400;
    margin-bottom: 32px;
    opacity: 0.9;
}

/* Statistics Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    display: block;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 8px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.feature-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid var(--primary-color);
    will-change: transform;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-white);
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.testimonial-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow-md);
}

.testimonial-quote {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
    color: var(--text-dark);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-weight: 600;
}

/* CTA Boxes */
.cta-box {
    background: var(--gradient-primary);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    color: var(--text-white);
    margin: 60px 0;
    position: relative;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-description {
    font-size: 1.1rem;
    margin-bottom: 32px;
    opacity: 0.9;
}

/* Pricing Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.pricing-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: var(--shadow-lg);
    position: relative;
    border: 3px solid transparent;
    transition: transform 0.3s ease;
}

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

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-secondary);
    color: var(--text-white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-features li::before {
    content: '✓';
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* FAQ */
.faq-item {
    background: var(--bg-white);
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    padding: 24px;
    background: var(--bg-light);
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.faq-question:hover {
    background: var(--primary-color);
    color: var(--text-white);
}

.faq-answer {
    padding: 0 24px 24px;
    line-height: 1.7;
    color: var(--text-light);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

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

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    animation: float 3s ease-in-out infinite;
}

.floating-btn {
    background: var(--gradient-secondary);
    color: var(--text-white);
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
}

.floating-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    text-decoration: none;
    color: var(--text-white);
}

/* Utility Classes */
.flex { display: flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }
.flex-wrap { flex-wrap: wrap; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.w-full { width: 100%; }
.inline-block { display: inline-block; }

.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }

.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }

.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }

.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-12 { padding-left: 3rem; padding-right: 3rem; }

.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }

.rounded { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }

.shadow { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }

.opacity-90 { opacity: 0.9; }
.backdrop-blur { backdrop-filter: blur(10px); }

.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }

.leading-relaxed { line-height: 1.625; }

.max-w-2xl { max-width: 42rem; margin: 0 auto; }
.max-w-3xl { max-width: 48rem; margin: 0 auto; }
.max-w-4xl { max-width: 56rem; margin: 0 auto; }

/* Color Extensions */
.border-left-red { border-left: 4px solid #ef4444; }
.border-left-orange { border-left: 4px solid #f97316; }
.border-left-blue { border-left: 4px solid #3b82f6; }
.border-left-purple { border-left: 4px solid #8b5cf6; }
.border-left-green { border-left: 4px solid #10b981; }
.border-left-yellow { border-left: 4px solid #f59e0b; }
.border-primary { border-left: 4px solid var(--primary-color); }
.border-success { border-left: 4px solid var(--success-color); }
.border-secondary { border-left: 4px solid var(--secondary-color); }

.bg-red-50 { background-color: #fef2f2; }
.bg-red-100 { background-color: #fee2e2; }
.bg-red-200 { background-color: #fecaca; }
.bg-red-500 { background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%); }
.bg-orange-50 { background-color: #fff7ed; }
.bg-orange-500 { background: linear-gradient(135deg, #f97316 0%, #ea580c 100%); }
.bg-yellow-50 { background-color: #fefce8; }
.bg-yellow-500 { background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%); }
.bg-yellow-900 { background-color: #78350f; }
.bg-green-50 { background-color: #f0fdf4; }
.bg-green-100 { background-color: #dcfce7; }
.bg-green-200 { background-color: #bbf7d0; }
.bg-green-500 { background: linear-gradient(135deg, #10b981 0%, #059669 100%); }
.bg-blue-50 { background-color: #eff6ff; }
.bg-blue-500 { background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%); }
.bg-purple-50 { background-color: #faf5ff; }
.bg-purple-500 { background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%); }
.bg-gray-50 { background-color: #f9fafb; }
.bg-gray-100 { background-color: #f3f4f6; }
.bg-gray-400 { background-color: #9ca3af; }
.bg-gray-800 { background-color: #1f2937; }
.bg-gray-900 { background-color: #111827; }

.text-red-600 { color: #dc2626; }
.text-red-700 { color: #b91c1c; }
.text-orange-600 { color: #ea580c; }
.text-orange-700 { color: #c2410c; }
.text-yellow-400 { color: #facc15; }
.text-yellow-600 { color: #ca8a04; }
.text-yellow-700 { color: #a16207; }
.text-green-600 { color: #16a34a; }
.text-green-700 { color: #15803d; }
.text-blue-600 { color: #2563eb; }
.text-blue-700 { color: #1d4ed8; }
.text-purple-600 { color: #9333ea; }
.text-purple-700 { color: #7c3aed; }
.text-gray-400 { color: #9ca3af; }
.text-gray-500 { color: #6b7280; }
.text-gray-600 { color: #4b5563; }
.text-gray-700 { color: #374151; }
.text-gray-900 { color: #111827; }
.text-red-100 { color: #fee2e2; }

.border { border: 1px solid var(--border-light); }
.border-2 { border: 2px solid; }
.border-red-200 { border-color: #fecaca; }
.border-red-300 { border-color: #fca5a5; }
.border-green-200 { border-color: #bbf7d0; }
.border-yellow-700 { border-color: #a16207; }
.border-gray-800 { border-color: #1f2937; }

.aspect-video { aspect-ratio: 16 / 9; }

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

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

.animate-fade-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ===== UMFASSENDES CSS FÜR ALLE SEKTIONEN 4-7 ===== */
/* SEKTION 4: SOCIAL PROOF STYLES */
.ingo-social-proof-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 80px 0;
    position: relative;
}

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

.ingo-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.ingo-section-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 25px 0;
    color: #1f2937;
}

.ingo-accent {
    color: #2563eb;
}

.ingo-lead-text {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.ingo-stats-section {
    margin-bottom: 60px;
}

.ingo-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.ingo-stat-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border: 1px solid rgba(226, 232, 240, 0.5);
    transition: all 0.3s ease;
}

.ingo-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.ingo-stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: white;
}

.ingo-stat-icon.ingo-green { background: #10b981; }
.ingo-stat-icon.ingo-blue { background: #3b82f6; }
.ingo-stat-icon.ingo-yellow { background: #f59e0b; }
.ingo-stat-icon.ingo-purple { background: #8b5cf6; }

.ingo-stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.ingo-stat-label {
    color: #6b7280;
    font-size: 16px;
}

.ingo-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.ingo-testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border: 1px solid rgba(226, 232, 240, 0.5);
    transition: all 0.3s ease;
}

.ingo-testimonial-card:hover {
    transform: translateY(-4px);
    border-color: #2563eb;
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.15);
}

.ingo-testimonial-header {
    margin-bottom: 20px;
}

.ingo-stars {
    color: #fbbf24;
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.ingo-testimonial-title {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.ingo-testimonial-text {
    font-style: italic;
    line-height: 1.6;
    color: #6b7280;
    margin: 0 0 25px 0;
    position: relative;
    font-size: 16px;
}

.ingo-testimonial-text::before {
    content: '"';
    font-size: 48px;
    color: #2563eb;
    opacity: 0.3;
    position: absolute;
    top: -15px;
    left: -15px;
    font-family: serif;
    line-height: 1;
}

.ingo-testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(226, 232, 240, 0.5);
}

.ingo-author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    flex-shrink: 0;
}

.ingo-author-avatar.ingo-blue-bg { background: #3b82f6; }
.ingo-author-avatar.ingo-green-bg { background: #10b981; }
.ingo-author-avatar.ingo-purple-bg { background: #8b5cf6; }

.ingo-author-name {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
}

.ingo-author-role {
    font-size: 14px;
    color: #6b7280;
}

.ingo-trust-section {
    margin-bottom: 60px;
}

.ingo-trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.ingo-trust-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    border-radius: 12px;
    padding: 20px 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border: 1px solid rgba(226, 232, 240, 0.5);
    transition: all 0.3s ease;
}

.ingo-trust-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.ingo-badge-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
}

.ingo-badge-icon.ingo-green { background: #10b981; }
.ingo-badge-icon.ingo-blue { background: #3b82f6; }
.ingo-badge-icon.ingo-purple { background: #8b5cf6; }

.ingo-badge-title {
    font-weight: 600;
    color: #1f2937;
    font-size: 14px;
    margin-bottom: 4px;
}

.ingo-badge-subtitle {
    font-size: 12px;
    color: #6b7280;
}

.ingo-social-proof-cta {
    text-align: center;
}

.ingo-cta-title {
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 20px 0;
}

.ingo-cta-text {
    font-size: 18px;
    color: #6b7280;
    margin: 0 0 30px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* SEKTION 5: ABOUT STYLES */
.ingo-about-section {
    background: white;
    padding: 80px 0;
}

.ingo-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ingo-section-eyebrow {
    color: #2563eb;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ingo-subtitle {
    color: #6b7280;
    font-weight: 400;
}

.ingo-about-story {
    margin-bottom: 40px;
}

.ingo-story-block {
    padding: 25px 0 25px 25px;
    border-left: 3px solid #2563eb;
    margin: 0 0 30px 15px;
    position: relative;
}

.ingo-story-block::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 30px;
    width: 14px;
    height: 14px;
    background: #2563eb;
    border-radius: 50%;
}

.ingo-story-title {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ingo-primary { color: #2563eb; }
.ingo-yellow { color: #f59e0b; }
.ingo-green { color: #10b981; }

.ingo-story-text {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.ingo-promise-box {
    background: linear-gradient(135deg, #2563eb 0%, #f59e0b 100%);
    color: white;
    border-radius: 12px;
    padding: 30px;
}

.ingo-promise-title {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ingo-promise-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ingo-promise-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.ingo-promise-list li:last-child {
    margin-bottom: 0;
}

.ingo-profile-section {
    text-align: center;
    margin-bottom: 40px;
}

.ingo-profile-image-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.ingo-profile-image {
    background: linear-gradient(135deg, #2563eb 0%, #f59e0b 100%);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 80px;
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.3);
}

.ingo-profile-badge {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background: #10b981;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    animation: ingopulse 2s infinite;
}

.ingo-profile-name {
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 10px 0;
}

.ingo-profile-title {
    color: #2563eb;
    font-weight: 600;
    margin: 0 0 25px 0;
}

.ingo-profile-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.ingo-stat {
    text-align: center;
}

.ingo-stat .ingo-stat-number {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
}

.ingo-stat .ingo-stat-number:nth-child(1) { color: #10b981; }
.ingo-stat .ingo-stat-number:nth-child(2) { color: #3b82f6; }
.ingo-stat .ingo-stat-number:nth-child(3) { color: #8b5cf6; }

.ingo-testing-setup {
    background: #f8fafc;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 40px;
}

.ingo-setup-title {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 25px 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.ingo-setup-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.ingo-setup-item {
    background: white;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: 1px solid rgba(226, 232, 240, 0.5);
    transition: all 0.3s ease;
}

.ingo-setup-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.ingo-setup-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 20px;
    color: white;
}

.ingo-setup-icon.ingo-blue { background: #3b82f6; }
.ingo-setup-icon.ingo-green { background: #10b981; }
.ingo-setup-icon.ingo-yellow { background: #f59e0b; }
.ingo-setup-icon.ingo-purple { background: #8b5cf6; }

.ingo-setup-item .ingo-setup-title {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 5px 0;
}

.ingo-setup-desc {
    font-size: 12px;
    color: #6b7280;
}

.ingo-contact-info {
    text-align: center;
}

.ingo-contact-title {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 20px 0;
}

.ingo-contact-methods {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.ingo-contact-method {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ingo-contact-method.ingo-blue { background: #dbeafe; color: #1d4ed8; }
.ingo-contact-method.ingo-green { background: #dcfce7; color: #166534; }
.ingo-contact-method.ingo-purple { background: #ede9fe; color: #7c3aed; }

.ingo-contact-method:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    text-decoration: none;
}

.ingo-contact-note {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

/* SEKTION 6: TOOLS STYLES */
.tools-section-ingo {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 80px 0;
}

.ingo-tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.ingo-tool-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    overflow: hidden;
}

.ingo-tool-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.ingo-tool-card.ingo-premium:hover { border-color: #fbbf24; }
.ingo-tool-card.ingo-mid:hover { border-color: #3b82f6; }
.ingo-tool-card.ingo-budget:hover { border-color: #10b981; }

.ingo-card-header {
    position: relative;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ingo-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 999px;
    color: white;
    display: flex;
    align-items: center;
    gap: 5px;
}

.ingo-badge.ingo-yellow-badge { background: #f59e0b; }
.ingo-badge.ingo-blue-badge { background: #3b82f6; }
.ingo-badge.ingo-green-badge { background: #10b981; }

.ingo-tool-logo {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ingo-tool-logo.ingo-purple-gradient { background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%); }
.ingo-tool-logo.ingo-blue-gradient { background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%); }
.ingo-tool-logo.ingo-green-gradient { background: linear-gradient(135deg, #10b981 0%, #059669 100%); }

.ingo-logo-text {
    color: white;
    font-size: 28px;
    font-weight: 700;
}

.ingo-card-content {
    padding: 30px;
}

.ingo-tool-name {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 8px 0;
}

.ingo-tool-tagline {
    color: #6b7280;
    font-size: 16px;
    margin: 0 0 15px 0;
}

.ingo-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.ingo-rating-score {
    font-weight: 600;
    color: #1f2937;
}

.ingo-pricing {
    margin-bottom: 25px;
}

.ingo-price-current {
    margin-bottom: 8px;
}

.ingo-price-amount {
    font-size: 36px;
    font-weight: 700;
    color: #1f2937;
}

.ingo-price-period {
    color: #6b7280;
    font-size: 18px;
}

.ingo-price-note {
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.ingo-green-text { color: #10b981; }
.ingo-blue-text { color: #3b82f6; }

.ingo-features {
    margin-bottom: 30px;
}

.ingo-features-title {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 15px 0;
}

.ingo-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ingo-features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #4b5563;
}

.ingo-features-list li:last-child {
    margin-bottom: 0;
}

.ingo-features-list .ingo-green {
    color: #10b981;
}

.ingo-affiliate-note {
    font-size: 12px;
    color: #6b7280;
    text-align: center;
    margin: 10px 0 0 0;
    opacity: 0.8;
}

/* SEKTION 7: FAQ STYLES */
.ingo-faq-section {
    background: white;
    padding: 80px 0;
}

.ingo-faq-container {
    margin-bottom: 60px;
}

.ingo-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.ingo-faq-item {
    background: #f8fafc;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid rgba(226, 232, 240, 0.5);
    transition: all 0.3s ease;
}

.ingo-faq-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.ingo-faq-question {
    width: 100%;
    text-align: left;
    padding: 25px;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ingo-faq-question:hover {
    background: rgba(255,255,255,0.5);
}

.ingo-question-title {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.ingo-chevron {
    color: #9ca3af;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.ingo-faq-question.ingo-active .ingo-chevron {
    transform: rotate(180deg);
}

.ingo-faq-answer {
    padding: 0 25px 25px;
    border-top: 1px solid rgba(226, 232, 240, 0.5);
    animation: ingoSlideDown 0.3s ease-out;
}

.ingo-faq-answer.ingo-hidden {
    display: none;
}

.ingo-faq-answer p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.ingo-faq-list {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.ingo-faq-list li {
    color: #6b7280;
    margin-bottom: 8px;
    line-height: 1.6;
}

.ingo-tip-box,
.ingo-guarantee-box {
    background: #dbeafe;
    border-left: 4px solid #3b82f6;
    border-radius: 8px;
    padding: 15px;
    margin-top: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.ingo-guarantee-box {
    background: #dcfce7;
    border-left-color: #10b981;
}

.ingo-tip-box {
    color: #1e40af;
}

.ingo-guarantee-box {
    color: #166534;
}

.ingo-quality-levels {
    margin: 15px 0;
}

.ingo-quality-level {
    background: white;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 10px;
    border-left: 4px solid;
}

.ingo-quality-level.ingo-green-border { border-left-color: #10b981; }
.ingo-quality-level.ingo-yellow-border { border-left-color: #f59e0b; }
.ingo-quality-level.ingo-orange-border { border-left-color: #f97316; }

.ingo-info-note {
    font-size: 14px;
    color: #6b7280;
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ingo-mistakes {
    margin: 15px 0;
}

.ingo-mistake-item {
    background: #fef2f2;
    border-left: 4px solid #ef4444;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #dc2626;
}

.ingo-questions-cta {
    text-align: center;
}

.ingo-cta-box {
    background: linear-gradient(135deg, #2563eb 0%, #f59e0b 100%);
    color: white;
    border-radius: 16px;
    padding: 50px 40px;
    max-width: 800px;
    margin: 0 auto;
}

.ingo-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* BUTTON STYLES */
.ingo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 25px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.ingo-btn-primary {
    background: linear-gradient(135deg, #2563eb 0%, #f59e0b 100%);
    color: white;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
}

.ingo-btn-secondary {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
}

.ingo-btn-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.ingo-btn-white {
    background: white;
    color: #2563eb;
}

.ingo-btn-outline {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
}

.ingo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    text-decoration: none;
}

.ingo-btn-primary:hover { color: white; }
.ingo-btn-secondary:hover { color: white; }
.ingo-btn-success:hover { color: white; }
.ingo-btn-white:hover { color: #2563eb; }
.ingo-btn-outline:hover { color: white; }

.ingo-full-width {
    width: 100%;
}

/* NEWSLETTER CTA SECTION 8 STYLES */
.newsletter-cta-section-ingo {
    background: linear-gradient(135deg, #2563eb 0%, #f59e0b 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.newsletter-cta-section-ingo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="ingodots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23ingodots)"/></svg>');
    pointer-events: none;
}

.ingo-newsletter-cta {
    text-align: center;
    margin-bottom: 60px;
}

.ingo-cta-content {
    max-width: 900px;
    margin: 0 auto;
}

.ingo-cta-icon {
    margin-bottom: 30px;
}

.ingo-icon-wrapper {
    background: rgba(255, 255, 255, 0.2);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    backdrop-filter: blur(10px);
}

.ingo-icon-wrapper i {
    font-size: 32px;
    color: white;
}

.ingo-main-title {
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 30px 0;
    line-height: 1.2;
}

.ingo-highlight {
    color: #fbbf24;
}

.ingo-lead-text {
    font-size: 18px;
    margin: 0 0 50px 0;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.ingo-newsletter-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.ingo-benefit-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.ingo-benefit-item:hover {
    transform: translateY(-5px);
}

.ingo-benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
}

.ingo-benefit-icon.ingo-yellow {
    background: #fbbf24;
}

.ingo-benefit-icon.ingo-green {
    background: #10b981;
}

.ingo-benefit-icon.ingo-blue {
    background: #3b82f6;
}

.ingo-benefit-title {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 15px 0;
    color: white;
}

.ingo-benefit-text {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.5;
    margin: 0;
}

.ingo-newsletter-form {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    max-width: 600px;
    margin: 0 auto 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.ingo-form-header {
    text-align: center;
    margin-bottom: 30px;
}

.ingo-form-title {
    color: #2563eb;
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.ingo-form-title i {
    color: #2563eb;
    margin-right: 8px;
}

.ingo-form-subtitle {
    color: #6b7280;
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

.ingo-form-group {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.ingo-input-wrapper {
    flex: 1;
}

.ingo-form-input {
    width: 100%;
    padding: 15px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.ingo-form-input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.ingo-form-footer {
    text-align: center;
}

.ingo-privacy-text {
    font-size: 12px;
    color: #6b7280;
    margin: 0 0 15px 0;
}

.ingo-privacy-text i {
    color: #10b981;
    margin-right: 5px;
}

.ingo-trust-indicators {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.ingo-trust-item {
    font-size: 12px;
    font-weight: 500;
}

.ingo-trust-item i {
    margin-right: 5px;
}

.ingo-social-proof-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.ingo-stat-item {
    text-align: center;
}

.ingo-stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 8px;
}

.ingo-stat-label {
    font-size: 14px;
    opacity: 0.9;
}

/* FOOTER SECTION 9 STYLES */
.footer-section-ingo {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: #f8fafc;
    padding: 40px 20px 20px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    position: relative;
    overflow: hidden;
}

.footer-section-ingo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #3b82f6 50%, transparent 100%);
}

.footer-container-ingo {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content-ingo {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-main-ingo h3 {
    color: #3b82f6;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: -0.025em;
}

.footer-main-ingo p {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.footer-social-ingo {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link-ingo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 8px;
    color: #3b82f6;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-link-ingo:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
}

.footer-links-ingo h4 {
    color: #e2e8f0;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: -0.025em;
}

.footer-links-ingo ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-ingo li {
    margin-bottom: 8px;
}

.footer-links-ingo a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    position: relative;
}

.footer-links-ingo a:hover {
    color: #3b82f6;
}

.footer-links-ingo a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #3b82f6;
    transition: width 0.3s ease;
}

.footer-links-ingo a:hover::after {
    width: 100%;
}

.footer-contact-ingo h4 {
    color: #e2e8f0;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: -0.025em;
}

.contact-item-ingo {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    color: #cbd5e1;
    font-size: 0.9rem;
}

.contact-icon-ingo {
    color: #3b82f6;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-bottom-ingo {
    padding-top: 20px;
    border-top: 1px solid rgba(148, 163, 184, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright-ingo {
    color: #94a3b8;
    font-size: 0.85rem;
}

.footer-legal-ingo {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-legal-ingo a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-legal-ingo a:hover {
    color: #3b82f6;
}

/* ANIMATIONS */
@keyframes ingopulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes ingoSlideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 500px;
    }
}

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .section { 
        padding: 60px 0; 
    }
    
    .section-lg { 
        padding: 80px 0; 
    }
    
    .hero-title { 
        font-size: clamp(2rem, 8vw, 2.5rem); 
    }
    
    .hero-subtitle { 
        font-size: clamp(1rem, 4vw, 1.1rem); 
    }
    
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .btn { 
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .btn-lg { 
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .btn-xl { 
        padding: 16px 32px;
        font-size: 1.1rem;
    }
    
    .card { 
        padding: 20px; 
    }
    
    .cta-box { 
        padding: 30px 20px; 
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .floating-cta {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-btn {
        padding: 12px 20px;
        font-size: 0.85rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .px-12 { 
        padding-left: 1rem; 
        padding-right: 1rem; 
    }
    
    /* Section-specific mobile styles */
    .ingo-about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .ingo-visual-column {
        order: -1;
    }
    
    .ingo-faq-grid {
        grid-template-columns: 1fr;
    }
    
    .ingo-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .ingo-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .ingo-main-title {
        font-size: 32px;
    }
    
    .ingo-lead-text {
        font-size: 16px;
    }
    
    .ingo-newsletter-benefits {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .ingo-form-group {
        flex-direction: column;
    }
    
    .ingo-social-proof-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .footer-content-ingo {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-bottom-ingo {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .footer-legal-ingo {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid,
    .testimonials-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 10vw, 2rem);
    }
    
    .btn-xl {
        padding: 14px 24px;
        font-size: 1rem;
    }
    
    .gap-6 {
        gap: 1rem;
    }
    
    .ingo-social-proof-stats {
        grid-template-columns: 1fr;
    }
    
    .ingo-trust-indicators {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-social-ingo {
        justify-content: center;
    }
    
    .social-link-ingo {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

/* Performance Optimierungen */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {
    .floating-cta,
    .hero-badge,
    .btn {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .section {
        padding: 20px 0;
    }
    
    .card {
        box-shadow: none;
        border: 1px solid #ccc;
    }
}

.ingo-avatar-circle {
    /* Bestehender Gradient-Ring */
    padding: 4px; /* Ring-Effekt */
}

.ingo-profile-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}

.ingo-stat-label {
    font-size: 14px;
    opacity: 0.9;
}


.ingo-solution-section {
    background: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.ingo-solution-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="ingograin" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23f1f5f9" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23ingograin)"/></svg>');
    pointer-events: none;
}

.ingo-solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ingo-expert-avatar {
    text-align: center;
    margin-bottom: 40px;
}

.ingo-avatar-circle {
    background: linear-gradient(135deg, #2563eb 0%, #f59e0b 100%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 48px;
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.3);
    padding: 4px;
}

.ingo-profile-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}

.ingo-expert-badge {
    background: #dcfce7;
    color: #166534;
    display: inline-block;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    animation: ingopulse 2s infinite;
}

.ingo-process-flow {
    max-width: 280px;
    margin: 0 auto;
}

.ingo-process-step {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
    margin-bottom: 10px;
}

.ingo-step-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    flex-shrink: 0;
}

.ingo-step-icon.ingo-blue { background: #3b82f6; }
.ingo-step-icon.ingo-green { background: #10b981; }
.ingo-step-icon.ingo-yellow { background: #f59e0b; }
.ingo-step-icon.ingo-purple { background: #8b5cf6; }

.ingo-step-content {
    flex: 1;
}

.ingo-step-title {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 4px 0;
}

.ingo-step-desc {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
    line-height: 1.4;
}

.ingo-process-arrow {
    text-align: center;
    color: #9ca3af;
    margin: 8px 0;
    font-size: 14px;
}

.ingo-trust-indicators {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.ingo-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ingo-trust-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
}

.ingo-trust-icon.ingo-green { background: #10b981; }
.ingo-trust-icon.ingo-blue { background: #3b82f6; }
.ingo-trust-icon.ingo-purple { background: #8b5cf6; }

.ingo-trust-text {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

.ingo-solution-features {
    margin-bottom: 40px;
}

.ingo-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
}

.ingo-feature-item:hover {
    background: white;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transform: translateX(5px);
}

.ingo-feature-item:nth-child(1) { border-left-color: #3b82f6; }
.ingo-feature-item:nth-child(2) { border-left-color: #10b981; }
.ingo-feature-item:nth-child(3) { border-left-color: #f59e0b; }

.ingo-feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.ingo-feature-icon.ingo-blue { background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%); }
.ingo-feature-icon.ingo-green { background: linear-gradient(135deg, #10b981 0%, #059669 100%); }
.ingo-feature-icon.ingo-yellow { background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%); }

.ingo-feature-content {
    flex: 1;
}

.ingo-feature-title {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 12px 0;
}

.ingo-feature-desc {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.ingo-value-prop {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 40px;
}

.ingo-value-title {
    font-size: 24px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 25px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ingo-value-title i {
    color: #f59e0b;
}

.ingo-value-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.ingo-value-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.ingo-value-icon {
    font-size: 24px;
    width: 50px;
    text-align: center;
}

.ingo-solution-cta {
    text-align: center;
}

.ingo-btn-large {
    padding: 20px 40px;
    font-size: 20px;
}

.ingo-cta-note {
    margin-top: 15px;
    font-size: 14px;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.ingo-cta-note i {
    color: #10b981;
}


@media (max-width: 992px) {
    .ingo-solution-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .ingo-visual-column {
        order: -1;
    }
}

@media (max-width: 768px) {
    .ingo-solution-section {
        padding: 60px 0;
    }
    
    .ingo-trust-indicators {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .ingo-feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .ingo-btn-large {
        padding: 16px 32px;
        font-size: 18px;
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .ingo-solution-grid {
        gap: 30px;
    }
    
    .ingo-cta-note {
        flex-direction: column;
        gap: 5px;
    }
}