/* =============================================================
   services.css — All Services page styles
   All rem values based on global.css base (19px)
   Reuses: .container, .section, .btn, .btn-primary, .btn-secondary,
           .cta-section / .cta-inner / .cta-content / .cta-heading / .cta-btn
           from global.css
   ============================================================= */

/* ---------------------------------------------------------------
   1. HERO
--------------------------------------------------------------- */
/* =============================================================
   HERO - Now with Career-style SVG Background
============================================================ */
.sv-hero {
  position: relative;
  width: 100%;
  min-height: 610px;
  background-color: #ffffff;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 15rem 0 5rem;
  color: #ffffff; /* Light text for gradient bg */
}

.sv-hero-bg-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.sv-hero-bg-svg svg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0.85;
  filter: blur(8px);
}

.sv-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}




/* Responsive */
@media (max-width: 768px) {
  .sv-hero {
    padding: 10rem 0 4rem;
    min-height: 520px;
  }
  
}

.sv-hero-dot {
  position: absolute;
  top: 2.6rem;
  right: 12%;
  width: 0.842rem; /* 16px */
  height: 0.842rem;
  border-radius: 50%;
  background: var(--accent-cyan);
  opacity: 0.6;
}



.sv-hero-title {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 3.158rem; /* 60px / 19 */
  line-height: 4.316rem; /* 82px / 19 */
  color: #000000;
  max-width: 52rem;
}

.sv-hero-desc {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 1.053rem; /* 20px */
  line-height: 1.363rem;
  color: #363434;
  max-width: 52rem;
}

.sv-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.632rem; /* 50px */
  padding: 0 3.895rem; /* 74px */
  border-radius: 1.579rem;
  background-color: var(--primary-blue);
  color: var(--bg-white);
  font-family: var(--font-primary);
  font-size: 0.842rem;
  font-weight: 400;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.16);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.sv-hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(8, 75, 129, 0.3);
}

@media (max-width: 768px) {
  .sv-hero-title { font-size: 2rem; line-height: 1.2; }
  .sv-hero { padding: 8rem 0 3rem; }
}

/* ---------------------------------------------------------------
   2. HIGHLIGHT CARDS (two intro cards)
--------------------------------------------------------------- */
.sv-highlights-section {
  background-color: var(--bg-white);
  padding-top: 1rem;
  padding-bottom: 4rem;
}

.sv-highlights-row {
  display: grid;
  grid-template-columns: 1fr 1.07fr;
  gap: 1.895rem; /* 36px */
  align-items: stretch;
}

.sv-highlight-card {
  position: relative;
  border-radius: 0.842rem; /* 16px */
  box-shadow: 0 12px 24px -8px rgba(0, 0, 0, 0.05);
  padding: 2.632rem 2.579rem;
  display: flex;
  flex-direction: column;
  gap: 1.789rem;
}

.sv-highlight-card--purple {
  border: 1px solid #edbeff;
  background: linear-gradient(119deg, #ffffff 2%, #f8e8ff 100%);
}

.sv-highlight-card--teal {
  border: 1px solid #b7e7ea;
  background: linear-gradient(117deg, #ffffff 2.5%, #defdff 98%);
}

.sv-highlight-heading {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1.368rem; /* 26px */
  line-height: 1.474rem;
  letter-spacing: -0.025rem;
  color: #1a1a2e;
  margin-bottom: 0.263rem;
}

.sv-highlight-desc {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 0.789rem; /* 15px */
  line-height: 1.284rem;
  color: #6b7280;
}

.sv-highlight-body {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
}

.sv-highlight-left {
  display: flex;
  flex-direction: column;
  gap: 1.474rem;
  flex-shrink: 0;
}

.sv-highlight-list {
  display: flex;
  flex-direction: column;
  gap: 0.737rem;
}

.sv-highlight-list-item {
  display: flex;
  align-items: center;
  gap: 0.263rem;
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 0.789rem; /* 15px */
  color: #374151;
  white-space: nowrap;
}

.sv-highlight-list-item svg {
  flex-shrink: 0;
  width: 0.842rem;
  height: 0.842rem;
}

.sv-highlight-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.632rem; /* 50px */
  padding: 0 1.9rem;
  width: fit-content;
  border-radius: 1.579rem;
  background-color: var(--bg-white);
  border: 1px solid var(--border-gray);
  color: var(--primary-blue);
  font-family: var(--font-primary);
  font-size: 0.842rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.sv-highlight-btn:hover {
  background-color: var(--primary-blue);
  color: var(--bg-white);
  transform: translateY(-2px);
}

.sv-highlight-image {
  flex-shrink: 0;
  width: 16.895rem; /* 321px */
  height: 11.263rem; /* 214px */
  border-radius: 0.684rem;
  overflow: hidden;
  background: linear-gradient(135deg, #084b81 0%, #1e6fd9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(8, 75, 129, 0.15);
}

.sv-highlight-image svg {
  width: 4.2rem;
  height: 4.2rem;
  opacity: 0.9;
}

@media (max-width: 1024px) {
  .sv-highlights-row { grid-template-columns: 1fr; }
  .sv-highlight-body { flex-direction: column; align-items: flex-start; }
  .sv-highlight-image { width: 100%; height: 12rem; }
}

/* ---------------------------------------------------------------
   3. SERVICES GRID ("Our Services")
--------------------------------------------------------------- */
.sv-services-section {
  background-color: var(--bg-light);
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.sv-section-title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 2.526rem; /* 48px */
  line-height: 2.826rem;
  letter-spacing: -0.07rem;
  color: var(--base-dark);
  margin-bottom: 2.632rem;
}

.sv-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.789rem;
}

.sv-service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  background-color: var(--bg-white);
  border: 1px solid #f3f4f6;
  border-radius: 0.842rem; /* 16px */
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
  padding: 1.789rem;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sv-service-content {
  display: flex;
  flex-direction: column;
}

.sv-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(8, 75, 129, 0.15);
}

.sv-service-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0.311rem; /* 4px */
  height: 100%;
  background-color: var(--accent-cyan);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s ease;
}

.sv-service-card:hover::before {
  transform: scaleY(1);
}

.sv-service-thumb {
  height: 8.526rem; /* 162px */
  width: 100%;
  border-radius: 0.579rem;
  background: linear-gradient(135deg, #e7eefc 0%, #cfe0fb 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.684rem;
}

.sv-service-thumb svg {
  width: 2.632rem;
  height: 2.632rem;
}

.sv-service-title {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1.158rem; /* 22px */
  color: var(--base-dark);
  margin-bottom: 0.842rem;
}

.sv-service-desc {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 1.053rem; /* 20px */
  line-height: 1.363rem;
  color: var(--text-sub);
  margin-bottom: 1.789rem;
}

.sv-service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 0.737rem; /* 14px */
  color: #008dff;
}

.sv-service-link svg {
  transition: transform 0.25s ease;
}

.sv-service-card:hover .sv-service-link svg {
  transform: translate(2px, -2px);
}

@media (max-width: 1024px) {
  .sv-services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .sv-services-grid { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------------
   4. TECH STACK ("Built on Best-in-Class Technology")
--------------------------------------------------------------- */
.sv-tech-section {
  background-color: var(--bg-white);
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.sv-tech-header {
  max-width: 43rem;
  margin-bottom: 2.5rem;
}

.sv-tech-desc {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 1.053rem;
  line-height: 1.723rem;
  color: #4b5563;
  margin-top: 0.842rem;
}

.sv-tech-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.263rem;
}

.sv-tech-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  height: 4.053rem; /* 77px */
  padding: 0 1.1rem;
  border: 1px solid #f1f5f9;
  border-radius: 0.65rem;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.sv-tech-badge:hover {
  border-color: var(--primary-blue);
  transform: translateY(-2px);
}

.sv-tech-badge-icon {
  flex-shrink: 0;
  width: 1.684rem; /* 32px */
  height: 1.684rem;
  border-radius: 0.421rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.6rem;
}

.sv-tech-badge-name {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: 1.053rem; /* 20px */
  color: #1e293b;
  white-space: nowrap;
}

/* ---------------------------------------------------------------
   5. OUR EXPERTISE (stats)
--------------------------------------------------------------- */
.sv-expertise-section {
  background-color: #f8fafc;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.sv-expertise-header {
  max-width: 43rem;
  margin-bottom: 3rem;
}

.sv-expertise-desc {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 1.053rem;
  line-height: 1.723rem;
  color: #4b5563;
  margin-top: 0.842rem;
}

.sv-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.263rem;
  margin-bottom: 3rem;
}

.sv-stat-card {
  position: relative;
  background-color: var(--bg-white);
  border: 1px solid #e5e5e5;
  border-radius: 0.942rem;
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.05);
  padding: 2.4rem 1.5rem 1.9rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.9rem;
}

.sv-stat-icon {
  width: 3.421rem; /* 65px */
  height: 3.421rem;
  border-radius: 1.105rem;
  background-color: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.sv-stat-icon svg {
  width: 1.684rem;
  height: 1.684rem;
}

.sv-stat-number {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 2.789rem; /* 53px */
  letter-spacing: -0.14rem;
  color: #008dff;
  line-height: 1;
}

.sv-stat-label {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1.053rem;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  color: #101828;
}

.sv-stat-desc {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 0.789rem;
  line-height: 1.284rem;
  color: #363434;
  max-width: 14rem;
}

.sv-stat-underline {
  width: 2.826rem;
  height: 0.235rem;
  border-radius: 100rem;
  background-color: var(--primary-blue);
  opacity: 0.3;
  margin-top: 0.3rem;
}

.sv-expertise-footer {
  display: flex;
  justify-content: center;
}

.sv-btn-outline-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.632rem; /* 50px */
  padding: 0 1.8rem;
  border-radius: 1.579rem;
  border: 1px solid #000000;
  background-color: transparent;
  color: #000000;
  font-family: var(--font-primary);
  font-size: 0.842rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.sv-btn-outline-dark:hover {
  background-color: #000000;
  color: #ffffff;
  transform: translateY(-2px);
}

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

/* ---------------------------------------------------------------
   6. OUR DELIVERY FRAMEWORK (process)
--------------------------------------------------------------- */
.sv-process-section {
  background-color: var(--bg-white);
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.sv-process-header {
  max-width: 32rem;
  margin-bottom: 3rem;
}

.sv-process-title {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 2.526rem;
  letter-spacing: -0.063rem;
  color: #101828;
  margin-bottom: 1rem;
}

.sv-process-desc {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 0.947rem;
  line-height: 1.539rem;
  color: #6a7282;
}

.sv-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem 3.526rem;
}

.sv-process-step {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sv-process-icon {
  width: 4.211rem; /* 80px */
  height: 4.211rem;
  border-radius: 0.842rem;
  background-color: var(--bg-white);
  border: 1px solid #f3f4f6;
  box-shadow: 0 1px 1.5px rgba(0, 0, 0, 0.1), 0 1px 1px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sv-process-icon svg {
  width: 1.684rem;
  height: 1.684rem;
}

.sv-process-title {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1.263rem; /* 24px */
  letter-spacing: -0.032rem;
  color: #101828;
}

.sv-process-text {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 0.789rem; /* 15px */
  line-height: 1.368rem;
  color: #363434;
  max-width: 14rem;
}

.sv-stat-number {
    font-variant-numeric: tabular-nums;
    font-feature-settings: "tnum";
}

@media (max-width: 1024px) {
  .sv-process-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .sv-process-grid { grid-template-columns: 1fr; }
}