/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

a {
    color: #0066FF;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Header & Navigation */
.navbar {
    background: white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: #666;
    font-weight: 500;
}

.nav-links a:hover {
    color: #0066FF;
    text-decoration: none;
}

/* Buttons */
.btn {
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #0066FF;
    color: white;
}

.btn-primary:hover {
    background: #0052CC;
    text-decoration: none;
}

.btn-secondary {
    background: #E6F0FF;
    color: #0066FF;
}

.btn-secondary:hover {
    background: #CCE0FF;
    text-decoration: none;
}

.btn-outline {
    background: transparent;
    color: #0066FF;
    border: 2px solid #0066FF;
}

.btn-outline:hover {
    background: #0066FF;
    color: white;
    text-decoration: none;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.metrics {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #0066FF;
}

.metric-label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

.hero-image {
    margin-top: 3rem;
    position: relative;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

/* Features Section */
.features {
    padding: 80px 0;
}

.feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
    align-items: center;
}

.feature-reverse {
    direction: rtl;
}

.feature-reverse .feature-content {
    direction: ltr;
}

.feature-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.feature-tag {
    color: #0066FF;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}

.feature h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.feature p {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.link-arrow {
    color: #0066FF;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-highlights {
    margin-top: 2rem;
}

.highlight {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.highlight .icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.highlight p {
    font-size: 1rem;
    margin: 0;
}

/* Action Section */
.action-section {
    background: #F8F9FA;
    padding: 80px 0;
    text-align: center;
}

.logos-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.logos-strip img {
    height: 60px;
}

.plus {
    font-size: 2rem;
    color: #666;
}

.action-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.action-section p {
    font-size: 1.125rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

/* Empower Section */
.empower-section {
    padding: 80px 0;
}

.empower-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #1a1a1a;
}

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

.empower-card {
    background: #F8F9FA;
    padding: 2rem;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.empower-card:hover {
    transform: translateY(-5px);
}

.empower-card .icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1.5rem;
}

.empower-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.empower-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.empower-card .link {
    color: #0066FF;
    font-weight: 600;
}

/* Testimonials */
.testimonials {
    background: #F8F9FA;
    padding: 80px 0;
}

.testimonials h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #1a1a1a;
}

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

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.testimonial p {
    font-style: italic;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial cite {
    display: block;
    color: #333;
    font-style: normal;
    font-weight: 600;
    margin-bottom: 1rem;
}

.testimonial img {
    height: 30px;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
}

.faq h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.faq-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.faq-item p {
    color: #666;
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    color: white;
    text-align: center;
}

.cta-content {
    position: relative;
}

.cta-metrics {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
}

.cta-metrics .metric-value {
    color: white;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-section .btn-primary {
    background: white;
    color: #0066FF;
    font-size: 1.125rem;
    padding: 15px 40px;
}

.cta-section .btn-primary:hover {
    background: #f0f0f0;
}

.cta-image {
    margin-top: 3rem;
}

/* Footer */
.site-footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1.125rem;
    color: white;
}

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

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

.footer-column a {
    color: #999;
    text-decoration: none;
    font-size: 0.95rem;
}

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

/* Cookie Notice */
.cookie-notice {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #2D2D2D;
    border-radius: 8px;
    margin-top: 40px;
}

.cookie-notice p {
    flex: 1;
    margin: 0;
    margin-right: 2rem;
    font-size: 0.9rem;
    color: #CCC;
}

.cookie-notice a {
    color: #0066FF;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Button styles for footer */
.btn-small {
    font-size: 0.875rem;
    padding: 8px 16px;
}

.btn-text {
    background: none;
    border: none;
    color: #666;
    font-size: 1.25rem;
    padding: 8px;
    cursor: pointer;
}

/* Responsive footer */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cookie-notice {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .cookie-notice p {
        margin-right: 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .metrics {
        flex-wrap: wrap;
        gap: 2rem;
    }
    
    .feature {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-reverse {
        direction: ltr;
    }
    
    .empower-grid,
    .testimonial-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }
}