:root {
  --svc-navy: #231f20;
  --svc-navy-2: #12183f;
  --svc-blue: #436ab2;
  --svc-blue-2: #6f8dff;
  --svc-ink: #101431;
  --svc-mist: #eef1fb;
  --svc-line: #e3e7f7;
  --svc-primary: #112ce8;
  --svc-primary-dark: #0a1c9e;
  --svc-navy: #0a1245;
  --svc-navy-soft: #101a4d;
  --svc-accent: #00c2ff;
  --svc-bg-soft: #f4f6fd;
  --svc-line: #e3e7f7;
  --svc-text: #171a35;
  --svc-text-muted: #6b7092;
}

.svc-section {
  padding: 25px 0;
  position: relative;
  overflow: hidden;
}

.svc-section.bg-mist {
  background: var(--svc-mist);
}

.svc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  border-radius: 50px;
  background: rgba(61, 90, 254, 0.08);
  color: var(--svc-blue);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.svc-eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--svc-blue);
  display: inline-block;
  animation: svcDotPulse 1.6s ease-in-out infinite;
}

@keyframes svcDotPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.6);
    opacity: 0.5;
  }
}

.svc-heading {
  font-weight: 800;
  color: var(--svc-ink);
  letter-spacing: -0.5px;
  line-height: 1.15;
}

.svc-lead {
  color: #5a5f7a;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ---- Scroll reveal utilities ---- */
.reveal,
.reveal-left,
.reveal-right,
.reveal-scale {
  opacity: 0;
  transition:
    opacity 0.8s cubic-bezier(0.2, 0.7, 0.3, 1),
    transform 0.8s cubic-bezier(0.2, 0.7, 0.3, 1);
  will-change: transform, opacity;
}

.reveal {
  transform: translateY(28px);
}

.reveal-left {
  transform: translateX(-46px);
}

.reveal-right {
  transform: translateX(46px);
}

.reveal-scale {
  transform: scale(0.92);
}

.reveal.in-view,
.reveal-left.in-view,
.reveal-right.in-view,
.reveal-scale.in-view {
  opacity: 1;
  transform: none;
}

.svc-flow-strip {
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
  position: relative;
}

.svc-flow-item {
  flex: 1 1 50%;
  max-width: 50%;
  text-align: left;
  padding: 18px 16px 18px 0;
  position: relative;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.svc-flow-icon-wrap {
  position: relative;
  width: 54px;
  height: 54px;
  flex: none;
}

.svc-flow-icon-wrap::before {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 2px dashed rgba(61, 90, 254, 0.35);
  animation: svcSpin 14s linear infinite;
}

@keyframes svcSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.svc-flow-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--svc-blue), var(--svc-blue-2));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 12px 25px -8px rgba(61, 90, 254, 0.55);
  animation: svcFloat 3.6s ease-in-out infinite;
}

.svc-flow-item:nth-child(2) .svc-flow-icon {
  animation-delay: 0.3s;
}

.svc-flow-item:nth-child(3) .svc-flow-icon {
  animation-delay: 0.6s;
}

.svc-flow-item:nth-child(4) .svc-flow-icon {
  animation-delay: 0.9s;
}

@keyframes svcFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.svc-flow-title {
  font-weight: 700;
  color: var(--svc-ink);
  margin-bottom: 4px;
  font-size: 1rem;
}

.svc-flow-desc {
  color: #6a6f8a;
  font-size: 0.88rem;
  margin: 0;
  line-height: 1.55;
}

.svc-img-frame {
  border-radius: 26px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 60px -25px rgba(16, 20, 49, 0.4);
  animation: svcFloatBig 6s ease-in-out infinite;
}

.svc-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 590px;
}

@keyframes svcFloatBig {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

.svc-img-glow {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(61, 90, 254, 0.35) 0%,
    rgba(61, 90, 254, 0) 70%
  );
  top: -50px;
  right: -50px;
  z-index: -1;
  animation: svcCtaGlow 7s ease-in-out infinite alternate;
}

.svc-icon-chip {
  position: absolute;
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: linear-gradient(145deg, var(--svc-blue), var(--svc-blue-2));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 32px -10px rgba(61, 90, 254, 0.6);
  z-index: 3;
  animation: svcFloat 4s ease-in-out infinite;
}

.svc-icon-chip.dark {
  background: linear-gradient(145deg, var(--svc-ink), var(--svc-navy-2));
}

.svc-icon-chip.top-right {
  top: -18px;
  right: -18px;
}

.svc-icon-chip.bottom-left {
  bottom: -18px;
  left: -18px;
  animation-delay: 0.6s;
}

.svc-overview-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 3;
  background: rgba(16, 20, 49, 0.85);
  backdrop-filter: blur(6px);
  color: #fff;
  padding: 14px 20px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 15px 30px -10px rgba(16, 20, 49, 0.5);
}

.svc-overview-badge .num {
  font-weight: 800;
  font-size: 1.3rem;
  color: #8fa2ff;
}

@media (max-width: 575px) {
  .svc-flow-item {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.svc-timeline {
  position: relative;
  padding-top: 10px;
}

.svc-timeline-track,
.svc-timeline-fill {
  position: absolute;
  left: 50%;
  top: 0;
  width: 3px;
  border-radius: 3px;
  transform: translateX(-50%);
}

.svc-timeline-track {
  height: 100%;
  background: rgba(61, 90, 254, 0.15);
}

.svc-timeline-fill {
  height: 0%;
  background: linear-gradient(180deg, var(--svc-blue), var(--svc-blue-2));
  box-shadow: 0 0 14px rgba(61, 90, 254, 0.6);
  transition: height 0.1s linear;
}

.svc-t-row {
  display: flex;
  margin-bottom: 54px;
  position: relative;
  align-items: center;
}

.svc-t-row:last-child {
  margin-bottom: 0;
}

.svc-t-row.left {
  justify-content: flex-start;
}

.svc-t-row.right {
  justify-content: flex-end;
}

.svc-t-text {
  width: calc(50% - 55px);
  padding: 4px 0;
}

.svc-t-row.left .svc-t-text {
  text-align: right;
}

.svc-t-row.right .svc-t-text {
  text-align: left;
}

.svc-t-node {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--svc-blue), var(--svc-navy));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 6px #fff,
    0 10px 25px -5px rgba(61, 90, 254, 0.55);
  z-index: 2;
}

.svc-t-node::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(61, 90, 254, 0.55);
  animation: svcPulseRing 2.4s ease-out infinite;
}

.svc-t-node img {
  width: 67%;
}

@keyframes svcPulseRing {
  0% {
    transform: scale(0.75);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}

.svc-t-step {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--svc-blue);
  text-transform: uppercase;
}

.svc-t-title {
  font-weight: 700;
  color: var(--svc-ink);
  margin: 4px 0 6px;
  font-size: 1.12rem;
}

.svc-t-desc {
  color: #676c86;
  font-size: 0.93rem;
  margin: 0;
  line-height: 1.65;
}

@media (max-width: 767px) {
  .svc-timeline-track,
  .svc-timeline-fill {
    left: 26px;
  }

  .svc-t-row,
  .svc-t-row.left,
  .svc-t-row.right {
    justify-content: flex-start;
    padding-left: 66px;
  }

  .svc-t-text,
  .svc-t-row.left .svc-t-text,
  .svc-t-row.right .svc-t-text {
    width: 100%;
    text-align: left !important;
  }

  .svc-t-node {
    left: 26px;
    width: 46px;
    height: 46px;
  }
}

.svc-toggle-tabs {
  position: relative;
  display: inline-flex;
  background: #fff;
  border: 1px solid var(--svc-line);
  border-radius: 10px;
  padding: 6px;
  gap: 2px;
  box-shadow: 0 10px 30px -18px rgba(16, 20, 49, 0.25);
}

.svc-toggle-btn {
  position: relative;
  z-index: 2;
  border: none;
  background: transparent;
  padding: 13px 30px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  color: #5a5f7a;
  transition: color 0.3s ease;
  cursor: pointer;
}

.svc-toggle-btn.active {
  color: #fff;
}

.svc-toggle-highlight {
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 6px;
  width: 150px;
  background: linear-gradient(120deg, var(--svc-blue), var(--svc-navy));
  border-radius: 10px;
  z-index: 1;
  transition:
    left 0.4s cubic-bezier(0.65, 0, 0.35, 1),
    width 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

.svc-toggle-stage {
  display: grid;
  margin-top: 25px;
}

.svc-toggle-panel {
  grid-column: 1;
  grid-row: 1;
  opacity: 0;
  transform: translateX(24px) scale(0.98);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
  pointer-events: none;
}

.svc-toggle-panel.active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
  position: relative;
  z-index: 2;
}

.svc-plan-list {
  list-style: none;
  padding: 0;
  margin: 9px 0 22px;
}

.svc-plan-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 5px 0;
  color: #4b4f68;
  font-size: 0.97rem;
}

.svc-plan-list svg {
  flex: none;
  margin-top: 2px;
  color: var(--svc-blue);
}

.svc-plan-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(120deg, var(--svc-blue), var(--svc-navy));
  padding: 13px 28px;
  border-radius: 50px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  box-shadow: 0 14px 30px -14px rgba(61, 90, 254, 0.6);
}

.svc-plan-btn:hover {
  transform: translateY(-3px);
  color: #fff;
  box-shadow: 0 20px 36px -14px rgba(61, 90, 254, 0.75);
}

.svc-panel-img {
  border-radius: 26px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 60px -25px rgba(16, 20, 49, 0.35);
  animation: svcFloatBig 5.5s ease-in-out infinite;
}

.svc-panel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
  display: block;
}

.svc-compare-wrap {
  background: #fff;
  border-radius: 22px;
  border: 1px solid var(--svc-line);
  overflow: hidden;
  box-shadow: 0 20px 45px -30px rgba(16, 20, 49, 0.3);
}

table.svc-compare {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
}

table.svc-compare th,
table.svc-compare td {
  padding: 18px 22px;
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid var(--svc-line);
  font-size: 0.95rem;
}

table.svc-compare thead th {
  background: var(--svc-ink);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  border-bottom: none;
}

table.svc-compare thead th:first-child {
  text-align: left;
}

table.svc-compare td:first-child,
table.svc-compare th:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--svc-ink);
  white-space: nowrap;
}

table.svc-compare tbody tr {
  transition: background 0.25s ease;
}

table.svc-compare tbody tr:hover {
  background: #f7f8fe;
}

table.svc-compare td.svc-col-featured,
table.svc-compare th.svc-col-featured {
  background: rgba(61, 90, 254, 0.06);
}

table.svc-compare thead th.svc-col-featured {
  background: var(--svc-blue);
}

.svc-check {
  color: #17b26a;
}

.svc-cta-strip {
  background: linear-gradient(120deg, var(--svc-navy) 0%, var(--svc-ink) 100%);
  border-radius: 28px;
  padding: 50px 40px;
  position: relative;
  overflow: hidden;
}

.svc-cta-strip::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(61, 90, 254, 0.45) 0%,
    rgba(61, 90, 254, 0) 70%
  );
  top: -140px;
  right: -80px;
  animation: svcCtaGlow 6s ease-in-out infinite alternate;
}

@keyframes svcCtaGlow {
  from {
    transform: translate(0, 0) scale(1);
  }

  to {
    transform: translate(-30px, 20px) scale(1.15);
  }
}

.svc-cta-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  padding: 12px 26px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.svc-cta-btn-outline:hover {
  background: #fff;
  color: var(--svc-ink);
  border-color: #fff;
}

.svc-cta-btn-filled {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--svc-ink);
  padding: 12px 26px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
}

.svc-cta-btn-filled:hover {
  background: var(--svc-blue-2);
  color: #fff;
}

.svc-cta {
  padding: 20px 0 45px;
}

.svc-cta-card {
  border-radius: 28px;
  padding: 64px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    var(--svc-navy) 0%,
    var(--svc-primary-dark) 55%,
    var(--svc-primary) 120%
  );
}

.svc-cta-card svg.svc-cta-deco {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
}

.svc-cta-card h2 {
  color: #fff;
  font-weight: 800;
  font-size: 2.1rem;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.svc-cta-card p {
  color: #cfd6ff;
  max-width: 620px;
  margin: 0 auto 30px;
  font-size: 1.02rem;
  position: relative;
  z-index: 1;
}

.svc-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.svc-btn-solid {
  background: #fff;
  color: var(--svc-navy);
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}

.svc-btn-solid:hover {
  background: var(--svc-accent);
  color: var(--svc-navy);
  transform: translateY(-2px);
}

.svc-btn-outline {
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}

.svc-btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 767px) {
  .svc-intro {
    padding: 60px 0 50px;
  }

  .svc-onboarding,
  .svc-key-services,
  .svc-comparison {
    padding: 60px 0;
  }

  .svc-heading {
    font-size: 1.8rem !important;
  }

  .svc-cta-card {
    padding: 46px 22px;
  }

  .svc-cta-card h2 {
    font-size: 1.6rem;
  }
}

.svc-quote-strip {
  margin-top: 10px;
  text-align: center;
  padding: 34px 20px;
  border-radius: 20px;
  background: var(--svc-bg-soft);
}

.svc-quote-strip p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--svc-navy);
  line-height: 1.6;
}

.sub-title {
  margin-bottom: 10px;
  padding-left: 25px;
  font-size: 22px;
}

.section-title {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--bb-black);
}

.section-header{
  position: relative;
  text-align: center;
  margin-bottom: 22px;
}