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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo {
    width: 36px;
    height: 36px;
}

.nav-brand h1 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #35957f;
}

.nav-link-login {
    color: #35957f !important;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: #35957f;
    color: white;
}

.btn-primary:hover {
    background: #2e8170;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(53, 149, 127, 0.3);
}

.btn-secondary {
    background: white;
    color: #35957f;
    border: 2px solid #35957f;
}

.btn-secondary:hover {
    background: #35957f;
    color: white;
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
}

/* Hero Section */
.hero {
    background: white;
    color: #333;
    padding: 60px 0 80px;
}

.hero .container {
    max-width: 700px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 32px;
    color: #555;
    line-height: 1.6;
}

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

.features h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
}

.feature-list {
    list-style: none;
    max-width: 600px;
}

.feature-list li {
    padding: 10px 0;
    font-size: 17px;
    color: #444;
    line-height: 1.5;
}

.feature-list li + li {
    border-top: 1px solid #e8e8e8;
}

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

.section-title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

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

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

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card-featured {
    border-color: #35957f;
    border-width: 3px;
    box-shadow: 0 5px 20px rgba(42, 125, 110, 0.15);
}

.pricing-tier {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.coming-soon {
    font-size: 14px;
    font-weight: 400;
    color: #888;
}

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

.price {
    font-size: 48px;
    font-weight: 700;
    color: #35957f;
}

.period {
    font-size: 18px;
    color: #666;
}

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

.pricing-features li {
    padding: 12px 0;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
}

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

/* Contact Section */
.contact {
    padding: 48px 0;
    background: #f8f9fa;
}

.contact h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact p {
    font-size: 16px;
    color: #555;
}

.contact a {
    color: #35957f;
    text-decoration: none;
    font-weight: 600;
}

.contact a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #f8f9fa;
    border-top: 1px solid #e0e0e0;
    padding: 20px 0;
}

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

.footer-brand {
    font-weight: 700;
    font-size: 16px;
    color: #333;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    text-decoration: none;
    color: #666;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #35957f;
}

.footer-copy {
    font-size: 14px;
    color: #999;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 15px;
        flex-wrap: wrap;
    }

    .nav-links a {
        font-size: 14px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .btn-large {
        padding: 14px 32px;
        font-size: 16px;
    }

    .hero {
        padding: 40px 0 60px;
    }

    .features {
        padding: 40px 0;
    }

    .pricing {
        padding: 40px 0;
    }

    .footer-row {
        flex-direction: column;
        text-align: center;
    }
}
