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

body {
    /* font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; */
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    background: white;
    color: #333;
    line-height: 1.6;
}

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

/* Hero Section */
.hero {
    padding-top: 100px;
    padding-bottom: 100px;
    display: flex;
    align-items: center;
    background: white;
    width: 60%;
    margin: 0 auto;
    min-height: 75vh;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

.hero-screenshot {
    width: 100%;
    height: auto;
    margin-top: 40px;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #E9ECEF;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.hero-logo {
    width: 120px;
    height: 120px;
    margin-bottom: 32px;
}

.hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.hero-text h1 {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    color: #333;
    line-height: 1.1;
    margin-bottom: 24px;
    text-align: center;
}

.hero-text p {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 36px;
    line-height: 1.6;
    text-align: center;
}

.hero-chip {
    background: #f0fcf5;
    color: #0ec870;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
    display: inline-block;
    border: 1px solid #c8e6c9;
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #0ec870;
    color: white;
}

.btn-primary:hover {
    background: #00B085;
}

.btn-secondary {
    background: #1fa3e0;
    color: white;
}

.btn-secondary:hover {
    background: #1fa3e0;
}

.btn-default {
    background: white;
    color: black;
    border: 1px solid #E9ECEF;
}

.btn-default:hover {
    border-color: #333;
}

.btn-cta {
    font-size: 0.9rem;
    padding: 8px 16px;
}

.btn-demo {
    font-size: 0.9rem;
    padding: 8px 16px;
    background: white;
    color: #333;
    border: 1px solid #E9ECEF;
}

.btn-demo:hover {
    background: #7926f8;
    color: white;
}

.hero-visual {
    position: relative;
}

.dashboard-mockup {
    background: #F8F9FA;
    border-radius: 12px;
    padding: 32px;
    border: 2px solid #E9ECEF;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.stat-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #E9ECEF;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #00C896;
    display: block;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
    margin-top: 4px;
}

/* Features Section */
.features {
    padding: 60px 0;
    /* background: #F8F9FA; */
    background: white;
}

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

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    background: white;
    border-radius: 12px;
    padding: 40px;
    border: 1px solid #E9ECEF;
    transition: all 0.3s ease;
}

.feature-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #00C896;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #0ec870;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 1.5rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    color: #555;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.feature-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0ec870;
    font-weight: bold;
}

/* Testimonials Section */
.reviews {
    padding: 120px 0;
    background: white;
}

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

.review-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    border: 1px solid #e8f5e8;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.3s ease;
}

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

.quote-icon {
    font-size: 3rem;
    color: #0ec870;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 10px;
}

.stars {
    color: #0ec870;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.review-text {
    color: #333;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 1rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #0ec870;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.reviewer-details {
    flex: 1;
}

.reviewer-name {
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
    font-size: 1rem;
}

.reviewer-title {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Pricing Section */
.pricing {
    padding: 60px 0;
    background: white;
}

.pricing-card {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    padding: 60px 40px;
    text-align: center;
    border: 2px solid #0ec870;
    position: relative;
}

.pricing-card h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 16px;
}

.old-price {
    font-size: 2.5rem;
    color: #ff1744;
    margin-bottom: 8px;
    text-decoration: line-through;
    font-weight: 600;
    text-shadow: 0 0 3px rgba(255, 23, 68, 0.3);
}

.limited-offer {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 12px;
    display: inline-block;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.price {
    font-size: 4rem;
    font-weight: 800;
    color: #0ec870;
    margin-bottom: 8px;
}

.price-first-month {
    color: #000;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    margin-bottom: 12px;
}

.price-period {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.price-features {
    text-align: left;
    margin-bottom: 40px;
}

.price-features li {
    color: #555;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.price-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0ec870;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Contact Section */
.contact {
    padding: 60px 0;
    background: white;
}

.contact-content {
    text-align: center;
    min-height: 50vh;
}

.contact h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: #333;
    margin-bottom: 24px;
}

.contact p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    border: 1px solid #E9ECEF;
    text-align: center;
    transition: all 0.3s ease;
    max-width: 480px;
    margin-top: 40px;
    margin-bottom: 40px;
}

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

.contact-card h4 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.contact-card p {
    color: #666;
    margin-bottom: 20px;
}

/* Header */
.header {
    background: white;
    border-bottom: 1px solid #E9ECEF;
    padding: 16px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

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

.header-links {
    display: flex;
    gap: 20px;
}

.header-link {
    text-decoration: none;
    color: #333;
}

.header-logo-container {
    display: flex;
    align-items: center;
    justify-content: center; /* Center logo horizontally */
    width: 140px;
    height: 70px;
    position: relative;
    overflow: hidden;
}

.header-logo {
    height: 200px; /* More appropriate height */
    width: auto;
    position: static; /* Remove absolute positioning */
    display: block;
    margin: 0 auto;
}

.header-btn {
    padding: 10px 24px;
    background: #0ec870;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.header-btn:hover {
    background: #6D4CE8;
}

/* Add padding to body to account for fixed header */
body {
    padding-top: 80px;
}

.footer {
    background: #333;
    padding: 40px 0;
}

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

.footer-content p {
    color: white;
}

.footer-links {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.footer-link {
    color: white;
    text-decoration: none;
    font-size: 12px;
}


/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        width: 100%;
        min-height: 50vh;
    }
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-screenshot {
        margin-top: 20px;
    }

    .cta-buttons {
        justify-content: center;
    }

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

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .review-card {
        padding: 20px;
    }

    .contact-options {
        flex-direction: column;
        align-items: center;
    }

    .contact-card {
        max-width: 300px;
    }

    .header-links {
        display: none;
    }
}
