/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Section CTA Styling */
.section-cta {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e9ecef;
}

.section-cta .cta-button {
    padding: 20px 40px;
    font-size: 1.1rem;
}

.section-cta .cta-subtext {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 5px;
    opacity: 0.9;
}

/* Income CTA */
.income-cta {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e9ecef;
}

.income-cta .cta-button {
    padding: 25px 50px;
    font-size: 1.3rem;
}

.income-cta .cta-subtext {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 5px;
    opacity: 0.9;
}

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

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

/* Urgency Bar */
.urgency-bar {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    text-align: center;
    padding: 12px 20px;
    font-weight: 600;
    font-size: 0.95rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    animation: pulse 2s infinite;
}

@media (max-width: 768px) {
    .urgency-bar {
        padding: 8px 15px;
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    .urgency-bar .countdown {
        display: block;
        margin-top: 3px;
        font-size: 0.9rem;
        font-weight: 700;
    }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.9; }
}

.urgency-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-weight: 600;
    font-size: 16px;
}

.urgency-icon {
    font-size: 20px;
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-5px); }
    60% { transform: translateY(-3px); }
}

.countdown-timer {
    background: rgba(255,255,255,0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-family: 'Courier New', monospace;
    font-weight: bold;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.breaking-badge {
    display: inline-block;
    background: #ff6b35;
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 30px;
    animation: slideInDown 0.8s ease-out;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

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

.badge-icon {
    margin-right: 8px;
    font-size: 16px;
}

.hero-headline {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-headline .highlight {
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
}

.hero-headline .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 4px;
    background: #ffd700;
    border-radius: 2px;
}

.hero-headline .subtext {
    display: block;
    font-size: 2rem;
    font-weight: 600;
    margin-top: 15px;
    color: #e0e0e0;
}

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

.hero-subheadline {
    font-size: 1.3rem;
    margin-bottom: 50px;
    color: #f0f0f0;
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Problem/Solution Section */
.problem-solution {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin: 50px 0;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.problems, .solutions {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.problems h3, .solutions h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.problems h3 {
    color: #ffcccb;
}

.solutions h3 {
    color: #90ee90;
}

.problems ul, .solutions ul {
    list-style: none;
}

.problems li, .solutions li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
}

.problems i {
    color: #ff6b6b;
    font-size: 1.2rem;
}

.solutions i {
    color: #51cf66;
    font-size: 1.2rem;
}

/* CTA Button */
.hero-cta {
    animation: fadeInUp 1s ease-out 1.2s both;
}

.cta-button {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border: none;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(40, 167, 69, 0.6);
}

.cta-button:active {
    transform: translateY(-1px);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-text {
    display: block;
    font-size: 1.2rem;
}

.cta-subtext {
    display: block;
    font-size: 0.9rem;
    font-weight: 400;
    margin-top: 5px;
    opacity: 0.9;
}

.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.cta-benefits span {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Social Proof Section */
.social-proof {
    padding: 80px 0;
    background: #f8f9fa;
}

.social-proof h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
    font-weight: 700;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
}

.stars {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #ffd700;
}

.testimonial p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.6;
}

.author {
    font-weight: 600;
    color: #333;
}

/* What You'll Do Section */
.what-youll-do {
    padding: 80px 0;
    background: white;
}

.what-youll-do h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
    font-weight: 700;
}

.job-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.job-type {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.job-type:hover {
    transform: translateY(-10px);
}

.job-type::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    transition: transform 0.5s ease;
    transform: scale(0);
}

.job-type:hover::before {
    transform: scale(1);
}

.job-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.job-type h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.job-type p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.job-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255,255,255,0.2);
    padding: 15px 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.time, .pay {
    font-weight: 600;
    font-size: 1.1rem;
}

.pay {
    color: #ffd700;
    font-size: 1.3rem;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: #f8f9fa;
}

.benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
    font-weight: 700;
}

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

.benefit {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.benefit:hover {
    transform: translateY(-5px);
}

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

.benefit h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: 700;
}

.benefit p {
    color: #666;
    line-height: 1.6;
}

/* Income Calculator */
.income-calculator {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.income-calculator h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: 700;
}

.calculator {
    background: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    max-width: 600px;
    margin: 0 auto 50px;
}

.calculator-input {
    text-align: center;
    margin-bottom: 30px;
}

.calculator-input label {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

#assignments {
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: rgba(255,255,255,0.3);
    outline: none;
    margin-bottom: 15px;
}

#assignments::-webkit-slider-thumb {
    appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #ffd700;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

#assignment-count {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd700;
}

.calculator-result {
    text-align: center;
    padding: 30px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
}

.income-label {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.income-amount {
    font-size: 3rem;
    font-weight: 800;
    color: #ffd700;
    display: block;
    margin-bottom: 10px;
}

.income-breakdown {
    font-size: 1.2rem;
    opacity: 0.9;
}

.income-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.tier {
    background: rgba(255,255,255,0.1);
    padding: 25px 20px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.tier.active {
    border-color: #ffd700;
    background: rgba(255,215,0,0.2);
}

.tier h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.tier p {
    margin-bottom: 15px;
    opacity: 0.9;
}

.tier-income {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffd700;
}

/* Urgency & Scarcity */
.urgency-scarcity {
    padding: 60px 0;
    background: #fff3cd;
}

.urgency-box {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.urgency-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.warning-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: shake 2s infinite;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.urgency-box h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.urgency-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    position: relative;
    z-index: 2;
}

.deadline, .status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Risk Reversal */
.risk-reversal {
    padding: 80px 0;
    background: white;
}

.risk-reversal h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
    font-weight: 700;
}

.trust-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    font-weight: 600;
    color: #333;
    transition: transform 0.3s ease;
}

.trust-item:hover {
    transform: translateX(10px);
}

.trust-item i {
    color: #51cf66;
    font-size: 1.5rem;
}

/* Application Form */
.application-form {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.form-header {
    text-align: center;
    margin-bottom: 50px;
}

.form-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.form-header p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.form-benefits {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    font-size: 0.9rem;
}

.form-benefits span {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.9;
}

.application-form-container {
    background: rgba(255,255,255,0.1);
    padding: 50px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    max-width: 800px;
    margin: 0 auto;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: white;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 10px;
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffd700;
    background: rgba(255,255,255,0.2);
}

.form-group select option {
    color: #333;
    background: white;
    padding: 10px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.7);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #ffd700;
    border-color: #ffd700;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #333;
    font-weight: bold;
}

.submit-btn {
    width: 100%;
    margin-top: 30px;
    padding: 25px;
    font-size: 1.3rem;
}

/* More Testimonials */
.more-testimonials {
    padding: 80px 0;
    background: #f8f9fa;
}

.more-testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
    font-weight: 700;
}

.testimonial-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.testimonial-content p {
    font-size: 1.2rem;
    font-style: italic;
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
}

.testimonial-author strong {
    display: block;
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #666;
    font-size: 0.95rem;
}

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

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
    font-weight: 700;
}

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

.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #667eea;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 0 25px 0;
    color: #666;
    line-height: 1.6;
}

/* Final CTA */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    text-align: center;
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.warning-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.bonus-offers {
    background: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
}

.bonus-offers h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.bonus-offers ul {
    list-style: none;
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.bonus-offers li {
    padding: 10px 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.final-cta-btn {
    font-size: 1.3rem;
    padding: 25px 50px;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.badge {
    background: #667eea;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.footer-legal {
    text-align: right;
}

.legal-links {
    margin-top: 10px;
}

.legal-links a {
    color: #ccc;
    text-decoration: none;
    margin-left: 20px;
    font-size: 0.9rem;
}

.legal-links a:hover {
    color: white;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .hero-headline .subtext {
        font-size: 1.5rem;
    }
    
    .problem-solution {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .application-form-container {
        padding: 30px 20px;
    }
    
    .urgency-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .cta-benefits {
        flex-direction: column;
        gap: 15px;
    }
    
    .form-benefits {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        text-align: center;
    }
    
    .legal-links a {
        margin: 0 10px;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2rem;
    }
    
    .hero-headline .subtext {
        font-size: 1.2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .testimonial-cards {
        grid-template-columns: 1fr;
    }
    
    .job-types {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .income-tiers {
        grid-template-columns: 1fr;
    }
    
    .trust-indicators {
        grid-template-columns: 1fr;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Success and Error Messages */
.success-message, .error-message {
    display: none;
    margin: 30px auto;
    padding: 30px;
    max-width: 600px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    animation: slideIn 0.5s ease-out;
}

.success-message {
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f9f0 100%);
    border: 2px solid #4CAF50;
    color: #2e7d32;
}

.error-message {
    background: linear-gradient(135deg, #ffeaea 0%, #fff0f0 100%);
    border: 2px solid #f44336;
    color: #c62828;
}

.success-message h3, .error-message h3 {
    margin: 0 0 15px 0;
    font-size: 24px;
    font-weight: 700;
}

.success-message p, .error-message p {
    margin: 10px 0;
    font-size: 16px;
    line-height: 1.5;
}

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