:root {
    /* Color variables */
    --red-50: #fef2f2;
    --red-500: #ef4444;
    --red-600: #dc2626;
    --orange-50: #fff7ed;
    --orange-500: #f97316;
    --orange-600: #ea580c;
    --blue-50: #eff6ff;
    --blue-500: #3b82f6;
    --blue-600: #2563eb;
    --green-50: #f0fdf4;
    --green-500: #22c55e;
    --green-600: #16a34a;
    --purple-50: #faf5ff;
    --purple-500: #a855f7;
    --purple-600: #9333ea;
    --teal-50: #f0fdfa;
    --teal-500: #14b8a6;
    --teal-600: #0d9488;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
  }
  
  .services-section {
    padding: 80px 16px;
    margin-bottom: 60px;
    background: white;
    position: relative;
    overflow: hidden;
  }
  
  .bg-decoration {
    position: absolute;
    width: 384px;
    height: 384px;
    border-radius: 50%;
    filter: blur(96px);
    pointer-events: none;
  }
  
  .bg-decoration-top {
    top: 0;
    right: 0;
    background: rgba(239, 68, 68, 0.05);
  }
  
  .bg-decoration-bottom {
    bottom: 0;
    left: 0;
    background: rgba(249, 115, 22, 0.05);
  }
  
  .container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
  }
  
  .section-header {
    text-align: center;
    margin: 40px auto 64px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
  }
  
  .badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.1) 0%, rgba(217, 119, 6, 0.05) 100%);
    border: 1px solid rgba(217, 119, 6, 0.2);
    padding: 8px 16px;
    border-radius: 50px;
    margin: 0 auto 24px;
    font-size: 14px;
    font-weight: 500;
    max-width: fit-content;
    color: #b45309;
    letter-spacing: 0.5px;
  }
  
  .badge-dot {
    width: 8px;
    height: 8px;
    background: #d97706;
    transition: all 0.3s ease;
    border-radius: 50%;
    animation: pulse 2s infinite;
  }
  
  @keyframes pulse {
    0% {
      transform: scale(0.95);
      box-shadow: 0 0 0 0 rgba(217, 119, 6, 0.7);
    }
    70% {
      transform: scale(1);
      box-shadow: 0 0 0 4px rgba(217, 119, 6, 0);
    }
    100% {
      transform: scale(0.95);
      box-shadow: 0 0 0 0 rgba(217, 119, 6, 0);
    }
  }
  
  .title {
    font-size: clamp(2.25rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 24px;
    background: linear-gradient(to right, rgb(30, 41, 59), rgb(71, 85, 105));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }
  
  .description {
    color: rgb(71, 85, 105);
    max-width: 768px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.75;
  }

  .services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .service-card {
    position: relative;
    border: none;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    overflow: hidden;
    cursor: pointer;
  }
  
  .service-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(-0.5rem);
  }
  
  .card-overlay {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
  }
  
  .service-card:hover .card-overlay {
    opacity: 1;
  }
  
  .red-bg {
    background: var(--red-50);
  }
  .orange-bg {
    background: var(--orange-50);
  }
  .blue-bg {
    background: var(--blue-50);
  }
  .green-bg {
    background: var(--green-50);
  }
  .purple-bg {
    background: var(--purple-50);
  }
  .teal-bg {
    background: var(--teal-50);
  }
  
  .card-content {
    position: relative;
    padding: 1.5rem 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-align: center;
  }
  
  .icon-container {
    margin-bottom: 0.75rem;
    display: flex;
    justify-content: center;
    width: 100%;
  }
  
  .icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
  }
  
  .service-card:hover .icon-wrapper {
    transform: translateY(-8px) scale(1.1);
  }
  
  .icon-wrapper.red {
    background: linear-gradient(135deg, var(--red-500), var(--red-600));
  }
  .icon-wrapper.orange {
    background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  }
  .icon-wrapper.blue {
    background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
  }
  .icon-wrapper.green {
    background: linear-gradient(135deg, var(--green-500), var(--green-600));
  }
  .icon-wrapper.purple {
    background: linear-gradient(135deg, var(--purple-500), var(--purple-600));
  }
  .icon-wrapper.teal {
    background: linear-gradient(135deg, var(--teal-500), var(--teal-600));
  }
  
  .icon {
    color: white;
    font-size: 28px;
    transition: all 0.3s ease;
  }
  
  .icon svg {
    width: 2rem;
    height: 2rem;
  }
  
  .service-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0.25rem 0;
    color: var(--slate-800);
    transition: color 0.3s ease;
    width: 100%;
  }
  
  .service-card:hover .service-title {
    color: var(--slate-900);
  }
  
  .service-description {
    color: var(--slate-600);
    font-size: 0.8rem;
    line-height: 1.5;
    margin-top: 0.15rem;
    width: 100%;
  }
  
  .arrow-container {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--slate-100);
    opacity: 0;
    transition: all 0.3s ease;
    transform: translateX(0);
  }
  
  .service-card:hover .arrow-container {
    opacity: 1;
    transform: translateX(0.25rem);
  }
  
  .arrow-icon {
    width: 1rem;
    height: 1rem;
    color: var(--slate-600);
  }
  
  /* Responsive design */
  @media (min-width: 768px) {
    .container {
      padding: 0 1.5rem;
    }
  
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .title {
      font-size: 3rem;
    }
  }
  
  @media (min-width: 1024px) {
    .container {
      padding: 0 2rem;
    }
  
    .services-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  
    .title {
      font-size: 3rem;
    }
  }
  
  @media (min-width: 1280px) {
    .services-grid {
      gap: 2rem;
    }
  }
  