/* =====================================================
   MODERNE DESIGN-REVOLUTION FÜR GANZTAGSPLANER 2.0
   Frische, einladende Gestaltung für 2025
   ===================================================== */

/* 1. HERO SECTION - HELLER, FREUNDLICHER GRADIENT */
.hero {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 50%, #93c5fd 100%);
    position: relative;
    overflow: hidden;
    padding: 6rem 0 4rem;
    min-height: 90vh;
}

/* Moderne geometrische Shapes im Hintergrund */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    transform: rotate(45deg);
    animation: float 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.06) 0%, transparent 70%);
    transform: rotate(-45deg);
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(45deg) scale(1); }
    50% { transform: translateY(-30px) rotate(50deg) scale(1.1); }
}

/* Hero Content - Dunkler Text für bessere Lesbarkeit */
.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.text-gradient {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.375rem;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

/* 2. HERO BADGE - GLASSMORPHISMUS */
.hero-badge {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    padding: 0.875rem 1.75rem;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    color: #1e293b;
    font-weight: 500;
}

.hero-badge i {
    color: #3b82f6;
    font-size: 1.2rem;
}

/* 3. BUTTONS - MODERN & BOLD */
.hero .btn {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 100px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.hero .btn-primary {
    background: #3b82f6;
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
    border: 2px solid #3b82f6;
}

.hero .btn-primary:hover {
    background: #2563eb;
    border-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.hero .btn-secondary {
    background: white;
    color: #3b82f6;
    border: 2px solid #3b82f6;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.hero .btn-secondary:hover {
    background: #dbeafe;
    color: #2563eb;
    border-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.15);
}

.hero .btn-outline {
    background: white;
    color: #64748b;
    border: 2px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.hero .btn-outline:hover {
    background: #f8fafc;
    color: #475569;
    border-color: #cbd5e1;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* Button Ripple Effect */
.hero .btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.hero .btn:hover::after {
    width: 300px;
    height: 300px;
}

/* Special ripple for primary button */
.hero .btn-primary::after {
    background: rgba(255, 255, 255, 0.15);
}

/* 4. HERO STATS - MODERN CARDS */
.hero-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 4rem;
    flex-wrap: nowrap;
    align-items: stretch;
}

.stat {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.1);
    border: none;
    padding: 2rem 2.5rem;
    border-radius: 48px;
    text-align: center;
    flex: 1;
    min-width: 160px;
    max-width: 240px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: visible;
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.03) 0%, rgba(37, 99, 235, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat:hover::before {
    opacity: 1;
}

.stat::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa, #3b82f6);
    border-radius: 24px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
    background-size: 300% 300%;
    animation: gradient-shift 4s ease infinite;
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.stat:hover::after {
    opacity: 0.3;
}

.stat:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.3);
}

.stat-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.25);
    transition: all 0.3s ease;
}

.stat:hover .stat-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.35);
}

.stat-number {
    font-size: 1.9rem;
    font-weight: 900;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    position: relative;
    white-space: nowrap;
}

.stat-number::after {
    content: attr(data-value);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat:hover .stat-number::after {
    opacity: 1;
}

.stat-label {
    color: #475569;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.025em;
}

/* 5. ZEITSPARER FEATURES SECTION - MODERN LAYOUT */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 48px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.2);
}

/* 6. SECTION BADGES - MODERN PILLS */
.section-badge {
    background: linear-gradient(135deg, #3b82f615, #60a5fa15);
    color: #3b82f6;
    padding: 0.625rem 1.5rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-block;
    margin-bottom: 1.5rem;
    border: 1px solid #3b82f620;
    position: relative;
    overflow: hidden;
}

.section-badge::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2), transparent);
    transform: translateY(-50%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* 7. NAVIGATION - STICKY & MODERN */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

/* 8. TRIAL & UPGRADE HIGHLIGHTS */
.trial-highlight {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    color: white;
    padding: 8px 16px;
    border-radius: 24px;
    border: 1px solid rgba(96, 165, 250, 0.5);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.trial-highlight:hover {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.upgrade-highlight {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    padding: 8px 16px;
    border-radius: 24px;
    border: 1px solid rgba(37, 99, 235, 0.5);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.upgrade-highlight:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* 9. RESPONSIVE ANPASSUNGEN */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .stat {
        min-width: 140px;
        max-width: none;
        flex: 1 1 calc(50% - 0.5rem);
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.875rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
    }
    
    .stat {
        flex: 1 1 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

/* 10. UNIVERSELLER RIPPLE EFFEKT FÜR ALLE BUTTONS */
.btn:not(.no-ripple) {
    position: relative !important;
    overflow: hidden !important;
}

.btn:not(.no-ripple)::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    pointer-events: none;
    background: rgba(59, 130, 246, 0.1);
}

/* Verschiedene Ripple-Farben je nach Button-Typ */
.btn-primary::after {
    background: rgba(255, 255, 255, 0.15) !important;
}

.btn-secondary::after,
.btn-outline::after {
    background: rgba(59, 130, 246, 0.1) !important;
}

.btn-trial::after {
    background: rgba(96, 165, 250, 0.1) !important;
}

.btn-upgrade::after {
    background: rgba(37, 99, 235, 0.1) !important;
}

/* Hover Effekt - Ripple expandiert */
.btn:not(.no-ripple):hover::after {
    width: 300px;
    height: 300px;
}

/* Vereinfachte Hover-Effekte - nur noch Anheben */
.btn:hover {
    transform: translateY(-2px) !important;
}

/* 11. PRODUCT FAMILY CARDS - MODERN STYLE */
.product-card {
    background: white;
    border-radius: 48px;
    padding: 2.5rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.08);
}

/* Product Header */
.product-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.product-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: grayscale(10%);
    transition: filter 0.3s ease;
}

.product-card:hover .product-logo {
    filter: grayscale(0%);
}

/* Product Typography */
.product-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.product-tagline {
    font-size: 0.875rem;
    color: #3b82f6;
    font-weight: 600;
    margin-bottom: 1rem;
}

.product-card p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.product-card.current {
    background: white;
    border: none;
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.12);
    position: relative;
}

.product-badge {
    background: #e2e8f0;
    color: #64748b;
    padding: 0.375rem 0.75rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
}

.current-badge {
    background: #3b82f6;
    color: white;
}

/* Product Card Buttons - Modern Style */
.product-actions {
    margin-top: auto;
    padding-top: 2rem;
}

.product-actions .btn {
    width: 100%;
    padding: 0.875rem 1.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 100px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.product-actions .btn-primary {
    background: #3b82f6;
    color: white;
    border: 2px solid #3b82f6;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.product-actions .btn-primary:hover {
    background: #2563eb;
    border-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.25);
}

.product-actions .btn-secondary {
    background: transparent;
    color: #3b82f6;
    border: 2px solid #e5e7eb;
    box-shadow: none;
}

.product-actions .btn-secondary:hover {
    background: #f3f4f6;
    border-color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Special style for current product button */
.product-card.current .btn-primary {
    background: white;
    color: #3b82f6;
    border: 2px solid #3b82f6;
    box-shadow: none;
}

.product-card.current .btn-primary:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Button Icons */
.product-actions .btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.product-actions .btn:hover i {
    transform: translateX(2px);
}

.product-card.current .btn-primary i {
    color: #3b82f6;
}

/* Product Features Tags - Modern Style */
.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background: #f3f4f6;
    color: #6b7280;
    padding: 0.375rem 0.875rem;
    border-radius: 16px;
    font-size: 0.8125rem;
    font-weight: 500;
    border: 1px solid #e5e7eb;
    transition: all 0.2s ease;
}

.feature-tag:hover {
    background: #e5e7eb;
    color: #4b5563;
    transform: translateY(-1px);
}

.product-card.current .feature-tag {
    background: #f3f4f6;
    color: #6b7280;
    border-color: #e5e7eb;
}

.product-card.current .feature-tag:hover {
    background: #e5e7eb;
    color: #4b5563;
}

/* 12. CTA SECTION - LEBENDIGES DESIGN */
.cta {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 40%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    transform: rotate(35deg);
    pointer-events: none;
}

.cta-title {
    color: white;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.cta .btn-trial {
    background: white !important;
    color: #3b82f6 !important;
    border: 3px solid white !important;
    padding: 1.25rem 3rem !important;
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12) !important;
}

.cta .btn-trial:hover {
    background: #dbeafe !important;
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
}

/* 13. HERO IMAGE - GRÖSSER UND HÖHER */
.hero-visual {
    flex: 1.2;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    z-index: 1;
    padding-top: 0;
    margin-top: -1rem;
}

.software-mockup {
    position: relative;
    max-width: 900px;
    width: 100%;
    transition: transform 0.3s ease;
}

.software-mockup:hover {
    transform: scale(1.02);
}

.mockup-image {
    width: 100%;
    height: auto;
    max-height: 700px;
    object-fit: contain;
    border-radius: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.mockup-image:hover {
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.mockup-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.software-mockup:hover .mockup-overlay {
    opacity: 1;
    transform: translateY(0);
}

.feature-highlight {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #3b82f6;
    font-weight: 600;
    font-size: 0.875rem;
}

.feature-highlight i {
    font-size: 1rem;
}

/* Hero Container Anpassungen für größeres Bild */
.hero-container {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-content {
    flex: 1;
    text-align: left;
    padding-top: 0;
}

@media (min-width: 1200px) {
    .software-mockup {
        max-width: 1000px;
    }
    
    .hero-container {
        gap: 3rem;
    }
    
    .hero-visual {
        min-height: 700px;
    }
}

@media (max-width: 1024px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .software-mockup {
        max-width: 600px;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .software-mockup {
        max-width: 100%;
    }
    
    .mockup-overlay {
        bottom: 10px;
        right: 10px;
        padding: 8px 16px;
    }
    
    .feature-highlight {
        font-size: 0.75rem;
    }
} 

/* 14. ANIMATED STAT NUMBERS */
/* Animation entfernt - Boxen erscheinen direkt ohne Schwebe-Effekt */

/* Pulse animation for icons on hover */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.stat:hover .stat-icon {
    animation: pulse 1s ease-in-out infinite;
}

/* Add decorative elements */
.stat-decoration {
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: -50px;
    right: -50px;
    pointer-events: none;
} 

/* 15. PRICING BUTTONS - MODERN DESIGN */
/* Standard Pricing Button (Jetzt bestellen) */
.pricing-card .btn-primary {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 100px;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pricing-card .btn-primary:hover {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

/* Upgrade Button (Jetzt upgraden) */
.pricing-card .btn-upgrade {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 100px;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pricing-card .btn-upgrade:hover {
    background: linear-gradient(135deg, #0891b2, #0e7490);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.3);
}

/* Trial Button (Kostenlos testen) */
.pricing-card .btn-trial {
    background: white;
    color: #3b82f6;
    border: 2px solid #3b82f6;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 100px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pricing-card .btn-trial:hover {
    background: #dbeafe;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.15);
    border-color: #2563eb;
    color: #2563eb;
}

/* Icon animations */
.pricing-card .btn i {
    font-size: 1.125rem;
    transition: transform 0.3s ease;
}

.pricing-card .btn-primary:hover i {
    transform: translateX(2px);
}

.pricing-card .btn-upgrade:hover i {
    transform: translateY(-2px);
}

.pricing-card .btn-trial:hover i {
    transform: rotate(180deg);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pricing-card .btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
} 

/* 16. CONTACT FORM - MODERN DESIGN */
/* Contact Form Container */
.contact-form {
    background: white;
    border-radius: 48px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    padding: 3rem;
    border: none;
}

/* Contact Form Submit Button */
.contact-form .btn-primary,
.contact-form button[type="submit"] {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    border: none;
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 100px;
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
}

.contact-form .btn-primary::before,
.contact-form button[type="submit"]::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;
}

.contact-form .btn-primary:hover::before,
.contact-form button[type="submit"]:hover::before {
    left: 100%;
}

.contact-form .btn-primary:hover,
.contact-form button[type="submit"]:hover {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.3);
}

/* Icon Animation */
.contact-form .btn-primary i,
.contact-form button[type="submit"] i {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.contact-form .btn-primary:hover i,
.contact-form button[type="submit"]:hover i {
    transform: translateX(5px);
    animation: fly 0.6s ease;
}

@keyframes fly {
    0% { transform: translateX(0) rotate(0); }
    50% { transform: translateX(10px) rotate(20deg); }
    100% { transform: translateX(5px) rotate(0); }
}

/* Modern Form Note */
.form-note {
    background: linear-gradient(135deg, #dbeafe, #e0e7ff);
    padding: 1rem 1.5rem;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 1.5rem;
    color: #3b82f6;
    font-size: 0.9375rem;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(59, 130, 246, 0.08);
    position: relative;
    overflow: hidden;
}

.form-note::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    animation: float 10s ease-in-out infinite;
}

.form-note i {
    color: #3b82f6;
    font-size: 1.125rem;
    animation: pulse 2s ease-in-out infinite;
}

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

/* Form Input Focus Effects */
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
    outline: none;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .contact-form .btn-primary,
    .contact-form button[type="submit"] {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .form-note {
        padding: 0.875rem 1.25rem;
        font-size: 0.875rem;
    }
} 