/* DEVELOPED BY TRENZY TECH |+2347047889687 | COPYRIGHT © 2026 YMG FUNDS. ALL RIGHTS RESERVED. */
:root {
    --green-dark: #081c10;
    --green-mid: #0b2918;
    --green-deep: #0d3320;
    --green-bright: #1a5c35;
    --green-light: #2d8a52;
    --gold: #c9a84c;
    --gold-light: #e4c675;
    --gold-pale: #f5e9c8;
    --white: #ffffff;
    --text-body: #b8ccc0;
    --text-muted: #6e8c78;
    --card-border: rgba(201, 168, 76, 0.18);
    --nav-height: 72px;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    height: var(--nav-height);
    background: #fff;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-img {
    height: 60px;
    width: auto;
}

.logo-text {
    font-family: 'Syne', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.2px;
}

.logo-text strong {
    color: var(--gold);
    font-weight: 800;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 18px;
    font-weight: 500;
    color: var(--green-bright);
    transition: color 0.2s ease;
    position: relative;
    padding-bottom: 2px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.btn-login {
    font-family: 'DM Sans', sans-serif;
    font-size: 19px;
    font-weight: 500;
    color: var(--green-bright);
    padding: 9px 18px;
    border-radius: 8px;
    transition: color 0.2s ease;
}

.btn-login:hover {
    color: var(--gold);
}

.btn-start {
    font-family: 'DM Sans', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--green-dark);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    padding: 10px 20px;
    border-radius: 9px;
    letter-spacing: 0.1px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}

.btn-start:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.35);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--green-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: calc(var(--nav-height) + 60px) 24px 80px;
    overflow: hidden;
}

.hero-bg {
    background-image: url('../images/hero-image.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    z-index: 0;
    position: absolute;
    inset: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(8, 28, 16, 0.55) 0%,
            rgba(8, 28, 16, 0.45) 40%,
            rgba(8, 28, 16, 0.82) 100%);
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.14;
    z-index: 1;
    pointer-events: none;
}

.orb-left {
    width: 560px;
    height: 560px;
    background: var(--green-light);
    top: -140px;
    left: -160px;
}

.orb-right {
    width: 420px;
    height: 420px;
    background: var(--gold);
    bottom: -100px;
    right: -100px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 640px;
    width: 100%;
    animation: fadeUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(32px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.28);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--gold-light);
    margin-bottom: 28px;
    letter-spacing: 0.4px;
}

.badge-dot {
    width: 7px;
    height: 7px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2.2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.45;
        transform: scale(0.75);
    }
}

.hero-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.2rem, 5.5vw, 3.6rem);
    font-weight: bold;
    line-height: 1.13;
    color: var(--white);
    margin-bottom: 22px;
    letter-spacing: -0.5px;
}

.hero-title .accent {
    color: var(--gold);
}

.hero-sub {
    font-size: 16.5px;
    line-height: 1.72;
    color: var(--text-body);
    font-weight: 300;
    margin-bottom: 40px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 52px;
    flex-wrap: wrap;
}

.btn-get-started {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--green-dark);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    padding: 14px 28px;
    border-radius: 10px;
    letter-spacing: 0.1px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-get-started:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(201, 168, 76, 0.38);
}

.btn-get-started svg {
    transition: transform 0.2s ease;
}

.btn-get-started:hover svg {
    transform: translateX(4px);
}

.btn-explore {
    display: inline-flex;
    align-items: center;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    padding: 13px 28px;
    border-radius: 10px;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.btn-explore:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(201, 168, 76, 0.4);
    color: var(--gold-light);
}

.trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 400;
    color: var(--text-muted);
}

.trust-item svg {
    color: var(--gold);
    flex-shrink: 0;
}

.trust-divider {
    color: var(--text-muted);
    opacity: 0.4;
    font-size: 18px;
    line-height: 1;
}

@media (max-width: 1000px) {

    .nav-links,
    .nav-actions {
        display: none;
    }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        position: absolute;
        top: var(--nav-height);
        left: 0;
        right: 0;
        background: #fff;
        border-bottom: 1px solid var(--card-border);
        padding: 20px 32px 100px 32px;
        animation: slideDown 0.25s ease;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-links.open~.nav-actions {
        display: flex;
        position: absolute;
        top: calc(var(--nav-height) + 150px);
        left: 32px;
        right: 32px;
        flex-direction: column;
        gap: 10px;
    }

    .hamburger {
        display: flex;
    }

    .nav-link {
        font-size: 15px;
        padding: 10px 0;
    }

    .trust-divider {
        display: none;
    }

    .trust-badges {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-sub {
        font-size: 15px;
    }

    .btn-get-started,
    .btn-explore {
        width: 100%;
        justify-content: center;
    }

    .nav-container {
        padding: 0 20px;
    }
}


.stats-container {
    background: var(--green-deep);
    width: 100%;
    padding: 40px 32px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin: 20px;
}

.stat-icon {
    font-size: 22px;
}

.stat-item h4 {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
}

.stat-item p {
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.55);
}

.how-it-works {
    background: #f0f4f0;
    padding: 90px 32px;
    text-align: center;
}

.hiw-container {
    max-width: 1100px;
    margin: 0 auto;
}

.section-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 12px;
}

.how-it-works h2 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: #0d1f13;
    margin-bottom: 14px;
}

.section-sub {
    font-size: 15.5px;
    color: #6b7f70;
    font-weight: 400;
    margin-bottom: 56px;
}

.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin-bottom: 48px;
}

.step-card {
    background: var(--white);
    border-radius: 14px;
    padding: 28px 24px;
    text-align: left;
    flex: 1;
    max-width: 240px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.step-connector {
    flex-shrink: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #d0d8d2, #c9a84c44);
    margin-top: 38px;
}

.step-number {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    margin-bottom: 16px;
    color: var(--white);
}

.step-number.green {
    background: var(--green-deep);
}

.step-number.gold {
    background: var(--gold);
}

.step-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 15.5px;
    font-weight: 700;
    color: #0d1f13;
    margin-bottom: 8px;
}

.step-card p {
    font-size: 13.5px;
    color: #7a8f80;
    line-height: 1.6;
}

.btn-journey {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    background: var(--green-deep);
    padding: 14px 30px;
    border-radius: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-journey:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(13, 51, 32, 0.3);
}

.btn-journey:hover i {
    transform: translateX(4px);
}

.btn-journey i {
    transition: transform 0.2s ease;
}

@media (max-width: 900px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .step-connector {
        width: 2px;
        height: 30px;
        margin-top: 0;
    }

    .step-card {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .stats-container {
        display: flex;
        flex-direction: column;
    }
}

.features {
    background: #d5ddd5;
    padding: 90px 32px;
    text-align: center;
}

.features-container {
    max-width: 1100px;
    margin: 0 auto;
}

.features h2 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 800;
    color: #0d1f13;
    margin-bottom: 14px;
    line-height: 1.2;
}

.features h2 .accent {
    color: var(--gold);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 48px 0;
    text-align: left;
}

.feature-card {
    background: var(--white);
    border-radius: 14px;
    padding: 32px 28px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(201, 168, 76, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--gold);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #0d1f13;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: #7a8f80;
    line-height: 1.65;
}

.btn-view-features {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14.5px;
    font-weight: 500;
    color: #0d1f13;
    border: 1.5px solid #d0d8d2;
    padding: 13px 28px;
    border-radius: 10px;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.btn-view-features:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-view-features i {
    transition: transform 0.2s ease;
}

.btn-view-features:hover i {
    transform: translateX(4px);
}

@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 540px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.plans {
    background: #eef2ee;
    padding: 90px 32px;
    text-align: center;
}

.plans-container {
    max-width: 1100px;
    margin: 0 auto;
}

.plans h2 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 800;
    color: #0d1f13;
    margin-bottom: 14px;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 48px 0 32px;
    align-items: start;
}

.plan-card {
    background: var(--white);
    border-radius: 18px;
    padding: 60px 24px;
    text-align: left;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.plan-card.plan-featured {
    background: var(--green-deep);
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(13, 51, 32, 0.25);
}

.plan-card.plan-featured:hover {
    transform: translateY(-12px);
}

.plan-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold);
    color: var(--green-dark);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
    letter-spacing: 0.5px;
}

.plan-icon {
    width: 48px;
    height: 48px;
    background: rgba(201, 168, 76, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--gold);
    margin-bottom: 20px;
}

.plan-icon.featured {
    background: rgba(255, 255, 255, 0.12);
}

.plan-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #0d1f13;
    margin-bottom: 8px;
}

.plan-featured h3 {
    color: var(--white);
}

.plan-desc {
    font-size: 13.5px;
    color: #7a8f80;
    line-height: 1.6;
    margin-bottom: 24px;
}

.plan-featured .plan-desc {
    color: rgba(255, 255, 255, 0.65);
}

.plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin-bottom: 28px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #3a4f3f;
}

.plan-features li i {
    color: var(--gold);
    font-size: 15px;
    flex-shrink: 0;
}

.plan-featured .plan-features li {
    color: rgba(255, 255, 255, 0.9);
}

.btn-plan-outline {
    display: block;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 14.5px;
    font-weight: 600;
    color: #0d1f13;
    border: 1.5px solid #d0d8d2;
    padding: 13px;
    border-radius: 10px;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.btn-plan-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-plan-primary {
    display: block;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--green-dark);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    padding: 14px;
    border-radius: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-plan-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.4);
}

.plans-footnote {
    font-size: 13px;
    color: #7a8f80;
}

.plans-footnote a {
    color: var(--gold);
    font-weight: 500;
    transition: opacity 0.2s;
}

.plans-footnote a:hover {
    opacity: 0.75;
}

@media (max-width: 900px) {
    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    .plan-card.plan-featured {
        transform: translateY(0);
    }
}

.dashboard-preview {
    background: var(--white);
    padding: 90px 32px;
}

.dp-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.dp-left {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.dp-left h2 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.7rem, 3.5vw, 2.3rem);
    font-weight: 800;
    color: #0d1f13;
    line-height: 1.2;
    margin-bottom: 16px;
}

.dp-desc {
    font-size: 15px;
    color: #6b7f70;
    line-height: 1.7;
    margin-bottom: 32px;
}

.dp-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 36px;
}

.dp-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.dp-feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(201, 168, 76, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.dp-feature-item h4 {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #0d1f13;
    margin-bottom: 4px;
}

.dp-feature-item p {
    font-size: 13.5px;
    color: #7a8f80;
    line-height: 1.6;
}

.btn-try-free {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--white);
    background: var(--green-deep);
    padding: 13px 26px;
    border-radius: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    align-self: flex-start;
}

.btn-try-free:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(13, 51, 32, 0.25);
}

.btn-try-free i {
    transition: transform 0.2s ease;
}

.btn-try-free:hover i {
    transform: translateX(4px);
}

.dp-right {
    position: relative;
    border-radius: 20px;
    overflow: visible;
}

.dp-image-placeholder {
    width: 100%;
    height: 320px;
    background: #d0d8d2;
    border-radius: 20px;
}

.dp-right img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.dp-badge-top {
    position: absolute;
    top: -16px;
    right: -16px;
    background: var(--green-deep);
    color: var(--white);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    box-shadow: 0 8px 24px rgba(13, 51, 32, 0.3);
}

.dp-badge-top i {
    font-size: 16px;
    color: var(--gold);
}

.dp-badge-top span {
    display: block;
    opacity: 0.7;
    font-size: 11px;
}

.dp-badge-top strong {
    display: block;
    font-size: 13px;
}

.dp-badge-bottom {
    position: absolute;
    bottom: -16px;
    left: 24px;
    background: var(--white);
    border-radius: 12px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.dp-badge-bottom i {
    font-size: 18px;
    color: var(--gold);
}

.dp-badge-bottom span {
    display: block;
    font-size: 11px;
    color: #7a8f80;
}

.dp-badge-bottom strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #0d1f13;
}

@media (max-width: 900px) {
    .dp-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .dp-badge-top {
        right: 12px;
        top: 12px;
    }
}

.disclaimer {
  margin-top: 20px;
  font-size: 13px;
  color: #777;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.security {
    background: var(--green-dark);
    padding: 90px 32px;
    text-align: center;
}

.security-container {
    max-width: 1100px;
    margin: 0 auto;
}

.section-label-dark {
    display: inline-block;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--gold-light);
    background: rgba(201, 168, 76, 0.12);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 100px;
    padding: 5px 16px;
    margin-bottom: 20px;
    letter-spacing: 0.4px;
}

.security h2 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 14px;
    line-height: 1.2;
}

.section-sub.light {
    color: rgba(255, 255, 255, 0.55);
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 52px 0 44px;
    text-align: left;
}

.security-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 32px 28px;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.security-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(201, 168, 76, 0.2);
}

.security-icon {
    width: 46px;
    height: 46px;
    background: rgba(201, 168, 76, 0.1);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    color: var(--gold);
    margin-bottom: 20px;
}

.security-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 15.5px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.security-card p {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.65;
}

.btn-security {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    padding: 13px 28px;
    border-radius: 10px;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.btn-security:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-security i {
    transition: transform 0.2s ease;
}

.btn-security:hover i {
    transform: translateX(4px);
}

@media (max-width: 900px) {
    .security-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 540px) {
    .security-grid {
        grid-template-columns: 1fr;
    }
}

.why-us {
    background: #f0f4f0;
    padding: 90px 32px;
}

.why-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.why-left {
    position: relative;
}

.why-image-placeholder {
    width: 100%;
    height: 380px;
    border-radius: 20px;
    background-image: url('../images/why-us.webp');
    background-size: cover;
    background-position: center;
}

.why-left img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.why-badge {
    position: absolute;
    bottom: -20px;
    left: 87%;
    transform: translateX(-50%);
    background: var(--white);
    border-radius: 14px;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

.why-badge i {
    font-size: 22px;
    color: var(--gold);
}

.why-badge strong {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: #0d1f13;
    line-height: 1;
}

.why-badge span {
    font-size: 12px;
    color: #7a8f80;
}

.why-right {
    display: flex;
    flex-direction: column;
}

.why-right h2 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 800;
    color: #0d1f13;
    line-height: 1.2;
    margin-bottom: 16px;
}

.why-right h2 .accent {
    color: var(--gold);
}

.why-badge-top {
  top: -30px;
  left: 90px;
  bottom: auto;
  right: auto;
}

.why-desc {
    font-size: 15px;
    color: #6b7f70;
    line-height: 1.7;
    margin-bottom: 32px;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--white);
    border-radius: 14px;
    padding: 20px 20px;
    transition: box-shadow 0.2s ease;
}

.why-item:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
}

.why-icon {
    width: 42px;
    height: 42px;
    background: rgba(201, 168, 76, 0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: var(--gold);
    flex-shrink: 0;
}

.why-item h4 {
    font-family: 'Inter', sans-serif;
    font-size: 14.5px;
    font-weight: 700;
    color: #0d1f13;
    margin-bottom: 4px;
}

.why-item p {
    font-size: 13px;
    color: #7a8f80;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .why-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

.testimonials {
  background: #c0c2c0;
  padding: 90px 32px;
  text-align: center;
}

.testimonials-container {
  max-width: 1100px;
  margin: 0 auto;
}

.testimonials h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  color: #0d1f13;
  margin-bottom: 12px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  text-align: left;
}

.testimonial-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.testimonial-card.featured {
  background: var(--green-deep);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
}

.testimonial-stars i {
  font-size: 13px;
  color: var(--gold);
}

.testimonial-card p {
  font-size: 14.5px;
  color: #4a5f50;
  line-height: 1.75;
  flex: 1;
}

.testimonial-card.featured p {
  color: rgba(255, 255, 255, 0.75);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--green-dark);
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #0d1f13;
}

.testimonial-card.featured .testimonial-author strong {
  color: var(--white);
}

.testimonial-author span {
  font-size: 12.5px;
  color: #7a8f80;
}

.testimonial-card.featured .testimonial-author span {
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
  }

  .testimonial-card.featured {
    order: -1;
  }
}

.faq {
  background: var(--white);
  padding: 90px 32px;
  text-align: center;
}

.faq-container {
  max-width: 680px;
  margin: 0 auto;
}

.faq h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  color: #0d1f13;
  margin-bottom: 12px;
}

.faq-list {
  margin: 44px 0 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.faq-item {
  background: #f5f7f5;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.faq-item.open {
  border-color: rgba(201, 168, 76, 0.25);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #0d1f13;
  text-align: left;
}

.faq-question i {
  font-size: 14px;
  color: var(--green-deep);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
  padding: 0 24px;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 14px;
  color: #6b7f70;
  line-height: 1.75;
  border-top: 1px solid #e8ede8;
  padding-top: 16px;
}

.faq-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.faq-footer p {
  font-size: 14px;
  color: #7a8f80;
}

.btn-support {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--white);
  background: var(--green-deep);
  padding: 13px 28px;
  border-radius: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-support:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13, 51, 32, 0.25);
}

.btn-support i { transition: transform 0.2s ease; }
.btn-support:hover i { transform: translateX(4px); }

.cta {
  position: relative;
  background: linear-gradient(135deg, #0a2e1a 0%, #0d2137 60%, #0a1a2e 100%);
  padding: 90px 32px;
  text-align: center;
  overflow: hidden;
}

.cta-coins {
  position: absolute;
  top: -10px;
  right: 40px;
  font-size: 120px;
  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.cta-container {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 100px;
  padding: 7px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gold-light);
  margin-bottom: 24px;
}

.cta-badge i { font-size: 12px; }

.cta h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 18px;
}

.cta p {
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--green-dark);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  padding: 14px 28px;
  border-radius: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(201, 168, 76, 0.4);
}

.btn-cta-primary i { transition: transform 0.2s ease; }
.btn-cta-primary:hover i { transform: translateX(4px); }

.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid var(--gold);
  padding: 13px 28px;
  border-radius: 10px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.btn-cta-outline:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(201, 168, 76, 0.4);
  color: var(--gold-light);
}

.cta-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 28px;
}

.cta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.55);
}

.cta-trust-item i {
  color: var(--gold);
  font-size: 14px;
}

@media (max-width: 540px) {
  .cta-trust {
    flex-direction: column;
    gap: 14px;
  }

  .btn-cta-primary,
  .btn-cta-outline {
    width: 100%;
    justify-content: center;
  }

  .cta-coins { font-size: 80px; }
}

.footer {
  background: var(--green-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-main {
  padding: 64px 32px;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
    height: 110px;
    width: 130px;
}

.footer-brand p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.75;
  max-width: 260px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.footer-socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}

.footer-links-group h4 {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  letter-spacing: 0.3px;
}

.footer-links-group ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-group a {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s ease;
}

.footer-links-group a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 20px 32px;
}

.footer-bottom-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom strong {
  color: var(--gold-light);
  font-weight: 600;
}

.footer-security {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-security span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.35);
}

.footer-security i {
  color: var(--gold);
  font-size: 13px;
}


.footer-contact i {
  margin-right: 8px;
  color: #d4af37; 
}

@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 540px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 900px) {
  .plans-grid[style] { grid-template-columns: repeat(1, 1fr) !important; }
}
@media (max-width: 500px) {
  .plans-grid[style] { grid-template-columns: 1fr !important; }
}