/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: #1a202c;
    background: #f7fafc;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===== HEADER ===== */
.header {
    background: #ffffff;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 3px solid #2b6cb0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 26px;
    font-weight: 800;
    color: #1a365d;
}

.logo i {
    color: #2b6cb0;
    font-size: 32px;
}

.logo span {
    color: #2b6cb0;
}

.header-phone {
    font-size: 18px;
    font-weight: 600;
    color: #2b6cb0;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ebf8ff;
    padding: 10px 20px;
    border-radius: 50px;
    transition: all 0.3s;
}

.header-phone:hover {
    background: #bee3f8;
    transform: scale(1.02);
}

.header-phone i {
    font-size: 20px;
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, #1a365d 0%, #2b6cb0 50%, #3182ce 100%);
    padding: 60px 0 80px;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.hero-copy h1 {
    font-size: 44px;
    line-height: 1.15;
    margin-bottom: 16px;
    font-weight: 800;
}

.hero-copy .highlight {
    color: #f6ad55;
}

.hero-copy .sub-headline {
    font-size: 20px;
    opacity: 0.95;
    margin-bottom: 12px;
    font-weight: 500;
}

.hero-copy p {
    font-size: 17px;
    opacity: 0.9;
    margin-bottom: 25px;
    max-width: 500px;
    line-height: 1.7;
}

.hero-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 30px;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    list-style: none;
}

.hero-features i {
    color: #48bb78;
    font-size: 18px;
    min-width: 20px;
}

.call-now {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #48bb78;
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(72, 187, 120, 0.35);
}

.call-now:hover {
    background: #38a169;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(72, 187, 120, 0.45);
}

.call-now i {
    font-size: 20px;
}

/* ===== FORM ===== */
.hero-form {
    background: white;
    padding: 35px 30px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    color: #2d3748;
    position: relative;
    z-index: 2;
}

.hero-form .form-badge {
    display: inline-block;
    background: #ebf8ff;
    color: #2b6cb0;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.hero-form h2 {
    font-size: 24px;
    margin-bottom: 4px;
    color: #1a365d;
}

.hero-form .form-subtitle {
    color: #718096;
    margin-bottom: 20px;
    font-size: 14px;
}

.form-row {
    margin-bottom: 16px;
}

.form-row.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.field {
    display: flex;
    flex-direction: column;
}

.field label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #4a5568;
}

.field label .required {
    color: #e53e3e;
}

.field input,
.field select {
    padding: 12px 14px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s;
    background: #f7fafc;
    width: 100%;
}

.field input:focus,
.field select:focus {
    border-color: #2b6cb0;
    outline: none;
    box-shadow: 0 0 0 3px rgba(43, 108, 176, 0.12);
    background: white;
}

.field input::placeholder {
    color: #a0aec0;
}

.field .error-msg {
    color: #e53e3e;
    font-size: 13px;
    margin-top: 4px;
    display: none;
}

/* ===== CONSENT ===== */
.consent-field {
    margin: 18px 0 16px;
}

.checkbox-label {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 13px;
    color: #4a5568;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin-top: 2px;
    accent-color: #2b6cb0;
    cursor: pointer;
}

.checkbox-label a {
    color: #2b6cb0;
    text-decoration: underline;
    font-weight: 500;
}

.checkbox-label a:hover {
    color: #1a365d;
}

.consent-text-full {
    font-size: 11px;
    color: #718096;
    margin-top: 10px;
    padding: 12px 14px;
    background: #f7fafc;
    border-radius: 6px;
    border-left: 3px solid #2b6cb0;
    line-height: 1.6;
}

#consent-error {
    color: #e53e3e;
    font-size: 13px;
    margin-top: 4px;
    display: none;
}

/* ===== SUBMIT BUTTON ===== */
.btn-submit {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #2b6cb0, #1a365d);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 19px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(43, 108, 176, 0.35);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

#form-status {
    margin-top: 12px;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    display: none;
    font-size: 15px;
}

#form-status.success {
    display: block;
    background: #f0fff4;
    color: #38a169;
    border: 1px solid #c6f6d5;
}

#form-status.error {
    display: block;
    background: #fff5f5;
    color: #e53e3e;
    border: 1px solid #feb2b2;
}

/* ===== TRUST BADGES ===== */
.badges {
    padding: 50px 0;
    background: white;
    border-bottom: 1px solid #edf2f7;
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.badge {
    text-align: center;
    padding: 20px 15px;
    transition: all 0.3s;
    border-radius: 12px;
}

.badge:hover {
    background: #f7fafc;
    transform: translateY(-4px);
}

.badge-icon {
    font-size: 38px;
    color: #2b6cb0;
    margin-bottom: 12px;
}

.badge h3 {
    font-size: 16px;
    color: #2d3748;
    font-weight: 600;
}

/* ===== TAGLINE SECTION ===== */
.tagline-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #f7fafc, #edf2f7);
    text-align: center;
}

.tagline-section h2 {
    font-size: 36px;
    color: #1a365d;
    margin-bottom: 12px;
}

.tagline-section .tagline-sub {
    font-size: 18px;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto;
}

/* ===== MISSION VISION ===== */
.mission-section {
    padding: 60px 0;
    background: white;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mission-card {
    padding: 35px 28px;
    background: #f7fafc;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
    border-top: 4px solid #2b6cb0;
}

.mission-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.mission-card .icon {
    font-size: 40px;
    color: #2b6cb0;
    margin-bottom: 16px;
}

.mission-card h3 {
    font-size: 22px;
    color: #1a365d;
    margin-bottom: 12px;
}

.mission-card p {
    color: #4a5568;
    font-size: 15px;
    line-height: 1.7;
}

/* ===== STATS ===== */
.stats-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a365d, #2b6cb0);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item .number {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 4px;
}

.stat-item .label {
    font-size: 17px;
    opacity: 0.85;
}

.stat-item .icon {
    font-size: 32px;
    margin-bottom: 8px;
    opacity: 0.7;
}

/* ===== HOSPITAL INDEMNITY ===== */
.hospital-section {
    padding: 60px 0;
    background: white;
}

.hospital-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.hospital-section .section-header h2 {
    font-size: 36px;
    color: #1a365d;
    margin-bottom: 10px;
}

.hospital-section .section-header p {
    color: #4a5568;
    font-size: 18px;
    max-width: 650px;
    margin: 0 auto;
}

.hospital-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.hospital-card {
    padding: 28px 22px;
    background: #f7fafc;
    border-radius: 12px;
    transition: all 0.3s;
    border: 1px solid #edf2f7;
}

.hospital-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border-color: #2b6cb0;
}

.hospital-card .icon {
    font-size: 34px;
    color: #2b6cb0;
    margin-bottom: 14px;
}

.hospital-card h4 {
    font-size: 18px;
    color: #1a365d;
    margin-bottom: 10px;
}

.hospital-card p {
    color: #4a5568;
    font-size: 14px;
    line-height: 1.7;
}

.hospital-cta {
    text-align: center;
    margin-top: 35px;
}

.hospital-cta p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 16px;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    padding: 60px 0;
    background: #f7fafc;
}

.how-it-works .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.how-it-works .section-header h2 {
    font-size: 36px;
    color: #1a365d;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.step-card {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    position: relative;
    transition: all 0.3s;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2b6cb0, #1a365d);
    color: white;
    border-radius: 50%;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 16px;
}

.step-card .icon {
    font-size: 30px;
    color: #2b6cb0;
    margin-bottom: 12px;
}

.step-card h4 {
    font-size: 18px;
    color: #1a365d;
    margin-bottom: 8px;
}

.step-card p {
    font-size: 14px;
    color: #4a5568;
    line-height: 1.6;
}

/* ===== FAQ ===== */
.faq-section {
    padding: 60px 0;
    background: white;
}

.faq-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-section .section-header h2 {
    font-size: 36px;
    color: #1a365d;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 40px;
}

.faq-item {
    padding: 18px 0;
    border-bottom: 1px solid #edf2f7;
}

.faq-item h4 {
    font-size: 16px;
    color: #1a365d;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-item h4 i {
    color: #2b6cb0;
    font-size: 14px;
    min-width: 18px;
}

.faq-item p {
    font-size: 14px;
    color: #4a5568;
    line-height: 1.7;
    padding-left: 28px;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a365d, #2b6cb0);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 38px;
    margin-bottom: 12px;
}

.cta-section p {
    max-width: 600px;
    margin: 0 auto 25px;
    opacity: 0.9;
    font-size: 18px;
}

.cta-section .btn-primary {
    display: inline-block;
    padding: 16px 45px;
    background: white;
    color: #1a365d;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.cta-section .btn-primary:hover {
    background: #f7fafc;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ===== FOOTER ===== */
.footer {
    background: #1a202c;
    color: #a0aec0;
    padding: 40px 0 30px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #a0aec0;
    text-decoration: underline;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer p {
    font-size: 14px;
    line-height: 1.8;
}

.footer .disclaimer {
    font-size: 12px;
    opacity: 0.6;
    margin-top: 10px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-copy h1 {
        font-size: 34px;
    }

    .badges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .mission-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hospital-grid {
        grid-template-columns: 1fr 1fr;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .hero-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 40px 0 60px;
    }

    .hero-copy h1 {
        font-size: 28px;
    }

    .hero-form {
        padding: 25px 20px;
    }

    .form-row.two-col {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .badges-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .mission-grid {
        grid-template-columns: 1fr;
    }

    .hospital-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .stat-item .number {
        font-size: 36px;
    }

    .header-inner {
        flex-direction: column;
        gap: 12px;
    }

    .logo {
        font-size: 22px;
    }

    .header-phone {
        font-size: 16px;
        padding: 8px 16px;
    }

    .tagline-section h2 {
        font-size: 28px;
    }

    .hospital-section .section-header h2 {
        font-size: 28px;
    }

    .how-it-works .section-header h2 {
        font-size: 28px;
    }

    .faq-section .section-header h2 {
        font-size: 28px;
    }

    .cta-section h2 {
        font-size: 28px;
    }

    .footer-links {
        gap: 16px;
    }
}


/* ===== LEGAL PAGES ===== */
.legal-page {
    padding: 60px 0;
    background: white;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 36px;
    color: #1a365d;
    margin-bottom: 8px;
    border-bottom: 3px solid #2b6cb0;
    padding-bottom: 15px;
}

.legal-content .legal-date {
    color: #718096;
    margin-bottom: 30px;
    font-size: 15px;
}

.legal-content h2 {
    font-size: 24px;
    color: #1a365d;
    margin: 35px 0 15px;
}

.legal-content p {
    color: #4a5568;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content ul {
    margin: 10px 0 20px 30px;
    color: #4a5568;
    font-size: 16px;
    line-height: 1.8;
}

.legal-content ul li {
    margin-bottom: 6px;
}

.legal-content ul li::marker {
    color: #2b6cb0;
}

/* ===== MARKETING PARTNERS ===== */
.partners-grid {
    margin: 25px 0;
}

.partners-grid ul {
    columns: 3;
    column-gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.partners-grid ul li {
    padding: 6px 0;
    border-bottom: 1px solid #f0f4f8;
    font-size: 14px;
    color: #4a5568;
    break-inside: avoid;
}

.partners-grid ul li::before {
    content: "▸ ";
    color: #2b6cb0;
    font-weight: 700;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .partners-grid ul {
        columns: 2;
    }
}

@media (max-width: 640px) {
    .legal-page {
        padding: 40px 0;
    }
    
    .legal-content h1 {
        font-size: 28px;
    }
    
    .legal-content h2 {
        font-size: 20px;
    }
    
    .partners-grid ul {
        columns: 1;
    }
}