    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      min-height: 100vh;
      background: #f8fafc;
      font-family: 'Inter', sans-serif;
      overflow-x: hidden;
    }

    /* ---------- TOP BAR (fully responsive, from index) ---------- */
    .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;
    }

    @media (max-width: 600px) {
      .top-bar { flex-direction: column; text-align: center; }
      .top-left { justify-content: center; flex-wrap: wrap; }
    }

    /* ---------- NAVBAR (fully responsive, slide-down, from index) ---------- */
    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: clamp(10px, 2.5vh, 15px) 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);
    }

    .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);
    }

    /* CTA button style for LOGIN/SIGNUP link */
    .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);
    }

    /* mobile menu – slide down (fully responsive) */
    @media (max-width: 992px) {
      .navbar {
        flex-wrap: wrap;
        position: relative;
      }

      .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: #0a1a2f;
        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;
      }
    }

    /* ---------- MAIN "COMING SOON" SECTION (absolutely stunning) ---------- */
    .coming-soon {
      position: relative;
      min-height: calc(100vh - 250px);
      background: linear-gradient(145deg, #0b1b2f, #102a41);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      padding: 4rem 5%;
    }

    /* animated orbs */
    .soon-orb {
      position: absolute;
      width: min(50vmax, 900px);
      height: min(50vmax, 900px);
      border-radius: 50%;
      background: radial-gradient(circle at 40% 40%, rgba(255,215,0,0.25), rgba(0,255,255,0.1) 70%);
      filter: blur(100px);
      z-index: 1;
      animation: orbFloat 25s infinite alternate;
    }
    .soon-orb1 { top: -20vh; right: -10vw; background: rgba(255,215,0,0.3); }
    .soon-orb2 { bottom: -20vh; left: -10vw; background: rgba(0,255,255,0.2); animation-delay: -10s; }
    .soon-orb3 { top: 30%; left: 20%; background: rgba(255,100,200,0.15); filter: blur(120px); animation: orbFloat2 30s infinite; }

    @keyframes orbFloat {
      0% { transform: translate(0, 0) scale(1); }
      100% { transform: translate(6%, 8%) scale(1.3); }
    }
    @keyframes orbFloat2 {
      0% { transform: translate(0, 0) scale(1); opacity: 0.4; }
      50% { transform: translate(-10%, -15%) scale(1.4); opacity: 0.7; }
      100% { transform: translate(5%, 5%) scale(1); opacity: 0.4; }
    }

    .soon-content {
      position: relative;
      z-index: 10;
      max-width: 1100px;
      width: 100%;
      background: rgba(10, 25, 45, 0.4);
      backdrop-filter: blur(16px) saturate(180%);
      -webkit-backdrop-filter: blur(16px) saturate(180%);
      border: 1px solid rgba(255,215,0,0.35);
      border-radius: 4rem;
      padding: clamp(2.5rem, 8vh, 5rem) clamp(2rem, 6vw, 4rem);
      box-shadow: 0 50px 100px -20px rgba(0,0,0,0.8), 0 0 0 2px rgba(255,215,0,0.2) inset, 0 0 70px rgba(0,255,255,0.3);
      text-align: center;
    }

    .soon-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.8rem;
      background: rgba(255,215,0,0.15);
      border: 1px solid rgba(255,215,0,0.5);
      backdrop-filter: blur(8px);
      padding: 0.7rem 2rem;
      border-radius: 60px;
      margin-bottom: 2rem;
      color: #ffd700;
      font-weight: 600;
      letter-spacing: 0.5px;
    }
    .soon-badge i {
      font-size: 1.5rem;
      color: cyan;
    }

    .soon-content h1 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: clamp(2.8rem, 10vw, 5.5rem);
      font-weight: 700;
      background: linear-gradient(130deg, #ffd700, cyan, #ffd700);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      margin-bottom: 1rem;
      line-height: 1.1;
      text-transform: uppercase;
      letter-spacing: -0.02em;
      animation: glowPulse 4s infinite alternate;
    }

    @keyframes glowPulse {
      0% { text-shadow: 0 0 20px gold, 0 0 40px cyan; }
      100% { text-shadow: 0 0 40px gold, 0 0 80px cyan; }
    }

    .soon-sub {
      font-size: clamp(1.2rem, 4vw, 1.8rem);
      color: rgba(255,255,255,0.9);
      margin-bottom: 2.5rem;
      font-family: 'Playfair Display', serif;
      font-style: italic;
    }

    /* COUNTDOWN TIMER */
    .countdown {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: clamp(1.5rem, 5vw, 3rem);
      margin: 3rem 0 2.5rem;
    }
    .countdown-item {
      background: rgba(0,0,0,0.4);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255,215,0,0.3);
      border-radius: 2rem;
      padding: 1.2rem 2rem;
      min-width: 120px;
      box-shadow: 0 20px 30px -10px rgba(0,0,0,0.5);
    }
    .countdown-item span {
      display: block;
      font-size: clamp(2.5rem, 7vw, 4rem);
      font-weight: 800;
      color: #ffd700;
      line-height: 1;
      text-shadow: 0 0 30px cyan;
    }
    .countdown-item p {
      color: rgba(255,255,255,0.7);
      text-transform: uppercase;
      font-size: 0.9rem;
      letter-spacing: 2px;
    }

    .notify-form {
      max-width: 550px;
      margin: 2.5rem auto 2rem;
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,215,0,0.3);
      border-radius: 60px;
      padding: 0.5rem;
    }
    .notify-form input {
      flex: 1 1 250px;
      padding: 1rem 1.8rem;
      border: none;
      border-radius: 60px;
      font-size: 1rem;
      background: rgba(255,255,255,0.9);
      outline: none;
    }
    .notify-form button {
      background: linear-gradient(145deg, #ffd700, #ffb800);
      border: none;
      padding: 1rem 2.2rem;
      border-radius: 60px;
      font-weight: 700;
      color: #0a1a2f;
      display: flex;
      align-items: center;
      gap: 0.8rem;
      cursor: pointer;
      transition: 0.4s;
      border: 1px solid transparent;
      font-size: 1rem;
    }
    .notify-form button:hover {
      background: #ffffff;
      transform: translateY(-5px) scale(1.05);
      box-shadow: 0 20px 40px gold;
      border-color: cyan;
    }
    .notify-form button i { transition: transform 0.3s; }
    .notify-form button:hover i { transform: translateX(8px); }

    .mockup-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 2rem;
      margin: 3rem 0 1rem;
    }
    .mockup-icon {
      width: 70px;
      height: 70px;
      background: rgba(255,255,255,0.05);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 2px dashed #ffd700;
      color: cyan;
      font-size: 2.2rem;
      transition: 0.4s;
    }
    .mockup-icon:hover {
      transform: scale(1.15) rotate(10deg);
      background: #ffd700;
      color: #0a1a2f;
      border-color: cyan;
    }

    /* ---------- FOOTER (fully responsive, from index) ---------- */
    .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;
    }

    /* ---------- CHATBOT (fully responsive, from index) ---------- */
    .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 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);
    }

    .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 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;
    }

    /* ---------- SCROLL TO TOP (fully responsive) ---------- */
    .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;
    }