/* Professional Business Landing Page */

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
    font-size: 16px;
    font-weight: 400;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #2c3e50;
    text-align: center;
}

h1 {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: 1.875rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

h5 {
    font-size: 1.125rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: #5a6c7d;
    line-height: 1.7;
    text-align: center;
}

.lead {
    font-size: 1.125rem;
    color: #5a6c7d;
    font-weight: 400;
    text-align: center;
    margin-bottom: 2rem;
}

/* Container and Layout */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Notification Bar */
.notification-bar {
    background: #e74c3c;
    color: white;
    text-align: center;
    padding: 12px 20px;
    font-weight: 600;
    font-size: 0.9rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1001;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Navigation */
.navbar {
    background: #ffffff;
    border-bottom: 1px solid #e9ecef;
    position: fixed;
    top: 44px;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.navbar-brand {
    font-size: 1.75rem;
    font-weight: 800;
    color: #3498db;
    text-decoration: none;
}

.navbar a {
    color: #5a6c7d;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.navbar a:hover {
    color: #3498db;
}

/* Main Content Spacing */
main {
    margin-top: 20px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

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

.hero h1 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
}

.hero .lead {
    color: #5a6c7d;
    margin-bottom: 2rem;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Badges and Elements */
.urgency-badge {
    background: #fff5f5;
    color: #e74c3c;
    border: 2px solid #e74c3c;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 2rem;
    text-align: center;
}

.social-proof {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem auto;
    max-width: 500px;
    text-align: center;
}

.social-proof-text {
    margin: 0;
    color: #2c3e50;
    font-size: 1rem;
    font-weight: 500;
    font-style: italic;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.trust-badge {
    background: #e8f5e8;
    border: 1px solid #27ae60;
    color: #27ae60;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
}

.countdown-timer {
    background: #fff5f5;
    border: 2px solid #e74c3c;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    margin: 2rem auto;
    max-width: 300px;
}

.countdown-text {
    color: #e74c3c;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.countdown-display {
    color: #e74c3c;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Courier New', monospace;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: all 0.2s ease;
    border: 2px solid transparent;
    cursor: pointer;
    line-height: 1.5;
    margin: 0.5rem;
}

.btn-primary {
    background: #3498db;
    color: white;
    border-color: #3498db;
}

.btn-primary:hover {
    background: #2980b9;
    border-color: #2980b9;
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
}

.btn-cta-mega {
    background: #e74c3c;
    color: white;
    padding: 18px 36px;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 8px;
    border-color: #e74c3c;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.btn-cta-mega:hover {
    background: #c0392b;
    border-color: #c0392b;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(231, 76, 60, 0.4);
}

.btn-outline-light {
    background: transparent;
    color: #3498db;
    border: 2px solid #3498db;
    margin: 1rem auto;
    margin-bottom: 0;
}

.btn-outline-light:hover {
    background: #3498db;
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
}

.price-highlight {
    text-decoration: line-through;
    opacity: 0.7;
    font-size: 0.9rem;
    margin-left: 0.5rem;
    color: #9b5d5d;
}

/* Hero CTA */
.hero-cta {
    margin: 2rem 0;
    text-align: center;
}

.guarantee-badge {
    background: #e8f5e8;
    border: 2px solid #27ae60;
    color: #27ae60;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    margin: 2rem auto;
    max-width: 400px;
    display: block;
}

/* Hero Image */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
}

.hero-mockup {
    max-width: 350px;
    width: 100%;
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.mockup-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.mockup-card {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    font-size: 2.5rem;
    transition: transform 0.2s ease;
}

.mockup-card:hover {
    transform: translateY(-2px);
}

.scarcity-indicator {
    background: #fff5f5;
    border: 2px solid #e74c3c;
    color: #e74c3c;
    padding: 12px 20px;
    border-radius: 8px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 2rem auto;
    max-width: 300px;
    display: block;
}

/* Sections */
section {
    padding: 80px 0;
}

section:nth-child(even) {
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
    text-align: center;
}

.section-header p {
    color: #5a6c7d;
    font-size: 1.125rem;
    text-align: center;
}

/* Cards */
.card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 2rem;
    height: 100%;
    transition: all 0.2s ease;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.card h3, .card h4, .card h5 {
    color: #2c3e50;
    margin-bottom: 1rem;
    text-align: center;
}

.card p {
    color: #5a6c7d;
    line-height: 1.6;
    text-align: center;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    text-align: center;
}

/* Image Boxes */   
.image-box {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    height: 100%;
    padding: 0.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.image-box:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}


.image-placeholder {
    width: 100%;
    height: 200px;
    background: #f8f9fa;
    border-radius: 8px;
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-content {
    margin-top: 1rem;
    text-align: center;
    padding: 1rem;
    padding-top: 0;
}

.image-content h5 {
    margin-bottom: 0.5rem;
    color: #2c3e50;
    text-align: center;
}

.image-content p {
    margin: 0;
    color: #5a6c7d;
    text-align: center;
}

/* Feature Items */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
}

.feature-item .feature-icon {
    font-size: 2rem;
    margin-bottom: 0;
    flex-shrink: 0;
}

.feature-item h4 {
    margin-bottom: 0.5rem;
    text-align: left;
}

.feature-item p {
    margin: 0;
    text-align: left;
}

/* Step Numbers */
.step-number {
    background: #3498db;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0 auto 1.5rem;
}

/* Zone Strips */
.zone-strips {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.zone-strip {
    padding: 2rem;
    border-radius: 50%;
    border: 5px solid;
    border-bottom: 0;
    text-align: center;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.zone-red {
    border-color: #e74c3c;
    background: #fdf2f2;
}

.zone-yellow {
    border-color: #f39c12;
    background: #fefbf3;
}

.zone-blue {
    border-color: #3498db;
    background: #f2f8fd;
}

.zone-green {
    border-color: #27ae60;
    background: #f2fdf2;
}

.zone-strip h3, .zone-strip h4 {
    margin-bottom: 0;
    color: #2c3e50;
    text-align: center;
}

.zone-strip.zone-red h5 {
    color: #e74c3c;
}

.zone-strip.zone-yellow h5 {
    color: #f39c12;
}

.zone-strip.zone-blue h5 {
    color: #3498db;
}

.zone-strip.zone-green h5 {
    color: #27ae60;
}

.zone-strip p {
    margin: 0;
    color: #5a6c7d;
    text-align: center;
}

/* Pricing */
.pricing-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    margin: 0 auto;
}

.pricing-header {
    margin-bottom: 2rem;
}

.price-badge {
    background: #e74c3c;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    color: #2c3e50;
    margin: 1.5rem 0;
    text-align: center;
}

.currency {
    font-size: 2rem;
    vertical-align: top;
}

.amount {
    color: #3c9ee7;
}

.period {
    font-size: 1.125rem;
    color: #95a5a6;
    font-weight: 400;
}

.original-price {
    color: #95a5a6;
    text-decoration: line-through;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.savings {
    color: #27ae60;
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 2rem;
    text-align: center;
}

.pricing-features {
    text-align: center;
    margin: 2rem 0;
}

.feature {
    padding: 0.75rem 0;
    color: #5a6c7d;
    font-size: 1rem;
    border-bottom: 1px solid #f8f9fa;
}

.feature:last-child {
    border-bottom: none;
}

.pricing-footer {
    margin-top: 2rem;
}

.guarantee-text {
    font-size: 0.9rem;
    color: #95a5a6;
    margin-top: 1rem;
    text-align: center;
}

/* Testimonials */
.testimonial-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 2rem;
    height: 100%;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: #5a6c7d;
    margin: 0;
    text-align: center;
    font-size: 1.1rem;
}

.testimonial-author strong {
    color: #2c3e50;
    font-weight: 600;
}

.testimonial-author span {
    color: #95a5a6;
    font-size: 0.9rem;
}

/* Accordion */
.accordion-item {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    background: white;
}

.accordion-button {
    background: white;
    border: none;
    padding: 1.5rem;
    width: 100%;
    text-align: left;
    font-weight: 600;
    color: #2c3e50;
    cursor: pointer;
    font-size: 1.1rem;
}

.accordion-button:hover {
    background: #f8f9fa;
}

.accordion-body {
    padding: 1.5rem;
    background: #f8f9fa;
    color: #5a6c7d;
    line-height: 1.7;
}

/* Final CTA */
.cta-section {
    background: #2c3e50;
    color: white;
}

.final-cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.final-cta .lead {
    color: #bdc3c7;
    margin-bottom: 2rem;
}

.urgency-reminder {
    background: rgba(231, 76, 60, 0.1);
    border: 2px solid rgba(231, 76, 60, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem auto;
    max-width: 500px;
    text-align: center;
}

.urgency-text {
    color: #e74c3c;
    font-weight: 700;
    margin: 0;
    font-size: 1.1rem;
}

.price-increase {
    color: #bdc3c7;
    font-size: 0.9rem;
    margin: 0.5rem 0 0 0;
}

.cta-buttons {
    margin: 2rem 0;
    text-align: center;
}

.payment-security {
    margin-top: 1.5rem;
    text-align: center;
}

.payment-security small {
    color: #95a5a6;
}

/* Mobile CTA */
.mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 2px solid #e9ecef;
    padding: 1rem;
    z-index: 999;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Footer */
footer {
    background: #2c3e50;
    color: #bdc3c7;
    padding: 0rem 0 2rem;
    margin-bottom: 7rem;
    margin-top: 0;
}

footer h5 {
    color: white;
    margin-bottom: 1rem;
    text-align: left;
}

footer a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.2s ease;
}

footer a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 2rem;
    margin-top: 2rem;
    text-align: center;
    color: #95a5a6;
    font-size: 0.9rem;
    margin-top: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 1.875rem;
    }
    
    h2 {
        font-size: 1.625rem;
    }
    
    .hero {
        padding: 60px 0;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .trust-badges {
        justify-content: center;
        gap: 0.5rem;
    }
    
    .trust-badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .hero-mockup {
        margin-top: 2rem;
        max-width: 280px;
    }
    
    .mockup-card {
        padding: 1.5rem;
        font-size: 2rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .btn-cta-mega {
        padding: 16px 24px;
        font-size: 1rem;
        display: block;
        margin: 1rem auto;
    }
    
    .price {
        font-size: 2.75rem;
    }
    
    .zone-strips {
        gap: 1rem;
    }
    
    .zone-strip {
        padding: 1.5rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-item .feature-icon {
        margin-bottom: 1rem;
    }
    
    .feature-item h4,
    .feature-item p {
        text-align: center;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.625rem;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .card {
        padding: 1.5rem;
    }
    
    .pricing-card {
        padding: 2rem 1rem;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .btn-cta-mega {
        padding: 14px 20px;
        font-size: 0.95rem;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .trust-badge {
        display: block;
        text-align: center;
    }
}

/* Remove Animation Classes */
.animate-fade-up,
.animate-fade-left,
.animate-fade-right {
    opacity: 1;
    transform: none;
}

.stagger-1,
.stagger-2,
.stagger-3,
.stagger-4,
.stagger-5,
.stagger-6 {
    /* No animation delays */
}

/* Text Alignment Utilities */
.text-center {
    text-align: center !important;
}

.text-left {
    text-align: left !important;
}

/* Ensure all content is properly centered */
.section-header,
.hero-content,
.pricing-card,
.testimonial-card,
.card {
    text-align: center;
}

.section-header h2,
.section-header p,
.card h3,
.card h4,
.card h5,
.card p {
    text-align: center;
}