/* ===== GLOBAL RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden; /* No sideways scroll */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f9faf9;
    color: #111827;
}

body {
    line-height: 1.6;
}

/* ===== HEADER & NAVBAR ===== */
header {
    background: linear-gradient(135deg, #006B3F 0%, #1a472a 100%);
    color: #ffffff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    position: sticky;
    top: 0;
    z-index: 50;
}

.navbar {
    max-width: 1200px;
    margin: 0 auto;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 2rem;
}

/* logo + title */
.logo-section {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* SMALL LOGO (desktop & default) */
.logo {
    height: 24px;
    width: 24px;
    border-radius: 50%;
    background: #ffffff;
    padding: 2px;
}

.logo-section h1 {
    font-size: 1.6rem;
    font-weight: 700;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.1rem;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    transition: 0.2s;
}

.nav-links a:hover {
    background: rgba(255,255,255,0.12);
}

.btn-primary {
    background: #FCD116;
    color: #006B3F !important;
    font-weight: 600;
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, #006B3F 0%, #1a472a 100%);
    color: #ffffff;
    padding: 4rem 2rem 3.5rem;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.hero-content p {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
}

.hero-subtitle {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 1.6rem;
}

.btn-large {
    display: inline-block;
    background: #FCD116;
    color: #006B3F;
    padding: 0.9rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1rem;
    transition: 0.2s;
}

.btn-large:hover {
    background: #ffdf55;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

/* ===== FEATURES SECTION ===== */
.features {
    max-width: 1200px;
    margin: 3.5rem auto;
    padding: 0 2rem;
}

.features-header {
    text-align: center;
    margin-bottom: 3rem;
}

.features-header h2 {
    font-size: 2.2rem;
    color: #006B3F;
    margin-bottom: 0.7rem;
    font-weight: 700;
}

.features-subtitle {
    font-size: 1rem;
    color: #4b5563;
}

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

.feature-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 1.6rem 1.4rem;
    box-shadow: 0 4px 14px rgba(0,0,0,0.05);
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: 0.2s;
}

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

.feature-icon {
    margin-bottom: 1.2rem;
}

.icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #006B3F 0%, #1a472a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.icon-text {
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.06em;
    font-size: 0.85rem;
}

.feature-card h3 {
    font-size: 1.1rem;
    color: #111827;
    margin-bottom: 0.6rem;
    font-weight: 700;
}

.feature-card p {
    font-size: 0.95rem;
    color: #4b5563;
}

/* ===== PRICING SECTION ===== */
.pricing {
    background: #ffffff;
    margin: 3.5rem 0;
    padding: 3rem 2rem;
}

.pricing h2 {
    font-size: 2.2rem;
    color: #006B3F;
    text-align: center;
    margin-bottom: 2.5rem;
}

.pricing-plans {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.plan {
    border-radius: 10px;
    padding: 2rem 1.6rem;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    text-align: center;
    box-shadow: 0 4px 18px rgba(0,0,0,0.04);
    position: relative;
}

.plan h3 {
    font-size: 1.3rem;
    color: #006B3F;
    margin-bottom: 0.8rem;
}

.price {
    font-size: 2.1rem;
    font-weight: 700;
    color: #006B3F;
    margin-bottom: 0.3rem;
}

.period {
    font-size: 0.95rem;
    color: #6b7280;
    margin-bottom: 0.7rem;
}

.yearly-option {
    font-size: 0.85rem;
    color: #9ca3af;
    margin-bottom: 1.4rem;
}

.features-list {
    list-style: none;
    text-align: left;
    margin: 0 auto 1.6rem;
    max-width: 260px;
}

.features-list li {
    font-size: 0.95rem;
    color: #4b5563;
    padding: 0.45rem 0;
    border-bottom: 1px solid #e5e7eb;
}

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

.btn-plan {
    display: inline-block;
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 6px;
    border: none;
    outline: none;
    cursor: pointer;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    background: #006B3F;
    color: #ffffff;
    transition: 0.2s;
}

.btn-plan:hover {
    background: #004d2e;
}

.premium-plan {
    border: 2px solid #006B3F;
    background: #f9fafb;
}

.badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #FCD116;
    color: #006B3F;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
}

.premium-btn {
    background: linear-gradient(135deg, #FCD116 0%, #ffdb4d 100%);
    color: #006B3F;
}

.premium-btn:hover {
    background: linear-gradient(135deg, #ffdb4d 0%, #FCD116 100%);
}

/* ===== ABOUT SECTION ===== */
.about {
    max-width: 1200px;
    margin: 3.5rem auto;
    padding: 3rem 2rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.06);
}

.about-inner {
    display: grid;
    grid-template-columns: minmax(0,2fr) minmax(0,3fr);
    gap: 2.5rem;
}

.about-text h2 {
    font-size: 2rem;
    color: #006B3F;
    margin-bottom: 1rem;
}

.about-text p {
    font-size: 0.98rem;
    color: #4b5563;
    margin-bottom: 0.9rem;
}

.about-text strong {
    color: #006B3F;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.3rem;
}

.about-card {
    background: #f9fafb;
    border-radius: 10px;
    padding: 1.1rem 1.2rem;
    border: 1px solid #e5e7eb;
}

.about-card h3 {
    font-size: 1rem;
    color: #111827;
    margin-bottom: 0.5rem;
}

.about-card p {
    font-size: 0.9rem;
    color: #6b7280;
}

/* ===== FOOTER ===== */
.site-footer {
    background: #0b1120;
    color: #e5e7eb;
    margin-top: 4rem;
    padding: 3rem 0 2rem;
}

.site-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    border-top: 1px solid #111827;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 2rem;
}

.footer-column h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #9ca3af;
    margin-bottom: 0.7rem;
}

.footer-column p {
    font-size: 0.9rem;
    color: #d1d5db;
    margin-bottom: 0.2rem;
}

.footer-column a {
    display: block;
    font-size: 0.9rem;
    color: #e5e7eb;
    text-decoration: none;
    margin-bottom: 0.25rem;
    transition: 0.2s;
}

.footer-column a:hover {
    color: #FCD116;
}

.footer-brand .footer-tagline {
    margin-top: 0.6rem;
    color: #9ca3af;
    font-size: 0.9rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.footer-logo img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #ffffff;
    padding: 3px;
}

.footer-logo span {
    font-weight: 600;
    color: #f9fafb;
}

.site-footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding: 0 2rem;
    border-top: 1px solid #111827;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    color: #9ca3af;
}

/* ===== RESPONSIVE ===== */

/* Phones up to 600px */
@media (max-width: 600px) {
    .hero {
        padding: 3.2rem 1.5rem 3rem;
    }

    .hero-content h2 {
        font-size: 1.9rem;
    }

    .features {
        padding: 2.5rem 1.25rem;
    }

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

/* Tablets & small laptops up to 768px */
@media (max-width: 768px) {
    /* Stack about section */
    .about-inner {
        grid-template-columns: 1fr;
    }

    /* Navbar vertical on small screens */
    .nav-container {
        flex-direction: column;
        gap: 0.8rem;
        padding: 0.6rem 1.2rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.7rem;
        width: 100%;
    }

    /* EVEN SMALLER logo & title on mobile */
    .logo {
        width: 20px;
        height: 20px;
        padding: 2px;
    }

    .logo-section h1 {
        font-size: 1.2rem;
    }

    .pricing-plans {
        grid-template-columns: 1fr;
    }

    .pricing {
        padding: 2.5rem 1.5rem;
    }

    .site-footer-inner {
        padding: 0 1.5rem;
        grid-template-columns: 1fr 1fr;
    }

    .site-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        padding-top: 1rem;
    }
}

/* Very small phones (< 400px) */
@media (max-width: 400px) {
    .hero {
        padding: 3rem 1rem 2.5rem;
    }

    .hero-content h2 {
        font-size: 1.7rem;
    }

    .nav-container {
        padding: 0.5rem 0.9rem;
    }
}