/**
 * Services page — enhanced layout
 */

/* Hero */
.services-hero .services-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.services-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.services-page .offer-map--about {
  margin: 1.5rem 0 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.services-stat {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 12px 18px;
  min-width: 92px;
  text-align: center;
  backdrop-filter: blur(6px);
  transition: transform 0.25s ease, background 0.25s ease;
}

.services-stat:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.16);
}

.services-stat strong {
  display: block;
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--yellow);
  line-height: 1.2;
}

.services-stat span {
  font-size: var(--text-xs);
  opacity: 0.9;
}

/* Sticky nav */
.services-nav {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  justify-content: flex-start;
  padding: 12px 0;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  background: transparent;
  border-bottom: none;
  box-shadow: none;
  position: static;
}

#serviceNav {
  position: sticky;
  top: var(--header-height);
  z-index: var(--z-dropdown);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.services-nav::-webkit-scrollbar { display: none; }

.services-nav__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  padding: 9px 16px;
  border-radius: var(--radius-full);
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--dark);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.services-nav__num {
  font-size: 10px;
  font-weight: 800;
  opacity: 0.55;
}

.services-nav__item:hover,
.services-nav__item:focus-visible {
  color: var(--white);
  border-color: transparent;
  transform: translateY(-1px);
}

.services-nav__item--yellow:hover,
.services-nav__item--yellow.is-active { background: var(--yellow-dark); color: var(--navy); }
.services-nav__item--blue:hover,
.services-nav__item--blue.is-active { background: #2563eb; color: #fff; }
.services-nav__item--red:hover,
.services-nav__item--red.is-active { background: var(--red); color: #fff; }
.services-nav__item--green:hover,
.services-nav__item--green.is-active { background: #059669; color: #fff; }
.services-nav__item--navy:hover,
.services-nav__item--navy.is-active { background: #1d1d1b; color: #fff; }
.services-nav__item--slate:hover,
.services-nav__item--slate.is-active { background: #475569; color: #fff; }

.services-nav__item.is-active {
  border-color: transparent;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.12);
}

.services-nav__item.is-active .services-nav__num {
  opacity: 0.85;
}

/* Paths */
.services-paths {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
  margin-bottom: 28px;
}

.services-path {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 22px 22px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  text-decoration: none;
  color: inherit;
  min-height: 148px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.services-path:hover,
.services-path:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
}

.services-path--digital {
  background:
    radial-gradient(ellipse 70% 80% at 0% 0%, rgba(255, 222, 0, 0.28), transparent 55%),
    linear-gradient(145deg, #0f172a 0%, #1e293b 55%, #334155 100%);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.08);
}

.services-path--field {
  background:
    radial-gradient(ellipse 70% 80% at 100% 0%, rgba(16, 185, 129, 0.22), transparent 55%),
    linear-gradient(160deg, #ecfdf5 0%, #d1fae5 100%);
  border-color: rgba(5, 150, 105, 0.18);
}

.services-path__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  opacity: 0.8;
}

.services-path--digital .services-path__eyebrow { color: #fde68a; }
.services-path--field .services-path__eyebrow { color: #047857; }

.services-path__title {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 800;
  line-height: 1.35;
}

.services-path--digital .services-path__title { color: #fff; }
.services-path--field .services-path__title { color: #064e3b; }

.services-path__desc {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
  max-width: 36em;
}

.services-path--digital .services-path__desc { color: rgba(255, 255, 255, 0.78); }
.services-path--field .services-path__desc { color: #065f46; }

.services-path__cta {
  margin-top: 4px;
  font-size: 0.88rem;
  font-weight: 700;
}

.services-path--digital .services-path__cta { color: var(--yellow); }
.services-path--field .services-path__cta { color: #047857; }

/* Overview cards */
.services-overview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.services-overview-card--navy::before { background: #1d1d1b; }
.services-overview-card--slate::before { background: #64748b; }

.services-overview-card--yellow .services-overview-card__icon { background: rgba(202, 138, 4, 0.12); color: #a16207; }
.services-overview-card--blue .services-overview-card__icon { background: rgba(37, 99, 235, 0.12); color: #1d4ed8; }
.services-overview-card--navy .services-overview-card__icon { background: rgba(15, 23, 42, 0.1); color: #0f172a; }
.services-overview-card--slate .services-overview-card__icon { background: rgba(71, 85, 105, 0.12); color: #334155; }
.services-overview-card--red .services-overview-card__icon { background: rgba(220, 38, 38, 0.1); color: #dc2626; }
.services-overview-card--green .services-overview-card__icon { background: rgba(5, 150, 105, 0.12); color: #047857; }

.services-overview-card__cta::after {
  content: '';
  width: 6px;
  height: 6px;
  border-inline-end: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  transition: transform 0.2s ease;
}

[dir="rtl"] .services-overview-card__cta::after {
  transform: rotate(135deg);
}

.services-overview-card:hover .services-overview-card__cta::after {
  transform: translateX(-3px) rotate(-45deg);
}

[dir="rtl"] .services-overview-card:hover .services-overview-card__cta::after {
  transform: translateX(3px) rotate(135deg);
}

/* Reveal */
.services-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.services-reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .services-reveal,
  html.premium-ui.is-page-entered .services-reveal:not(.is-in) {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .services-stat:hover,
  .services-path:hover,
  .services-path:focus-visible {
    transform: none;
  }
}

.service-block__visual--dm {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 14px;
  min-height: 0;
  padding: 22px 18px;
  background: linear-gradient(160deg, #fffbeb 0%, #fef3c7 42%, #fde68a 100%);
  border: 1px solid rgba(202, 138, 4, 0.22);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

.dm-visual__media {
  border-radius: calc(var(--radius-lg) - 4px);
  overflow: hidden;
  background: linear-gradient(145deg, #0f172a 0%, #1e293b 55%, #334155 100%);
  padding: 14px 14px 10px;
}

.dm-visual__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 480 / 320;
  object-fit: contain;
  border-radius: 10px;
}

.service-block--yellow .service-block__visual--dm .service-panel-card {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(202, 138, 4, 0.2);
  min-height: 72px;
}

.service-block--yellow .service-block__visual--dm .service-panel-card strong {
  color: #a16207;
}

#digital-marketing .check-list {
  display: grid;
  gap: 10px;
  margin: 0 0 14px;
}

#digital-marketing .service-block__tags {
  margin: 16px 0 18px;
  gap: 10px;
}

.dm-deliverables {
  margin: 4px 0 14px;
}

.service-block--yellow .dm-deliverables .server-ops-stack__item {
  background: #fff;
  border-color: rgba(202, 138, 4, 0.22);
}

.field-tech-faq__eyebrow--yellow {
  color: #a16207;
}

.field-tech-faq__item--yellow:hover {
  border-color: rgba(202, 138, 4, 0.35);
}

.field-tech-faq__item--yellow[open] {
  border-color: rgba(202, 138, 4, 0.45);
}

.field-tech-faq__item--yellow .field-tech-faq__icon {
  background: rgba(202, 138, 4, 0.12);
}

.field-tech-faq__item--yellow .field-tech-faq__icon::before,
.field-tech-faq__item--yellow .field-tech-faq__icon::after {
  background: #a16207;
}

.field-tech-faq__item--yellow[open] .field-tech-faq__icon {
  background: #ca8a04;
}

.field-tech-faq__item--yellow[open] .field-tech-faq__icon::before,
.field-tech-faq__item--yellow[open] .field-tech-faq__icon::after {
  background: #fff;
}

.service-block__visual--web {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 14px;
  min-height: 0;
  padding: 22px 18px;
  background: linear-gradient(160deg, #eff6ff 0%, #dbeafe 45%, #bfdbfe 100%);
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.08);
  overflow: hidden;
}

.web-design-visual__media {
  border-radius: calc(var(--radius-lg) - 4px);
  overflow: hidden;
  background: linear-gradient(145deg, #1e3a5f 0%, #2563eb 60%, #3b82f6 100%);
  padding: 14px 14px 10px;
}

.web-design-visual__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 480 / 320;
  object-fit: contain;
  border-radius: 10px;
}

.service-block--blue .service-block__visual--web .service-panel-card {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(37, 99, 235, 0.16);
  min-height: 72px;
}

.service-block--blue .service-block__visual--web .service-panel-card strong {
  color: #1d4ed8;
}

#web-design .check-list {
  display: grid;
  gap: 10px;
  margin: 0 0 14px;
}

#web-design .service-block__tags {
  margin: 16px 0 18px;
  gap: 10px;
}

.web-design-deliverables {
  margin: 4px 0 14px;
}

.service-block--blue .web-design-deliverables .server-ops-stack__item {
  background: #fff;
  border-color: rgba(37, 99, 235, 0.18);
}

.field-tech-faq__eyebrow--blue {
  color: #2563eb;
}

.field-tech-faq__item--blue:hover {
  border-color: rgba(37, 99, 235, 0.3);
}

.field-tech-faq__item--blue[open] {
  border-color: rgba(37, 99, 235, 0.4);
}

.field-tech-faq__item--blue .field-tech-faq__icon {
  background: rgba(37, 99, 235, 0.1);
}

.field-tech-faq__item--blue .field-tech-faq__icon::before,
.field-tech-faq__item--blue .field-tech-faq__icon::after {
  background: #2563eb;
}

.field-tech-faq__item--blue[open] .field-tech-faq__icon {
  background: #2563eb;
}

.field-tech-faq__item--blue[open] .field-tech-faq__icon::before,
.field-tech-faq__item--blue[open] .field-tech-faq__icon::after {
  background: #fff;
}

.field-tech-faq__eyebrow--navy { color: #0f172a; }
.field-tech-faq__item--navy:hover { border-color: rgba(15, 23, 42, 0.28); }
.field-tech-faq__item--navy[open] { border-color: rgba(15, 23, 42, 0.4); }
.field-tech-faq__item--navy .field-tech-faq__icon { background: rgba(15, 23, 42, 0.1); }
.field-tech-faq__item--navy .field-tech-faq__icon::before,
.field-tech-faq__item--navy .field-tech-faq__icon::after { background: #0f172a; }
.field-tech-faq__item--navy[open] .field-tech-faq__icon { background: #0f172a; }
.field-tech-faq__item--navy[open] .field-tech-faq__icon::before,
.field-tech-faq__item--navy[open] .field-tech-faq__icon::after { background: #fff; }

.field-tech-faq__eyebrow--slate { color: #475569; }
.field-tech-faq__item--slate:hover { border-color: rgba(71, 85, 105, 0.32); }
.field-tech-faq__item--slate[open] { border-color: rgba(71, 85, 105, 0.45); }
.field-tech-faq__item--slate .field-tech-faq__icon { background: rgba(71, 85, 105, 0.12); }
.field-tech-faq__item--slate .field-tech-faq__icon::before,
.field-tech-faq__item--slate .field-tech-faq__icon::after { background: #475569; }
.field-tech-faq__item--slate[open] .field-tech-faq__icon { background: #475569; }
.field-tech-faq__item--slate[open] .field-tech-faq__icon::before,
.field-tech-faq__item--slate[open] .field-tech-faq__icon::after { background: #fff; }

.field-tech-faq__eyebrow--red { color: #dc2626; }
.field-tech-faq__item--red:hover { border-color: rgba(220, 38, 38, 0.3); }
.field-tech-faq__item--red[open] { border-color: rgba(220, 38, 38, 0.42); }
.field-tech-faq__item--red .field-tech-faq__icon { background: rgba(220, 38, 38, 0.1); }
.field-tech-faq__item--red .field-tech-faq__icon::before,
.field-tech-faq__item--red .field-tech-faq__icon::after { background: #dc2626; }
.field-tech-faq__item--red[open] .field-tech-faq__icon { background: #dc2626; }
.field-tech-faq__item--red[open] .field-tech-faq__icon::before,
.field-tech-faq__item--red[open] .field-tech-faq__icon::after { background: #fff; }

.apps-deliverables {
  margin: 4px 0 14px;
}

.service-block--navy .apps-deliverables .server-ops-stack__item {
  background: #fff;
  border-color: rgba(15, 23, 42, 0.14);
}

.service-block--slate .server-ops-stack__item {
  background: #fff;
  border-color: rgba(71, 85, 105, 0.18);
}

.service-block__visual--panel {
  display: flex;
  align-items: center;
}

.service-panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
}

.service-panel-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-panel-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  border-color: rgba(15, 23, 42, 0.14);
}

.service-panel-card strong {
  font-size: 1rem;
  color: var(--navy);
}

.service-panel-card span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.service-panel-grid--ops {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-panel-grid--ops .service-panel-card {
  padding: 16px 14px;
  min-height: 84px;
}

.server-ops-stack {
  margin: 4px 0 18px;
}

.server-ops-stack__title {
  margin: 0 0 10px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
}

.server-ops-stack__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.server-ops-stack__item {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.service-block--slate .server-ops-stack__item {
  background: #fff;
}

.field-tech-list-title {
  margin: 4px 0 12px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
}

#field-tech .check-list {
  display: grid;
  gap: 10px;
  margin: 0 0 16px;
}

#field-tech .check-list li {
  line-height: 1.55;
}

#field-tech .service-block__tags {
  margin: 16px 0 20px;
  gap: 10px;
}

.field-tech-note {
  margin: 0 0 18px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.field-tech-inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.service-block__visual--field {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 18px;
  min-height: 0;
  padding: 24px 20px;
  text-align: initial;
  color: inherit;
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(16, 185, 129, 0.18), transparent 55%),
    linear-gradient(165deg, #f0fdf4 0%, #ecfdf5 45%, #d1fae5 100%);
  border: 1px solid rgba(5, 150, 105, 0.16);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.05);
}

.service-block--green .service-block__visual--field .service-panel-card {
  background: rgba(255, 255, 255, 0.97);
  border-color: rgba(5, 150, 105, 0.14);
  min-height: 0;
}

.service-block--green .service-block__visual--field .service-panel-card strong {
  color: #065f46;
}

.service-panel-card--field {
  gap: 6px;
  padding: 14px 14px 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-panel-card--field:hover {
  transform: translateY(-2px);
  border-color: rgba(5, 150, 105, 0.35);
  box-shadow: 0 8px 20px rgba(5, 150, 105, 0.1);
}

.service-panel-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(5, 150, 105, 0.1);
  color: #047857;
  margin-bottom: 2px;
}

.service-panel-card__icon svg {
  display: block;
}

.field-tech-lead {
  background: linear-gradient(160deg, #042f2e 0%, #0f172a 48%, #134e4a 100%);
  color: #fff;
  border-radius: calc(var(--radius-lg) - 2px);
  padding: 20px 18px 18px;
  border: 1px solid rgba(52, 211, 153, 0.22);
  width: 100%;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.22);
}

.field-tech-lead__top {
  margin-bottom: 14px;
}

.field-tech-lead__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #6ee7b7;
  margin-bottom: 10px;
}

.field-tech-lead__name {
  margin: 0 0 6px;
  font-size: 1.2rem;
  line-height: 1.35;
  font-weight: 800;
  color: #fff;
}

.field-tech-lead__role {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  line-height: 1.55;
}

.field-tech-lead__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.field-tech-lead__chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.92);
}

.field-tech-lead__phone {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 14px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(110, 231, 183, 0.22);
  text-decoration: none;
  color: inherit;
  direction: ltr;
  unicode-bidi: isolate;
  text-align: left;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.field-tech-lead__phone:hover {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(110, 231, 183, 0.4);
}

.field-tech-lead__phone-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(250, 204, 21, 0.15);
  flex-shrink: 0;
}

.field-tech-lead__phone-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.field-tech-lead__phone-label {
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.field-tech-lead__phone-num {
  font-size: 1.12rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  color: #fff;
  direction: ltr;
  unicode-bidi: isolate;
}

.field-tech-lead__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.field-tech-lead__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 46px;
  white-space: nowrap;
}

.field-tech-lead__actions .btn--outline {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
  background: transparent;
}

.field-tech-lead__actions .btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.field-tech-faq-section {
  margin-top: 36px;
  padding-top: 8px;
}

.field-tech-faq-wrap {
  max-width: 820px;
  margin: 8px auto 0;
  padding: 8px 0 4px;
}

.field-tech-faq__head {
  text-align: center;
  margin-bottom: 22px;
}

.field-tech-faq__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #059669;
  margin-bottom: 8px;
}

.field-tech-faq__title {
  margin: 0;
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  color: var(--navy);
  line-height: 1.35;
}

.field-tech-faq__title::after {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  margin: 12px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #e62833 0%, #f59e0b 55%, #ffde00 100%);
}

.field-tech-faq {
  display: grid;
  gap: 12px;
}

.field-tech-faq__item {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.03);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field-tech-faq__item:hover {
  border-color: rgba(5, 150, 105, 0.28);
}

.field-tech-faq__item[open] {
  border-color: rgba(5, 150, 105, 0.35);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.field-tech-faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.45;
}

.field-tech-faq__item summary::-webkit-details-marker {
  display: none;
}

.field-tech-faq__q {
  flex: 1;
  min-width: 0;
}

.field-tech-faq__icon {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(5, 150, 105, 0.1);
  position: relative;
  transition: background 0.2s ease, transform 0.2s ease;
}

.field-tech-faq__icon::before,
.field-tech-faq__icon::after {
  content: '';
  position: absolute;
  inset-inline-start: 50%;
  top: 50%;
  width: 12px;
  height: 2px;
  background: #059669;
  border-radius: 2px;
  transform: translate(-50%, -50%);
}

.field-tech-faq__icon::after {
  width: 2px;
  height: 12px;
}

.field-tech-faq__item[open] .field-tech-faq__icon {
  background: #059669;
  transform: rotate(180deg);
}

.field-tech-faq__item[open] .field-tech-faq__icon::before,
.field-tech-faq__item[open] .field-tech-faq__icon::after {
  background: #fff;
}

.field-tech-faq__item[open] .field-tech-faq__icon::after {
  opacity: 0;
}

.field-tech-faq__body {
  padding: 0 20px 18px;
  border-top: 1px solid transparent;
}

.field-tech-faq__item[open] .field-tech-faq__body {
  border-top-color: rgba(15, 23, 42, 0.06);
  padding-top: 14px;
}

.field-tech-faq__body p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.75;
  font-size: 0.94rem;
}

.field-tech-faq__phone {
  display: inline-block;
  direction: ltr;
  unicode-bidi: isolate;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  color: var(--navy);
}

.services-overview-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.services-overview-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
}

.services-overview-card--yellow::before { background: var(--yellow); }
.services-overview-card--blue::before { background: #2563eb; }
.services-overview-card--red::before { background: var(--red); }
.services-overview-card--green::before { background: #10b981; }

.services-overview-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.services-overview-card__num {
  font-size: 11px;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.services-overview-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--navy);
}

.services-overview-card h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--navy);
}

.services-overview-card p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: var(--leading-relaxed);
  flex: 1;
  margin-bottom: 16px;
}

.services-overview-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--red);
}

/* Service blocks */
.service-block {
  scroll-margin-top: calc(var(--header-height) + 64px);
}

.service-block__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.service-block--reverse .service-block__inner {
  direction: ltr;
}

.service-block--reverse .service-block__content,
.service-block--reverse .service-block__visual {
  direction: rtl;
}

.service-block__content > p {
  max-width: 38em;
  line-height: 1.75;
  color: var(--text);
  text-wrap: pretty;
}

.service-block .check-list {
  display: grid;
  gap: 10px;
  margin: 0 0 16px;
}

.service-block .field-tech-list-title {
  margin: 4px 0 12px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
}

.service-block .field-tech-note {
  margin: 0 0 16px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.service-block .field-tech-inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.service-block__head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.service-block__num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-lg);
  font-weight: 800;
  color: var(--white);
}

.service-block--yellow .service-block__num { background: linear-gradient(135deg, #ca8a04, var(--yellow)); color: var(--navy); }
.service-block--blue .service-block__num { background: linear-gradient(135deg, #1d4ed8, #3b82f6); }
.service-block--red .service-block__num { background: linear-gradient(135deg, #b91c1c, var(--red)); }
.service-block--green .service-block__num { background: linear-gradient(135deg, #047857, #10b981); }
.service-block--navy .service-block__num { background: linear-gradient(135deg, #0f172a, #334155); }
.service-block--slate .service-block__num { background: linear-gradient(135deg, #334155, #64748b); }

.service-block__head h2 {
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}

.service-block__head p {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.service-block__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 18px;
}

.service-block__tag {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  background: var(--gray-100);
  color: var(--text-muted);
}

.service-block__visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-block__visual--image {
  padding: 0;
  background: transparent;
  box-shadow: none;
  min-height: 0;
}

.service-block__visual img,
.service-block__visual svg {
  width: 100%;
  height: auto;
  aspect-ratio: 480 / 320;
  object-fit: contain;
  display: block;
}

.service-block__visual--image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.service-block--yellow .service-block__visual--image img,
.service-block--blue .service-block__visual--image img,
.service-block--red .service-block__visual--image img {
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-block__visual--panel {
  padding: 28px 22px;
  text-align: initial;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 14px;
  border: 1px solid var(--gray-200);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.05);
}

.service-block--blue .service-block__visual--panel {
  background: linear-gradient(145deg, #eff6ff 0%, #dbeafe 50%, #bfdbfe 100%);
  border-color: rgba(37, 99, 235, 0.18);
  color: inherit;
}

.service-block--red .service-block__visual--panel {
  background: linear-gradient(145deg, #fef2f2 0%, #fee2e2 45%, #fecaca 100%);
  border-color: rgba(220, 38, 38, 0.16);
  color: inherit;
}

.service-block--navy .service-block__visual--panel {
  background: linear-gradient(160deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
  border-color: rgba(15, 23, 42, 0.12);
}

.service-block--slate .service-block__visual--panel {
  background: linear-gradient(160deg, #f8fafc 0%, #e2e8f0 42%, #94a3b8 100%);
  border-color: rgba(71, 85, 105, 0.18);
}

.service-block--red .service-panel-card {
  background: rgba(255, 255, 255, 0.96);
}

.service-block--navy .service-panel-card,
.service-block--slate .service-panel-card {
  background: rgba(255, 255, 255, 0.96);
}

.service-block--navy .service-panel-card strong {
  color: #0f172a;
}

.service-block--slate .service-panel-card strong {
  color: #334155;
}

.service-block--red .smm-deliverables .server-ops-stack__item,
.service-block--red .server-ops-stack__item {
  background: #fff;
  border-color: rgba(220, 38, 38, 0.18);
}

.smm-deliverables {
  margin: 4px 0 18px;
}

.service-block__visual--panel h3 {
  font-size: var(--text-2xl);
  font-weight: 800;
}

.service-block__visual--panel .price-hint {
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--yellow);
  margin: 8px 0 0;
}

.service-block__visual--panel .panel-sub {
  opacity: 0.9;
  font-size: var(--text-base);
}

/* Process */
.services-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

.services-process__step {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  border: 1px solid var(--gray-200);
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.services-process__step:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
  border-color: rgba(15, 23, 42, 0.12);
}

.services-process__icon {
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #fff7ed 0%, #fef3c7 100%);
  border-radius: 16px;
  color: var(--navy);
  margin-bottom: 12px;
}

.services-process__num {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--yellow);
  border-radius: 50%;
  font-weight: 800;
  font-size: 12px;
  margin-bottom: 12px;
}

.services-process__step h4 {
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--navy);
}

.services-process__step p {
  margin: 0;
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: var(--leading-relaxed);
}

.services-cta {
  text-align: center;
}

.services-cta .cta-banner--pro {
  position: relative;
  overflow: hidden;
}

.services-cta .cta-banner--pro::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 0% 50%, rgba(230, 40, 51, 0.08), transparent 55%),
    radial-gradient(ellipse 40% 70% at 100% 40%, rgba(5, 150, 105, 0.1), transparent 50%);
  pointer-events: none;
}

.services-cta .cta-banner--pro > * {
  position: relative;
  z-index: 1;
}

.services-cta .cta-banner--pro h2 {
  margin-bottom: 12px;
}

.services-cta .cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
}

/* Responsive */
@media (max-width: 1024px) {
  .services-paths { grid-template-columns: 1fr 1fr; }
  .services-overview { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-block__inner,
  .service-block--reverse .service-block__inner { grid-template-columns: 1fr; }
  .service-block__visual { order: -1; }
  .services-process { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .services-paths,
  .services-overview { grid-template-columns: 1fr; }
  .services-process { grid-template-columns: 1fr; }
  .service-panel-grid { grid-template-columns: 1fr; }
  .field-tech-lead__actions { grid-template-columns: 1fr; }
  .service-block__visual--field { padding: 20px 16px; }
  .services-path { min-height: 0; }
}

/* EU / US markets block */
.services-intl {
  padding-block: clamp(40px, 6vw, 72px);
  background:
    linear-gradient(165deg, rgba(22, 22, 63, 0.04) 0%, rgba(255, 255, 255, 0) 40%),
    var(--white);
}

.services-intl__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  margin-top: 8px;
}

.services-intl__point {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: 0 8px 28px rgba(22, 22, 63, 0.04);
}

.services-intl__point h3 {
  margin: 0 0 8px;
  font-size: var(--text-lg);
  color: var(--navy);
}

.services-intl__point p {
  margin: 0;
  color: var(--gray-700);
  line-height: 1.7;
}

.services-intl__offers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  margin-top: var(--space-8);
}

.services-intl__offer {
  display: flex;
  flex-direction: column;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  min-height: 100%;
}

.services-intl__offer h3 {
  margin: 0 0 6px;
  color: var(--yellow);
  font-size: var(--text-lg);
}

.services-intl__price {
  font-weight: 800;
  font-size: var(--text-xl);
  margin-bottom: 10px;
  unicode-bidi: isolate;
}

.services-intl__offer p {
  margin: 0 0 auto;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.services-intl__offer .btn {
  margin-top: 18px;
  align-self: flex-start;
}

.services-intl__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: var(--space-8);
}

.services-intl__note {
  margin-top: 16px;
  color: var(--gray-600);
  font-size: var(--text-sm);
}

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

@media (max-width: 768px) {
  .services-intl__grid,
  .services-intl__offers {
    grid-template-columns: 1fr;
  }

  .services-hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
}
