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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

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

/* Header */
.site-header {
    background: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #e5e7eb;
}

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

.logo {
    height: 50px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.bbb-badge {
    height: 35px;
}

.phone-number {
    font-size: 20px;
    font-weight: 700;
    color: #1B3B5F;
    text-decoration: none;
    padding: 10px 20px;
    border: 2px solid #1B3B5F;
    border-radius: 5px;
    transition: all 0.3s;
}

.phone-number:hover {
    background: #1B3B5F;
    color: #fff;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0;
}

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

.hero-left {
    padding-right: 20px;
}

.hero-tag {
    display: inline-block;
    background: #1B3B5F;
    color: #fff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 25px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hero-subtitle-large {
    font-size: 28px;
    font-weight: 800;
    color: #1BA884;
    margin-top: 25px;
    margin-bottom: 25px;
    text-align: left;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hero-image {
    margin-top: 0;
    margin-bottom: 0;
}

.hero-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Form Card */
.form-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    position: relative;
}

.form-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #1B3B5F;
    color: #fff;
    padding: 10px 30px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 16px;
}

.form-intro {
    margin-top: 20px;
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.6;
}

.form-intro strong {
    font-size: 16px;
    color: #1B3B5F;
}

.disclaimer {
    display: block;
    font-size: 13px;
    color: #666;
    margin-top: 5px;
}

.urgency {
    font-size: 14px;
    color: #333;
    margin-bottom: 20px;
}

/* Progress Indicator */
.progress-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e5e7eb;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    opacity: 0.4;
    transition: opacity 0.3s;
}

.progress-step.active {
    opacity: 1;
}

.progress-step.completed {
    opacity: 1;
}

.step-number {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: #666;
}

.progress-step.active .step-number {
    background: #1B3B5F;
    color: #fff;
}

.progress-step.completed .step-number {
    background: #10b981;
    color: #fff;
}

.step-label {
    font-size: 12px;
    font-weight: 600;
    color: #666;
}

/* Form Steps */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.debt-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
    font-size: 15px;
}

.debt-form select,
.debt-form input {
    width: 100%;
    padding: 12px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    margin-bottom: 15px;
    transition: border-color 0.3s;
}

.debt-form select:focus,
.debt-form input:focus {
    outline: none;
    border-color: #1B3B5F;
}

/* Radio Groups */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.radio-option {
    display: flex;
    align-items: center;
    padding: 12px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.radio-option:hover {
    border-color: #1B3B5F;
    background: #f5f7ff;
}

.radio-option input[type="radio"] {
    width: 20px;
    height: 20px;
    margin: 0;
    margin-right: 12px;
    cursor: pointer;
}

.radio-option span {
    font-size: 15px;
    font-weight: 500;
}

/* Buttons */
.btn-continue,
.btn-submit {
    width: 100%;
    padding: 15px;
    background: #1B3B5F;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-continue:hover,
.btn-submit:hover {
    background: #2952cc;
}

.form-buttons {
    display: flex;
    gap: 10px;
}

.btn-back {
    flex: 1;
    padding: 15px;
    background: #e5e7eb;
    color: #333;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-back:hover {
    background: #d1d5db;
}

/* Trust Badges Bar */
.trust-badges-bar {
    background: #fff;
    padding: 40px 0;
    border-bottom: 1px solid #e5e7eb;
}

.badges-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.badges-grid img {
    height: 60px;
    opacity: 0.7;
}

/* CTA Consultation */
.cta-consultation {
    background: #1B3B5F;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.cta-consultation h2 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 20px;
}

.cta-consultation p {
    font-size: 18px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Why Section */
.why-section {
    padding: 80px 0;
    background: #fff;
}

.why-section h2 {
    font-size: 42px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.benefit-card {
    padding: 30px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    transition: all 0.3s;
}

.benefit-card:hover {
    border-color: #1B3B5F;
    box-shadow: 0 5px 20px rgba(65,105,225,0.1);
}

.benefit-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.benefit-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Keep Open Section */
.keep-open-section {
    padding: 80px 0;
    background: #f9fafb;
}

.keep-open-section h2 {
    font-size: 42px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 50px;
}

.keep-open-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.keep-open-item {
    text-align: center;
}

.item-number {
    width: 60px;
    height: 60px;
    background: #1B3B5F;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 900;
    margin: 0 auto 20px;
}

.keep-open-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

/* Results Section */
.results-section {
    padding: 80px 0;
    background: #fff;
}

.results-section h2 {
    font-size: 42px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 15px;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.result-card {
    background: #f9fafb;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #e5e7eb;
}

.savings-percent {
    font-size: 56px;
    font-weight: 900;
    color: #10b981;
    line-height: 1;
}

.savings-label {
    font-size: 18px;
    font-weight: 700;
    color: #666;
    margin-bottom: 20px;
}

.debt-details {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

.debt-details p {
    margin: 5px 0;
}

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
    background: #f9fafb;
}

.testimonials-section h2 {
    font-size: 42px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 15px;
}

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

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 700;
    font-size: 16px;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.testimonial-title {
    font-size: 14px;
    color: #666;
}

/* How It Works */
.how-it-works-section {
    padding: 80px 0;
    background: #fff;
}

.how-it-works-section h2 {
    font-size: 42px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 15px;
}

.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.how-it-works-card {
    text-align: center;
}

.how-it-works-item {
    text-align: center;
}

.step-number-large {
    width: 80px;
    height: 80px;
    background: #1B3B5F;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 900;
    margin: 0 auto 20px;
}

.how-it-works-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.how-it-works-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

/* Final CTA */
.final-cta-section {
    padding: 100px 0;
    background: #1B3B5F;
    text-align: center;
}

.final-cta-section h2 {
    font-size: 56px;
    font-weight: 900;
    color: #fff;
}

.final-cta-section p {
    color: #fff;
    font-size: 18px;
    margin-bottom: 10px;
}

/* Footer */
.site-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 30px 0;
    text-align: center;
}

.site-footer p {
    font-size: 14px;
}

.site-footer a {
    color: #1B3B5F;
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}

/* Green text styling */
.green-text {
    color: #1BA884;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 30px 0;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-left {
        padding-right: 0;
    }
    
    .hero-title {
        font-size: 28px;
        text-align: left;
        margin-bottom: 30px;
    }
    
    .hero-image {
        text-align: center;
        margin-top: 0;
        margin-bottom: 30px;
    }
    
    .hero-subtitle-large {
        font-size: 22px;
        text-align: center;
        margin-top: 0;
        margin-bottom: 0;
    }
    
    .hero-right {
        margin-top: 0;
    }
    
    .form-card {
        margin-top: 0;
        margin-bottom: 0;
        padding: 5px 20px 25px 20px;
    }
    
    .form-title {
        margin-top: 0;
    }
    
    .hero-section {
        padding: 30px 0 30px 0;
    }
    
    .trust-badges-bar {
        padding-top: 30px;
    }
    
    .benefits-grid,
    .keep-open-grid,
    .results-grid,
    .testimonials-grid,
    .how-it-works-grid {
        grid-template-columns: 1fr;
    }
    
    .header-right {
        flex-direction: column;
        gap: 10px;
    }
    
    .phone-number {
        font-size: 16px;
    }
}


/* Form Title */
.form-title {
    font-size: 24px;
    font-weight: 800;
    color: #1B3B5F;
    margin-bottom: 20px;
    margin-top: 10px;
    text-align: center;
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Trust Badges with Text */
.trust-badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.badge-icon {
    font-size: 28px;
    font-weight: 900;
    color: #1B3B5F;
}

.badge-text {
    font-size: 13px;
    font-weight: 600;
    color: #666;
    text-align: center;
}

/* Update button colors to use green accent */
.btn-continue,
.btn-submit,
.cta-button {
    background: #1BA884 !important;
    color: #fff !important;
}

.btn-continue:hover,
.btn-submit:hover,
.cta-button:hover {
    background: #158F6F !important;
}


/* Consultation Section with Image */
.consultation-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

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

.consultation-image img {
    width: 100%;
    max-width: 300px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.advisor-name {
    margin-top: 15px;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    line-height: 1.4;
}

.advisor-title {
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
}

@media (max-width: 768px) {
    .consultation-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .consultation-image {
        text-align: center;
    }
    
    .consultation-image img {
        max-width: 250px;
    }
}

/* Underlined text for "Zero" */
.underline-text {
    text-decoration: underline;
    text-decoration-color: #1BA884;
    text-decoration-thickness: 3px;
    text-underline-offset: 5px;
}

/* Google Rating Stars */
.google-rating {
    text-align: center;
    margin-bottom: 40px;
}

.google-rating .stars {
    font-size: 48px;
    color: #FDB813;
    letter-spacing: 5px;
    margin-bottom: 10px;
}

.google-rating .rating-text {
    font-size: 18px;
    color: #666;
    font-weight: 600;
}

.stars-small {
    font-size: 20px;
    color: #FDB813;
    margin-bottom: 15px;
}

.testimonial-date {
    font-size: 14px;
    color: #999;
    margin-top: 5px;
}

/* CTA Button Center */
.cta-button-center {
    text-align: center;
    margin-top: 40px;
}

.btn-cta {
    display: inline-block;
    background: #1BA884;
    color: white;
    padding: 18px 40px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: #158F6F;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(27, 168, 132, 0.3);
}

/* Final CTA Section Button */
.final-cta-section .cta-button {
    display: inline-block;
    background: white;
    color: #1B3B5F;
    padding: 18px 50px;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.final-cta-section .cta-button:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* Form Title */
.form-title {
    font-size: 26px;
    font-weight: 800;
    color: #1B3B5F;
    margin-bottom: 25px;
    text-align: center;
    line-height: 1.3;
}

/* Opt-in Section */
.opt-in-section {
    margin: 20px 0;
    padding: 15px;
    background: #f9fafb;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 2px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-label span {
    color: #374151;
    font-weight: 500;
}

.sms-disclaimer {
    font-size: 12px;
    line-height: 1.5;
    color: #6b7280;
    margin: 12px 0 0 0;
    padding-top: 12px;
    border-top: 1px solid #e5e7eb;
}

.sms-disclaimer a {
    color: #1BA884;
    text-decoration: underline;
}

.sms-disclaimer a:hover {
    color: #158f6d;
}

/* Come to the Source Section */
.come-to-source-section {
    padding: 80px 0;
    background: #f9fafb;
}

.come-to-source-section h2 {
    font-size: 42px;
    font-weight: 800;
    color: #1B3B5F;
    text-align: center;
    margin-bottom: 50px;
}

.source-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.source-video {
    width: 100%;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.source-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1B3B5F;
    margin-bottom: 20px;
}

.source-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 16px;
}

.source-content p:last-child {
    margin-bottom: 0;
}

/* Mobile Responsive for Come to Source */
@media (max-width: 768px) {
    .come-to-source-section {
        padding: 50px 0;
    }
    
    .come-to-source-section h2 {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .source-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .source-content h3 {
        font-size: 24px;
    }
    
    .source-content p {
        font-size: 15px;
    }
    
    .opt-in-section {
        padding: 12px;
    }
    
    .checkbox-label {
        font-size: 13px;
    }
    
    .sms-disclaimer {
        font-size: 11px;
    }
}

/* Radio Button Labels for Step 2 */
.radio-label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 10px;
}

.radio-label:hover {
    border-color: #1BA884;
    background: #f0fdf9;
}

.radio-label input[type="radio"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    flex-shrink: 0;
    accent-color: #1BA884;
    margin: 0;
    vertical-align: middle;
}

.radio-label input[type="radio"]:checked + span {
    color: #1BA884;
    font-weight: 600;
}

.radio-label:has(input[type="radio"]:checked) {
    border-color: #1BA884;
    background: #f0fdf9;
    box-shadow: 0 0 0 3px rgba(27, 168, 132, 0.1);
}

.radio-label span {
    color: #374151;
    font-size: 15px;
    font-weight: 500;
    line-height: 20px;
}

.radio-group {
    margin-bottom: 25px;
}

/* Success Message Styles */
.success-content {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #10B981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: bold;
    margin: 0 auto 24px;
}

.success-title {
    font-size: 32px;
    font-weight: 700;
    color: #1B3B5F;
    margin-bottom: 16px;
}

.success-message {
    font-size: 18px;
    color: #4B5563;
    line-height: 1.6;
    max-width: 400px;
    margin: 0 auto;
}

/* Enhanced Footer Styles - Safeguard Layout */
.site-footer {
    background: #2b2b2b;
    color: #fff;
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 30px;
    border-bottom: 1px solid #444;
    margin-bottom: 20px;
}

.footer-logo-section {
    flex: 0 0 300px;
    max-width: 300px;
}

.footer-logo {
    height: 50px;
    max-width: 250px;
    margin-bottom: 15px;
}

.footer-tagline {
    color: #b0b0b0;
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

.footer-links-grid {
    display: flex;
    gap: 80px;
    flex: 1;
    justify-content: flex-end;
}

.footer-column h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #1BA884;
}

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

.footer-bottom p {
    font-size: 13px;
    margin: 0;
    color: #888;
}

.footer-bottom a {
    color: #1BA884;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Mobile responsive footer */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-logo-section {
        text-align: center;
        max-width: 100%;
    }
    
    .footer-links-grid {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-column {
        text-align: center;
    }
}
