
    /* ============================================
       CSS VARIABLES — Easy Theme Customisation
       ============================================ */
    :root {
      --primary-dark: #152042;
      --primary: #1B2A4A;
      --primary-light: #2a3f6e;
      --accent: #00BFFF;
      --accent-light: #33ccff;
      --accent-glow: rgba(0, 191, 255, 0.15);
      --accent-gradient: linear-gradient(135deg, #00BFFF, #0090d9);
      --bg-white: #ffffff;
      --bg-light: #f6f9fc;
      --bg-subtle: #eef3f8;
      --text-primary: #1a1a2e;
      --text-secondary: #5a6577;
      --text-muted: #8896a6;
      --border-light: #e2e8f0;
      --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
      --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
      --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.10);
      --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.12);
      --radius-sm: 8px;
      --radius-md: 12px;
      --radius-lg: 16px;
      --radius-xl: 24px;
      --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      --max-width: 1200px;
      --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    }

    /* ============================================
       RESET & BASE
       ============================================ */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
      font-size: 16px;
    }

    body {
      font-family: var(--font);
      color: var(--text-primary);
      background: var(--bg-white);
      line-height: 1.7;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    a {
      text-decoration: none;
      color: inherit;
      transition: color var(--transition);
    }

    ul {
      list-style: none;
    }

    /* ============================================
       UTILITIES
       ============================================ */
    .container {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 24px;
    }

    .section {
      padding: 100px 0;
    }

    .section-alt {
      background: var(--bg-light);
    }

    .text-center {
      text-align: center;
    }

    .section-badge {
      display: inline-block;
      padding: 6px 16px;
      border-radius: 50px;
      background: var(--accent-glow);
      color: var(--accent);
      font-size: 0.8rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 16px;
    }

    .section-title {
      font-size: clamp(1.8rem, 4vw, 2.6rem);
      font-weight: 800;
      color: var(--primary);
      line-height: 1.25;
      margin-bottom: 16px;
    }

    .section-subtitle {
      font-size: 1.1rem;
      color: var(--text-secondary);
      max-width: 600px;
      margin: 0 auto 48px;
    }

    /* ============================================
       BUTTONS
       ============================================ */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 13px 28px;
      border-radius: 50px;
      font-size: 0.95rem;
      font-weight: 600;
      cursor: pointer;
      border: none;
      transition: all var(--transition);
      font-family: var(--font);
    }

    .btn-primary {
      background: var(--accent-gradient);
      color: #fff;
      box-shadow: 0 4px 16px rgba(0, 191, 255, 0.3);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(0, 191, 255, 0.4);
    }

    .btn-outline {
      background: transparent;
      color: var(--primary);
      border: 2px solid var(--border-light);
    }

    .btn-outline:hover {
      border-color: var(--accent);
      color: var(--accent);
      transform: translateY(-2px);
    }

    .btn-white {
      background: #fff;
      color: var(--primary);
      box-shadow: var(--shadow-md);
    }

    .btn-white:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-lg);
    }

    .btn-ghost {
      background: transparent;
      color: var(--primary);
      padding: 13px 20px;
    }

    .btn-ghost:hover {
      color: var(--accent);
    }

    /* ============================================
       HEADER — Sticky Navigation
       ============================================ */
    .header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border-light);
      transition: box-shadow var(--transition);
    }

    .header.scrolled {
      box-shadow: var(--shadow-md);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 24px;
      height: 72px;
    }

    .header-logo img {
      height: 36px;
    }

    .header-nav {
      display: none;
    }

    .header-nav a {
      font-size: 0.92rem;
      font-weight: 500;
      color: var(--text-secondary);
      position: relative;
      padding: 4px 0;
    }

    .header-nav a::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--accent);
      transition: width var(--transition);
    }

    .header-nav a:hover {
      color: var(--primary);
    }

    .header-nav a:hover::after {
      width: 100%;
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .mobile-toggle {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      width: 32px;
      height: 32px;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      align-items: center;
    }

    .header-logo img {
      height: 36px;
      max-width: 160px;
    }

    .mobile-toggle span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--primary);
      border-radius: 2px;
      transition: all var(--transition);
    }

    /* ============================================
       HERO SECTION
       ============================================ */
    .hero {
      padding: 140px 0 100px;
      background: linear-gradient(170deg, var(--bg-white) 0%, var(--bg-light) 100%);
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -200px;
      right: -200px;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 18px;
      border-radius: 50px;
      background: var(--accent-glow);
      color: var(--accent);
      font-size: 0.82rem;
      font-weight: 600;
      margin-bottom: 20px;
    }

    .hero-badge svg {
      width: 14px;
      height: 14px;
    }

    .hero-title {
      font-size: clamp(2.2rem, 5vw, 3.4rem);
      font-weight: 800;
      color: var(--primary-dark);
      line-height: 1.15;
      margin-bottom: 20px;
    }

    .hero-title span {
      color: var(--accent);
    }

    .hero-subtitle {
      font-size: 1.15rem;
      color: var(--text-secondary);
      line-height: 1.7;
      margin-bottom: 32px;
      max-width: 520px;
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 36px;
    }

    .hero-trust {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.85rem;
      color: var(--text-muted);
      font-weight: 500;
    }

    .hero-trust svg {
      width: 18px;
      height: 18px;
      color: var(--accent);
      flex-shrink: 0;
    }

    .hero-visual {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hero-slider-container {
      width: 100%;
      aspect-ratio: 4/3;
      border-radius: var(--radius-lg);
      background: var(--bg-subtle);
      border: 1px solid var(--border-light);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: var(--shadow-xl);
      overflow: hidden;
      position: relative;
    }

    .hero-slider-placeholder {
      text-align: center;
      color: var(--text-muted);
      padding: 32px;
    }

    .hero-slider-placeholder svg {
      width: 48px;
      height: 48px;
      margin: 0 auto 12px;
      opacity: 0.4;
    }

    .hero-slider-placeholder p {
      font-size: 0.9rem;
    }

    /* ============================================
       FEATURE SECTIONS — Alternating Layout
       ============================================ */
    .feature-block {
      padding: 80px 0;
    }

    .feature-block:nth-child(even) {
      background: var(--bg-light);
    }

    .feature-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .feature-block:nth-child(even) .feature-inner {
      direction: rtl;
    }

    .feature-block:nth-child(even) .feature-inner>* {
      direction: ltr;
    }

    .feature-icon {
      width: 52px;
      height: 52px;
      border-radius: var(--radius-md);
      background: var(--accent-glow);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }

    .feature-icon svg {
      width: 24px;
      height: 24px;
      color: var(--accent);
    }

    .feature-tag {
      font-size: 0.78rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: var(--accent);
      margin-bottom: 10px;
    }

    .feature-title {
      font-size: clamp(1.5rem, 3vw, 2rem);
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 16px;
      line-height: 1.3;
    }

    .feature-desc {
      font-size: 1.05rem;
      color: var(--text-secondary);
      line-height: 1.75;
      margin-bottom: 24px;
    }

    .feature-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--accent);
      font-weight: 600;
      font-size: 0.95rem;
    }

    .feature-link svg {
      width: 18px;
      height: 18px;
      transition: transform var(--transition);
    }

    .feature-link:hover svg {
      transform: translateX(4px);
    }

    .feature-image-container {
      aspect-ratio: 4/3;
      border-radius: var(--radius-lg);
      background: var(--bg-subtle);
      border: 1px solid var(--border-light);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: var(--shadow-md);
      overflow: hidden;
    }

    .feature-image-placeholder {
      text-align: center;
      color: var(--text-muted);
      padding: 32px;
    }

    .feature-image-placeholder svg {
      width: 40px;
      height: 40px;
      margin: 0 auto 10px;
      opacity: 0.35;
    }

    .feature-image-placeholder p {
      font-size: 0.85rem;
    }

    /* ============================================
       CTA SECTION
       ============================================ */
    .cta-section {
      padding: 100px 0;
      background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
      position: relative;
      overflow: hidden;
    }

    .cta-section::before {
      content: '';
      position: absolute;
      top: -100px;
      left: -100px;
      width: 400px;
      height: 400px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(0, 191, 255, 0.12) 0%, transparent 70%);
    }

    .cta-section::after {
      content: '';
      position: absolute;
      bottom: -150px;
      right: -100px;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(0, 191, 255, 0.08) 0%, transparent 70%);
    }

    .cta-inner {
      text-align: center;
      position: relative;
      z-index: 1;
    }

    .cta-title {
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      font-weight: 800;
      color: #fff;
      margin-bottom: 18px;
      line-height: 1.25;
    }

    .cta-subtitle {
      font-size: 1.1rem;
      color: rgba(255, 255, 255, 0.7);
      max-width: 550px;
      margin: 0 auto 36px;
    }

    .cta-actions {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
    }

    /* ============================================
       FOOTER
       ============================================ */
    .footer {
      background: var(--primary-dark);
      color: rgba(255, 255, 255, 0.6);
      padding: 60px 0 30px;
    }

    .footer-inner {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 40px;
    }

    .footer-brand p {
      margin-top: 16px;
      font-size: 0.9rem;
      line-height: 1.7;
    }

    .footer-brand img {
      height: 34px;
      background: rgba(255, 255, 255, 0.95);
      padding: 6px 14px;
      border-radius: 8px;
    }

    .footer-col h4 {
      color: #fff;
      font-size: 0.9rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 18px;
    }

    .footer-col a {
      display: block;
      padding: 5px 0;
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.55);
      transition: color var(--transition);
    }

    .footer-col a:hover {
      color: var(--accent);
    }

    .footer-social {
      display: flex;
      gap: 12px;
      margin-top: 20px;
    }

    .footer-social a {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all var(--transition);
    }

    .footer-social a:hover {
      background: var(--accent);
    }

    .footer-social a svg {
      width: 16px;
      height: 16px;
      color: rgba(255, 255, 255, 0.7);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding-top: 24px;
      text-align: center;
      font-size: 0.82rem;
    }

    /* ============================================
       SCROLL ANIMATIONS
       ============================================ */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ============================================
       RESPONSIVE
       ============================================ */
    /* ============================================
       LEGAL & TEXT PAGES
       ============================================ */
    .terms-main, .fillwidth, .pages_box_outer {
      max-width: 860px;
      margin: 0 auto;
      background: var(--bg-white);
      padding: 50px 60px;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-md);
      border: 1px solid var(--border-light);
    }
    
    .terms-main h2, .fillwidth h2, .pages_box_outer h2 {
      font-size: 2.2rem;
      color: var(--primary-dark);
      margin-bottom: 24px;
      padding-bottom: 16px;
      border-bottom: 2px solid var(--bg-light);
    }
    
    .terms-main h3, .fillwidth h3, .pages_box_outer h3, .blockdiv h3 {
      font-size: 1.4rem;
      color: var(--primary);
      margin-top: 36px;
      margin-bottom: 16px;
    }
    
    .terms-main h4, .fillwidth h4, .pages_box_outer h4 {
      font-size: 1.15rem;
      color: var(--primary-dark);
      margin-top: 28px;
      margin-bottom: 12px;
    }
    
    .terms-main p, .fillwidth p, .pages_box_outer p, .note-text p {
      margin-bottom: 20px;
      color: var(--text-secondary);
      line-height: 1.85;
      font-size: 1.05rem;
    }
    
    .terms-main ul, .terms-main ol, .fillwidth ul, .fillwidth ol, .pages_box_outer ul, .pages_box_outer ol, .note-text ul {
      margin-bottom: 28px;
      padding-left: 24px;
      color: var(--text-secondary);
      line-height: 1.85;
      font-size: 1.05rem;
    }
    
    .terms-main li, .fillwidth li, .pages_box_outer li {
      margin-bottom: 10px;
    }
    
    .terms-main a, .fillwidth a, .pages_box_outer a {
      color: var(--accent);
      font-weight: 500;
      text-decoration: none;
      border-bottom: 1px solid transparent;
      transition: border-color var(--transition);
    }
    
    .terms-main a:hover, .fillwidth a:hover, .pages_box_outer a:hover {
      border-bottom-color: var(--accent);
    }
    
    .title_inn {
      text-align: center;
      margin-bottom: 40px;
    }
    
    .title_inn h2 {
      border: none !important;
      padding: 0 !important;
      margin-bottom: 10px !important;
    }

    /* Legal Agreements Hub Grid */
    .legal-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 24px;
      margin-top: 40px;
    }

    .legal-card {
      background: #fdfdfd;
      border: 1px solid var(--border-light);
      border-radius: 12px;
      padding: 24px;
      transition: all var(--transition);
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .legal-card:hover {
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      border-color: var(--accent);
      transform: translateY(-2px);
    }

    .legal-card h3 {
      font-size: 1.15rem;
      margin-top: 0 !important;
      margin-bottom: 12px !important;
      color: var(--primary);
      border: none !important;
    }

    .legal-card p {
      font-size: 0.95rem;
      line-height: 1.6;
      color: var(--text-secondary);
      margin-bottom: 0 !important;
      flex-grow: 1;
    }

    .legal-card a {
      text-decoration: none;
      color: inherit;
      border: none !important;
    }

    .legal-meta {
      margin-top: 60px;
      padding-top: 30px;
      border-top: 1px dashed var(--border-light);
      font-size: 0.9rem;
      color: var(--text-secondary);
    }

    .legal-meta a {
      font-weight: 600;
    }
    
    .title_inn span {
      color: var(--accent);
    }

    @media (max-width: 992px) {

      .hero-inner,
      .feature-inner {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .feature-block:nth-child(even) .feature-inner {
        direction: ltr;
      }

      .hero-visual {
        order: -1;
      }

      .hero {
        padding: 120px 0 60px;
      }

      .section {
        padding: 70px 0;
      }

      .feature-block {
        padding: 60px 0;
      }

      .footer-inner {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 768px) {
      .terms-main, .fillwidth, .pages_box_outer {
        padding: 40px 24px;
      }
      
      .terms-main h2, .fillwidth h2, .pages_box_outer h2 {
        font-size: 1.8rem;
      }
      .header-actions .btn-ghost {
        display: none;
      }

      .header-actions .btn-primary {
        padding: 10px 20px;
        font-size: 0.85rem;
      }

      .mobile-toggle {
        display: flex;
      }

      .header-inner {
        height: 60px;
      }

      .header-logo img {
        height: 30px;
      }

      .mobile-menu {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(16px);
        padding: 24px;
        display: none;
        flex-direction: column;
        gap: 0;
        z-index: 999;
      }

      .mobile-menu.active {
        display: flex;
      }

      .mobile-menu a {
        display: block;
        padding: 16px 0;
        font-size: 1.05rem;
        font-weight: 500;
        color: var(--text-primary);
        border-bottom: 1px solid var(--border-light);
      }

      .mobile-menu .btn {
        margin-top: 20px;
        justify-content: center;
      }

      .hero {
        padding: 100px 0 50px;
      }

      .hero-title {
        font-size: 2rem;
      }

      .hero-actions {
        flex-direction: column;
      }

      .hero-actions .btn {
        justify-content: center;
      }

      .cta-actions {
        flex-direction: column;
        align-items: center;
      }

      .cta-actions .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
      }

      .footer-inner {
        grid-template-columns: 1fr;
      }
    }
  
