/* SEO Tracking, Analytics & Reporting Page Styles */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:wght@400;500;600;700&display=swap');
body {
    font-family: 'Barlow Semi Condensed', Arial, sans-serif;
    background: #f8fafc;
    color: #222;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Section Base Styles */
.seotrack-section {
    padding: 56px 0 48px 0;
    background: #fff;
    border-radius: 18px;
    margin: 32px 0;
    box-shadow: 0 2px 24px rgba(15,23,42,0.06);
}
.seotrack-section-header h2 {
    font-size: 2rem;
    font-weight: 700;
}

/* Card Grid Styles */
.seotrack-services-grid, .seotrack-metrics-list, .seotrack-dashboards-list, .seotrack-conversion-list, .seotrack-insights-list, .seotrack-localintl-list, .seotrack-tools-list, .seotrack-whychoose-list, .seotrack-whoneeds-list, .seotrack-pricing-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.seotrack-service-card {
    background: #f1f5fd;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(37,99,235,0.07);
    padding: 28px 24px 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-left: 5px solid #2563eb;
}
.seotrack-service-card h3 {
    color: #0f172a;
    font-size: 1.2rem;
    margin-bottom: 6px;
    font-weight: 600;
}
.seotrack-service-card p {
    color: #334155;
    font-size: 1rem;
}

/* Service Card Icon Style */
.seotrack-service-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 14px;
    font-size: 1.7rem;
    box-shadow: 0 2px 8px rgba(37,99,235,0.08);
}

/* List Card Styles */
.seotrack-metrics-list li, .seotrack-dashboards-list li, .seotrack-conversion-list li, .seotrack-insights-list li, .seotrack-localintl-list li, .seotrack-tools-list li, .seotrack-whychoose-list li, .seotrack-whoneeds-list li, .seotrack-pricing-list li {
    background: #f8fafc;
    border-radius: 10px;
    box-shadow: 0 1px 6px rgba(37,99,235,0.04);
    padding: 18px 20px;
    margin-bottom: 0;
    font-size: 1rem;
    color: #222;
    border-left: 4px solid #2563eb;
    margin-top: 0;
}

/* FAQ Styles */
.seotrack-faq-list details {
    background: #f1f5fd;
    border-radius: 10px;
    margin-bottom: 18px;
    box-shadow: 0 1px 8px rgba(37,99,235,0.06);
    padding: 16px 20px;
}
.seotrack-faq-list summary {
    font-weight: 600;
    color: #2563eb;
    cursor: pointer;
    font-size: 1.08rem;
}
.seotrack-faq-list details[open] summary {
    color: #0f172a;
}
.seotrack-faq-list div {
    color: #334155;
    margin-top: 10px;
    font-size: 1rem;
}

/* CTA Block */
.seotrack-cta-block {
    background: linear-gradient(90deg, #2563eb 60%, #0f172a 100%);
    color: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 24px rgba(37,99,235,0.13);
    padding: 48px 32px 36px 32px;
    text-align: center;
    margin: 0 auto;
    max-width: 700px;
}
.seotrack-cta-block h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
}
.seotrack-cta-block p {
    color: #e0e7ef;
    font-size: 1.15rem;
    margin-bottom: 28px;
}
.seotrack-cta-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    margin-bottom: 18px;
}
.seotrack-cta-contact {
    color: #fff;
    font-size: 1.08rem;
    margin-top: 10px;
}
.seotrack-cta-contact a {
    color: #fff;
    text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 900px) {
    .seotrack-container {
        flex-direction: column;
        gap: 32px;
        align-items: flex-start;
    }
    .seotrack-hero-video {
        justify-content: center;
        width: 100%;
    }
    .seotrack-section {
        padding: 36px 0 28px 0;
    }
    .seotrack-cta-block {
        padding: 32px 12px 24px 12px;
    }
}
@media (max-width: 600px) {
    .seotrack-section-header h2 {
        font-size: 1.3rem;
    }
    .seotrack-cta-block h2 {
        font-size: 1.2rem;
    }
}
.seotrack-hero {
    background: linear-gradient(90deg, #0f172a 60%, #fff 100%);
    color: #fff;
    padding: 64px 0 48px 0;
}
.seotrack-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.seotrack-hero-content {
    flex: 1 1 420px;
    min-width: 320px;
    z-index: 2;
}
.seotrack-hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: #fff;
}
.seotrack-hero-content p {
    font-size: 1.2rem;
    margin-bottom: 32px;
    color: #e0e7ef;
}
.seotrack-hero-buttons {
    display: flex;
    gap: 18px;
    margin-bottom: 24px;
}
.seotrack-btn-primary {
    background: #2563eb;
    color: #fff;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}
.seotrack-btn-primary:hover {
    background: #1d4ed8;
}
.seotrack-btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.seotrack-btn-outline:hover {
    background: #fff;
    color: #2563eb;
}
.seotrack-hero-video {
    flex: 1 1 400px;
    min-width: 320px;
    display: flex;
    justify-content: flex-end;
    z-index: 1;
}
.seotrack-video-responsive {
    position: relative;
    width: 100%;
    max-width: 420px;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 32px rgba(0,0,0,0.12);
}
.seotrack-video-responsive iframe {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    border: 0;
}
@media (max-width: 900px) {
    .seotrack-container {
        flex-direction: column;
        gap: 32px;
        align-items: flex-start;
    }
    .seotrack-hero-video {
        justify-content: center;
        width: 100%;
    }
}