/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

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

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

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: #666;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #8B5CF6 0%, #A78BFA 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

.btn-secondary {
    background: white;
    color: #8B5CF6;
    border: 2px solid #8B5CF6;
}

.btn-secondary:hover {
    background: #8B5CF6;
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.5rem;
    color: #1a1a1a;
    text-decoration: none;
}

.logo {
    width: 32px;
    height: 32px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: #666;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #667eea;
}

.nav-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #1a1a1a;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
}

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

.gradient-text {
    background: linear-gradient(135deg, #8B5CF6 0%, #A78BFA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #8B5CF6;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: #666;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-trust {
    text-align: center;
}

.hero-trust p {
    font-size: 14px;
    color: #999;
    margin-bottom: 16px;
}

.trust-logos {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-logo {
    font-size: 14px;
    color: #999;
    font-weight: 500;
}

/* Extension Preview */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.extension-preview {
    position: relative;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.3s ease;
}

.extension-preview:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.extension-window {
    width: 400px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.window-header {
    background: #f8f9fa;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #e9ecef;
}

.window-controls {
    display: flex;
    gap: 8px;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control.red { background: #ff5f57; }
.control.yellow { background: #ffbd2e; }
.control.green { background: #28ca42; }

.window-title {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.extension-content {
    padding: 20px;
}

.analysis-panel {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
}

.panel-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #1a1a1a;
}

.panel-logo {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.score-display {
    text-align: center;
    margin-bottom: 20px;
}

.score-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto;
}

.score-number {
    font-size: 24px;
    font-weight: 700;
}

.score-label {
    font-size: 10px;
    opacity: 0.9;
}

.metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
    font-size: 12px;
}

.metric:last-child {
    border-bottom: none;
}

.metric-label {
    color: #666;
}

.metric-value {
    font-weight: 600;
}

.metric-value.good { color: #28a745; }
.metric-value.warning { color: #ffc107; }
.metric-value.error { color: #dc3545; }

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.section-description {
    font-size: 1.25rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.feature-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 24px;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.feature-description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: 600;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.pricing-container {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.pricing-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 16px;
    padding: 40px;
    max-width: 400px;
    width: 100%;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card.featured {
    border-color: #8B5CF6;
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(139, 92, 246, 0.15);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #8B5CF6 0%, #A78BFA 100%);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

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

.pricing-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 16px;
}

.currency {
    font-size: 1.5rem;
    color: #667eea;
    font-weight: 600;
}

.amount {
    font-size: 4rem;
    font-weight: 700;
    color: #667eea;
    line-height: 1;
}

.period {
    font-size: 1.25rem;
    color: #666;
    margin-left: 4px;
}

.pricing-description {
    color: #666;
    font-size: 16px;
}

.pricing-features {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: #666;
}

.feature-item svg {
    color: #28a745;
    flex-shrink: 0;
}

.pricing-cta {
    text-align: center;
}

.trial-info {
    font-size: 14px;
    color: #666;
    margin-top: 12px;
}

.pricing-guarantee {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.guarantee-content {
    display: flex;
    align-items: center;
    gap: 16px;
    background: white;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.guarantee-content svg {
    color: #28a745;
    flex-shrink: 0;
}

.guarantee-content h4 {
    margin-bottom: 4px;
    color: #1a1a1a;
}

.guarantee-content p {
    margin: 0;
    color: #666;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: white;
}

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

.testimonial-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    margin-bottom: 24px;
}

.stars {
    color: #ffc107;
    font-size: 18px;
    margin-bottom: 16px;
}

.testimonial-content p {
    font-style: italic;
    color: #666;
    line-height: 1.6;
}

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

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #8B5CF6 0%, #A78BFA 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

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

.author-title {
    font-size: 14px;
    color: #666;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.faq-item {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.125rem;
    color: #1a1a1a;
}

.faq-question svg {
    color: #667eea;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.faq-answer p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #8B5CF6 0%, #A78BFA 100%);
    color: white;
    text-align: center;
}

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

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.cta-description {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.cta .btn-primary {
    background: white;
    color: #8B5CF6;
}

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

.cta .btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.cta .btn-secondary:hover {
    background: white;
    color: #8B5CF6;
}

.cta-note {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

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

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

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.footer-description {
    color: #999;
    line-height: 1.6;
}

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

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

.footer-column a {
    display: block;
    color: #999;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #999;
    font-size: 14px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    color: #999;
    transition: color 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .browser-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .browser-badge {
        width: 100%;
        max-width: 200px;
    }
    
    .download-cards {
        grid-template-columns: 1fr;
    }
    
    .how-it-works-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .how-it-works-features {
        grid-template-columns: 1fr;
    }
    
    .screenshots-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .guarantee-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .extension-window {
        width: 300px;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
}

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

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

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
.faq-question:focus {
    outline: 2px solid #8B5CF6;
    outline-offset: 2px;
}

/* Free Features Section */
.free-features {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
}

.free-features h3 {
    margin-bottom: 20px;
    color: #1a1a1a;
    font-size: 1.5rem;
}

.free-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}

.free-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.free-feature-item svg {
    color: #28a745;
    flex-shrink: 0;
}

.free-feature-item span {
    color: #333;
    font-weight: 500;
}

.free-note {
    color: #666;
    font-size: 14px;
    margin: 0;
}

/* Loading states */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Browser Badges */
.browser-badges {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 24px;
    flex-wrap: wrap;
}

.browser-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    text-decoration: none;
    color: #666;
    transition: all 0.3s ease;
    min-width: 100px;
}

.browser-badge:hover {
    border-color: #8B5CF6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.2);
}

.browser-badge svg {
    color: #8B5CF6;
}

.browser-badge span {
    font-size: 14px;
    font-weight: 600;
}

/* Download Section */
.download-section {
    padding: 100px 0;
    background: white;
}

.download-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.download-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.download-card:hover {
    border-color: #8B5CF6;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.15);
}

.download-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8B5CF6 0%, #A78BFA 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 24px;
}

.download-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.download-card p {
    color: #666;
    margin-bottom: 24px;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #8B5CF6 0%, #A78BFA 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.download-card:hover .download-btn {
    transform: scale(1.05);
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.how-it-works-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 800px;
    margin: 0 auto 60px;
}

.how-it-works-item {
    display: flex;
    gap: 24px;
    align-items: start;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8B5CF6 0%, #A78BFA 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

.how-it-works-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.feature-highlight {
    display: flex;
    gap: 16px;
    align-items: start;
    background: white;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

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

.feature-highlight-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.feature-highlight-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Demo Video & Product Tour Section */
.demo-section {
    padding: 100px 0;
    background: white;
}

.demo-video-container {
    margin-bottom: 80px;
}

.video-wrapper {
    max-width: 1000px;
    margin: 0 auto 30px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    aspect-ratio: 16 / 9;
    position: relative;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border: none;
}

.video-placeholder {
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.video-placeholder svg {
    opacity: 0.7;
}

.video-placeholder p {
    font-size: 1.125rem;
    color: #8B5CF6;
    font-weight: 600;
    margin: 0;
}

.video-features {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.video-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.video-feature svg {
    flex-shrink: 0;
}

.video-feature span {
    font-weight: 600;
    color: #1a1a1a;
}

/* Feature Tabs */
.feature-tabs-section {
    max-width: 1200px;
    margin: 0 auto;
}

.tabs-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 40px;
}

.feature-tabs {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    padding: 8px;
    background: #f8f9fa;
    border-radius: 12px;
}

.tab-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: #666;
    font-weight: 500;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.tab-button svg {
    width: 20px;
    height: 20px;
}

.tab-button:hover {
    background: white;
    color: #8B5CF6;
}

.tab-button.active {
    background: linear-gradient(135deg, #8B5CF6 0%, #A78BFA 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.tab-button.active svg {
    color: white;
}

.tab-content-wrapper {
    position: relative;
    min-height: 500px;
}

.tab-content {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}

.tab-content.active {
    display: block;
}

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

.tab-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.tab-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    max-width: 600px;
    margin: 0 auto;
}

.tab-image img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 500px;
    object-fit: contain;
    background: #f8f9fa;
}

.tab-description h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.tab-description p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 24px;
    font-size: 1rem;
}

.feature-list-inline {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.feature-list-inline li {
    color: #333;
    font-size: 0.9375rem;
    font-weight: 500;
}

/* Responsive adjustments for demo section */
@media (max-width: 1200px) {
    .tab-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .tab-image {
        max-width: 100%;
    }
    
    .feature-list-inline {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .video-features {
        gap: 30px;
    }
    
    .feature-tabs {
        flex-direction: column;
        align-items: stretch;
    }
    
    .tab-button {
        justify-content: center;
    }
    
    .tab-layout {
        padding: 24px;
    }
    
    .tabs-title {
        font-size: 1.5rem;
    }
}

/* InsightCrawl in Action Section */
.in-action {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.action-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.action-card.highlighted {
    border-color: #10b981;
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
}

.action-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.action-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e9ecef;
}

.action-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.action-icon.success {
    background: white;
}

.action-header h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.score-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
}

.score-badge.score-bad {
    background: #fee;
    color: #dc3545;
}

.score-badge.score-good {
    background: #d1fae5;
    color: #059669;
}

.action-content h4 {
    font-size: 1.125rem;
    color: #1a1a1a;
    margin-bottom: 16px;
}

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

.issue-list li {
    padding: 10px 0;
    display: flex;
    align-items: start;
    gap: 12px;
    color: #666;
    line-height: 1.6;
}

.issue-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.result-banner {
    margin-top: 24px;
    padding: 16px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-radius: 8px;
    text-align: center;
    font-size: 1rem;
}

.result-banner strong {
    font-weight: 700;
}

.action-testimonial {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-quote {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 16px;
    padding: 40px;
    position: relative;
}

.testimonial-quote svg {
    color: #8B5CF6;
    margin-bottom: 16px;
}

.testimonial-quote p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #333;
    font-style: italic;
    margin-bottom: 24px;
}

.quote-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.quote-author strong {
    color: #1a1a1a;
    font-size: 1rem;
}

.quote-author span {
    color: #666;
    font-size: 0.875rem;
}

/* Comparison Table Section */
.comparison-table-section {
    margin-top: 60px;
    padding: 40px;
    background: white;
    border-radius: 16px;
    border: 2px solid #e9ecef;
}

.comparison-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 40px;
}

.comparison-table {
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-header,
.comparison-row,
.comparison-footer {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 20px;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e9ecef;
}

.comparison-header {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 12px;
    font-weight: 700;
    border-bottom: none;
    margin-bottom: 10px;
}

.comparison-row:hover {
    background: #f8f9fa;
}

.comparison-footer {
    border-bottom: none;
    padding-top: 30px;
    border-top: 2px solid #e9ecef;
}

.feature-col {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.feature-col strong {
    color: #1a1a1a;
    font-size: 1rem;
}

.feature-desc {
    font-size: 0.875rem;
    color: #666;
}

.plan-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.plan-label {
    font-weight: 600;
    font-size: 1.125rem;
    color: #1a1a1a;
}

.plan-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #8B5CF6;
}

.free-col {
    color: #666;
}

.pro-col {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(167, 139, 250, 0.05) 100%);
    border-radius: 8px;
    padding: 10px;
}

.comparison-footer .plan-col {
    width: 100%;
}

.comparison-footer .btn {
    width: 100%;
    justify-content: center;
}

/* Responsive adjustments for comparison table */
@media (max-width: 768px) {
    .comparison-header,
    .comparison-row,
    .comparison-footer {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .comparison-row {
        padding: 20px;
        border: 1px solid #e9ecef;
        border-radius: 8px;
        margin-bottom: 10px;
    }
    
    .plan-col {
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
    }
    
    .in-action-grid {
        grid-template-columns: 1fr;
    }
    
    .action-testimonial {
        padding: 0 20px;
    }
    
    .testimonial-quote {
        padding: 24px;
    }
}

/* Utility classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }

/* Legal Pages Styling */
.legal-content {
    padding: 120px 0 80px;
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.legal-content .last-updated {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 3rem;
}

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

.legal-content h3 {
    font-size: 1.15rem;
    color: #333;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-content li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: #6366f1;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-content strong {
    color: #1a1a1a;
    font-weight: 600;
}

/* Footer adjustments for legal pages */
.footer .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .legal-content {
        padding: 100px 0 60px;
    }
    
    .legal-content h1 {
        font-size: 2rem;
    }
    
    .legal-content h2 {
        font-size: 1.25rem;
    }
    
    .footer .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
