* {
    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;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

.logo {
    height: 50px;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: #2C3E50;
    letter-spacing: -0.5px;
}

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

.trust-badge {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.bbb-badge {
    height: 35px;
}

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

.phone-number:hover {
    background: #2C3E50;
    color: #fff;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #FFF8F3 0%, #FFE8D6 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: #2C3E50;
    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: 24px;
    font-weight: 700;
    color: #2C3E50;
    margin-top: 20px;
    text-align: left;
}

.orange-text {
    color: #FF6B35;
    display: inline-block;
}

.underline-text {
    position: relative;
    display: inline-block;
}

.underline-text::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 100%;
    height: 12px;
    background: #FF6B35;
    opacity: 0.3;
    z-index: -1;
}

.hero-image {
    margin: 30px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.hero-image img {
    width: 100%;
    display: block;
}

/* Form Card */
.form-card {
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 20px;
}

.form-title {
    font-size: 24px;
    font-weight: 800;
    color: #2C3E50;
    margin-bottom: 25px;
    text-align: center;
    line-height: 1.3;
}

.form-step {
    display: none;
}

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

.form-step label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 15px;
    font-size: 16px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #FF6B35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

/* Radio Button Labels */
.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: #FF6B35;
    background: #FFF8F3;
}

.radio-label input[type="radio"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    flex-shrink: 0;
    accent-color: #FF6B35;
    margin: 0;
    -webkit-appearance: radio;
    appearance: radio;
}

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

.radio-label:has(input[type="radio"]:checked) {
    border-color: #FF6B35;
    background: #FFF8F3;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

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

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

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #FF6B35;
}

.checkbox-label span {
    font-size: 14px;
    color: #374151;
    line-height: 1.5;
}

.sms-disclaimer {
    font-size: 12px;
    color: #6b7280;
    margin-top: 15px;
    line-height: 1.6;
}

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

/* Buttons */
.btn-continue,
.btn-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.btn-continue:hover,
.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-back {
    padding: 12px 24px;
    background: #f3f4f6;
    color: #374151;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    margin-right: 10px;
}

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

/* Thank You Message */
.thank-you-message {
    text-align: center;
    padding: 40px 20px;
}

.thank-you-message h3 {
    font-size: 28px;
    font-weight: 800;
    color: #FF6B35;
    margin-bottom: 15px;
}

.thank-you-message p {
    font-size: 16px;
    color: #374151;
    line-height: 1.6;
}

/* Trust Badges Bar */
.trust-badges {
    background: #2C3E50;
    padding: 40px 0;
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    text-align: center;
}

.badge-item {
    color: #fff;
}

.badge-number {
    font-size: 36px;
    font-weight: 900;
    color: #FF6B35;
    margin-bottom: 5px;
}

.badge-label {
    font-size: 14px;
    font-weight: 500;
    color: #e5e7eb;
}

/* Content Sections */
.content-section {
    padding: 80px 0;
}

.content-section.bg-light {
    background: #f9fafb;
}

.section-title {
    font-size: 42px;
    font-weight: 900;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-intro {
    font-size: 18px;
    color: #6b7280;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 12px;
}

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

/* Video Content Grid */
.video-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 40px;
}

.video-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.content-text h3 {
    font-size: 28px;
    font-weight: 800;
    color: #2C3E50;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 15px 0;
    border-bottom: 1px solid #e5e7eb;
    font-size: 15px;
    color: #374151;
    line-height: 1.6;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list strong {
    color: #FF6B35;
    font-weight: 700;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    padding: 50px;
    border-radius: 12px;
    text-align: center;
    margin-top: 60px;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.cta-box h3 {
    font-size: 32px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 18px;
    color: #fff;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    padding: 18px 40px;
    background: #fff;
    color: #FF6B35;
    font-size: 18px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Testimonials */
.testimonial-header {
    text-align: center;
    margin-bottom: 50px;
}

.google-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.google-logo {
    height: 30px;
}

.rating-stars {
    color: #F7931E;
    font-size: 24px;
    letter-spacing: 2px;
}

.rating-text {
    font-size: 16px;
    color: #6b7280;
    font-weight: 600;
}

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

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.testimonial-card .stars {
    color: #F7931E;
    font-size: 20px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

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

.testimonial-author {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

.testimonial-author strong {
    color: #2C3E50;
    font-weight: 700;
    font-size: 15px;
}

.testimonial-author .date {
    font-size: 13px;
    color: #9ca3af;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.process-step {
    text-align: center;
    padding: 30px;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: #fff;
    font-size: 36px;
    font-weight: 900;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.process-step h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 15px;
}

.process-step p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
    padding: 80px 0;
}

.section-title-white {
    font-size: 42px;
    font-weight: 900;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
}

.section-intro-white {
    font-size: 18px;
    color: #e5e7eb;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.cta-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto 40px;
}

.cta-feature {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.cta-button-white {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.cta-button-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
}

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

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

.site-footer a {
    color: #FF6B35;
    text-decoration: none;
    margin: 0 10px;
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .site-header {
        padding: 10px 0;
    }
    
    .header-content {
        flex-direction: column;
        gap: 0;
        text-align: center;
    }
    
    .logo-text {
        font-size: 18px;
    }
    
    .trust-badge {
        display: none;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-left {
        padding-right: 0;
    }

    .hero-title {
        font-size: 28px;
        text-align: center;
    }

    .hero-subtitle-large {
        font-size: 18px;
        text-align: center;
    }
    
    .hero-left::before {
        content: "Only $499";
        display: block;
        background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
        color: #fff;
        padding: 10px 20px;
        border-radius: 25px;
        font-size: 16px;
        font-weight: 700;
        text-align: center;
        margin: 0 auto 15px auto;
        width: fit-content;
    }
    
    .hero-section {
        padding: 30px 0;
    }

    .form-card {
        position: static;
    }

    .badges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .badge-item {
        text-align: center;
    }
    
    .badge-item:last-child {
        grid-column: 1 / -1;
    }

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

    .video-content-grid {
        grid-template-columns: 1fr;
    }

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

    .process-steps {
        grid-template-columns: 1fr;
    }

    .cta-features {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 32px;
    }

    .section-intro {
        font-size: 16px;
    }
}
