:root {
    --primary-color: #003366;
    /* Deep Trust Blue */
    --accent-color: #3b82f6;
    /* Brand Blue */
    --accent-hover: #2563eb;
    --bg-color: #f4f7f6;
    --text-color: #333333;
    --light-text: #666666;
    --border-color: #dddddd;
    --white: #ffffff;
    --success-color: #28a745;
    --font-family: 'Inter', sans-serif;
    --radius: 8px;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --transition: 0.3s ease;
}

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

body {
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header */
header {
    background-color: var(--white);
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

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

.logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo span {
    color: var(--accent-color);
}

.contact-btn {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    font-size: 0.9rem;
    white-space: nowrap;
}

.contact-btn:hover {
    background-color: var(--accent-hover);
}

/* Main Content */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    /* Balanced space above and below the funnel card */
    padding: 5rem 0;
}

.funnel-card {
    margin: 0 auto 100px;
    /* Center horizontally with bottom margin */
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    width: 100%;
    max-width: 800px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Full-width landing sections below the card */
.landing-full-width {
    width: 100%;
    background: #f5f7fb;
    padding: 3rem 0 4rem;
}

/* Progress Bar */
.progress-container {
    margin-bottom: 2rem;
    display: none;
    /* Hidden on landing step */
}

.progress-bar {
    height: 8px;
    background-color: #eee;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: #3b82f6;
    /* Blue progress */
    width: 0%;
    transition: width 0.5s ease;
}

.progress-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--light-text);
    margin-bottom: 0.5rem;
    display: block;
}

/* Steps */
.step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.step.active {
    display: block;
}

#zipCode {
    max-width: 200px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

h1,
h2 {
    color: var(--text-color);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.8rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.3rem;
    line-height: 1.25;
}

.subheadline {
    color: var(--light-text);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Inputs & Buttons */
.input-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

input[type="text"],
input[type="tel"],
input[type="email"],
select {
    padding: 1.1rem 1.2rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius);
    font-size: 1.05rem;
    width: 100%;
    /* Default to full width for consistency, containers control layout */
    text-align: center;
    transition: var(--transition);
    background-color: var(--white);
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
select:focus {
    border-color: var(--primary-color);
    outline: none;
}

.cta-btn {
    padding: 1rem 2rem;
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
}

.cta-btn:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

/* Options Grid */
.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.option-btn {
    background: var(--white);
    border: 2px solid #e0e6ed;
    padding: 1.5rem;
    border-radius: var(--radius);
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
    color: var(--primary-color);
}

.option-btn:hover {
    border-color: #3b82f6;
    background-color: #f0f7ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(59, 130, 246, 0.1);
}

/* List Options (Single Column) */
.options-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    max-width: 400px;
    margin: 0 auto;
}

.options-list .option-btn {
    padding: 1rem;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.options-list .option-btn::after {
    content: '›';
    font-size: 1.5rem;
    color: #cbd5e1;
}

.options-list .option-btn:hover::after {
    color: #3b82f6;
}


/* Dropdown Styling for Household Size (if we replicate the image style exactly) */
.custom-select-wrapper {
    position: relative;
    user-select: none;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

/* ... simpler to stick to tile buttons for better UX, but images showed a dropdown in one, tiles in others. I'll stick to tiles for better mobile UX often, or a nice styled list */


/* Trust Badges */
.trust-badges {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: center;
    gap: 2rem;
    opacity: 0.7;
    filter: grayscale(100%);
}

.trust-badges img {
    height: 30px;
    object-fit: contain;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    font-size: 0.8rem;
    color: var(--light-text);
    background-color: #ebf0f3;
}

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

/* Mobile Adjustments */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    main {
        padding: 1.5rem 0;
    }

    .funnel-card {
        padding: 2rem 1.5rem;
        margin-bottom: 60px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        background: var(--white);
    }

    h1 {
        font-size: 2.1rem;
        line-height: 1.32;
        margin-bottom: 0.9rem;
    }

    h2 {
        font-size: 1.65rem;
        line-height: 1.4;
    }

    .subheadline {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .input-group {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        margin-bottom: 1.25rem;
    }

    #zipCode {
        width: 100% !important;
        max-width: 100% !important;
    }

    input[type="text"],
    input[type="tel"],
    input[type="email"] {
        width: 100%;
        padding: 1.05rem 1.15rem;
        font-size: 1.05rem;
    }

    .cta-btn {
        width: 100%;
        padding: 1.1rem;
        font-size: 1.05rem;
    }

    .options-list {
        max-width: 100%;
    }

    .option-btn {
        padding: 1rem;
        font-size: 1rem;
    }

    .form-grid {
        max-width: 100%;
        gap: 1rem;
    }

    .input-box {
        min-height: 56px;
        padding: 0.5rem 1rem;
    }

    .input-box input,
    .input-box select {
        font-size: 1rem;
    }

    .dob-group {
        flex-direction: row;
        justify-content: center;
        gap: 0.5rem;
    }

    .dob-input {
        width: 70px !important;
        padding: 0.9rem 0.5rem;
        font-size: 1rem;
    }

    .dob-year {
        width: 90px !important;
    }

    .back-btn {
        margin-top: 1rem;
        font-size: 0.9rem;
    }

    .phone-prefix {
        padding: 0.6rem 0.8rem;
    }
}

@media (max-width: 600px) {
    header {
        padding: 0.75rem 0;
    }

    .logo {
        font-size: 1.25rem;
    }

    .contact-btn {
        padding: 0.45rem 0.75rem;
        font-size: 0.85rem;
    }

    .contact-btn svg {
        width: 16px;
        height: 16px;
    }

    .funnel-card {
        padding: 1.5rem 1rem;
        margin-bottom: 50px;
    }

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .subheadline {
        font-size: 0.9rem;
    }

    .progress-text {
        font-size: 0.85rem;
    }
}

/* New Input Styles */
.form-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.full-width {
    width: 100% !important;
}

.half-width {
    width: 48% !important;
}

.dob-group {
    gap: 0.5rem;
}

.dob-input {
    width: 96px !important;
    font-size: 1.1rem;
}

.dob-year {
    width: 124px !important;
    font-size: 1.1rem;
}

.state-select {
    /* Make state dropdown easier to click with native appearance */
    text-align: left;
    /* Dropdowns usually look better left-aligned */
    padding-right: 2rem;
    /* Space for arrow */
    -webkit-appearance: menulist;
    appearance: auto;
    cursor: pointer;
}

.next-btn {
    margin-top: 1rem;
    background-color: #3b82f6;
    /* Blue for 'Next' buttons per image */
}

.next-btn:hover {
    background-color: #2563eb;
}

/* Boxed Input Design */
.input-box {
    position: relative;
    border: 1px solid #ccc;
    border-radius: var(--radius);
    padding: 0.7rem 1.2rem;
    text-align: left;
    background: var(--white);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 72px;
    /* Ensure consistent height */
    width: 100%;
}

.input-box:focus-within {
    border-color: #3b82f6;
    box-shadow: 0 0 0 1px #3b82f6;
}

.input-box label {
    font-size: 0.75rem;
    color: #666;
    margin-bottom: 2px;
    font-weight: 500;
}

.input-box input,
.input-box select {
    border: none !important;
    /* Override default borders */
    padding: 0 !important;
    width: 100%;
    font-size: 1.1rem;
    background: transparent;
    text-align: left;
    outline: none;
    height: auto;
    color: #333;
}

/* Phone input with static prefix */
.phone-input-wrapper {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.phone-prefix {
    padding: 0.65rem 0.85rem;
    background: #f3f6fb;
    border: 1px solid #dfe7f2;
    border-radius: var(--radius);
    font-weight: 700;
    color: var(--primary-color);
    flex-shrink: 0;
}

.phone-input {
    flex: 1;
    text-align: left;
    font-size: 1.1rem !important;
    padding: 0.4rem 0 !important;
}

/* Validation Icons */
.input-box .icon-valid {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #28a745;
    font-size: 1.2rem;
    display: none;
    /* Hidden by default */
}

.input-box.valid .icon-valid {
    display: block;
}

/* Back Button */
.back-btn {
    display: block;
    margin-top: 1.5rem;
    color: #999;
    text-decoration: none;
    font-size: 0.9rem;
    cursor: pointer;
    transition: 0.3s;
}

.back-btn:hover {
    color: #666;
}

/* Flex Row for State/Zip */
.flex-row {
    display: flex;
    gap: 1rem;
    width: 100%;
}

.flex-row>* {
    flex: 1;
}

/* Error States */
.input-box.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 1px #dc3545;
}

.input-box.error label {
    color: #dc3545;
}

.error-message {
    position: absolute;
    top: -10px;
    left: 10px;
    background: white;
    padding: 0 5px;
    color: #dc3545;
    font-size: 0.8rem;
    font-weight: 500;
    display: none;
    /* Hidden by default */
}

.input-box.error .error-message {
    display: block;
    /* Show only on error */
}

/* Success Page Styles */
.success-container {
    padding: 2rem;
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.success-title {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.success-message {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 2.5rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    text-align: left;
}

.info-card {
    background: #f8f9fa;
    border-radius: var(--radius);
    padding: 1.5rem;
    border: 1px solid #e9ecef;
    transition: var(--transition);
}

.info-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.info-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e9ecef;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e9ecef;
}

.info-row:last-child {
    border-bottom: none;
}

.info-key {
    font-size: 0.95rem;
    color: var(--light-text);
    font-weight: 500;
    flex-shrink: 0;
    margin-right: 1rem;
}

.info-value {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 600;
    text-align: right;
    word-break: break-word;
}

@media (max-width: 600px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .success-title {
        font-size: 2rem;
    }
    
    .success-icon {
        width: 60px;
        height: 60px;
        font-size: 2.5rem;
    }
}

/* Landing Page Sections */
.landing-full-width {
    width: 100%;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
    /* Reduce the "gap" between the card and the first section */
    padding: 3.5rem 0 5rem;
}

.landing-section {
    margin-top: 6rem;
    padding-top: 5rem;
    border-top: 2px solid #e9ecef;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.landing-section:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.landing-section h2 {
    font-size: 2.4rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: -0.5px;
    text-align: center;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--light-text);
    margin-bottom: 2.5rem;
    text-align: center;
    font-weight: 400;
    line-height: 1.6;
}

/* State Grid */
/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e9ecef;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.15);
    border-color: var(--accent-color);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-hover) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
}

.benefit-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.benefit-card p {
    color: var(--light-text);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Expert Section */
.expert-section {
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
    padding: 4rem 3rem;
    border-radius: 16px;
    margin-top: 4rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.expert-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.expert-image {
    flex-shrink: 0;
    filter: drop-shadow(0 8px 16px rgba(59, 130, 246, 0.15));
}

.expert-image svg circle:first-child {
    fill: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%);
}

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

.expert-phone-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-hover) 100%);
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 12px;
    font-size: 1.4rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 0.75rem;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.35);
    letter-spacing: 0.5px;
}

.expert-phone-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, var(--accent-hover) 0%, var(--accent-color) 100%);
}

.expert-subtext {
    font-size: 0.95rem;
    color: var(--light-text);
    margin-top: 0.75rem;
    font-weight: 500;
}

/* FAQ Section */
.faq-section {
    margin-top: 4rem;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    margin-bottom: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: #d1d5db;
}

.faq-item.active {
    border-color: var(--accent-color);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.15);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: linear-gradient(to right, #ffffff 0%, #f8f9fa 100%);
    border: none;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(to right, #f8f9fa 0%, #e9ecef 100%);
}

.faq-item.active .faq-question {
    background: linear-gradient(to right, #eff6ff 0%, #dbeafe 100%);
    color: var(--primary-color);
}

.faq-icon {
    font-size: 0.9rem;
    color: var(--accent-color);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    margin-left: 1.5rem;
    font-weight: 700;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--accent-hover);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
    padding: 0 2rem;
}

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

.faq-answer p {
    color: var(--light-text);
    line-height: 1.8;
    margin: 0;
    font-size: 1rem;
}

/* Bottom CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #004080 100%);
    padding: 4rem 3rem;
    border-radius: 16px;
    margin-top: 4rem;
    box-shadow: 0 10px 40px rgba(0, 51, 102, 0.2);
    color: white;
}

.cta-section h2 {
    color: white !important;
}

.cta-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 900px;
    margin: 2rem auto 0;
}

.cta-card {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.cta-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.cta-card h3 {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
    color: white;
    font-weight: 700;
}

.cta-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-card .input-group {
    flex-direction: column;
    align-items: stretch;
}

.cta-card .input-group input {
    margin-bottom: 1rem;
    background: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--text-color);
}

.cta-card .input-group input:focus {
    border-color: white;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.cta-card .cta-btn {
    background: white;
    color: var(--primary-color);
    font-weight: 700;
}

.cta-card .cta-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.cta-card .expert-phone-btn {
    background: white;
    color: var(--primary-color);
}

.cta-card .expert-phone-btn:hover {
    background: #f0f0f0;
    color: var(--primary-color);
}

.cta-card .expert-subtext {
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .landing-full-width {
        padding: 3rem 0 2.5rem;
        min-height: auto;
    }
    
    .landing-section {
        margin-top: 3rem;
        padding-top: 2.5rem;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .landing-section:first-child {
        padding-top: 2rem;
    }
    
    .landing-section h2 {
        font-size: 1.85rem;
        margin-bottom: 0.6rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .benefit-card {
        padding: 1.5rem;
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .benefit-card h3 {
        font-size: 1.15rem;
    }
    
    .benefit-card p {
        font-size: 0.9rem;
    }
    
    .expert-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .expert-image {
        width: 100px;
        height: 100px;
    }
    
    .expert-image svg {
        width: 100px;
        height: 100px;
    }
    
    .expert-section {
        padding: 2rem 1.5rem;
        border-radius: 12px;
    }
    
    .expert-phone-btn {
        padding: 1rem 1.5rem;
        font-size: 1.2rem;
        width: 100%;
        display: block;
    }
    
    .expert-subtext {
        font-size: 0.85rem;
    }
    
    .cta-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-section {
        padding: 2.5rem 1.5rem;
        border-radius: 12px;
    }
    
    .cta-card {
        padding: 1.5rem;
    }
    
    .cta-card h3 {
        font-size: 1.3rem;
    }
    
    .cta-subtitle {
        font-size: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .faq-container {
        max-width: 100%;
    }
    
    .faq-item {
        margin-bottom: 0.75rem;
        border-radius: 10px;
    }
    
    .faq-question {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
        flex-wrap: wrap;
    }
    
    .faq-question span:first-child {
        flex: 1;
        min-width: 0;
        padding-right: 1rem;
    }
    
    .faq-icon {
        margin-left: 0.5rem;
        flex-shrink: 0;
    }
    
    .faq-item.active .faq-answer {
        padding: 1rem 1.25rem 1.5rem;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .landing-full-width {
        padding: 2.5rem 0 2rem;
    }
    
    .landing-section {
        margin-top: 2.5rem;
        padding-top: 2rem;
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .landing-section h2 {
        font-size: 1.6rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .benefits-grid {
        gap: 1.25rem;
    }
    
    .benefit-card {
        padding: 1.25rem;
    }
    
    .expert-section {
        padding: 1.5rem 1rem;
    }
    
    .expert-phone-btn {
        font-size: 1.1rem;
        padding: 0.9rem 1.25rem;
    }
    
    .cta-section {
        padding: 2rem 1rem;
    }
    
    .cta-card {
        padding: 1.25rem;
    }
    
    .cta-card h3 {
        font-size: 1.2rem;
    }
    
    .faq-question {
        padding: 0.9rem 1rem;
        font-size: 0.9rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0.9rem 1rem 1.25rem;
    }
}

/* Generic error outline for standalone inputs (e.g., ZIP, DOB) */
.input-error {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 1px #dc3545;
}
