    :root {
        --primary: #001a3a;
        --primary-light: #002a5c;
        --primary-dark: #00102a;
        --accent: #00d4aa;
        --accent-glow: #00ffcc;
        --gold: #c9a84c;
        --gold-light: #e8c86e;
        --surface: #001530;
        --surface-light: #002040;
        --text: #e0e8f0;
        --text-muted: #7a8da0;
        --danger: #ff4757;
        --success: #00d4aa;
        --white: #ffffff;
        --glass: rgba(0, 26, 58, 0.6);
        --glass-border: rgba(0, 212, 170, 0.15);
      }

      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      html {
        scroll-behavior: smooth;
        scrollbar-width: thin;
        scrollbar-color: var(--accent) var(--primary);
        overflow-x: hidden;
      }
      html::-webkit-scrollbar {
        width: 6px;
      }
      html::-webkit-scrollbar-track {
        background: var(--primary);
      }
      html::-webkit-scrollbar-thumb {
        background: var(--accent);
        border-radius: 3px;
      }

      body {
        font-family: "DM Sans", sans-serif;
        background: var(--primary);
        color: var(--text);
        overflow-x: hidden;
        line-height: 1.6;
        width: 100%;
        max-width: 100vw;
      }

      /* ═══════════ PRELOADER ═══════════ */
      #preloader {
        position: fixed;
        inset: 0;
        z-index: 99999;
        background: var(--primary-dark);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition:
          opacity 0.6s ease,
          visibility 0.6s ease;
      }
      #preloader.loaded {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
      }
      .preloader-logo {
        width: 80px;
        height: 80px;
        object-fit: contain;
        margin-bottom: 30px;
        animation: preloaderPulse 1.5s ease-in-out infinite;
      }
      .preloader-spinner {
        width: 50px;
        height: 50px;
        border: 3px solid rgba(0, 212, 170, 0.15);
        border-top-color: var(--accent);
        border-radius: 50%;
        animation: spin 0.8s linear infinite;
      }
      .preloader-text {
        margin-top: 20px;
        font-family: "JetBrains Mono", monospace;
        font-size: 12px;
        color: var(--accent);
        letter-spacing: 3px;
        text-transform: uppercase;
        animation: preloaderBlink 1s ease-in-out infinite;
      }
      @keyframes spin {
        to {
          transform: rotate(360deg);
        }
      }
      @keyframes preloaderPulse {
        0%,
        100% {
          transform: scale(1);
          opacity: 1;
        }
        50% {
          transform: scale(1.08);
          opacity: 0.7;
        }
      }
      @keyframes preloaderBlink {
        0%,
        100% {
          opacity: 1;
        }
        50% {
          opacity: 0.3;
        }
      }

      /* ═══════════ NOTIFICATION POPUP ═══════════ */
      .notif-popup {
        position: fixed;
        bottom: 20px;
        left: 16px;
        z-index: 9998;
        background: var(--surface-light);
        border: 1px solid var(--glass-border);
        border-left: 4px solid var(--accent);
        border-radius: 12px;
        padding: 14px 16px;
        max-width: 320px;
        width: calc(100% - 32px);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
        transform: translateX(-120%);
        transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
        backdrop-filter: blur(20px);
      }
      .notif-popup.show {
        transform: translateX(0);
      }
      .notif-popup .notif-header {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 8px;
      }
      .notif-popup .notif-icon {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--accent), #00a885);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary-dark);
        font-size: 14px;
        font-weight: 700;
        flex-shrink: 0;
      }
      .notif-popup .notif-name {
        font-weight: 600;
        font-size: 14px;
        color: var(--white);
      }
      .notif-popup .notif-time {
        font-size: 11px;
        color: var(--text-muted);
        font-family: "JetBrains Mono", monospace;
      }
      .notif-popup .notif-body {
        font-size: 13px;
        color: var(--text);
        line-height: 1.5;
      }
      .notif-popup .notif-amount {
        color: var(--accent);
        font-weight: 700;
        font-family: "JetBrains Mono", monospace;
      }

      /* ═══════════ BACK TO TOP ═══════════ */
      .back-to-top {
        position: fixed;
        bottom: 20px;
        right: 16px;
        z-index: 9997;
        width: 46px;
        height: 46px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--accent), #00a885);
        border: none;
        color: var(--primary-dark);
        font-size: 18px;
        cursor: pointer;
        opacity: 0;
        visibility: hidden;
        transform: translateY(20px);
        transition: all 0.3s ease;
        box-shadow: 0 8px 30px rgba(0, 212, 170, 0.3);
      }
      .back-to-top.visible {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
      }
      .back-to-top:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 40px rgba(0, 212, 170, 0.5);
      }

      /* ═══════════ UTILITY ═══════════ */
      .container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 20px;
      }
      .section-pad {
        padding: 80px 0;
      }

      .badge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 6px 14px;
        border-radius: 50px;
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        font-family: "JetBrains Mono", monospace;
      }
      .badge-accent {
        background: rgba(0, 212, 170, 0.1);
        color: var(--accent);
        border: 1px solid rgba(0, 212, 170, 0.2);
      }
      .badge-gold {
        background: rgba(201, 168, 76, 0.1);
        color: var(--gold-light);
        border: 1px solid rgba(201, 168, 76, 0.2);
      }

      .section-title {
        font-family: "Playfair Display", serif;
        font-size: clamp(26px, 5vw, 52px);
        font-weight: 700;
        color: var(--white);
        line-height: 1.2;
        margin-bottom: 16px;
      }
      .section-subtitle {
        font-size: clamp(14px, 2.5vw, 17px);
        color: var(--text-muted);
        max-width: 600px;
        line-height: 1.7;
      }

      .glow-line {
        width: 60px;
        height: 3px;
        background: linear-gradient(90deg, var(--accent), transparent);
        border-radius: 2px;
        margin: 20px 0;
      }

      .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 14px 28px;
        border-radius: 12px;
        font-family: "DM Sans", sans-serif;
        font-weight: 600;
        font-size: 14px;
        text-decoration: none;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        white-space: nowrap;
      }
      .btn-primary {
        background: linear-gradient(135deg, var(--accent), #00a885);
        color: var(--primary-dark);
        box-shadow: 0 8px 30px rgba(0, 212, 170, 0.25);
      }
      .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 40px rgba(0, 212, 170, 0.4);
      }
      .btn-outline {
        background: transparent;
        color: var(--white);
        border: 1.5px solid rgba(255, 255, 255, 0.2);
      }
      .btn-outline:hover {
        border-color: var(--accent);
        color: var(--accent);
        background: rgba(0, 212, 170, 0.05);
      }
      .btn-gold {
        background: linear-gradient(135deg, var(--gold), var(--gold-light));
        color: var(--primary-dark);
        box-shadow: 0 8px 30px rgba(201, 168, 76, 0.25);
      }
      .btn-gold:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 40px rgba(201, 168, 76, 0.4);
      }

      /* ═══════════ GLASS CARD ═══════════ */
      .glass-card {
        background: linear-gradient(
          135deg,
          rgba(0, 32, 64, 0.7),
          rgba(0, 21, 48, 0.5)
        );
        border: 1px solid var(--glass-border);
        border-radius: 20px;
        backdrop-filter: blur(20px);
        transition: all 0.4s ease;
      }
      .glass-card:hover {
        border-color: rgba(0, 212, 170, 0.35);
        transform: translateY(-4px);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
      }

      /* ═══════════ NAVBAR ═══════════ */
      .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        padding: 14px 0;
        transition: all 0.4s ease;
      }
      .navbar.scrolled {
        background: rgba(0, 16, 42, 0.95);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--glass-border);
        padding: 10px 0;
      }
      .navbar .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
      }
      .nav-logo {
        display: flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
        flex-shrink: 0;
      }
      .nav-logo img {
        height: 38px;
        width: auto;
        object-fit: contain;
      }
      .nav-logo span {
        font-family: "Playfair Display", serif;
        font-size: 20px;
        font-weight: 700;
        color: var(--white);
      }
      .nav-links {
        display: flex;
        align-items: center;
        gap: 28px;
        list-style: none;
      }
      .nav-links a {
        color: var(--text-muted);
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        transition: color 0.3s;
        position: relative;
      }
      .nav-links a::after {
        content: "";
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--accent);
        transition: width 0.3s;
      }
      .nav-links a:hover {
        color: var(--white);
      }
      .nav-links a:hover::after {
        width: 100%;
      }
      .nav-actions {
        display: flex;
        align-items: center;
        gap: 10px;
      }
      .nav-actions .btn {
        padding: 10px 20px;
        font-size: 13px;
      }

      .mobile-toggle {
        display: none;
        background: none;
        border: none;
        color: var(--white);
        font-size: 22px;
        cursor: pointer;
        padding: 8px;
      }

      /* Mobile Menu Overlay */
      .mobile-overlay {
        position: fixed;
        inset: 0;
        z-index: 10000;
        background: rgba(0, 5, 15, 0.7);
        backdrop-filter: blur(4px);
        opacity: 0;
        visibility: hidden;
        transition:
          opacity 0.4s ease,
          visibility 0.4s ease;
      }
      .mobile-overlay.open {
        opacity: 1;
        visibility: visible;
      }

      /* Mobile Sidebar Menu */
      .mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        z-index: 10001;
        width: 280px;
        max-width: 80vw;
        background: var(--primary-dark);
        border-right: 1px solid var(--glass-border);
        display: flex;
        flex-direction: column;
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
      }
      .mobile-menu.open {
        transform: translateX(0);
      }

      .mobile-menu-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 20px;
        border-bottom: 1px solid var(--glass-border);
        flex-shrink: 0;
      }
      .mobile-menu-header .nav-logo img {
        height: 30px;
      }
      .mobile-menu-header .nav-logo span {
        font-size: 16px;
      }

      .mobile-close {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: var(--white);
        font-size: 16px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s;
        flex-shrink: 0;
      }
      .mobile-close:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: var(--accent);
        color: var(--accent);
      }

      .mobile-menu-nav {
        flex: 1;
        padding: 12px 0;
        display: flex;
        flex-direction: column;
      }
      .mobile-menu-nav a {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 20px;
        color: var(--text-muted);
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        transition: all 0.3s;
        border-left: 3px solid transparent;
      }
      .mobile-menu-nav a:hover,
      .mobile-menu-nav a:active {
        color: var(--white);
        background: rgba(0, 212, 170, 0.05);
        border-left-color: var(--accent);
      }
      .mobile-menu-nav a i {
        width: 18px;
        text-align: center;
        font-size: 13px;
        color: var(--accent);
      }
      .mobile-menu-nav .menu-divider {
        height: 1px;
        background: var(--glass-border);
        margin: 8px 20px;
      }
      .mobile-menu-footer {
        padding: 16px 20px;
        border-top: 1px solid var(--glass-border);
        display: flex;
        flex-direction: column;
        gap: 8px;
        flex-shrink: 0;
      }
      .mobile-menu-footer .btn {
        width: 100%;
        justify-content: center;
        padding: 12px;
        font-size: 13px;
      }

      /* ═══════════ FOOTER ═══════════ */
      .footer {
        background: var(--primary-dark);
        border-top: 1px solid var(--glass-border);
        padding: 60px 0 24px;
      }
      .footer-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 40px;
        margin-bottom: 50px;
      }
      .footer-brand p {
        color: var(--text-muted);
        font-size: 13px;
        line-height: 1.8;
        margin-top: 14px;
        max-width: 300px;
      }
      .footer h4 {
        font-family: "Playfair Display", serif;
        font-size: 15px;
        color: var(--white);
        margin-bottom: 16px;
      }
      .footer-links {
        list-style: none;
      }
      .footer-links li {
        margin-bottom: 10px;
      }
      .footer-links a {
        color: var(--text-muted);
        text-decoration: none;
        font-size: 13px;
        transition: color 0.3s;
      }
      .footer-links a:hover {
        color: var(--accent);
      }
      .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        padding-top: 24px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 16px;
      }
      .footer-bottom p {
        color: var(--text-muted);
        font-size: 12px;
      }
      .footer-socials {
        display: flex;
        gap: 10px;
      }
      .footer-socials a {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-muted);
        text-decoration: none;
        font-size: 14px;
        transition: all 0.3s;
      }
      .footer-socials a:hover {
        border-color: var(--accent);
        color: var(--accent);
        background: rgba(0, 212, 170, 0.1);
      }

      /* ═══════════ TICKER BAR ═══════════ */
      .ticker-bar {
        margin-top: 62px;
        background: var(--primary-dark);
        border-bottom: 1px solid var(--glass-border);
        overflow: hidden;
        /*height: 36px;*/
        display: flex;
        align-items: center;
        width: 100%;
        max-width: 100vw;
        position: relative;
      }
      .ticker-track {
        display: flex;
        animation: tickerScroll 30s linear infinite;
        white-space: nowrap;
      }
      .ticker-item {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 0 24px;
        font-family: "JetBrains Mono", monospace;
        font-size: 11px;
        color: var(--text-muted);
      }
      .ticker-item .up {
        color: var(--accent);
      }
      .ticker-item .down {
        color: var(--danger);
      }
      @keyframes tickerScroll {
        0% {
          transform: translateX(0);
        }
        100% {
          transform: translateX(-50%);
        }
      }

      /* ═══════════ RESPONSIVE ═══════════ */
      @media (max-width: 1024px) {
        .nav-links {
          display: none;
        }
        .nav-actions {
          display: none;
        }
        .mobile-toggle {
          display: block;
        }
        .footer-grid {
          grid-template-columns: 1fr 1fr;
        }
      }
      @media (max-width: 768px) {
        .section-pad {
          padding: 50px 0;
        }
        .container {
          padding: 0 16px;
        }
        .navbar {
          padding: 10px 0;
          background: rgba(0, 16, 42, 0.95);
        }
        .navbar.scrolled {
          padding: 8px 0;
        }
        .footer-grid {
          grid-template-columns: 1fr;
          gap: 30px;
        }
        .footer-bottom {
          flex-direction: column;
          align-items: flex-start;
        }
        .footer {
          padding: 50px 0 20px;
        }
        .nav-logo img {
          height: 30px;
        }
        .nav-logo span {
          font-size: 16px;
        }
        .ticker-bar {
          height: 32px;
          margin-top: 52px;
        }
        .ticker-item {
          font-size: 10px;
          padding: 0 16px;
        }
        .section-title {
          margin-bottom: 12px;
        }
        .section-subtitle {
          font-size: 14px;
        }
        .notif-popup {
          max-width: 260px;
          bottom: 14px;
          left: 10px;
          padding: 10px 12px;
        }
        .notif-popup .notif-icon {
          width: 30px;
          height: 30px;
          font-size: 11px;
        }
        .notif-popup .notif-name {
          font-size: 12px;
        }
        .notif-popup .notif-body {
          font-size: 11px;
        }
        .notif-popup .notif-time {
          font-size: 10px;
        }
        .badge {
          font-size: 10px;
          padding: 5px 12px;
        }
      }
      @media (max-width: 480px) {
        .section-pad {
          padding: 40px 0;
        }
        .container {
          padding: 0 12px;
        }
        .btn {
          padding: 12px 20px;
          font-size: 13px;
          gap: 6px;
        }
        .nav-logo img {
          height: 26px;
        }
        .nav-logo span {
          font-size: 15px;
        }
        .footer-grid {
          gap: 24px;
        }
      }

      /* ═══════════ ANIMATIONS ═══════════ */
      @keyframes float {
        0%,
        100% {
          transform: translateY(0);
        }
        50% {
          transform: translateY(-15px);
        }
      }
      @keyframes pulse-glow {
        0%,
        100% {
          box-shadow: 0 0 20px rgba(0, 212, 170, 0.2);
        }
        50% {
          box-shadow: 0 0 40px rgba(0, 212, 170, 0.4);
        }
      }
      @keyframes shimmer {
        0% {
          background-position: -200% center;
        }
        100% {
          background-position: 200% center;
        }
      }
      @keyframes countUp {
        from {
          opacity: 0;
          transform: translateY(10px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
    
      .hero {
        position: relative;
        min-height: 100vh;
        display: flex;
        align-items: center;
        overflow: hidden;
        padding-top: 110px;
        padding-bottom: 60px;
      }
      .hero-bg {
        position: absolute;
        inset: 0;
        z-index: 0;
      }
      .hero-bg::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
          radial-gradient(
            ellipse 800px 600px at 20% 50%,
            rgba(0, 212, 170, 0.08) 0%,
            transparent 70%
          ),
          radial-gradient(
            ellipse 600px 400px at 80% 30%,
            rgba(201, 168, 76, 0.06) 0%,
            transparent 70%
          ),
          radial-gradient(
            ellipse 1200px 800px at 50% 100%,
            rgba(0, 42, 92, 0.5) 0%,
            transparent 60%
          );
      }
      .hero-grid-pattern {
        position: absolute;
        inset: 0;
        background-image:
          linear-gradient(rgba(0, 212, 170, 0.03) 1px, transparent 1px),
          linear-gradient(90deg, rgba(0, 212, 170, 0.03) 1px, transparent 1px);
        background-size: 60px 60px;
        mask-image: radial-gradient(
          ellipse 80% 70% at 50% 50%,
          black 20%,
          transparent 70%
        );
      }
      .hero .container {
        position: relative;
        z-index: 2;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: center;
      }
      .hero-content {
        max-width: 600px;
      }
      .hero-tag {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 7px 16px;
        border-radius: 50px;
        background: rgba(0, 212, 170, 0.08);
        border: 1px solid rgba(0, 212, 170, 0.2);
        font-size: 12px;
        font-weight: 600;
        color: var(--accent);
        margin-bottom: 24px;
        font-family: "JetBrains Mono", monospace;
        letter-spacing: 1px;
      }
      .hero-tag .pulse-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--accent);
        animation: pulse-glow 2s ease-in-out infinite;
      }
      .hero h1 {
        font-family: "Playfair Display", serif;
        font-size: clamp(32px, 5.5vw, 68px);
        font-weight: 800;
        line-height: 1.1;
        color: var(--white);
        margin-bottom: 20px;
      }
      .hero h1 .gradient-text {
        background: linear-gradient(
          135deg,
          var(--accent),
          var(--accent-glow),
          var(--gold-light)
        );
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }
      .hero p {
        font-size: clamp(15px, 2.5vw, 18px);
        color: var(--text-muted);
        line-height: 1.8;
        margin-bottom: 30px;
        max-width: 520px;
      }
      .hero-btns {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
        margin-bottom: 40px;
      }
      .hero-stats {
        display: flex;
        gap: 30px;
        padding-top: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        flex-wrap: wrap;
      }
      .hero-stat-item h3 {
        font-family: "JetBrains Mono", monospace;
        font-size: clamp(20px, 3vw, 28px);
        font-weight: 700;
        color: var(--accent);
      }
      .hero-stat-item p {
        font-size: 12px;
        color: var(--text-muted);
        margin-bottom: 0;
      }
      .hero-visual {
        position: relative;
        height: 450px;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .hero-float-card {
        position: absolute;
        background: linear-gradient(
          135deg,
          rgba(0, 32, 64, 0.8),
          rgba(0, 21, 48, 0.6)
        );
        border: 1px solid var(--glass-border);
        border-radius: 14px;
        padding: 16px;
        backdrop-filter: blur(20px);
        animation: float 6s ease-in-out infinite;
      }
      .hero-float-card.card-1 {
        top: 10%;
        right: 10%;
      }
      .hero-float-card.card-2 {
        top: 45%;
        left: 5%;
        animation-delay: 2s;
      }
      .hero-float-card.card-3 {
        bottom: 5%;
        right: 15%;
        animation-delay: 4s;
      }
      .float-card-title {
        font-size: 10px;
        color: var(--text-muted);
        text-transform: uppercase;
        letter-spacing: 1.5px;
        font-family: "JetBrains Mono", monospace;
        margin-bottom: 6px;
      }
      .float-card-value {
        font-family: "JetBrains Mono", monospace;
        font-size: 20px;
        font-weight: 700;
        color: var(--white);
      }
      .float-card-change {
        font-family: "JetBrains Mono", monospace;
        font-size: 12px;
        font-weight: 600;
        margin-top: 4px;
      }
      .float-card-change.up {
        color: var(--accent);
      }
      .float-card-change.down {
        color: var(--danger);
      }
      .hero-chart-placeholder {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 250px;
        height: 180px;
        border-radius: 18px;
        background: linear-gradient(
          135deg,
          rgba(0, 42, 92, 0.6),
          rgba(0, 21, 48, 0.4)
        );
        border: 1px solid var(--glass-border);
        overflow: hidden;
        display: flex;
        align-items: flex-end;
        padding: 0 14px 14px;
        gap: 5px;
      }
      .chart-bar {
        flex: 1;
        border-radius: 3px 3px 0 0;
        background: linear-gradient(
          to top,
          var(--accent),
          rgba(0, 212, 170, 0.3)
        );
        animation: chartGrow 2s ease-out forwards;
        transform-origin: bottom;
        transform: scaleY(0);
      }
      @keyframes chartGrow {
        to {
          transform: scaleY(1);
        }
      }
      .stats-bar {
        background: var(--surface);
        border-top: 1px solid var(--glass-border);
        border-bottom: 1px solid var(--glass-border);
        padding: 36px 0;
      }
      .stats-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
        text-align: center;
      }
      .stat-number {
        font-family: "JetBrains Mono", monospace;
        font-size: clamp(24px, 4vw, 36px);
        font-weight: 700;
        color: var(--white);
        margin-bottom: 4px;
      }
      .stat-label {
        font-size: 13px;
        color: var(--text-muted);
      }
      .features-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin-top: 40px;
      }
      .feature-card {
        padding: 30px 24px;
        position: relative;
        overflow: hidden;
      }
      .feature-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: linear-gradient(90deg, var(--accent), transparent);
        opacity: 0;
        transition: opacity 0.4s;
      }
      .feature-card:hover::before {
        opacity: 1;
      }
      .feature-icon {
        width: 50px;
        height: 50px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        margin-bottom: 16px;
      }
      .feature-icon.teal {
        background: rgba(0, 212, 170, 0.1);
        color: var(--accent);
      }
      .feature-icon.gold {
        background: rgba(201, 168, 76, 0.1);
        color: var(--gold-light);
      }
      .feature-icon.blue {
        background: rgba(59, 130, 246, 0.1);
        color: #60a5fa;
      }
      .feature-card h3 {
        font-family: "Playfair Display", serif;
        font-size: 18px;
        color: var(--white);
        margin-bottom: 8px;
      }
      .feature-card p {
        font-size: 13px;
        color: var(--text-muted);
        line-height: 1.7;
      }
      .markets-table-wrap {
        margin-top: 30px;
        border-radius: 16px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border: 1px solid var(--glass-border);
        background: var(--surface);
      }
      .markets-table {
        width: 100%;
        min-width: 600px;
        border-collapse: collapse;
      }
      .markets-table thead th {
        text-align: left;
        padding: 14px 18px;
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        color: var(--text-muted);
        font-family: "JetBrains Mono", monospace;
        border-bottom: 1px solid var(--glass-border);
        background: var(--surface-light);
        white-space: nowrap;
      }
      .markets-table tbody td {
        padding: 14px 18px;
        font-size: 13px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.03);
        vertical-align: middle;
        white-space: nowrap;
      }
      .markets-table tbody tr {
        transition: background 0.3s;
      }
      .markets-table tbody tr:hover {
        background: rgba(0, 212, 170, 0.03);
      }
      .market-asset {
        display: flex;
        align-items: center;
        gap: 10px;
        font-weight: 600;
        color: var(--white);
      }
      .market-asset-icon {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 11px;
        flex-shrink: 0;
      }
      .market-price {
        font-family: "JetBrains Mono", monospace;
        font-weight: 600;
        color: var(--white);
        font-size: 13px;
      }
      .market-change {
        font-family: "JetBrains Mono", monospace;
        font-weight: 600;
        font-size: 12px;
        padding: 3px 10px;
        border-radius: 6px;
        display: inline-block;
      }
      .market-change.up {
        background: rgba(0, 212, 170, 0.1);
        color: var(--accent);
      }
      .market-change.down {
        background: rgba(255, 71, 87, 0.1);
        color: var(--danger);
      }
      .market-cap {
        color: var(--text-muted);
        font-family: "JetBrains Mono", monospace;
        font-size: 12px;
      }
      .market-sparkline {
        width: 70px;
        height: 28px;
      }
      .market-sparkline svg {
        width: 100%;
        height: 100%;
      }
      .market-action .btn {
        padding: 7px 16px;
        font-size: 12px;
        border-radius: 8px;
      }
      .plans-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
        margin-top: 40px;
      }
      .plan-card {
        padding: 0;
        position: relative;
        overflow: hidden;
      }
      .plan-card.featured {
        border-color: var(--gold);
        box-shadow: 0 0 40px rgba(201, 168, 76, 0.15);
      }
      .plan-card.featured::before {
        content: "MOST POPULAR";
        position: absolute;
        top: 16px;
        right: -32px;
        background: linear-gradient(135deg, var(--gold), var(--gold-light));
        color: var(--primary-dark);
        font-size: 9px;
        font-weight: 700;
        letter-spacing: 1.5px;
        padding: 5px 40px;
        transform: rotate(45deg);
        font-family: "JetBrains Mono", monospace;
        z-index: 2;
      }
      .plan-header {
        padding: 28px 24px 20px;
        border-bottom: 1px solid var(--glass-border);
      }
      .plan-name {
        font-family: "Playfair Display", serif;
        font-size: 20px;
        color: var(--white);
        margin-bottom: 10px;
      }
      .plan-price {
        display: flex;
        align-items: baseline;
        gap: 4px;
      }
      .plan-price .currency {
        font-size: 18px;
        color: var(--accent);
        font-weight: 600;
      }
      .plan-price .amount {
        font-family: "JetBrains Mono", monospace;
        font-size: clamp(30px, 5vw, 42px);
        font-weight: 700;
        color: var(--white);
        line-height: 1;
      }
      .plan-price .period {
        font-size: 13px;
        color: var(--text-muted);
      }
      .plan-body {
        padding: 20px 24px 28px;
      }
      .plan-features {
        list-style: none;
        margin-bottom: 24px;
      }
      .plan-features li {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 8px 0;
        font-size: 13px;
        color: var(--text);
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
      }
      .plan-features li:last-child {
        border-bottom: none;
      }
      .plan-features li i {
        color: var(--accent);
        font-size: 13px;
        width: 18px;
        text-align: center;
        flex-shrink: 0;
      }
      .plan-card .btn {
        width: 100%;
        justify-content: center;
      }
      .steps-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        margin-top: 40px;
        position: relative;
      }
      .steps-grid::before {
        content: "";
        position: absolute;
        top: 28px;
        left: 12.5%;
        right: 12.5%;
        height: 2px;
        background: linear-gradient(
          90deg,
          var(--accent),
          var(--gold),
          var(--accent)
        );
        opacity: 0.2;
      }
      .step-card {
        text-align: center;
        position: relative;
      }
      .step-number {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--accent), #00a885);
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: "JetBrains Mono", monospace;
        font-size: 18px;
        font-weight: 700;
        color: var(--primary-dark);
        margin: 0 auto 16px;
        position: relative;
        z-index: 2;
      }
      .step-card h3 {
        font-family: "Playfair Display", serif;
        font-size: 16px;
        color: var(--white);
        margin-bottom: 6px;
      }
      .step-card p {
        font-size: 13px;
        color: var(--text-muted);
        line-height: 1.6;
      }
      .trading-split {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: center;
        margin-top: 40px;
      }
      .trading-split.reverse {
        direction: rtl;
      }
      .trading-split.reverse > * {
        direction: ltr;
      }
      .trading-visual {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        background: var(--surface);
        border: 1px solid var(--glass-border);
        padding: 24px;
        min-height: 300px;
      }
      .trading-visual-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 20px;
      }
      .trading-visual-title {
        font-family: "JetBrains Mono", monospace;
        font-size: 12px;
        color: var(--text-muted);
        text-transform: uppercase;
        letter-spacing: 1.5px;
      }
      .trading-visual-badge {
        padding: 3px 10px;
        border-radius: 50px;
        font-size: 10px;
        font-weight: 600;
        font-family: "JetBrains Mono", monospace;
      }
      .badge-live {
        background: rgba(0, 212, 170, 0.1);
        color: var(--accent);
      }
      .badge-auto {
        background: rgba(201, 168, 76, 0.1);
        color: var(--gold-light);
      }
      .visual-chart-bars {
        display: flex;
        align-items: flex-end;
        gap: 6px;
        height: 160px;
        padding-top: 16px;
      }
      .v-bar {
        flex: 1;
        border-radius: 3px 3px 0 0;
        min-height: 16px;
      }
      .v-bar.accent {
        background: linear-gradient(
          to top,
          var(--accent),
          rgba(0, 212, 170, 0.3)
        );
      }
      .v-bar.gold {
        background: linear-gradient(
          to top,
          var(--gold),
          rgba(201, 168, 76, 0.3)
        );
      }
      .v-bar.muted {
        background: rgba(255, 255, 255, 0.06);
      }
      .trader-list {
        display: flex;
        flex-direction: column;
        gap: 10px;
      }
      .trader-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 14px;
        border-radius: 10px;
        background: rgba(0, 32, 64, 0.5);
        border: 1px solid rgba(255, 255, 255, 0.04);
        transition: all 0.3s;
      }
      .trader-row:hover {
        border-color: var(--glass-border);
      }
      .trader-info {
        display: flex;
        align-items: center;
        gap: 10px;
        min-width: 0;
      }
      .trader-avatar {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--accent), var(--gold));
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 12px;
        color: var(--primary-dark);
        flex-shrink: 0;
      }
      .trader-name {
        font-weight: 600;
        color: var(--white);
        font-size: 13px;
      }
      .trader-win {
        font-size: 11px;
        color: var(--text-muted);
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
      }
      .trader-profit {
        font-family: "JetBrains Mono", monospace;
        font-weight: 700;
        color: var(--accent);
        font-size: 14px;
        flex-shrink: 0;
      }
      .trading-content h3 {
        font-family: "Playfair Display", serif;
        font-size: clamp(22px, 3vw, 38px);
        color: var(--white);
        margin-bottom: 14px;
        line-height: 1.2;
      }
      .trading-content p {
        color: var(--text-muted);
        line-height: 1.7;
        margin-bottom: 20px;
        font-size: 14px;
      }
      .trading-features {
        list-style: none;
        margin-bottom: 24px;
      }
      .trading-features li {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 7px 0;
        font-size: 14px;
        color: var(--text);
      }
      .trading-features li i {
        color: var(--accent);
        font-size: 13px;
        flex-shrink: 0;
      }
      .staking-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin-top: 40px;
      }
      .staking-card {
        padding: 28px 20px;
        text-align: center;
      }
      .staking-coin {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        margin: 0 auto 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        font-weight: 700;
      }
      .staking-coin.btc {
        background: rgba(247, 147, 26, 0.1);
        color: #f7931a;
        border: 2px solid rgba(247, 147, 26, 0.2);
      }
      .staking-coin.eth {
        background: rgba(98, 126, 234, 0.1);
        color: #627eea;
        border: 2px solid rgba(98, 126, 234, 0.2);
      }
      .staking-coin.sol {
        background: rgba(0, 212, 170, 0.1);
        color: var(--accent);
        border: 2px solid rgba(0, 212, 170, 0.2);
      }
      .staking-coin.bnb {
        background: rgba(243, 186, 47, 0.1);
        color: #f3ba2f;
        border: 2px solid rgba(243, 186, 47, 0.2);
      }
      .staking-coin.ada {
        background: rgba(0, 51, 173, 0.1);
        color: #0033ad;
        border: 2px solid rgba(0, 51, 173, 0.2);
      }
      .staking-coin.dot {
        background: rgba(230, 0, 122, 0.1);
        color: #e6007a;
        border: 2px solid rgba(230, 0, 122, 0.2);
      }
      .staking-name {
        font-family: "Playfair Display", serif;
        font-size: 17px;
        color: var(--white);
        margin-bottom: 4px;
      }
      .staking-ticker {
        font-family: "JetBrains Mono", monospace;
        font-size: 11px;
        color: var(--text-muted);
        margin-bottom: 14px;
      }
      .staking-apy {
        font-family: "JetBrains Mono", monospace;
        font-size: 28px;
        font-weight: 700;
        color: var(--accent);
        margin-bottom: 2px;
      }
      .staking-apy-label {
        font-size: 11px;
        color: var(--text-muted);
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 16px;
      }
      .staking-detail {
        font-size: 12px;
        color: var(--text-muted);
        padding: 7px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.04);
        display: flex;
        justify-content: space-between;
      }
      .staking-detail span:last-child {
        color: var(--white);
        font-weight: 500;
      }
      .staking-card .btn {
        width: 100%;
        justify-content: center;
        margin-top: 16px;
        padding: 11px;
        font-size: 13px;
      }
      .signals-showcase {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        margin-top: 40px;
        align-items: start;
      }
      .signal-feed {
        display: flex;
        flex-direction: column;
        gap: 12px;
      }
      .signal-item {
        padding: 16px;
        display: flex;
        align-items: center;
        gap: 14px;
      }
      .signal-type {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        flex-shrink: 0;
      }
      .signal-type.buy {
        background: rgba(0, 212, 170, 0.1);
        color: var(--accent);
      }
      .signal-type.sell {
        background: rgba(255, 71, 87, 0.1);
        color: var(--danger);
      }
      .signal-type.hold {
        background: rgba(201, 168, 76, 0.1);
        color: var(--gold-light);
      }
      .signal-pair {
        font-weight: 600;
        color: var(--white);
        font-size: 14px;
      }
      .signal-meta {
        font-size: 11px;
        color: var(--text-muted);
        font-family: "JetBrains Mono", monospace;
      }
      .signal-profit {
        margin-left: auto;
        font-family: "JetBrains Mono", monospace;
        font-weight: 700;
        font-size: 14px;
        flex-shrink: 0;
      }
      .signal-profit.green {
        color: var(--accent);
      }
      .signals-info h3 {
        font-family: "Playfair Display", serif;
        font-size: clamp(22px, 3vw, 38px);
        color: var(--white);
        margin-bottom: 14px;
        line-height: 1.2;
      }
      .signals-info p {
        color: var(--text-muted);
        line-height: 1.7;
        margin-bottom: 16px;
        font-size: 14px;
      }
      .signal-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin: 24px 0;
      }
      .signal-stat-card {
        padding: 16px;
        border-radius: 12px;
        background: var(--surface);
        border: 1px solid var(--glass-border);
      }
      .signal-stat-card .num {
        font-family: "JetBrains Mono", monospace;
        font-size: 20px;
        font-weight: 700;
        color: var(--accent);
      }
      .signal-stat-card .label {
        font-size: 12px;
        color: var(--text-muted);
        margin-top: 2px;
      }
      .transfer-section {
        background: linear-gradient(
          135deg,
          var(--surface),
          var(--primary-dark)
        );
        border: 1px solid var(--glass-border);
        border-radius: 20px;
        padding: 40px 30px;
        margin-top: 40px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 36px;
        align-items: center;
      }
      .transfer-demo {
        background: var(--surface-light);
        border: 1px solid var(--glass-border);
        border-radius: 16px;
        padding: 24px;
      }
      .transfer-demo-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
      }
      .transfer-demo-title {
        font-family: "JetBrains Mono", monospace;
        font-size: 12px;
        color: var(--text-muted);
        text-transform: uppercase;
        letter-spacing: 1.5px;
      }
      .transfer-demo-field {
        padding: 14px;
        border-radius: 10px;
        background: rgba(0, 32, 64, 0.5);
        border: 1px solid rgba(255, 255, 255, 0.06);
        margin-bottom: 10px;
      }
      .transfer-demo-field label {
        font-size: 10px;
        color: var(--text-muted);
        text-transform: uppercase;
        letter-spacing: 1px;
        display: block;
        margin-bottom: 4px;
      }
      .transfer-demo-field .value {
        font-family: "JetBrains Mono", monospace;
        font-size: clamp(14px, 2.5vw, 18px);
        color: var(--white);
        font-weight: 600;
        word-break: break-all;
      }
      .transfer-arrow {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 6px 0;
        color: var(--accent);
        font-size: 18px;
      }
      .transfer-fee {
        display: flex;
        justify-content: space-between;
        padding: 10px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        margin-top: 10px;
        font-size: 12px;
      }
      .transfer-fee span:first-child {
        color: var(--text-muted);
      }
      .transfer-fee span:last-child {
        color: var(--accent);
        font-weight: 600;
        font-family: "JetBrains Mono", monospace;
      }
      .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin-top: 40px;
      }
      .testimonial-card {
        padding: 28px 20px;
      }
      .testimonial-stars {
        color: var(--gold);
        font-size: 13px;
        margin-bottom: 14px;
      }
      .testimonial-text {
        font-size: 14px;
        color: var(--text);
        line-height: 1.7;
        margin-bottom: 18px;
        font-style: italic;
      }
      .testimonial-author {
        display: flex;
        align-items: center;
        gap: 10px;
      }
      .testimonial-avatar {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--accent), var(--gold));
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 12px;
        color: var(--primary-dark);
        flex-shrink: 0;
      }
      .testimonial-name {
        font-weight: 600;
        color: var(--white);
        font-size: 13px;
      }
      .testimonial-role {
        font-size: 11px;
        color: var(--text-muted);
      }
      .faq-list {
        max-width: 800px;
        margin: 40px auto 0;
        display: flex;
        flex-direction: column;
        gap: 10px;
      }
      .faq-item {
        border-radius: 12px;
        background: var(--surface);
        border: 1px solid var(--glass-border);
        overflow: hidden;
        transition: border-color 0.3s;
      }
      .faq-item.active {
        border-color: rgba(0, 212, 170, 0.3);
      }
      .faq-question {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 16px 20px;
        cursor: pointer;
        font-weight: 600;
        color: var(--white);
        font-size: 14px;
        transition: color 0.3s;
      }
      .faq-question:hover {
        color: var(--accent);
      }
      .faq-question i {
        color: var(--accent);
        transition: transform 0.3s;
        font-size: 13px;
        flex-shrink: 0;
      }
      .faq-item.active .faq-question i {
        transform: rotate(180deg);
      }
      .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
      }
      .faq-item.active .faq-answer {
        max-height: 300px;
      }
      .faq-answer-inner {
        padding: 0 20px 18px;
        font-size: 13px;
        color: var(--text-muted);
        line-height: 1.7;
      }
      .cta-section {
        text-align: center;
        position: relative;
        overflow: hidden;
      }
      .cta-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
          radial-gradient(
            ellipse 600px 400px at 30% 50%,
            rgba(0, 212, 170, 0.08) 0%,
            transparent 70%
          ),
          radial-gradient(
            ellipse 500px 300px at 70% 50%,
            rgba(201, 168, 76, 0.06) 0%,
            transparent 70%
          );
      }
      .cta-section .container {
        position: relative;
        z-index: 2;
      }
      .cta-section .section-subtitle {
        margin: 0 auto 30px;
      }

      /* ═══════════ RESPONSIVE ═══════════ */
      @media (max-width: 1024px) {
        .hero .container {
          grid-template-columns: 1fr;
        }
        .hero-visual {
          display: none;
        }
        .features-grid {
          grid-template-columns: 1fr 1fr;
        }
        .trading-split,
        .trading-split.reverse {
          grid-template-columns: 1fr;
          direction: ltr;
        }
        .signals-showcase {
          grid-template-columns: 1fr;
        }
        .staking-grid {
          grid-template-columns: 1fr 1fr;
        }
        .transfer-section {
          grid-template-columns: 1fr;
          padding: 30px 24px;
        }
        .testimonials-grid {
          grid-template-columns: 1fr 1fr;
        }
        .steps-grid {
          grid-template-columns: 1fr 1fr;
        }
        .steps-grid::before {
          display: none;
        }
      }
      @media (max-width: 768px) {
        .hero {
          padding-top: 20px;
          padding-bottom: 30px;
          min-height: auto;
        }
        .hero h1 {
          font-size: clamp(26px, 7vw, 36px);
          margin-bottom: 14px;
        }
        .hero p {
          font-size: 14px;
          margin-bottom: 22px;
          line-height: 1.7;
        }
        .hero-tag {
          font-size: 11px;
          padding: 5px 12px;
          margin-bottom: 18px;
        }
        .hero-btns {
          flex-direction: column;
          gap: 10px;
          margin-bottom: 28px;
        }
        .hero-btns .btn {
          width: 100%;
          padding: 14px 24px;
        }
        .hero-stats {
          display: grid;
          grid-template-columns: repeat(3, 1fr);
          gap: 12px;
          padding-top: 22px;
        }
        .hero-stat-item h3 {
          font-size: 18px;
        }
        .hero-stat-item p {
          font-size: 11px;
        }
        .stats-bar {
          padding: 28px 0;
        }
        .stats-grid {
          grid-template-columns: 1fr 1fr;
          gap: 16px;
        }
        .stat-number {
          font-size: 22px;
        }
        .stat-label {
          font-size: 11px;
        }
        .features-grid {
          grid-template-columns: 1fr;
          gap: 14px;
          margin-top: 28px;
        }
        .feature-card {
          padding: 22px 18px;
        }
        .feature-card h3 {
          font-size: 16px;
        }
        .feature-card p {
          font-size: 12px;
        }
        .feature-icon {
          width: 44px;
          height: 44px;
          font-size: 18px;
          margin-bottom: 12px;
        }
        .staking-grid {
          grid-template-columns: 1fr;
          gap: 14px;
        }
        .testimonials-grid {
          grid-template-columns: 1fr;
          gap: 14px;
        }
        .steps-grid {
          grid-template-columns: 1fr 1fr;
          gap: 14px;
        }
        .plans-grid {
          grid-template-columns: 1fr;
          gap: 14px;
        }
        .signal-stats {
          grid-template-columns: 1fr 1fr;
          gap: 8px;
        }
        .signal-stat-card {
          padding: 12px;
        }
        .signal-stat-card .num {
          font-size: 18px;
        }
        .trading-visual {
          padding: 20px;
          min-height: auto;
        }
        .trading-content h3 {
          font-size: 22px;
        }
        .trading-features li {
          font-size: 13px;
          padding: 5px 0;
        }
        .faq-question {
          font-size: 13px;
          padding: 14px 16px;
        }
        .faq-answer-inner {
          padding: 0 16px 14px;
          font-size: 12px;
        }
        .transfer-section {
          padding: 24px 18px;
          gap: 24px;
        }
        .transfer-demo {
          padding: 18px;
        }
        .staking-apy {
          font-size: 24px;
        }
        .plan-header {
          padding: 22px 20px 16px;
        }
        .plan-body {
          padding: 16px 20px 24px;
        }
        .plan-name {
          font-size: 18px;
        }
        .signals-info h3 {
          font-size: 22px;
        }
        .markets-table thead th {
          padding: 10px 14px;
          font-size: 10px;
        }
        .markets-table tbody td {
          padding: 10px 14px;
          font-size: 12px;
        }
      }
      @media (max-width: 480px) {
        .hero {
          padding-top: 16px;
          padding-bottom: 24px;
        }
        .hero h1 {
          font-size: 26px;
        }
        .hero p {
          font-size: 13px;
          margin-bottom: 18px;
        }
        .hero-stats {
          grid-template-columns: repeat(3, 1fr);
          gap: 8px;
        }
        .hero-stat-item h3 {
          font-size: 16px;
        }
        .hero-stat-item p {
          font-size: 10px;
        }
        .stats-grid {
          grid-template-columns: 1fr 1fr;
        }
        .steps-grid {
          grid-template-columns: 1fr;
        }
        .transfer-section {
          padding: 20px 14px;
        }
        .feature-card {
          padding: 20px 16px;
        }
        .staking-card {
          padding: 22px 16px;
        }
        .testimonial-card {
          padding: 22px 16px;
        }
      }