﻿:root {
      --primary: #22D3EE;
      --deep-bg: #020617;
      --electric-blue: #3B82F6;
      --pale-ice: #E0F2FE;
      --accent-green: #34D399;
      --text-light: #F8FAFC;
      --text-muted: #94A3B8;
      --card-bg: rgba(15, 23, 42, 0.6);
      --border-cyan: rgba(34, 211, 238, 0.2);
      --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    }

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

    body {
      background-color: var(--deep-bg);
      color: var(--text-light);
      font-family: var(--font-family);
      line-height: 1.6;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    
    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    
    header {
      background-color: rgba(2, 6, 23, 0.85);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .header-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: 80px;
    }

    .logo {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
    }

    .logo img {
      display: block;
      height: 40px;
      width: auto;
      max-width: 160px;
      object-fit: contain;
      flex-shrink: 0;
    }

    .logo span {
      display: inline-block;
      font-size: 20px;
      font-weight: 800;
      line-height: 1;
      color: var(--primary);
      white-space: nowrap;
      letter-spacing: 0.5px;
    }

    .nav-menu {
      display: flex;
      align-items: center;
      gap: 32px;
    }

    .nav-menu a {
      font-size: 15px;
      font-weight: 500;
      color: var(--text-muted);
    }

    .nav-menu a:hover, .nav-menu a.active {
      color: var(--primary);
    }

    .header-btn {
      background: linear-gradient(135deg, var(--primary), var(--electric-blue));
      color: var(--deep-bg);
      font-weight: 600;
      padding: 10px 20px;
      border-radius: 6px;
      font-size: 14px;
      box-shadow: 0 0 15px rgba(34, 211, 238, 0.3);
    }

    .header-btn:hover {
      box-shadow: 0 0 25px rgba(34, 211, 238, 0.5);
      transform: translateY(-1px);
    }

    
    .menu-toggle {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      flex-direction: column;
      gap: 6px;
    }

    .menu-toggle span {
      display: block;
      width: 25px;
      height: 2px;
      background-color: var(--text-light);
      transition: all 0.3s;
    }

    
    .drawer {
      position: fixed;
      top: 0;
      left: -100%;
      width: 300px;
      height: 100vh;
      background-color: var(--deep-bg);
      border-right: 1px solid var(--border-cyan);
      z-index: 1001;
      transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      padding: 30px 20px;
      display: flex;
      flex-direction: column;
      gap: 40px;
    }

    .drawer.active {
      left: 0;
    }

    .drawer-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background-color: rgba(2, 6, 23, 0.8);
      backdrop-filter: blur(4px);
      z-index: 1000;
      display: none;
    }

    .drawer-overlay.active {
      display: block;
    }

    .drawer-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .drawer-close {
      background: none;
      border: none;
      color: var(--text-muted);
      font-size: 24px;
      cursor: pointer;
    }

    .drawer-nav {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .drawer-nav a {
      font-size: 18px;
      font-weight: 500;
    }

    
    .hero-layout-08 {
      position: relative;
      padding: 100px 0 60px 0;
      background: radial-gradient(circle at 50% 10%, rgba(34, 211, 238, 0.15) 0%, transparent 60%);
      overflow: hidden;
      text-align: center;
    }

    .hero-text-center {
      max-width: 800px;
      margin: 0 auto 50px auto;
      padding: 0 20px;
    }

    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(34, 211, 238, 0.1);
      border: 1px solid var(--border-cyan);
      color: var(--primary);
      padding: 6px 16px;
      border-radius: 50px;
      font-size: 14px;
      font-weight: 500;
      margin-bottom: 24px;
    }

    .hero-tag .dot {
      width: 8px;
      height: 8px;
      background-color: var(--accent-green);
      border-radius: 50%;
      box-shadow: 0 0 8px var(--accent-green);
      animation: pulse 1.5s infinite;
    }

    .hero-title {
      font-size: 48px;
      font-weight: 800;
      line-height: 1.2;
      background: linear-gradient(135deg, #FFF 30%, var(--primary) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 20px;
    }

    .hero-desc {
      font-size: 18px;
      color: var(--text-muted);
      margin-bottom: 32px;
    }

    .hero-btns {
      display: flex;
      justify-content: center;
      gap: 16px;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--primary), var(--electric-blue));
      color: var(--deep-bg);
      font-weight: 600;
      padding: 14px 28px;
      border-radius: 8px;
      font-size: 16px;
      box-shadow: 0 4px 20px rgba(34, 211, 238, 0.3);
    }

    .btn-primary:hover {
      box-shadow: 0 4px 30px rgba(34, 211, 238, 0.5);
      transform: translateY(-2px);
    }

    .btn-secondary {
      background: rgba(15, 23, 42, 0.6);
      border: 1px solid var(--border-cyan);
      color: var(--primary);
      font-weight: 600;
      padding: 14px 28px;
      border-radius: 8px;
      font-size: 16px;
      backdrop-filter: blur(10px);
    }

    .btn-secondary:hover {
      background: rgba(34, 211, 238, 0.1);
      transform: translateY(-2px);
    }

    
    .dashboard-panel {
      background: var(--card-bg);
      border: 1px solid var(--border-cyan);
      border-radius: 16px;
      padding: 30px;
      backdrop-filter: blur(20px);
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
      margin-top: 20px;
    }

    .db-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid var(--border-cyan);
      padding-bottom: 20px;
      margin-bottom: 24px;
    }

    .db-title {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 16px;
      font-weight: 600;
      color: var(--primary);
    }

    .db-badge {
      font-size: 12px;
      background: rgba(52, 211, 153, 0.1);
      border: 1px solid rgba(52, 211, 153, 0.2);
      color: var(--accent-green);
      padding: 4px 10px;
      border-radius: 20px;
    }

    .db-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin-bottom: 30px;
    }

    .db-card {
      background: rgba(30, 41, 59, 0.4);
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 12px;
      padding: 20px;
      text-align: left;
    }

    .db-card-label {
      font-size: 13px;
      color: var(--text-muted);
      margin-bottom: 8px;
    }

    .db-card-value {
      font-size: 24px;
      font-weight: 700;
      color: #FFF;
      margin-bottom: 6px;
    }

    .db-card-change {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
    }

    .change-up {
      color: var(--accent-green);
    }

    .change-down {
      color: #EF4444;
    }

    .db-chart-area {
      height: 200px;
      background: rgba(30, 41, 59, 0.2);
      border-radius: 12px;
      border: 1px dashed rgba(255, 255, 255, 0.05);
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      padding: 20px;
      position: relative;
    }

    .chart-grid-line {
      position: absolute;
      left: 0;
      right: 0;
      height: 1px;
      background: rgba(255, 255, 255, 0.02);
    }

    .bar-group {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      width: 12%;
    }

    .chart-bar {
      width: 100%;
      background: linear-gradient(to top, var(--electric-blue), var(--primary));
      border-radius: 4px 4px 0 0;
      box-shadow: 0 0 10px rgba(34, 211, 238, 0.2);
    }

    .bar-label {
      font-size: 11px;
      color: var(--text-muted);
    }

    
    .trust-strip {
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      padding: 40px 0;
    }

    .trust-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px;
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .trust-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: rgba(34, 211, 238, 0.1);
      border: 1px solid var(--border-cyan);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      color: var(--primary);
    }

    .trust-info h4 {
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 4px;
    }

    .trust-info p {
      font-size: 13px;
      color: var(--text-muted);
    }

    
    .features {
      padding: 100px 0;
    }

    .section-header {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 60px auto;
    }

    .section-title {
      font-size: 36px;
      font-weight: 800;
      margin-bottom: 16px;
    }

    .section-subtitle {
      color: var(--text-muted);
      font-size: 16px;
    }

    .feature-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }

    .feature-card {
      background: rgba(15, 23, 42, 0.4);
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 16px;
      padding: 40px 30px;
      transition: all 0.3s;
    }

    .feature-card:hover {
      border-color: var(--border-neon-active);
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(34, 211, 238, 0.05);
    }

    .feature-card-icon {
      font-size: 32px;
      margin-bottom: 24px;
      display: inline-block;
    }

    .feature-card h3 {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 12px;
    }

    .feature-card p {
      color: var(--text-muted);
      font-size: 14px;
    }

    
    .insights {
      padding: 100px 0;
      background: linear-gradient(to bottom, transparent, rgba(15, 23, 42, 0.5));
    }

    .insight-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }

    .insight-card {
      background: var(--card-bg);
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 16px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }

    .insight-image {
      height: 200px;
      background-size: cover;
      background-position: center;
      position: relative;
    }

    .insight-badge {
      position: absolute;
      top: 16px;
      left: 16px;
      background-color: var(--primary);
      color: var(--deep-bg);
      font-size: 12px;
      font-weight: 700;
      padding: 4px 12px;
      border-radius: 20px;
    }

    .insight-content {
      padding: 24px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }

    .insight-meta {
      display: flex;
      gap: 16px;
      font-size: 12px;
      color: var(--text-muted);
      margin-bottom: 12px;
    }

    .insight-title {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 12px;
      line-height: 1.4;
    }

    .insight-desc {
      font-size: 14px;
      color: var(--text-muted);
      margin-bottom: 20px;
      flex-grow: 1;
    }

    .insight-link {
      font-size: 14px;
      color: var(--primary);
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    
    .cta-section {
      padding: 100px 0;
      text-align: center;
      background: radial-gradient(circle at 50% 50%, rgba(34, 211, 238, 0.1) 0%, transparent 70%);
    }

    .cta-card {
      background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(2, 6, 23, 0.9));
      border: 1px solid var(--border-cyan);
      border-radius: 24px;
      padding: 60px;
      max-width: 1000px;
      margin: 0 auto;
    }

    .cta-title {
      font-size: 36px;
      font-weight: 800;
      margin-bottom: 16px;
    }

    .cta-desc {
      color: var(--text-muted);
      max-width: 600px;
      margin: 0 auto 32px auto;
    }

    
    footer {
      background-color: #010409;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      padding: 80px 0 40px 0;
      color: var(--text-muted);
    }

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

    .footer-about .logo {
      margin-bottom: 20px;
    }

    .footer-about p {
      font-size: 14px;
      line-height: 1.8;
      margin-bottom: 20px;
    }

    .footer-title {
      font-size: 16px;
      font-weight: 700;
      color: #FFF;
      margin-bottom: 24px;
    }

    .footer-links {
      list-style: none;
    }

    .footer-links li {
      margin-bottom: 12px;
    }

    .footer-links a {
      font-size: 14px;
    }

    .footer-links a:hover {
      color: var(--primary);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      padding-top: 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 13px;
    }

    .footer-legal {
      display: flex;
      gap: 24px;
    }

    @keyframes pulse {
      0% { transform: scale(0.95); opacity: 0.5; }
      50% { transform: scale(1.1); opacity: 1; }
      100% { transform: scale(0.95); opacity: 0.5; }
    }

    
    @media (max-width: 1024px) {
      .db-grid { grid-template-columns: repeat(2, 1fr); }
      .trust-grid { grid-template-columns: repeat(2, 1fr); }
      .feature-grid { grid-template-columns: repeat(2, 1fr); }
      .insight-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 768px) {
      .nav-menu, .header-btn { display: none; }
      .menu-toggle { display: flex; }
      .hero-title { font-size: 32px; }
      .hero-desc { font-size: 16px; }
      .db-grid { grid-template-columns: 1fr; }
      .trust-grid { grid-template-columns: 1fr; }
      .feature-grid { grid-template-columns: 1fr; }
      .insight-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
      .bar-group:nth-child(n+5) { display: none; }
    }