  @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;900&family=Orbitron:wght@700;900&display=swap');

  :root {
      --bg: #020510;
      --surface: #080d1f;
      --card: #0d1530;
      --accent: #4f8ef7;
      --accent2: #a855f7;
      --accent3: #06d6a0;
      --text: #e8eaf6;
      --muted: #7986cb;
      --border: rgba(79, 142, 247, 0.18);
      --glow: 0 0 40px rgba(79, 142, 247, 0.25);
  }

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

  html {
      scroll-behavior: smooth;
  }

  body {
      font-family: 'Inter', sans-serif;
      background: var(--bg);
      color: var(--text);
      overflow-x: hidden;
      line-height: 1.6;
  }

  /* ── STARS BG ── */
  #stars {
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      background: radial-gradient(ellipse at 20% 30%, rgba(79, 142, 247, 0.07) 0%, transparent 60%),
          radial-gradient(ellipse at 80% 70%, rgba(168, 85, 247, 0.07) 0%, transparent 60%);
  }

  #stars canvas {
      width: 100%;
      height: 100%;
  }

  /* ── NAV ── */
  nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 6%;
      height: 70px;
      background: rgba(2, 5, 16, 0.75);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid var(--border);
      transition: background .3s;
  }

  .logo {
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .logo .dot {
    font-size: 2.5rem;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      transform: translateY(-8px);
  }

  .logo .txt span {
    display: block;
    font-family: 'Orbitron', sans-serif;
      font-size: 1.25rem;
      font-weight: 900;
      background: linear-gradient(90deg, var(--accent), var(--accent2));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      letter-spacing: 2px;
      line-height: 1;
  }

  nav ul {
      list-style: none;
      display: flex;
      gap: 2rem;
  }

  nav ul a {
      color: var(--muted);
      text-decoration: none;
      font-size: .875rem;
      font-weight: 500;
      letter-spacing: .5px;
      transition: color .2s;
  }

  nav ul a:hover {
      color: var(--accent);
  }

  .nav-cta {
      background: linear-gradient(135deg, var(--accent), var(--accent2));
      color: #fff !important;
      -webkit-text-fill-color: #fff !important;
      padding: .45rem 1.2rem;
      border-radius: 50px;
      font-weight: 600 !important;
      transition: opacity .2s !important;
  }

  .nav-cta:hover {
      opacity: .85;
      color: #fff !important;
  }

  /* ── HERO ── */
  .hero {
      position: relative;
      z-index: 1;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 120px 6% 80px;
  }

  .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      border-radius: 50px;
      padding: .35rem 1rem;
      margin-bottom: 2rem;
      font-size: .78rem;
      font-weight: 600;
      letter-spacing: 1px;
      color: var(--accent);
      text-transform: uppercase;
  }

  .hero-badge .dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--accent3);
      animation: pulse 1.5s infinite;
  }

  @keyframes pulse {

      0%,
      100% {
          opacity: 1;
          transform: scale(1)
      }

      50% {
          opacity: .4;
          transform: scale(.7)
      }
  }

  h1 {
      font-family: 'Orbitron', sans-serif;
      font-size: clamp(2.4rem, 6vw, 5rem);
      font-weight: 900;
      line-height: 1.1;
      margin-bottom: 1.5rem;
      background: linear-gradient(135deg, #fff 30%, var(--accent) 60%, var(--accent2));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
  }

  .hero p {
      max-width: 600px;
      font-size: 1.1rem;
      color: var(--muted);
      margin-bottom: 2.5rem;
  }

  .hero-btns {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      justify-content: center;
  }

  .btn-primary {
      background: linear-gradient(135deg, var(--accent), var(--accent2));
      color: #fff;
      border: none;
      padding: .85rem 2.2rem;
      border-radius: 50px;
      font-size: 1rem;
      font-weight: 700;
      cursor: pointer;
      letter-spacing: .5px;
      box-shadow: 0 0 30px rgba(79, 142, 247, 0.4);
      transition: transform .2s, box-shadow .2s;
      text-decoration: none;
      display: inline-block;
  }

  .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 0 45px rgba(79, 142, 247, 0.6);
  }

  .btn-outline {
      background: transparent;
      color: var(--text);
      border: 1px solid var(--border);
      padding: .85rem 2.2rem;
      border-radius: 50px;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: border-color .2s, color .2s;
      text-decoration: none;
      display: inline-block;
  }

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

  /* orbit animation */
  .orbit-wrap {
      position: relative;
      margin-top: 4rem;
      width: 320px;
      height: 320px;
  }

  .orbit-center {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 100px;
      height: 100px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--accent), var(--accent2));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2.5rem;
      box-shadow: var(--glow);
      animation: breathe 3s ease-in-out infinite;
  }

  @keyframes breathe {

      0%,
      100% {
          box-shadow: 0 0 30px rgba(79, 142, 247, .5)
      }

      50% {
          box-shadow: 0 0 70px rgba(168, 85, 247, .8)
      }
  }

  .ring {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      border-radius: 50%;
      border: 1px solid var(--border);
      animation: spin linear infinite;
  }

  .ring1 {
      width: 180px;
      height: 180px;
      animation-duration: 8s;
  }

  .ring2 {
      width: 260px;
      height: 260px;
      animation-duration: 14s;
      animation-direction: reverse;
  }

  .ring3 {
      width: 320px;
      height: 320px;
      animation-duration: 20s;
  }

  @keyframes spin {
      to {
          transform: translate(-50%, -50%) rotate(360deg)
      }
  }

  .orbit-dot {
      position: absolute;
      top: -5px;
      left: 50%;
      transform: translateX(-50%);
      width: 10px;
      height: 10px;
      border-radius: 50%;
  }

  .od1 {
      background: var(--accent);
  }

  .od2 {
      background: var(--accent2);
      top: auto;
      bottom: -5px;
  }

  .od3 {
      background: var(--accent3);
  }

  /* ── SECTIONS ── */
  section {
      position: relative;
      z-index: 1;
  }

  .section-wrap {
      max-width: 1200px;
      margin: 0 auto;
      padding: 100px 6%;
  }

  .section-label {
      display: inline-block;
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 1rem;
  }

  .section-title {
      font-family: 'Orbitron', sans-serif;
      font-size: clamp(1.6rem, 3.5vw, 2.6rem);
      font-weight: 900;
      margin-bottom: 1rem;
      background: linear-gradient(135deg, #fff, var(--muted));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
  }

  .section-sub {
      color: var(--muted);
      max-width: 550px;
      margin-bottom: 3.5rem;
  }

  /* ── STATS ── */
  .stats-bar {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
      margin: 0 6% 0;
  }

  .stat-item {
      background: var(--surface);
      padding: 2rem 1.5rem;
      text-align: center;
  }

  .stat-num {
      font-family: 'Orbitron', sans-serif;
      font-size: 2rem;
      font-weight: 900;
      background: linear-gradient(135deg, var(--accent), var(--accent2));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
  }

  .stat-label {
      font-size: .8rem;
      color: var(--muted);
      margin-top: .3rem;
      letter-spacing: .5px;
  }

  /* ── SERVICES ── */
  .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.5rem;
  }

  .service-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 2rem;
      transition: transform .3s, border-color .3s, box-shadow .3s;
      cursor: default;
  }

  .service-card:hover {
      transform: translateY(-6px);
      border-color: var(--accent);
      box-shadow: 0 20px 60px rgba(79, 142, 247, 0.15);
  }

  .service-icon {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      margin-bottom: 1.2rem;
  }

  .si-blue {
      background: rgba(79, 142, 247, 0.15);
  }

  .si-purple {
      background: rgba(168, 85, 247, 0.15);
  }

  .si-green {
      background: rgba(6, 214, 160, 0.15);
  }

  .si-orange {
      background: rgba(251, 146, 60, 0.15);
  }

  .si-pink {
      background: rgba(236, 72, 153, 0.15);
  }

  .si-cyan {
      background: rgba(34, 211, 238, 0.15);
  }

  .service-card h3 {
      font-size: 1.05rem;
      font-weight: 700;
      margin-bottom: .6rem;
  }

  .service-card p {
      font-size: .875rem;
      color: var(--muted);
      line-height: 1.7;
  }

  /* ── HOW IT WORKS ── */
  .steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 2rem;
      position: relative;
  }

  .step {
      text-align: center;
      padding: 2rem 1rem;
  }

  .step-num {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--accent), var(--accent2));
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Orbitron', sans-serif;
      font-size: 1.1rem;
      font-weight: 900;
      margin: 0 auto 1.2rem;
      box-shadow: var(--glow);
  }

  .step h3 {
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: .5rem;
  }

  .step p {
      font-size: .85rem;
      color: var(--muted);
  }

  /* ── WHY CHOOSE US ── */
  .why-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
  }

  .why-list {
      display: flex;
      flex-direction: column;
      gap: 1.2rem;
  }

  .why-item {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 1.2rem 1.4rem;
      transition: border-color .2s;
  }

  .why-item:hover {
      border-color: var(--accent);
  }

  .why-icon {
      font-size: 1.4rem;
      flex-shrink: 0;
      margin-top: .1rem;
  }

  .why-item h4 {
      font-size: .95rem;
      font-weight: 700;
      margin-bottom: .25rem;
  }

  .why-item p {
      font-size: .82rem;
      color: var(--muted);
  }

  .why-visual {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 2.5rem;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
  }

  .signal-bar {
      display: flex;
      flex-direction: column;
      gap: .4rem;
  }

  .bar-label {
      display: flex;
      justify-content: space-between;
      font-size: .8rem;
      color: var(--muted);
  }

  .bar-track {
      height: 8px;
      background: rgba(255, 255, 255, .06);
      border-radius: 50px;
      overflow: hidden;
  }

  .bar-fill {
      height: 100%;
      border-radius: 50px;
      animation: fillBar 2s ease forwards;
  }

  @keyframes fillBar {
      from {
          width: 0
      }
  }

  .bf-blue {
      background: linear-gradient(90deg, var(--accent), var(--accent2));
      width: 92%;
  }

  .bf-green {
      background: linear-gradient(90deg, var(--accent3), #34d399);
      width: 88%;
  }

  .bf-purple {
      background: linear-gradient(90deg, var(--accent2), #ec4899);
      width: 95%;
  }

  .bf-orange {
      background: linear-gradient(90deg, #fb923c, #f59e0b);
      width: 80%;
  }

  /* ── PLANS ── */
  .plans-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
      align-items: start;
  }

  .plan-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 2.5rem 2rem;
      position: relative;
      transition: transform .3s, box-shadow .3s;
  }

  .plan-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 24px 60px rgba(0, 0, 0, .4);
  }

  .plan-popular {
      border-color: var(--accent);
      background: linear-gradient(135deg, rgba(79, 142, 247, .08), rgba(168, 85, 247, .08));
      box-shadow: 0 0 40px rgba(79, 142, 247, .2);
  }

  .popular-badge {
      position: absolute;
      top: -14px;
      left: 50%;
      transform: translateX(-50%);
      background: linear-gradient(135deg, var(--accent), var(--accent2));
      color: #fff;
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: 1.5px;
      padding: .3rem 1.2rem;
      border-radius: 50px;
      white-space: nowrap;
      text-transform: uppercase;
  }

  .plan-name {
      font-size: .8rem;
      font-weight: 700;
      letter-spacing: 2px;
      color: var(--accent);
      text-transform: uppercase;
      margin-bottom: .8rem;
  }

  .plan-price {
      margin-bottom: 1.5rem;
  }

  .plan-price .amount {
      font-family: 'Orbitron', sans-serif;
      font-size: 2.5rem;
      font-weight: 900;
  }

  .plan-price .period {
      font-size: .85rem;
      color: var(--muted);
  }

  .plan-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: .7rem;
      margin-bottom: 2rem;
  }

  .plan-features li {
      display: flex;
      align-items: center;
      gap: .6rem;
      font-size: .875rem;
      color: var(--muted);
  }

  .plan-features li::before {
      content: '✦';
      color: var(--accent3);
      font-size: .65rem;
      flex-shrink: 0;
  }

  /* ── TESTIMONIALS ── */
  .testi-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.5rem;
  }

  .testi-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 2rem;
      transition: border-color .2s;
  }

  .testi-card:hover {
      border-color: var(--accent2);
  }

  .stars {
      color: #f59e0b;
      font-size: .85rem;
      margin-bottom: 1rem;
      letter-spacing: 2px;
  }

  .testi-text {
      font-size: .9rem;
      color: var(--muted);
      line-height: 1.8;
      margin-bottom: 1.5rem;
      font-style: italic;
  }

  .testi-author {
      display: flex;
      align-items: center;
      gap: .8rem;
  }

  .avatar {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      font-weight: 700;
      color: #fff;
  }

  .av1 {
      background: linear-gradient(135deg, var(--accent), var(--accent2));
  }

  .av2 {
      background: linear-gradient(135deg, var(--accent2), #ec4899);
  }

  .av3 {
      background: linear-gradient(135deg, var(--accent3), var(--accent));
  }

  .author-name {
      font-weight: 700;
      font-size: .9rem;
  }

  .author-role {
      font-size: .78rem;
      color: var(--muted);
  }

  /* ── CONTACT ── */
  .contact-wrap {
      display: flex;
      justify-content: center;
      align-items: center;
  }

  .contact-info {
    max-width: 500px;
  }

  .contact-info h2 {
      text-align: center;
      line-height: 1;
  }

  .contact-info p {
    text-align: center;
      line-height: 1.4;
      color: var(--muted);
      margin-bottom: 2rem;
  }

  .contact-items {
      display: flex;
      flex-direction: column;
      gap: 1rem;
  }

  .ci {
      display: flex;
      gap: 1rem;
      align-items: center;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 1rem 1.2rem;
  }

  .ci-icon {
      font-size: 1.3rem;
  }

  .ci-label {
      font-size: .75rem;
      color: var(--muted);
  }

  .ci-val {
      font-size: .9rem;
      font-weight: 600;
  }

  .contact-form {
      display: flex;
      flex-direction: column;
      gap: 1rem;
  }

  .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
  }

  .form-group {
      display: flex;
      flex-direction: column;
      gap: .4rem;
  }

  .form-group label {
      font-size: .78rem;
      font-weight: 600;
      color: var(--muted);
      letter-spacing: .5px;
      text-transform: uppercase;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: .8rem 1rem;
      color: var(--text);
      font-family: 'Inter', sans-serif;
      font-size: .9rem;
      outline: none;
      transition: border-color .2s, box-shadow .2s;
      resize: none;
  }

  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus {
      border-color: var(--accent);
      box-shadow: 0 0 0 3px rgba(79, 142, 247, .12);
  }

  .form-group select option {
      background: var(--card);
  }

  /* ── FOOTER ── */
  footer {
      position: relative;
      z-index: 1;
      border-top: 1px solid var(--border);
      padding: 4rem 6% 2rem;
  }

  .footer-grid {
      display: flex;
      justify-content: space-around;
      gap: 3rem;
      margin-bottom: 3rem;
  }

  .footer-brand {
      max-width: 280px;
  }

  .footer-brand p {
      font-size: .85rem;
      color: var(--muted);
      line-height: 1.8;
  }

  .footer-col h4 {
      font-size: .85rem;
      font-weight: 700;
      letter-spacing: 1px;
      margin-bottom: 1.2rem;
      color: var(--text);
  }

  .footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: .6rem;
  }

  .footer-col ul a {
      font-size: .83rem;
      color: var(--muted);
      text-decoration: none;
      transition: color .2s;
  }

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

  .footer-bottom {
      border-top: 1px solid var(--border);
      padding-top: 1.5rem;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      gap: .5rem;
  }

  .footer-bottom p {
      font-size: .78rem;
      color: var(--muted);
  }

  .socials {
      display: flex;
      gap: 1rem;
  }

  .social-btn {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 1px solid var(--border);
      background: var(--card);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .85rem;
      cursor: pointer;
      transition: border-color .2s, transform .2s;
      text-decoration: none;
  }

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

  /* ── CTA BANNER ── */
  .cta-banner {
      margin: 0 6% 0;
      background: linear-gradient(135deg, rgba(79, 142, 247, .15), rgba(168, 85, 247, .15));
      border: 1px solid var(--border);
      border-radius: 28px;
      padding: 4rem 3rem;
      text-align: center;
      position: relative;
      overflow: hidden;
  }

  .cta-banner::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 50% 50%, rgba(79, 142, 247, .1), transparent 70%);
  }

  .cta-banner h2 {
      font-family: 'Orbitron', sans-serif;
      font-size: clamp(1.4rem, 3vw, 2.2rem);
      font-weight: 900;
      margin-bottom: 1rem;
      position: relative;
  }

  .cta-banner p {
      color: var(--muted);
      margin-bottom: 2rem;
      position: relative;
  }

  @media(max-width:900px) {

      .why-grid {
          grid-template-columns: 1fr;
      }
  }

  @media(max-width:600px) {
      .footer-grid {
          flex-direction: column;
      }

      .stats-bar {
          grid-template-columns: 1fr 1fr;
      }
  }