:root {
    --green: #76b63d;
    --green-dark: #629c31;
    --green-darker: #4f8228;
    --green-light: #8bcf4a;
    --green-soft: #eef8e7;
    --green-mid: #dff0cf;
    --orange: #D37632;
    --orange-dark: #b85e24;
    --orange-soft: #fdf2e9;
    --text-dark: #0f172a;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --border: #e2e8f0;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

/* ═══ NAVBAR ═══ */
.navbar {
    height: 72px;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
}

.nav-content {
    width: 100%;
    max-width: 100%;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-left: -15px;
    margin-top: 4px;
}

.navbar-logo {
    height: 46px;
    width: auto;
    object-fit: contain;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    cursor: pointer;
    padding: 8px;
    z-index: 2000;
}

.nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1001;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.nav-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

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

.nav-links a {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--orange);
}

.nav-links a.active {
    color: var(--orange);
    font-weight: 500;
}

/* ─── DROPDOWN STYLES ─── */
.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-links .dropdown-trigger {
    background: none;
    border: none;
    font-family: inherit;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0;
    transition: color 0.2s;
}

.nav-links .nav-dropdown:hover .dropdown-trigger {
    color: var(--orange);
}

.dropdown-chevron {
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-chevron {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: white;
    min-width: 180px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid var(--border);
    z-index: 1100;
    display: flex;
    flex-direction: column;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    padding: 10px 16px;
    font-size: 0.88rem !important;
    color: var(--text-main) !important;
    border-radius: 8px;
    transition: all 0.2s ease;
    white-space: nowrap;
    text-decoration: none !important;
}

.dropdown-item:hover {
    background: #fdf2f0;
    color: var(--orange) !important;
}

.btn-apply-nav {
    background: var(--orange) !important;
    color: white !important;
    padding: 10px 22px !important;
    border-radius: 10px;
    font-weight: 700 !important;
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    text-decoration: none !important;
    transition: all 0.3s !important;
    font-size: 0.9rem !important;
}

.btn-apply-nav:hover {
    background: var(--orange-dark) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(211, 118, 50, 0.3);
}

/* ═══ HERO ═══ */
.hero-section {
    background: linear-gradient(135deg, var(--green-soft) 0%, #f8fafc 55%, var(--orange-soft) 100%);
    padding: 7.5rem 0 4rem;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-eyebrow {
    display: inline-block;
    background: var(--green-mid);
    color: var(--green-darker);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 1.25rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.75rem;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--orange);
    color: white;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(211, 118, 50, 0.28);
}

.btn-hero-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(211, 118, 50, 0.36);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: var(--text-main);
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: 1.5px solid var(--border);
    transition: all 0.3s;
}

.btn-hero-secondary:hover {
    border-color: var(--green);
    color: var(--green);
    background: var(--green-soft);
}

.hero-trust-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 500;
    border: 1px solid var(--border);
    background: white;
    padding: 10px 16px;
    border-radius: 100px;
    width: fit-content;
}

.hero-trust-bar i {
    color: var(--green);
    width: 16px;
}

.hero-visual {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-img-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: white;
    border-radius: 14px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-md);
}

.hero-img-badge i {
    color: var(--green);
    width: 22px;
    height: 22px;
}

.hero-img-badge strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
}

.hero-img-badge span {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ═══ SECTION HEADER ═══ */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.65;
}

/* ═══ WHY SECTION ═══ */
.why-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.why-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.75rem 1.5rem;
    transition: all 0.3s;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--green-mid);
}

.why-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    flex-shrink: 0;
}

.why-icon-wrap i {
    width: 22px;
    height: 22px;
}

.why-icon-wrap.green {
    background: var(--green-mid);
    color: var(--green-dark);
}

.why-icon-wrap.teal {
    background: #ccfbf1;
    color: #0d9488;
}

.why-icon-wrap.emerald {
    background: #d1fae5;
    color: #047857;
}

.why-icon-wrap.blue {
    background: #dbeafe;
    color: #2563eb;
}

.why-icon-wrap.orange {
    background: #ffedd5;
    color: #ea580c;
}

.why-icon-wrap.purple {
    background: #f3e8ff;
    color: #9333ea;
}

.why-icon-wrap.rose {
    background: #ffe4e6;
    color: #e11d48;
}

.why-icon-wrap.indigo {
    background: #e0e7ff;
    color: #4f46e5;
}

.why-card h4 {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.35rem;
    line-height: 1.3;
}

.why-label {
    font-size: 0.78rem;
    color: var(--green);
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.why-card>p:last-child {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* ═══ HOW IT WORKS ═══ */
.how-section {
    padding: 5rem 0;
    background: var(--white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: calc(12.5% + 24px);
    right: calc(12.5% + 24px);
    height: 2px;
    background: linear-gradient(90deg, var(--green-mid), var(--green), var(--green-mid));
    z-index: 0;
}

.step-card {
    text-align: center;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--green-soft);
    border: 3px solid var(--green-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--green);
    transition: all 0.3s;
    position: relative;
    z-index: 2;
    background: white;
    box-shadow: 0 0 0 6px var(--green-soft);
}

.step-number i {
    width: 32px;
    height: 32px;
}

.step-card:hover .step-number {
    background: var(--green);
    color: white;
    border-color: var(--green);
    box-shadow: 0 0 0 6px var(--green-mid);
    transform: scale(1.08);
}

.step-card h4 {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--green-darker);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* ═══ TESTIMONIALS ═══ */
.testimonials-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.testimonial-carousel {
    max-width: 760px;
    margin: 0 auto;
    position: relative;
}

.testimonial-track {
    position: relative;
    min-height: 240px;
}

.testimonial-slide {
    display: none;
    background: var(--white);
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    text-align: center;
    animation: fadeSlide 0.4s ease;
}

.testimonial-slide.active {
    display: block;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.quote-icon {
    color: var(--green);
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.quote-icon i {
    width: 36px;
    height: 36px;
}

.quote-text {
    font-size: 1.05rem;
    color: var(--text-main);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--green);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: left;
}

.testimonial-author span {
    font-size: 0.82rem;
    color: var(--text-muted);
    text-align: left;
    display: block;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 1.75rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: var(--border);
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.dot.active {
    background: var(--green);
    transform: scale(1.3);
}

/* ═══ CTA SECTION ═══ */
.cta-section {
    padding: 4rem 0 5rem;
    background: var(--white);
}

.cta-banner {
    background: var(--green-darker);
    border-radius: 24px;
    padding: 3.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -40px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
}

.cta-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
    flex: 1;
    min-width: 280px;
}

.cta-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.cta-icon i {
    width: 30px;
    height: 30px;
}

.cta-text h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    line-height: 1.25;
}

.cta-text p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.55;
    max-width: 460px;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: var(--green-darker);
    padding: 13px 26px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-cta-primary:hover {
    background: var(--green-soft);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: white;
    padding: 13px 22px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* ═══ FOOTER ═══ */
.footer {
    background: #1A1A1A;
    padding: 80px 0 60px;
    color: white;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-brand {
    flex: 1.5;
    min-width: 280px;
}

.footer-logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 25px;
}

.footer-logo-img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    border-radius: 10px;
}

.footer-logo-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.01em;
}

.footer-brand p {
    display: none; /* Removed tagline as requested */
}

.footer-links-column {
    flex: 1;
    min-width: 160px;
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: white;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--green);
}

.footer-newsletter-text {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.subscribe-form {
    display: flex;
    gap: 0;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.subscribe-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 10px 15px;
    color: white;
    font-family: inherit;
    outline: none;
    width: 100%;
}

.subscribe-btn {
    background: var(--green);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.subscribe-btn:hover {
    background: var(--green-dark);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon i {
    width: 20px;
    height: 20px;
}

.social-icon:hover {
    background: #D37632;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 900px) {
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
    }

    .nav-backdrop {
        display: block;
    }

    .nav-content {
        padding: 0 20px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 25px 40px;
        gap: 12px;
        transition: right 0.4s cubic-bezier(0.19, 1, 0.22, 1);
        z-index: 1002;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    }

    .nav-links.mobile-open {
        right: 0;
    }

    .nav-links a {
        font-size: 1.1rem;
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid #f9f9f9;
    }

    /* Mobile Dropdown */
    .nav-dropdown {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
    }

    .dropdown-trigger {
        width: 100%;
        justify-content: space-between;
        padding: 12px 0;
        font-size: 1.1rem;
        border-bottom: 1px solid #f9f9f9;
        color: var(--text-main);
    }

    .dropdown-menu {
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        box-shadow: none !important;
        border: none !important;
        padding: 0 0 0 15px !important;
        width: 100% !important;
        display: none; /* Controlled by JS */
    }

    .nav-dropdown.open .dropdown-menu {
        display: flex;
        margin-top: 5px;
        margin-bottom: 10px;
    }

    .dropdown-item {
        padding: 12px 0 !important;
        border-bottom: 1px dotted #f0f0f0;
        width: 100%;
    }

    .btn-apply-nav {
        width: 100%;
        justify-content: center;
        padding: 14px !important;
        margin-top: 10px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        margin: 0 auto 2rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-trust-bar {
        margin: 0 auto;
    }

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

    .steps-grid::before {
        display: none;
    }

    .cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem;
    }

    .cta-left {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .cta-text p {
        margin: 0 auto;
    }

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

@media (max-width: 640px) {
    .hero-section {
        padding: 3rem 0 2.5rem;
    }

    .hero-title {
        font-size: 1.9rem;
    }

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

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

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }
}
