/* Landing Page Specific Styles */
.landing-page {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Hero Section */
.landing-hero {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #533483 100%);
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.landing-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.2) 0%, transparent 50%);
    animation: gradientShift 8s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-headline {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.05;
    margin: 0 0 2rem;
    color: #ffffff;
    text-shadow: 0 0 30px rgba(139, 92, 246, 0.5), 0 0 60px rgba(59, 130, 246, 0.3);
    animation: textGlow 3s ease-in-out infinite alternate;
    letter-spacing: -0.02em;
}

@keyframes textGlow {
    0% { text-shadow: 0 0 30px rgba(139, 92, 246, 0.5), 0 0 60px rgba(59, 130, 246, 0.3); }
    100% { text-shadow: 0 0 40px rgba(139, 92, 246, 0.8), 0 0 80px rgba(59, 130, 246, 0.5); }
}

.highlight {
    background: linear-gradient(45deg, #00d4ff, #ff00d4, #00ff88, #ffaa00);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientFlow 4s ease-in-out infinite;
    font-weight: 900;
}

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

.hero-subheadline {
    font-size: 1.6rem;
    color: rgba(255,255,255,0.9);
    margin: 0 0 3rem;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    font-weight: 500;
    animation: fadeInUp 1s ease-out 0.5s both;
}

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

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUp 1s ease-out 0.8s both;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
    cursor: pointer;
}

.stat-item:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(45deg, #00d4ff, #ff00d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.btn-primary-large, .btn-secondary-large {
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary-large {
    background: linear-gradient(45deg, #ff006e, #8338ec, #3a86ff, #06ffa5);
    background-size: 400% 400%;
    color: #ffffff;
    border: 2px solid transparent;
    box-shadow: 0 8px 32px rgba(255, 0, 110, 0.3);
    animation: gradientButton 3s ease-in-out infinite;
}

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

.btn-primary-large:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 50px rgba(255, 0, 110, 0.5);
    animation-duration: 1s;
}

.btn-secondary-large {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.1);
}

.btn-secondary-large:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.2);
}

.hero-trust {
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    margin-top: 1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

/* Hero Visual */
.tool-preview-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    animation: fadeInRight 1s ease-out 1s both;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.preview-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: white;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

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

.preview-card:hover::before {
    left: 100%;
}

.preview-card:hover {
    transform: translateX(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3);
}

.preview-card h4 {
    margin: 0 0 0.5rem;
    font-size: 1.2rem;
}

.dsgvo-badge {
    background: #16a34a;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    display: inline-block;
}

.intl-badge {
    background: #dc2626;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    display: inline-block;
}

.dach-badge {
    background: #0ea5e9;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    display: inline-block;
}

.roi-preview {
    margin-top: 0.5rem;
    font-weight: 600;
    color: #ffd700;
}

/* Problem Section */
.problem-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.problem-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 0, 110, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(131, 56, 236, 0.1) 0%, transparent 50%);
}

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

.problem-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 3rem 2.5rem;
    border-radius: 25px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.1) 0%, rgba(131, 56, 236, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.problem-card:hover::before {
    opacity: 1;
}

.problem-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255, 0, 110, 0.5);
    box-shadow: 0 25px 80px rgba(255, 0, 110, 0.2);
}

.problem-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 20px rgba(255, 0, 110, 0.5));
}

.problem-card h3 {
    color: #ff006e;
    margin: 0 0 1.5rem;
    font-size: 1.8rem;
    font-weight: 800;
    text-shadow: 0 0 20px rgba(255, 0, 110, 0.3);
}

/* Solution Section */
.solution-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #533483 0%, #0f3460 25%, #16213e 50%, #1a1a2e 75%, #0f0f0f 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.solution-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(16, 185, 129, 0.15) 0%, transparent 50%);
    animation: solutionGlow 10s ease-in-out infinite;
}

@keyframes solutionGlow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

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

.solution-features {
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    margin: 2rem 0;
    align-items: flex-start;
    padding: 1.5rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(10px);
    border-color: rgba(59, 130, 246, 0.3);
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
    background: linear-gradient(45deg, #3b82f6, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.5));
}

.feature-item h4 {
    margin: 0 0 0.8rem;
    color: #00d4ff;
    font-size: 1.3rem;
    font-weight: 700;
}

.feature-item p {
    margin: 0;
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    line-height: 1.6;
}

.solution-cta {
    margin-top: 2rem;
}

/* Finder Mockup */
.finder-mockup {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg);
}

.mockup-header {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.mockup-questions {
    margin: 1.5rem 0;
}

.question-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem;
    margin: 0.5rem 0;
    border-radius: 8px;
    border-left: 4px solid #ffd700;
}

.mockup-results {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1.5rem;
}

.tool-result {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem;
    margin: 0.5rem 0;
    border-radius: 6px;
    font-size: 0.9rem;
}

/* Social Proof Section */
.proof-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.proof-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
}

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

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

.proof-number {
    font-size: 3rem;
    font-weight: 800;
    color: #1f6feb;
    margin-bottom: 0.5rem;
}

.proof-label {
    color: #64748b;
    font-weight: 500;
}

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

.testimonial {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #1f6feb;
    color: #374151;
}

.testimonial p {
    font-style: italic;
    margin: 0 0 1rem;
    font-size: 1.1rem;
}

.testimonial cite {
    color: #6b7280;
    font-weight: 600;
    font-size: 1rem;
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background: #f8fafc;
}

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

.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    color: #374151;
    border: 1px solid #e5e7eb;
}

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

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

.feature-card h3 {
    color: #1f6feb;
    margin: 0 0 1rem;
}

/* Training Section */
.training-section {
    padding: 4rem 0;
    background: #f0f9ff;
}

.training-preview {
    margin: 3rem 0;
}

.training-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 1400px;
    margin: 0 auto 3rem auto;
}

.training-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: transform 0.2s, box-shadow 0.2s;
}

.training-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

.training-card h4 {
    margin-bottom: 1rem;
    color: #1e293b;
    font-size: 1.25rem;
}

.price-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.price-badge.free {
    background: #dcfce7;
    color: #166534;
}

.price-badge.mid {
    background: #fef3c7;
    color: #92400e;
}

.price-badge.premium {
    background: #e0e7ff;
    color: #3730a3;
}

.training-card p {
    color: #64748b;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.perfect-for {
    font-size: 0.875rem;
    color: #3b82f6;
    font-weight: 600;
    background: #eff6ff;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    display: inline-block;
}

.training-cta {
    text-align: center;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Directory Section */
.directory-section {
    padding: 5rem 0;
    background: white;
}

.category-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.category-card {
    background: linear-gradient(135deg, #1f6feb, #7c3aed);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px) scale(1.02);
}

.category-card h4 {
    margin: 0 0 0.5rem;
    font-size: 1.3rem;
}

.tool-count {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    display: inline-block;
    margin: 0.5rem 0;
}

.category-card p {
    margin: 1rem 0 0;
    opacity: 0.9;
    font-size: 0.9rem;
}

.directory-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ROI Preview Section */
.roi-preview-section {
    padding: 5rem 0;
    background: #1f2937;
    color: white;
}

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

.roi-examples {
    margin: 2rem 0;
}

.roi-example {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1rem 0;
}

.roi-example h4 {
    color: #ffd700;
    margin: 0 0 1rem;
}

.roi-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.roi-details span {
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
}

/* Calculator Mockup */
.calculator-mockup {
    background: linear-gradient(135deg, #16a34a, #059669);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(5deg);
}

.calc-header {
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
}

.calc-inputs {
    margin: 1.5rem 0;
}

.calc-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem;
    margin: 0.5rem 0;
    border-radius: 8px;
}

.calc-result {
    background: rgba(255, 255, 255, 0.2);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 1.5rem;
}

.result-big {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffd700;
}

.result-label {
    opacity: 0.9;
    margin-top: 0.5rem;
}

/* Final CTA Section */
.final-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1f6feb, #7c3aed);
    color: white;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 2.5rem;
    margin: 0 0 1rem;
}

.cta-subtext {
    font-size: 1.2rem;
    opacity: 0.9;
    margin: 0 0 2.5rem;
    line-height: 1.6;
}

.final-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.btn-primary-xl, .btn-secondary-xl {
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary-xl {
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    color: #1a1a1a;
}

.btn-primary-xl:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

.btn-secondary-xl {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.urgency-text {
    margin-top: 2rem;
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

/* Footer */
.landing-footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0;
    text-align: center;
}

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

.footer-brand h3 {
    color: #ffd700;
    margin: 0 0 0.5rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ffd700;
}

.footer-trust {
    font-size: 1rem;
    color: #94a3b8;
}

/* Section Titles */
.section-title {
    font-size: 3.5rem;
    font-weight: 900;
    text-align: center;
    margin: 0 0 3rem;
    line-height: 1.1;
    color: #ffffff;
    text-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
    background: linear-gradient(45deg, #ffffff, #00d4ff, #ff00d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titlePulse 4s ease-in-out infinite;
    letter-spacing: -0.02em;
}

@keyframes titlePulse {
    0%, 100% { 
        text-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
        transform: scale(1);
    }
    50% { 
        text-shadow: 0 0 50px rgba(139, 92, 246, 0.6);
        transform: scale(1.02);
    }
}

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

/* Button Styles */
.btn-primary {
    background: linear-gradient(45deg, #1f6feb, #7c3aed);
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(31, 111, 235, 0.3);
}

/* Responsive Design */
@media (max-width: 900px) {
    .hero-container,
    .solution-content,
    .roi-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 600px) {
    .hero-headline {
        font-size: 2rem;
    }
    
    .hero-subheadline {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .problems-grid,
    .features-grid,
    .category-cards {
        grid-template-columns: 1fr;
    }
    
    .finder-mockup,
    .calculator-mockup {
        transform: none;
    }
}