body {
      background-color: rgb(16, 16, 16);
    }

    .black {
      background-color: #24396a !important;
    }

    .service-showcase {
      width: 100%;
      min-height: 100vh;
      background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.35), transparent 30%),
        radial-gradient(circle at bottom right, rgba(34, 197, 94, 0.25), transparent 35%),
        linear-gradient(135deg, #020617, #0f172a 55%, #111827);
      color: #fff;
      overflow-x: hidden;
    }

    .hero-section {
      width: 100%;
      min-height: 620px;
      padding: 90px 7%;
      display: flex;
      align-items: center;
      background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.96), rgba(2, 6, 23, 0.72), rgba(2, 6, 23, 0.35)),
        url("https://static.vecteezy.com/system/resources/thumbnails/011/153/363/small_2x/3d-web-developer-working-on-project-illustration-png.png") center/cover no-repeat;
    }

    .hero-content {
      max-width: 720px;
    }

    .tag {
      display: inline-block;
      padding: 8px 18px;
      border-radius: 999px;
      background: rgba(34, 197, 94, 0.15);
      border: 1px solid rgba(34, 197, 94, 0.45);
      color: #86efac;
      font-weight: 700;
      margin-bottom: 18px;
    }

    .hero-content h1 {
      font-size: clamp(2.4rem, 6vw, 5rem);
      font-weight: 900;
      line-height: 1.05;
      margin-bottom: 20px;
    }

    .hero-content p {
      font-size: 1.1rem;
      color: rgba(255, 255, 255, 0.78);
      max-width: 620px;
    }

    .btn-main {
      border: 0;
      border-radius: 999px;
      padding: 13px 28px;
      font-weight: 800;
      color: white;
      background: linear-gradient(135deg, #2563eb, #22c55e);
      box-shadow: 0 14px 35px rgba(37, 99, 235, 0.35);
    }

    .btn-main:hover {
      color: white;
      transform: translateY(-2px);
    }

    .btn-soft {
      border-radius: 999px;
      padding: 13px 28px;
      font-weight: 700;
      color: white;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.25);
    }

    .stats-strip {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      background: rgba(15, 23, 42, 0.92);
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .stat-box {
      padding: 28px;
      text-align: center;
      border-right: 1px solid rgba(255, 255, 255, 0.08);
    }

    .stat-box:last-child {
      border-right: 0;
    }

    .stat-box h3 {
      font-weight: 900;
      margin-bottom: 5px;
    }

    .stat-box span {
      color: rgba(255, 255, 255, 0.62);
    }

    .content-area {
      width: 100%;
      padding: 70px 7%;
      background: #2f2f40;
      color: #0f172a;
    }

    .section-head {
      max-width: 760px;
      margin: 0 auto 45px;
      text-align: center;
    }

    .section-head h2 {
      font-size: clamp(2rem, 4vw, 3.3rem);
      font-weight: 900;
    }

    .section-head p {
      color: #64748b;
      font-size: 1.05rem;
    }

    .feature-card {
      height: 100%;
      padding: 28px;
      border-radius: 26px;
      background: rgb(119, 125, 176);
      border: 1px solid #e2e8f0;
      box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
      transition: 0.3s ease;
    }

    .feature-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 26px 65px rgba(15, 23, 42, 0.14);
    }

    .feature-icon {
      width: 58px;
      height: 58px;
      display: grid;
      place-items: center;
      border-radius: 18px;
      background: linear-gradient(135deg, #eff6ff, #dcfce7);
      font-size: 1.7rem;
      margin-bottom: 18px;
    }

    .pricing-section {
      padding: 75px 7%;
      background:
        radial-gradient(circle at top right, rgba(37, 99, 235, 0.22), transparent 30%),
        #020617;
    }

    .pricing-card {
      height: 100%;
      padding: 32px;
      border-radius: 30px;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.14);
      backdrop-filter: blur(18px);
      box-shadow: 0 25px 65px rgba(0, 0, 0, 0.35);
      transition: 0.3s ease;
    }

    .pricing-card:hover {
      transform: translateY(-10px);
    }

    .pricing-card.popular {
      border: 1px solid rgba(34, 197, 94, 0.65);
      background: linear-gradient(135deg, rgba(37, 99, 235, 0.18), rgba(34, 197, 94, 0.16));
    }

    .plan-name {
      font-size: 1.3rem;
      font-weight: 900;
    }

    .plan-price {
      font-size: 2.8rem;
      font-weight: 900;
      margin: 18px 0 5px;
    }

    .plan-price small {
      font-size: 1rem;
      color: rgba(255, 255, 255, 0.6);
    }

    .plan-desc {
      color: rgba(255, 255, 255, 0.65);
      min-height: 48px;
    }

    .plan-list {
      list-style: none;
      padding: 0;
      margin: 25px 0;
    }

    .plan-list li {
      margin-bottom: 12px;
      color: rgba(255, 255, 255, 0.78);
    }

    .plan-list li::before {
      content: "✓";
      color: #22c55e;
      font-weight: 900;
      margin-right: 10px;
    }

    @media (max-width: 768px) {
      .hero-section {
        min-height: 560px;
        padding: 65px 22px;
        text-align: center;
        justify-content: center;
      }

      .hero-content p {
        margin: auto;
      }

      .stats-strip {
        grid-template-columns: repeat(2, 1fr);
      }

      .content-area,
      .pricing-section {
        padding: 50px 18px;
      }
    }

    @media (max-width: 480px) {
      .stats-strip {
        grid-template-columns: 1fr;
      }

      .stat-box {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      }

      .btn-main,
      .btn-soft {
        width: 100%;
        margin-bottom: 10px;
      }
    }
