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

body {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: #2d3748;
    background: #fffbf5;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 28px;
}

/* Header */
header {
    padding: 28px 0;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-size: 26px;
    font-weight: 800;
    color: #d97706;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-image {
    height: 40px;
    width: auto;
}

.coming-soon {
    background: #fef3c7;
    color: #92400e;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 100%);
}

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

h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    color: #1a202c;
    margin-bottom: 24px;
}

h1 .emoji {
    display: inline-block;
}

.subheadline {
    font-size: 21px;
    color: #4a5568;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-form {
    background: white;
    padding: 8px;
    border-radius: 12px;
    display: flex;
    gap: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 16px;
}

.cta-form input {
    flex: 1;
    padding: 16px 20px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    outline: none;
    font-family: inherit;
}

.cta-button {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 700;
    background: #d97706;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    font-family: inherit;
}

.cta-button:hover {
    background: #b45309;
    transform: scale(1.02);
}

.error-message {
    font-size: 14px;
    color: #dc2626;
    text-align: center;
    margin-top: 8px;
    display: none;
    font-weight: 600;
}

.launch-note {
    font-size: 15px;
    color: #6b7280;
    text-align: center;
}

.launch-note strong {
    color: #d97706;
    font-weight: 700;
}

.hero-image {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    text-align: center;
    overflow: hidden;
}

.mockup {
    font-size: 120px;
}

.mockup-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Trust Bar */
.trust-bar {
    padding: 32px 0;
    background: white;
    border-bottom: 2px solid #fef3c7;
}

.trust-items {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #6b7280;
    font-weight: 600;
}

.trust-item-icon {
    font-size: 24px;
}

/* How It Works */
.how-it-works {
    padding: 100px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #1a202c;
}

.section-header p {
    font-size: 19px;
    color: #6b7280;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    color: white;
    margin: 0 auto 24px;
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.3);
}

.step h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 800;
    color: #1a202c;
}

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

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background: #fffbf5;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.benefit {
    background: white;
    padding: 36px;
    border-radius: 16px;
    border: 2px solid #fed7aa;
    transition: all 0.3s;
}

.benefit:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(217, 119, 6, 0.15);
    border-color: #fb923c;
}

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

.benefit h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 800;
    color: #1a202c;
}

.benefit p {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.7;
}

/* Testimonial-style Trust Section */
.trust-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    text-align: center;
}

.trust-section h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 24px;
}

.trust-section p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 48px;
    opacity: 0.95;
    line-height: 1.7;
}

.trust-features {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.trust-feature {
    text-align: center;
}

.trust-feature-icon {
    font-size: 56px;
    margin-bottom: 16px;
}

.trust-feature h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.trust-feature p {
    font-size: 15px;
    opacity: 0.9;
    margin: 0;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: white;
}

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

.faq-item {
    background: #fffbf5;
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 2px solid #fed7aa;
}

.faq-item h3 {
    font-size: 20px;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 12px;
}

.faq-item p {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 100%);
    text-align: center;
}

.cta-section h2 {
    font-size: 46px;
    margin-bottom: 20px;
    font-weight: 800;
    color: #1a202c;
}

.cta-section .subheadline {
    color: #4a5568;
    margin: 0 auto 40px;
    max-width: 600px;
}

.cta-section .cta-form {
    max-width: 550px;
    margin: 0 auto 16px;
}

/* Footer */
footer {
    padding: 60px 0;
    background: #1a202c;
    color: white;
}

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

.footer-logo {
    font-size: 28px;
    font-weight: 800;
    color: #fbbf24;
    margin-bottom: 24px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
}

.footer-links a:hover {
    color: #fbbf24;
}

.copyright {
    color: #94a3b8;
    font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-image {
        order: -1;
    }

    h1 {
        font-size: 38px;
    }

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

    .section-header h2 {
        font-size: 32px;
    }

    .cta-section h2 {
        font-size: 34px;
    }

    .cta-form {
        flex-direction: column;
    }

    .hero {
        padding: 50px 0;
    }

    .trust-features {
        gap: 40px;
    }
}

/* Survey Dialog Modal */
.dialog-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dialog-overlay.show {
    display: flex;
    opacity: 1;
}

.dialog-container {
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 540px;
    width: 90%;
    position: relative;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.dialog-overlay.show .dialog-container {
    transform: scale(1);
}

.dialog-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    color: #9ca3af;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}

.dialog-close:hover {
    background: #f3f4f6;
    color: #1a202c;
}

.dialog-content {
    position: relative;
    overflow: hidden;
    height: 475px;
}

.survey-screen {
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.4s ease;
    height: 100%;
    flex-direction: column;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.survey-screen.active {
    display: flex;
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.survey-screen.slide-out-left {
    transform: translateX(-100%);
    opacity: 0;
}

.survey-screen h3 {
    font-size: 28px;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 16px;
    text-align: center;
    flex-shrink: 0;
}

.survey-screen p {
    font-size: 17px;
    color: #6b7280;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 32px;
    flex-shrink: 0;
}

.thank-you-subtext {
    font-size: 15px;
    color: #9ca3af;
    margin-top: 16px;
    margin-bottom: 32px;
}

.survey-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    overflow-y: auto;
}

.radio-option {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.radio-option:hover {
    background: #fef3c7;
    border-color: #fed7aa;
}

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

.radio-option input[type="radio"]:checked + .radio-label {
    font-weight: 700;
    color: #1a202c;
}

.radio-option:has(input[type="radio"]:checked) {
    background: #fef3c7;
    border-color: #d97706;
}

.radio-label {
    font-size: 16px;
    color: #4a5568;
    cursor: pointer;
    flex: 1;
}

.dialog-button {
    width: 100%;
    padding: 16px 32px;
    font-size: 17px;
    font-weight: 700;
    background: #d97706;
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    margin-top: auto;
    flex-shrink: 0;
}

.dialog-button:hover:not(:disabled) {
    background: #b45309;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(217, 119, 6, 0.3);
}

.dialog-button:disabled {
    background: #d1d5db;
    cursor: not-allowed;
    opacity: 0.6;
}

/* Mobile Responsive for Dialog */
@media (max-width: 768px) {
    .dialog-container {
        padding: 32px 24px;
        max-width: 95%;
    }

    .survey-screen h3 {
        font-size: 24px;
    }

    .survey-screen p {
        font-size: 16px;
    }

    .radio-option {
        padding: 14px 16px;
    }

    .radio-label {
        font-size: 15px;
    }
}
