  :root {
      --bg: #f8fbff;
      --bg-2: #ffffff;
      --card: #ffffff;
      --card-border: #e6ecf5;
      --text: #000000;
      --muted: #5b6b85;
      --primary: #4f7cff;
      --secondary: #7a5cff;
      --accent: #00a8ff;
      --success: #1bbf6b;
      --shadow: 0 10px 30px rgba(0,0,0,0.08);
      --radius: 22px;
      --max-width: 1200px;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Poppins', sans-serif;
      background: linear-gradient(180deg, #ffffff 0%, #f5f8ff 100%);
      color: var(--text);
      line-height: 1.6;
      overflow-x: hidden;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    img {
      max-width: 100%;
      display: block;
    }

    .container {
      width: min(92%, var(--max-width));
      margin: 0 auto;
    }

    .section {
      padding: 90px 0;
    }

    .section-title {
      text-align: center;
      max-width: 720px;
      margin: 0 auto 50px;
    }

    .section-title span {
      display: inline-block;
      padding: 8px 16px;
      margin-bottom: 14px;
      font-size: 0.9rem;
      font-weight: 600;
      border-radius: 999px;
      background: #ffffff;
      border: 1px solid #e6ecf5;
      color: #000000;
    }

    .section-title h2 {
      font-size: clamp(2rem, 5vw, 3rem);
      line-height: 1.15;
      margin-bottom: 12px;
      color: #000000;
    }

    .section-title p {
      color: var(--muted);
      font-size: 1rem;
    }

    /* Header */
    .header {
      position: sticky;
      top: 0;
      z-index: 1000;
      backdrop-filter: blur(12px);
      background: rgba(255, 255, 255, 0.9);
      border-bottom: 1px solid #e6ecf5;
    }

    .navbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 78px;
      gap: 20px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 14px;
      font-weight: 700;
      font-size: 1.05rem;
    }

    .logo-badge {
      width: 48px;
      height: 48px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      font-size: 1.4rem;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      box-shadow: 0 10px 25px rgba(91, 140, 255, 0.35);
    }

    .logo small {
      display: block;
      font-size: 0.78rem;
      font-weight: 400;
      color: var(--muted);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 28px;
    }

    .nav-links a {
      position: relative;
      font-weight: 500;
      color: #000000;
      transition: 0.3s ease;
    }

    .nav-links a:not(.btn):hover {
      color: #9fbeff;
    }

    .nav-links a:not(.btn)::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -6px;
      width: 0;
      height: 2px;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--accent), var(--secondary));
      transition: width 0.3s ease;
    }

    .nav-links a:not(.btn):hover::after {
      width: 100%;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 14px 22px;
      border-radius: 14px;
      font-weight: 600;
      border: 1px solid transparent;
      transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
      cursor: pointer;
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: #ffffff;
      box-shadow: 0 14px 30px rgba(91, 140, 255, 0.35);
    }

    .btn-outline {
      border-color: rgba(0,0,0,0.2);
      background: #ffffff;
      color: #000000;
    }

    .btn-success {
      background: linear-gradient(135deg, #18c46b, #12a8a1);
      color: #ffffff;
      box-shadow: 0 14px 30px rgba(24,196,107,0.25);
    }

    .menu-toggle {
      display: none;
      width: 48px;
      height: 48px;
      border-radius: 12px;
      border: 1px solid rgba(255,255,255,0.14);
      background: rgba(255,255,255,0.06);
      color: white;
      font-size: 1.25rem;
      cursor: pointer;
    }

    /* Hero */
    .hero {
      position: relative;
      padding: 90px 0 70px;
      overflow: hidden;
    }

    .hero::before,
    .hero::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      filter: blur(40px);
      opacity: 0.45;
      z-index: -1;
    }

    .hero::before {
      width: 300px;
      height: 300px;
      background: rgba(0, 194, 255, 0.18);
      top: 0;
      left: -50px;
    }

    .hero::after {
      width: 360px;
      height: 360px;
      background: rgba(143, 92, 255, 0.16);
      right: -80px;
      bottom: 20px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      align-items: center;
      gap: 38px;
    }

    .hero-content .tag {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 16px;
      border-radius: 999px;
      background: #ffffff;
      border: 1px solid #e6ecf5;
      margin-bottom: 22px;
      color: #000000;
      font-weight: 500;
    }

    .hero h1 {
      font-size: clamp(2.6rem, 6vw, 4.8rem);
      line-height: 1.05;
      margin-bottom: 18px;
    }

    .hero p {
      font-size: 1.08rem;
      color: #5b6b85;
      max-width: 640px;
      margin-bottom: 30px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 28px;
    }

    .hero-points {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      color: #d8e3f8;
      font-size: 0.95rem;
    }

    .hero-points span {
      padding: 10px 14px;
      border-radius: 999px;
      background: #ffffff;
      border: 1px solid #e6ecf5;
      color: #1a2a44;
    }

    .hero-card {
      background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.05));
      border: 1px solid rgba(255,255,255,0.14);
      border-radius: 28px;
      padding: 28px;
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
    }

    .hero-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(91,140,255,0.18), transparent 40%, rgba(143,92,255,0.14));
      pointer-events: none;
    }

    .dashboard-card {
      position: relative;
      z-index: 1;
    }

    .dashboard-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 22px;
    }

    .dashboard-top .title {
      font-weight: 700;
      font-size: 1.15rem;
    }

    .dashboard-top .live {
      font-size: 0.85rem;
      color: #ffffff;
      background: rgba(33,195,111,0.9);
      border: none;
      padding: 8px 12px;
      border-radius: 999px;
    }

    .service-mini-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
      margin-bottom: 18px;
    }

    .mini-card {
      padding: 16px;
      border-radius: 18px;
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.12);
    }

    .mini-card strong {
      display: block;
      margin-top: 8px;
      font-size: 0.96rem;
      color: #000000;
    }

    .mini-card p {
      margin-top: 4px;
      color: #000000;
      font-size: 0.83rem;
      margin-bottom: 0;
    }

    .search-box {
      display: flex;
      gap: 10px;
      padding: 10px;
      border-radius: 18px;
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.12);
    }

    .search-box input {
      width: 100%;
      background: transparent;
      border: 0;
      outline: none;
      color: #000000;
      font-family: inherit;
      font-size: 0.96rem;
      padding: 8px 10px;
    }

    .search-box input::placeholder {
      color: #000000;
      opacity: 0.6;
    }

    /* Features */
    .grid-3 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .feature-card,
    .service-card,
    .why-card,
    .stat-card {
      background: #ffffff;
      border: 1px solid #e6ecf5;
      border-radius: var(--radius);
      padding: 28px;
      box-shadow: var(--shadow);
      transition: transform 0.35s ease, box-shadow 0.35s ease;
    }

    .feature-card:hover,
    .service-card:hover,
    .why-card:hover,
    .stat-card:hover {
      transform: translateY(-8px);
      border-color: rgba(159, 190, 255, 0.35);
      box-shadow: 0 24px 50px rgba(0,0,0,0.28);
    }

    .icon-wrap {
      width: 62px;
      height: 62px;
      display: grid;
      place-items: center;
      border-radius: 18px;
      font-size: 1.6rem;
      margin-bottom: 20px;
      background: linear-gradient(135deg, rgba(91,140,255,0.22), rgba(143,92,255,0.2));
      border: 1px solid rgba(255,255,255,0.12);
    }

    .feature-card h3,
    .service-card h3,
    .why-card h3 {
      font-size: 1.2rem;
      margin-bottom: 10px;
      color: #000000;
    }

    .feature-card p,
    .service-card p,
    .why-card p {
      color: #5b6b85;
      font-size: 0.96rem;
    }

    /* Services */
    .section-head-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      margin-bottom: 28px;
      flex-wrap: wrap;
    }

    .service-search {
      width: min(100%, 360px);
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 12px 16px;
      border-radius: 16px;
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.12);
    }

    .service-search input {
      background: transparent;
      border: none;
      outline: none;
      width: 100%;
      color: #000000;
      font-family: inherit;
    }

    .service-search input::placeholder {
      color: #000000;
      opacity: 0.6;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .service-card {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .service-card .btn {
      margin-top: auto;
      width: fit-content;
    }

    /* Why choose */
    .why-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      align-items: stretch;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 26px;
    }

    .stat-card {
      text-align: center;
      padding: 26px 18px;
    }

    .stat-card h3 {
      font-size: clamp(1.8rem, 4vw, 2.4rem);
      margin-bottom: 8px;
      color: #000000;
    }

    .stat-card p {
      color: var(--muted);
    }

    /* CTA */
    .cta-box {
      position: relative;
      padding: 40px;
      border-radius: 32px;
      background: linear-gradient(135deg, rgba(91,140,255,0.18), rgba(143,92,255,0.18));
      border: 1px solid rgba(255,255,255,0.14);
      box-shadow: var(--shadow);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
    }

    .cta-box h2 {
      font-size: clamp(2rem, 4vw, 3rem);
      margin-bottom: 10px;
    }

    .cta-box p {
      color: #dbe6fb;
      max-width: 680px;
    }

    .cta-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    /* Footer */
    .footer {
      background: #ffffff;
      border-top: 1px solid #e6ecf5;
      padding: 30px 0;
    }

    .footer-wrap {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
    }

    .footer-links,
    .social-links {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    .footer a,
    .footer p {
      color: #5b6b85;
      font-size: 0.95rem;
    }

    .social-links a {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border-radius: 12px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.09);
      transition: 0.3s ease;
    }

    .social-links a:hover {
      transform: translateY(-4px);
      background: rgba(255,255,255,0.12);
    }

    /* Animations */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal.active {
      opacity: 1;
      transform: translateY(0);
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .hero-grid,
      .why-grid,
      .grid-3,
      .services-grid {
        grid-template-columns: 1fr 1fr;
      }

      .stats-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 860px) {
      .menu-toggle {
        display: inline-grid;
        place-items: center;
      }

      .nav-links {
        position: absolute;
        top: calc(100% + 10px);
        left: 4%;
        right: 4%;
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        padding: 20px;
        border-radius: 22px;
        background: rgba(9, 18, 36, 0.96);
        border: 1px solid rgba(255,255,255,0.1);
        box-shadow: var(--shadow);
        display: none;
      }

      .nav-links.active {
        display: flex;
      }

      .nav-links .btn {
        width: 100%;
      }

      .hero-grid,
      .grid-3,
      .services-grid,
      .why-grid,
      .service-mini-grid {
        grid-template-columns: 1fr;
      }

      .hero {
        padding-top: 60px;
      }

      .cta-box {
        padding: 28px;
      }
    }

    @media (max-width: 520px) {
      .section {
        padding: 70px 0;
      }

      .hero-actions,
      .cta-actions,
      .hero-points {
        flex-direction: column;
        align-items: stretch;
      }

      .hero-actions .btn,
      .cta-actions .btn {
        width: 100%;
      }

      .logo span {
        font-size: 0.95rem;
      }
    }