﻿/* PropertysDeal â€” Services page (redesign) */

:root {
  --sv-orange: #eb8944;
  --sv-orange-dark: #d97732;
  --sv-teal: #1e5f7a;
  --sv-teal-dark: #164a61;
  --sv-text: #1a2b3c;
  --sv-muted: #5c6b7a;
  --sv-light: #f0f4f8;
  --sv-radius: 16px;
  --sv-radius-lg: 24px;
  --sv-shadow: 0 12px 40px rgba(26, 43, 60, 0.1);
  --sv-shadow-sm: 0 4px 20px rgba(26, 43, 60, 0.06);
}

.services-page {
  font-family: 'Inter', sans-serif;
  color: var(--sv-text);
  background: #fff;
  overflow-x: hidden;
}

/* Buttons */
.sv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 12px;
  border: none;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.sv-btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.sv-btn--primary {
  background: #0d6efd;
  color: #fff;
  box-shadow: 0 6px 20px rgba(13, 110, 253, 0.35);
}

.sv-btn--primary:hover {
  background: #0b5ed7;
  color: #fff;
  box-shadow: 0 8px 26px rgba(13, 110, 253, 0.45);
}

.sv-btn--ghost {
  background: #fff;
  color: var(--sv-teal);
  border: 2px solid rgba(30, 95, 122, 0.2);
}

.sv-btn--ghost:hover {
  border-color: var(--sv-teal);
  color: var(--sv-teal);
  background: rgba(30, 95, 122, 0.05);
}

.sv-btn--outline-dark {
  background: transparent;
  color: var(--sv-text);
  border: 2px solid #e2e8f0;
}

.sv-btn--outline-dark:hover {
  border-color: var(--sv-teal);
  color: var(--sv-teal);
}

.sv-btn--white {
  background: #fff;
  color: var(--sv-teal);
}

.sv-btn--white:hover {
  color: var(--sv-teal-dark);
}

.sv-btn--outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.sv-btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.sv-btn--sm {
  padding: 0.5rem 1.1rem;
  font-size: 0.875rem;
}

.sv-btn--lg {
  padding: 0.95rem 1.5rem;
  font-size: 1rem;
}

/* Hero */
.sv-hero {
  position: relative;
  padding: 1.5rem 0 4rem;
  background: linear-gradient(165deg, #f8fafc 0%, #eef4f8 45%, #fff5ee 100%);
  min-height: 520px;
}

.sv-hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.sv-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.sv-hero__orb--1 {
  width: 400px;
  height: 400px;
  background: rgba(30, 95, 122, 0.12);
  top: -120px;
  right: -80px;
}

.sv-hero__orb--2 {
  width: 320px;
  height: 320px;
  background: rgba(235, 137, 68, 0.18);
  bottom: -80px;
  left: -60px;
}

.sv-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30, 95, 122, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 95, 122, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 85%);
}

.sv-hero__container {
  position: relative;
  z-index: 1;
}

.sv-breadcrumb .breadcrumb-item a {
  color: var(--sv-muted);
  font-size: 0.875rem;
  text-decoration: none;
}

.sv-breadcrumb .breadcrumb-item a:hover {
  color: var(--sv-teal);
}

.sv-breadcrumb .breadcrumb-item.active {
  color: #9ca3af;
  font-size: 0.875rem;
}

.sv-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem 0.4rem 0.65rem;
  background: #fff;
  border: 1px solid rgba(30, 95, 122, 0.12);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--sv-teal);
  box-shadow: var(--sv-shadow-sm);
  margin-bottom: 1.25rem;
}

.sv-status-pill > i {
  color: #10b981;
  font-size: 0.95rem;
}

.sv-status-pill__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f59e0b;
  animation: sv-pulse 2s ease infinite;
}

@keyframes sv-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.15);
  }
}

.sv-hero__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--sv-text);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.sv-hero__highlight {
  background: linear-gradient(135deg, var(--sv-teal) 0%, var(--sv-orange) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sv-hero__lead {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--sv-muted);
  max-width: 32rem;
  margin-bottom: 1.75rem;
}

.sv-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Hero visual */
.sv-hero-visual {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sv-hero-visual__main {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 340px;
  padding: 2.5rem 2rem;
  background: #fff;
  border-radius: var(--sv-radius-lg);
  box-shadow: var(--sv-shadow);
  border: 1px solid rgba(30, 95, 122, 0.08);
  text-align: center;
}

.sv-hero-visual__logo {
  margin-bottom: 1rem;
}

.sv-hero-visual__tagline {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sv-orange);
  margin-bottom: 1.25rem;
}

.sv-hero-visual__chips {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sv-hero-visual__chips span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--sv-muted);
  padding: 0.5rem 0.75rem;
  background: var(--sv-light);
  border-radius: 10px;
}

.sv-hero-visual__chips i {
  color: var(--sv-orange);
  width: 1rem;
}

.sv-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(26, 43, 60, 0.12);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--sv-text);
  border: 1px solid rgba(30, 95, 122, 0.08);
  z-index: 3;
  animation: sv-float 5s ease-in-out infinite;
}

.sv-float-card i {
  color: var(--sv-teal);
}

.sv-float-card--1 {
  top: 8%;
  left: 0;
  animation-delay: 0s;
}

.sv-float-card--2 {
  top: 42%;
  right: -4%;
  animation-delay: 1.2s;
}

.sv-float-card--3 {
  bottom: 10%;
  left: 8%;
  animation-delay: 2.4s;
}

@keyframes sv-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Stats */
.sv-stats {
  margin-top: -2.5rem;
  position: relative;
  z-index: 5;
  padding-bottom: 3rem;
}

.sv-stats .container {
  background: linear-gradient(135deg, var(--sv-teal) 0%, var(--sv-teal-dark) 100%);
  border-radius: var(--sv-radius-lg);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--sv-shadow);
}

.sv-stats__item {
  padding: 0.5rem;
  color: #fff;
}

.sv-stats__item strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.2rem;
}

.sv-stats__item span {
  font-size: 0.8125rem;
  opacity: 0.88;
  font-weight: 500;
}

@media (min-width: 768px) {
  .sv-stats__item {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
  }

  .sv-stats .col-md-3:last-child .sv-stats__item {
    border-right: none;
  }
}

/* Section head */
.sv-section {
  padding: 4rem 0;
}

.sv-section--soft {
  background: var(--sv-light);
}

.sv-section-head {
  margin-bottom: 2.5rem;
  max-width: 36rem;
}

.sv-section-head--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.sv-section-head__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sv-orange);
  margin-bottom: 0.5rem;
}

.sv-section-head__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--sv-text);
  margin-bottom: 0.65rem;
  letter-spacing: -0.02em;
}

.sv-section-head__desc {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--sv-muted);
  margin-bottom: 0;
}

/* Bento grid */
.sv-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.25rem;
}

.sv-bento__card {
  grid-column: span 12;
  padding: 1.75rem;
  border-radius: var(--sv-radius-lg);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sv-bento__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sv-shadow);
}

.sv-bento__card--large {
  grid-column: span 12;
}

@media (min-width: 768px) {
  .sv-bento__card {
    grid-column: span 4;
  }

  .sv-bento__card--large {
    grid-column: span 6;
  }
}

.sv-bento__card--teal {
  background: linear-gradient(145deg, var(--sv-teal) 0%, #2a7a9a 100%);
  color: #fff;
}

.sv-bento__card--orange {
  background: linear-gradient(145deg, var(--sv-orange) 0%, #f5a04a 100%);
  color: #fff;
}

.sv-bento__card--light {
  background: #fff;
  border: 1px solid #e8edf2;
  color: var(--sv-text);
}

.sv-bento__card--gradient {
  background: linear-gradient(135deg, #1a3d4f 0%, var(--sv-teal) 50%, var(--sv-orange) 100%);
  color: #fff;
}

.sv-bento__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.sv-bento__card--light .sv-bento__icon {
  background: rgba(235, 137, 68, 0.15);
  color: var(--sv-orange);
}

.sv-bento__card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.sv-bento__card p {
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
  opacity: 0.92;
}

.sv-bento__card--light p {
  color: var(--sv-muted);
  opacity: 1;
}

/* Value cards */
.sv-value-card {
  background: #fff;
  border-radius: var(--sv-radius);
  padding: 1.75rem 1.5rem;
  height: 100%;
  border: 1px solid #e8edf2;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.sv-value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sv-shadow-sm);
  border-color: rgba(30, 95, 122, 0.2);
}

.sv-value-card__num {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(30, 95, 122, 0.06);
  line-height: 1;
}

.sv-value-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(235, 137, 68, 0.12);
  color: var(--sv-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.sv-value-card__icon--teal {
  background: rgba(30, 95, 122, 0.1);
  color: var(--sv-teal);
}

.sv-value-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--sv-text);
}

.sv-value-card p {
  font-size: 0.875rem;
  color: var(--sv-muted);
  line-height: 1.55;
  margin: 0;
}

/* Timeline */
.sv-timeline {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sv-timeline li {
  display: flex;
  gap: 1rem;
  padding-bottom: 1.25rem;
  position: relative;
}

.sv-timeline li:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 17px;
  top: 40px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--sv-orange), rgba(235, 137, 68, 0.2));
}

.sv-timeline__step {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sv-orange), #f5a04a);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sv-timeline li strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--sv-text);
  margin-bottom: 0.15rem;
}

.sv-timeline li span {
  font-size: 0.8125rem;
  color: var(--sv-muted);
}

/* No jobs card */
.sv-no-jobs {
  height: 100%;
  min-height: 320px;
  padding: 2.5rem 2rem;
  background: linear-gradient(160deg, #fff 0%, #f8fafb 100%);
  border-radius: var(--sv-radius-lg);
  border: 1px solid #e8edf2;
  box-shadow: var(--sv-shadow);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.sv-no-jobs::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(235, 137, 68, 0.08);
}

.sv-no-jobs__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  background: #fef3c7;
  color: #b45309;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

.sv-no-jobs__title {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--sv-text);
  margin-bottom: 0.75rem;
  position: relative;
}

.sv-no-jobs__text {
  font-size: 0.975rem;
  line-height: 1.65;
  color: var(--sv-muted);
  margin-bottom: 1.5rem;
  max-width: 28rem;
  position: relative;
}

.sv-no-jobs__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  position: relative;
}

/* Jump navigation */
.sv-jumpnav {
  position: sticky;
  top: 0;
  z-index: 1020;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e8edf2;
  box-shadow: 0 4px 20px rgba(26, 43, 60, 0.04);
}

.sv-jumpnav__inner {
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem 0;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.sv-jumpnav__inner::-webkit-scrollbar {
  display: none;
}

.sv-jumpnav__link {
  flex-shrink: 0;
  padding: 0.45rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--sv-muted);
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.sv-jumpnav__link:hover {
  color: var(--sv-teal);
  background: rgba(30, 95, 122, 0.06);
}

.sv-jumpnav__link.is-active {
  color: #fff;
  background: var(--sv-teal);
  border-color: var(--sv-teal);
}

.sv-jumpnav__link--cta {
  color: var(--sv-primary, #0d6efd);
  border-color: rgba(13, 110, 253, 0.25);
}

.sv-jumpnav__link--cta:hover,
.sv-jumpnav__link--cta.is-active {
  background: #0d6efd;
  border-color: #0d6efd;
  color: #fff;
}

/* Services structure */
.sv-services-block {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.sv-services-group__head {
  margin-bottom: 1.5rem;
  max-width: 36rem;
}

.sv-services-group__head.sv-services-group__head--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.sv-services-group__label {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sv-teal);
  background: rgba(30, 95, 122, 0.08);
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 0.65rem;
}

.sv-services-group__title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--sv-text);
  margin-bottom: 0.4rem;
}

.sv-services-group__desc {
  font-size: 0.9375rem;
  color: var(--sv-muted);
  line-height: 1.6;
  margin: 0;
}

.sv-services-grid {
  display: grid;
  gap: 1.25rem;
}

.sv-services-grid--platform {
  grid-template-columns: repeat(2, 1fr);
}

.sv-services-grid--platform .sv-service-card--wide {
  grid-column: 1 / -1;
}

@media (min-width: 992px) {
  .sv-services-grid--platform {
    grid-template-columns: repeat(3, 1fr);
  }

  .sv-services-grid--platform .sv-service-card--wide {
    grid-column: span 2;
  }
}

.sv-services-grid--guidance {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .sv-services-grid--guidance {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tools strip */
.sv-tools-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin-top: 1.25rem;
  padding: 1.35rem 1.5rem;
  background: linear-gradient(135deg, rgba(13, 110, 253, 0.08) 0%, rgba(30, 95, 122, 0.06) 100%);
  border: 1px solid rgba(13, 110, 253, 0.15);
  border-radius: var(--sv-radius-lg);
}

.sv-tools-strip__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #fff;
  color: #0d6efd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow: var(--sv-shadow-sm);
}

.sv-tools-strip__content {
  flex: 1;
  min-width: 200px;
}

.sv-tools-strip__content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.sv-tools-strip__content p {
  font-size: 0.875rem;
  color: var(--sv-muted);
  margin: 0;
  line-height: 1.5;
}

/* Panel */
.sv-panel {
  background: #fff;
  border-radius: var(--sv-radius-lg);
  border: 1px solid #e8edf2;
  box-shadow: var(--sv-shadow);
  padding: 2.5rem 2rem;
}

.sv-panel--how {
  padding: 2.5rem 2.25rem;
}

/* Service cards */
.sv-service-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--sv-radius-lg);
  overflow: hidden;
  border: 1px solid #e8edf2;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.sv-service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sv-shadow);
  border-color: rgba(13, 110, 253, 0.2);
}

.sv-service-card__head {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  flex-shrink: 0;
}

.sv-service-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.25rem 1.35rem 1.35rem;
}

.sv-service-card__head--blue {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.sv-service-card__head--green {
  background: linear-gradient(135deg, #10b981, #059669);
}

.sv-service-card__head--orange {
  background: linear-gradient(135deg, var(--sv-orange), #f5a04a);
}

.sv-service-card__head--purple {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.sv-service-card__head--teal {
  background: linear-gradient(135deg, var(--sv-teal), #2a8fb8);
}

.sv-service-card__head--indigo {
  background: linear-gradient(135deg, #6366f1, #4f46e5);
}

.sv-service-card__body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--sv-text);
}

.sv-service-card__body p {
  font-size: 0.875rem;
  color: var(--sv-muted);
  margin: 0 0 0.85rem;
  line-height: 1.55;
  flex: 1;
}

.sv-service-card__tags {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.sv-service-card__tags li {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  background: var(--sv-light);
  color: var(--sv-teal);
  border-radius: 999px;
}

.sv-service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 0.85rem;
  border-top: 1px solid #eef2f6;
  font-size: 0.875rem;
  font-weight: 700;
  color: #0d6efd;
  text-decoration: none;
  transition: gap 0.2s ease, color 0.2s ease;
}

.sv-service-card__link:hover {
  color: var(--sv-teal);
  gap: 0.65rem;
}

/* How it works */
.sv-how {
  background: var(--sv-light);
}

.sv-how__intro {
  max-width: 22rem;
}

.sv-how__title {
  font-size: clamp(1.65rem, 3vw, 2.125rem);
  font-weight: 800;
  color: var(--sv-text);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
}

.sv-how__desc {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--sv-muted);
  margin-bottom: 0;
}

.sv-steps {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sv-steps__item {
  display: flex;
  gap: 1.15rem;
  padding-bottom: 1.75rem;
  position: relative;
}

.sv-steps__item:last-child {
  padding-bottom: 0;
}

.sv-steps__item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 52px;
  bottom: 0;
  width: 2px;
  background: #e2e8f0;
}

.sv-steps__num {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--sv-teal);
  color: #fff;
  font-size: 1.0625rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.sv-steps__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--sv-text);
  margin: 0 0 0.35rem;
  line-height: 1.3;
}

.sv-steps__text {
  font-size: 0.9375rem;
  color: var(--sv-muted);
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 991.98px) {
  .sv-how__intro {
    max-width: none;
    text-align: center;
    margin: 0 auto 0.5rem;
  }

  .sv-steps {
    max-width: 32rem;
    margin: 0 auto;
  }
}

/* Audience cards */
.sv-audience-card {
  background: #fff;
  border-radius: var(--sv-radius);
  padding: 1.75rem 1.5rem;
  height: 100%;
  text-align: center;
  border: 1px solid #e8edf2;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sv-audience-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sv-shadow-sm);
}

.sv-audience-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(235, 137, 68, 0.12);
  color: var(--sv-orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.sv-audience-card__icon--teal {
  background: rgba(30, 95, 122, 0.1);
  color: var(--sv-teal);
}

.sv-audience-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--sv-text);
}

.sv-audience-card p {
  font-size: 0.875rem;
  color: var(--sv-muted);
  line-height: 1.5;
  margin: 0;
}

/* Contact */
.sv-contact {
  padding: 4rem 0;
  background: #fff;
}

.sv-contact-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-radius: var(--sv-radius-lg);
  overflow: hidden;
  box-shadow: var(--sv-shadow);
  border: 1px solid #e8edf2;
}

@media (min-width: 992px) {
  .sv-contact-card {
    grid-template-columns: 1fr 1fr;
  }
}

.sv-contact-card__info {
  padding: 2.5rem 2rem;
  background: linear-gradient(160deg, var(--sv-teal) 0%, var(--sv-teal-dark) 100%);
  color: #fff;
}

.sv-contact-card__title {
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 800;
  margin-bottom: 0.85rem;
  color: #fff;
}

.sv-contact-card__text {
  font-size: 0.95rem;
  line-height: 1.65;
  opacity: 0.92;
  margin-bottom: 1.5rem;
}

.sv-contact-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.sv-contact-card__list a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
}

.sv-contact-card__list a:hover {
  text-decoration: underline;
}

.sv-contact-card__list i {
  color: var(--sv-orange);
  width: 1.1rem;
}

.sv-contact-card__actions {
  padding: 2.5rem 2rem;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
}

.sv-contact-card__lead {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--sv-muted);
  margin: 0;
}

.sv-contact-card__note {
  color: var(--sv-muted);
  line-height: 1.5;
}

.sv-contact-card__actions .sv-btn--ghost {
  width: 100%;
  justify-content: center;
}

.sv-contact-card__actions .sv-btn--primary {
  width: 100%;
  justify-content: center;
}

/* Banner */
.sv-banner {
  padding: 0 0 4rem;
}

.sv-banner__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2.5rem 2.5rem;
  background: linear-gradient(120deg, var(--sv-teal) 0%, #2a7a9a 40%, var(--sv-orange) 100%);
  border-radius: var(--sv-radius-lg);
  color: #fff;
  box-shadow: var(--sv-shadow);
}

.sv-banner__title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.sv-banner__text {
  font-size: 0.95rem;
  opacity: 0.9;
  max-width: 28rem;
}

.sv-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Reveal */
.services-page [data-sv-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.services-page [data-sv-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.services-page [data-sv-reveal].is-visible .sv-bento__card,
.services-page [data-sv-reveal].is-visible .sv-service-card,
.services-page [data-sv-reveal].is-visible .sv-audience-card {
  animation: sv-card-in 0.5s ease backwards;
}

@keyframes sv-card-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 991.98px) {
  .sv-hero-visual {
    min-height: 300px;
    margin-top: 1rem;
  }

  .sv-float-card--2 {
    right: 2%;
  }

  .sv-stats {
    margin-top: -1.5rem;
  }

  .sv-banner__inner {
    text-align: center;
    justify-content: center;
  }

  .sv-banner__actions {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 575.98px) {
  .sv-hero {
    padding-bottom: 3rem;
    min-height: auto;
  }

  .sv-float-card {
    display: none;
  }

  .sv-section {
    padding: 3rem 0;
  }

  .sv-stats .col-6:nth-child(2) .sv-stats__item {
    border-right: none;
  }

  .sv-stats__item {
    border-right: none !important;
    padding: 0.75rem 0;
  }

  .sv-no-jobs {
    min-height: auto;
    padding: 2rem 1.5rem;
  }

  .sv-contact-card__info,
  .sv-contact-card__actions {
    padding: 2rem 1.5rem;
  }

  .sv-panel {
    padding: 1.75rem 1.25rem;
  }

  .sv-services-grid--platform {
    grid-template-columns: 1fr;
  }

  .sv-services-grid--platform .sv-service-card--wide {
    grid-column: 1;
  }

  .sv-banner__inner {
    padding: 2rem 1.5rem;
  }
}

