/* ═══════════════════════════════════════════
           DESIGN SYSTEM – USDT World 2.0
        ═══════════════════════════════════════════ */
:root {
    --primary: #6c63ff;
    --primary-rgb: 108, 99, 255;
    --secondary: #00d4ff;
    --secondary-rgb: 0, 212, 255;
    --accent: #ff6b6b;
    --accent-rgb: 255, 107, 107;
    --gold: #f59e0b;
    --emerald: #10b981;
    --dark: #06080f;
    --dark2: #0b0f1a;
    --dark3: #111827;
    --card: rgba(15, 20, 40, 0.75);
    --card-solid: #0f1428;
    --border: rgba(108, 99, 255, 0.18);
    --border-light: rgba(255, 255, 255, 0.06);
    --text: #e8edf5;
    --muted: #8896b0;
    --font: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    --font2: "Space Grotesk", sans-serif;
    --glow-primary: 0 0 30px rgba(var(--primary-rgb), 0.4);
    --glow-secondary: 0 0 30px rgba(var(--secondary-rgb), 0.3);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}

body {
    background: var(--dark);
    color: var(--text);
    font-family: var(--font);
    overflow-x: hidden;
    line-height: 1.6;
}

html.is-loading,
body.is-loading {
    overflow: hidden;
}

/* ── SITE PRELOADER ── */
.site-preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #05070f;
    transition: opacity 0.65s ease, visibility 0.65s ease;
}

.site-preloader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.site-preloader__bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.site-preloader__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
}

.site-preloader__glow--1 {
    width: 420px;
    height: 420px;
    top: 18%;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(245, 158, 11, 0.28) 0%, transparent 70%);
    animation: siteLoaderGlow 3s ease-in-out infinite;
}

.site-preloader__glow--2 {
    width: 360px;
    height: 360px;
    bottom: 12%;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(108, 99, 255, 0.22) 0%, transparent 70%);
    animation: siteLoaderGlow 3s ease-in-out infinite reverse;
}

.site-preloader__stars {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(1px 1px at 12% 22%, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(1px 1px at 78% 18%, rgba(255, 255, 255, 0.35), transparent),
        radial-gradient(1.5px 1.5px at 42% 68%, rgba(255, 255, 255, 0.45), transparent),
        radial-gradient(1px 1px at 88% 72%, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(1px 1px at 28% 84%, rgba(255, 255, 255, 0.4), transparent);
    opacity: 0.75;
}

@keyframes siteLoaderGlow {
    0%, 100% { opacity: 0.75; transform: translateX(-50%) scale(1); }
    50% { opacity: 1; transform: translateX(-50%) scale(1.08); }
}

.site-preloader__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px;
    animation: siteLoaderFadeIn 0.5s ease forwards;
}

@keyframes siteLoaderFadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.site-preloader__coin-scene {
    position: relative;
    width: 160px;
    height: 160px;
    margin-bottom: 28px;
    perspective: 900px;
}

.site-preloader__coin-glow {
    position: absolute;
    inset: 8%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.35) 0%, transparent 68%);
    animation: siteLoaderCoinGlow 2.4s ease-in-out infinite;
}

@keyframes siteLoaderCoinGlow {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.12); opacity: 1; }
}

.site-preloader__orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

.site-preloader__orbit--1 {
    inset: -8%;
    animation: siteLoaderOrbit 10s linear infinite;
}

.site-preloader__orbit--2 {
    inset: -18%;
    border-color: rgba(0, 212, 255, 0.12);
    animation: siteLoaderOrbit 14s linear infinite reverse;
}

@keyframes siteLoaderOrbit {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.site-preloader__coin {
    position: absolute;
    inset: 12%;
    transform-style: preserve-3d;
    animation: siteLoaderCoinBob 2.8s ease-in-out infinite;
}

.site-preloader__coin-body {
    position: absolute;
    inset: 0;
    transform-style: preserve-3d;
    animation: siteLoaderCoinSpin 2.2s linear infinite;
}

@keyframes siteLoaderCoinBob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes siteLoaderCoinSpin {
    0% { transform: rotateY(0deg) rotateX(14deg); }
    100% { transform: rotateY(360deg) rotateX(14deg); }
}

.site-preloader__coin-face {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 32% 28%, #f5d76e 0%, #c9a227 20%, #8b6914 45%, #2a2008 78%, #0a0802 100%);
    box-shadow:
        inset 0 -10px 22px rgba(0, 0, 0, 0.45),
        inset 0 8px 18px rgba(255, 255, 255, 0.15),
        0 16px 40px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(201, 162, 39, 0.2);
    border: 3px solid rgba(245, 215, 110, 0.35);
}

.site-preloader__coin-rim {
    position: absolute;
    inset: 12%;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2);
}

.site-preloader__coin-face img {
    position: relative;
    z-index: 1;
    width: 40%;
    height: 40%;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.4));
}

.site-preloader__coin-face--back {
    transform: rotateY(180deg);
    background: radial-gradient(circle at 68% 72%, #d4af37 0%, #8b6914 42%, #1a1405 100%);
}

.site-preloader__coin-edge {
    position: absolute;
    inset: 4%;
    border-radius: 50%;
    transform: translateZ(-10px);
    background: repeating-conic-gradient(
        from 0deg,
        #e8c547 0deg 8deg,
        #9a7518 8deg 16deg,
        #c9a227 16deg 24deg,
        #6b5210 24deg 32deg
    );
}

.site-preloader__brand {
    font-family: var(--font2);
    font-size: 1.55rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
}

.site-preloader__tagline {
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.site-preloader__bar {
    width: min(220px, 72vw);
    height: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
    margin-bottom: 14px;
}

.site-preloader__bar-fill {
    display: block;
    height: 100%;
    width: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--gold), #fbbf24, var(--secondary));
    transition: width 0.2s ease;
}

.site-preloader__text {
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.42);
    letter-spacing: 0.04em;
}

.site-preloader__dots span {
    animation: siteLoaderDotBlink 1.2s infinite;
}

.site-preloader__dots span:nth-child(2) { animation-delay: 0.2s; }
.site-preloader__dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes siteLoaderDotBlink {
    0%, 100% { opacity: 0.25; }
    50% { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
    .site-preloader__coin-body,
    .site-preloader__coin,
    .site-preloader__orbit,
    .site-preloader__glow,
    .site-preloader__coin-glow,
    .site-preloader__bar-fill {
        animation: none !important;
    }
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
    width: 5px;
}
::-webkit-scrollbar-track {
    background: var(--dark2);
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    border-radius: 10px;
}

/* ── Utility ── */
.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(var(--primary-rgb), 0.08);
    border: 1px solid rgba(var(--primary-rgb), 0.2);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 16px;
}
.section-title {
    font-family: var(--font2);
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}
.section-sub {
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.8;
    max-width: 560px;
}

.section-header--center {
    text-align: center;
    margin-bottom: 48px;
}

.section-header--center .section-sub {
    margin-left: auto;
    margin-right: auto;
}

.section-header--center .section-tag {
    margin-left: auto;
    margin-right: auto;
}

/* ═══════════════════════════════════
           NAVBAR
        ═══════════════════════════════════ */
.navbar-sv {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 16px 0;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}
.navbar-sv.scrolled {
    background: rgba(6, 8, 15, 0.88);
    backdrop-filter: blur(24px) saturate(1.4);
    -webkit-backdrop-filter: blur(24px) saturate(1.4);
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
}
.nav-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.nav-logo img {
    height: 70px;
}
.nav-logo-text {
    font-family: var(--font2);
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Nav links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    flex-wrap: wrap;
    justify-content: center;
}
.nav-links a {
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    padding: 8px 11px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
}
.nav-links a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
}
.nav-links a.active {
    color: #fff;
}

/* Nav actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}
.btn-nav-login {
    padding: 9px 22px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: transparent;
    color: var(--text);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}
.btn-nav-login:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(var(--primary-rgb), 0.06);
}
.btn-nav-signup {
    padding: 9px 24px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--primary), #8b5cf6);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(var(--primary-rgb), 0.35);
}
.btn-nav-signup:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(var(--primary-rgb), 0.55);
    color: white;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    z-index: 10000;
}
.hamburger span {
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
}
.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Live Ticker ── */
.ticker-bar {
    background: linear-gradient(180deg, var(--dark2) 0%, var(--dark) 100%);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    overflow: hidden;
    padding: 10px 0;
    
}
.ticker-track {
    display: flex;
    width: max-content;
    animation: tickerScroll 80s linear infinite;
}
.ticker-bar:hover .ticker-track {
    animation-play-state: paused;
}
@keyframes tickerScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 30px;
    white-space: nowrap;
    font-size: 0.8rem;
    font-weight: 600;
    border-right: 1px solid var(--border-light);
}
.ticker-item .t-name {
    color: var(--muted);
}
.ticker-item .t-price {
    color: var(--text);
}
.ticker-item .t-up {
    color: var(--emerald);
}
.ticker-item .t-down {
    color: var(--accent);
}



/* ═══════════════════════════════════
           FOOTER
        ═══════════════════════════════════ */
.footer {
    background: var(--dark2);
    /* border-top: 1px solid var(--border-light);
    padding: 60px 0 0; */
    margin-top: 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border-light);
}
.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.05) 0%, transparent 70%);
    pointer-events: none;
}
.footer-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 1;
}

.footer-social {
    display: flex;
    gap: 10px;
}
.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    text-decoration: none;
    font-size: 0.88rem;
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--glow-primary);
}
.footer-col h6 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 18px;
    font-size: 0.88rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding: 24px 0;
    /* border-top: 1px solid var(--border-light); */
    font-size: 0.84rem;
    color: var(--muted);
}

/* ── Mobile Nav ── */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    max-height: 100dvh;
    background: rgba(6, 8, 15, 0.96);
    z-index: 9998;
    backdrop-filter: blur(20px);
    padding: 110px 40px 40px;
    flex-direction: column;
    gap: 6px;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-overlay.open {
    display: flex;
    transform: translateX(0);
}
.mobile-overlay a {
    color: var(--text);
    font-size: 1.2rem;
    text-decoration: none;
    font-weight: 600;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
    flex-shrink: 0;
}
.mobile-overlay a:hover {
    color: var(--secondary);
    padding-left: 10px;
}
.mobile-overlay .btn-nav-signup {
    text-align: center;
    margin-top: 16px;
    display: block;
    padding: 14px;
    font-size: 1rem;
}

/* ── Scroll to top ── */
.scroll-top-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9000;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(var(--primary-rgb), 0.45);
    opacity: 0;
    transform: translateY(20px) scale(0.8);
    transition: var(--transition);
    text-decoration: none;
}
.scroll-top-btn.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}
.scroll-top-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 35px rgba(var(--primary-rgb), 0.65);
    color: white;
}

/* ═══════ RESPONSIVE ═══════ */
@media (max-width: 767px) {
    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}
@media (max-width: 992px) {
    .nav-links,
    .nav-actions {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .section-title {
        font-size: 2rem;
    }
}
@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .section-title {
        font-size: 1.7rem;
    }
}

/* ═══════════════════Index page════════════════════════*/
/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0 60px;
}
.hero-bg-effects {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
.hero-bg-effects .glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}
.hero-bg-effects .glow-1 {
    width: 600px;
    height: 600px;
    top: -15%;
    left: -10%;
    background: rgba(var(--primary-rgb), 0.12);
    animation: glowPulse 8s ease-in-out infinite alternate;
}
.hero-bg-effects .glow-2 {
    width: 500px;
    height: 500px;
    bottom: -20%;
    right: -5%;
    background: rgba(var(--secondary-rgb), 0.08);
    animation: glowPulse 10s ease-in-out infinite alternate-reverse;
}
.hero-bg-effects .glow-3 {
    width: 300px;
    height: 300px;
    top: 40%;
    left: 45%;
    background: rgba(var(--accent-rgb), 0.06);
    animation: glowPulse 12s ease-in-out infinite alternate;
}
@keyframes glowPulse {
    0% {
        transform: scale(1) translate(0, 0);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.3) translate(30px, -20px);
        opacity: 1;
    }
}
.hero-brand-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.hero-brand-orb--1 {
    width: 420px;
    height: 420px;
    top: -8%;
    left: -6%;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.28), transparent 70%);
    filter: blur(70px);
    animation: heroOrbFloat1 18s ease-in-out infinite;
}
.hero-brand-orb--2 {
    width: 360px;
    height: 360px;
    bottom: -10%;
    right: -4%;
    background: radial-gradient(circle, rgba(var(--secondary-rgb), 0.22), transparent 70%);
    filter: blur(70px);
    animation: heroOrbFloat2 22s ease-in-out infinite;
}
.hero-brand-orb--3 {
    width: 260px;
    height: 260px;
    top: 38%;
    left: 48%;
    background: radial-gradient(circle, rgba(var(--accent-rgb), 0.18), transparent 70%);
    filter: blur(60px);
    animation: heroOrbFloat3 15s ease-in-out infinite;
}
.hero-brand-orb--4 {
    width: 200px;
    height: 200px;
    top: 14%;
    left: 62%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.16), transparent 70%);
    filter: blur(55px);
    animation: heroOrbFloat4 20s ease-in-out infinite;
}
.hero-brand-orb--5 {
    width: 160px;
    height: 160px;
    bottom: 18%;
    left: 8%;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.14), transparent 70%);
    filter: blur(50px);
    animation: heroOrbFloat5 17s ease-in-out infinite;
}
.hero-brand-orb--6 {
    width: 150px;
    height: 150px;
    top: 28%;
    left: 28%;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.24), transparent 70%);
    filter: blur(45px);
    animation: heroPanelOrb1 8s ease-in-out infinite;
}
.hero-brand-orb--7 {
    width: 130px;
    height: 130px;
    bottom: 28%;
    left: 46%;
    background: radial-gradient(circle, rgba(var(--secondary-rgb), 0.2), transparent 70%);
    filter: blur(45px);
    animation: heroPanelOrb2 10s ease-in-out infinite;
}
@keyframes heroOrbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(60px, 40px) scale(1.08); }
    50% { transform: translate(30px, -30px) scale(0.95); }
    75% { transform: translate(-40px, 20px) scale(1.04); }
}
@keyframes heroOrbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(-50px, -35px) scale(1.06); }
    50% { transform: translate(-20px, 50px) scale(0.92); }
    75% { transform: translate(40px, -20px) scale(1.03); }
}
@keyframes heroOrbFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-60px, 30px) scale(1.1); }
    66% { transform: translate(40px, -50px) scale(0.9); }
}
@keyframes heroOrbFloat4 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-30px, 40px); }
}
@keyframes heroOrbFloat5 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(50px, -30px) rotate(180deg); }
}
@keyframes heroPanelOrb1 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    50% { transform: translate(-20px, 30px) scale(1.3); opacity: 1; }
}
@keyframes heroPanelOrb2 {
    0%, 100% { transform: translate(0, 0); opacity: 0.5; }
    50% { transform: translate(25px, -20px); opacity: 0.9; }
}
.hero-deco-particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.hero-deco-particle--1 {
    width: 3px;
    height: 3px;
    background: var(--primary);
    top: 16%;
    left: 10%;
    box-shadow: 0 0 6px var(--primary);
    animation: heroDecoParticle1 12s linear infinite;
}
.hero-deco-particle--2 {
    width: 2px;
    height: 2px;
    background: var(--secondary);
    top: 58%;
    left: 82%;
    box-shadow: 0 0 6px var(--secondary);
    animation: heroDecoParticle2 15s linear infinite;
}
.hero-deco-particle--3 {
    width: 2.5px;
    height: 2.5px;
    background: var(--gold);
    top: 38%;
    left: 48%;
    box-shadow: 0 0 6px var(--gold);
    animation: heroDecoParticle3 10s linear infinite;
}
.hero-deco-particle--4 {
    width: 2px;
    height: 2px;
    background: #a78bfa;
    top: 74%;
    left: 18%;
    box-shadow: 0 0 6px #a78bfa;
    animation: heroDecoParticle4 14s linear infinite;
}
.hero-deco-particle--5 {
    width: 1.5px;
    height: 1.5px;
    background: var(--secondary);
    top: 22%;
    left: 92%;
    box-shadow: 0 0 4px var(--secondary);
    animation: heroDecoParticle5 18s linear infinite;
}
.hero-deco-particle--6 {
    width: 3px;
    height: 3px;
    background: var(--primary);
    top: 32%;
    left: 24%;
    box-shadow: 0 0 8px var(--primary);
    animation: heroDecoParticle1 11s linear infinite 1.5s;
}
.hero-deco-particle--7 {
    width: 2px;
    height: 2px;
    background: var(--gold);
    top: 68%;
    left: 58%;
    box-shadow: 0 0 6px var(--gold);
    animation: heroDecoParticle3 13s linear infinite 0.8s;
}
.hero-deco-particle--8 {
    width: 2px;
    height: 2px;
    background: var(--secondary);
    top: 84%;
    left: 44%;
    box-shadow: 0 0 5px var(--secondary);
    animation: heroDecoParticle2 16s linear infinite 2s;
}
.hero-deco-particle--9 {
    width: 2.5px;
    height: 2.5px;
    background: #a78bfa;
    top: 12%;
    left: 38%;
    box-shadow: 0 0 6px #a78bfa;
    animation: heroDecoParticle4 14s linear infinite 3s;
}
.hero-geo-deco {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}
.hero-geo-deco--ring {
    width: 180px;
    height: 180px;
    border: 2px solid rgba(var(--primary-rgb), 0.14);
    border-radius: 50%;
    bottom: 10%;
    right: 6%;
    animation: heroGeoRingSpin 25s linear infinite;
}
.hero-geo-deco--ring-left {
    width: 140px;
    height: 140px;
    border: 2px solid rgba(var(--secondary-rgb), 0.12);
    border-radius: 50%;
    bottom: 14%;
    left: 4%;
    animation: heroGeoRingSpin 30s linear infinite reverse;
}
.hero-geo-deco--ring::before,
.hero-geo-deco--ring-left::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
}
.hero-geo-deco--ring::before {
    background: var(--primary);
    box-shadow: 0 0 12px var(--primary);
}
.hero-geo-deco--ring-left::before {
    background: var(--secondary);
    box-shadow: 0 0 12px var(--secondary);
}
.hero-geo-deco--diamond {
    width: 42px;
    height: 42px;
    border: 1.5px solid rgba(var(--secondary-rgb), 0.18);
    top: 14%;
    right: 10%;
    transform: rotate(45deg);
    animation: heroGeoDiamondPulse 6s ease-in-out infinite;
}
.hero-geo-deco--diamond-left {
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(var(--primary-rgb), 0.16);
    top: 26%;
    left: 6%;
    transform: rotate(45deg);
    animation: heroGeoDiamondPulse 7s ease-in-out infinite 1s;
}
.hero-geo-deco--triangle {
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 34px solid rgba(var(--primary-rgb), 0.1);
    top: 54%;
    right: 18%;
    animation: heroGeoTriFloat 8s ease-in-out infinite;
}
.hero-geo-deco--triangle-left {
    width: 0;
    height: 0;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-bottom: 28px solid rgba(var(--secondary-rgb), 0.1);
    top: 48%;
    left: 14%;
    animation: heroGeoTriFloat 9s ease-in-out infinite 1.2s;
}
.hero-geo-deco--dots {
    top: 18%;
    left: 5%;
    display: grid;
    grid-template-columns: repeat(3, 6px);
    gap: 8px;
    animation: heroGeoDotsFloat 10s ease-in-out infinite;
}
.hero-geo-deco--dots-right {
    top: 20%;
    right: 6%;
    left: auto;
    display: grid;
    grid-template-columns: repeat(3, 6px);
    gap: 8px;
    animation: heroGeoDotsFloat 11s ease-in-out infinite 0.6s;
}
.hero-geo-deco--dots span,
.hero-geo-deco--dots-right span {
    width: 4px;
    height: 4px;
    background: rgba(var(--primary-rgb), 0.22);
    border-radius: 50%;
}
.hero-geo-deco--dots-right span {
    background: rgba(var(--secondary-rgb), 0.22);
}
@keyframes heroDecoParticle1 {
    0% { transform: translate(0, 0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translate(60px, -80px); opacity: 0; }
}
@keyframes heroDecoParticle2 {
    0% { transform: translate(0, 0); opacity: 0; }
    10% { opacity: 0.8; }
    90% { opacity: 0.8; }
    100% { transform: translate(-50px, -100px); opacity: 0; }
}
@keyframes heroDecoParticle3 {
    0% { transform: translate(0, 0); opacity: 0; }
    15% { opacity: 1; }
    85% { opacity: 1; }
    100% { transform: translate(40px, -70px); opacity: 0; }
}
@keyframes heroDecoParticle4 {
    0% { transform: translate(0, 0); opacity: 0; }
    10% { opacity: 0.7; }
    90% { opacity: 0.7; }
    100% { transform: translate(-30px, -90px); opacity: 0; }
}
@keyframes heroDecoParticle5 {
    0% { transform: translate(0, 0); opacity: 0; }
    20% { opacity: 0.6; }
    80% { opacity: 0.6; }
    100% { transform: translate(20px, -60px); opacity: 0; }
}
@keyframes heroGeoRingSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
@keyframes heroGeoDiamondPulse {
    0%, 100% { transform: rotate(45deg) scale(1); opacity: 0.5; }
    50% { transform: rotate(45deg) scale(1.15); opacity: 1; }
}
@keyframes heroGeoTriFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
@keyframes heroGeoDotsFloat {
    0%, 100% { transform: translate(0, 0); opacity: 0.4; }
    50% { transform: translate(5px, -8px); opacity: 0.8; }
}
@media (max-width: 992px) {
    .hero-geo-deco--ring,
    .hero-geo-deco--ring-left,
    .hero-geo-deco--diamond,
    .hero-geo-deco--diamond-left,
    .hero-geo-deco--triangle,
    .hero-geo-deco--triangle-left,
    .hero-geo-deco--dots,
    .hero-geo-deco--dots-right,
    .hero-deco-particle,
    .hero-brand-orb--6,
    .hero-brand-orb--7 {
        display: none;
    }
}
.hero-grid-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: linear-gradient(rgba(var(--primary-rgb), 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(var(--primary-rgb), 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 30%, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 30%, black 30%, transparent 75%);
}
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}
.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(var(--primary-rgb), 0.35);
    animation: particleDrift 20s infinite ease-in-out;
}
@keyframes particleDrift {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.25;
    }
    33% {
        transform: translate(40px, -60px) scale(1.3);
        opacity: 0.5;
    }
    66% {
        transform: translate(-30px, -90px) scale(0.7);
        opacity: 0.3;
    }
}

.hero-container {
    width: 1440px;
    margin: 75px auto 0;
    padding: 0 32px;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

/* Hero Left */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(var(--primary-rgb), 0.08);
    border: 1px solid rgba(var(--primary-rgb), 0.2);
    border-radius: 30px;
    padding: 7px 18px;
    margin-bottom: 22px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.5px;
    animation: fadeSlideIn 0.6s ease both;
}
.hero-badge .live-dot {
    width: 8px;
    height: 8px;
    background: var(--emerald);
    border-radius: 50%;
    animation: livePulse 2s infinite;
}
@keyframes livePulse {
    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5);
    }
    50% {
        opacity: 0.7;
        box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
    }
}
@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: var(--font2);
    font-size: 4.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    animation: fadeSlideIn 0.7s ease 0.1s both;
}
.hero-title .line-2 {
    display: block;
}
.hero-title .shimmer {
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmerText 3s linear infinite;
}
@keyframes shimmerText {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

.hero-desc {
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.85;
    margin-bottom: 36px;
    max-width: 500px;
    animation: fadeSlideIn 0.8s ease 0.2s both;
}
.hero-actions {
    display: flex;
    gap: 14px;
    margin-bottom: 50px;
    animation: fadeSlideIn 0.9s ease 0.3s both;
}
.btn-hero-primary {
    padding: 15px 34px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), #8b5cf6);
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 8px 30px rgba(var(--primary-rgb), 0.4);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}
.btn-hero-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.5s;
}
.btn-hero-primary:hover::before {
    left: 100%;
}
.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(var(--primary-rgb), 0.6);
    color: white;
}
.btn-hero-secondary {
    padding: 15px 34px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(10px);
}
.btn-hero-secondary:hover {
    border-color: var(--secondary);
    color: var(--secondary);
    background: rgba(var(--secondary-rgb), 0.06);
    transform: translateY(-3px);
}

.hero-metrics {
    display: flex;
    gap: 45px;
    animation: fadeSlideIn 1s ease 0.4s both;
}
.hero-metric h3 {
    font-family: var(--font2);
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}
.hero-metric p {
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Hero Right – Glass Trading Card */
.hero-visual {
    animation: fadeSlideIn 1s ease 0.3s both;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-image-panel {
    position: relative;
    width: 100%;
    max-width: 560px;
    min-height: 520px;
    border-radius: 38px;
    z-index: 1;
    /* overflow: hidden; */
    /* background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 50px 90px rgba(0, 0, 0, 0.26); */
    /* backdrop-filter: blur(18px); */
}
/* .hero-image-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 55%);
    pointer-events: none;
} */

.coin_image {
    left: 0;
    right: 0;
    bottom: 12px;
    z-index: 1;
    position: absolute;
}

.coin_image img {
    -webkit-animation: upDownMover 4s ease-in-out infinite;
    animation: upDownMover 4s ease-in-out infinite;
}
@-webkit-keyframes upDownMover {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}
@keyframes upDownMover {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}
.upDownMover {
  -webkit-animation: upDownMover 4s ease-in-out infinite;
          animation: upDownMover 4s ease-in-out infinite;
}

/* .hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
} */
.coin-floating {
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    opacity: 0.55;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(10px);
}
.coin-floating i {
    font-size: 1.35rem;
}
.coin-1 {
    top: 12%;
    left: 10%;
    animation: floatCoin1 12s ease-in-out infinite;
}
.coin-2 {
    top: 16%;
    right: 12%;
    animation: floatCoin2 10s ease-in-out infinite;
}
.coin-3 {
    bottom: 18%;
    left: 18%;
    animation: floatCoin3 11s ease-in-out infinite;
}
.coin-4 {
    bottom: 14%;
    right: 18%;
    animation: floatCoin4 13s ease-in-out infinite;
}
@keyframes floatCoin1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(8px, -18px) rotate(12deg); }
}
@keyframes floatCoin2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-10px, -22px) rotate(-16deg); }
}
@keyframes floatCoin3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(10px, 16px) rotate(14deg); }
}
@keyframes floatCoin4 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-8px, 14px) rotate(-12deg); }
}
.tc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}
.tc-header h4 {
    font-family: var(--font2);
    font-weight: 700;
    font-size: 1.05rem;
}
.tc-live-badge {
    background: rgba(16, 185, 129, 0.12);
    color: var(--emerald);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.5px;
}
.tc-live-badge .dot {
    width: 6px;
    height: 6px;
    background: var(--emerald);
    border-radius: 50%;
    animation: livePulse 1.5s infinite;
}

.tc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    position: relative;
    z-index: 1;
    transition: var(--transition);
}
.tc-row:hover {
    background: rgba(var(--primary-rgb), 0.04);
    border-radius: 10px;
    padding: 14px 12px;
    margin: 0 -12px;
}
.tc-row:last-child {
    border-bottom: none;
}
.tc-left {
    display: flex;
    align-items: center;
    gap: 12px;
}
.tc-icon {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}
.tc-name {
    font-weight: 600;
    font-size: 0.9rem;
}
.tc-pair {
    color: var(--muted);
    font-size: 0.76rem;
}
.tc-price {
    font-weight: 700;
    font-size: 0.9rem;
    text-align: right;
}
.tc-change {
    font-size: 0.76rem;
    text-align: right;
    font-weight: 600;
}
.tc-up {
    color: var(--emerald);
}
.tc-down {
    color: var(--accent);
}

/* ── MARKETS SECTION ── */
.markets-section {
    padding: 110px 0;
    position: relative;
}
.markets-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.markets-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 32px;
}
.markets-header {
    margin-bottom: 50px;
}
.market-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}
.market-tab {
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    color: var(--muted);
    font-weight: 600;
    font-size: 0.84rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.market-tab:hover {
    border-color: var(--primary);
    color: var(--text);
}
.market-tab.active {
    background: linear-gradient(135deg, var(--primary), #8b5cf6);
    border-color: transparent;
    color: white;
    box-shadow: 0 4px 20px rgba(var(--primary-rgb), 0.35);
}
.market-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.market-feature-card,
.mkt-card {
    background: var(--card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.market-feature-card {
    min-height: 280px;
}
.market-feature-card::before,
.mkt-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.05), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
}
.market-feature-card:hover,
.mkt-card:hover {
    transform: translateY(-8px);
    border-color: rgba(var(--primary-rgb), 0.35);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}
.market-feature-card:hover::before,
.mkt-card:hover::before {
    opacity: 1;
}
.market-feature-card .feature-icon {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: #dfff83;
    display: grid;
    place-items: center;
    color: #111827;
    margin-bottom: 24px;
    box-shadow: inset 0 0 12px rgba(255,255,255,0.44);
    font-size: 1.45rem;
}
.market-feature-card h5,
.market-feature-card h5 {
    font-family: var(--font2);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}
.market-feature-card p,
.market-feature-card p {
    color: var(--muted);
    line-height: 1.8;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}
.mkt-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}
.mkt-card-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}
.mkt-badge {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}
.mkt-card h5 {
    font-family: var(--font2);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
    position: relative;
    z-index: 1;
}
.mkt-card .mkt-price {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 3px;
    position: relative;
    z-index: 1;
    font-family: var(--font2);
}
.mkt-card .mkt-pair {
    font-size: 0.82rem;
    color: var(--muted);
    font-weight: 500;
    position: relative;
    z-index: 1;
}
.mini-chart {
    height: 48px;
    margin-top: 16px;
    display: flex;
    align-items: flex-end;
    gap: 3px;
    position: relative;
    z-index: 1;
}
.mini-chart .bar {
    flex: 1;
    border-radius: 3px 3px 0 0;
    min-height: 4px;
    transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 1080px) {
    .market-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 700px) {
    .market-grid {
        grid-template-columns: 1fr;
    }
}


/* ── SERVICES ── */
.services-section {
    position: relative;
    padding: 60px 0 60px;
    background: linear-gradient(180deg, var(--dark2) 0%, var(--dark) 100%);
}
.services-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 32px;
}
.services-header {
    text-align: center;
    margin-bottom: 60px;
}
.services-header .section-sub {
    margin: 0 auto;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.svc-card {
    background: var(--card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.svc-card[data-aos] {
    transition: none;
    will-change: transform, opacity;
}
.svc-card[data-aos].aos-animate {
    transition: border-color 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: auto;
}
.svc-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}
.svc-card:hover::after {
    transform: scaleX(1);
}
@media (hover: hover) and (pointer: fine) {
    .svc-card:hover {
        transform: translateY(-10px);
        border-color: rgba(var(--primary-rgb), 0.35);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
    }
    .svc-card:hover .svc-icon {
        transform: scale(1.15) rotate(5deg);
    }
}
.svc-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 22px;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.svc-card h5 {
    font-family: var(--font2);
    font-size: 1.12rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.svc-card p {
    color: var(--muted);
    font-size: 0.87rem;
    line-height: 1.75;
}

/* ── TOKEN SALE ── */
.token-sale-section {
    position: relative;
    padding: 70px 0 60px;
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark2) 100%);
    overflow: hidden;
}

.token-sale-glow {
    position: absolute;
    top: -80px;
    right: -60px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.14) 0%, transparent 68%);
    pointer-events: none;
}

.token-sale-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: minmax(0, 550px) 1fr;
    gap: 56px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.token-sale-card {
    position: relative;
    padding: 32px 28px 28px;
    border-radius: var(--radius-lg);
    background: linear-gradient(165deg, rgba(17, 24, 39, 0.95) 0%, rgba(10, 14, 26, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
    overflow: hidden;
}

.token-sale-card__radar {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 42%, transparent 0 38%, rgba(255, 255, 255, 0.03) 38% 39%, transparent 39% 48%, rgba(255, 255, 255, 0.025) 48% 49%, transparent 49% 58%, rgba(255, 255, 255, 0.02) 58% 59%, transparent 59% 100%);
    pointer-events: none;
}

.token-sale-card__label {
    position: relative;
    text-align: center;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 18px;
}

.token-countdown {
    position: relative;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.token-countdown__unit {
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
}

.token-countdown__value {
    font-family: var(--font2);
    font-size: clamp(1.85rem, 4vw, 2.35rem);
    font-weight: 800;
    line-height: 1;
    color: var(--gold);
    letter-spacing: -0.02em;
}

.token-countdown__suffix {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    margin-left: 1px;
}

.token-countdown__sep {
    font-family: var(--font2);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
    margin: 0 2px;
    transform: translateY(-2px);
}

.token-sale-card__hint {
    position: relative;
    text-align: center;
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.55;
    margin-bottom: 22px;
    padding: 0 8px;
}

.token-sale-brand {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.token-sale-brand__icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
    box-shadow: 0 10px 28px rgba(245, 158, 11, 0.35);
    color: #fff;
    font-size: 1.5rem;
}

.token-sale-brand__name {
    font-family: var(--font2);
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #fff;
}

.token-sale-price {
    position: relative;
    text-align: center;
    font-size: 0.78rem;
    color: var(--muted);
    margin-bottom: 18px;
}

.token-sale-progress-head {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 0.72rem;
    color: var(--muted);
    margin-bottom: 10px;
}

.token-sale-progress-head strong {
    color: var(--text);
    font-weight: 600;
}

.token-sale-progress {
    position: relative;
    height: 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
    margin-bottom: 22px;
}

.token-sale-progress__fill {
    height: 100%;
    width: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, #2563eb 0%, #00d4ff 100%);
    box-shadow: 0 0 16px rgba(37, 99, 235, 0.45);
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-token-buy {
    position: relative;
    display: block;
    width: 100%;
    text-align: center;
    padding: 13px 20px;
    border-radius: 12px;
    font-size: 0.92rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 100%);
    border: 1px solid rgba(96, 165, 250, 0.45);
    transition: var(--transition);
}

.btn-token-buy:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(37, 99, 235, 0.35);
    color: #fff;
}

.token-sale-title {
    font-family: var(--font2);
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.2;
}

.token-sale-desc {
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 28px;
    /* max-width: 640px; */
}

.token-sale-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 28px;
    margin-bottom: 28px;
}

.token-sale-feat {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text);
}

.token-sale-feat__icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(25% 6%, 75% 6%, 100% 50%, 75% 94%, 25% 94%, 0 50%);
    background: rgba(245, 158, 11, 0.15);
    color: var(--gold);
    font-size: 0.82rem;
}

.token-sale-cta-text {
    font-size: 0.88rem;
    color: var(--muted);
    margin-bottom: 14px;
}

.token-sale-cta-text strong {
    color: var(--gold);
}

.token-sale-form__wrap {
    display: flex;
    max-width: 520px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
}

.token-sale-form__input {
    flex: 1;
    min-width: 0;
    border: none;
    outline: none;
    padding: 14px 16px;
    font-size: 0.9rem;
    font-family: var(--font);
    color: var(--dark);
    background: #fff;
}

.token-sale-form__input::placeholder {
    color: #94a3b8;
}

.token-sale-form__btn {
    border: none;
    cursor: pointer;
    padding: 14px 22px;
    font-size: 0.88rem;
    font-weight: 700;
    font-family: var(--font);
    color: #fff;
    background: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
    transition: var(--transition);
    white-space: nowrap;
}

.token-sale-form__btn:hover {
    filter: brightness(1.06);
}

.token-sale-form__msg {
    min-height: 1.25rem;
    margin-top: 10px;
    font-size: 0.82rem;
    font-weight: 500;
}

.token-sale-form__msg.is-success {
    color: var(--emerald);
}

.token-sale-form__msg.is-error {
    color: var(--accent);
}

@media (max-width: 991px) {
    .token-sale-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .token-sale-card {
        max-width: 460px;
        margin: 0 auto;
    }
}

@media (max-width: 575px) {
    .token-sale-section {
        padding: 50px 0 40px;
    }

    .token-sale-container {
        padding: 0 20px;
    }

    .token-sale-features {
        grid-template-columns: 1fr;
    }

    .token-sale-form__wrap {
        flex-direction: column;
    }

    .token-sale-form__btn {
        width: 100%;
        border-radius: 0 0 12px 12px;
    }
}

/* ── FEATURED PROJECTS ── */
.featured-projects {
    position: relative;
    padding: 80px 0 70px;
    overflow: hidden;
    background: #05070f;
}

.featured-projects__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.featured-projects__nebula {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.55;
}

.featured-projects__nebula--1 {
    width: 520px;
    height: 520px;
    top: -120px;
    left: -80px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.35) 0%, transparent 70%);
}

.featured-projects__nebula--2 {
    width: 480px;
    height: 480px;
    bottom: -100px;
    right: -60px;
    background: radial-gradient(circle, rgba(108, 99, 255, 0.28) 0%, transparent 70%);
}

.featured-projects__stars {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(1px 1px at 10% 20%, rgba(255, 255, 255, 0.45), transparent),
        radial-gradient(1px 1px at 30% 70%, rgba(255, 255, 255, 0.35), transparent),
        radial-gradient(1.5px 1.5px at 55% 15%, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(1px 1px at 75% 45%, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(1px 1px at 90% 80%, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(1px 1px at 45% 55%, rgba(255, 255, 255, 0.25), transparent);
    opacity: 0.8;
}

.featured-projects__container {
    position: relative;
    z-index: 1;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 32px;
}

.featured-projects__header {
    text-align: center;
    margin-bottom: 48px;
}

.featured-projects__header .section-tag {
    margin-left: auto;
    margin-right: auto;
}

.featured-projects__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 48px;
    align-items: center;
}

.featured-coin-scene {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
}

.featured-coin-platform {
    position: absolute;
    bottom: 14%;
    left: 50%;
    width: min(320px, 78%);
    height: 48px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(108, 99, 255, 0.35) 0%, rgba(0, 212, 255, 0.08) 45%, transparent 72%);
    filter: blur(8px);
    opacity: 0.9;
}

.featured-coin-glow {
    position: absolute;
    width: min(340px, 80%);
    height: min(340px, 80%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.22) 0%, rgba(108, 99, 255, 0.12) 38%, transparent 68%);
    animation: featuredGlowPulse 4s ease-in-out infinite;
}

.featured-coin-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.featured-coin-ring--1 {
    width: min(360px, 88%);
    height: min(360px, 88%);
    animation: featuredRingSpin 28s linear infinite;
}

.featured-coin-ring--2 {
    width: min(420px, 96%);
    height: min(420px, 96%);
    border-color: rgba(0, 212, 255, 0.08);
    animation: featuredRingSpin 36s linear infinite reverse;
}

@keyframes featuredGlowPulse {
    0%, 100% { transform: scale(1); opacity: 0.85; }
    50% { transform: scale(1.06); opacity: 1; }
}

@keyframes featuredRingSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.featured-ticker {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px 10px 12px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.82) 0%, rgba(20, 28, 48, 0.65) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 12px 32px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(14px);
    animation: featuredFloat 5.5s ease-in-out infinite;
    overflow: hidden;
}

.featured-ticker::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    border-radius: 14px 0 0 14px;
}

.featured-ticker--up::before {
    background: linear-gradient(180deg, #34d399, #10b981);
}

.featured-ticker--down::before {
    background: linear-gradient(180deg, #f87171, #ef4444);
}

.featured-ticker__icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.featured-ticker--1 .featured-ticker__icon { color: #f7931a; background: rgba(247, 147, 26, 0.12); }
.featured-ticker--2 .featured-ticker__icon { color: #627eea; background: rgba(98, 126, 234, 0.12); }
.featured-ticker--3 .featured-ticker__icon { color: #26a17b; background: rgba(38, 161, 123, 0.12); }
.featured-ticker--4 .featured-ticker__icon { color: var(--gold); background: rgba(245, 158, 11, 0.12); }

.featured-ticker__body {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}

.featured-ticker__pair {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.2;
}

.featured-ticker__val {
    font-family: var(--font2);
    font-size: 0.88rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.featured-ticker__chg {
    font-size: 0.68rem;
    font-weight: 700;
    line-height: 1.2;
}

.featured-ticker--up .featured-ticker__chg { color: #34d399; }
.featured-ticker--down .featured-ticker__chg { color: #f87171; }

.featured-ticker--1 { top: 10%; left: 2%; animation-delay: 0s; }
.featured-ticker--2 { top: 24%; right: 0; animation-delay: 1.1s; }
.featured-ticker--3 { bottom: 24%; left: 0; animation-delay: 2.2s; }
.featured-ticker--4 { bottom: 8%; right: 4%; animation-delay: 3.3s; }

@keyframes featuredFloat {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-12px) translateX(2px); }
}

.featured-coin {
    position: relative;
    z-index: 2;
    width: min(260px, 68vw);
    height: min(260px, 68vw);
    transform-style: preserve-3d;
    animation: featuredCoinBob 5s ease-in-out infinite;
}

.featured-coin__body {
    position: absolute;
    inset: 0;
    transform-style: preserve-3d;
    animation: featuredCoinSpin 16s linear infinite;
}

.featured-coin__shadow {
    position: absolute;
    left: 50%;
    bottom: -8%;
    width: 72%;
    height: 18%;
    transform: translateX(-50%);
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.55) 0%, transparent 72%);
    filter: blur(10px);
    z-index: 0;
}

@keyframes featuredCoinBob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

@keyframes featuredCoinSpin {
    0% { transform: rotateY(0deg) rotateX(12deg); }
    100% { transform: rotateY(360deg) rotateX(12deg); }
}

.featured-coin__face {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 32% 28%, #f5d76e 0%, #c9a227 18%, #8b6914 42%, #3d2e0a 72%, #120e03 100%);
    box-shadow:
        inset 0 -12px 28px rgba(0, 0, 0, 0.5),
        inset 0 10px 24px rgba(255, 255, 255, 0.18),
        0 28px 70px rgba(0, 0, 0, 0.55),
        0 0 40px rgba(201, 162, 39, 0.15);
    border: 4px solid rgba(245, 215, 110, 0.35);
}

.featured-coin__rim {
    position: absolute;
    inset: 10%;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        inset 0 0 0 1px rgba(0, 0, 0, 0.25),
        inset 0 2px 8px rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.featured-coin__inner {
    position: absolute;
    inset: 22%;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 35%, rgba(255, 255, 255, 0.08) 0%, transparent 55%);
    pointer-events: none;
}

.featured-coin__face img {
    position: relative;
    z-index: 1;
    width: 38%;
    height: 38%;
    object-fit: contain;
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.45));
}

.featured-coin__face--back {
    transform: rotateY(180deg);
    background:
        radial-gradient(circle at 68% 72%, #d4af37 0%, #8b6914 40%, #2a2008 75%, #0a0802 100%);
}

.featured-coin__edge {
    position: absolute;
    inset: 3%;
    border-radius: 50%;
    transform: translateZ(-14px);
    background: repeating-conic-gradient(
        from 0deg,
        #e8c547 0deg 6deg,
        #9a7518 6deg 12deg,
        #c9a227 12deg 18deg,
        #6b5210 18deg 24deg
    );
    box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.35);
}

.featured-coin-scene:hover .featured-coin__body {
    animation-play-state: paused;
}

.featured-coin-scene:hover .featured-coin {
    animation-play-state: paused;
}

.featured-project-card {
    position: relative;
    padding: 0;
    border-radius: 20px;
    background: linear-gradient(165deg, rgba(17, 24, 39, 0.92) 0%, rgba(10, 14, 26, 0.96) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    box-shadow:
        0 28px 60px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.featured-project-card:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 158, 11, 0.22);
    box-shadow:
        0 32px 70px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(245, 158, 11, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.featured-project-card__sheen {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 88% 8%, rgba(108, 99, 255, 0.14) 0%, transparent 42%),
        radial-gradient(circle at 12% 92%, rgba(245, 158, 11, 0.08) 0%, transparent 38%);
    pointer-events: none;
}

.featured-project-card__accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--secondary) 50%, rgba(108, 99, 255, 0.8) 100%);
}

.featured-project-card__topbar {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding: 18px 24px 0;
}

.featured-project-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.featured-project-card__badge--live {
    color: #34d399;
    background: rgba(52, 211, 153, 0.1);
    border: 1px solid rgba(52, 211, 153, 0.28);
}

.featured-project-card__badge--chain {
    color: var(--secondary);
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.22);
}

.featured-project-card__badge--chain i {
    font-size: 0.62rem;
}

.featured-project-card__pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #34d399;
    box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.55);
    animation: featuredLivePulse 2s ease-in-out infinite;
}

@keyframes featuredLivePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.55); }
    50% { box-shadow: 0 0 0 6px rgba(52, 211, 153, 0); }
}

.featured-project-card__head {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
    margin: 18px 24px 20px;
    padding: 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.featured-project-card__logo {
    width: 62px;
    height: 62px;
    min-width: 62px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(108, 99, 255, 0.4);
    background: radial-gradient(circle at 35% 30%, rgba(108, 99, 255, 0.28), rgba(6, 8, 15, 0.95));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(108, 99, 255, 0.15);
}

.featured-project-card__logo img {
    width: 68%;
    height: 68%;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
}

.featured-project-card__intro {
    min-width: 0;
}

.featured-project-card__name {
    font-family: var(--font2);
    font-size: 1.45rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.featured-project-card__subtitle {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    line-height: 1.4;
}

.featured-project-card__countdown {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 72px;
    padding: 10px 12px;
    border-radius: 14px;
    text-align: center;
    background: linear-gradient(145deg, rgba(245, 158, 11, 0.14) 0%, rgba(245, 158, 11, 0.04) 100%);
    border: 1px solid rgba(245, 158, 11, 0.28);
}

.featured-project-card__countdown strong {
    font-family: var(--font2);
    font-size: 1.65rem;
    font-weight: 800;
    line-height: 1;
    color: var(--gold);
    letter-spacing: -0.03em;
}

.featured-project-card__countdown span {
    margin-top: 4px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(245, 158, 11, 0.75);
}

.featured-project-card__details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0 24px 22px;
    padding: 0;
}

.featured-project-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.25s ease, border-color 0.25s ease;
}

.featured-project-row:hover {
    background: rgba(255, 255, 255, 0.035);
    border-color: rgba(255, 255, 255, 0.08);
}

.featured-project-row dt {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.featured-project-row dt i {
    width: 22px;
    height: 22px;
    border-radius: 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.62rem;
    color: var(--gold);
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.18);
    flex-shrink: 0;
}

.featured-project-row dd {
    margin: 0;
    padding-left: 30px;
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.65;
}

.featured-project-row--price {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.08) 0%, rgba(108, 99, 255, 0.06) 100%);
    border-color: rgba(245, 158, 11, 0.18);
}

.featured-project-row--price dt i {
    color: var(--secondary);
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.2);
}

.featured-project-price {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    font-family: var(--font2);
    font-size: 0.92rem;
    font-weight: 700;
    color: #fff;
}

.featured-project-price span {
    color: var(--gold);
}

.featured-project-card__foot {
    padding: 0 24px 24px;
}

.btn-featured-read {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-width: 0;
    padding: 13px 28px;
    border-radius: 12px;
    font-size: 0.88rem;
    font-weight: 700;
    color: #0a0e1a;
    text-decoration: none;
    background: linear-gradient(135deg, var(--gold) 0%, #fbbf24 50%, #d97706 100%);
    border: none;
    box-shadow: 0 10px 28px rgba(245, 158, 11, 0.28);
    transition: var(--transition);
}

.btn-featured-read i {
    font-size: 0.78rem;
    transition: transform 0.25s ease;
}

.btn-featured-read:hover {
    color: #0a0e1a;
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(245, 158, 11, 0.38);
}

.btn-featured-read:hover i {
    transform: translateX(4px);
}

@media (max-width: 991px) {
    .featured-projects__grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .featured-coin-scene {
        min-height: 340px;
    }

    .featured-ticker {
        padding: 8px 10px 8px 9px;
        gap: 8px;
    }

    .featured-ticker__icon {
        width: 30px;
        height: 30px;
        font-size: 0.82rem;
    }

    .featured-ticker__val {
        font-size: 0.8rem;
    }
}

@media (max-width: 575px) {
    .featured-projects {
        padding: 56px 0 48px;
    }

    .featured-projects__container {
        padding: 0 20px;
    }

    .featured-project-card__topbar {
        padding-left: 18px;
        padding-right: 18px;
    }

    .featured-project-card__details {
        margin-left: 18px;
        margin-right: 18px;
    }

    .featured-project-card__foot {
        padding-left: 18px;
        padding-right: 18px;
    }

    .featured-project-card__head {
        margin-left: 18px;
        margin-right: 18px;
        grid-template-columns: auto 1fr;
        grid-template-rows: auto auto;
    }

    .featured-project-card__countdown {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: center;
        gap: 10px;
        min-width: 0;
        width: 100%;
        padding: 12px 16px;
    }

    .featured-project-card__countdown strong {
        font-size: 1.45rem;
    }

    .featured-project-card__countdown span {
        margin-top: 0;
        align-self: center;
        font-size: 0.72rem;
    }

    .featured-project-row dd {
        padding-left: 0;
    }

    .featured-ticker--1,
    .featured-ticker--3 {
        display: none;
    }

    .featured-ticker--2 {
        top: 6%;
        right: 4%;
    }

    .featured-ticker--4 {
        bottom: 6%;
        left: 4%;
        right: auto;
    }

    .featured-coin-ring {
        display: none;
    }

    .featured-coin__body {
        animation: none;
    }

    .featured-coin {
        animation: featuredCoinBob 5s ease-in-out infinite;
    }
}

/* ── LAUNCHPAD BENEFITS ── */
.launchpad-benefits {
    position: relative;
    padding: 80px 0 90px;
    background: #05070f;
    overflow: hidden;
}

.launchpad-benefits__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.launchpad-benefits__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.45;
}

.launchpad-benefits__glow--1 {
    width: 480px;
    height: 480px;
    top: -80px;
    left: -60px;
    background: radial-gradient(circle, rgba(108, 99, 255, 0.22) 0%, transparent 70%);
}

.launchpad-benefits__glow--2 {
    width: 420px;
    height: 420px;
    bottom: -60px;
    right: -40px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.14) 0%, transparent 70%);
}

.launchpad-benefits__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    margin: 0 auto 16px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--secondary);
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.18);
}

.launchpad-benefits__container {
    position: relative;
    z-index: 1;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 32px;
    text-align: center;
}

.launchpad-benefits__eyebrow i {
    font-size: 0.68rem;
}

.launchpad-benefits__deco {
    position: absolute;
    top: 48px;
    right: 6%;
    pointer-events: none;
    opacity: 0.35;
}

.launchpad-parachute {
    position: relative;
    width: 72px;
    height: 100px;
}

.launchpad-parachute__canopy {
    position: absolute;
    top: 0;
    left: 50%;
    width: 56px;
    height: 28px;
    transform: translateX(-50%);
    border-radius: 50% 50% 42% 42%;
    border: 2px solid rgba(255, 255, 255, 0.25);
    background: transparent;
}

.launchpad-parachute__lines {
    position: absolute;
    top: 24px;
    left: 50%;
    width: 34px;
    height: 42px;
    transform: translateX(-50%);
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.launchpad-parachute__coin {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 34px;
    height: 34px;
    transform: translateX(-50%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: var(--gold);
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.35);
    animation: launchpadParachuteFloat 4s ease-in-out infinite;
}

@keyframes launchpadParachuteFloat {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

.launchpad-benefits__title {
    text-align: center;
    font-family: var(--font2);
    font-size: clamp(1.85rem, 3.8vw, 2.65rem);
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    letter-spacing: -0.02em;
    margin: 0 auto 48px;
    max-width: 720px;
}

.launchpad-benefits__title span {
    color: var(--secondary);
}

.launchpad-benefits__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
    text-align: left;
}

.launchpad-card {
    position: relative;
    display: flex;
    flex-direction: column;
    /* min-height: 480px; */
    padding: 28px 24px 24px;
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient(165deg, rgba(22, 28, 44, 0.95) 0%, rgba(12, 16, 28, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 22px 50px rgba(0, 0, 0, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.launchpad-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 88% 8%, rgba(108, 99, 255, 0.12) 0%, transparent 42%),
        radial-gradient(circle at 12% 92%, rgba(0, 212, 255, 0.06) 0%, transparent 38%);
    pointer-events: none;
}

.launchpad-card:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 158, 11, 0.22);
    box-shadow:
        0 28px 60px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(245, 158, 11, 0.08);
}

.launchpad-card__accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--secondary), var(--primary));
}

.launchpad-card__icon {
    position: relative;
    z-index: 1;
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--gold);
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.22);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.1);
}

.launchpad-card__title {
    position: relative;
    z-index: 1;
    font-family: var(--font2);
    font-size: clamp(1.05rem, 1.6vw, 1.28rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.launchpad-card__text {
    position: relative;
    z-index: 1;
    flex: 1;
    font-size: 0.84rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.68);
    margin-bottom: 20px;
}

.launchpad-card__visual {
    /* position: relative;
    z-index: 1;
    margin-top: auto;
    padding: 14px;
    border-radius: 18px;
    background: linear-gradient(165deg, #ffffff 0%, #f4f7ff 100%);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center; */
}

.launchpad-card__figure {
    margin: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.launchpad-card__figure img {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 160px;
    height: auto;
    object-fit: contain;
}

.launchpad-card:hover .launchpad-card__visual {
    /* box-shadow: 0 16px 38px rgba(0, 0, 0, 0.26); */
}

.launchpad-card--early {
    background: #ff8800;
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow:
        0 22px 50px rgba(255, 136, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.launchpad-card--early::before {
    background:
        radial-gradient(circle at 88% 8%, rgba(255, 255, 255, 0.18) 0%, transparent 42%),
        radial-gradient(circle at 12% 92%, rgba(0, 0, 0, 0.08) 0%, transparent 38%);
}

.launchpad-card--early:hover {
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow:
        0 28px 60px rgba(255, 136, 0, 0.45),
        0 0 0 1px rgba(255, 255, 255, 0.12);
}

.launchpad-card--early .launchpad-card__accent {
    background: linear-gradient(90deg, #fff5e6, #ffffff, #ffd699);
}

.launchpad-card--early .launchpad-card__icon {
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.launchpad-card--early .launchpad-card__text {
    color: rgba(255, 255, 255, 0.92);
}

.launchpad-card--community {
    background: #0055ff;
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow:
        0 22px 50px rgba(0, 85, 255, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.launchpad-card--community::before {
    background:
        radial-gradient(circle at 88% 8%, rgba(255, 255, 255, 0.16) 0%, transparent 42%),
        radial-gradient(circle at 12% 92%, rgba(0, 0, 0, 0.1) 0%, transparent 38%);
}

.launchpad-card--community:hover {
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow:
        0 28px 60px rgba(0, 85, 255, 0.45),
        0 0 0 1px rgba(255, 255, 255, 0.12);
}

.launchpad-card--community .launchpad-card__accent {
    background: linear-gradient(90deg, #b3d4ff, #ffffff, #66a3ff);
}

.launchpad-card--community .launchpad-card__icon {
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.launchpad-card--community .launchpad-card__text {
    color: rgba(255, 255, 255, 0.92);
}

@media (max-width: 991px) {
    .launchpad-benefits__grid {
        grid-template-columns: 1fr;
    }

    .launchpad-card {
        min-height: 0;
    }

    .launchpad-benefits__deco {
        display: none;
    }
}

@media (max-width: 575px) {
    .launchpad-benefits {
        padding: 56px 0 64px;
    }

    .launchpad-benefits__container {
        padding: 0 20px;
    }

    .launchpad-benefits__title {
        margin-bottom: 32px;
    }

    .launchpad-card {
        padding: 22px 18px 18px;
    }

    .launchpad-card__visual {
        min-height: 150px;
        padding: 12px;
    }

    .launchpad-card__figure img {
        max-height: 130px;
    }
}

/* ── HOW TO GET STARTED ── */
.get-started {
    position: relative;
    padding: 80px 0 90px;
    background: #05070f;
    overflow: hidden;
}

.get-started__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.get-started__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(900px, 90vw);
    height: 420px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.28) 0%, rgba(37, 99, 235, 0.08) 45%, transparent 72%);
    filter: blur(20px);
}

.get-started__container {
    position: relative;
    z-index: 1;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 32px;
}

.get-started__header {
    text-align: center;
    margin-bottom: 56px;
}

.get-started__header .section-tag {
    margin-left: auto;
    margin-right: auto;
}

.get-started__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
    align-items: start;
}

.get-started-step {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.get-started-step__card {
    width: 100%;
    padding: 32px 24px 28px;
    border-radius: 20px;
    background: linear-gradient(165deg, rgba(15, 23, 42, 0.75) 0%, rgba(10, 14, 28, 0.9) 100%);
    border: 1px solid rgba(59, 130, 246, 0.35);
    box-shadow:
        0 24px 50px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.get-started-step--featured:hover .get-started-step__card {
    transform: translateY(-4px);
    border-color: rgba(59, 130, 246, 0.55);
    box-shadow:
        0 28px 56px rgba(37, 99, 235, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.get-started-step__icon {
    width: 88px;
    height: 88px;
    margin: 0 auto 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background: linear-gradient(165deg, rgba(22, 28, 44, 0.95) 0%, rgba(8, 12, 22, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 16px 36px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.get-started-step__icon--blue {
    color: #3b82f6;
    text-shadow: 0 0 24px rgba(59, 130, 246, 0.45);
}

.get-started-step__icon--gold {
    color: #ff8800;
    text-shadow: 0 0 24px rgba(255, 136, 0, 0.35);
}

.get-started-step__title {
    font-family: var(--font2);
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.get-started-step__text {
    font-size: 0.82rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
    max-width: 280px;
}

.get-started-step--featured .get-started-step__text {
    margin-bottom: 24px;
}

.get-started-step__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    padding: 11px 28px;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    background: rgba(8, 14, 28, 0.85);
    border: 1px solid rgba(59, 130, 246, 0.55);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.15);
    transition: var(--transition);
}

.get-started-step__btn:hover {
    background: rgba(37, 99, 235, 0.15);
    border-color: rgba(96, 165, 250, 0.75);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.25);
}

.get-started-step:not(.get-started-step--featured) {
    padding-top: 32px;
}

.get-started-step:not(.get-started-step--featured):hover .get-started-step__icon {
    transform: translateY(-4px);
    border-color: rgba(255, 136, 0, 0.25);
    transition: transform 0.35s ease, border-color 0.35s ease;
}

@media (max-width: 1100px) {
    .get-started__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 32px 24px;
    }

    .get-started-step:not(.get-started-step--featured) {
        padding-top: 0;
    }

    .get-started-step--featured {
        grid-column: 1 / -1;
        max-width: 420px;
        margin: 0 auto;
    }
}

@media (max-width: 575px) {
    .get-started {
        padding: 56px 0 64px;
    }

    .get-started__container {
        padding: 0 20px;
    }

    .get-started__header {
        margin-bottom: 40px;
    }

    .get-started__grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .get-started-step--featured {
        max-width: none;
    }

    .get-started-step__card {
        padding: 28px 20px 24px;
    }

    .get-started-step__icon {
        width: 76px;
        height: 76px;
        font-size: 1.65rem;
    }

    .get-started-step__text {
        max-width: none;
    }
}

/* ── ECOSYSTEM ── */
.ecosystem-section {
    position: relative;
    padding: 80px 0 90px;
    background: #0b0c10;
}

.ecosystem-section__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 32px;
}

.ecosystem-section__head {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 56px;
}

.ecosystem-section__head .section-sub {
    max-width: 720px;
}

.ecosystem-section__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px 32px;
    align-items: start;
}

.ecosystem-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ecosystem-card__visual {
    position: relative;
    width: 140px;
    height: 140px;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ecosystem-card__title {
    font-family: var(--font2);
    font-size: clamp(1.05rem, 1.5vw, 1.2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.3;
}

.ecosystem-card__text {
    font-size: 0.84rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.52);
    margin: 0;
    max-width: 320px;
}

/* Token Trading — pie chart */
.eco-pie {
    position: relative;
    width: 118px;
    height: 118px;
    border-radius: 50%;
    background: conic-gradient(
        #fbbf24 0deg 130deg,
        #f9a8d4 130deg 230deg,
        #86efac 230deg 360deg
    );
    border: 3px solid #0b0c10;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.08);
    animation: ecoPieFloat 4s ease-in-out infinite;
}

.eco-pie__slice--btc {
    position: absolute;
    top: 22%;
    left: 28%;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #0b0c10;
    background: #fbbf24;
    border: 2px solid #0b0c10;
}

@keyframes ecoPieFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(4deg); }
}

/* Liquidity — bag + arrows */
.ecosystem-card__visual--liquidity .eco-ring {
    position: absolute;
    bottom: 8px;
    width: 100px;
    height: 28px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(56, 189, 248, 0.35) 0%, transparent 70%);
}

.eco-bag {
    position: relative;
    z-index: 1;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #3b82f6;
    background: linear-gradient(165deg, #dbeafe 0%, #93c5fd 100%);
    border: 3px solid #0b0c10;
    box-shadow: 0 12px 28px rgba(59, 130, 246, 0.25);
    animation: ecoBagFloat 3.5s ease-in-out infinite;
}

@keyframes ecoBagFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.eco-arrow {
    position: absolute;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    border: 2px solid #0b0c10;
}

.eco-arrow--down {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    background: #22c55e;
    animation: ecoArrowDown 2.5s ease-in-out infinite;
}

.eco-arrow--up {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    background: #3b82f6;
    animation: ecoArrowUp 2.5s ease-in-out infinite;
}

@keyframes ecoArrowDown {
    0%, 100% { transform: translateY(-50%); }
    50% { transform: translateY(-42%); }
}

@keyframes ecoArrowUp {
    0%, 100% { transform: translateY(-50%); }
    50% { transform: translateY(-58%); }
}

/* Launchpad — rocket */
.eco-rocket {
    position: relative;
    z-index: 1;
    font-size: 3.2rem;
    color: #3b82f6;
    transform: rotate(-35deg);
    filter: drop-shadow(0 8px 16px rgba(59, 130, 246, 0.3));
    animation: ecoRocketLaunch 3s ease-in-out infinite;
}

.eco-rocket i {
    color: #3b82f6;
}

.eco-pad {
    position: absolute;
    bottom: 12px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 2px dashed rgba(134, 239, 172, 0.45);
    background: radial-gradient(circle, rgba(134, 239, 172, 0.12) 0%, transparent 68%);
}

@keyframes ecoRocketLaunch {
    0%, 100% { transform: rotate(-35deg) translateY(0); }
    50% { transform: rotate(-35deg) translateY(-10px); }
}

.ecosystem-card:hover .ecosystem-card__title {
    color: var(--secondary);
}

@media (max-width: 991px) {
    .ecosystem-section__grid {
        grid-template-columns: 1fr;
        gap: 48px;
        max-width: 420px;
        margin: 0 auto;
    }
}

@media (max-width: 575px) {
    .ecosystem-section {
        padding: 56px 0 64px;
    }

    .ecosystem-section__container {
        padding: 0 20px;
    }

    .ecosystem-section__head {
        margin-bottom: 40px;
    }

    .ecosystem-card__text {
        max-width: none;
    }
}

/* ── ABOUT ── */
.about-section {
    padding: 60px 0 60px;
    background: linear-gradient(180deg, var(--dark2) 0%, var(--dark) 100%);
    position: relative;
}
.about-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}
.about-visual {
    position: relative;
}
.about-visual img {
    width: 100%;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
}
.about-float {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px 30px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.about-float h3 {
    font-family: var(--font2);
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 4px;
}
.about-float p {
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 600;
}
.about-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 28px;
}
.about-feat {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--card);
    border: 1px solid var(--border-light);
    border-radius: 14px;
    padding: 18px 22px;
    transition: var(--transition);
}
.about-feat:hover {
    border-color: var(--primary);
    transform: translateX(8px);
}
.about-feat-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}
.about-feat h6 {
    font-weight: 600;
    margin-bottom: 3px;
    font-size: 0.94rem;
}
.about-feat p {
    color: var(--muted);
    font-size: 0.82rem;
    margin: 0;
}

/* ── TESTIMONIALS ── */
.testimonials-section {
    position: relative;
    padding: 60px 0 60px;
    background: linear-gradient(180deg, var(--dark2) 0%, var(--dark) 100%);
}
.testimonials-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 32px;
}
.section-header-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 55px;
}
.section-header-text {
    flex: 1;
    min-width: 0;
}
.testimonials-header {
    text-align: left;
}
.testimonials-header .section-sub,
.articles-header .section-sub {
    margin: 0;
}
.swiper-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    margin-top: 8px;
}
.swiper-button-prev,
.swiper-button-next {
    position: static;
    width: 44px;
    height: 44px;
    margin: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text);
    transition: var(--transition);
}
.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 0.95rem;
    font-weight: 700;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: rgba(var(--primary-rgb), 0.2);
    border-color: rgba(var(--primary-rgb), 0.45);
    color: var(--secondary);
}
.swiper-button-disabled {
    opacity: 0.35;
    pointer-events: none;
}
.articles-header {
    margin-bottom: 0;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.testi-card {
    background: var(--card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: var(--transition);
    position: relative;
}
.testi-card:hover {
    border-color: rgba(var(--primary-rgb), 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}
.testi-stars {
    color: var(--gold);
    font-size: 0.85rem;
    margin-bottom: 16px;
    display: flex;
    gap: 3px;
}
.testi-card blockquote {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.75;
    margin-bottom: 22px;
    font-style: italic;
}
.testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: white;
}
.testi-author h6 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2px;
}
.testi-author span {
    color: var(--muted);
    font-size: 0.78rem;
}

/* ── NEWSLETTER BANNER ── */
.newsletter-banner {
    padding: 0 0 80px;
    background: #000;
}

.newsletter-banner__container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 32px;
}

.newsletter-banner__box {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: center;
    gap: 16px;
    min-height: 210px;
    padding: 44px 40px 44px 52px;
    border-radius: 18px;
    overflow: visible;
    background: linear-gradient(
        95deg,
        #1a4fd6 0%,
        #1236a8 18%,
        #060a14 42%,
        #04060d 58%,
        #0c1f52 82%,
        #1a4fd6 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.55);
}

.newsletter-banner__box::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        radial-gradient(ellipse at 72% 50%, rgba(59, 130, 246, 0.22) 0%, transparent 55%),
        radial-gradient(ellipse at 8% 50%, rgba(37, 99, 235, 0.18) 0%, transparent 50%);
    pointer-events: none;
}

.newsletter-banner__content {
    position: relative;
    z-index: 2;
}

.newsletter-banner__title {
    font-family: var(--font2);
    font-size: clamp(1.45rem, 2.5vw, 1.85rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.newsletter-banner__form {
    max-width: 460px;
}

.newsletter-banner__label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 8px;
}

.newsletter-banner__row {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-bottom: 16px;
}

.newsletter-banner__input {
    flex: 1;
    min-width: 0;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-right: none;
    border-radius: 6px 0 0 6px;
    font-size: 0.86rem;
    font-family: var(--font);
    color: #fff;
    background: rgba(8, 16, 36, 0.55);
    outline: none;
    transition: border-color 0.25s ease, background 0.25s ease;
}

.newsletter-banner__input::placeholder {
    color: rgba(255, 255, 255, 0.38);
}

.newsletter-banner__input:focus {
    border-color: rgba(255, 255, 255, 0.65);
    background: rgba(8, 16, 36, 0.72);
}

.newsletter-banner__btn {
    flex-shrink: 0;
    min-width: 108px;
    padding: 12px 24px;
    border: none;
    border-radius: 0 6px 6px 0;
    font-size: 0.86rem;
    font-weight: 700;
    font-family: var(--font);
    color: #fff;
    cursor: pointer;
    background: #ff8800;
    transition: background 0.25s ease;
}

.newsletter-banner__btn:hover {
    background: #e67700;
}

.newsletter-banner__consent {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.76rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.82);
    cursor: pointer;
}

.newsletter-banner__consent input {
    appearance: none;
    -webkit-appearance: none;
    width: 15px;
    height: 15px;
    margin: 0;
    flex-shrink: 0;
    border: 1.5px solid rgba(255, 255, 255, 0.85);
    border-radius: 2px;
    background: transparent;
    cursor: pointer;
    position: relative;
}

.newsletter-banner__consent input:checked {
    background: #ff8800;
    border-color: #ff8800;
}

.newsletter-banner__consent input:checked::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 1px;
    width: 4px;
    height: 8px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.newsletter-banner__msg {
    margin: 10px 0 0;
    font-size: 0.76rem;
    min-height: 1.2em;
}

.newsletter-banner__msg.is-error {
    color: #fca5a5;
}

.newsletter-banner__msg.is-success {
    color: #86efac;
}

.newsletter-banner__coins {
    position: relative;
    z-index: 3;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-right: -28px;
    pointer-events: none;
}

.newsletter-banner__coins img {
    width: min(100%, 380px);
    height: auto;
    max-height: 240px;
    object-fit: contain;
    object-position: center right;
    filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.35));
    animation: newsletterCoinsFloat 5s ease-in-out infinite;
}

@keyframes newsletterCoinsFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@media (max-width: 991px) {
    .newsletter-banner__box {
        grid-template-columns: 1fr;
        padding: 36px 32px;
        overflow: hidden;
    }

    .newsletter-banner__coins {
        min-height: 160px;
        margin-right: 0;
        margin-top: 12px;
        justify-content: center;
    }

    .newsletter-banner__coins img {
        max-height: 200px;
    }
}

@media (max-width: 575px) {
    .newsletter-banner {
        padding-bottom: 56px;
    }

    .newsletter-banner__container {
        padding: 0 20px;
    }

    .newsletter-banner__box {
        padding: 28px 22px;
    }

    .newsletter-banner__title {
        margin-bottom: 20px;
    }

    .newsletter-banner__row {
        flex-direction: column;
        gap: 10px;
    }

    .newsletter-banner__input {
        border-right: 1px solid rgba(255, 255, 255, 0.45);
        border-radius: 6px;
    }

    .newsletter-banner__btn {
        width: 100%;
        border-radius: 6px;
        min-width: 0;
    }

    .newsletter-banner__coins {
        min-height: 130px;
    }

    .newsletter-banner__coins img {
        max-height: 160px;
    }
}

/* ── CTA ── */
.cta-section {
    padding: 60px 0 60px;
    background: linear-gradient(180deg, var(--dark2) 0%, var(--dark) 100%);
}
.cta-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 32px;
}
.cta-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    border-radius: inherit;
}
.cta-brand-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.cta-brand-orb--1 {
    width: 280px;
    height: 280px;
    top: -12%;
    left: -4%;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.22), transparent 70%);
    filter: blur(55px);
    animation: heroOrbFloat1 18s ease-in-out infinite;
}
.cta-brand-orb--2 {
    width: 240px;
    height: 240px;
    bottom: -14%;
    right: -2%;
    background: radial-gradient(circle, rgba(var(--secondary-rgb), 0.18), transparent 70%);
    filter: blur(55px);
    animation: heroOrbFloat2 22s ease-in-out infinite;
}
.cta-brand-orb--3 {
    width: 180px;
    height: 180px;
    top: 36%;
    left: 42%;
    background: radial-gradient(circle, rgba(var(--accent-rgb), 0.14), transparent 70%);
    filter: blur(45px);
    animation: heroOrbFloat3 15s ease-in-out infinite;
}
.cta-brand-orb--4 {
    width: 140px;
    height: 140px;
    top: 18%;
    right: 22%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.14), transparent 70%);
    filter: blur(40px);
    animation: heroOrbFloat4 20s ease-in-out infinite;
}
.cta-deco-particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.cta-deco-particle--1 {
    width: 3px;
    height: 3px;
    top: 20%;
    left: 12%;
    background: var(--primary);
    box-shadow: 0 0 6px var(--primary);
    animation: heroDecoParticle1 12s linear infinite;
}
.cta-deco-particle--2 {
    width: 2px;
    height: 2px;
    top: 62%;
    left: 78%;
    background: var(--secondary);
    box-shadow: 0 0 6px var(--secondary);
    animation: heroDecoParticle2 15s linear infinite;
}
.cta-deco-particle--3 {
    width: 2.5px;
    height: 2.5px;
    top: 38%;
    left: 50%;
    background: var(--gold);
    box-shadow: 0 0 6px var(--gold);
    animation: heroDecoParticle3 10s linear infinite;
}
.cta-deco-particle--4 {
    width: 2px;
    height: 2px;
    top: 72%;
    left: 22%;
    background: #a78bfa;
    box-shadow: 0 0 6px #a78bfa;
    animation: heroDecoParticle4 14s linear infinite;
}
.cta-deco-particle--5 {
    width: 1.5px;
    height: 1.5px;
    top: 26%;
    left: 88%;
    background: var(--secondary);
    box-shadow: 0 0 4px var(--secondary);
    animation: heroDecoParticle5 18s linear infinite;
}
.cta-geo-deco {
    position: absolute;
    pointer-events: none;
}
.cta-geo-deco--ring {
    width: 130px;
    height: 130px;
    border: 2px solid rgba(var(--primary-rgb), 0.14);
    border-radius: 50%;
    bottom: 12%;
    right: 8%;
    animation: heroGeoRingSpin 25s linear infinite;
}
.cta-geo-deco--ring-left {
    width: 110px;
    height: 110px;
    border: 2px solid rgba(var(--secondary-rgb), 0.12);
    border-radius: 50%;
    bottom: 16%;
    left: 6%;
    animation: heroGeoRingSpin 30s linear infinite reverse;
}
.cta-geo-deco--ring::before,
.cta-geo-deco--ring-left::before {
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
}
.cta-geo-deco--ring::before {
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary);
}
.cta-geo-deco--ring-left::before {
    background: var(--secondary);
    box-shadow: 0 0 10px var(--secondary);
}
.cta-geo-deco--diamond {
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(var(--secondary-rgb), 0.18);
    top: 16%;
    right: 12%;
    transform: rotate(45deg);
    animation: heroGeoDiamondPulse 6s ease-in-out infinite;
}
.cta-geo-deco--diamond-left {
    width: 30px;
    height: 30px;
    border: 1.5px solid rgba(var(--primary-rgb), 0.16);
    top: 22%;
    left: 8%;
    transform: rotate(45deg);
    animation: heroGeoDiamondPulse 7s ease-in-out infinite 1s;
}
.cta-geo-deco--triangle {
    width: 0;
    height: 0;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-bottom: 28px solid rgba(var(--primary-rgb), 0.1);
    top: 52%;
    left: 18%;
    animation: heroGeoTriFloat 8s ease-in-out infinite;
}
.cta-geo-deco--dots {
    top: 14%;
    left: 42%;
    display: grid;
    grid-template-columns: repeat(3, 6px);
    gap: 8px;
    animation: heroGeoDotsFloat 10s ease-in-out infinite;
}
.cta-geo-deco--dots span {
    width: 4px;
    height: 4px;
    background: rgba(var(--primary-rgb), 0.22);
    border-radius: 50%;
}
.cta-box {
    background: linear-gradient(
        135deg,
        rgba(var(--primary-rgb), 0.25) 0%,
        rgba(var(--secondary-rgb), 0.15) 50%,
        rgba(var(--accent-rgb), 0.2) 100%
    );
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 32px;
    padding: 100px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4), inset 0 0 30px rgba(255, 255, 255, 0.05);
    transition: box-shadow 0.4s ease;
}
.cta-box[data-aos] {
    transition: none;
    will-change: transform, opacity;
}
.cta-box[data-aos].aos-animate {
    transition: box-shadow 0.4s ease;
    will-change: auto;
}
@media (hover: hover) and (pointer: fine) {
    .cta-box:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 50px 100px rgba(0, 0, 0, 0.6), inset 0 0 40px rgba(255, 255, 255, 0.1);
    }
}
.cta-icons {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}
.cta-icon {
    position: absolute;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
    display: grid;
    place-items: center;
    color: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    opacity: 0.95;
}
.cta-icon i {
    font-size: 1.15rem;
}
.cta-icon-1 {
    top: 18%;
    left: 14%;
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    animation: floatX 8s ease-in-out infinite;
}
.cta-icon-2 {
    top: 22%;
    right: 16%;
    background: linear-gradient(135deg, #0ea5e9 0%, #8b5cf6 100%);
    animation: floatY 9s ease-in-out infinite;
}
.cta-icon-3 {
    bottom: 18%;
    left: 20%;
    background: linear-gradient(135deg, #22c55e 0%, #14b8a6 100%);
    animation: floatX 10s ease-in-out infinite reverse;
}
.cta-icon-4 {
    bottom: 24%;
    right: 18%;
    background: linear-gradient(135deg, #ec4899 0%, #f43f5e 100%);
    animation: floatY 11s ease-in-out infinite reverse;
}
@keyframes floatX {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(8px, -14px); }
}
@keyframes floatY {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-10px, 12px); }
}
.cta-box::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.15), transparent 70%);
    border-radius: 50%;
    animation: glowPulse 8s ease-in-out infinite alternate;
}
.cta-box::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(var(--secondary-rgb), 0.1), transparent 70%);
    border-radius: 50%;
    animation: glowPulse 10s ease-in-out infinite alternate-reverse;
}
.cta-box h2 {
    font-family: var(--font2);
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    text-shadow: 0 10px 30px rgba(var(--primary-rgb), 0.4);
}
.cta-box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    max-width: 580px;
    margin: 0 auto 36px;
    position: relative;
    z-index: 1;
    line-height: 1.8;
}
.cta-box .btn-hero-primary {
    position: relative;
    z-index: 1;
}

@media (max-width: 992px) {
    .cta-container {
        padding: 0 24px;
    }
    .cta-box {
        padding: 72px 36px;
    }
    .cta-box h2 {
        font-size: 2.4rem;
    }
    .cta-box p {
        font-size: 1.05rem;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 48px 0;
    }
    .cta-container {
        padding: 0 18px;
    }
    .cta-box {
        padding: 40px 22px 36px;
        border-radius: 24px;
    }
    .cta-box h2 {
        font-size: 1.85rem;
        line-height: 1.25;
        margin-bottom: 14px;
    }
    .cta-box p {
        font-size: 0.92rem;
        line-height: 1.65;
        margin-bottom: 28px;
    }
    .cta-box .btn-hero-primary {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }
    .cta-icons {
        display: none;
    }
    .cta-geo-deco--ring,
    .cta-geo-deco--ring-left,
    .cta-geo-deco--diamond,
    .cta-geo-deco--diamond-left,
    .cta-geo-deco--triangle,
    .cta-geo-deco--dots {
        display: none;
    }
    .cta-brand-orb--3,
    .cta-brand-orb--4,
    .cta-deco-particle--4,
    .cta-deco-particle--5 {
        display: none;
    }
    .cta-brand-orb--1 {
        width: 200px;
        height: 200px;
    }
    .cta-brand-orb--2 {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 480px) {
    .cta-box {
        padding: 36px 18px 32px;
    }
    .cta-box h2 {
        font-size: 1.6rem;
    }
    .cta-box p {
        font-size: 0.88rem;
    }
}

/* ── FAQ SECTION ── */
.faq-section {
    padding: 60px 0 60px;
    background: linear-gradient(180deg, var(--dark2) 0%, var(--dark) 100%);
}
.faq-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 32px;
}
.faq-block {
    /* background: var(--card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18); */
}
.faq-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 56px;
    align-items: center;
    margin-top: 32px;
}
.faq-content {
    min-width: 0;
}
.faq-visual {
    position: relative;
}
.faq-visual img {
    width: 100%;
    display: block;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.25);
}
@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.faq-visual-badge {
    position: absolute;
    left: -18px;
    bottom: 28px;
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px 22px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    animation: floatBadge 4s ease-in-out infinite;
    z-index: 2;
}

.faq-visual-badge-2 {
    position: absolute;
    right: -25px;
    top: 35px;
    display: flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, rgba(236,72,153,0.95), rgba(139,92,246,0.95));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    padding: 14px 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    animation: floatBadge 5s ease-in-out infinite reverse;
    color: #fff;
    z-index: 2;
}
.faq-visual-badge-2 i {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.faq-visual-badge-2 strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 2px;
    color: #fff;
}
.faq-visual-badge-2 span {
    color: rgba(255,255,255,0.8);
    font-size: 0.82rem;
}
.faq-visual-badge i {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(var(--primary-rgb), 0.15);
    color: var(--secondary);
    font-size: 1.1rem;
    flex-shrink: 0;
}
.faq-visual-badge strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 2px;
}
.faq-visual-badge span {
    color: var(--muted);
    font-size: 0.82rem;
}
.faq-grid {
    display: grid;
    gap: 18px;
    margin-top: 0;
}
.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    overflow: hidden;
    transition: var(--transition);
}
.faq-question {
    width: 100%;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    color: var(--text);
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
}
.faq-question i {
    transition: transform 0.3s ease;
}
.faq-item.open .faq-question i {
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.faq-item.open .faq-answer {
    max-height: 220px;
}
.faq-answer p {
    color: var(--muted);
    line-height: 1.75;
    margin: 0 24px 24px;
}

/* ── ARTICLES SECTION ── */
.articles-section {
    padding: 60px 0 60px;
    background: linear-gradient(180deg, var(--dark2) 0%, var(--dark) 100%);
}
.articles-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 32px;
}
.articles-block {
    /* background: var(--card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18); */
}
.articles-swiper {
    margin-top: 24px;
    padding-bottom: 16px;
}
.articles-swiper .swiper-slide,
.testimonials-swiper .swiper-slide {
    display: flex;
    justify-content: center;
}
.articles-swiper .swiper-slide {
    width: auto;
}
.article-card-item,
.testimonials-swiper .swiper-slide .testi-card {
    width: 100%;
}
.article-card-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.article-card-item:hover {
    border-color: rgba(var(--primary-rgb), 0.35);
}
.article-thumb {
    width: 100%;
    overflow: hidden;
}
.article-thumb img {
    width: 100%;
    display: block;
    object-fit: cover;
    height: 220px;
}
.article-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-size: 0.9rem;
    margin: 20px 24px 14px;
}
.article-meta i {
    color: var(--secondary);
}
.article-card-item h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 24px 12px;
}
.article-card-item p {
    color: var(--muted);
    line-height: 1.8;
    margin: 0 24px 24px;
}
.swiper-pagination {
    margin-top: 22px;
}
.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.35);
    opacity: 1;
}
.swiper-pagination-bullet-active {
    background: var(--secondary);
}
@media (max-width: 1080px) {
    .article-card {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 992px) {
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .faq-visual {
        order: -1;
        max-width: 520px;
        margin: 0 auto;
        width: 100%;
    }
    .faq-visual-badge {
        left: 16px;
        bottom: 16px;
    }
}
@media (max-width: 760px) {
    .section-header-row {
        flex-wrap: wrap;
        margin-bottom: 32px;
    }
    .swiper-nav {
        margin-left: auto;
    }
    .faq-section,
    .articles-section {
        padding: 60px 0 40px;
    }
    .faq-container,
    .articles-container {
        padding: 0 18px;
    }
}


/* ── RESPONSIVE ── */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-visual {
        display: none;
    }
    .hero-title {
        font-size: 2.8rem;
    }
    .hero-desc {
        margin: 0 auto 30px;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-metrics {
        justify-content: center;
    }
    .market-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-container {
        grid-template-columns: 1fr;
    }
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    .hero-metrics {
        flex-wrap: wrap;
        gap: 24px;
    }
    .market-grid,
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* Ripple Shape Animation */
.ripple_shape {
    position: absolute;
    top: 40%;
    left: 40%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}
.hero-image-panel {
    position: relative;
    z-index: 1;
}
.ripple_shape svg path {
    transform-origin: center;
    animation: rippleExpand 4s infinite cubic-bezier(0.165, 0.84, 0.44, 1);
}
.ripple_shape svg path:nth-child(1) { animation-delay: 0s; }
.ripple_shape svg path:nth-child(2) { animation-delay: -1s; }
.ripple_shape svg path:nth-child(3) { animation-delay: -2s; }
.ripple_shape svg path:nth-child(4) { animation-delay: -3s; }

@keyframes rippleExpand {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}


/* New Hero Floating Elements */
.hero-float-badge {
    position: absolute;
    background: rgba(20, 20, 30, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 12px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.h-badge-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.h-badge-text {
    display: flex;
    flex-direction: column;
}

.h-badge-text span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.h-badge-text strong {
    font-size: 1.1rem;
    color: #fff;
    font-weight: 700;
}

.badge-profit {
    bottom: 25%;
    right: -8%;
    animation: floatBadge1 8s ease-in-out infinite;
}

.badge-profit .h-badge-icon {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.badge-secure {
    top: 25%;
    left: -10%;
    animation: floatBadge2 9s ease-in-out infinite reverse;
}

.badge-secure .h-badge-icon {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
}

@keyframes floatBadge1 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

@keyframes floatBadge2 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(18px) rotate(-3deg); }
}


/* About Floating Elements Animation */
.about-float {
    animation: floatAboutBox 8s ease-in-out infinite;
    z-index: 2;
}

.about-floating-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.a-float-1 {
    top: 10%;
    left: -5%;
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    border-color: rgba(16, 185, 129, 0.3);
    animation: floatAboutIcon1 7s ease-in-out infinite;
}

.a-float-2 {
    bottom: 25%;
    left: -8%;
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
    border-color: rgba(245, 158, 11, 0.3);
    animation: floatAboutIcon2 9s ease-in-out infinite reverse;
}

@keyframes floatAboutBox {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes floatAboutIcon1 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

@keyframes floatAboutIcon2 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(18px) rotate(-10deg); }
}


/* -- LANGUAGE SELECTOR -- */
.lang-selector {
    position: relative;
    display: inline-block;
    margin-right: 12px;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text);
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lang-btn:hover {
    background: rgba(108, 99, 255, 0.15);
    border-color: rgba(108, 99, 255, 0.3);
    color: var(--primary);
}

.lang-btn .arrow-icon {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.lang-selector:hover .lang-btn .arrow-icon {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 160px;
    background: rgba(15, 20, 40, 0.95);
    border: 1px solid rgba(108, 99, 255, 0.2);
    border-radius: 12px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    z-index: 100;
}

.lang-selector:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.lang-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    color: var(--muted);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.lang-dropdown a img {
    border-radius: 2px;
    width: 20px;
    height: 15px;
    object-fit: cover;
}

.lang-dropdown a:hover,
.lang-dropdown a.active {
    background: rgba(108, 99, 255, 0.1);
    color: #fff;
}
.lang-dropdown a.active {
    border-left: 3px solid var(--primary);
}


/* Hide Google Translate Default Widget & Banner */
.goog-te-banner-frame.skiptranslate, .goog-te-gadget-icon {
    display: none !important;
}
body {
    top: 0px !important;
}
.goog-tooltip {
    display: none !important;
}
.goog-tooltip:hover {
    display: none !important;
}
.goog-text-highlight {
    background-color: transparent !important;
    border: none !important; 
    box-shadow: none !important;
}



