/* ========== RESET & BASE STYLES ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-family: 'Lato', 'Geist', sans-serif;
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    padding-top: 90px;
    background: radial-gradient(1200px 700px at 50% -10%, rgba(124,255,122,0.18) 0%, rgba(0,0,0,0) 55%),
                radial-gradient(900px 500px at 20% 120%, rgba(124,255,122,0.12) 0%, rgba(0,0,0,0) 60%),
                #070a08;
    color: var(--text);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

button {
    background: none;
    border: none;
    cursor: pointer;
}

/* ============================================
    CSS
   ============================================ */
:root {
    --bg: #0b0c0d;
    --bg-2: #0f1113;
    --surface: rgba(255,255,255,0.04);
    --surface-2: rgba(255,255,255,0.06);
    --border: rgba(255,255,255,0.10);
    --border-2: rgba(255,255,255,0.14);
    --text: #f3f5f7;
    --muted: rgba(243,245,247,0.70);
    --muted-2: rgba(243,245,247,0.55);
    --primary: #7CFF7A;
    --primary-2: #35ff6b;
    --shadow: 0 10px 40px rgba(0,0,0,0.55);
    --radius-card: 24px;
    --radius-pill: 999px;
    --card-pad: 34px;
}

/* ============================================
   GRID 
   ============================================ */
.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60vh;
    pointer-events: none;
    z-index: 0;
    background-image: radial-gradient(circle, rgba(124, 255, 122, 0.35) 1.5px, transparent 1.5px);
    background-size: 28px 28px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0.8) 40%, rgba(0,0,0,0.4) 70%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0.8) 40%, rgba(0,0,0,0.4) 70%, rgba(0,0,0,0) 100%);
}

/* ============================================
   SHADOWN GREEN HOVER
   ============================================ */
.hover-glow {
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.hover-glow:hover {
    box-shadow: 0 0 30px rgba(124, 255, 122, 0.4), 0 0 60px rgba(124, 255, 122, 0.2), 0 10px 40px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

/* ============================================
   DESKTOP E MOBILE
   ============================================ */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

/* ============================================
   NAVBAR DESKTOP
   ============================================ */
.navbar {
    border-color: rgba(0, 0, 0, 0);
    will-change: background, transform;
    background-color: rgba(0, 0, 0, 0);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
    background: rgba(15,17,19,0.95);
    box-shadow: 0 8px 30px rgba(0,0,0,0.35);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
}

.navbar.hidden {
    transform: translateY(-100%);
}

.nav-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu-wrapper {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.logo-header-wrap {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.brand, .brand-tablet {
    display: flex;
    align-items: center;
}

.header-logo {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 8px;
    align-items: center;
    flex: 0 1 auto;
    margin: 0 auto;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 10px 18px;
}

.menu-wrap {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    padding: 10px 16px;
    transition: all 0.3s ease;
    color: var(--text);
    opacity: 0.85;
    border-radius: 8px;
}

.nav-link:hover {
    opacity: 1;
    color: var(--primary);
    background: rgba(124, 255, 122, 0.08);
    box-shadow: 0 0 15px rgba(124, 255, 122, 0.3);
}

.button-header {
    display: flex;
    gap: 20px;
    flex: 0 0 auto;
    margin-left: auto;
}

.borders-w-primary-button {
    border: 2px solid #000;
    border-radius: 50px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.borders-w-primary-button:hover {
    box-shadow: 0 0 20px rgba(124, 255, 122, 0.4);
}

.primary-button-white, .primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 50px;
    cursor: pointer;
}

.primary-button-white {
    background: #7cff7aeb;
    color: #0b0c0d;
    border: 1px solid rgba(255,255,255,0.35);
}

.primary-button-white:hover {
    background: #2df72aeb;
    transform: translateY(-1px);
}

.primary-button {
    background: linear-gradient(180deg, var(--primary) 0%, #7cff7aeb 100%);
    color: #0b0c0d;
    border: 1px solid rgba(124,255,122,0.35);
    box-shadow: 0 8px 26px rgba(124,255,122,0.22);
}

.primary-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 34px rgba(124,255,122,0.28);
}

.text-primary-button {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

.arrow-button {
    display: flex;
    width: 16px;
    height: 16px;
    overflow: hidden;
    position: relative;
}

.button-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.dark-icon-button {
    display: block;
}

.white-icon-hover {
    display: block;
    transform: translateX(-15px);
}

/* ============================================
   MENU MOBILE 
   ============================================ */
.menu-button {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    cursor: pointer;
    z-index: 1001;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    border-radius: 12px;
    gap: 5px;
}

.hamburger-line {
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ============================================
   MENU MOBILE OVERLAY
   ============================================ */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(7, 10, 8, 0);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, background 0.3s ease;
}

.mobile-menu-overlay.is-open {
    opacity: 1;
    visibility: visible;
    background: rgba(7, 10, 8, 0.85);
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 320px;
    height: 100%;
    background: rgba(11, 12, 13, 0.98);
    border-left: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
}

.mobile-menu-overlay.is-open .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-close {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-close span {
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
}

.mobile-menu-close span:first-child {
    transform: rotate(45deg);
}

.mobile-menu-close span:last-child {
    transform: rotate(-45deg);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
    max-width: 320px;
}

.mobile-nav-link {
    display: block;
    width: 100%;
    padding: 12px 20px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    text-align: center;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
    background: rgba(124, 255, 122, 0.1);
    border-color: var(--primary);
    color: var(--primary);
}

.mobile-nav-link.mobile-cta {
    background: var(--primary);
    color: #0b0c0d;
    border-color: var(--primary);
    margin-top: 15px;
}

.mobile-nav-link.mobile-cta:hover {
    background: #2df72aeb;
}

/* ========== HERO SECTION ========== */
.section {
    padding: 80px 0;
    position: relative;
}

.section.home-3-banner {
    background: transparent !important;
    padding: 60px 0;
}

.base-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 70px;
}

.small-container {
    max-width: 1200px;
}

.images-banner-home-3 {
    position: relative;
    height: clamp(320px, 38vw, 520px);
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-bg {
    position: absolute;
    width: 100%;
    height: 150%;
    object-fit: contain;
    opacity: 100;
}

.logo-big-banner {
    position: absolute;
    width: min(200px, 50vw);
    height: auto;
    max-height: 520px;
    opacity: 0.42;
    z-index: 1;
    transform: translateY(180px);
}

.currency {
    font-size: 18px;
    font-weight: 600;
    color: var(--text) !important;
    background: rgba(255,255,255,0.08) !important;
    border: 1px solid var(--border);
    padding: 10px 20px;
    border-radius: 50px;
    position: absolute;
    z-index: 2;
    transition: box-shadow 0.3s ease;
}

.currency:hover {
    box-shadow: 0 0 20px rgba(124, 255, 122, 0.5);
}

.currency.banner-3 {
    right: 1%;
    top: 35%;
    animation: float 3s ease-in-out infinite;
}

.currency.banner-3-left {
    left: 1%;
    top: 15%;
    animation: float 3s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.content-banner-home-3-wrapper {
    position: relative;
    z-index: 3;
}

.title-banner-3-wrapper {
    text-align: center;
    margin-bottom: 40px;
}

.title-banner-3-wrapper h1 {
    font-size: 56px;
    font-weight: 700;
    color: var(--text) !important;
    margin-bottom: 20px;
    line-height: 1.2;
}

.title-banner-3-wrapper p {
    font-size: 18px;
    color: var(--muted) !important;
    max-width: 600px;
    margin: 0 auto;
}

/* ========== LOGOS MARQUEE ========== */
.without-space {
    padding: 40px 0;
}

.logos-marquee-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.logos-marquee-wrapper::before,
.logos-marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.logos-marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #070a08, transparent);
}

.logos-marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #070a08, transparent);
}

.logos-marquee {
    display: flex;
    gap: 60px;
    animation: marquee 25s linear infinite;
    width: max-content;
}

.logos-marquee:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.logo-item:hover {
    transform: scale(1.1);
}

.logo-item:hover .client-logo {
    opacity: 1;
    filter: drop-shadow(0 0 15px rgba(124, 255, 122, 0.5));
}

.client-logo {
    height: 40px;
    width: auto;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.line {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.14), transparent) !important;
    margin: 20px 0;
}

/* ========== BENEFITS SECTION ========== */
.light-background,
.light-background-without-top,
.image-section,
.video-section {
    background: transparent !important;
}

.light-background-without-top {
    padding-top: 0;
}

.title-benefits-wrapper {
    text-align: center;
    margin-bottom: 60px;
}

.subtitle-text {
    font-size: 12px;
    font-weight: 700;
    color: #00ff22;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    display: inline-block;
}

.cube-text {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #00ff22;
    margin-right: 8px;
    vertical-align: middle;
}

.title-benefits-wrapper h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--text) !important;
    line-height: 1.3;
}

.benefits-wrapper {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: flex-start;
}

.content-benefits-wrapper {
    flex: 1;
}

.content-benefits-wrapper h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text) !important;
    margin-bottom: 20px;
    line-height: 1.3;
}

.content-benefits-wrapper p {
    font-size: 16px;
    color: var(--muted) !important;
    margin-bottom: 30px;
    line-height: 1.6;
}

.benefits-check-wrapper {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.benefit-wrap {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.benefit-wrap img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px rgba(124,255,122,0.25));
}

.benefit-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

.benefit-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.14), transparent);
    margin: 80px 0;
}

.content-home-1-wrapper {
    flex: 1;
}

.home-3-value,
.home-3-central-block,
.last-item-home-3 {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    padding: var(--card-pad);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.home-3-value h4,
.content-home-1-wrapper h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text) !important;
    margin-bottom: 30px;
}

.trade-wrapper {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    justify-content: center;
}

.trade-wrapper .currency {
    position: static;
    animation: none;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-pill);
    padding: 12px 22px;
    font-size: 16px;
}

.trade-wrapper .currency.center {
    border-color: rgba(124,255,122,0.45);
    box-shadow: 0 0 0 3px rgba(124,255,122,0.10);
}

.small-paragraph {
    font-size: 14px;
    color: rgba(255,255,255,0.62) !important;
    text-align: center;
}

.central-block {
    align-items: center;
    flex-direction: row;
}

.home-3-central-block {
    flex: 1;
    max-width: 520px;
}

.price-banner-wrapper {
    background: transparent;
    border: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin-bottom: 0;
}

.smart-image-banner {
    width: 100%;
    height: auto;
    border-radius: calc(var(--radius-card) - 6px);
    margin-bottom: 20px;
    border: 0 !important;
}

.small-content {
    max-width: 500px;
}

.max-w-400px {
    max-width: 400px;
}

.last-item-home-3 h4 {
    margin-bottom: 20px;
}

.feature-image {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ========== ABOUT SECTION ========== */
.without-bottom-spacing {
    padding-bottom: 40px;
}

.about-wrapper {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
    align-items: flex-start;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.about-wrapper .subtitle-text {
    margin-bottom: 18px;
}

.right-content-about-wrap {
    flex: 1;
    max-width: 880px;
}

.about-wrapper h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--text) !important;
    line-height: 1.3;
    margin-bottom: 20px;
}

.about-wrapper p {
    font-size: 16px;
    color: var(--muted) !important;
    margin-bottom: 30px;
}

.section-button-wrapper {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.numbers-home-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    margin-top: 34px;
}

.number-home {
    text-align: center;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 18px 14px;
}

.big-number {
    font-size: 32px;
    font-weight: 700;
    color: #00ff22;
    margin-bottom: 10px;
}

.number-home p {
    font-size: 14px;
    color: var(--muted);
    margin: 0;
}

.margin-top---100 {
    margin-top: -40px;
}

/* ========== BIG TITLE SECTION ========== */
.big-title-wrapp {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 10px;
}

.big-title-wrapp h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--text) !important;
    margin-bottom: 20px;
    line-height: 1.3;
}

.paragraph-about-width {
    font-size: 16px;
    color: rgba(255,255,255,0.62) !important;
    margin-bottom: 30px;
}

/* ========== VIDEO SECTION ========== */
.video-section {
    padding: 100px 0;
}

.video-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-card {
    position: relative;
    width: 100%;
    max-width: 900px;
    aspect-ratio: 16 / 9;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.video-card.playing {
    cursor: default;
}

.video-thumbnail-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.video-card:not(.playing):hover .video-thumbnail {
    transform: scale(1.05);
    filter: brightness(0.6);
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
    z-index: 2;
}

.video-card:not(.playing):hover .video-play-button {
    transform: translate(-50%, -50%) scale(1.15);
    filter: drop-shadow(0 0 40px rgba(124, 255, 122, 0.7));
}

.video-label {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.75);
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 2;
}

.video-card:not(.playing):hover .video-label {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

.video-iframe-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}

/* ========== CARDS SECTION ========== */
.block {
    display: flex;
    gap: 60px;
    align-items: center;
    background: rgba(255,255,255,0.03) !important;
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 56px;
    box-shadow: var(--shadow);
}

.left-cards-wrapper {
    flex: 1;
}

.left-cards-wrapper h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--text) !important;
    margin-bottom: 20px;
    line-height: 1.3;
}

.left-cards-wrapper p {
    color: var(--muted) !important;
}

.light-normal-paragraph {
    font-weight: 400;
}

.values-cards-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 30px 0;
}

.value-text {
    font-size: 14px;
    color: var(--text);
    font-weight: 500;
}

.right-cards-wrapper {
    flex: 1;
    position: relative;
}

.background-cards-small {
    width: 100%;
    height: auto;
    border-radius: calc(var(--radius-card) - 6px);
    border: 1px solid var(--border);
}

.card-dark-absolute {
    position: absolute;
    width: 60%;
    height: auto;
    border-radius: 12px;
    bottom: 10%;
    right: 5%;
}

/* ========== RESOURCES SECTION ========== */
.without-top-spacing {
    padding-top: 40px;
}

.title {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 60px;
}

.small-left-title h2 {
    font-size: 42px;
    font-weight: 700;
    color: #fff !important;
    margin-bottom: 20px;
    line-height: 1.3;
}

.small-left-title p {
    font-size: 16px;
    color: rgba(255,255,255,0.62) !important;
    margin: 0;
}

.right-title {
    flex-shrink: 0;
}

.collection-list-wrapper-100 {
    margin-bottom: 40px;
}

.collection-list-blog {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.collection-item-blog {
    cursor: pointer;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    overflow: hidden;
}

.link-blog-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 220px;
    border-radius: 0;
    background: rgba(255,255,255,0.02);
}

.logo-blog {
    position: relative;
    width: 100px;
    height: 100px;
    z-index: 2;
    opacity: 0.90;
}

.content-blog-wrapper {
    padding: 22px 22px 26px;
    text-align: center;
}

.small-blog-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.small-blog-title:hover {
    opacity: 1;
    color: var(--primary);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: transparent;
    padding: 60px 0 30px;
    border-top: 1px solid var(--border);
    margin-top: 60px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-brand {
    display: inline-block;
}

.footer-logo {
    height: 50px;
    width: auto;
}

.telegram-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.telegram-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    border-radius: 50px;
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.telegram-btn:hover {
    background: var(--primary);
    color: #0b0c0d;
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(124, 255, 122, 0.4);
}

.telegram-btn svg {
    flex-shrink: 0;
}

.footer-links-grid {
    display: flex;
    gap: 80px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary);
    margin: 0 0 8px 0;
    letter-spacing: 1px;
}

.footer-link {
    font-size: 14px;
    color: var(--muted);
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--text);
}

.footer-help {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 30px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: 16px;
    margin-bottom: 30px;
}

.footer-help-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.help-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
}

.help-desc {
    font-size: 13px;
    color: var(--muted);
}

.footer-help-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--primary);
    color: #0b0c0d;
    font-size: 13px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.footer-help-btn:hover {
    box-shadow: 0 0 20px rgba(124, 255, 122, 0.5);
    transform: translateY(-1px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.footer-copyright {
    font-size: 13px;
    color: var(--muted-2);
}

/* Scroll to top */
.scroll-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(15,17,19,0.8);
    color: var(--text);
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    z-index: 999;
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
    transition: transform .2s ease;
}

.scroll-to-top:hover {
    transform: translateY(-2px);
}

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0 20px;
    }
    .base-container {
        padding: 0 20px;
    }
    .benefits-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    .central-block {
        flex-direction: column;
    }
    .block {
        flex-direction: column;
        gap: 40px;
        padding: 34px;
    }
    .title {
        flex-direction: column;
    }
    .footer-main {
        flex-direction: column;
        gap: 40px;
    }
    .footer-links-grid {
        gap: 50px;
    }
    .footer-help {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */
@media (max-width: 991px) {
    
    .nav-menu {
        display: none !important;
    }
    
    .header-desctop {
        display: none !important;
    }
    
    .menu-button {
        display: flex;
    }
    
    .mobile-menu-overlay {
        display: block;
    }
}

/* ============================================
   RESPONSIVE - MOBILE 
   ============================================ */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    .navbar {
        padding: 12px 0;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .header-logo {
        height: 40px;
    }
    
    
    .desktop-only {
        display: none !important;
    }
    
    .mobile-only {
        display: block !important;
    }
    
    /* HERO MOBILE */
    .section.home-3-banner {
        padding: 20px 0;
    }
    
    .images-banner-home-3 {
        height: 220px;
        margin-bottom: 20px;
    }
    
    .banner-bg.mobile-only {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    
    .logo-big-banner.mobile-only {
        width: 100px;
        transform: translateY(80px);
        opacity: 0.35;
    }
    
    /* Badges menores no mobile */
    .currency.banner-3,
    .currency.banner-3-left {
        font-size: 11px;
        padding: 5px 12px;
    }
    
    .currency.banner-3-left {
        left: 0%;
        top: 5%;
    }
    
    .currency.banner-3 {
        right: 8%;
        top: 65%;
    }
    
    .title-banner-3-wrapper h1 {
        font-size: 26px;
        padding: 0 10px;
    }
    
    .title-banner-3-wrapper p {
        font-size: 14px;
        padding: 0 15px;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .base-container {
        padding: 0 15px;
    }
    
    .title-benefits-wrapper h2 {
        font-size: 22px;
    }
    
    .content-benefits-wrapper h3 {
        font-size: 18px;
    }
    
    .big-number {
        font-size: 24px;
    }
    
    .numbers-home-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .number-home {
        padding: 15px 10px;
    }
    
    .big-title-wrapp h2 {
        font-size: 22px;
    }
    
    .grid-overlay {
        height: 50vh;
        background-size: 20px 20px;
    }
    
    .video-section {
        padding: 40px 0;
    }
    
    .video-card {
        border-radius: 16px;
    }
    
    .video-play-button svg {
        width: 50px;
        height: 50px;
    }
    
    .video-label {
        font-size: 12px;
        padding: 8px 16px;
        bottom: 15px;
    }
    
    .logos-marquee {
        gap: 30px;
    }
    
    .client-logo {
        height: 25px;
    }
    
    /* Cards de benefícios */
    .home-3-value,
    .home-3-central-block,
    .last-item-home-3 {
        padding: 20px;
    }
    
    .trade-wrapper .currency {
        font-size: 14px;
        padding: 10px 18px;
    }
    
    .block {
        padding: 25px;
        border-radius: 20px;
    }
    
    .left-cards-wrapper h2 {
        font-size: 22px;
    }
    
    .small-left-title h2 {
        font-size: 22px;
    }
    
    .collection-list-blog {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .link-blog-wrapper {
        height: 120px;
    }
    
    .logo-blog {
        width: 50px;
        height: 50px;
    }
    
    .content-blog-wrapper {
        padding: 12px;
    }
    
    .small-blog-title {
        font-size: 12px;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-logo {
        height: 40px;
    }
    
    .footer-links-grid {
        flex-direction: row;
        gap: 30px;
    }
    
    .telegram-buttons {
        flex-direction: column;
    }
    
    .telegram-btn {
        font-size: 13px;
        padding: 10px 16px;
    }
    
    .footer-help {
        padding: 15px;
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-help-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */
@media (max-width: 480px) {
    body {
        padding-top: 60px;
    }
    
    .images-banner-home-3 {
        height: 180px;
    }
    
    .logo-big-banner.mobile-only {
        width: 80px;
        transform: translateY(60px);
    }
    
    .currency.banner-3,
    .currency.banner-3-left {
        font-size: 10px;
        padding: 4px 10px;
    }
    
    .title-banner-3-wrapper h1 {
        font-size: 22px;
    }
    
    .title-banner-3-wrapper p {
        font-size: 13px;
    }
    
    .collection-list-blog {
        grid-template-columns: 1fr;
    }
    
    .link-blog-wrapper {
        height: 140px;
    }
    
    .footer-links-grid {
        flex-direction: column;
        gap: 25px;
    }
}


