:root {
    --color-primary: #00bf63;
    /* Vibrant Green (User ref) */
    --color-primary-light: #2ce685;
    --color-primary-dark: #008c48;

    --color-secondary: #000000;
    /* Sleek Black */

    --color-accent: #00bf63;
    /* Unify Accent with Primary Green */
    --color-accent-hover: #008c48;

    --color-text-main: #2c2c2c;
    --color-text-light: #666666;
    --color-off-white: #f9f9f9;
    --color-white: #ffffff;

    --font-main: 'Montserrat', sans-serif;

    --transition-fast: all 0.3s ease;
    --transition-slow: all 0.8s ease;
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.hero .lead {
    color: #ffffff !important;
}


/* Offcanvas */
.offcanvas {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 360px;
    height: 100%;
    background: #0b3d2e;
    color: #fff;
    padding: 2rem;
    z-index: 1001;
    transition: right 0.3s ease;
}

.offcanvas.active {
    right: 0;
}

.offcanvas-close {
    background: none;
    border: none;
    font-size: 2.5rem;
    color: #fff;
    position: absolute;
    top: 15px;
    right: 20px;
    cursor: pointer;
}

.offcanvas-links {
    list-style: none;
    padding: 0;
    margin-top: 4rem;
}

.offcanvas-links li {
    margin-bottom: 1.5rem;
}

.offcanvas-links a {
    color: #fff;
    font-size: 1.1rem;
    text-decoration: none;
    font-weight: 500;
}
/* =========================
   FORCE HERO BUTTON VISIBILITY (MOBILE)
   ========================= */

@media (max-width: 768px) {

    /* Ensure standalone buttons show */
    .hero-section a.btn,
    .give-back a.btn {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin-top: 1.5rem !important;
        position: relative;
        z-index: 10;
    }

    /* Prevent parent clipping */
    .hero-section,
    .give-back {
        overflow: visible !important;
    }
}

/* Prevent grid from collapsing following content */
.impact-grid {
    margin-bottom: 2.5rem;
}

.offcanvas-links .cta a {
    display: inline-block;
    background: #6cc24a;
    padding: 0.8rem 1.4rem;
    border-radius: 30px;
    color: #0b3d2e;
    font-weight: 700;
}

/* Mobile Accordion */
.offcanvas-dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    padding: 0.5rem 0;
}

.offcanvas-dropdown-header i {
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.offcanvas-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding-left: 1rem;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.offcanvas-dropdown-content li {
    margin-bottom: 0.8rem;
    margin-top: 0.8rem;
}

.offcanvas-dropdown-content a {
    font-size: 1rem;
    opacity: 0.9;
}

/* Overlay */
.offcanvas-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 1000;
}

.offcanvas-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive */
@media (max-width: 992px) {
    .nav ul {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 4rem 1.5rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

h2 {
    font-weight: 800;
    margin-bottom: 2rem;
}

.center {
    text-align: center;
}

/* WHAT IS DGC */
.DGC-intro,
.DEEPER {
    padding: 6rem 0;
}

.DGC-point {
    display: flex;
    gap: 1.5rem;
    /* Increased gap */
    margin-bottom: 2rem;
}

.DGC-point span {
    background: var(--color-primary);
    color: #fff;
    width: 35px;
    /* Slightly larger */
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.DGC-footer {
    margin-top: 2rem;
    font-weight: 600;
    color: var(--color-primary);
}

.video-box {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.video-box iframe {
    width: 100%;
    height: 350px;
    /* Taller video */
    border-radius: 8px;
    display: block;
}

.video-box .btn-primary {
    display: block;
    text-align: center;
    margin: 1.5rem auto 0;
    width: fit-content;
}

/* DEEPER */
.DEEPER {
    background-color: var(--color-off-white);
}

.DEEPER-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow-card);
}

.highlight {
    font-weight: 600;
    margin-top: 1rem;
    color: var(--color-primary);
}

/* Responsive */
@media (max-width: 900px) {

    .grid-2,
    .how-grid {
        grid-template-columns: 1fr;
    }
}

.charity-partners {
    padding: 4rem 1.5rem;
    background: #fff;
}

.section-title {
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-subtitle {
    max-width: 850px;
    margin: 0 auto 3rem;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #555;
}

.charity-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
}

.charity-logos img {
    max-height: 55px;
    max-width: 120px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.85;
    transition: all 0.3s ease;
}

.charity-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* Mobile */
@media (max-width: 768px) {
    .charity-logos {
        gap: 1.8rem;
    }

    .charity-logos img {
        max-height: 45px;
    }
}

.site-footer {
    background: #0b0f1a;
    color: #fff;
    margin-top: 4rem;
}

.footer-main {
    padding: 4rem 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 4rem;
}

.footer-logos {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.logo-primary {
    width: 80px;
}

.logo-secondary {
    width: 95px;
}

.social-links {
    display: flex;
    gap: 0.8rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #fff;
    color: var(--color-secondary);
    /* Dark icon */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: var(--transition-fast);
}

.social-links a:hover {
    background: var(--color-primary);
    color: #fff;
    transform: translateY(-3px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.footer-col h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    color: var(--color-primary);
    /* Changed from default/inherited to Green */
}

.footer-col a {
    display: block;
    color: #cfd3da;
    font-size: 0.85rem;
    margin-bottom: 0.6rem;
    text-decoration: none;
}

.footer-col a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: #cfd3da;
}

/* Responsive */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 500px) {
    .footer-links {
        grid-template-columns: 1fr;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

/* Global Section Padding (Utility) */
.section-padding {
    padding: 6rem 0;
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

body {
    font-family: var(--font-main);
    color: var(--color-text-main);
    background-color: var(--color-white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
    font-weight: 800;
    line-height: 1.1;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography Utilities */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.section-title.center {
    display: block;
    text-align: center;
}

.section-title.white {
    color: var(--color-white);
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.text-link {
    color: var(--color-primary);
    font-weight: 600;
    border-bottom: 2px solid transparent;
}

.text-link:hover {
    border-bottom-color: var(--color-primary);
}

.highlight {
    color: var(--color-primary);
}

.large-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 34px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    /* Slightly sharper styling like reference */
    cursor: pointer;
    transition: var(--transition-fast);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
    border: 1px solid transparent;
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 191, 99, 0.4);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--color-white);
    color: var(--color-white);
}

.btn-secondary:hover {
    background-color: var(--color-white);
    color: var(--color-secondary);
}

.btn-full {
    width: 100%;
    background-color: var(--color-primary);
    color: var(--color-white);
    margin-top: 1.5rem;
}

.btn-full:hover {
    background-color: var(--color-primary-light);
}

.btn-telegram {
    background-color: #0088cc;
    color: white;
    border-radius: 50px;
    padding: 12px 30px;
}

.btn-telegram:hover {
    background-color: #0077b5;
    transform: translateY(-2px);
}

.btn-donate {
    background-color: var(--color-white);
    color: var(--color-primary);
    border-radius: 50px;
    padding: 12px 30px;
}

.btn-donate:hover {
    background-color: var(--color-off-white);
    transform: translateY(-2px);
}

/* Header */
.header {
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    /* Increased height for better visibility */
    width: auto;
    object-fit: contain;
    transition: var(--transition-fast);
}

.logo:hover img {
    transform: scale(1.05);
}

.nav ul {
    display: flex;
    gap: 2.5rem;
}

.nav a {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav a:hover {
    color: var(--color-accent);
}

/* Dropdowns */
.nav ul li {
    position: relative;
    padding: 10px 0;
    /* Add hit area for hover */
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 0;
    /* Override parent gap */
    text-align: left;
}

.nav ul li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    top: 100%;
    /* Ensure it stays put */
}

.dropdown-menu li {
    padding: 0;
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--color-text-main);
    font-size: 0.85rem;
    white-space: nowrap;
    transition: background 0.2s;
}

.dropdown-menu a:hover {
    background: var(--color-off-white);
    color: var(--color-primary);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2000;
    /* Ensure high z-index */
    padding: 10px;
    /* Add Hit area */
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--color-white);
    margin: 6px 0;
    border-radius: 3px;
    transition: var(--transition-fast);
}

@media (max-width: 992px) {
    .menu-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        gap: 6px;
    }

    .nav ul {
        display: none;
    }

    .header .container {
        padding-right: 1.5rem;
        /* Ensure padding for button */
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    color: var(--color-white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
    transform: scale(1.05);
    /* Slight zoom for effect */
    animation: zoomIn 20s infinite alternate;
}

@keyframes zoomIn {
    from {
        transform: scale(1.05);
    }

    to {
        transform: scale(1.15);
    }
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding-top: 4rem;
}

.how-card {
    text-align: center;
    padding: 1.5rem;
}

.icon-circle-large {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle-large img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Removed margin-bottom from img as it is inside the flex container now */
}

.how-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--color-secondary);
}

.how-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text-light);
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-white);
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    max-width: 650px;
    font-weight: 400;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

/* About Section */
.about {
    padding: 8rem 0;
    background-color: var(--color-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image img {
    border-radius: 8px;
    box-shadow: var(--shadow-card);
}

.rounded-img {
    border-radius: 8px;
}

.shadow-lg {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Timeline / Milestones */
.milestones-section {
    margin-top: 5rem;
    position: relative;
    padding: 2rem 0;
}

.timeline {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-accent);
    z-index: 0;
    opacity: 0.3;
}

.timeline-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-card);
    flex: 1;
    min-width: 200px;
    text-align: center;
    position: relative;
    z-index: 1;
    border-top: 4px solid var(--color-accent);
}

.timeline-item .year {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

/* Pillars Section */
.pillars {
    padding: 8rem 0;
    background-color: var(--color-off-white);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.pillar-card {
    display: block;
    color: inherit;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition-fast);
}

.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.card-image {
    height: 250px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.pillar-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 2rem;
}

.pillar-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    color: var(--color-primary);
}

.pillar-card p {
    font-size: 1rem;
    color: var(--color-text-light);
}

/* Earnings Section */
.earnings {
    padding: 8rem 0;
    background-color: var(--color-primary);
    color: var(--color-white);
}

.earnings-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.check-list {
    margin-top: 1.5rem;
}

.check-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    opacity: 0.9;
}

.check-list li::before {
    content: '✓';
    color: var(--color-accent);
    margin-right: 12px;
    font-weight: 800;
}

.earnings-calculator {
    background: var(--color-white);
    color: var(--color-text-main);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.earnings-calculator h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
}

.calc-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.amount {
    font-weight: 700;
}

.calc-divider {
    height: 1px;
    background-color: #eee;
    margin: 1.5rem 0;
}

.calc-row.total {
    font-size: 1.3rem;
    font-weight: 800;
}

.highlight-text {
    color: var(--color-primary);
}

.note {
    font-size: 0.85rem;
    color: #999;
    margin-top: 1rem;
    font-style: italic;
}

/* Community Banner */
.community-banner {
    position: relative;
    padding: 10rem 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--color-white);
    text-align: center;
}

.overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.relative {
    position: relative;
}

.z-10 {
    z-index: 10;
}

.community-links {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/* What is Deeper Green */
.what-is {
    padding: 8rem 0;
}

.what-is-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.what-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.number-badge {
    width: 40px;
    height: 40px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.what-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--color-secondary);
}

.mt-4 {
    margin-top: 1.5rem;
}

/* How It Works */
.bg-off-white {
    background-color: var(--color-off-white);
}

.how-it-works {
    padding: 6rem 0;
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    text-align: center;
}

.icon-circle {
    width: 120px;
    height: 120px;
    background-color: #f0f0f0;
    /* Muted bg for icon */
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.how-item h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.how-item p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Give Back Impact Grid */
.give-back {
    padding: 8rem 0;
}

.mb-5 {
    margin-bottom: 3rem;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.impact-item,
.impact-card {
    position: relative;
    height: 450px;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    /* Align text to bottom */
    justify-content: center;
    box-shadow: var(--shadow-card);
    transition: transform 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-5px);
}

.impact-overlay-text {
    width: 100%;
    padding: 2rem 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
    text-align: center;
}

.impact-overlay-text h3 {
    color: white;
    font-size: 1.8rem;
    font-weight: 800;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
    margin: 0;
    text-transform: none;
    /* Keep sentence case as requested */
}

.bg-light-gray {
    background-color: var(--color-off-white);
}

/* Shares Plan */
.shares-plan {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.shares-plan .section-title {
    color: var(--color-white);
}

.shares-plan .lead {
    color: rgba(255, 255, 255, 0.9);
}

.shares-plan img {
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    max-width: 80%;
    margin-left: auto;
}

/* Testimonials */
.testimonials {
    padding: 8rem 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 4px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.testimonial-card .avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.testimonial-card .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-card h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--color-primary);
}

.testimonial-card p {
    font-style: italic;
    font-size: 0.95rem;
    color: #555;
}

/* Footer */
footer {
    background-color: #111;
    color: #777;
    padding: 4rem 0;
    text-align: center;
    font-size: 0.9rem;
}

/* Footer adjustment */
footer {
    padding: 4rem 0;
}

/* Responsive */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .about-grid,
    .earnings-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .earnings-calculator {
        margin-top: 2rem;
    }

    .what-is-grid {
        grid-template-columns: 1fr;
    }

    .what-is-media {
        order: -1;
        /* Image on top on mobile */
    }

    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav ul {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .community-links {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }
}



/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: var(--color-off-white);
    padding: 2rem;
    border-radius: 8px;
}

.faq-item h4 {
    color: var(--color-primary);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.faq-item p {
    font-size: 0.95rem;
    color: var(--color-text-light);
}

@media (max-width: 992px) {
    .pricing-card.featured {
        transform: none;
    }
}

/* Mobile Drawer Menu */
@media (max-width: 992px) {
    .nav ul {
        display: none;
        /* hidden by default */
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: #fff;
        flex-direction: column;

        /* 🔥 IMPORTANT FIX */
        align-items: flex-start;
        justify-content: flex-start;

        padding: 5rem 2rem 2rem;
        gap: 1.2rem;

        transition: right 0.35s ease;
        z-index: 1001;
    }

    .nav ul.active {
        display: flex;
        right: 0;
    }

    .nav ul li {
        width: 100%;
        margin: 0;
    }

    .nav ul a {
        display: block;
        width: 100%;
        font-size: 1.1rem;
        font-weight: 600;
    }

   
}


.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background-color: #0b3d2e;
    /* FORCE visible color */
    border-radius: 3px;
}

/* Mobile */
@media (max-width: 992px) {
    .menu-toggle {
        display: flex !important;
        z-index: 1002;
    }
}

/* ===============================
   MOBILE NAVIGATION (FINAL)
================================ */

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: #ffffff;
    margin: 6px 0;
    border-radius: 3px;
    transition: 0.3s ease;
}

/* Mobile only */
@media (max-width: 992px) {

    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        z-index: 2001;
    }

    /* Hamburger to X animation */
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .nav ul {
        display: none;
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 5rem 2rem 2rem;
        gap: 1.2rem;
        transition: right 0.35s ease;
        z-index: 2000;
    }

    .nav ul.active {
        display: flex;
        right: 0;
    }

    .nav ul a {
        color: #000;
        font-size: 1.1rem;
        font-weight: 600;
        width: 100%;
    }

    .btn.btn-primary {
        display: none;
    }
}