body.landing-body {
    background: #f2f6f2;
    color: #33413a;
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    overflow-x: hidden;
}

.landing-body a {
    text-decoration: none;
}

/* Navbar */
.landing-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 5%;
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.landing-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 800;
    font-size: 1.1rem;
    color: #1a2420;
}

.landing-brand-logo {
    width: 36px;
    height: 36px;
    border-radius: 0.6rem;
    background: linear-gradient(135deg, #22c55e, #0f6e34);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.landing-nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.landing-btn-outline {
    border: 1px solid rgba(0, 0, 0, 0.15);
    color: #33413a;
    padding: 0.5rem 1.1rem;
    border-radius: 0.6rem;
    font-weight: 600;
    font-size: 0.88rem;
}

.landing-btn-solid {
    background: linear-gradient(135deg, #22c55e, #15803d);
    color: #fff;
    padding: 0.5rem 1.2rem;
    border-radius: 0.6rem;
    font-weight: 700;
    font-size: 0.88rem;
    box-shadow: 0 8px 20px -6px rgba(21, 128, 61, 0.5);
}

/* Hero */
.landing-hero {
    padding: 4rem 5% 3rem;
    text-align: center;
    background: radial-gradient(circle at 50% 0%, rgba(22, 163, 74, 0.08), transparent 55%);
}

.landing-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(22, 163, 74, 0.1);
    border: 1px solid rgba(22, 163, 74, 0.3);
    color: #15803d;
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.landing-badge .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #16a34a;
    box-shadow: 0 0 8px #16a34a;
}

.landing-hero h1 {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 1.25rem;
    color: #14201a;
}

.landing-hero h1 .accent {
    background: linear-gradient(135deg, #16a34a, #0284c7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.landing-hero p {
    max-width: 560px;
    margin: 0 auto 2rem;
    color: #6b7d72;
    font-size: 1.02rem;
    line-height: 1.6;
}

.landing-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, #22c55e, #15803d);
    color: #fff;
    font-weight: 700;
    padding: 0.9rem 2rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    box-shadow: 0 14px 30px -10px rgba(21, 128, 61, 0.55);
    margin-bottom: 3rem;
}

.landing-stats-row {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.landing-stats-row .stat {
    text-align: center;
}

.landing-stats-row .value {
    font-size: 1.8rem;
    font-weight: 800;
    color: #14201a;
}

.landing-stats-row .label {
    font-size: 0.75rem;
    color: #8b978f;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-top: 0.2rem;
}

/* Section shared */
.landing-section {
    padding: 3.5rem 5%;
    max-width: 1100px;
    margin: 0 auto;
}

.landing-section-eyebrow {
    text-align: center;
    color: #16a34a;
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.6rem;
}

.landing-section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    color: #14201a;
    margin-bottom: 0.75rem;
}

.landing-section-title .accent {
    background: linear-gradient(135deg, #16a34a, #0284c7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.landing-section-sub {
    text-align: center;
    color: #8b978f;
    max-width: 520px;
    margin: 0 auto 2.5rem;
    font-size: 0.95rem;
}

/* Ticker */
.landing-ticker-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.landing-ticker-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 0.9rem;
    padding: 1.1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.landing-ticker-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.landing-ticker-name {
    font-weight: 700;
    color: #1a2420;
    font-size: 0.95rem;
}

.landing-ticker-sub {
    font-size: 0.68rem;
    color: #8b978f;
}

.landing-ticker-roi {
    background: rgba(22, 163, 74, 0.12);
    color: #15803d;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 0.2rem 0.55rem;
    border-radius: 0.4rem;
}

.landing-ticker-price {
    font-size: 1.35rem;
    font-weight: 800;
    color: #14201a;
}

.landing-ticker-spark {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 34px;
    margin-top: 0.75rem;
}

.landing-ticker-spark span {
    flex: 1;
    border-radius: 1px;
    background: #16a34a;
    opacity: 0.85;
}

/* Feature grid */
.landing-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.1rem;
}

.landing-feature-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.landing-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.landing-feature-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a2420;
    margin: 0 0 0.5rem;
}

.landing-feature-card p {
    font-size: 0.85rem;
    color: #8b978f;
    line-height: 1.55;
    margin: 0;
}

/* Why us split */
.landing-why-section {
    background: #eef2ee;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.landing-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.landing-why-item {
    display: flex;
    gap: 1.1rem;
    margin-bottom: 1.75rem;
}

.landing-why-item:last-child {
    margin-bottom: 0;
}

.landing-why-number {
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, #16a34a, #0284c7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    flex-shrink: 0;
    width: 70px;
}

.landing-why-item h4 {
    font-size: 0.98rem;
    font-weight: 700;
    color: #1a2420;
    margin: 0 0 0.35rem;
}

.landing-why-item p {
    font-size: 0.84rem;
    color: #8b978f;
    margin: 0;
    line-height: 1.5;
}

.landing-why-visual {
    background: #ffffff;
    border: 1px solid rgba(22, 163, 74, 0.18);
    border-radius: 1.25rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.landing-why-visual-ring {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 3px solid rgba(22, 163, 74, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
}

.landing-why-visual-ring::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #16a34a;
    border-right-color: #16a34a;
}

.landing-why-visual-ring i {
    font-size: 2.25rem;
    color: #16a34a;
}

/* Final CTA */
.landing-cta-section {
    text-align: center;
    padding: 4rem 5%;
}

.landing-cta-section h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #14201a;
    margin-bottom: 0.75rem;
}

.landing-cta-section p {
    color: #8b978f;
    margin-bottom: 2rem;
}

.landing-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Footer */
.landing-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding: 2.5rem 5%;
    text-align: center;
    color: #8b978f;
    font-size: 0.8rem;
}

@media (max-width: 767px) {
    .landing-hero h1 {
        font-size: 2rem;
    }

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

    .landing-stats-row {
        gap: 1.5rem;
    }
}
