/* 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: #111827;
    background-color: #ffffff;
}

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

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

h1 {
    font-size: 2.5rem;
    color: #111827;
}

h2 {
    font-size: 2rem;
    color: #111827;
}

h3 {
    font-size: 1.5rem;
    color: #111827;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: #0F62FE;
    color: white;
}

.btn-primary:hover {
    background-color: #0043ce;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #0F62FE;
    border: 2px solid #0F62FE;
}

.btn-secondary:hover {
    background-color: #0F62FE;
    color: white;
}

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

/* Header */
.header {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

.nav a:hover {
    color: #0F62FE;
}

/* Breadcrumb */
.breadcrumb {
    background-color: #f9fafb;
    padding: 1rem 0;
}

.breadcrumb ol {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb ol li {
    color: #6b7280;
}

.breadcrumb ol li:not(:last-child)::after {
    content: "›";
    margin-left: 0.5rem;
    color: #9ca3af;
}

.breadcrumb a {
    color: #0F62FE;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Table of Contents */
.toc-container {
    background-color: #f8fafc;
    border-bottom: 1px solid #e5e7eb;
    padding: 1.5rem 0;
}

.toc {
    background-color: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1.5rem;
}

.toc h2 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #111827;
}

.toc ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
}

.toc a {
    color: #0F62FE;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.toc a:hover {
    color: #0043ce;
    text-decoration: underline;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e5e7eb 100%);
    position: relative;
}

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

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #111827;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.value-props {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.value-prop {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.value-prop .icon {
    color: #10B981;
    font-weight: bold;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.trust-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat .number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #0F62FE;
}

.stat .label {
    font-size: 0.9rem;
    color: #6b7280;
}

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

/* Section Styles */
section {
    padding: 4rem 0;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Benefits Section */
.benefits {
    background-color: #f9fafb;
}

.benefits h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.benefit {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

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

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

.benefit h3 {
    margin-bottom: 1rem;
    color: #111827;
}

.benefit p {
    color: #6b7280;
}

/* Verification Section */
.verification-steps {
    display: grid;
    gap: 2rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: #f9fafb;
    border-radius: 8px;
}

.step-number {
    background-color: #0F62FE;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 0.5rem;
}

/* Coverage Section */
.coverage {
    background-color: #f9fafb;
}

.coverage h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.coverage-item {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.coverage-item h3 {
    color: #0F62FE;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.coverage-item ul {
    list-style: none;
}

.coverage-item li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
    color: #6b7280;
}

.coverage-item li:last-child {
    border-bottom: none;
}

/* Pricing Section */
.pricing h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.plan {
    background-color: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

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

.plan.featured {
    border-color: #0F62FE;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #10B981;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.plan-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.25rem;
    vertical-align: top;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #0F62FE;
}

.period {
    color: #6b7280;
    font-size: 1rem;
}

.plan-features ul {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.plan-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f3f4f6;
    color: #6b7280;
}

.plan-features li:last-child {
    border-bottom: none;
}

/* Comparison Table */
.comparison {
    background-color: #f9fafb;
}

.comparison h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
}

.comparison-table th {
    background-color: #f9fafb;
    font-weight: 600;
    color: #111827;
}

.comparison-table th.highlight,
.comparison-table td.highlight {
    background-color: #eff6ff;
    color: #0F62FE;
    font-weight: 600;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
}

/* Deliverability Section */
.deliverability-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.deliverability-stats {
    display: grid;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background-color: #f9fafb;
    border-radius: 8px;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: #0F62FE;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #6b7280;
    font-weight: 500;
}

.guarantee-details h3 {
    color: #0F62FE;
    margin-bottom: 1rem;
}

.guarantee-details ul {
    list-style: none;
}

.guarantee-details li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.guarantee-details li:last-child {
    border-bottom: none;
}

/* Testimonials */
.testimonials {
    background-color: #f9fafb;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.testimonial {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #374151;
}

.testimonial-author strong {
    color: #111827;
    display: block;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #6b7280;
    font-size: 0.9rem;
}

.rating {
    color: #fbbf24;
    font-size: 1.25rem;
    margin-top: 1rem;
}

/* Compliance Section */
.compliance-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.compliance-text h3 {
    color: #0F62FE;
    margin: 2rem 0 1rem 0;
}

.compliance-text ul {
    list-style: none;
}

.compliance-text li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.compliance-text li:last-child {
    border-bottom: none;
}

.compliance-badges {
    display: grid;
    gap: 1.5rem;
}

.badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: #f9fafb;
    border-radius: 8px;
}

.badge img {
    width: 60px;
    height: 60px;
    border-radius: 4px;
}

.badge span {
    font-weight: 500;
    color: #111827;
}

/* Sample Data Section */
.sample-data {
    background-color: #f9fafb;
}

.sample-data h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.sample-table-wrapper {
    overflow-x: auto;
    margin-bottom: 2rem;
}

.sample-table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    font-size: 0.9rem;
}

.sample-table th,
.sample-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.sample-table th {
    background-color: #f9fafb;
    font-weight: 600;
    color: #111827;
}

.sample-table tbody tr:hover {
    background-color: #f9fafb;
}

.sample-cta {
    text-align: center;
    padding: 2rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.sample-cta p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #374151;
}

/* Lead Form */
.lead-form-section {
    background: linear-gradient(135deg, #0F62FE 0%, #0043ce 100%);
    color: white;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    color: white;
    margin-bottom: 1rem;
}

.form-header p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
}

.lead-form {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #111827;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #0F62FE;
    box-shadow: 0 0 0 3px rgba(15, 98, 254, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.form-footer {
    text-align: center;
    margin-top: 1rem;
}

.form-footer .muted {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}

/* FAQ Section */
.faq {
    background-color: #f9fafb;
}

.faq h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.faq-item {
    background-color: white;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    border: none;
    background: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 500;
    color: #111827;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f9fafb;
}

.faq-icon {
    font-size: 1.5rem;
    color: #0F62FE;
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

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

.faq-answer.active {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-answer p {
    color: #6b7280;
    line-height: 1.6;
}

/* Related Pages */
.related-pages {
    background-color: #f9fafb;
}

.related-pages h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.related-item {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.related-item h3 {
    margin-bottom: 1rem;
}

.related-item h3 a {
    color: #0F62FE;
    text-decoration: none;
}

.related-item h3 a:hover {
    text-decoration: underline;
}

.related-item p {
    color: #6b7280;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.final-trust-items {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    color: #10B981;
    font-weight: 500;
}

/* Footer */
.footer {
    background-color: #111827;
    color: white;
    padding: 3rem 0 1rem 0;
}

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

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #9ca3af;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.social-links {
    display: flex;
    gap: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* Utility Classes */
.muted {
    color: #6b7280;
}

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

.grid {
    display: grid;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav ul {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }
    
    .trust-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .value-props {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .pricing-table {
        grid-template-columns: 1fr;
    }
    
    .plan.featured {
        transform: none;
    }
    
    .deliverability-content,
    .compliance-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .final-trust-items {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .toc ul {
        grid-template-columns: 1fr;
    }
    
    .sample-table {
        font-size: 0.8rem;
    }
    
    .sample-table th,
    .sample-table td {
        padding: 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    section {
        padding: 2rem 0;
    }
    
    .btn {
        width: 100%;
    }
    
    .hero-ctas .btn {
        width: auto;
        min-width: 200px;
    }
}
