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

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

.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

/* Header */
.site-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.site-header .container {
    max-width: 800px;
}

.logo {
    margin-bottom: 12px;
    display: inline-block;
}

.logo img {
    height: 250px;
    width: auto;
    display: block;
}

.tagline {
    font-size: 1.3rem;
    opacity: 0.95;
    font-weight: 400;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 20px 100px;
    text-align: center;
    margin-top: -20px;
}

.hero-section .container {
    max-width: 900px;
}

.hero-headline {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.hero-subheadline {
    font-size: 1.3rem;
    line-height: 1.6;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto 50px;
}

/* Hero Signup Box */
.hero-signup-box {
    background: white;
    border-radius: 16px;
    padding: 40px 45px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-form-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 12px;
    color: #1f2937;
    font-weight: 700;
}

.hero-form-subtitle {
    text-align: center;
    color: #6b7280;
    margin-bottom: 30px;
    line-height: 1.6;
    font-size: 1rem;
}

.hero-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-trust-text {
    text-align: center;
    color: #10b981;
    font-size: 0.9rem;
    margin-top: 16px;
    font-weight: 500;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 20px;
    background: #f9fafb;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    margin-top: 20px;
}

.benefit-item {
    text-align: center;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.benefit-item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #1f2937;
    font-weight: 600;
}

.benefit-item p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 1rem;
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #1f2937;
    font-weight: 700;
}

/* How It Works Section */
.how-it-works-section {
    padding: 80px 20px;
    background: white;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-top: 20px;
}

.step-item {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #1f2937;
    font-weight: 600;
}

.step-item p {
    color: #6b7280;
    line-height: 1.6;
}

/* Signup Section */
.signup-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.signup-box {
    background: white;
    border-radius: 16px;
    padding: 50px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.signup-box h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 16px;
    color: #1f2937;
}

.signup-description {
    text-align: center;
    color: #6b7280;
    margin-bottom: 35px;
    line-height: 1.6;
    font-size: 1.05rem;
}

.signup-form {
    margin-top: 30px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1f2937;
    font-size: 0.95rem;
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #667eea;
}

.form-helper-text {
    text-align: center;
    color: #6b7280;
    font-size: 0.9rem;
    margin: 20px 0;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.message {
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    text-align: center;
}

.error-message {
    background-color: #fee;
    color: #c33;
    border: 1px solid #fcc;
}

.success-message {
    background-color: #efe;
    color: #3c3;
    border: 1px solid #cfc;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 20px;
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 20px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.pricing-card-featured {
    border-color: #667eea;
    border-width: 3px;
    background: linear-gradient(to bottom, #f8f9ff 0%, white 100%);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
}

.pricing-price {
    margin-bottom: 30px;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: #1f2937;
}

.price-period {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.pricing-features li {
    padding: 12px 0;
    color: #4b5563;
    font-size: 1rem;
    border-bottom: 1px solid #f3f4f6;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-btn {
    width: 100%;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-btn-solid {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
}

.pricing-btn-solid:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.pricing-btn-outline {
    background: white;
    color: #667eea;
    border: 2px solid #667eea;
}

.pricing-btn-outline:hover {
    background: #667eea;
    color: white;
}

/* Who It's For Section */
.who-section {
    padding: 80px 20px;
    background: #f9fafb;
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.who-item {
    background: white;
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    font-size: 1.1rem;
    color: #1f2937;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.who-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
    background: white;
}

.faq-section .container {
    max-width: 800px;
}

.faq-list {
    margin-top: 20px;
}

.faq-item {
    background: #f9fafb;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #1f2937;
    font-weight: 600;
}

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

/* Footer */
.site-footer {
    background: #1f2937;
    color: #9ca3af;
    padding: 30px 20px;
    text-align: center;
    margin-top: auto;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.modal-content {
    background: white;
    margin: 5% auto;
    padding: 40px 50px;
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #9ca3af;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    color: #1f2937;
}

.modal-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
    text-align: center;
}

.modal-subtitle {
    text-align: center;
    color: #6b7280;
    margin-bottom: 30px;
    font-size: 1rem;
}

.modal-subtitle #modal-plan-price {
    font-weight: 700;
    color: #667eea;
}

.modal-form {
    margin-top: 20px;
}

.checkbox-group {
    margin-bottom: 20px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.95rem;
    color: #4b5563;
    font-weight: 400;
}

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

.checkbox-label span {
    flex: 1;
}

.tos-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.tos-link:hover {
    text-decoration: underline;
}

.modal-submit-btn {
    margin-top: 10px;
}

.modal-trust-text {
    text-align: center;
    color: #10b981;
    font-size: 0.9rem;
    margin-top: 16px;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        font-size: 2.2rem;
    }

    .tagline {
        font-size: 1.1rem;
    }

    .hero-headline {
        font-size: 2rem;
    }

    .hero-subheadline {
        font-size: 1.1rem;
    }

    .hero-signup-box {
        padding: 30px 25px;
    }

    .hero-form-title {
        font-size: 1.5rem;
    }

    .hero-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .benefits-grid,
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .signup-box {
        padding: 35px 25px;
    }

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

    .site-header {
        padding: 40px 20px;
    }

    .hero-section {
        padding: 60px 20px 80px;
    }

    .benefits-section,
    .how-it-works-section,
    .signup-section,
    .pricing-section,
    .who-section,
    .faq-section {
        padding: 60px 20px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pricing-card {
        padding: 35px 25px;
    }

    .price-amount {
        font-size: 2.5rem;
    }

    .modal-content {
        margin: 10% auto;
        padding: 30px 25px;
        width: 95%;
    }

    .modal-title {
        font-size: 1.5rem;
    }

    .modal-subtitle {
        font-size: 0.9rem;
    }

    .checkbox-label {
        font-size: 0.85rem;
    }
}