/* US Market Specific - Minimalist SEO Styles */

/* Landing Page Hero Section */
.landing-hero {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.landing-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}

.landing-hero .container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.landing-hero .hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.landing-hero h1 {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin: 0 0 20px 0;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.landing-hero .hero-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin: 0 0 32px 0;
    max-width: 700px;
}

.hero-features {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 15px;
    font-weight: 500;
}

.hero-feature svg {
    width: 20px;
    height: 20px;
    stroke: #4ade80;
    flex-shrink: 0;
}

.hero-cta {
    margin-top: 40px;
}

.hero-cta-button {
    display: inline-block;
    background: white;
    color: #764ba2;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px 0 rgba(0,0,0,0.1);
}

.hero-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(0,0,0,0.15);
}

.hero-trust {
    margin-top: 24px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .landing-hero {
        padding: 60px 16px;
    }
    
    .landing-hero h1 {
        font-size: 32px;
    }
    
    .landing-hero .hero-description {
        font-size: 17px;
    }
    
    .hero-features {
        gap: 16px;
    }
}

/* SEO Content Section - Pure text focus */
.seo-section {
    padding: 60px 20px;
    max-width: 100%;
    background: #ffffff;
}

.seo-section .container {
    max-width: 800px;
    margin: 0 auto;
}

/* SEO Typography - Optimized for readability and SEO */
.seo-section h2 {
    font-size: 28px;
    font-weight: 600;
    color: #0F172A;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.seo-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1E293B;
    margin: 32px 0 12px 0;
    line-height: 1.4;
}

.seo-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
    margin: 0 0 16px 0;
    text-align: left;
}

/* First paragraph after h2 - slightly larger for emphasis */
.seo-section h2 + p {
    font-size: 17px;
    line-height: 1.8;
    color: #334155;
}

/* Simple Footer Styles */
.simple-footer {
    border-top: 1px solid #E2E8F0;
    padding: 40px 20px;
    background: #ffffff;
    margin-top: 60px;
}

.footer-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.footer-text {
    font-size: 14px;
    color: #64748B;
    margin: 0 0 8px 0;
}

.footer-description {
    font-size: 13px;
    color: #94A3B8;
    margin: 0;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .seo-section {
        padding: 40px 16px;
    }
    
    .seo-section h2 {
        font-size: 24px;
    }
    
    .seo-section h3 {
        font-size: 18px;
        margin: 24px 0 10px 0;
    }
    
    .seo-section p {
        font-size: 15px;
        line-height: 1.7;
    }
    
    .simple-footer {
        padding: 30px 16px;
    }
}

/* Print Styles for Accessibility */
@media print {
    .seo-section {
        padding: 0;
    }
    
    .simple-footer {
        display: none;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .seo-section h2,
    .seo-section h3 {
        color: #000000;
    }
    
    .seo-section p {
        color: #1F2937;
    }
}

/* Reading Mode Optimization */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* Focus States for Accessibility */
.seo-section a:focus {
    outline: 2px solid #3B82F6;
    outline-offset: 2px;
    text-decoration: underline;
}

/* Link Styles - Minimal and clean */
.seo-section a {
    color: #3B82F6;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.seo-section a:hover {
    border-bottom-color: #3B82F6;
}

/* Popular Tools Section */
.popular-tools {
    padding: 40px 20px;
    background: #F8FAFC;
}

.popular-tools .container {
    max-width: 800px;
    margin: 0 auto;
}

.popular-tools h2 {
    font-size: 24px;
    font-weight: 600;
    color: #0F172A;
    margin: 0 0 20px 0;
}

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

.tools-list li {
    margin-bottom: 12px;
    padding-left: 0;
}

.tools-list a {
    color: #3B82F6;
    text-decoration: none;
    font-weight: 500;
}

.tools-list a:hover {
    text-decoration: underline;
}

/* Footer Links */
.footer-links {
    margin: 12px 0 0 0;
    font-size: 13px;
    color: #94A3B8;
}

.footer-links a {
    color: #64748B;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s ease;
    display: inline-block;
    margin: 0 8px;
}

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

.footer-links .separator {
    color: #CBD5E1;
    margin: 0 4px;
    font-size: 12px;
    display: inline;
}