﻿*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --green: #00ff00;
    --green-dark: #00c853;
    --orange: #ff6600;
    --orange-dark: #e55b00;
    --bg: #0a0a0a;
    --bg2: #0d0d0d;
    --card: #111111;
    --border: rgba(255,255,255,0.06);
    --text: #ffffff;
    --muted: #9ca3af;
    --dimmed: #4b5563;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter",sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

/* ── NAVBAR ── */
nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav-logo {
    color: var(--green);
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.5px;
    margin-top: 10px;
}

.nav-links {
    display: flex;
    /*gap: 24px;*/
    justify-content: space-between;
    flex-grow: 1;
    padding: 0px 50px;
    max-width: 700px;
}

.nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color .2s;
}

.nav-links a:hover {
    color: #fff;
}

.nav-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn-ghost {
    background: none;
    border: none;
    color: var(--muted);
    font-size: 0.875rem;
    cursor: pointer;
    transition: color .2s;
}

.btn-ghost:hover {
    color: #fff;
}

.btn-primary {
    background: var(--green);
    color: #000;
    border: none;
    font-weight: 700;
    font-size: 0.875rem;
    padding: 8px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: background .2s;
    text-decoration:none;
}

.btn-primary:not(.cta-orange):hover {
    background: var(--green-dark);
}

.btn-orange {
    background: var(--orange);
    color: #fff;
    border: none;
    font-weight: 700;
    font-size: 0.875rem;
    padding: 10px 28px;
    border-radius: 8px;
    cursor: pointer;
    transition: background .2s;
}

.btn-orange:hover {
    background: var(--orange-dark);
}

.btn-outline-green {
    background: none;
    border: 1px solid rgba(0,230,118,.3);
    color: var(--green);
    font-weight: 700;
    font-size: 0.875rem;
    padding: 10px 28px;
    border-radius: 8px;
    cursor: pointer;
    transition: background .2s;
}

.btn-outline-green:hover {
    background: rgba(0,230,118,.05);
}

.btn-outline-red {
    background: none;
    border: 1px solid rgba(239,68,68,.3);
    color: #f87171;
    font-weight: 700;
    font-size: 0.875rem;
    padding: 10px 28px;
    border-radius: 8px;
    cursor: pointer;
    transition: background .2s;
}

.btn-outline-red:hover {
    background: rgba(239,68,68,.05);
}

.btn-outline-white {
    background: none;
    border: 1px solid rgba(255,255,255,.2);
    color: #fff;
    font-weight: 700;
    font-size: 0.875rem;
    padding: 10px 28px;
    border-radius: 8px;
    cursor: pointer;
    transition: background .2s;
}

.btn-outline-white:hover {
    background: rgba(255,255,255,.05);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--muted);
    margin: 5px 0;
    transition: .3s;
}

.mobile-menu {
    display: none;
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 16px 24px;
}

.mobile-menu a:not(.btn-primary) {
    display: block;
    color: var(--muted);
    text-decoration: none;
    font-size: 0.875rem;
    padding: 8px 0;
}

/* ── LAYOUT ── */
section {
    padding: 80px 24px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-alt {
    background: var(--bg2);
}

/* ── HERO ── */
#hero {
    padding: 80px 24px 100px;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    color: var(--text);
    font-size: 0.9rem;
    margin-bottom: 16px;
    line-height: 1.1em;
}

.hero-badge-sub {
    display: inline-block;
    color: var(--green);
    font-size: 0.5rem;
    background: rgba(0,230,118,.05);
}

.hero-title {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-title .hl-orange {
    color: var(--orange);
}

.hero-sub {
    color: var(--text);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.steps-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.step-row {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.step-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0,230,118,.1);
    border: 1px solid rgba(0,230,118,.3);
    color: var(--green);
    font-weight: 700;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-title {
    font-size: 0.875rem;
    font-weight: 600;
}

.step-desc {
    font-size: 0.75rem;
    color: var(--muted);
}

.step-badge {
    font-size: 0.8rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 6px;
    white-space: nowrap;
    flex-shrink: 0;
}

.step-badge.green {
    background: var(--green);
    color: #000;
}

.step-badge.orange {
    background: var(--orange);
    color: #000;
}

.step-badge.mono {
    background: rgba(0,230,118,.1);
    color: var(--green);
    font-family: monospace;
    border: 1px solid rgba(0,230,118,.2);
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    opacity: .4;
}

.glow-green {
    width: 400px;
    height: 400px;
    background: rgba(0,230,118,.06);
    top: 50%;
    left: 20%;
    transform: translate(-50%,-50%);
}

.glow-orange {
    width: 300px;
    height: 300px;
    background: rgba(255,102,0,.05);
    top: 30%;
    right: 0;
}

/* ── STATS BAR ── */
#stats {
    background: var(--bg2);
    padding: 40px 24px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
}

.stat-label {
    font-size: 0.65rem;
    color: #b4b4b4;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 4px;
}

/* ── TRADING CONDITIONS ── */
.section-title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 600;
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.2em;
}

.section-title-h3 {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 400;
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.2em;
}

.section-sub {
    color: var(--muted);
    text-align: center;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto 48px;
}

.table-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.table-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 12px;
    padding: 0 20px;
}

.table-head span {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.table-head span:last-child {
    text-align: right;
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 10px;
}

.table-row span:last-child {
    text-align: right;
}

.table-row span {
    font-size: 0.875rem;
    color: var(--text);
}

/* ── COMPARISON ── */
.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.compare-card {
    background: var(--card);
    border-radius: 20px;
    padding: 32px;
}

.compare-card.green-card {
    border: 1px solid rgba(0,230,118,.2);
}

.compare-card.red-card {
    border: 1px solid rgba(239,68,68,.2);
}

.compare-heading {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.compare-heading.green {
    color: var(--green);
}

.compare-heading.red {
    color: #f87171;
}

.compare-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.icon-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 11px;
    font-weight: 900;
}

.icon-circle.green {
    background: rgba(0,230,118,.1);
    border: 1px solid rgba(0,230,118,.3);
    color: var(--green);
}

.icon-circle.red {
    background: rgba(239,68,68,.1);
    border: 1px solid rgba(239,68,68,.2);
    color: #f87171;
}

.compare-item p {
    font-size: 0.875rem;
    color: var(--muted);
}

.compare-btn {
    width: 100%;
    margin-top: 24px;
    padding: 12px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.875rem;
    cursor: pointer;
    border: none;
    transition: background .2s;
}

/* ── CALCULATOR ── */
.calc-card {
    max-width: 540px;
    margin: 0 auto;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
}

.calc-hint {
    font-size: 0.75rem;
    color: var(--muted);
    margin-bottom: 24px;
}

.calc-hint a {
    color: var(--green);
}

.calc-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.calc-row label {
    font-size: 0.875rem;
    color: var(--muted);
}

.calc-val {
    font-weight: 700;
    font-size: 0.875rem;
    padding: 6px 16px;
    border-radius: 6px;
}

.calc-val.green {
    background: var(--green);
    color: #000;
}

.calc-val.orange {
    background: var(--orange);
    color: #000;
}

input[type=range] {
    width: 100%;
    accent-color: var(--green);
    cursor: pointer;
    margin-bottom: 16px;
}

.calc-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 12px 0;
}

.calc-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 8px;
}

.calc-total span:first-child {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--green);
}

/* ── HOW TO ACTIVATE ── */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.activate-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: border-color .2s;
}

.activate-card:hover {
    border-color: rgba(0,230,118,.2);
}

.activate-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0,230,118,.1);
    border: 1px solid rgba(0,230,118,.3);
    color: var(--green);
    font-weight: 700;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.activate-card h3 {
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.activate-card p {
    font-size: 0.75rem;
    color: var(--muted);
    line-height: 1.5;
}

.activate-actions {
    text-align: center;
    margin-top: 32px;
}

.activate-actions small {
    display: block;
    color: var(--dimmed);
    font-size: 0.75rem;
    margin-top: 10px;
    text-decoration: underline;
    cursor: pointer;
}

/* ── FAQ ── */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 20px;
    cursor: pointer;
    font-size: 0.875rem;
    color: var(--text);
    transition: background .2s;
}

.faq-q:hover {
    background: rgba(255,255,255,.02);
}

.faq-q .arrow {
    font-size: 0.7rem;
    transition: transform .3s;
    flex-shrink: 0;
    color: var(--muted);
}

.faq-item.open .faq-q .arrow {
    transform: rotate(180deg);
}

.faq-a {
    display: none;
    padding: 0 20px 16px;
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.6;
}

.faq-contact {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    max-width: 800px;
    margin: 32px auto 0;
}

.faq-contact h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.faq-contact p {
    font-size: 0.875rem;
    color: var(--muted);
    margin-bottom: 20px;
}

/* ── CTA ── */
#cta {
    padding: 100px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#cta > div {
    padding: 50px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 20px;
}

#cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: black;
    margin-bottom: 12px;
    line-height: 1.2em;
}

#cta p {
    font-size: 1.5rem;
    color: var(--muted);
    margin-bottom: 40px;
}

.cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.glow-orange-cta {
    position: absolute;
    width: 600px;
    height: 300px;
    background: linear-gradient(to right, rgba(255,102,0,.15), rgba(255,51,0,.08), rgba(255,102,0,.15));
    filter: blur(60px);
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    pointer-events: none;
    border-radius: 50%;
}

/* FOOTER SECTION */

footer {
    background-image: url(footer-bg.jpg);
    background-size: cover;
    background-position: top;
}

footer .footer-social .text {
    color: rgba(255,255,255,0.67);
}

footer p {
    color: white;
    font-family: var(--font-main);
    font-size: 14px;
    margin: 0px;
}

footer a {
    color: white;
    font-size: 14px;
    text-decoration: underline;
}

.footer-img {
    padding-top: 100px;
    text-align: center;
}

.footer-img img {
    max-width: 80%;
}

.col-7-responsive {
    flex: 0 0 auto;
    width: calc(100% / 7);
    color: var(--white);
    font-family: var(--font-main);
}

footer .col-7-responsive h5 {
    font-size: 14px;
}

footer .col-7-responsive ul {
    list-style-type: none;
    padding-left: 0px;
    margin: 0;
    font-size: 12px;
}

footer .col-7-responsive ul li a {
    text-decoration: none;
}

.faq-more {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    background: linear-gradient(180deg,#000000,#000000,#000000,#000000,#555555);
    padding: 60px 0px;
    margin-top: 80px;
    overflow: hidden;
}

.faq-more h4 {
    font-size: 26px;
    font-weight: 600;
    color: white;
}

.faq-more p {
    font-size: 19px;
    font-weight: 400;
    color: rgba(255,255,255,0.66);
}

.faq-more .faq-more-r {
    height: 100%;
    position: absolute;
    bottom: 0px;
    right: 0px;
}

.sec-light {
    background-color: white;
    color: black;
}

/* ── ANIMATIONS ── */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.alert-dark {
    background-color:black;
    color:white;
    border:0px;
    border-radius:unset;
}
/* ── RESPONSIVE ── */
@media (max-width: 991.98px) {
    .col-7-responsive {
        flex: 0 0 auto;
        width: calc(100% / 3); /* 33.33% width for 3 columns */
        margin-bottom: 20px;
    }

    .faq-more {
        padding: 40px 0px;
    }
}

@media (max-width: 900px) {
    .nav-links, .nav-actions {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .steps-card {
        display: none;
    }

    .stats-grid {
        grid-template-columns: repeat(3,1fr);
    }

    .compare-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .footer-cols {
        grid-template-columns: repeat(3,1fr);
    }
}

@media (max-width: 767.98px) {
    .col-7-responsive {
        flex: 0 0 auto;
        width: 50%;
    }
}

@media (max-width: 580px) {
    .col-sm-7-responsive {
        width: 100%;
        padding-bottom: 20px;
    }

    .stats-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .footer-cols {
        grid-template-columns: repeat(2,1fr);
    }
}

.logo {
    height: 50px;
    margin: 10px 0px;
}

.cta-orange {
    background: linear-gradient(90deg, #ff9d1b, #ff6300);
}

.gtb {
    background: linear-gradient(90deg, #555555, #000000, #000000) !important;
}

.gtw {
    background: linear-gradient(90deg, #0bff00, #ffffff);
}

.rtw {
    background: linear-gradient(90deg, #ff3131, #ffffff);
}

.back-text {
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    display: inline-block;
}

.fw-bold {
    font-weight: 600;
}

.mw-95 {
    max-width: 95%;
}

.nav-item {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 8px;
    min-width: 200px;
    z-index: 110;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.nav-item:hover .submenu {
    display: block;
}

.submenu a {
    display: block;
    padding: 8px 12px;
    border-radius: 6px;
    white-space: nowrap;
}

.submenu a:hover {
    background: var(--bg);
}

.mobile-menu-item .mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    cursor: pointer;
    font-size: 0.875rem;
    color: var(--muted);
}

.mobile-menu-item .mobile-menu-header .arrow {
    transition: transform .3s;
    font-size: 0.7rem;
}

.mobile-menu-item.open .mobile-menu-header .arrow {
    transform: rotate(180deg);
}

.mobile-submenu {
    display: none;
    padding-left: 16px;
}

.mobile-submenu a {
    font-size: 0.8rem;
    padding: 6px 0;
}

.anc {
    text-decoration:none;
}

.anc:hover {
    text-decoration:underline;
}