/* ============================================================
   SERVICE.CSS — Royal Technologies Services Page
   Consistent with style.css design system
   ============================================================ */

/* ============================================================
   NAVBAR ACTIVE STATE
   ============================================================ */
.navbar__links a.active {
  color: var(--pink);
}
.navbar__links a.active::after {
  width: 100% !important;
}

/* ============================================================
   SERVICE HERO SECTION
   ============================================================ */
.svc-hero {
  position: relative;
  background: var(--bg);
  overflow: hidden;
  padding-bottom: 0;
}

.svc-hero__bg-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  z-index: 0;
}

.svc-hero__bg-blob--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(237, 46, 114, 0.12) 0%, transparent 70%);
  top: -200px;
  right: -100px;
}

.svc-hero__bg-blob--2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 159, 237, 0.10) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
}

.svc-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px var(--pad-x) 60px;
}

.svc-hero__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.svc-hero__label {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--accent-blue);
  font-weight: 400;
}

.svc-hero__title {
  font-size: 72px;
  line-height: 1.05;
  color: #222836;
  margin: 0;
}

.svc-hero__title .light { font-family: var(--font-body); font-weight: 400; }
.svc-hero__title .bold  { font-family: var(--font-bold); font-weight: 700; }

.svc-hero__sub {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 520px;
}

.svc-hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

/* Right visual */
.svc-hero__visual {
  position: relative;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.svc-hero__center-badge {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(237, 46, 114, 0.3);
  animation: heroSpinSlow 20s linear infinite;
  z-index: 2;
}

.svc-hero__center-badge svg {
  width: 120px;
  height: 120px;
}

@keyframes heroSpinSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.svc-hero__stat-card {
  position: absolute;
  background: var(--white);
  border-radius: 20px;
  padding: 16px 20px;
  box-shadow: 0 10px 40px rgba(19, 42, 97, 0.12);
  text-align: center;
  z-index: 3;
  animation: statFloat 5s ease-in-out infinite;
}

.svc-hero__stat-card--1 {
  top: 40px;
  left: 30px;
  animation-delay: 0s;
}

.svc-hero__stat-card--2 {
  top: 50px;
  right: 20px;
  animation-delay: 1.5s;
}

.svc-hero__stat-card--3 {
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0.8s;
  white-space: nowrap;
}

@keyframes statFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

.svc-hero__stat-card--3 {
  animation: statFloat3 5s ease-in-out 0.8s infinite;
}

@keyframes statFloat3 {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-10px); }
}

.svc-hero__stat-num {
  font-family: var(--font-bold);
  font-size: 28px;
  font-weight: 700;
  color: var(--pink);
  line-height: 1;
}

.svc-hero__stat-label {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Breadcrumb */
.svc-hero__breadcrumb {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--border);
  background: var(--white);
}

.svc-hero__breadcrumb-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 12px var(--pad-x);
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-muted);
}

.svc-hero__breadcrumb-inner a {
  color: var(--accent-blue);
  transition: opacity 0.2s;
}

.svc-hero__breadcrumb-inner a:hover { opacity: 0.7; }

.svc-hero__breadcrumb-sep {
  color: var(--text-muted);
}

/* ============================================================
   INTRO STRIP
   ============================================================ */
.svc-intro {
  background: linear-gradient(135deg, var(--navy) 0%, var(--deep-navy) 100%);
  padding: 28px 0;
}

.svc-intro__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.svc-intro__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 32px;
  color: var(--white);
  font-family: var(--font-bold);
  font-size: 15px;
  font-weight: 700;
}

.svc-intro__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.svc-intro__icon svg {
  width: 18px;
  height: 18px;
}

.svc-intro__divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* ============================================================
   SERVICES GRID SECTION
   ============================================================ */
.svc-grid-section {
  background: var(--bg);
  padding: 80px 0;
}

.svc-grid-section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.svc-grid-section__header {
  text-align: center;
  margin-bottom: 48px;
}

.svc-grid-section__label {
  font-family: var(--font-body);
  font-size: 20px;
  color: var(--accent-blue);
  font-weight: 400;
  margin-bottom: 4px;
}

.svc-grid-section__title {
  font-family: var(--font-bold);
  font-size: 48px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
}

.svc-grid-section__desc {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Cards Grid */
.svc-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Detail Card */
.svc-detail-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-card);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
}

.svc-detail-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--blue));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.svc-detail-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(19, 42, 97, 0.15);
}

.svc-detail-card:hover::before {
  opacity: 1;
}

.svc-detail-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

/* Icon wraps */
.svc-detail-card__icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.svc-detail-card:hover .svc-detail-card__icon-wrap {
  transform: scale(1.1) rotate(-5deg);
}

.svc-detail-card__icon-wrap svg {
  width: 30px;
  height: 30px;
}

.svc-detail-card__icon-wrap--blue   { background: linear-gradient(135deg, #0a6abf, var(--blue)); }
.svc-detail-card__icon-wrap--pink   { background: linear-gradient(135deg, #c0185a, var(--pink)); }
.svc-detail-card__icon-wrap--green  { background: linear-gradient(135deg, #1fa84e, #60d769); }
.svc-detail-card__icon-wrap--purple { background: linear-gradient(135deg, #6a3fcc, #9b6aff); }
.svc-detail-card__icon-wrap--orange { background: linear-gradient(135deg, #d45c00, #ff891d); }
.svc-detail-card__icon-wrap--teal   { background: linear-gradient(135deg, #00897b, #26c6bc); }

.svc-detail-card__num {
  font-family: var(--font-bold);
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(180deg, rgba(200,200,200,0.5) 0%, rgba(240,240,240,0.2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.svc-detail-card__title {
  font-family: var(--font-bold);
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.3;
}

.svc-detail-card__desc {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
  flex: 1;
}

.svc-detail-card__list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.svc-detail-card__list li {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--black);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}

.svc-detail-card__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-blue);
  font-size: 11px;
  top: 2px;
}

.svc-detail-card__stack {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.svc-stack-tag {
  background: #f0f4ff;
  color: var(--dark-blue);
  border-radius: 50px;
  padding: 4px 10px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}

.svc-detail-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--pink);
  font-family: var(--font-bold);
  font-size: 14px;
  font-weight: 700;
  margin-top: 4px;
  transition: gap 0.2s ease;
  text-decoration: none;
}

.svc-detail-card__cta svg {
  width: 16px;
  height: 16px;
  stroke: var(--pink);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s ease;
}

.svc-detail-card__cta:hover {
  gap: 10px;
}

.svc-detail-card__cta:hover svg {
  transform: translateX(3px);
}

/* ============================================================
   PROCESS / HOW WE WORK
   ============================================================ */
.svc-process {
  background: url('../images/hero2-background.png') center center / cover no-repeat;
  position: relative;
  padding: 80px 0;
}

.svc-process__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.svc-process__header {
  text-align: center;
  margin-bottom: 56px;
}

.svc-process__label {
  font-family: var(--font-body);
  font-size: 20px;
  color: var(--accent-blue);
  font-weight: 400;
  margin-bottom: 4px;
}

.svc-process__title {
  font-family: var(--font-bold);
  font-size: 48px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
}

.svc-process__desc {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-muted);
  max-width: 440px;
  margin: 0 auto;
}

.svc-process__steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.svc-process__step {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  box-shadow: var(--shadow-card);
  flex: 1;
  max-width: 320px;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.svc-process__step:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(19, 42, 97, 0.15);
}

.svc-process__step-num {
  font-family: var(--font-bold);
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(180deg, rgba(200,200,200,0.5) 0%, rgba(240,240,240,0.2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.svc-process__step-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--pink), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
}

.svc-process__step-icon svg {
  width: 28px;
  height: 28px;
}

.svc-process__step-title {
  font-family: var(--font-bold);
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
}

.svc-process__step-desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.svc-process__connector {
  height: 2px;
  flex: 0 0 60px;
  background: linear-gradient(90deg, var(--pink), var(--blue));
  border-radius: 2px;
  margin-bottom: 50px;
  position: relative;
}

.svc-process__connector::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--blue);
  border-right: 2px solid var(--blue);
  transform: translateY(-50%) rotate(45deg);
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.svc-why {
  background: var(--bg);
  padding: 80px 0;
}

.svc-why__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.svc-why__label {
  font-family: var(--font-body);
  font-size: 20px;
  color: var(--accent-blue);
  font-weight: 400;
  margin-bottom: 4px;
}

.svc-why__title {
  font-family: var(--font-bold);
  font-size: 48px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 16px;
}

.svc-why__desc {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 8px;
  max-width: 480px;
}

.svc-why__points {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 8px;
}

.svc-why__point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 2px 20px rgba(19, 42, 97, 0.06);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
}

.svc-why__point:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 30px rgba(19, 42, 97, 0.1);
}

.svc-why__point-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--pink), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.svc-why__point-icon svg {
  width: 18px;
  height: 18px;
}

.svc-why__point strong {
  font-family: var(--font-bold);
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  display: block;
  margin-bottom: 3px;
}

.svc-why__point p {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* Stats grid */
.svc-why__stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.svc-why__stat-box {
  background: var(--white);
  border-radius: 20px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease;
}

.svc-why__stat-box:hover {
  transform: translateY(-4px);
}

.svc-why__stat-box--grad {
  background: linear-gradient(135deg, var(--pink), var(--blue));
}

.svc-why__stat-box--dark {
  background: var(--navy);
}

.svc-why__stat-value {
  font-family: var(--font-bold);
  font-size: 40px;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}

.svc-why__stat-box--grad .svc-why__stat-value,
.svc-why__stat-box--dark .svc-why__stat-value {
  color: var(--white);
}

.svc-why__stat-name {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 6px;
}

.svc-why__stat-box--grad .svc-why__stat-name,
.svc-why__stat-box--dark .svc-why__stat-name {
  color: rgba(255,255,255,0.8);
}

/* Integration card */
.svc-why__integration-card {
  background: var(--white);
  border-radius: 20px;
  padding: 20px 24px;
  box-shadow: var(--shadow-card);
  text-align: center;
}

.svc-why__integration-label {
  font-family: var(--font-bold);
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
}

.svc-why__integration-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.svc-why__integration-icons span {
  background: #f0f4ff;
  border-radius: 8px;
  padding: 6px 12px;
  font-family: var(--font-bold);
  font-size: 12px;
  font-weight: 700;
  color: var(--dark-blue);
}

.svc-why__integration-sub {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 10px;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.svc-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--deep-navy) 60%, #0a1642 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.svc-cta__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.svc-cta__blob--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(237, 46, 114, 0.2) 0%, transparent 70%);
  top: -150px;
  left: -100px;
}

.svc-cta__blob--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 159, 237, 0.18) 0%, transparent 70%);
  bottom: -100px;
  right: -80px;
}

.svc-cta__inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.svc-cta__label {
  font-family: var(--font-body);
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.svc-cta__title {
  font-family: var(--font-bold);
  font-size: 56px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin: 0;
}

.svc-cta__title span {
  background: linear-gradient(90deg, var(--pink), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.svc-cta__desc {
  font-family: var(--font-body);
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  max-width: 560px;
}

.svc-cta__actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.svc-cta__contact-strip {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  justify-content: center;
}

.svc-cta__contact-strip a {
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}

.svc-cta__contact-strip a:hover {
  color: var(--white);
}

/* ============================================================
   HERO ANIMATIONS
   ============================================================ */
.svc-hero__label {
  animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

.svc-hero__title {
  animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

.svc-hero__sub {
  animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.32s both;
}

.svc-hero__actions {
  animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.44s both;
}

.svc-hero__visual {
  animation: scaleIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

/* ============================================================
   RESPONSIVE — TABLET (769px–1199px)
   ============================================================ */
@media (min-width: 769px) and (max-width: 1199px) {

  .svc-hero__inner {
    grid-template-columns: 1fr;
    padding: 60px 40px 50px;
    gap: 30px;
  }

  .svc-hero__visual {
    display: none;
  }

  .svc-hero__title { font-size: 56px; }

  .svc-hero__breadcrumb-inner { padding: 12px 40px; }

  .svc-intro__inner { padding: 0 40px; }

  .svc-intro__item { padding: 8px 20px; font-size: 14px; }

  .svc-grid-section__inner { padding: 0 40px; }

  .svc-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .svc-process__inner { padding: 0 40px; }

  .svc-process__steps {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }

  .svc-process__step { max-width: 100%; }

  .svc-process__connector {
    width: 2px;
    height: 40px;
    flex: 0 0 auto;
    align-self: center;
    background: linear-gradient(180deg, var(--pink), var(--blue));
  }

  .svc-process__connector::after {
    right: auto;
    bottom: -6px;
    top: auto;
    left: 50%;
    transform: translateX(-50%) rotate(135deg);
  }

  .svc-why__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 40px;
  }

  .svc-cta__title { font-size: 44px; }
  .svc-cta__inner { padding: 0 40px; }

  .svc-grid-section__title,
  .svc-process__title,
  .svc-why__title { font-size: 40px; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤768px)
   ============================================================ */
@media (max-width: 768px) {

  /* Hero */
  .svc-hero__inner {
    grid-template-columns: 1fr;
    padding: 50px 20px 40px;
  }

  .svc-hero__title { font-size: 40px; }
  .svc-hero__sub { font-size: 15px; }

  .svc-hero__visual {
    display: none;
  }

  .svc-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .svc-hero__actions .btn {
    justify-content: center;
  }

  .svc-hero__breadcrumb-inner { padding: 10px 20px; font-size: 13px; }

  /* Intro strip */
  .svc-intro__inner {
    padding: 0 20px;
    gap: 0;
    flex-direction: column;
  }

  .svc-intro__item {
    padding: 10px 0;
    font-size: 14px;
  }

  .svc-intro__divider {
    width: 80%;
    height: 1px;
    background: rgba(255,255,255,0.12);
  }

  /* Grid */
  .svc-grid-section { padding: 50px 0; }

  .svc-grid-section__inner { padding: 0 20px; }

  .svc-grid-section__title,
  .svc-process__title,
  .svc-why__title,
  .svc-cta__title { font-size: 30px; }

  .svc-cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .svc-detail-card {
    padding: 22px 18px;
  }

  /* Process */
  .svc-process { padding: 50px 0; }
  .svc-process__inner { padding: 0 20px; }

  .svc-process__steps {
    flex-direction: column;
    gap: 20px;
  }

  .svc-process__step { max-width: 100%; margin-top: -30px; }

  .svc-process__connector {
    width: 2px;
    height: 50px;
    flex: 0 0 auto;
    align-self: center;
    background: linear-gradient(180deg, var(--pink), var(--blue));
  }

  .svc-process__connector::after {
    right: auto;
    bottom: -6px;
    top: auto;
    left: 50%;
    transform: translateX(-50%) rotate(135deg);
  }

  /* Why */
  .svc-why { padding: 50px 0; }
  .svc-why__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px;
  }

  .svc-why__stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .svc-why__stat-value { font-size: 30px; }

  /* CTA */
  .svc-cta { padding: 60px 0; }
  .svc-cta__inner { padding: 0 20px; gap: 16px; }
  .svc-cta__title { font-size: 30px; }
  .svc-cta__desc { font-size: 15px; }

  .svc-cta__actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 320px;
  }

  .svc-cta__actions .btn {
    justify-content: center;
  }

  .svc-cta__contact-strip {
    font-size: 13px;
    flex-direction: column;
    gap: 8px;
  }

  .svc-cta__contact-strip span {
    display: none;
  }
}

/* ============================================================
   SMALL MOBILE (≤390px)
   ============================================================ */
@media (max-width: 390px) {

  .svc-hero__title { font-size: 32px; }

  .svc-grid-section__title,
  .svc-process__title,
  .svc-why__title,
  .svc-cta__title { font-size: 26px; }

  .svc-detail-card { padding: 18px 14px; }

  .svc-detail-card__title { font-size: 17px; }
}