/* Medicare Landing Page - Main Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Header */
header {
    background: linear-gradient(135deg, #0891b2 0%, #0e7490 100%);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.contact-info {
    font-size: 0.9rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(8,145,178,0.95) 0%, rgba(14,116,144,0.95) 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Form Section */
.form-section { background: white; padding: 60px 0; }
.form-container { max-width: 700px; margin: 0 auto; background: #f8fafc; padding: 40px; border-radius: 12px; box-shadow: 0 4px 6px rgba(0,0,0,0.1); }
.form-container h2 { color: #0891b2; margin-bottom: 10px; font-size: 2rem; }
.form-container p { color: #64748b; margin-bottom: 30px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; color: #334155; font-weight: 500; }
.form-group input, .form-group select { width: 100%; padding: 12px; border: 2px solid #e2e8f0; border-radius: 6px; font-size: 1rem; transition: border-color 0.3s; }
.form-group input:focus, .form-group select:focus { outline: none; border-color: #0891b2; }
.checkbox-group { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 10px; margin-top: 10px; }
.checkbox-item { display: flex; align-items: center; }
.checkbox-item input[type="checkbox"] { width: auto; margin-right: 8px; }
.submit-btn { background: #f97316; color: white; padding: 15px 40px; border: none; border-radius: 6px; font-size: 1.1rem; font-weight: 600; cursor: pointer; width: 100%; transition: background-color 0.3s; margin-top: 10px; }
.submit-btn:hover { background: #ea580c; }

/* Benefits Section */
.benefits { padding: 60px 0; background: #f8fafc; }
.benefits h2 { text-align: center; color: #0891b2; margin-bottom: 40px; font-size: 2rem; }
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.benefit-card { background: white; padding: 30px; border-radius: 12px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); transition: transform 0.3s, box-shadow 0.3s; }
.benefit-card:hover { transform: translateY(-5px); box-shadow: 0 4px 16px rgba(0,0,0,0.15); }
.benefit-card h3 { color: #0891b2; margin-bottom: 15px; font-size: 1.3rem; }
.benefit-card p { color: #64748b; line-height: 1.6; }

/* Trust Section */
.trust { background: white; padding: 40px 0; border-top: 1px solid #e2e8f0; border-bottom: 1px solid #e2e8f0; }
.trust-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; text-align: center; }
.stat { padding: 20px; }
.stat-number { font-size: 2.5rem; font-weight: bold; color: #0891b2; margin-bottom: 10px; }
.stat-label { color: #64748b; font-size: 1.1rem; }

/* Footer */
footer { background: #0f172a; color: white; padding: 30px 0; text-align: center; }
footer p { margin-bottom: 10px; opacity: 0.9; }

/* Success Message */
.success-message { display: none; background: #10b981; color: white; padding: 15px; border-radius: 6px; margin-bottom: 20px; text-align: center; }

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 { font-size: 2rem; }
    .hero p { font-size: 1rem; }
    .header-content { flex-direction: column; gap: 10px; }
    .form-container { padding: 30px 20px; }
    .checkbox-group { grid-template-columns: 1fr; }
}

/* Current landing page layout */
.site-header {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
}

.skip-link {
    position: absolute;
    left: -9999px;
}

.skip-link:focus {
    left: 16px;
    top: 16px;
    background: #0f172a;
    color: #fff;
    padding: 8px 12px;
    z-index: 1000;
}

.header-inner, .hero-inner, .footer-inner {
    width: min(1120px, 92vw);
    margin: 0 auto;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo-text {
    font-weight: 700;
    color: #0f172a;
}

.logo-mark {
    color: #0ea5e9;
    margin-right: 8px;
}

.main-nav {
    display: flex;
    gap: 20px;
}

.main-nav a {
    color: #334155;
    text-decoration: none;
}

.main-nav .nav-cta {
    background: #f97316;
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
}

.hero {
    background: linear-gradient(180deg, #f8fafc 0%, #eef6ff 100%);
    color: #0f172a;
    text-align: left;
    padding: 48px 0;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 32px;
    align-items: start;
}

.hero-copy h1 {
    color: #0f172a;
    margin-bottom: 12px;
}

.hero-points {
    margin-top: 16px;
    padding-left: 18px;
}

.service-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 14px 0 8px;
}

.service-pill {
    border: 1px solid #cbd5e1;
    background: #ffffff;
    color: #334155;
    padding: 8px 12px;
    border-radius: 999px;
    cursor: pointer;
}

.service-pill.is-active {
    background: #0ea5e9;
    border-color: #0284c7;
    color: #ffffff;
}

.hero-form {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
}

.btn-primary {
    display: inline-block;
    width: 100%;
    background: #f97316;
    color: white;
    padding: 12px 18px;
    border: 0;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 8px;
    font-weight: 600;
}

.form-disclaimer,
.status,
.footer-text {
    font-size: 0.9rem;
}

.form-disclaimer,
.status {
    color: #475569;
    margin-top: 10px;
}

.consent-check {
    display: block;
    margin-top: 12px;
    font-size: 0.9rem;
    color: #334155;
}

.consent-check input {
    margin-right: 8px;
}

.hp-field {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.service-grid,
.how-it-works, .reviews, .faq {
    width: min(1120px, 92vw);
    margin: 0 auto;
    padding: 40px 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.review-card {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 16px;
    background: #ffffff;
}

.site-footer {
    border-top: 1px solid #e2e8f0;
    padding: 24px 0;
    background: #ffffff;
}

.site-footer a {
    color: #0ea5e9;
}

.quick-contact {
    background: #0f172a;
    color: #ffffff;
    font-size: 0.95rem;
}

.quick-contact-inner {
    width: min(1120px, 92vw);
    margin: 0 auto;
    padding: 10px 0;
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.quick-contact a {
    color: #7dd3fc;
    text-decoration: none;
    font-weight: 600;
}

.lead-magnet {
    width: min(1120px, 92vw);
    margin: 0 auto;
    padding: 40px 0 60px;
}

.lead-magnet form {
    max-width: 560px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 18px;
}

.intake-form {
    max-width: 560px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
}

.sticky-contact {
    position: fixed;
    right: 16px;
    bottom: 16px;
    display: flex;
    gap: 8px;
    z-index: 1000;
}

.sticky-contact a {
    background: #0ea5e9;
    color: #fff;
    text-decoration: none;
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 600;
    border: 1px solid #0284c7;
}

@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .main-nav {
        display: none;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .quick-contact-inner {
        font-size: 0.9rem;
    }

    .sticky-contact {
        left: 10px;
        right: 10px;
        bottom: 10px;
        justify-content: space-between;
    }

    .sticky-contact a {
        flex: 1;
        text-align: center;
    }
}
