

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #f8fafc;
    color: #334155;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

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

.health-hero {
    background: #f0f9ff;
    padding: 120px 0 80px;
    overflow: hidden;
}

.health-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.health-hero-text {
    flex: 1;
    max-width: 560px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.health-chip {
    font-size: 11px;
    font-weight: 700;
    color: #0284c7;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #e0f2fe;
    padding: 6px 14px;
    border-radius: 4px;
    width: fit-content;
}

.health-hero-text h1 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    color: #0f172a;
}

.health-hero-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #475569;
}

.health-hero-img {
    flex: 1;
    max-width: 480px;
    border-radius: 16px;
}

.health-hero-cta {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.btn-primary {
    background: #2563eb;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 8px;
    width: fit-content;
    transition: all 0.3s;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
}
.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}

.health-hero-perks {
    display: flex;
    align-items: center;
    gap: 24px;
}

.health-hero-perks span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}

.health-hero-image {
    flex: 1;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.health-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.health-section {
    padding: 60px 0;
    background: #fff;
}
.health-section:nth-child(even) {
    background: #f8fafc;
}

.text-center {
    text-align: center;
}
.section-title {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}
.section-subtitle {
    font-size: 16px;
    color: #475569;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.coverage-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 40px;
    text-align: left;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}
.coverage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.06);
}

.coverage-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 24px;
}
.icon-blue { background: #e0f2fe; color: #0ea5e9; }
.icon-green { background: #dcfce7; color: #10b981; }
.icon-pink { background: #fce7f3; color: #ec4899; }

.coverage-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 24px;
}

.coverage-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.coverage-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: #475569;
    line-height: 1.5;
}
.coverage-list li svg {
    flex-shrink: 0;
    margin-top: 2px;
}
.check-blue { color: #0ea5e9; }
.check-green { color: #10b981; }
.check-pink { color: #ec4899; }

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.benefit-item {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.2s;
}
.benefit-item:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.benefit-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e0f2fe;
    color: #0284c7;
    border-radius: 8px;
    flex-shrink: 0;
}

.benefit-text h4 {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
}
.benefit-text p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
}

.pricing-grid {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding-bottom: 24px;
    margin: 0 -20px;
    padding: 24px 20px 24px;
    scroll-snap-type: x mandatory;
}
.pricing-grid::-webkit-scrollbar { height: 6px; }
.pricing-grid::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 6px; }

.pricing-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 40px 30px 30px;
    text-align: left;
    position: relative;
    display: flex;
    flex-direction: column;
}
.pricing-card.highlight {
    border: 2px solid #8b5cf6;
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.15);
    transform: scale(1.02);
    z-index: 1;
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #e0f2fe;
    color: #0284c7;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    white-space: nowrap;
}
.pricing-card.highlight .pricing-badge, .badge-purple {
    background: #f3e8ff;
    color: #9333ea;
}
.badge-green {
    background: #dcfce7;
    color: #16a34a;
}
.badge-orange {
    background: #ffedd5;
    color: #ea580c;
}

.pricing-header { margin-bottom: 24px; text-align: center; }
.pricing-header h3 { font-size: 18px; font-weight: 600; color: #475569; margin-bottom: 8px; }
.pricing-price { font-family: 'Poppins', sans-serif; font-size: 36px; font-weight: 800; color: #0f172a; }
.pricing-price span { font-size: 14px; font-weight: 500; color: #64748b; }

.pricing-features { flex: 1; margin-bottom: 30px; }
.pricing-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: #475569; margin-bottom: 12px; line-height: 1.4; }
.pricing-features li svg { color: #10b981; flex-shrink: 0; margin-top: 2px; }

.btn-pricing {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    text-align: center;
}
.btn-pricing-blue { background: #2563eb; color: #fff; }
.btn-pricing-purple { background: #8b5cf6; color: #fff; }
.btn-pricing-green { background: #10b981; color: #fff; }
.btn-pricing-orange { background: #ea580c; color: #fff; }

.btn-pricing:hover { opacity: 0.9; transform: translateY(-2px); }

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.step-item {
    text-align: center;
}
.step-number {
    width: 56px;
    height: 56px;
    background: #e0f2fe;
    color: #0284c7;
    font-size: 20px;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
}
.step-item h4 {
    font-size: 18px;
    color: #0f172a;
    margin-bottom: 12px;
}
.step-item p {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
}

.network-container {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}
.network-map {
    flex: 0 0 420px;
    max-width: 420px;
}
.network-map img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}
.network-stats {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.stat-card {
    background: #f0f9ff;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
}
.stat-value {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #0284c7;
    margin-bottom: 8px;
}
.stat-label {
    font-size: 14px;
    font-weight: 600;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.faq-container {
    max-width: 800px;
    margin: 40px auto 0;
    text-align: left;
}
.faq-item {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 16px;
}
.faq-item summary {
    padding: 24px;
    font-weight: 600;
    font-size: 16px;
    color: #0f172a;
    cursor: pointer;
    list-style: none; 
    position: relative;
}
.faq-item summary::-webkit-details-marker {
    display: none;
}
.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    font-weight: 400;
    color: #0284c7;
    transition: transform 0.2s;
}
.faq-item[open] summary::after { content: '-'; }
.faq-answer {
    padding: 0 24px 24px;
    color: #475569;
    font-size: 15px;
    line-height: 1.6;
}

.bottom-cta {
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    color: #fff;
    padding: 80px 48px;
    text-align: center;
}
.bottom-cta h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}
.bottom-cta p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 32px;
}
.btn-white {
    display: inline-block;
    background: #fff;
    color: #2563eb;
    font-weight: 600;
    padding: 14px 36px;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s;
}
.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.footer {
    background: #0f172a;
    padding: 72px 0 32px;
    color: #94a3b8;
    border-top: 1px solid #1e293b;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-brand img {
    height: 36px;
    margin-bottom: 20px;
}
.footer-brand p {
    font-size: 14px;
    line-height: 1.6;
    max-width: 300px;
    color: #64748b;
}
.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
}
.contact-row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.contact-row svg {
    flex-shrink: 0;
    margin-top: 2px;
}
.contact-row span {
    font-size: 13px;
    color: #94a3b8;
    line-height: 1.5;
}
.footer-links h4, .footer-newsletter h4 {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 0.3px;
}
.footer-links a {
    display: block;
    font-size: 13px;
    margin-bottom: 10px;
    color: #94a3b8;
    transition: color 0.2s, padding-left 0.2s;
}
.footer-links a:hover {
    color: #fff;
    padding-left: 4px;
}
.footer-newsletter p {
    font-size: 13px;
    margin-bottom: 16px;
    color: #64748b;
    line-height: 1.5;
}
.newsletter-input {
    display: flex;
}
.newsletter-input input {
    flex: 1;
    padding: 11px 14px;
    border-radius: 10px 0 0 10px;
    border: 1px solid #334155;
    border-right: none;
    background: #1e293b;
    color: #fff;
    font-size: 13px;
    outline: none;
    transition: border-color 0.2s;
}
.newsletter-input input:focus {
    border-color: #0284c7;
}
.newsletter-input input::placeholder {
    color: #64748b;
}
.newsletter-input button {
    padding: 0 20px;
    border: none;
    background: #0284c7;
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    border-radius: 0 10px 10px 0;
    cursor: pointer;
    transition: background 0.25s;
}
.newsletter-input button:hover {
    background: #0369a1;
}
.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid #1e293b;
    text-align: center;
    font-size: 13px;
    color: #475569;
}

@media (max-width: 900px) {
    .health-hero-container {
        flex-direction: column;
        text-align: center;
        padding-top: 40px;
    }
    .health-chip, .btn-primary {
        margin-left: auto;
        margin-right: auto;
    }
    .health-hero-perks {
        justify-content: center;
    }
    .health-hero-text h1 {
        font-size: 36px;
    }
    .coverage-grid, .benefits-grid, .steps-grid {
        grid-template-columns: 1fr;
    }
    .network-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .container,
    [class$="-container"],
    [class*="hero-container"],
    [class*="page-container"],
    [class*="section-container"],
    .checkout-grid,
    .quote-main {
        padding-left: 20px !important;
        padding-right: 20px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
}

