      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family:
          "Inter",
          -apple-system,
          BlinkMacSystemFont,
          "Segoe UI",
          Roboto,
          sans-serif;
      }

      body {
        overflow-x: hidden;
        background: #f8fafc;
      }

      /* NEW LIGHTWEIGHT PRELOADER - TASK 3 */
      .preloader {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #0a1a2f, #1a3f62);
        z-index: 9999;
        display: flex;
        justify-content: center;
        align-items: center;
        transition:
          opacity 0.5s ease,
          visibility 0.5s ease;
        will-change: opacity, visibility;
      }

      .preloader.hidden {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
      }

      .preloader-content {
        text-align: center;
        position: relative;
        width: 90%;
        max-width: 400px;
      }

      .preloader-logo {
        width: clamp(70px, 15vw, 100px);
        height: clamp(70px, 15vw, 100px);
        margin: 0 auto 20px;
        animation: softPulse 2s ease-in-out infinite;
      }

      .preloader-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        filter: brightness(0) invert(1);
      }

      .preloader-ring {
        position: relative;
        width: 80px;
        height: 80px;
        margin: 0 auto;
      }

      .preloader-ring svg {
        width: 100%;
        height: 100%;
        transform: rotate(-90deg);
      }

      .preloader-ring circle {
        fill: none;
        stroke: #ffd700;
        stroke-width: 4;
        stroke-linecap: round;
        stroke-dasharray: 226;
        stroke-dashoffset: 226;
        animation: drawRing 2s ease-in-out infinite;
        filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.5));
      }

      @keyframes drawRing {
        0% {
          stroke-dashoffset: 226;
        }
        50% {
          stroke-dashoffset: 56.5;
        }
        100% {
          stroke-dashoffset: 226;
        }
      }

      .preloader-dots {
        display: flex;
        gap: 8px;
        justify-content: center;
        margin-top: 20px;
      }

      .preloader-dot {
        width: 8px;
        height: 8px;
        background: #ffd700;
        border-radius: 50%;
        animation: dotPulse 1.5s ease-in-out infinite;
        box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
      }

      .preloader-dot:nth-child(2) {
        animation-delay: 0.2s;
        background: #00ffff;
      }
      .preloader-dot:nth-child(3) {
        animation-delay: 0.4s;
        background: #ffd700;
      }
      .preloader-dot:nth-child(4) {
        animation-delay: 0.6s;
        background: #00ffff;
      }
      .preloader-dot:nth-child(5) {
        animation-delay: 0.8s;
        background: #ffd700;
      }

      @keyframes dotPulse {
        0%,
        100% {
          transform: scale(1);
          opacity: 0.5;
        }
        50% {
          transform: scale(1.5);
          opacity: 1;
        }
      }

      @keyframes softPulse {
        0%,
        100% {
          transform: scale(1);
          opacity: 1;
        }
        50% {
          transform: scale(1.05);
          opacity: 0.9;
        }
      }

      .preloader-text {
        color: #fff;
        font-size: clamp(12px, 3vw, 14px);
        letter-spacing: 2px;
        margin-top: 15px;
        text-transform: uppercase;
        background: linear-gradient(90deg, #ffd700, #00ffff);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: textGlow 2s ease-in-out infinite;
      }

      @keyframes textGlow {
        0%,
        100% {
          opacity: 0.8;
        }
        50% {
          opacity: 1;
          text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
        }
      }

      /* ORIGINAL TOP BAR STYLES PRESERVED - ENHANCED */
      .top-bar {
        background: #0f2b46;
        color: #fff;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        padding: clamp(8px, 2vh, 10px) 5%;
        align-items: center;
        font-size: clamp(12px, 3.5vw, 14px);
        position: relative;
        overflow: hidden;
        z-index: 1001;
        gap: clamp(8px, 2vw, 15px);
      }

      .top-bar::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(255, 255, 255, 0.1),
          transparent
        );
        animation: shimmer 8s infinite;
        pointer-events: none;
      }

      @keyframes shimmer {
        0% {
          left: -100%;
        }
        20% {
          left: 200%;
        }
        100% {
          left: 200%;
        }
      }

      .top-bar i {
        margin-right: 5px;
        color: #ffd700;
      }

      .top-bar .fa-phone {
        animation: softPulse 2s infinite;
      }

      @keyframes softPulse {
        0%,
        100% {
          opacity: 1;
          transform: scale(1);
        }
        50% {
          opacity: 0.8;
          transform: scale(1.05);
        }
      }

      .top-bar select {
        padding: clamp(6px, 1.5vh, 8px) clamp(15px, 4vw, 20px);
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: #fff;
        border-radius: 30px;
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: clamp(12px, 3.5vw, 14px);
        backdrop-filter: blur(5px);
        min-width: clamp(120px, 30vw, 140px);
        appearance: none;
        background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffd700' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-position: right 10px center;
        background-size: 16px;
      }

      .top-bar select:hover {
        background: rgba(255, 215, 0, 0.15);
        border-color: #ffd700;
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
        transform: translateY(-2px);
      }

      .top-bar select:focus {
        outline: none;
        border-color: #ffd700;
        box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.3);
      }

      .top-bar select option {
        background: #0f2b46;
        color: #fff;
      }

      /* ORIGINAL NAVBAR STYLES - pattern changed for clarity */
      .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: clamp(7px, 2.3vh, 12px) 5%;
        background: #ffffff;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        position: relative;
      }

      .navbar.scrolled {
        background: rgba(10, 25, 45, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        border-bottom: 1px solid rgba(255, 215, 0, 0.2);
      }

      .navbar.scrolled nav a {
        color: #ffffff;
      }

      .navbar.scrolled .logo img {
        filter: brightness(0) invert(1);
        transition: filter 0.3s ease;
      }

      .navbar.sticky {
        position: fixed;
        top: 0;
        width: 100%;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
      }

      .navbar nav {
        display: flex;
        gap: clamp(15px, 3vw, 30px);
      }

      .navbar nav a {
        text-decoration: none;
        color: #1e293b;
        font-weight: 500;
        font-size: clamp(12px, 3vw, 14px);
        transition: 0.3s;
        position: relative;
      }

      .navbar nav a:after {
        content: "";
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: #ffd700;
        transition: 0.3s;
      }

      .navbar.scrolled nav a:after {
        background: #ffd700;
      }

      .navbar nav a:hover:after,
      .navbar nav a.active:after {
        width: 100%;
      }

      .navbar nav a.active {
        color: #0f2b46;
        font-weight: 600;
      }

      .navbar.scrolled nav a.active {
        color: #ffd700;
      }

      .logo img {
        height: clamp(30px, 10vw, 60px);
        transition: all 0.3s ease;
      }

      .menu-toggle {
        display: none;
        font-size: clamp(22px, 6vw, 28px);
        cursor: pointer;
        color: #0f2b46;
        z-index: 1002;
        transition: transform 0.3s ease;
      }

      .navbar.scrolled .menu-toggle {
        color: #ffd700;
      }

      .menu-toggle:hover {
        transform: scale(1.1);
      }

      .navbar nav a.cta-link {
        background: linear-gradient(145deg, #ffd700, #ffb800);
        color: #0f2b46;
        padding: 8px 20px;
        border-radius: 50px;
        font-weight: 700;
        border: 2px solid transparent;
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
      }

      .navbar nav a.cta-link::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(255, 255, 255, 0.4),
          transparent
        );
        transition: left 0.6s;
      }

      .navbar nav a.cta-link:hover::before {
        left: 100%;
      }

      .navbar nav a.cta-link:hover {
        background: linear-gradient(145deg, #ffb800, #ffd700);
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(255, 215, 0, 0.5);
        border-color: #00ffff;
      }

      .navbar nav a.cta-link:after {
        display: none;
      }

      .navbar nav a.cta-link i {
        margin-right: 5px;
        transition: transform 0.3s;
      }

      .navbar nav a.cta-link:hover i {
        transform: rotate(90deg);
      }

      .navbar.scrolled nav a.cta-link {
        background: linear-gradient(145deg, #ffd700, #ffaa00);
        color: #0a1a2f;
        box-shadow: 0 4px 15px rgba(0, 255, 255, 0.3);
      }

      /* FIXED MOBILE MENU - SLIDES DOWN FROM TOP, NO OVERLAY, PUSHES CONTENT */
      @media (max-width: 992px) {
        .navbar {
          flex-wrap: wrap;
        }

        .navbar nav {
          position: absolute;
          top: 100%;
          left: 0;
          width: 100%;
          background: #0a1a2f;
          flex-direction: column;
          padding: 0 20px;
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
          z-index: 998;
          transition:
            max-height 0.4s ease,
            padding 0.3s ease;
          max-height: 0;
          overflow: hidden;
          gap: 0;
          display: flex !important;
          pointer-events: auto;
          border-bottom-left-radius: 12px;
          border-bottom-right-radius: 12px;
        }

        .navbar nav.active {
          max-height: 550px;
          padding: 15px 20px 25px;
          border-top: 1px solid rgba(255, 215, 0, 0.3);
        }

        .navbar nav a {
          color: #ffffff;
          font-size: 16px;
          font-weight: 500;
          padding: 14px 15px;
          width: 100%;
          text-align: left;
          border-radius: 8px;
          opacity: 1;
          transform: none;
          transition:
            background 0.2s,
            color 0.2s,
            transform 0.2s;
          background: transparent;
          border: 1px solid transparent;
          letter-spacing: 0.5px;
          pointer-events: auto;
          margin: 2px 0;
        }

        .navbar nav a:hover {
          background: #ffd700;
          color: #0a1a2f;
          border-color: #ffd700;
          transform: translateX(5px);
        }

        .navbar nav a.active {
          background: #ffd700;
          color: #f0f4f8;
          font-weight: 600;
          border-color: #ffd700;
        }

        .navbar nav a:after {
          display: none;
        }

        .menu-toggle {
          display: block;
        }

        .menu-toggle.active i {
          transform: rotate(90deg);
        }

        .menu-toggle i {
          transition: transform 0.3s ease;
        }

        .menu-toggle.active i::before {
          content: "\f00d";
        }

        .nav-overlay {
          display: none;
        }

        body.menu-open {
          overflow: hidden;
        }
      }

      /* LIVE TRADE SECTION - FIXED BACKGROUND */
      .live-trade-section {
        width: 100%;
        background: #09090f;
        border-bottom: 1px solid #e2e8f0;
        position: relative;
        z-index: 2;
        padding: 10px 0;
        background-image: url("https://images.unsplash.com/photo-1639322537228-f710d846310a?q=80&w=1600");
        background-attachment: fixed;
        background-size: cover;
        background-position: center;
      }

      .live-trade-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(9, 9, 15, 0.85);
        z-index: 0;
      }

      .live-trade-section .tradingview-widget-container {
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.8);
        border-radius: 12px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
        overflow: hidden;
        position: relative;
        z-index: 1;
      }

      /* HERO SECTION - OPTIMIZED */
      .hero {
        position: relative;
        height: 90vh;
        min-height: 600px;
        background: url("https://images.unsplash.com/photo-1642543348745-0b05ef6b4b35?q=80&w=1600")
          no-repeat center/cover;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        overflow: hidden;
      }

      @media (max-width: 768px) {
        .hero {
          min-height: 500px;
        }
      }
      @media (max-width: 480px) {
        .hero {
          min-height: 450px;
        }
      }

      .hero-slides-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
      }

      .hero-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        opacity: 0;
        transition: opacity 1.5s ease;
        z-index: 0;
      }

      .hero-slide.active {
        opacity: 1;
        z-index: 1;
      }

      .overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(
          135deg,
          rgba(5, 25, 45, 0.85) 0%,
          rgba(10, 40, 65, 0.8) 100%
        );
        z-index: 2;
      }

      .hero-particles {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 3;
        pointer-events: none;
        will-change: transform;
        contain: strict;
      }

      .particle {
        position: absolute;
        pointer-events: none;
        filter: drop-shadow(0 0 10px currentColor);
        will-change: transform, opacity;
      }

      .particle-glow-dot {
        position: absolute;
        width: 8px;
        height: 8px;
        background: #00ffff;
        border-radius: 50%;
        box-shadow:
          0 0 20px #00ffff,
          0 0 40px #00ffff;
        opacity: 0.8;
        animation: floatGlowDot 15s infinite ease-in-out;
      }

      .particle-chart-line {
        position: absolute;
        width: 80px;
        height: 3px;
        background: linear-gradient(
          90deg,
          transparent,
          #4cff00,
          #00ff9d,
          transparent
        );
        border-radius: 2px;
        box-shadow: 0 0 20px #00ff9d;
        opacity: 0.7;
        transform-origin: left center;
        animation: floatChartLine 18s infinite ease-in-out;
      }

      .particle-candle {
        position: absolute;
        width: 6px;
        height: 30px;
        background: linear-gradient(180deg, #ffd700, #ffaa00);
        border-radius: 2px;
        box-shadow: 0 0 25px #ffd700;
        opacity: 0.8;
        animation: floatCandle 20s infinite ease-in-out;
      }

      .particle-candle::before {
        content: "";
        position: absolute;
        top: -8px;
        left: -1px;
        width: 8px;
        height: 8px;
        background: #ffaa00;
        border-radius: 1px;
        box-shadow: 0 0 15px #ffaa00;
      }

      .particle-indicator {
        position: absolute;
        font-family: monospace;
        font-size: 12px;
        font-weight: bold;
        color: #4cff00;
        text-shadow:
          0 0 15px #4cff00,
          0 0 30px #00ffff;
        white-space: nowrap;
        opacity: 0.9;
        animation: floatIndicator 12s infinite ease-in-out;
      }

      .particle-cyan-dot {
        position: absolute;
        width: 12px;
        height: 12px;
        background: #00ffff;
        border-radius: 50%;
        box-shadow:
          0 0 30px #00ffff,
          0 0 60px #00ffff;
        opacity: 0.6;
        animation: pulseCyan 3s infinite ease-in-out;
      }

      .particle-green-line {
        position: absolute;
        width: 120px;
        height: 2px;
        background: linear-gradient(
          90deg,
          transparent,
          #4cff00,
          #00ff9d,
          #4cff00,
          transparent
        );
        border-radius: 1px;
        box-shadow: 0 0 20px #4cff00;
        opacity: 0.8;
        transform: rotate(5deg);
        animation: driftLine 25s infinite linear;
      }

      @keyframes floatGlowDot {
        0%,
        100% {
          transform: translate(0, 0) scale(1);
          opacity: 0.8;
        }
        25% {
          transform: translate(30px, -40px) scale(1.3);
          opacity: 1;
        }
        50% {
          transform: translate(-20px, -80px) scale(1.1);
          opacity: 0.9;
        }
        75% {
          transform: translate(-40px, -30px) scale(1.4);
          opacity: 1;
        }
      }

      @keyframes floatChartLine {
        0%,
        100% {
          transform: translate(0, 0) rotate(0deg) scaleX(1);
          opacity: 0.7;
        }
        33% {
          transform: translate(50px, -30px) rotate(5deg) scaleX(1.2);
          opacity: 0.9;
        }
        66% {
          transform: translate(-30px, -60px) rotate(-3deg) scaleX(1.1);
          opacity: 0.8;
        }
      }

      @keyframes floatCandle {
        0%,
        100% {
          transform: translate(0, 0) scaleY(1);
          opacity: 0.8;
        }
        25% {
          transform: translate(40px, -50px) scaleY(1.4);
          opacity: 1;
        }
        50% {
          transform: translate(-40px, -100px) scaleY(0.8);
          opacity: 0.9;
        }
        75% {
          transform: translate(20px, -70px) scaleY(1.2);
          opacity: 1;
        }
      }

      @keyframes floatIndicator {
        0%,
        100% {
          transform: translate(0, 0) rotate(0deg);
          opacity: 0.9;
        }
        33% {
          transform: translate(60px, -40px) rotate(2deg);
          opacity: 1;
        }
        66% {
          transform: translate(-50px, -80px) rotate(-2deg);
          opacity: 0.8;
        }
      }

      @keyframes pulseCyan {
        0%,
        100% {
          transform: scale(1);
          opacity: 0.6;
          box-shadow: 0 0 30px #00ffff;
        }
        50% {
          transform: scale(1.5);
          opacity: 1;
          box-shadow:
            0 0 60px #00ffff,
            0 0 90px #00ffff;
        }
      }

      @keyframes driftLine {
        0% {
          transform: translateX(-100px) rotate(5deg);
          opacity: 0;
        }
        10% {
          opacity: 0.8;
        }
        90% {
          opacity: 0.8;
        }
        100% {
          transform: translateX(calc(100vw + 100px)) rotate(5deg);
          opacity: 0;
        }
      }

      .hero-content {
        position: relative;
        color: #fff;
        padding: 20px;
        max-width: min(900px, 90%);
        z-index: 4; /* Higher than particles */
        pointer-events: auto; /* Ensure buttons are clickable */
      }

      .hero h1 {
        font-size: clamp(32px, 8vw, 56px);
        line-height: 1.2;
        margin-bottom: clamp(20px, 5vh, 30px);
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: -1px;
      }

      .hero .line {
        display: block;
        opacity: 0;
        transform: translateY(40px);
        animation: slideUp 1s forwards;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
      }

      .hero .line:nth-child(1) {
        animation-delay: 0.3s;
      }
      .hero .line:nth-child(2) {
        animation-delay: 0.8s;
      }

      @keyframes slideUp {
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      .hero-badges {
        display: flex;
        flex-wrap: wrap;
        gap: clamp(15px, 4vw, 30px);
        justify-content: center;
        margin-bottom: clamp(20px, 5vh, 30px);
        opacity: 0;
        animation: fadeIn 1s forwards 1.2s;
      }

      .hero-badges span {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: clamp(14px, 3.5vw, 16px);
      }

      .hero-badges i {
        color: #ffd700;
        font-size: clamp(16px, 4vw, 20px);
      }

      .cta-btn {
        padding: clamp(12px, 3vh, 18px) clamp(30px, 8vw, 50px);
        border: none;
        background: #ffd700;
        color: #0f2b46;
        text-decoration: none;
        border-radius: 50px;
        font-weight: bold;
        font-size: clamp(16px, 4vw, 18px);
        transition: 0.3s;
        opacity: 0;
        animation: fadeIn 1s forwards 1.4s;
        display: inline-block;
        box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
        position: relative;
        overflow: hidden;
        z-index: 1;
      }

      .cta-btn::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(255, 255, 255, 0.3),
          transparent
        );
        transition: left 0.5s ease;
        z-index: -1;
      }

      .cta-btn:hover::before {
        left: 100%;
      }

      .cta-btn:hover {
        background: #fff;
        transform: translateY(-2px) scale(1.03);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
      }

      @keyframes fadeIn {
        to {
          opacity: 1;
        }
      }

      /* PERFORMANCE STATS - FIXED BACKGROUND */
      .performance-stats {
        padding: clamp(50px, 10vh, 80px) 5%;
        color: #fff;
        position: relative;
        z-index: 2;
        background-image: url("https://images.unsplash.com/photo-1639322537228-f710d846310a?q=80&w=1600");
        background-attachment: fixed;
        background-size: cover;
        background-position: center;
      }

      .performance-stats::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(
          135deg,
          rgba(10, 26, 47, 0.95),
          rgba(26, 47, 69, 0.95)
        );
        z-index: 0;
      }

      .stats-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: clamp(15px, 3vw, 30px);
        position: relative;
        z-index: 1;
      }

      @media (max-width: 992px) {
        .stats-container {
          grid-template-columns: repeat(2, 1fr);
        }
      }
      @media (max-width: 480px) {
        .stats-container {
          grid-template-columns: 1fr;
        }
      }

      .stat-item {
        text-align: center;
        padding: clamp(20px, 5vh, 30px) clamp(15px, 3vw, 20px);
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        transition: 0.3s;
        border: 1px solid rgba(255, 255, 255, 0.1);
      }

      .stat-item:hover {
        transform: translateY(-10px);
        background: rgba(255, 215, 0, 0.1);
        border-color: rgba(255, 215, 0, 0.3);
      }

      .stat-number {
        font-size: clamp(32px, 8vw, 52px);
        font-weight: 800;
        margin-bottom: 10px;
        color: #ffd700;
        line-height: 1.2;
      }

      .stat-label {
        font-size: clamp(14px, 3.5vw, 16px);
        color: rgba(255, 255, 255, 0.9);
        text-transform: uppercase;
        letter-spacing: 1px;
      }

      /* PLATFORM FEATURES */
      .platform-features {
        padding: clamp(60px, 12vh, 100px) 5%;
        background: #ffffff;
      }

      .section-header {
        text-align: center;
        max-width: min(700px, 90%);
        margin: 0 auto clamp(40px, 8vh, 60px);
      }

      .section-subtitle {
        color: #ffd700;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-size: clamp(12px, 3vw, 14px);
        margin-bottom: 15px;
      }

      .section-header h2 {
        font-size: clamp(28px, 7vw, 42px);
        color: #0f2b46;
        margin-bottom: 20px;
        font-weight: 700;
      }

      .section-header p {
        color: #64748b;
        font-size: clamp(16px, 4vw, 18px);
        line-height: 1.6;
      }

      .features-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: clamp(20px, 4vw, 30px);
        max-width: 1200px;
        margin: 0 auto;
      }

      @media (max-width: 1200px) {
        .features-grid {
          grid-template-columns: repeat(2, 1fr);
        }
      }
      @media (max-width: 768px) {
        .features-grid {
          grid-template-columns: 1fr;
        }
      }

      .feature-card {
        background: #f8fafc;
        padding: clamp(30px, 6vh, 40px) clamp(20px, 4vw, 30px);
        border-radius: 20px;
        text-align: center;
        transition: 0.3s;
        border: 1px solid #e2e8f0;
      }

      .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        border-color: #ffd700;
      }

      .feature-icon {
        width: clamp(60px, 15vw, 80px);
        height: clamp(60px, 15vw, 80px);
        background: linear-gradient(135deg, #0f2b46 0%, #1a2f45 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 25px;
      }

      .feature-icon i {
        font-size: clamp(24px, 6vw, 32px);
        color: #ffd700;
      }

      .feature-card h3 {
        font-size: clamp(18px, 4.5vw, 22px);
        color: #0f2b46;
        margin-bottom: 15px;
      }

      .feature-card p {
        color: #64748b;
        line-height: 1.6;
        font-size: clamp(14px, 3.5vw, 16px);
      }

      /* HOW IT WORKS */
      .how-it-works {
        padding: clamp(60px, 12vh, 100px) 5%;
        background: linear-gradient(135deg, #f8fafc 0%, #eef2f6 100%);
      }

      .steps-container {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: clamp(20px, 4vw, 30px);
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
      }

      @media (max-width: 992px) {
        .steps-container {
          grid-template-columns: repeat(2, 1fr);
        }
      }
      @media (max-width: 768px) {
        .steps-container {
          grid-template-columns: 1fr;
        }
      }

      .steps-container:before {
        content: "";
        position: absolute;
        top: 50px;
        left: 15%;
        width: 70%;
        height: 2px;
        background: linear-gradient(90deg, transparent, #ffd700, transparent);
        z-index: 1;
      }

      @media (max-width: 992px) {
        .steps-container:before {
          display: none;
        }
      }

      .step-item {
        text-align: center;
        position: relative;
        z-index: 2;
      }

      .step-number {
        width: clamp(50px, 12vw, 60px);
        height: clamp(50px, 12vw, 60px);
        background: #0f2b46;
        border: 4px solid #ffd700;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 25px;
        font-size: clamp(20px, 5vw, 24px);
        font-weight: 700;
        color: #ffd700;
        background: #ffffff;
      }

      .step-item h3 {
        font-size: clamp(18px, 4.5vw, 22px);
        color: #0f2b46;
        margin-bottom: 10px;
      }

      .step-item p {
        color: #64748b;
        line-height: 1.6;
        font-size: clamp(14px, 3.5vw, 16px);
      }

      /* TRADING INSTRUMENTS */
      .trading-instruments {
        padding: clamp(60px, 12vh, 100px) 5%;
        background: #ffffff;
      }

      .instruments-grid {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 20px;
        max-width: 1200px;
        margin: 0 auto;
      }

      @media (max-width: 1200px) {
        .instruments-grid {
          grid-template-columns: repeat(3, 1fr);
        }
      }
      @media (max-width: 768px) {
        .instruments-grid {
          grid-template-columns: repeat(2, 1fr);
        }
      }
      @media (max-width: 480px) {
        .instruments-grid {
          grid-template-columns: 1fr;
        }
      }

      .instrument-card {
        background: #f8fafc;
        padding: clamp(20px, 5vh, 30px) clamp(15px, 3vw, 20px);
        border-radius: 15px;
        text-align: center;
        transition: 0.3s;
        border: 1px solid #e2e8f0;
      }

      .instrument-card:hover {
        background: #0f2b46;
        transform: translateY(-5px);
      }

      .instrument-card:hover i,
      .instrument-card:hover h4 {
        color: #ffd700;
      }

      .instrument-card i {
        font-size: clamp(30px, 8vw, 40px);
        color: #0f2b46;
        margin-bottom: 15px;
        transition: 0.3s;
      }

      .instrument-card h4 {
        font-size: clamp(14px, 3.5vw, 16px);
        color: #1e293b;
        transition: 0.3s;
      }

      /* ========== INVESTMENT PACKAGES SECTION (REPLACED ACCOUNT TYPES) ========== */
      .investment-packages-section {
        padding: clamp(60px, 12vh, 100px) 5%;
        background: linear-gradient(135deg, #0f2b46 0%, #1a2f45 100%);
      }

      .investment-packages-section .section-header h2,
      .investment-packages-section .section-header p {
        color: #ffffff;
      }

      .investment-packages-section .section-header p {
        color: rgba(255, 255, 255, 0.8);
      }

      /* Packages Grid */
      .packages-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        margin-bottom: 30px;
        max-width: 1200px;
        margin: 0 auto;
      }

      /* Package Card */
      .package-card {
        background: rgba(15, 25, 35, 0.5);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 215, 0, 0.1);
        border-radius: 20px;
        padding: 25px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
      }

      .package-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.05), transparent);
        transform: translateX(-100%);
        transition: transform 0.6s;
      }

      .package-card:hover::before {
        transform: translateX(100%);
      }

      .package-card:hover {
        transform: translateY(-5px);
        border-color: #ffd700;
        box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
      }

      .package-card.selected {
        border: 2px solid #ffd700;
        background: rgba(255, 215, 0, 0.05);
      }

      /* Package Header */
      .package-header {
        text-align: center;
        margin-bottom: 20px;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(255, 215, 0, 0.1);
      }

      .package-name {
        font-size: 1.8rem;
        font-weight: 700;
        margin-bottom: 10px;
        background: linear-gradient(135deg, #fff, #ffd700);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
      }

      .package-badge {
        display: inline-block;
        background: rgba(255, 215, 0, 0.2);
        color: #ffd700;
        padding: 5px 15px;
        border-radius: 30px;
        font-size: 0.9rem;
        font-weight: 600;
      }

      /* Package Details */
      .package-details {
        margin-bottom: 20px;
      }

      .detail-item {
        display: flex;
        justify-content: space-between;
        margin-bottom: 12px;
        font-size: 0.95rem;
      }

      .detail-label {
        color: rgba(255, 255, 255, 0.6);
      }

      .detail-value {
        font-weight: 600;
        color: #ffd700;
      }

      .detail-value.btc {
        color: #f7931a;
      }

      .detail-value.interest {
        color: #4caf50;
      }

      /* Slider Container */
      .slider-container {
        margin: 20px 0;
      }

      .slider-label {
        display: flex;
        justify-content: space-between;
        margin-bottom: 10px;
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.9rem;
      }

      .slider-value {
        color: #ffd700;
        font-weight: 600;
      }

      .investment-slider {
        width: 100%;
        height: 6px;
        -webkit-appearance: none;
        background: linear-gradient(90deg, #ffd700, #ffaa00);
        border-radius: 3px;
        outline: none;
      }

      .investment-slider::-webkit-slider-thumb {
        -webkit-appearance: none;
        width: 20px;
        height: 20px;
        background: #ffd700;
        border-radius: 50%;
        cursor: pointer;
        box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
        transition: 0.2s;
      }

      .investment-slider::-webkit-slider-thumb:hover {
        transform: scale(1.2);
      }

      .investment-slider::-moz-range-thumb {
        width: 20px;
        height: 20px;
        background: #ffd700;
        border-radius: 50%;
        cursor: pointer;
        box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
        transition: 0.2s;
      }

      /* ROI Display */
      .roi-container {
        background: rgba(255, 215, 0, 0.05);
        border-radius: 15px;
        padding: 15px;
        margin: 15px 0;
      }

      .roi-item {
        display: flex;
        justify-content: space-between;
        align-items: baseline;
        margin-bottom: 10px;
      }

      .roi-label {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.9rem;
      }

      .roi-value {
        font-size: 1.2rem;
        font-weight: 700;
      }

      .roi-value.investment {
        color: #ffd700;
      }

      .roi-value.weekly {
        color: #4caf50;
      }

      .roi-value.monthly {
        color: #2196f3;
      }

      .roi-divider {
        height: 1px;
        background: rgba(255, 215, 0, 0.2);
        margin: 10px 0;
      }

      /* Choose Plan Button */
      .choose-plan-btn {
        width: 100%;
        background: linear-gradient(135deg, #ffd700, #ffaa00);
        border: none;
        color: #0a1a2f;
        padding: 15px;
        border-radius: 12px;
        font-weight: 700;
        font-size: 1rem;
        cursor: pointer;
        transition: 0.3s;
        margin-top: auto;
      }

      .choose-plan-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
      }

      /* Responsive for packages grid */
      @media (max-width: 1200px) {
        .packages-grid {
          grid-template-columns: repeat(2, 1fr);
        }
      }

      @media (max-width: 768px) {
        .packages-grid {
          grid-template-columns: 1fr;
        }
        
        .package-card {
          max-width: 450px;
          margin: 0 auto;
        }
      }

      @media (max-width: 480px) {
        .package-name {
          font-size: 1.5rem;
        }

        .roi-value {
          font-size: 1rem;
        }
      }

      /* SECURITY SECTION */
      .security-section {
        padding: clamp(50px, 10vh, 80px) 5%;
        background: #ffffff;
      }

      .security-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: clamp(20px, 4vw, 30px);
        max-width: 1200px;
        margin: 0 auto;
      }

      @media (max-width: 992px) {
        .security-grid {
          grid-template-columns: repeat(2, 1fr);
        }
      }
      @media (max-width: 768px) {
        .security-grid {
          grid-template-columns: 1fr;
        }
      }

      .security-item {
        text-align: center;
        padding: clamp(30px, 6vh, 40px) clamp(20px, 4vw, 30px);
      }

      .security-item i {
        font-size: clamp(40px, 10vw, 48px);
        color: #ffd700;
        margin-bottom: 20px;
      }

      .security-item h3 {
        font-size: clamp(18px, 4.5vw, 22px);
        color: #0f2b46;
        margin-bottom: 15px;
      }

      .security-item p {
        color: #64748b;
        line-height: 1.6;
        font-size: clamp(14px, 3.5vw, 16px);
      }

      /* TESTIMONIALS - FIXED BACKGROUND */
      .testimonials {
        padding: clamp(60px, 12vh, 100px) 5%;
        position: relative;
        overflow: hidden;
        background-image: url("https://images.unsplash.com/photo-1639322537228-f710d846310a?q=80&w=1600");
        background-attachment: fixed;
        background-size: cover;
        background-position: center;
      }

      .testimonials::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(248, 250, 252, 0.95);
        z-index: 0;
      }

      .testimonials .section-header {
        position: relative;
        z-index: 1;
      }

      .testimonials-marquee {
        width: 100%;
        overflow: hidden;
        position: relative;
        padding: 20px 0;
        z-index: 1;
      }

      .testimonials-marquee::before,
      .testimonials-marquee::after {
        content: "";
        position: absolute;
        top: 0;
        width: 150px;
        height: 100%;
        z-index: 2;
        pointer-events: none;
      }

      .testimonials-marquee::before {
        left: 0;
        background: linear-gradient(90deg, #f8fafc, transparent);
      }

      .testimonials-marquee::after {
        right: 0;
        background: linear-gradient(-90deg, #f8fafc, transparent);
      }

      @media (max-width: 768px) {
        .testimonials-marquee::before,
        .testimonials-marquee::after {
          width: 50px;
        }
      }

      .marquee-track {
        display: flex;
        gap: 30px;
        animation: marqueeScroll 40s linear infinite;
        width: fit-content;
      }

      .testimonials:hover .marquee-track {
        animation-play-state: paused;
      }

      @keyframes marqueeScroll {
        0% {
          transform: translateX(0);
        }
        100% {
          transform: translateX(calc(-330px * 6 - 180px));
        }
      }

      .testimonial-card {
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: clamp(30px, 6vh, 40px) clamp(20px, 4vw, 30px);
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.8);
        transition: all 0.3s ease;
        position: relative;
        min-width: 300px;
        max-width: 300px;
        border: 1px solid rgba(255, 215, 0, 0.1);
      }

      @media (max-width: 480px) {
        .testimonial-card {
          min-width: 260px;
          max-width: 260px;
        }
      }

      .testimonial-card:hover {
        transform: translateY(-5px) scale(1.02);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        border-color: rgba(255, 215, 0, 0.3);
        background: rgba(255, 255, 255, 0.95);
      }

      .testimonial-card::before {
        content: '"';
        position: absolute;
        top: 20px;
        right: 30px;
        font-size: 80px;
        font-family: serif;
        color: rgba(255, 215, 0, 0.2);
        line-height: 1;
        z-index: 0;
      }

      .testimonial-rating {
        color: #ffd700;
        font-size: 14px;
        margin-bottom: 20px;
        position: relative;
        z-index: 1;
      }

      .testimonial-rating i {
        transition: transform 0.3s ease;
      }

      .testimonial-card:hover .testimonial-rating i {
        animation: starPulse 0.5s ease;
      }

      @keyframes starPulse {
        0%,
        100% {
          transform: scale(1);
        }
        50% {
          transform: scale(1.2);
        }
      }

      .testimonial-text {
        font-size: clamp(14px, 3.5vw, 16px);
        line-height: 1.8;
        color: #334155;
        margin-bottom: 25px;
        font-style: italic;
        position: relative;
        z-index: 1;
      }

      .testimonial-author {
        display: flex;
        align-items: center;
        gap: 15px;
        position: relative;
        z-index: 1;
      }

      .author-avatar {
        width: clamp(40px, 10vw, 50px);
        height: clamp(40px, 10vw, 50px);
        background: #0f2b46;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffd700;
        font-weight: 600;
        font-size: clamp(16px, 4vw, 20px);
        transition: all 0.3s ease;
      }

      .testimonial-card:hover .author-avatar {
        transform: rotate(360deg);
      }

      .author-info h4 {
        font-size: clamp(14px, 3.5vw, 16px);
        color: #0f2b46;
        margin-bottom: 5px;
      }

      .author-info p {
        font-size: clamp(12px, 3vw, 14px);
        color: #64748b;
      }

      /* FUNDING METHODS */
      .funding-methods {
        padding: clamp(50px, 10vh, 80px) 5%;
        background: #ffffff;
      }

      .methods-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: clamp(20px, 5vw, 40px);
        max-width: 1000px;
        margin: 40px auto 0;
      }

      .method-item {
        text-align: center;
        padding: 20px;
        background: #f8fafc;
        border-radius: 15px;
        min-width: 100px;
        transition: transform 0.3s ease;
      }

      .method-item:hover {
        transform: translateY(-5px);
      }

      .method-item i {
        font-size: clamp(30px, 8vw, 40px);
        color: #0f2b46;
        margin-bottom: 10px;
      }

      .method-item span {
        display: block;
        color: #475569;
        font-weight: 500;
        font-size: clamp(12px, 3vw, 14px);
      }

      /* MOBILE APP */
      .mobile-app {
        padding: clamp(60px, 12vh, 100px) 5%;
        background: linear-gradient(135deg, #0f2b46 0%, #1a2f45 100%);
        color: #ffffff;
      }

      .app-content {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: clamp(30px, 8vw, 60px);
        align-items: center;
      }

      @media (max-width: 992px) {
        .app-content {
          grid-template-columns: 1fr;
          text-align: center;
        }
      }

      .app-text h2 {
        font-size: clamp(28px, 7vw, 42px);
        margin-bottom: 20px;
      }

      .app-text p {
        font-size: clamp(16px, 4vw, 18px);
        margin-bottom: 40px;
        color: rgba(255, 255, 255, 0.8);
      }

      .app-badges {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
      }

      @media (max-width: 992px) {
        .app-badges {
          justify-content: center;
        }
      }
      @media (max-width: 480px) {
        .app-badges {
          flex-direction: column;
          align-items: center;
        }
      }

      .app-badge {
        display: flex;
        align-items: center;
        gap: 10px;
        background: rgba(255, 255, 255, 0.1);
        padding: clamp(10px, 2.5vh, 12px) clamp(15px, 4vw, 25px);
        border-radius: 50px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
      }

      .app-badge::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(255, 255, 255, 0.2),
          transparent
        );
        transition: left 0.5s ease;
      }

      .app-badge:hover::before {
        left: 100%;
      }

      .app-badge:hover {
        background: rgba(255, 215, 0, 0.2);
        border-color: #ffd700;
        transform: scale(1.05);
      }

      .app-badge i {
        font-size: clamp(20px, 5vw, 24px);
        color: #ffd700;
      }

      .app-badge span {
        font-weight: 600;
        font-size: clamp(14px, 3.5vw, 16px);
      }

      .app-image {
        text-align: center;
      }

      .app-image i {
        font-size: clamp(120px, 30vw, 200px);
        color: #ffd700;
        opacity: 0.8;
      }

      /* PARTNERSHIP SECTION */
      .partnership {
        padding: clamp(50px, 10vh, 80px) 5%;
        background: #ffffff;
        text-align: center;
      }

      .partnership h2 {
        font-size: clamp(28px, 7vw, 36px);
        color: #0f2b46;
        margin-bottom: 20px;
      }

      .partnership p {
        max-width: min(700px, 90%);
        margin: 0 auto 40px;
        color: #64748b;
        font-size: clamp(16px, 4vw, 18px);
      }

      .partnership-features {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: clamp(20px, 5vw, 50px);
        margin-top: 40px;
      }

      @media (max-width: 768px) {
        .partnership-features {
          flex-direction: column;
          align-items: center;
          gap: 20px;
        }
      }

      .partnership-features span {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: clamp(16px, 4vw, 18px);
        color: #0f2b46;
      }

      .partnership-features i {
        color: #ffd700;
      }

      /* FOOTER */
      .footer {
        background: #0a1a2f;
        color: #ffffff;
        padding: clamp(50px, 10vh, 80px) 5% 30px;
      }

      .footer-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr 2fr;
        gap: clamp(20px, 5vw, 40px);
        max-width: 1200px;
        margin: 0 auto 60px;
      }

      @media (max-width: 1200px) {
        .footer-grid {
          grid-template-columns: repeat(2, 1fr);
        }
      }
      @media (max-width: 768px) {
        .footer-grid {
          grid-template-columns: 1fr;
        }
      }

      .footer-logo img {
        height: clamp(40px, 10vw, 60px);
        margin-bottom: 20px;
        filter: brightness(0) invert(1);
      }

      .footer-about p {
        color: #94a3b8;
        line-height: 1.8;
        margin-bottom: 20px;
        font-size: clamp(14px, 3.5vw, 16px);
      }

      .social-links {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
      }

      .social-links a {
        width: clamp(35px, 8vw, 40px);
        height: clamp(35px, 8vw, 40px);
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
        transition: 0.3s;
        font-size: clamp(16px, 4vw, 18px);
      }

      .social-links a:hover {
        background: #ffd700;
        color: #0a1a2f;
        transform: translateY(-3px);
      }

      .footer h4 {
        font-size: clamp(16px, 4vw, 18px);
        margin-bottom: 25px;
        position: relative;
      }

      .footer h4:after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 40px;
        height: 2px;
        background: #ffd700;
      }

      .footer-links {
        list-style: none;
      }

      .footer-links li {
        margin-bottom: 12px;
      }

      .footer-links a {
        color: #94a3b8;
        text-decoration: none;
        transition: 0.3s;
        font-size: clamp(14px, 3.5vw, 16px);
      }

      .footer-links a:hover {
        color: #ffd700;
        padding-left: 5px;
      }

      .newsletter p {
        color: #94a3b8;
        margin-bottom: 20px;
        font-size: clamp(14px, 3.5vw, 16px);
      }

      .newsletter-form {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
      }

      .newsletter-form input {
        flex: 1 1 150px;
        padding: clamp(10px, 2.5vh, 12px);
        border: none;
        border-radius: 30px;
        background: rgba(255, 255, 255, 0.1);
        color: #ffffff;
        border: 1px solid rgba(255, 255, 255, 0.2);
        min-width: 150px;
      }

      .newsletter-form button {
        width: clamp(45px, 10vw, 50px);
        height: clamp(45px, 10vw, 50px);
        background: #ffd700;
        border: none;
        border-radius: 50%;
        color: #0a1a2f;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
      }

      .newsletter-form button:hover {
        background: #ffffff;
        transform: scale(1.1) rotate(5deg);
      }

      .footer-bottom {
        text-align: center;
        padding-top: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        color: #94a3b8;
        font-size: clamp(12px, 3vw, 14px);
      }

      .risk-disclaimer {
        max-width: 1200px;
        margin: 30px auto 0;
        padding: 20px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 10px;
        font-size: clamp(11px, 3vw, 12px);
        color: #94a3b8;
        line-height: 1.8;
      }

      /* FLOATING CHATBOT */
      .chatbot-container {
        position: fixed;
        bottom: clamp(20px, 5vh, 40px);
        right: clamp(10px, 3vw, 20px);
        z-index: 1000;
      }

      .chatbot-avatar {
        width: clamp(50px, 12vw, 70px);
        height: clamp(50px, 12vw, 70px);
        border-radius: 50%;
        background: linear-gradient(135deg, #0f2b46, #1a3f62);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        border: 3px solid #ffd700;
        transition: all 0.3s ease;
        animation: avatarPulse 2s infinite;
        overflow: hidden;
        position: relative;
      }

      .chatbot-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
      }

      .chatbot-avatar i {
        font-size: clamp(25px, 6vw, 35px);
        color: #ffd700;
      }

      .chatbot-avatar:hover {
        transform: scale(1.1) rotate(5deg);
        border-color: #00ffff;
        box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
      }

      @keyframes avatarPulse {
        0%,
        100% {
          box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
        }
        50% {
          box-shadow:
            0 5px 30px rgba(255, 215, 0, 0.6),
            0 0 20px #00ffff;
        }
      }

      .chatbot-window {
        position: absolute;
        bottom: 60px;
        right: 0;
        width: min(350px, 90vw);
        height: min(450px, 70vh);
        background: rgba(15, 43, 70, 0.95);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        display: none;
        flex-direction: column;
        overflow: hidden;
        z-index: 1001;
        transform-origin: bottom right;
        animation: chatOpen 0.3s ease;
      }

      @keyframes chatOpen {
        from {
          opacity: 0;
          transform: scale(0.8);
        }
        to {
          opacity: 1;
          transform: scale(1);
        }
      }

      .chatbot-window.active {
        display: flex;
      }

      .chatbot-header {
        background: linear-gradient(135deg, #ffd700, #ffaa00);
        padding: clamp(15px, 3vh, 20px);
        color: #0f2b46;
        font-weight: bold;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      }

      .chatbot-header h3 {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: clamp(16px, 4vw, 18px);
      }

      .chatbot-header i {
        font-size: clamp(18px, 4.5vw, 20px);
      }

      .close-chat {
        background: none;
        border: none;
        color: #0f2b46;
        font-size: clamp(18px, 4.5vw, 20px);
        cursor: pointer;
        transition: transform 0.3s ease;
      }

      .close-chat:hover {
        transform: rotate(90deg);
      }

      .chat-messages {
        flex: 1;
        padding: 20px;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        gap: 15px;
      }

      .message {
        max-width: 80%;
        padding: 12px 15px;
        border-radius: 15px;
        font-size: clamp(12px, 3.5vw, 14px);
        line-height: 1.5;
        animation: messageSlide 0.3s ease;
      }

      @keyframes messageSlide {
        from {
          opacity: 0;
          transform: translateY(10px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      .message.bot {
        background: rgba(255, 255, 255, 0.1);
        color: #fff;
        align-self: flex-start;
        border-bottom-left-radius: 5px;
        border: 1px solid rgba(255, 215, 0, 0.2);
      }

      .message.user {
        background: #ffd700;
        color: #0f2b46;
        align-self: flex-end;
        border-bottom-right-radius: 5px;
      }

      .typing-indicator {
        display: flex;
        gap: 5px;
        padding: 12px 15px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 15px;
        width: fit-content;
        border-bottom-left-radius: 5px;
      }

      .typing-indicator span {
        width: 8px;
        height: 8px;
        background: #ffd700;
        border-radius: 50%;
        animation: typing 1.4s infinite;
      }

      .typing-indicator span:nth-child(2) {
        animation-delay: 0.2s;
      }
      .typing-indicator span:nth-child(3) {
        animation-delay: 0.4s;
      }

      @keyframes typing {
        0%,
        60%,
        100% {
          transform: translateY(0);
          opacity: 0.5;
        }
        30% {
          transform: translateY(-10px);
          opacity: 1;
        }
      }

      .chat-input-area {
        padding: clamp(15px, 3vh, 20px);
        background: rgba(0, 0, 0, 0.2);
        display: flex;
        gap: 10px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
      }

      .chat-input-area input {
        flex: 1;
        padding: 12px;
        border: none;
        border-radius: 25px;
        background: rgba(255, 255, 255, 0.1);
        color: #fff;
        border: 1px solid rgba(255, 215, 0, 0.3);
        transition: all 0.3s ease;
        min-width: 0;
      }

      .chat-input-area input:focus {
        outline: none;
        border-color: #ffd700;
        background: rgba(255, 255, 255, 0.15);
      }

      .chat-input-area input::placeholder {
        color: rgba(255, 255, 255, 0.5);
      }

      .chat-input-area button {
        width: clamp(40px, 10vw, 45px);
        height: clamp(40px, 10vw, 45px);
        border-radius: 50%;
        background: #ffd700;
        border: none;
        color: #0f2b46;
        cursor: pointer;
        transition: all 0.3s ease;
      }

      .chat-input-area button:hover {
        transform: scale(1.1) rotate(5deg);
        background: #fff;
      }

      /* FLOATING BUTTONS */
      .whatsapp {
        position: fixed;
        bottom: 20px;
        left: 20px;
        background: #25d366;
        color: #fff;
        width: 60px;
        height: 60px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        font-size: 30px;
        text-decoration: none;
        z-index: 999;
        box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
        transition: 0.3s;
      }

      .whatsapp:hover {
        transform: scale(1.1);
      }

      .live-chat {
        position: fixed;
        bottom: 20px;
        right: 100px;
        background: #0f2b46;
        color: #fff;
        padding: 15px 30px;
        border-radius: 50px;
        display: flex;
        align-items: center;
        gap: 15px;
        cursor: pointer;
        z-index: 999;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        transition: 0.3s;
      }

      @media (max-width: 992px) {
        .live-chat {
          right: 20px;
          padding: 15px;
          border-radius: 50%;
        }
        .live-chat span {
          display: none;
        }
      }

      .live-chat:hover {
        background: #ffd700;
        color: #0f2b46;
        transform: translateY(-2px);
      }

      .chat-dot {
        width: 12px;
        height: 12px;
        background: #00ff5e;
        border-radius: 50%;
        animation: pulse 1.5s infinite;
      }

      @keyframes pulse {
        0% {
          transform: scale(1);
          opacity: 1;
        }
        50% {
          transform: scale(1.4);
          opacity: 0.6;
        }
        100% {
          transform: scale(1);
          opacity: 1;
        }
      }

      /* FIXED NOTIFICATION SYSTEM - TASK 2 - MULTI-DIRECTIONAL */
      .notification-container {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 999;
      }

      .notification-wrapper {
        position: absolute;
        display: flex;
        flex-direction: column;
        gap: 15px;
        pointer-events: none;
      }

      .notification-wrapper.top-left {
        top: 20px;
        left: 20px;
      }
      .notification-wrapper.top-right {
        top: 20px;
        right: 20px;
      }
      .notification-wrapper.bottom-left {
        bottom: 20px;
        left: 20px;
      }
      .notification-wrapper.bottom-right {
        bottom: 20px;
        right: 20px;
      }

      @media (max-width: 480px) {
        .notification-wrapper.top-left {
          top: 10px;
          left: 10px;
        }
        .notification-wrapper.top-right {
          top: 10px;
          right: 10px;
        }
        .notification-wrapper.bottom-left {
          bottom: 10px;
          left: 10px;
        }
        .notification-wrapper.bottom-right {
          bottom: 10px;
          right: 10px;
        }
      }

      .notification {
        background: rgba(15, 43, 70, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 215, 0, 0.3);
        border-radius: 15px;
        padding: 15px 20px;
        color: #fff;
        min-width: min(300px, 85vw);
        max-width: 350px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        position: relative;
        overflow: hidden;
        pointer-events: auto;
        margin-bottom: 15px;
      }

      .notification::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        background: linear-gradient(180deg, #ffd700, #00ffff);
        animation: borderGlow 2s infinite;
      }

      @keyframes borderGlow {
        0%,
        100% {
          opacity: 0.8;
        }
        50% {
          opacity: 1;
        }
      }

      .notification.top-left {
        transform: translateX(-120%);
        animation: slideInLeft 0.5s forwards;
      }
      .notification.top-right {
        transform: translateX(120%);
        animation: slideInRight 0.5s forwards;
      }
      .notification.bottom-left {
        transform: translateX(-120%);
        animation: slideInLeft 0.5s forwards;
      }
      .notification.bottom-right {
        transform: translateX(120%);
        animation: slideInRight 0.5s forwards;
      }

      @keyframes slideInLeft {
        to {
          transform: translateX(0);
        }
      }
      @keyframes slideInRight {
        to {
          transform: translateX(0);
        }
      }

      .notification-icon {
        position: absolute;
        right: 15px;
        top: 15px;
        color: #ffd700;
        font-size: 20px;
        animation: bellShake 3s infinite;
      }

      @keyframes bellShake {
        0%,
        100% {
          transform: rotate(0);
        }
        10% {
          transform: rotate(15deg);
        }
        20% {
          transform: rotate(-15deg);
        }
        30% {
          transform: rotate(10deg);
        }
        40% {
          transform: rotate(-10deg);
        }
        50%,
        70% {
          transform: rotate(0);
        }
      }

      .notification-content {
        display: flex;
        align-items: center;
        gap: 12px;
      }

      .notification-avatar {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: linear-gradient(135deg, #ffd700, #ffaa00);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #0f2b46;
        font-weight: bold;
        font-size: 16px;
      }

      .notification-text {
        flex: 1;
      }

      .notification-title {
        font-weight: 600;
        margin-bottom: 5px;
        color: #ffd700;
      }

      .notification-message {
        font-size: clamp(12px, 3.5vw, 14px);
        color: rgba(255, 255, 255, 0.9);
      }

      .notification-time {
        font-size: clamp(10px, 3vw, 12px);
        color: rgba(255, 255, 255, 0.5);
        margin-top: 5px;
      }

      .notification.hide {
        animation: slideOutNotification 0.5s forwards !important;
      }

      @keyframes slideOutNotification {
        to {
          opacity: 0;
          transform: scale(0.8);
        }
      }

      /* SCROLL TO TOP BUTTON */
      .scroll-to-top {
        position: fixed;
        bottom: clamp(80px, 15vh, 115px);
        right: clamp(10px, 3vw, 23px);
        width: clamp(45px, 12vw, 60px);
        height: clamp(45px, 12vw, 60px);
        border-radius: 50%;
        background: #0f2b46;
        color: #ffd700;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        border: none;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        font-weight: bold;
        font-size: clamp(12px, 3vw, 14px);
      }

      .scroll-to-top.visible {
        opacity: 1;
        visibility: visible;
      }

      .scroll-to-top:hover {
        transform: scale(1.1) translateY(-5px);
        box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
        background: #ffd700;
        color: #0f2b46;
      }

      .scroll-to-top .progress-ring {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
      }

      .scroll-to-top svg {
        transform: rotate(-90deg);
        width: 100%;
        height: 100%;
      }

      .scroll-to-top circle {
        fill: none;
        stroke: #ffd700;
        stroke-width: 4;
        stroke-linecap: round;
        stroke-dasharray: 176;
        stroke-dashoffset: 176;
        transition: stroke-dashoffset 0.3s ease;
      }

      .scroll-to-top:hover circle {
        stroke: #0f2b46;
      }

      .scroll-to-top .percentage {
        position: relative;
        z-index: 1;
        font-size: clamp(12px, 3vw, 14px);
        font-weight: bold;
      }

      /* RIPPLE EFFECT */
      .ripple-effect {
        position: absolute;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.4);
        transform: scale(0);
        animation: ripple-animation 0.6s ease-out;
        pointer-events: none;
      }

      @keyframes ripple-animation {
        to {
          transform: scale(4);
          opacity: 0;
        }
      }

      /* RTL language support */
      html[dir="rtl"] body.lang-rtl .top-bar,
      html[dir="rtl"] body.lang-rtl .navbar,
      html[dir="rtl"] body.lang-rtl .footer-grid {
        direction: rtl;
      }

      html[dir="rtl"] body.lang-rtl #nav-menu a,
      html[dir="rtl"] body.lang-rtl .section-header,
      html[dir="rtl"] body.lang-rtl .package-details,
      html[dir="rtl"] body.lang-rtl .footer-links {
        text-align: right;
      }