/* Reset and Base Styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background: linear-gradient(to bottom, #fff7ed, #ffffff, #fff7ed);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hidden {
    display: none !important;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #fed7aa;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #f97316, #ef4444);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.3);
}

.logo-icon span {
    color: white;
    font-weight: 800;
    font-size: 20px;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, #ea580c, #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: #4b5563;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #ea580c;
}

.privacy-link {
    background: none;
    border: none;
    color: #6b7280;
    font-size: 14px;
    cursor: pointer;
    transition: color 0.2s;
    font-family: inherit;
}

.privacy-link:hover {
    color: #ea580c;
}

/* Hero Section */
.hero {
    padding: 64px 0 96px;
}

.hero-content {
    text-align: center;
    margin-bottom: 48px;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 24px;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #ea580c, #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: #4b5563;
    max-width: 640px;
    margin: 0 auto 32px;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.stat-card {
    background: white;
    border-radius: 16px;
    padding: 24px 32px;
    box-shadow: 0 10px 40px rgba(249, 115, 22, 0.1);
    border: 1px solid #fed7aa;
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: #ea580c;
}

.stat-label {
    color: #6b7280;
    margin-top: 4px;
}

/* Form */
.form-container {
    max-width: 480px;
    margin: 0 auto;
}

.form-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 25px 50px rgba(249, 115, 22, 0.15);
    border: 1px solid #fed7aa;
}

.form-title {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    text-align: center;
    margin-bottom: 8px;
}

.form-subtitle {
    color: #6b7280;
    text-align: center;
    margin-bottom: 32px;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-weight: 500;
    color: #374151;
}

.form-input {
    height: 48px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 0 16px;
    font-size: 16px;
    transition: border-color 0.2s, box-shadow 0.2s;
    font-family: inherit;
}

.form-input:focus {
    outline: none;
    border-color: #f97316;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.form-input::placeholder {
    color: #9ca3af;
}

.submit-btn {
    height: 56px;
    background: linear-gradient(135deg, #f97316, #ef4444);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
    transition: all 0.2s;
    font-family: inherit;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #ea580c, #dc2626);
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.4);
    transform: translateY(-2px);
}

.form-privacy {
    font-size: 12px;
    color: #6b7280;
    text-align: center;
    margin-top: 24px;
}

.privacy-inline-link {
    background: none;
    border: none;
    color: #ea580c;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
}

.privacy-inline-link:hover {
    text-decoration: underline;
}

/* Success Card */
.success-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 25px 50px rgba(249, 115, 22, 0.15);
    border: 1px solid #fed7aa;
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
}

.checkmark {
    width: 40px;
    height: 40px;
    color: white;
}

.success-title {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
}

.success-text {
    color: #6b7280;
    font-size: 18px;
    margin-bottom: 32px;
}

.reset-btn {
    background: transparent;
    border: 1px solid #fed7aa;
    border-radius: 12px;
    padding: 12px 32px;
    color: #ea580c;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
    font-family: inherit;
}

.reset-btn:hover {
    background: #fff7ed;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 20px;
    color: #6b7280;
    max-width: 640px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.benefit-card {
    background: linear-gradient(135deg, #fff7ed, #fef2f2);
    border-radius: 24px;
    padding: 32px;
    border: 1px solid #fed7aa;
    transition: box-shadow 0.2s, transform 0.2s;
}

.benefit-card:hover {
    box-shadow: 0 20px 50px rgba(249, 115, 22, 0.15);
    transform: translateY(-4px);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #f97316, #ef4444);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
}

.benefit-icon span {
    color: white;
    font-size: 24px;
    font-weight: 800;
}

.benefit-title {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

.benefit-text {
    color: #6b7280;
    line-height: 1.7;
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background: linear-gradient(135deg, #f97316, #ef4444);
}

.section-title-white {
    color: white;
}

.section-subtitle-light {
    color: rgba(255, 255, 255, 0.9);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.step-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 24px;
    padding: 32px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.step-icon {
    width: 64px;
    height: 64px;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.step-icon span {
    color: #ea580c;
    font-size: 24px;
    font-weight: 800;
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.step-text {
    color: rgba(255, 255, 255, 0.9);
}

/* Reviews */
.reviews {
    padding: 80px 0;
    background: #f9fafb;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.review-card {
    background: white;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: box-shadow 0.2s;
}

.review-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.star {
    width: 20px;
    height: 20px;
    color: #fbbf24;
}

.review-text {
    color: #4b5563;
    margin-bottom: 24px;
    line-height: 1.7;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
}

.author-avatar.blue {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.author-avatar.pink {
    background: linear-gradient(135deg, #ec4899, #db2777);
}

.author-avatar.green {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.author-avatar.purple {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.author-avatar.orange {
    background: linear-gradient(135deg, #f97316, #ea580c);
}

.author-avatar.teal {
    background: linear-gradient(135deg, #14b8a6, #0d9488);
}

.author-name {
    font-weight: 600;
    color: #111827;
}

.author-location {
    font-size: 14px;
    color: #6b7280;
}

/* CTA */
.cta {
    padding: 80px 0;
    text-align: center;
}

.cta-title {
    font-size: 36px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 16px;
}

.cta-text {
    font-size: 20px;
    color: #6b7280;
    margin-bottom: 32px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    padding: 0 40px;
    background: linear-gradient(135deg, #f97316, #ef4444);
    border-radius: 12px;
    color: white;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
    transition: all 0.2s;
}

.cta-btn:hover {
    background: linear-gradient(135deg, #ea580c, #dc2626);
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.4);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #111827;
    color: #9ca3af;
    padding: 48px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 32px;
}

.footer-description {
    margin-top: 16px;
    line-height: 1.7;
}

.footer-title {
    color: white;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a,
.footer-links button {
    color: #9ca3af;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    padding: 0;
    transition: color 0.2s;
}

.footer-links a:hover,
.footer-links button:hover {
    color: #f97316;
}

.footer-contact a {
    color: #f97316;
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 32px;
    text-align: center;
    font-size: 14px;
}

.footer-bottom p {
    margin-bottom: 4px;
}

.copyright {
    margin-top: 16px;
    color: #6b7280;
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 200;
    padding: 20px;
}

.modal {
    background: white;
    border-radius: 24px;
    max-width: 720px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 32px;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    background: white;
    z-index: 1;
}

.modal-title {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
}

.modal-close {
    background: none;
    border: none;
    font-size: 32px;
    color: #6b7280;
    cursor: pointer;
    line-height: 1;
}

.modal-close:hover {
    color: #111827;
}

.modal-content {
    padding: 24px 32px;
}

.modal-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin: 24px 0 12px;
}

.modal-content h3:first-child {
    margin-top: 0;
}

.modal-content p {
    color: #4b5563;
    margin-bottom: 16px;
    line-height: 1.7;
}

.modal-content ul {
    color: #4b5563;
    margin-bottom: 16px;
    padding-left: 24px;
}

.modal-content li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.modal-content a {
    color: #ea580c;
    text-decoration: none;
}

.modal-content a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 1024px) {
    .benefits-grid,
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
        gap: 16px;
    }

    .nav {
        display: none;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .stats {
        gap: 16px;
    }

    .stat-card {
        padding: 16px 24px;
    }

    .form-card,
    .success-card {
        padding: 24px;
    }

    .section-title {
        font-size: 28px;
    }

    .benefits-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .cta-title {
        font-size: 28px;
    }
}
