/* ===========================================
   SERVICES PAGE REDESIGN — Funded Company Level
   Premium, calm, structured, Apple-inspired
   Matches homepage visual language exactly
   =========================================== */

/* ========== HERO SECTION — Enhanced with search + floating stats ========== */

.sp-hero {
  background: linear-gradient(180deg, #F0F6FF 0%, #FFFFFF 100%);
  padding: 150px 0 80px;
  position: relative;
  overflow: visible;
  z-index: 2;
}

/* Animated floating shapes */
.sp-hero__shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.5;
  filter: blur(60px);
  overflow: hidden;
}

.sp-hero__shape--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(47, 128, 237, 0.12) 0%, transparent 70%);
  top: -120px;
  right: -80px;
  animation: sp-shape-float 18s ease-in-out infinite;
}

.sp-hero__shape--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
  bottom: -100px;
  left: -80px;
  animation: sp-shape-float 22s ease-in-out infinite reverse;
}

.sp-hero__shape--3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
  top: 40%;
  left: 50%;
  animation: sp-shape-float 15s ease-in-out infinite;
  animation-delay: -5s;
}

@keyframes sp-shape-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(25px, -20px) scale(1.05); }
  66% { transform: translate(-15px, 15px) scale(0.95); }
}

.sp-hero__container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
  text-align: center;
}

.sp-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #2F80ED;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.sp-hero__eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2F80ED;
  animation: sp-dot-pulse 2s ease-in-out infinite;
}

@keyframes sp-dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.sp-hero__title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 850;
  color: #111827;
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin: 0 0 20px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

/* Gradient highlight text */
.sp-hero__highlight {
  background: linear-gradient(135deg, #2F80ED 0%, #56CCF2 60%, #6366F1 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: sp-highlight-shift 5s ease-in-out infinite;
}

@keyframes sp-highlight-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.sp-hero__sub {
  font-size: 18px;
  color: #6B7280;
  line-height: 1.65;
  margin: 0 0 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ========== HERO SEARCH BOX ========== */

.sp-search {
  max-width: 640px;
  margin: 0 auto 44px;
  position: relative;
  z-index: 10;
}

.sp-search__bar {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #FFFFFF;
  border: 2px solid rgba(47, 128, 237, 0.15);
  border-radius: 18px;
  padding: 8px 8px 8px 20px;
  box-shadow:
    0 4px 20px rgba(47, 128, 237, 0.08),
    0 1px 3px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.sp-search__bar:hover {
  border-color: rgba(47, 128, 237, 0.3);
  box-shadow:
    0 8px 32px rgba(47, 128, 237, 0.12),
    0 1px 3px rgba(0, 0, 0, 0.04);
}

.sp-search__bar:focus-within {
  border-color: #2F80ED;
  box-shadow:
    0 0 0 4px rgba(47, 128, 237, 0.1),
    0 8px 32px rgba(47, 128, 237, 0.15);
}

.sp-search__bar--active {
  border-color: #2F80ED;
}

.sp-search__icon {
  flex-shrink: 0;
  color: #9CA3AF;
  transition: color 0.2s ease;
}

.sp-search__bar:focus-within .sp-search__icon {
  color: #2F80ED;
}

.sp-search__input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 16px;
  font-weight: 500;
  color: #111827;
  font-family: inherit;
  min-width: 0;
}

.sp-search__input::placeholder {
  color: #9CA3AF;
  font-weight: 400;
}

.sp-search__clear {
  display: none;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: none;
  background: #F3F4F6;
  border-radius: 8px;
  cursor: pointer;
  color: #6B7280;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.sp-search__clear:hover {
  background: #E5E7EB;
  color: #111827;
}

.sp-search__btn {
  display: none;
}

.sp-search__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(47, 128, 237, 0.35);
}

.sp-search__btn:active {
  transform: translateY(0);
}

.sp-search__btn:focus-visible {
  outline: 2px solid #2F80ED;
  outline-offset: 2px;
}

/* Autocomplete dropdown */
.sp-search__dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 8px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.12),
    0 1px 3px rgba(0, 0, 0, 0.06);
  max-height: 360px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 100;
}

.sp-search__dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sp-search__result {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 14px;
  border: none;
  background: transparent;
  border-radius: 12px;
  cursor: pointer;
  font-family: inherit;
  font-size: 15px;
  color: #111827;
  text-align: left;
  transition: background 0.15s ease;
}

.sp-search__result:hover,
.sp-search__result--focused {
  background: #F0F6FF;
}

.sp-search__result-icon {
  font-size: 14px;
  color: #6B7280;
  flex-shrink: 0;
  min-width: 40px;
}

.sp-search__result-text {
  flex: 1;
  font-weight: 600;
  min-width: 0;
}

.sp-search__result-tag {
  font-size: 12px;
  font-weight: 600;
  color: #6B7280;
  background: #F3F4F6;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Quick-pick chips */
.sp-search__chips {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.sp-search__chips-label {
  font-size: 13px;
  font-weight: 500;
  color: #9CA3AF;
}

.sp-search__chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 999px;
  padding: 7px 14px;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: inherit;
}

.sp-search__chip:hover {
  background: #FFFFFF;
  border-color: rgba(47, 128, 237, 0.3);
  color: #2F80ED;
  box-shadow: 0 2px 8px rgba(47, 128, 237, 0.1);
  transform: translateY(-1px);
}

.sp-search__chip:focus-visible {
  outline: 2px solid #2F80ED;
  outline-offset: 2px;
}

/* ========== HERO FLOATING STATS ========== */

.sp-hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.sp-hero__stat {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 14px;
  padding: 12px 18px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.sp-hero__stat:hover {
  background: #FFFFFF;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.sp-hero__stat-icon {
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #F0F6FF;
}

.sp-hero__stat-num {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.sp-hero__stat-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: #9CA3AF;
}

/* ========== CATEGORY FILTER BAR ========== */

.sp-filter {
  background: #FFFFFF;
  padding: 0 0 24px;
  position: sticky;
  top: 90px;
  z-index: 50;
  border-bottom: 1px solid #F3F4F6;
}

.sp-filter__container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.sp-filter__scroll {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex: 1;
  padding: 16px 0;
}

.sp-filter__scroll::-webkit-scrollbar {
  display: none;
}

.sp-filter__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #6B7280;
  background: #F9FAFB;
  border: 1px solid #F3F4F6;
  border-radius: 999px;
  padding: 10px 20px;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.25s ease;
}

.sp-filter__pill:hover {
  color: #374151;
  background: #F3F4F6;
  border-color: #E5E7EB;
}

.sp-filter__pill.active {
  color: #FFFFFF;
  background: #2F80ED;
  border-color: #2F80ED;
  box-shadow: 0 2px 8px rgba(47, 128, 237, 0.2);
}

.sp-filter__pill:focus-visible {
  outline: 2px solid #2F80ED;
  outline-offset: 2px;
}

.sp-filter__sort {
  position: relative;
  flex-shrink: 0;
}

.sp-filter__sort-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #6B7280;
  background: #F9FAFB;
  border: 1px solid #F3F4F6;
  border-radius: 12px;
  padding: 10px 18px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.sp-filter__sort-btn:hover {
  color: #374151;
  background: #F3F4F6;
}

.sp-filter__sort-btn.active {
  color: #2F80ED;
  border-color: rgba(47, 128, 237, 0.2);
  background: #EBF5FF;
}

.sp-filter__sort-btn:focus-visible {
  outline: 2px solid #2F80ED;
  outline-offset: 2px;
}

.sp-filter__sort-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #FFFFFF;
  border: 1px solid #F3F4F6;
  border-radius: 16px;
  padding: 8px;
  min-width: 200px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
  z-index: 100;
}

.sp-filter__sort-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sp-filter__sort-option {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  padding: 10px 14px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.15s ease;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
}

.sp-filter__sort-option:hover {
  background: #F9FAFB;
}

.sp-filter__sort-option.active {
  color: #2F80ED;
  background: #EBF5FF;
  font-weight: 600;
}

.sp-filter__sort-option svg {
  opacity: 0;
  width: 16px;
  height: 16px;
  color: #2F80ED;
}

.sp-filter__sort-option.active svg {
  opacity: 1;
}

.sp-filter__sort-option:focus-visible {
  outline: 2px solid #2F80ED;
  outline-offset: -2px;
  border-radius: 10px;
}

/* ========== SERVICES GRID ========== */

.sp-services {
  background: #FFFFFF;
  padding: 64px 0 100px;
}

.sp-services__container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.sp-services__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 12px;
}

.sp-services__title {
  font-size: 28px;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.02em;
  margin: 0;
}

.sp-services__meta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sp-services__count {
  font-size: 14px;
  font-weight: 500;
  color: #9CA3AF;
}

.sp-services__clear {
  font-size: 14px;
  font-weight: 600;
  color: #2F80ED;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
}

.sp-services__clear.show {
  opacity: 1;
  visibility: visible;
}

.sp-services__clear:hover {
  text-decoration: underline;
}

.sp-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* ========== SERVICE CARD ========== */

.sp-card {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.sp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.04);
  border-color: rgba(47, 128, 237, 0.1);
}

.sp-card:focus-within {
  box-shadow: 0 0 0 3px rgba(47, 128, 237, 0.15);
}

.sp-card__image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #F3F4F6;
}

.sp-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.sp-card:hover .sp-card__image img {
  transform: scale(1.04);
}

.sp-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  color: #FFFFFF;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 6px 12px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.sp-card__badge svg {
  width: 12px;
  height: 12px;
}

.sp-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.sp-card__category {
  font-size: 12px;
  font-weight: 700;
  color: #2F80ED;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 8px;
}

.sp-card__name {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.sp-card__desc {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.6;
  margin: 0 0 16px;
  flex: 1;
}

.sp-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.sp-card__rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: #111827;
}

.sp-card__rating svg {
  width: 14px;
  height: 14px;
  color: #FBBF24;
  fill: #FBBF24;
}

.sp-card__reviews {
  font-size: 13px;
  color: #9CA3AF;
}

.sp-card__duration {
  font-size: 13px;
  color: #9CA3AF;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.sp-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid #F3F4F6;
}

.sp-card__price-label {
  font-size: 12px;
  color: #9CA3AF;
  font-weight: 500;
  margin-bottom: 2px;
}

.sp-card__price {
  font-size: 22px;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.02em;
}

.sp-card__price span {
  font-size: 13px;
  font-weight: 500;
  color: #9CA3AF;
  margin-left: 2px;
}

.sp-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: #2F80ED;
  background: #EBF5FF;
  border: none;
  border-radius: 12px;
  padding: 12px 20px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.sp-card__cta:hover {
  background: #2F80ED;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(47, 128, 237, 0.25);
}

.sp-card__cta:focus-visible {
  outline: 2px solid #2F80ED;
  outline-offset: 2px;
}

/* Empty state */
.sp-services__empty {
  display: none;
  text-align: center;
  padding: 80px 24px;
}

.sp-services__empty-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.sp-services__empty h3 {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 8px;
}

.sp-services__empty p {
  font-size: 15px;
  color: #6B7280;
  margin: 0;
}

/* ========== TRUST SECTION ========== */

.sp-trust {
  background: #F9FAFB;
  padding: 100px 0;
}

.sp-trust__container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.sp-trust__header {
  text-align: center;
  margin-bottom: 56px;
}

.sp-trust__eyebrow {
  font-size: 13px;
  font-weight: 700;
  color: #2F80ED;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.sp-trust__title {
  font-size: 36px;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.03em;
  margin: 0;
}

.sp-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.sp-trust__card {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  padding: 32px 28px;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.sp-trust__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
  border-color: rgba(47, 128, 237, 0.1);
}

.sp-trust__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, #EBF4FF 0%, #F0F7FF 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #2F80ED;
  border: 1px solid rgba(47, 128, 237, 0.08);
  transition: all 0.35s ease;
}

.sp-trust__card:hover .sp-trust__icon {
  background: linear-gradient(135deg, #2F80ED 0%, #56A0F5 100%);
  color: #FFFFFF;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(47, 128, 237, 0.25);
}

.sp-trust__card-title {
  font-size: 17px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 8px;
}

.sp-trust__card-desc {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.6;
  margin: 0;
}

/* ========== HOW IT WORKS ========== */

.sp-hiw {
  background: #FFFFFF;
  padding: 100px 0;
}

.sp-hiw__container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.sp-hiw__header {
  text-align: center;
  margin-bottom: 56px;
}

.sp-hiw__eyebrow {
  font-size: 13px;
  font-weight: 700;
  color: #2F80ED;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.sp-hiw__title {
  font-size: 36px;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.03em;
  margin: 0;
}

.sp-hiw__steps {
  display: flex;
  align-items: stretch;
  gap: 0;
  justify-content: center;
}

.sp-hiw__step {
  flex: 1;
  max-width: 320px;
  text-align: center;
  padding: 32px 28px;
  position: relative;
}

.sp-hiw__num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #EBF4FF 0%, #F0F7FF 100%);
  border: 2px solid rgba(47, 128, 237, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 20px;
  font-weight: 800;
  color: #2F80ED;
  transition: all 0.35s ease;
}

.sp-hiw__step:hover .sp-hiw__num {
  background: linear-gradient(135deg, #2F80ED 0%, #56A0F5 100%);
  color: #FFFFFF;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(47, 128, 237, 0.25);
  transform: scale(1.08);
}

.sp-hiw__step-title {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 8px;
}

.sp-hiw__step-desc {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.6;
  margin: 0;
}

/* Connector arrow between steps */
.sp-hiw__connector {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  flex-shrink: 0;
  color: #D1D5DB;
}

.sp-hiw__connector svg {
  width: 28px;
  height: 16px;
}

/* ========== CTA SECTION ========== */

.sp-cta {
  background: #F9FAFB;
  padding: 100px 0;
}

.sp-cta__container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.sp-cta__title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 850;
  color: #111827;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 18px;
}

.sp-cta__sub {
  font-size: 17px;
  color: #6B7280;
  line-height: 1.6;
  margin: 0 0 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.sp-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #2F80ED 0%, #1D6FD3 100%);
  color: #FFFFFF;
  font-size: 17px;
  font-weight: 700;
  padding: 18px 36px;
  border-radius: 16px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 8px 24px rgba(47, 128, 237, 0.3);
}

.sp-cta__btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 36px rgba(47, 128, 237, 0.4);
}

.sp-cta__btn:focus-visible {
  outline: 2px solid #2F80ED;
  outline-offset: 3px;
}

.sp-cta__btn svg {
  transition: transform 0.3s ease;
}

.sp-cta__btn:hover svg {
  transform: translateX(3px);
}

.sp-cta__note {
  display: block;
  margin-top: 16px;
  font-size: 13px;
  color: #9CA3AF;
  font-weight: 500;
}

/* ========== FOOTER — Uses homepage footer styles ========== */

.sp-footer {
  padding: 0 24px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

/* ========== RESPONSIVE — Tablet (1024px) ========== */

@media (max-width: 1024px) {
  .sp-hero {
    padding: 140px 0 64px;
  }

  .sp-search {
    max-width: 560px;
  }

  .sp-trust__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .sp-services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

/* ========== RESPONSIVE — Tablet Small (768px) ========== */

@media (max-width: 768px) {
  .sp-hero {
    padding: 120px 0 56px;
  }

  .sp-hero__title {
    font-size: clamp(30px, 8vw, 42px);
  }

  .sp-hero__sub {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .sp-search {
    max-width: 100%;
  }

  .sp-search__bar {
    border-radius: 14px;
    padding: 6px 6px 6px 16px;
  }

  .sp-search__btn {
    padding: 12px 20px;
    font-size: 14px;
    border-radius: 10px;
  }

  .sp-search__chips {
    gap: 6px;
  }

  .sp-search__chip {
    font-size: 12px;
    padding: 6px 12px;
  }

  .sp-hero__stats {
    gap: 12px;
  }

  .sp-hero__stat {
    padding: 10px 14px;
    border-radius: 12px;
    gap: 8px;
  }

  .sp-hero__stat-icon {
    width: 32px;
    height: 32px;
    font-size: 16px;
    border-radius: 8px;
  }

  .sp-hero__stat-num {
    font-size: 14px;
  }

  .sp-hero__stat-label {
    font-size: 11px;
  }

  .sp-filter {
    top: 0;
    position: relative;
  }

  .sp-filter__container {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .sp-filter__sort {
    align-self: flex-end;
  }

  .sp-services {
    padding: 48px 0 80px;
  }

  .sp-services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .sp-trust {
    padding: 72px 0;
  }

  .sp-trust__title {
    font-size: 30px;
  }

  .sp-hiw {
    padding: 72px 0;
  }

  .sp-hiw__title {
    font-size: 30px;
  }

  .sp-hiw__steps {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .sp-hiw__step {
    max-width: 400px;
    width: 100%;
    padding: 24px 20px;
  }

  .sp-hiw__connector {
    transform: rotate(90deg);
    width: 32px;
    height: 24px;
  }

  .sp-cta {
    padding: 72px 0;
  }
}

/* ========== RESPONSIVE — Mobile (480px) ========== */

@media (max-width: 480px) {
  .sp-hero {
    padding: 100px 0 40px;
  }

  .sp-hero__title {
    font-size: 30px;
  }

  .sp-hero__sub {
    margin-bottom: 28px;
  }

  .sp-search__bar {
    flex-wrap: wrap;
    padding: 10px;
    gap: 8px;
    border-radius: 16px;
  }

  .sp-search__icon {
    order: 0;
  }

  .sp-search__input {
    order: 1;
    flex: 1 1 auto;
    font-size: 15px;
  }

  .sp-search__clear {
    order: 2;
  }

  .sp-search__btn {
    order: 3;
    width: 100%;
    padding: 12px 20px;
    font-size: 15px;
    border-radius: 10px;
  }

  .sp-search__chips-label {
    display: none;
  }

  .sp-hero__stats {
    gap: 8px;
  }

  .sp-hero__stat {
    padding: 8px 12px;
    flex: 1;
    min-width: 0;
  }

  .sp-hero__stat-icon {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }

  .sp-hero__stat-num {
    font-size: 13px;
  }

  .sp-hero__stat-label {
    font-size: 10px;
  }

  .sp-services__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .sp-services__title {
    font-size: 24px;
  }

  .sp-card__body {
    padding: 20px;
  }

  .sp-card__name {
    font-size: 18px;
  }

  .sp-trust__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .sp-trust__card {
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 20px;
  }

  .sp-trust__icon {
    margin: 0;
    flex-shrink: 0;
  }

  .sp-trust__card-title {
    font-size: 16px;
    margin-bottom: 4px;
  }

  .sp-trust__card-desc {
    font-size: 13px;
  }

  .sp-hiw__step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
    padding: 16px;
  }

  .sp-hiw__num {
    margin: 0;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .sp-hiw__connector {
    width: 28px;
    height: 20px;
  }

  .sp-cta__title {
    font-size: 26px;
  }

  .sp-cta__sub {
    font-size: 15px;
  }

  .sp-cta__btn {
    width: 100%;
    justify-content: center;
    font-size: 16px;
    padding: 16px 28px;
  }
}

/* ========== RESPONSIVE — Small Mobile (360px) ========== */

@media (max-width: 380px) {
  .sp-hero {
    padding: 90px 0 36px;
  }

  .sp-hero__title {
    font-size: 26px;
  }

  .sp-hero__sub {
    font-size: 15px;
  }

  .sp-search__chip {
    font-size: 11px;
    padding: 5px 10px;
  }

  .sp-hero__stats {
    flex-direction: column;
    gap: 8px;
  }

  .sp-hero__stat {
    width: 100%;
    justify-content: center;
  }

  .sp-card__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .sp-card__cta {
    width: 100%;
    justify-content: center;
  }

  .sp-filter__pill {
    font-size: 13px;
    padding: 8px 14px;
  }
}


/* ==========================================================
   SERVICE SECTIONS — sv__ namespace
   4-service conversion layout with pricing tables, tiers, chips
   ========================================================== */

/* ========== ANIMATED SEARCH BOX ========== */

@keyframes spSearchGlow {
  0%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(0.95); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.05); }
}

@keyframes spSearchShine {
  0% { left: -100%; }
  100% { left: 200%; }
}

@keyframes spPillFade {
  from { opacity: 0; transform: translateY(8px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes spSearchPlaceholder {
  0%, 18% { content: "What do you need help with?"; }
  20%, 38% { content: "Try \"deep clean my apartment\""; }
  40%, 58% { content: "Try \"mount a TV on the wall\""; }
  60%, 78% { content: "Try \"fix a leaky faucet\""; }
  80%, 98% { content: "Try \"mow my lawn\""; }
}

.sp-search {
  position: relative;
  max-width: 600px;
  margin: 0 auto 20px;
  z-index: 10;
}

.sp-search__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 180%;
  transform: translate(-50%, -50%) scale(0.95);
  background: radial-gradient(ellipse, rgba(47, 128, 237, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  animation: spSearchGlow 3s ease-in-out infinite;
  z-index: -1;
}

.sp-search__inner {
  position: relative;
  display: flex;
  align-items: center;
  background: #FFFFFF;
  border: 2px solid rgba(47, 128, 237, 0.15);
  border-radius: 18px;
  padding: 6px 6px 6px 20px;
  gap: 12px;
  box-shadow:
    0 2px 8px rgba(47, 128, 237, 0.06),
    0 8px 32px rgba(47, 128, 237, 0.08);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
}

/* Shine sweep on hover */
.sp-search__inner::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  pointer-events: none;
  transition: none;
}

.sp-search__inner:hover::after {
  animation: spSearchShine 0.8s ease-in-out;
}

.sp-search:focus-within .sp-search__inner {
  border-color: #2F80ED;
  box-shadow:
    0 0 0 4px rgba(47, 128, 237, 0.12),
    0 8px 32px rgba(47, 128, 237, 0.15);
  transform: scale(1.02);
}

.sp-search:focus-within .sp-search__glow {
  opacity: 1;
  animation: none;
}

.sp-search__icon {
  flex-shrink: 0;
  color: #2F80ED;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.sp-search:focus-within .sp-search__icon {
  transform: scale(1.1);
}

.sp-search__input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 17px;
  font-weight: 500;
  color: #1a1a2e;
  font-family: inherit;
  min-width: 0;
}

.sp-search__input::placeholder {
  color: #94A3B8;
  font-weight: 400;
  transition: color 0.3s;
}

.sp-search__input:focus::placeholder {
  color: #CBD5E1;
}

.sp-search__kbd {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 600;
  color: #94A3B8;
  background: #F1F5F9;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  font-family: inherit;
  user-select: none;
  transition: opacity 0.3s;
}

.sp-search:focus-within .sp-search__kbd {
  opacity: 0;
  pointer-events: none;
  position: absolute;
}

.sp-search__btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, #2F80ED 0%, #1D6FD3 100%);
  color: #FFFFFF;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 2px 12px rgba(47, 128, 237, 0.3);
}

.sp-search__btn:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 20px rgba(47, 128, 237, 0.5);
}

.sp-search__btn:active {
  transform: scale(0.96);
}

/* ---- Dropdown ---- */

.sp-search__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #FFFFFF;
  border: 1px solid rgba(47, 128, 237, 0.12);
  border-radius: 16px;
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.08),
    0 2px 8px rgba(47, 128, 237, 0.06);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.98);
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 100;
  max-height: 360px;
  overflow-y: auto;
}

.sp-search__dropdown.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.sp-search__dropdown-header {
  padding: 8px 12px 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94A3B8;
}

.sp-search__result {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

.sp-search__result:hover,
.sp-search__result.is-active {
  background: #F0F6FF;
}

.sp-search__result-emoji {
  font-size: 22px;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F1F5F9;
  border-radius: 12px;
}

.sp-search__result:hover .sp-search__result-emoji,
.sp-search__result.is-active .sp-search__result-emoji {
  background: #DBEAFE;
}

.sp-search__result-info {
  flex: 1;
  min-width: 0;
}

.sp-search__result-name {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a2e;
}

.sp-search__result-desc {
  font-size: 13px;
  color: #64748B;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sp-search__result-price {
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 700;
  color: #2F80ED;
}

.sp-search__result-arrow {
  flex-shrink: 0;
  color: #CBD5E1;
  transition: all 0.2s;
}

.sp-search__result:hover .sp-search__result-arrow {
  color: #2F80ED;
  transform: translateX(3px);
}

.sp-search__no-results {
  padding: 24px 16px;
  text-align: center;
  color: #94A3B8;
  font-size: 14px;
}

.sp-search__no-results strong {
  display: block;
  font-size: 16px;
  color: #64748B;
  margin-bottom: 4px;
}

/* ---- Quick-pick pills ---- */

/* Pills carousel wrapper */
.sp-pills-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 48px;
}

.sp-pills-carousel__arrow {
  display: none; /* hidden on desktop — pills wrap fine */
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid #E2E8F0;
  background: #fff;
  color: #475569;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  opacity: 0;
  pointer-events: none;
}

.sp-pills-carousel__arrow:hover {
  border-color: #2F80ED;
  color: #2F80ED;
  background: #F0F6FF;
}

.sp-search__pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  flex: 1;
}

.sp-search__pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: #475569;
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  font-family: inherit;
  animation: spPillFade 0.5s ease both;
}

.sp-search__pill:nth-child(1) { animation-delay: 0.05s; }
.sp-search__pill:nth-child(2) { animation-delay: 0.08s; }
.sp-search__pill:nth-child(3) { animation-delay: 0.11s; }
.sp-search__pill:nth-child(4) { animation-delay: 0.14s; }
.sp-search__pill:nth-child(5) { animation-delay: 0.17s; }
.sp-search__pill:nth-child(6) { animation-delay: 0.20s; }
.sp-search__pill:nth-child(7) { animation-delay: 0.23s; }
.sp-search__pill:nth-child(8) { animation-delay: 0.26s; }
.sp-search__pill:nth-child(9) { animation-delay: 0.29s; }
.sp-search__pill:nth-child(10) { animation-delay: 0.32s; }
.sp-search__pill:nth-child(11) { animation-delay: 0.35s; }
.sp-search__pill:nth-child(12) { animation-delay: 0.38s; }
.sp-search__pill:nth-child(13) { animation-delay: 0.41s; }

.sp-search__pill:hover {
  border-color: #2F80ED;
  color: #2F80ED;
  background: #F0F6FF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(47, 128, 237, 0.15);
}

.sp-search__pill:active {
  transform: translateY(0) scale(0.97);
}

/* ---- Responsive ---- */

@media (max-width: 768px) {
  .sp-search {
    max-width: 100%;
  }

  .sp-search__inner {
    padding: 4px 4px 4px 16px;
  }

  .sp-search__input {
    font-size: 15px;
  }

  .sp-search__kbd {
    display: none;
  }

  .sp-search__btn {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .sp-search__pills {
    gap: 6px;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    margin-bottom: 0;
  }

  .sp-search__pills::-webkit-scrollbar {
    display: none;
  }

  .sp-pills-carousel {
    margin-bottom: 32px;
  }

  .sp-pills-carousel__arrow {
    display: inline-flex;
  }

  .sp-search__pill {
    flex-shrink: 0;
    padding: 6px 14px;
    font-size: 12px;
  }
}

/* ========== Hero CTA Buttons (kept for reference) ========== */

.sp-hero__ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.sp-hero__btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #2F80ED 0%, #1D6FD3 100%);
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 32px;
  border: none;
  border-radius: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 4px 16px rgba(47, 128, 237, 0.3);
}

.sp-hero__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(47, 128, 237, 0.4);
}

.sp-hero__btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF;
  color: #2F80ED;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 28px;
  border: 2px solid rgba(47, 128, 237, 0.2);
  border-radius: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.sp-hero__btn-secondary:hover {
  border-color: #2F80ED;
  background: #F0F6FF;
}

/* ========== RESPONSIVE — Hero buttons ========== */

@media (max-width: 768px) {
  .sp-hero__ctas {
    flex-direction: column;
    gap: 12px;
  }

  .sp-hero__btn-primary,
  .sp-hero__btn-secondary {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

/* ===========================================
   SERVICE SHOWCASE — Premium Uniform Cards
   Clean, calm, $20M funded-company aesthetic
   =========================================== */

.svc {
  background: #F8FAFC;
  padding: 88px 0 100px;
  position: relative;
  overflow: hidden;
}

/* Ambient background glow */
.svc::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(47, 128, 237, 0.035) 0%, transparent 70%);
  pointer-events: none;
}

.svc__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ---- Section Header ---- */

.svc__header {
  text-align: center;
  margin-bottom: 56px;
}

.svc__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: #2F80ED;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 16px;
}

.svc__label::before,
.svc__label::after {
  content: '';
  width: 24px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, #2F80ED);
  border-radius: 2px;
}

.svc__label::after {
  background: linear-gradient(90deg, #2F80ED, transparent);
}

.svc__heading {
  font-size: clamp(32px, 4.5vw, 46px);
  font-weight: 850;
  color: #0F172A;
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin: 0 0 14px;
}

.svc__subhead {
  font-size: 18px;
  color: #64748B;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 480px;
}

/* ---- Grid — uniform 3 col ---- */

.svc__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* ---- Card ---- */

.svc__card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  background: #FFFFFF;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.04),
    0 4px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
}

.svc__card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  pointer-events: none;
  transition: border-color 0.4s ease;
}

.svc__card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 20px 50px rgba(47, 128, 237, 0.1),
    0 8px 24px rgba(0, 0, 0, 0.05);
}

.svc__card:hover::after {
  border-color: rgba(47, 128, 237, 0.18);
}

.svc__card:focus-visible {
  outline: 3px solid #2F80ED;
  outline-offset: 3px;
}

/* ---- Visual / Image ---- */

.svc__card-visual {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.svc__card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.svc__card:hover .svc__card-visual img {
  transform: scale(1.06);
}

/* Soft gradient overlay */
.svc__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.04) 100%);
  pointer-events: none;
}

/* Shine sweep */
.svc__card-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(255, 255, 255, 0.22) 50%,
    transparent 80%
  );
  transition: left 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.svc__card:hover .svc__card-shine {
  left: 130%;
}

/* ---- Badge (positioned in image corner) ---- */

.svc__card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 6px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #111827;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.svc__card-badge--blue {
  background: rgba(47, 128, 237, 0.1);
  color: #1D6FD3;
  border-color: rgba(47, 128, 237, 0.12);
  backdrop-filter: blur(12px);
}

.svc__card-badge--green {
  background: rgba(34, 197, 94, 0.1);
  color: #16A34A;
  border-color: rgba(34, 197, 94, 0.12);
  backdrop-filter: blur(12px);
}

.svc__card-badge--emerald {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
  border-color: rgba(16, 185, 129, 0.12);
  backdrop-filter: blur(12px);
}

/* ---- Card Body ---- */

.svc__card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px 24px 22px;
}

/* Icon chip */
.svc__card-chip {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: #F0F6FF;
  color: #2F80ED;
  border: 1px solid rgba(47, 128, 237, 0.08);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  flex-shrink: 0;
}

.svc__card:hover .svc__card-chip {
  background: linear-gradient(135deg, #2F80ED 0%, #56A0F5 100%);
  color: #FFFFFF;
  transform: scale(1.06) rotate(-2deg);
  box-shadow: 0 4px 16px rgba(47, 128, 237, 0.25);
  border-color: transparent;
}

/* Title */
.svc__card-title {
  font-size: 20px;
  font-weight: 780;
  color: #0F172A;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

/* Description */
.svc__card-desc {
  font-size: 14.5px;
  color: #64748B;
  line-height: 1.6;
  margin: 0 0 16px;
  flex: 1;
}

/* ---- Trust row ---- */

.svc__card-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid #F1F5F9;
}

.svc__card-stars {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 700;
  color: #0F172A;
}

.svc__card-divider {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #CBD5E1;
  flex-shrink: 0;
}

.svc__card-jobs {
  font-size: 13px;
  color: #94A3B8;
  font-weight: 500;
}

/* ---- Footer / Price row ---- */

.svc__card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.svc__card-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.svc__card-price-label {
  font-size: 12px;
  font-weight: 600;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.svc__card-price-value {
  font-size: 28px;
  font-weight: 850;
  color: #0F172A;
  letter-spacing: -0.03em;
  line-height: 1;
}

/* Arrow CTA circle */
.svc__card-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #F1F5F9;
  color: #64748B;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  flex-shrink: 0;
}

.svc__card:hover .svc__card-arrow {
  background: #2F80ED;
  color: #FFFFFF;
  transform: scale(1.08);
  box-shadow: 0 4px 16px rgba(47, 128, 237, 0.3);
}

.svc__card-arrow svg {
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.svc__card:hover .svc__card-arrow svg {
  transform: translateX(2px);
}

/* ---- Responsive ---- */

@media (max-width: 1024px) {
  .svc {
    padding: 72px 0 84px;
  }

  .svc__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .svc__card-visual {
    height: 200px;
  }

  .svc__header {
    margin-bottom: 44px;
  }
}

@media (max-width: 640px) {
  .svc {
    padding: 56px 0 64px;
  }

  .svc__container {
    padding: 0 16px;
  }

  .svc__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .svc__card {
    border-radius: 18px;
  }

  .svc__card::after {
    border-radius: 18px;
  }

  .svc__card-visual {
    height: 200px;
  }

  .svc__card-body {
    padding: 20px 20px 18px;
  }

  .svc__card-chip {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    margin-bottom: 14px;
  }

  .svc__card-chip svg {
    width: 18px;
    height: 18px;
  }

  .svc__card-title {
    font-size: 18px;
  }

  .svc__card-desc {
    font-size: 14px;
  }

  .svc__card-price-value {
    font-size: 26px;
  }

  .svc__card-arrow {
    width: 40px;
    height: 40px;
  }

  .svc__card-arrow svg {
    width: 18px;
    height: 18px;
  }

  .svc__heading {
    font-size: 28px;
  }

  .svc__subhead {
    font-size: 16px;
  }

  .svc__header {
    margin-bottom: 36px;
  }

  .svc__label::before,
  .svc__label::after {
    width: 16px;
  }
}

@media (max-width: 400px) {
  .svc {
    padding: 48px 0 56px;
  }

  .svc__heading {
    font-size: 25px;
  }

  .svc__card-visual {
    height: 170px;
  }

  .svc__card-trust {
    gap: 8px;
    margin-bottom: 14px;
    padding-bottom: 14px;
  }

  .svc__card-price-value {
    font-size: 24px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .svc__card,
  .svc__card-visual img,
  .svc__card-chip,
  .svc__card-arrow,
  .svc__card-arrow svg,
  .svc__card-shine {
    transition: none !important;
    animation: none !important;
  }

  .svc__card:hover {
    transform: none;
  }

  .svc__card:hover .svc__card-visual img {
    transform: none;
  }

  .svc__card:hover .svc__card-shine {
    left: -100%;
  }
}


