:root {
    --primary: #4ab78d;
    --dark: #000;
    --light: #fff;
    --gray: #6c757d;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
}

/* Navbar */
.navbar {
    background: rgba(0, 0, 0, 0.632);
    backdrop-filter: blur(10px);
}

.navbar-brand {
    font-weight: 700;
    color: var(--light) !important;
}

.nav-link {
    color: #ddd !important;
    font-weight: 500;
}

.nav-link:hover {
    color: var(--primary) !important;
}

.btn-primary-custom {
    background-color: var(--primary);
    border: none;
    color: white;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 8px;
}

.btn-primary-custom:hover {
    background-color: #3ea57d;
}

/* Hero */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
        url('https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    align-items: center;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    color: #ddd;
}

.hero-buttons .btn {
    padding: 12px 25px;
    font-weight: 600;
    border-radius: 10px;
}

.btn-outline-light:hover {
    background-color: var(--primary);
    border-color: var(--primary);
}

/* Niche Section */
.niche-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.niche-title {
    font-weight: 700;
    font-size: 2.3rem;
}

.niche-card {
    border: none;
    border-radius: 18px;
    transition: all 0.3s ease;
    background: #fff;
    padding: 30px 20px;
    height: 100%;
}

.niche-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.niche-card h5 {
    font-weight: 600;
}

.niche-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

.niche-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* PURPOSE SECTION */
.purpose-section {
    padding: 120px 0;
    background: linear-gradient(to right, #f8f9fa, #ffffff);
    position: relative;
    overflow: hidden;
}

.purpose-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
}

.purpose-text {
    color: #6c757d;
    font-size: 1.05rem;
    margin-top: 20px;
    margin-bottom: 30px;
    line-height: 1.7;
}

.purpose-highlight {
    color: #4ab78d;
    font-weight: 600;
}

.purpose-btn {
    background-color: #4ab78d;
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.purpose-btn:hover {
    background-color: #000;
    transform: translateY(-3px);
}

.purpose-image {
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
    transition: all 0.4s ease;
}

.purpose-image:hover {
    transform: translateY(-10px);
}

/* Brand Title Styling */
.brand-logo-wrapper {
    display: inline-flex;
    align-items: center;
}

.brand-icon {
    height: 80px;
    width: auto;
}

.brand-text {
    font-weight: 700;
    color: #4ab78d;
}

/* TESTIMONIAL SECTION */
.testimonial-section {
    padding: 110px 0;
    background-color: #f8f9fa;
}

.testimonial-title {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.testimonial-subtitle {
    color: #6c757d;
    margin-bottom: 60px;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-8px);
}

.testimonial-text {
    color: #6c757d;
    font-size: 0.98rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-user img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-user h6 {
    margin: 0;
    font-weight: 600;
}

.testimonial-user span {
    font-size: 0.85rem;
    color: #6c757d;
}

.stars {
    color: #4ab78d;
    margin-bottom: 15px;
}

/* FINAL CTA SECTION */
.cta-section {
    padding: 100px 0;
    background-color: #4ab78d;
    color: #ffffff;
    text-align: center;
}

.cta-title {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.05rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn-white {
    background-color: #ffffff;
    color: #000000;
}

.cta-btn-white:hover {
    background-color: #000000;
    color: #ffffff;
    transform: translateY(-4px);
}

.cta-btn-outline {
    border: 2px solid #ffffff;
    color: #ffffff;
}

.cta-btn-outline:hover {
    background-color: #ffffff;
    color: #000000;
    transform: translateY(-4px);
}

/* FOOTER */
.footer {
    background-color: #000000;
    color: #ffffff;
    padding: 30px 0 30px;
}

.footer-logo {
    height: 175px;
}

.footer-text {
    color: #bfbfbf;
}

.footer-title {
    font-weight: 600;
    margin-bottom: 20px;
}

.footer a {
    color: #bfbfbf;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer a:hover {
    color: #4ab78d;
}

.footer-social i {
    font-size: 1.3rem;
    margin-right: 15px;
    transition: 0.3s ease;
}

.footer-social i:hover {
    color: #4ab78d;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #222;
    margin-top: 20px;
    padding-top: 20px;
    text-align: center;
    font-size: 0.85rem;
    color: #888;
}

        /* CONTACT SECTION */
        .contact-section {
            padding: 120px 0;
        }

        .contact-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .contact-subtitle {
            color: var(--gray);
            margin-bottom: 60px;
        }

        .contact-card {
            background: #ffffff;
            border-radius: 20px;
            padding: 50px;
            box-shadow: 0 25px 60px rgba(0,0,0,0.07);
        }

        .form-control {
            border-radius: 12px;
            padding: 14px 15px;
            border: 1px solid #ddd;
            transition: 0.3s ease;
        }

        .form-control:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 0.2rem rgba(74,183,141,0.2);
        }

        .contact-btn {
            background-color: var(--primary);
            color: #fff;
            padding: 14px 35px;
            border-radius: 50px;
            border: none;
            font-weight: 600;
            transition: 0.3s ease;
        }

        .contact-btn:hover {
            background-color: #000;
            transform: translateY(-3px);
        }

        .contact-info {
            margin-top: 40px;
        }

        .contact-info i {
            color: var(--primary);
            margin-right: 10px;
        }

        /* PRICING SECTION */
.pricing-section {
    padding: 120px 0;
    background-color: #ffffff;
}

.pricing-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.pricing-subtitle {
    color: #6c757d;
    margin-bottom: 60px;
}

.pricing-card {
    background: #ffffff;
    border-radius: 25px;
    padding: 60px 40px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.08);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    border: 2px solid #4ab78d;
}

.pricing-badge {
    background-color: #4ab78d;
    color: #fff;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: #000;
}

.price-amount span {
    font-size: 1rem;
    color: #6c757d;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 40px 0;
}

.pricing-features li {
    margin-bottom: 15px;
    color: #6c757d;
}

.pricing-features i {
    color: #4ab78d;
    margin-right: 8px;
}

.pricing-btn {
    background-color: #4ab78d;
    color: #fff;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s ease;
}

.pricing-btn:hover {
    background-color: #000;
    transform: translateY(-4px);
}

.pricing-note {
    margin-top: 30px;
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.6;
}

/* HOW IT WORKS SECTION */
.how-section {
    padding: 120px 0;
    background-color: #f8f9fa;
}

.how-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.how-subtitle {
    color: #6c757d;
    margin-bottom: 70px;
}

.how-step {
    position: relative;
    background: #ffffff;
    border-radius: 25px;
    padding: 50px 35px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.06);
    transition: 0.3s ease;
    height: 100%;
}

.how-step:hover {
    transform: translateY(-10px);
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: #4ab78d;
    margin-bottom: 15px;
}

.how-icon {
    font-size: 2.5rem;
    color: #4ab78d;
    margin-bottom: 20px;
}

.how-step h5 {
    font-weight: 600;
    margin-bottom: 15px;
}

.how-step p {
    color: #6c757d;
    line-height: 1.6;
}

.step-image {
    width: 100%;
    border-radius: 20px;
    margin-top: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* FAQ SECTION */
.faq-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.faq-title {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.faq-subtitle {
    color: #6c757d;
    margin-bottom: 50px;
}

.accordion-item {
    border: none;
    border-radius: 15px !important;
    margin-bottom: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    overflow: hidden;
}

.accordion-button {
    font-weight: 600;
    padding: 18px 20px;
    border-radius: 15px !important;
}

.accordion-button:not(.collapsed) {
    background-color: #4ab78d;
    color: #ffffff;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    color: #6c757d;
    line-height: 1.6;
    padding: 20px;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 1.9rem;
    }
    .how-title {
        font-size: 2rem;
    }

    .how-step {
        padding: 35px 25px;
    }

     .contact-card {
         padding: 30px;
    }

    .contact-title {
    font-size: 2rem;
    }

    /* Typography Adjustments */
    .cta-title {
        font-size: 1.8rem;
    }

    .purpose-title {
        font-size: 2rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    /* FOOTER MOBILE FIXES */
    .footer {
        text-align: center;
        padding: 50px 0 25px;
    }

    .footer-logo {
        height: 150px; /* smaller logo for mobile */
        margin-bottom: 0px;
    }

    .footer .row > div {
        margin-bottom: 30px;
    }

    .footer-title {
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .footer-social {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-top: 10px;
    }

    .footer-social i {
        margin-right: 0;
        font-size: 1.5rem;
    }

    .footer-bottom {
        margin-top: 30px;
        padding-top: 15px;
        font-size: 0.8rem;
    }
}

/* ============================= */
/* TUTORIAL SECTION */
/* ============================= */

.tutorial-section {
    background: #f8f9fa;
}

.video-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    transition: 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.video-card h5 {
    font-weight: 600;
}