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

/* --- landing_page_final.html STYLES --- */
body.page-landing {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
}

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

.page-landing .hero {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-landing .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    opacity: 0.3;
}

.page-landing .hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    align-items: center;
    gap: 40px;
    grid-template-columns: 1fr 1fr;
}

.page-landing .hero-text {
    text-align: left;
}

.page-landing .hero-text h1 { margin-bottom: 1rem; }
.page-landing .hero-text p { margin-bottom: 2rem; max-width: 90%; }
.page-landing .hero-image { text-align: center; }
.page-landing .hero-image img { max-width: 100%; height: auto; max-height: 450px; }
.page-landing .hero h1 { font-size: 2.5rem; margin-left: 0; margin-right: 0; max-width: none; }
.page-landing .hero p { font-size: 1.3rem; margin-left: 0; margin-right: 0; max-width: none; }

.page-landing .cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(40, 167, 69, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
    border: none;
}

.page-landing .cta-button:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(40, 167, 69, 0.4); }
.page-landing .cta-button.secondary { background: linear-gradient(45deg, #28a745, #20c997); box-shadow: 0 8px 20px rgba(40, 167, 69, 0.3); }
.page-landing .cta-button.secondary:hover { box-shadow: 0 12px 30px rgba(40, 167, 69, 0.4); }

.page-landing .pricing-card .cta-button { background: linear-gradient(45deg, #1e3c72, #2a5298); box-shadow: 0 8px 20px rgba(30, 60, 114, 0.3); width: 100%; max-width: 400px; margin: 20px auto; padding: 20px 40px; font-size: 1.3rem; position: relative; overflow: hidden; }
.page-landing .pricing-card .cta-button::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(45deg, #2a5298, #1e3c72); opacity: 0; transition: opacity 0.3s ease; z-index: -1; }
.page-landing .pricing-card .cta-button:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(30, 60, 114, 0.4); }
.page-landing .pricing-card .cta-button:hover::before { opacity: 1; }
.page-landing .pricing-card .cta-button i, .page-landing .pricing-card .cta-button span { position: relative; z-index: 2; }

.page-landing .section { padding: 80px 0; }
.page-landing .section.dark { background: #2c3e50; color: white; }
.page-landing .section.light-gray { background: #f8f9fa; }
.page-landing .section-title { font-size: 2.2rem; font-weight: 700; text-align: center; margin-bottom: 50px; position: relative; }
.page-landing .section-subtitle { font-size: 1.4rem; text-align: center; margin-bottom: 40px; opacity: 0.9; }

.page-landing .pain-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; max-width: 900px; margin: 40px auto 0; }
.page-landing .pain-item { padding: 30px; margin-bottom: 0; border-radius: 15px; font-size: 1.1rem; font-style: italic; text-align: center; transition: all 0.3s ease; display: flex; flex-direction: column; justify-content: center; align-items: center; background: white; color: #333; box-shadow: 0 15px 30px rgba(220, 53, 69, 0.1); border: 1px solid rgba(220, 53, 69, 0.1); position: relative; overflow: hidden; }
.page-landing .pain-item::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, #dc3545, #ff6b6b); }
.page-landing .pain-item:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(220, 53, 69, 0.15); }
.page-landing .pain-item i { font-size: 2.8rem; margin-bottom: 20px; display: block; color: #dc3545; background: rgba(220, 53, 69, 0.1); width: 80px; height: 80px; line-height: 80px; border-radius: 50%; transition: all 0.3s ease; }
.page-landing .pain-item:hover i { transform: scale(1.1); background: rgba(220, 53, 69, 0.15); }
.page-landing .pain-item p { position: relative; z-index: 1; }
.page-landing .section.light-gray .pain-item { background: linear-gradient(135deg, #fff 0%, #fff8f8 100%); }

.page-landing .reality-list { max-width: 900px; margin: 0 auto; }
.page-landing .reality-item { background: rgba(255, 255, 255, 0.1); color: white; padding: 25px; margin-bottom: 20px; border-radius: 10px; font-size: 1.1rem; border-left: 5px solid #ffc107; }
.page-landing .reality-item strong { color: #ffc107; font-weight: 700; }

.page-landing .benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; max-width: 1000px; margin: 0 auto; }
.page-landing .benefit-item { background: linear-gradient(135deg, #fff 0%, #f8faff 100%); padding: 35px; border-radius: 15px; box-shadow: 0 15px 30px rgba(30, 60, 114, 0.1); text-align: center; transition: all 0.3s ease; border: 1px solid rgba(42, 82, 152, 0.1); position: relative; overflow: hidden; }
.page-landing .benefit-item::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, #1e3c72, #2a5298); }
.page-landing .benefit-item:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(30, 60, 114, 0.15); }
.page-landing .benefit-icon { font-size: 3rem; color: #2a5298; margin-bottom: 25px; background: rgba(42, 82, 152, 0.1); width: 100px; height: 100px; line-height: 100px; border-radius: 50%; display: inline-block; transition: all 0.3s ease; }
.page-landing .benefit-item:hover .benefit-icon { transform: scale(1.1); background: rgba(42, 82, 152, 0.15); color: #1e3c72; }
.page-landing .benefit-text { font-size: 1.1rem; line-height: 1.7; color: #2c3e50; position: relative; z-index: 1; font-weight: 500; }
.page-landing .benefit-item strong { color: #1e3c72; font-weight: 600; }

.page-landing .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; margin-top: 60px; position: relative; }
.page-landing .feature-card { background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%); padding: 40px; border-radius: 20px; box-shadow: 0 15px 40px rgba(30, 60, 114, 0.1); text-align: center; position: relative; overflow: hidden; border: 1px solid rgba(42, 82, 152, 0.1); transition: all 0.3s ease; }
.page-landing .feature-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: linear-gradient(45deg, #1e3c72, #2a5298); }
.page-landing .feature-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(30, 60, 114, 0.15); }
.page-landing .feature-icon { font-size: 3rem; color: #2a5298; margin-bottom: 25px; background: rgba(42, 82, 152, 0.1); width: 100px; height: 100px; line-height: 100px; border-radius: 50%; display: inline-block; transition: all 0.3s ease; }
.page-landing .feature-card:hover .feature-icon { transform: scale(1.1); background: rgba(42, 82, 152, 0.15); color: #1e3c72; }
.page-landing .feature-title { font-size: 1.4rem; font-weight: 700; margin-bottom: 15px; background: linear-gradient(45deg, #1e3c72, #2a5298); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.page-landing .feature-desc { font-size: 1.1rem; color: #4a5568; line-height: 1.6; }
.page-landing .features-grid::before { content: ''; position: absolute; top: -30px; left: -30px; right: -30px; bottom: -30px; background: radial-gradient(circle at center, rgba(42, 82, 152, 0.05) 0%, rgba(42, 82, 152, 0) 70%); z-index: -1; border-radius: 30px; }

.page-landing .app-preview-section { background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%); padding: 100px 0; color: white; position: relative; overflow: hidden; }
.page-landing .app-preview-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 50 L50 0 L0 0 Z' fill='rgba(255,255,255,0.03)'/%3E%3C/svg%3E") repeat; opacity: 0.1; }
.page-landing .app-preview-header { text-align: center; margin-bottom: 60px; }
.page-landing .app-label { background: rgba(255, 255, 255, 0.1); padding: 8px 16px; border-radius: 20px; font-size: 0.9rem; font-weight: 500; display: inline-block; margin-bottom: 20px; }
.page-landing .app-subtitle { font-size: 1.2rem; opacity: 0.9; max-width: 600px; margin: 20px auto 0; }
.page-landing .app-showcase { display: flex; flex-direction: column; align-items: center; position: relative; }
.page-landing .app-frame { background: #f8faff; padding: 20px; border-radius: 40px; box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3); max-width: 380px; width: 100%; margin-bottom: 40px; position: relative; }
.page-landing .app-window { background: white; border-radius: 30px; overflow: hidden; padding: 20px; }
.page-landing .app-statusbar { padding: 5px 15px; margin-bottom: 20px; }
.page-landing .status-icons { display: flex; justify-content: flex-end; align-items: center; gap: 8px; color: #1e3c72; font-size: 0.9rem; }
.page-landing .time { font-weight: 600; margin: 0 8px; }
.page-landing .app-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 30px; }
.page-landing .user-welcome { display: flex; flex-direction: column; }
.page-landing .greeting { color: #666; font-size: 0.9rem; margin-bottom: 5px; }
.page-landing .dashboard-title { color: #1e3c72; font-size: 1.4rem; font-weight: 700; }
.page-landing .profile-icon { font-size: 2rem; color: #2a5298; }
.page-landing .progress-card { background: linear-gradient(135deg, #f8faff 0%, #fff 100%); border-radius: 20px; padding: 20px; margin-bottom: 25px; border: 1px solid rgba(42, 82, 152, 0.1); }
.page-landing .card-header { display: flex; align-items: center; gap: 10px; color: #1e3c72; font-weight: 600; margin-bottom: 20px; }
.page-landing .progress-ring { position: relative; width: 120px; height: 120px; margin: 0 auto; }
.page-landing .progress-ring-circle-bg { fill: none; stroke: #e9ecef; stroke-width: 8; }
.page-landing .progress-ring-circle { fill: none; stroke: #2a5298; stroke-width: 8; stroke-linecap: round; stroke-dasharray: 339.292; stroke-dashoffset: 125.538; transform: rotate(-90deg); transform-origin: 50% 50%; }
.page-landing .progress-center { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); text-align: center; }
.page-landing .progress-percentage { font-size: 1.8rem; font-weight: 700; color: #1e3c72; display: block; line-height: 1; }
.page-landing .progress-label { font-size: 0.8rem; color: #666; }
.page-landing .metrics-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 25px; }
.page-landing .metric-card { background: #f8faff; padding: 15px; border-radius: 15px; display: flex; align-items: center; gap: 15px; border: 1px solid rgba(42, 82, 152, 0.1); }
.page-landing .metric-icon { width: 45px; height: 45px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.page-landing .metric-icon.savings { background: rgba(40, 167, 69, 0.1); color: #28a745; }
.page-landing .metric-icon.countdown { background: rgba(255, 193, 7, 0.1); color: #ffc107; }
.page-landing .metric-info { display: flex; flex-direction: column; }
.page-landing .metric-value { font-size: 1.1rem; font-weight: 700; color: #1e3c72; }
.page-landing .metric-label { font-size: 0.8rem; color: #666; }
.page-landing .action-cards { display: flex; flex-direction: column; gap: 15px; margin-bottom: 25px; }
.page-landing .action-card { background: #f8faff; padding: 15px; border-radius: 15px; display: flex; align-items: center; gap: 15px; border: 1px solid rgba(42, 82, 152, 0.1); cursor: pointer; transition: all 0.3s ease; }
.page-landing .action-card:hover { transform: translateX(5px); background: white; box-shadow: 0 5px 15px rgba(42, 82, 152, 0.1); }
.page-landing .action-icon { width: 45px; height: 45px; background: rgba(42, 82, 152, 0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: #2a5298; font-size: 1.2rem; }
.page-landing .action-content { flex: 1; }
.page-landing .action-content h4 { color: #1e3c72; font-size: 1rem; margin: 0 0 3px 0; }
.page-landing .action-content p { color: #666; font-size: 0.8rem; margin: 0; }
.page-landing .action-arrow { color: #2a5298; opacity: 0.5; transition: all 0.3s ease; }
.page-landing .action-card:hover .action-arrow { opacity: 1; transform: translateX(5px); }
.page-landing .status-pill { background: rgba(40, 167, 69, 0.1); color: #28a745; padding: 12px 20px; border-radius: 30px; display: flex; align-items: center; justify-content: center; gap: 8px; font-weight: 600; font-size: 0.9rem; }
.page-landing .feature-cards { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; margin-top: 40px; }
.page-landing .feature-pill { background: rgba(255, 255, 255, 0.1); padding: 12px 20px; border-radius: 30px; display: flex; align-items: center; gap: 10px; font-size: 0.9rem; backdrop-filter: blur(10px); }

.page-landing .pricing-container { background: #2c3e50; padding: 80px 0; }
.page-landing .pricing-card { background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%); max-width: 600px; margin: 0 auto; border-radius: 20px; box-shadow: 0 25px 50px rgba(30, 60, 114, 0.15); padding: 40px; text-align: center; position: relative; border: 1px solid rgba(42, 82, 152, 0.1); transition: all 0.3s ease; }
.page-landing .pricing-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: linear-gradient(45deg, #1e3c72, #2a5298); }
.page-landing .pricing-card:hover { transform: translateY(-5px); box-shadow: 0 30px 60px rgba(30, 60, 114, 0.2); }
.page-landing .pricing-title { font-size: 1.8rem; font-weight: 700; background: linear-gradient(45deg, #1e3c72, #2a5298); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 20px; position: relative; display: inline-block; }
.page-landing .price-wrapper { margin-bottom: 30px; background: rgba(42, 82, 152, 0.03); padding: 30px 20px; border-radius: 15px; text-align: center; }
.page-landing .old-price { font-size: 1.3rem; text-decoration: line-through; color: #8c98a8; display: block; margin-bottom: 15px; }

/* Preço Parcelado */
.page-landing .installment-price { display: flex; align-items: baseline; justify-content: center; gap: 8px; margin-bottom: 15px; }
.page-landing .installment-count { font-size: 1.5rem; font-weight: 600; color: #2a5298; }
.page-landing .installment-value { font-size: 5rem; font-weight: 700; color: #28a745; line-height: 1; text-shadow: 2px 2px 4px rgba(40, 167, 69, 0.2); }

/* Preço à Vista */
.page-landing .cash-price { font-size: 1.3rem; color: #555; margin-top: 10px; }
.page-landing .cash-price strong { color: #2a5298; font-weight: 700; font-size: 1.5rem; }

.page-landing .pricing-note { font-size: 1rem; color: #2a5298; font-weight: 500; margin-top: 15px; }
.page-landing .value-stack-list { list-style: none; padding: 0; margin: 30px 0; text-align: left; display: inline-block; }
.page-landing .value-stack-item { display: flex; align-items: center; gap: 12px; font-size: 1.1rem; margin-bottom: 15px; padding: 10px 15px; border-radius: 8px; transition: all 0.3s ease; }
.page-landing .value-stack-item:hover { background: rgba(42, 82, 152, 0.05); transform: translateX(5px); }
.page-landing .value-stack-item i { color: #2a5298; font-size: 1.2rem; background: rgba(42, 82, 152, 0.1); width: 30px; height: 30px; line-height: 30px; border-radius: 50%; text-align: center; transition: all 0.3s ease; }
.page-landing .value-stack-item:hover i { background: rgba(42, 82, 152, 0.2); transform: scale(1.1); }
.page-landing .value-stack-item b { color: #1e3c72; }

.page-landing .countdown-timer { background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%); padding: 2rem; border-radius: 15px; margin-top: 30px; box-shadow: 0 15px 30px rgba(255, 65, 108, 0.2); animation: pulse-countdown 2s infinite; position: relative; overflow: hidden; }
@keyframes pulse-countdown { 0% { transform: scale(1); box-shadow: 0 15px 30px rgba(255, 65, 108, 0.2); } 50% { transform: scale(1.02); box-shadow: 0 20px 40px rgba(255, 65, 108, 0.3); } 100% { transform: scale(1); box-shadow: 0 15px 30px rgba(255, 65, 108, 0.2); } }
.page-landing .countdown-timer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 50 L50 0 L0 0 Z' fill='rgba(255,255,255,0.03)'/%3E%3C/svg%3E") repeat; opacity: 0.1; }
.page-landing .countdown-timer p { color: white; font-weight: 700; font-size: 1.2rem; margin-bottom: 20px; text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1); }
.page-landing .countdown-display { display: flex; justify-content: center; gap: 20px; position: relative; z-index: 1; }
.page-landing .countdown-block { background: rgba(255, 255, 255, 0.95); padding: 15px 25px; border-radius: 12px; text-align: center; min-width: 100px; box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1); }
.page-landing .countdown-block span { font-size: 2.2rem; font-weight: 700; color: #ff416c; display: block; line-height: 1; margin-bottom: 5px; }
.page-landing .countdown-block small { font-size: 0.85rem; color: #666; text-transform: uppercase; letter-spacing: 1px; display: block; }

.page-landing .guarantee-box { background: #2c3e50; color: white; padding: 40px; border-radius: 20px; text-align: center; max-width: 600px; margin: 40px auto; box-shadow: 0 15px 40px rgba(44, 62, 80, 0.3); }
.page-landing .guarantee-icon { font-size: 4rem; margin-bottom: 20px; }
.page-landing .guarantee-text { font-size: 1.2rem; line-height: 1.6; }

.page-landing .faq-container { max-width: 800px; margin: 0 auto; }
.page-landing .faq-item { background: white; margin-bottom: 15px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); overflow: hidden; }
.page-landing .faq-question { background: #f8f9fa; padding: 20px; cursor: pointer; font-weight: 600; font-size: 1.1rem; display: flex; justify-content: space-between; align-items: center; transition: background 0.3s ease; }
.page-landing .faq-question:hover { background: #e9ecef; }
.page-landing .faq-answer { padding: 20px; display: none; background: white; border-top: 1px solid #e9ecef; line-height: 1.6; }
.page-landing .faq-answer.show { display: block; }
.page-landing .faq-toggle { transition: transform 0.3s ease; }
.page-landing .faq-toggle.rotated { transform: rotate(45deg); }

.page-landing .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin: 60px 0; }
.page-landing .stat-item { background: white; padding: 30px; border-radius: 15px; text-align: center; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); }
.page-landing .stat-number { font-size: 2.5rem; font-weight: 700; color: #1e3c72; margin-bottom: 10px; }
.page-landing .stat-label { font-size: 1.1rem; color: #333; opacity: 0.9; }

.page-landing .testimonials-section { padding: 80px 0; background: #f8f9fa; }
.page-landing .testimonial-container { position: relative; max-width: 1200px; margin: 0 auto; }
.page-landing .testimonial-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.page-landing .testimonial-card { background: white; border-radius: 15px; padding: 30px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); display: flex; flex-direction: column; }
.page-landing .testimonial-stars { color: #ffc107; margin-bottom: 15px; }
.page-landing .testimonial-quote { font-size: 1.1rem; font-style: italic; color: #333; flex-grow: 1; margin-bottom: 20px; }
.page-landing .testimonial-author { font-weight: 600; color: #1e3c72; text-align: right; }
.page-landing .testimonial-nav { display: none; }

.page-landing .final-cta h2 { font-size: 2.8rem; font-weight: 700; margin-bottom: 40px; text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); }
.page-landing .final-cta .cta-button { font-size: 1.4rem; padding: 25px 50px; margin-top: 20px; }

.page-landing .fade-in { opacity: 0; transform: translateY(30px); transition: all 0.6s ease; }
.page-landing .fade-in.visible { opacity: 1; transform: translateY(0); }

.page-landing .pulse, .page-waitlist .pulse { animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7); } 70% { box-shadow: 0 0 0 10px rgba(40, 167, 69, 0); } 100% { box-shadow: 0 0 0 0 rgba(40, 167, 69, 0); } }

.page-landing .floating { animation: floating 3s ease-in-out infinite; }
@keyframes floating { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-10px); } }

.page-landing .text-center { text-align: center; }
.page-landing .mb-30 { margin-bottom: 30px; }
.page-landing .mt-40 { margin-top: 40px; }
.page-landing .font-bold { font-weight: 700; }
.page-landing .text-highlight { background: linear-gradient(45deg, #ffc107, #fd7e14); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* --- lista_espera.html STYLES --- */
body.page-waitlist {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: white;
    background: #2c3e50;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

.page-waitlist .container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.page-waitlist .hero-content {
    text-align: center;
    margin-bottom: 40px;
}

.page-waitlist .hero-content h1 { font-size: 1.8rem; font-weight: 700; margin-bottom: 20px; text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); }
.page-waitlist .hero-content p { font-size: 1.1rem; opacity: 0.95; max-width: 600px; margin-left: auto; margin-right: auto; background: rgba(0, 0, 0, 0.1); padding: 15px; border-radius: 10px; }

.page-waitlist .form-card { background: white; color: #333; padding: 40px; border-radius: 20px; box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2); position: relative; overflow: hidden; }
.page-waitlist .form-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: linear-gradient(45deg, #28a745, #20c997); }

.page-waitlist .input-group { position: relative; margin-bottom: 25px; }
.page-waitlist .input-group i { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: #999; }
.page-waitlist .form-input { width: 100%; padding: 15px 15px 15px 45px; border-radius: 10px; border: 1px solid #ddd; font-size: 1rem; transition: border-color 0.3s ease, box-shadow 0.3s ease; }
.page-waitlist .form-input:focus { outline: none; border-color: #28a745; box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.2); }

.page-waitlist .cta-button { display: block; width: 100%; background: linear-gradient(45deg, #28a745, #20c997); color: white; padding: 18px 40px; font-size: 1.2rem; font-weight: 600; text-decoration: none; border-radius: 50px; transition: all 0.3s ease; box-shadow: 0 8px 20px rgba(40, 167, 69, 0.3); text-transform: uppercase; letter-spacing: 1px; border: none; cursor: pointer; }
.page-waitlist .cta-button:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(40, 167, 69, 0.4); }

.page-waitlist .trust-element { text-align: center; margin-top: 20px; font-size: 0.9rem; color: rgba(255, 255, 255, 0.8); display: flex; align-items: center; justify-content: center; gap: 8px; }

.page-waitlist .success-message { display: none; text-align: center; padding: 40px; }
.page-waitlist .success-message i { font-size: 4rem; color: #28a745; margin-bottom: 20px; }
.page-waitlist .success-message p { font-size: 1.2rem; font-weight: 600; color: white; }

/* --- RESPONSIVE STYLES (MEDIA QUERIES) --- */

/* Applied to page-landing */
@media (max-width: 768px) {
    .page-landing .hero-content { grid-template-columns: 1fr; }
    .page-landing .hero-text { text-align: center; }
    .page-landing .hero h1, .page-landing .hero p { margin-left: auto; margin-right: auto; max-width: 800px; }
    .page-landing .testimonial-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
    .page-landing .testimonial-grid::-webkit-scrollbar { display: none; }
    .page-landing .testimonial-card { flex: 0 0 90%; scroll-snap-align: center; margin-right: 20px; }
    .page-landing .testimonial-nav { display: flex; justify-content: center; gap: 20px; margin-top: 30px; }
    .page-landing .testimonial-nav button { background: #2a5298; color: white; border: none; border-radius: 50%; width: 40px; height: 40px; font-size: 1rem; cursor: pointer; transition: background 0.3s ease; }
    .page-landing .testimonial-nav button:hover { background: #1e3c72; }
    .page-landing .section-title { font-size: 1.8rem; }
    .page-landing .section { padding: 50px 0; }
    .page-landing .container { padding: 0 15px; }
    .page-landing .cta-button, .page-waitlist .cta-button {
        display: block;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        text-align: center;
    }
    .page-landing .benefits-grid, .page-landing .features-grid { grid-template-columns: 1fr; }
    .page-landing .new-price { font-size: 2.5rem; }
    .page-landing .final-cta h2 { font-size: 2.2rem; }
}

@media (max-width: 480px) {
    .page-landing .hero { padding: 40px 0; }
    .page-landing .hero h1 { font-size: 1.8rem; }
    .page-landing .hero p { font-size: 1rem; }
    .page-landing .section-title { font-size: 1.6rem; }
    .page-landing .cta-button, .page-waitlist .cta-button { padding: 15px 30px; font-size: 1rem; }
    .page-waitlist .hero-content h1 { font-size: 1.5rem; }
    .page-waitlist .form-card { padding: 30px; }
}

/* Applied to page-waitlist */
@media (min-width: 768px) {
    .page-waitlist .cta-button { display: inline-block; width: auto; }
    .page-waitlist #form-container { text-align: center; }
}