:root {
      --bg: #050816;
      --card: #0b1020;
      --accent: #ff7a00;
      --text: #f5f5f5;
      --muted: #a0a0b8;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: radial-gradient(circle at top, #1b1f3b 0, #050816 55%, #02010a 100%);
      color: var(--text);
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 40px 16px;
    }

    .services-section {
      max-width: 1200px;
      width: 100%;
      animation: fadeIn 0.9s ease forwards;
      opacity: 0;
      transform: translateY(20px);
    }

    .services-eyebrow {
      text-transform: uppercase;
      letter-spacing: 0.18em;
      font-size: 0.8rem;
      color: var(--accent);
      margin-bottom: 8px;
    }

    .services-title {
      font-size: clamp(2rem, 3vw, 2.6rem);
      font-weight: 700;
      margin-bottom: 10px;
    }

    .services-subtitle {
      font-size: 1rem;
      color: var(--muted);
      max-width: 520px;
      margin-bottom: 28px;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
      gap: 20px;
    }

    .service-card {
      position: relative;
      background: radial-gradient(circle at top left, #1b2340 0, #0b1020 55%, #050816 100%);
      border-radius: 20px;
      padding: 22px 20px 20px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.04);
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
      cursor: default;
      transform-origin: center;
      animation: floatIn 0.7s ease forwards;
      opacity: 0;
    }

    .service-card:nth-child(1) { animation-delay: 0.05s; }
    .service-card:nth-child(2) { animation-delay: 0.12s; }
    .service-card:nth-child(3) { animation-delay: 0.19s; }
    .service-card:nth-child(4) { animation-delay: 0.26s; }
    .service-card:nth-child(5) { animation-delay: 0.33s; }
    .service-card:nth-child(6) { animation-delay: 0.40s; }
    .service-card:nth-child(7) { animation-delay: 0.47s; }
    .service-card:nth-child(8) { animation-delay: 0.54s; }
    .service-card:nth-child(9) { animation-delay: 0.61s; }
    .service-card:nth-child(10) { animation-delay: 0.68s; }
    .service-card:nth-child(11) { animation-delay: 0.75s; }

    .service-glow {
      position: absolute;
      inset: -40%;
      background: radial-gradient(circle at top, rgba(255, 122, 0, 0.16), transparent 60%);
      opacity: 0;
      transition: opacity 0.4s ease;
      pointer-events: none;
    }

    .service-card:hover .service-glow {
      opacity: 1;
    }

    .service-icon {
      width: 56px;
      height: 56px;
      border-radius: 18px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 14px;
      position: relative;
      z-index: 1;
      background: radial-gradient(circle at 30% 0, #fff 0, #ffe1c4 30%, #ff7a00 100%);
      box-shadow: 0 10px 25px rgba(255, 122, 0, 0.55);
      transform: translateY(0);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .service-card:hover .service-icon {
      transform: translateY(-4px) scale(1.03);
      box-shadow: 0 16px 35px rgba(255, 122, 0, 0.7);
    }

    .service-icon span {
      font-size: 30px;
    }

    .service-title {
      font-size: 1.05rem;
      font-weight: 600;
      margin-bottom: 6px;
      position: relative;
      z-index: 1;
    }

    .service-text {
      font-size: 0.92rem;
      color: var(--muted);
      line-height: 1.5;
      position: relative;
      z-index: 1;
      margin-bottom: 10px;
    }

    .service-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: 4px;
      position: relative;
      z-index: 1;
    }

    .service-tag {
      font-size: 0.72rem;
      padding: 4px 8px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      color: #e6e6ff;
      background: linear-gradient(120deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
      backdrop-filter: blur(6px);
    }

    .service-pulse {
      position: absolute;
      width: 90px;
      height: 90px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.08);
      top: -30px;
      right: -30px;
      animation: pulse 3.2s ease-out infinite;
      opacity: 0.6;
    }

    .service-pulse::after {
      content: "";
      position: absolute;
      inset: 10px;
      border-radius: inherit;
      border: 1px solid rgba(255, 255, 255, 0.08);
      animation: pulse 3.2s ease-out infinite;
      animation-delay: 0.6s;
    }

    @keyframes fadeIn {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes floatIn {
      from {
        opacity: 0;
        transform: translateY(18px) scale(0.98);
      }
      to {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    @keyframes pulse {
      0% {
        transform: scale(0.9);
        opacity: 0.4;
      }
      70% {
        transform: scale(1.15);
        opacity: 0;
      }
      100% {
        transform: scale(1.15);
        opacity: 0;
      }
    }

    @media (max-width: 720px) {
      body {
        padding: 28px 14px;
      }
      .services-subtitle {
        max-width: none;
      }
    }