:root {
  --radius-cespo: 6px;
}

html { scroll-behavior: smooth; }

p { margin-bottom: 1em; }

#xfs,
#about,
#products,
#team,
#contacts {
  scroll-margin-top: 5.5rem;
}

.glass {
  background: #fff;
  border: 1px solid rgba(5,27,50,0.08);
  box-shadow: 0 4px 24px rgba(5,27,50,0.04);
  border-radius: var(--radius-cespo);
}

.glass-orange {
  background: rgba(250,133,1,0.05);
  border: 1px solid rgba(250,133,1,0.15);
  box-shadow: 0 4px 24px rgba(250,133,1,0.06);
  border-radius: var(--radius-cespo);
}

.gradient-text {
  background: linear-gradient(135deg, #FA8501, #F74801);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-gold {
  background: linear-gradient(135deg, #F9E146, #FBAD1C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glow-orange {
  box-shadow: 0 8px 48px rgba(250,133,1,0.15);
}

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

.float { animation: float 7s ease-in-out infinite; }

.grid-bg {
  background-image: radial-gradient(rgba(250,133,1,0.12) 1px, transparent 1px);
  background-size: 36px 36px;
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(140px);
}

.hero-bg-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-size: cover;
  background-position: center;
}

.hero-bg-photo {
  background-image: url('bg1.webp');
  background-position: center;
  background-size: cover;
  opacity: 0.99;
  filter: saturate(0.45) contrast(1.05);
}

.hero-bg-wash {
  background:
    linear-gradient(100deg, rgba(255,255,255,0.97) 0%, rgba(255,255,255,0.88) 42%, rgba(255,255,255,0.62) 68%, rgba(255,255,255,0.45) 100%),
    linear-gradient(to bottom, rgba(255,255,255,0.55) 0%, transparent 40%, rgba(255,255,255,0.75) 100%);
}

.hero {
  display: flex;
  align-items: center;
  min-height: 70vh;
}

@media (max-width: 767px) {
  .hero { min-height: 85vh; }
}

.hero-inner {
  width: 100%;
}

.hero-content {
  width: 100%;
  max-width: 38rem;
  margin-right: auto;
  text-align: left;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1.75rem;
}

.hero-eyebrow__mark {
  flex-shrink: 0;
width: 2rem;
  height: 2px;
  background: linear-gradient(90deg, #FA8501, #F74801);
  border-radius: 1px;
}

.hero-eyebrow__text {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(5, 27, 50, 0.42);
}

.hero-title {
  margin: 0 0 1.5rem;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: rgba(5, 27, 50, 0.82);
}

.hero-title span {
  background: linear-gradient(135deg, #FA8501, #F74801);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-lead {
  max-width: 28rem;
  margin: 0 0 2.25rem;
  font-size: clamp(1.0625rem, 1.6vw, 1.25rem);
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: -0.01em;
  color: rgba(5, 27, 50, 0.58);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.875rem;
}

@media (min-width: 1024px) {
  .hero-actions {
    flex-wrap: nowrap;
  }
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  border-radius: var(--radius-cespo);
  transition: all 0.3s ease;
}

.hero-btn .ph {
  font-size: 1.05em;
  line-height: 1;
}

.hero-btn--primary {
  background: linear-gradient(135deg, #FA8501, #F74801);
  color: #fff;
  box-shadow: 0 8px 48px rgba(250, 133, 1, 0.15);
}

.hero-btn--primary:hover {
  filter: brightness(1.08);
  box-shadow: 0 10px 32px rgba(250, 133, 1, 0.35);
  transform: translateY(-1px);
}

.hero-btn--ghost {
  background: rgba(5, 27, 50, 0.04);
  border: 1px solid rgba(5, 27, 50, 0.1);
  color: #051B32;
  font-weight: 500;
}

.hero-btn--ghost:hover {
  background: rgba(5, 27, 50, 0.08);
  border-color: rgba(5, 27, 50, 0.18);
  transform: translateY(-1px);
}

.hero-logo-watermark {
  position: absolute;
  right: 4%;
  top: 50%;
  width: min(42vw, 520px);
  height: auto;
  transform: translateY(-46%);
  opacity: 0.07;
  pointer-events: none;
  user-select: none;
}

.hero-visual {
  position: relative;
}

.hero-photo-card {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.hero-photo-card .hero-bg-photo {
  position: absolute;
  inset: 0;
}

@media (prefers-reduced-motion: reduce) {
  .float,
  .hero-drift,
  .hero-drift-reverse {
    animation: none;
  }
}

@keyframes drift {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(-12px,8px) scale(1.02); }
}

.hero-drift { animation: drift 18s ease-in-out infinite; }

@keyframes drift-reverse {
  0%,100% { transform: translate(0,0); }
  50% { transform: translate(10px,-6px); }
}

.hero-drift-reverse { animation: drift-reverse 22s ease-in-out infinite; }

.btn-gradient {
  background: linear-gradient(135deg, #FA8501, #F74801);
  border-radius: var(--radius-cespo);
  transition: all 0.3s;
}

.btn-gradient:hover {
  filter: brightness(1.1);
  box-shadow: 0 8px 32px rgba(250,133,1,0.35);
}

.nav-link { position: relative; }

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #FA8501, #F74801);
  transition: width 0.3s;
  border-radius: 1px;
}

.nav-link:hover::after { width: 100%; }

/* Products dropdown */
.nav-dropdown {
  position: relative;
  /* Bridge gap so cursor can reach the menu without losing :hover */
  padding-bottom: 0.85rem;
  margin-bottom: -0.85rem;
}

.nav-dropdown__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

.nav-dropdown__trigger.nav-link::after {
  display: none;
}

.nav-dropdown__chevron {
  transition: transform 0.2s ease;
  opacity: 0.7;
}

.nav-dropdown.is-open .nav-dropdown__chevron,
.mobile-submenu.is-open .nav-dropdown__chevron {
  transform: rotate(180deg);
}

.nav-dropdown__menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  min-width: 15.5rem;
  padding: 0.4rem;
  background: #fff;
  border: 1px solid rgba(5, 27, 50, 0.08);
  border-radius: var(--radius-cespo);
  box-shadow: 0 16px 40px rgba(5, 27, 50, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 60;
}

.nav-dropdown.is-open .nav-dropdown__menu,
.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown__item {
  display: block;
  padding: 0.7rem 0.85rem;
  border-radius: 4px;
  color: rgba(5, 27, 50, 0.72);
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.35;
  transition: background 0.15s ease, color 0.15s ease;
}

.nav-dropdown__item:hover,
.nav-dropdown__item.is-active {
  background: rgba(250, 133, 1, 0.08);
  color: #051B32;
}

.mobile-submenu__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

.mobile-submenu__list {
  margin-top: 0.5rem;
  padding-left: 0.25rem;
  border-left: 2px solid rgba(250, 133, 1, 0.35);
}

.card-hover {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.expertise-icon {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  background-color: currentColor;
  -webkit-mask: var(--expertise-icon) center / contain no-repeat;
  mask: var(--expertise-icon) center / contain no-repeat;
}

.card-hover:hover {
  transform: translateY(-4px);
  border-color: rgba(250,133,1,0.3);
  box-shadow: 0 16px 48px rgba(250,133,1,0.12);
}

.section-heading {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #051B32;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(5,27,50,0.08);
}

.section-heading--center {
  text-align: center;
}

.brand-divider {
  height: 2px;
  background: linear-gradient(90deg, #FA8501, #F74801);
  border: none;
}

.brand-rect {
  position: absolute;
  border-radius: var(--radius-cespo);
  pointer-events: none;
}

.brand-rect-back {
  background: linear-gradient(135deg, #FA8501, #F74801);
  opacity: 0.12;
}

.brand-rect-front {
  background: linear-gradient(135deg, rgba(249,225,70,0.25), rgba(251,173,28,0.15));
  border: 1px solid rgba(251,173,28,0.3);
}

.section-alt { background: #F7F8FA; }

/* —— VENDORS block —— */
.specto-vendors {
  position: relative;
  padding: 4rem 0 3.5rem;
  background: #F7F8FA;
  overflow: hidden;
}

.specto-vendors::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 50% 80% at 20% 50%, rgba(250, 133, 1, 0.04), transparent 65%),
    radial-gradient(ellipse 40% 60% at 85% 50%, rgba(251, 173, 28, 0.03), transparent 65%);
  pointer-events: none;
}

.specto-vendors__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2.5rem;
}

.specto-vendors__head .hero-eyebrow {
  margin-bottom: 0.625rem;
}

.specto-vendors__head .hero-eyebrow__mark {
  width: 1.5rem;
}

.specto-vendors__title {
  margin: 1rem 0 0;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-align: center;
  color: rgba(5, 27, 50, 0.6);
  line-height: 1.4;
}

.specto-vendors__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 700px;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .specto-vendors__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}

.vendor-card {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 2 / 1;
  padding: 1.25rem 1.5rem;
  background: #fff;
  border: 1px solid rgba(5, 27, 50, 0.08);
  border-radius: var(--radius-cespo);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(5, 27, 50, 0.03);
}

.vendor-card:hover {
  transform: translateY(-3px);
  border-color: rgba(250, 133, 1, 0.35);
  box-shadow:
    0 8px 28px rgba(250, 133, 1, 0.14),
    0 2px 8px rgba(250, 133, 1, 0.08);
}

.vendor-card__logo {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.75;
  transition: opacity 0.3s ease;
}

.vendor-card:hover .vendor-card__logo {
  opacity: 1;
}

.specto-vendors__divider {
  height: 1px;
  max-width: 40rem;
  margin: 2.5rem auto 0;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(5, 27, 50, 0.06) 20%,
    rgba(5, 27, 50, 0.12) 50%,
    rgba(5, 27, 50, 0.06) 80%,
    transparent 100%);
}

@media (max-width: 639px) {
  .specto-vendors {
    padding: 2.5rem 0 2rem;
  }

  .specto-vendors__title {
    font-size: 0.975rem;
  }

  .vendor-card {
    padding: 0.875rem 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .vendor-card {
    transition: none;
  }

  .vendor-card:hover {
    transform: none;
  }
}

/* —— Shared dark sections (value + principles) —— */
.specto-dark-section {
  position: relative;
  background:
    radial-gradient(ellipse 70% 55% at 85% 10%, rgba(250, 133, 1, 0.14), transparent 55%),
    radial-gradient(ellipse 55% 50% at 0% 90%, rgba(251, 173, 28, 0.1), transparent 55%),
    linear-gradient(155deg, #0f3456 0%, #0a2640 42%, #0c2d4a 100%);
  color: #fff;
}

.specto-dark-section__mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 45%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 45%, #000 20%, transparent 75%);
  opacity: 0.9;
}

.specto-dark-section__grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(250, 133, 1, 0.28) 1.1px, transparent 1.1px);
  background-size: 28px 28px;
  background-position: 0 0;
  opacity: 0.35;
  mask-image: linear-gradient(to bottom, transparent 0%, #000 18%, #000 82%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 18%, #000 82%, transparent 100%);
}

.specto-dark-section__glow {
  position: absolute;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(70px);
}

.specto-dark-section__glow--tr {
  top: -8rem;
  right: -6rem;
  background: rgba(250, 133, 1, 0.18);
}

.specto-dark-section__glow--bl {
  bottom: -6rem;
  left: -5rem;
  background: rgba(251, 173, 28, 0.12);
}

.specto-dark-section__glow--tl {
  top: -7rem;
  left: -6rem;
  background: rgba(250, 133, 1, 0.16);
}

.specto-dark-section__glow--br {
  right: -5rem;
  bottom: -8rem;
  background: rgba(251, 173, 28, 0.14);
}

/* —— PRINCIPLES block —— */
.specto-principles {
  padding: 5rem 0;
}

.specto-principles__head {
  margin-bottom: 2.75rem;
}

.specto-principles__title {
  margin: 0.75rem 0 0;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #fff;
}

.specto-principles__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .specto-principles__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
}

.principle-card {
  display: flex;
  align-items: flex-start;
  gap: 1.15rem;
  padding: 1.5rem 1.4rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-cespo);
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.principle-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(250, 133, 1, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.principle-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  flex-shrink: 0;
  border-radius: var(--radius-cespo);
  background: linear-gradient(145deg, rgba(250, 133, 1, 0.22), rgba(247, 72, 1, 0.1));
  border: 1px solid rgba(250, 133, 1, 0.28);
  color: #FA8501;
  font-size: 1.55rem;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.principle-card:hover .principle-card__icon {
  background: linear-gradient(145deg, rgba(250, 133, 1, 0.35), rgba(247, 72, 1, 0.18));
  border-color: rgba(250, 133, 1, 0.5);
  color: #FBAD1C;
}

.principle-card__body {
  min-width: 0;
  padding-top: 0.15rem;
}

.principle-card__title {
  margin: 0 0 0.4rem;
  font-size: 0.9375rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

.principle-card__desc {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: rgba(251, 173, 28, 0.92);
}

@media (max-width: 639px) {
  .specto-principles {
    padding: 3.5rem 0;
  }

  .specto-principles__title {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  .principle-card {
    padding: 1.15rem 1rem;
    gap: 0.9rem;
  }

  .principle-card__icon {
    width: 2.75rem;
    height: 2.75rem;
    font-size: 1.3rem;
  }

  .principle-card__title {
    font-size: 0.8125rem;
    letter-spacing: 0.06em;
  }

  .principle-card__desc {
    font-size: 0.875rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .principle-card {
    transition: none;
  }

  .principle-card:hover {
    transform: none;
  }
}

/* —— REGISTRY badge —— */
.specto-registry {
  padding: 3.5rem 0;
  background: #F7F8FA;
}

.specto-registry__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  max-width: 42rem;
  margin-inline: auto;
  padding: 1.75rem 2rem;
  text-decoration: none;
  border-radius: var(--radius-cespo);
  border: 1px solid transparent;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.specto-registry__badge:hover {
  background: #fff;
  border-color: rgba(5, 27, 50, 0.08);
  box-shadow: 0 8px 28px rgba(5, 27, 50, 0.06);
}

.specto-registry__emblem {
  display: block;
  width: 4.5rem;
  height: auto;
  flex-shrink: 0;
  opacity: 0.55;
  filter: brightness(0) saturate(100%);
  transition: opacity 0.25s ease;
}

.specto-registry__badge:hover .specto-registry__emblem {
  opacity: 0.75;
}

.specto-registry__text {
  margin: 0;
  font-size: clamp(0.975rem, 1.5vw, 1.125rem);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: -0.01em;
  color: rgba(5, 27, 50, 0.55);
}

.specto-registry__link {
  color: #FA8501;
  font-weight: 600;
  transition: color 0.2s ease;
}

.specto-registry__badge:hover .specto-registry__link {
  color: #F74801;
}

@media (max-width: 639px) {
  .specto-registry {
    padding: 2.75rem 0;
  }

  .specto-registry__badge {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding: 1.5rem 1.25rem;
  }

  .specto-registry__emblem {
    width: 3.75rem;
  }

  .specto-registry__text {
    font-size: 0.9375rem;
  }
}

/* —— Coverage: tasks + questions —— */
.specto-coverage {
  position: relative;
  padding: 5rem 0;
  background: #fff;
  overflow: hidden;
}

.specto-coverage__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 50% at 15% 20%, rgba(250, 133, 1, 0.05), transparent 60%),
    radial-gradient(ellipse 45% 45% at 90% 80%, rgba(251, 173, 28, 0.05), transparent 60%),
    linear-gradient(90deg, rgba(5, 27, 50, 0.03) 1px, transparent 1px),
    linear-gradient(rgba(5, 27, 50, 0.03) 1px, transparent 1px);
  background-size: auto, auto, 48px 48px, 48px 48px;
  mask-image: radial-gradient(ellipse 75% 70% at 50% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 75% 70% at 50% 50%, #000 30%, transparent 80%);
}

.specto-coverage__head {
  max-width: 36rem;
  margin-bottom: 2.75rem;
}

.specto-coverage__title {
  margin: 0.75rem 0 0.75rem;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #051B32;
}

.specto-coverage__lead {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(5, 27, 50, 0.55);
}

.specto-coverage__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .specto-coverage__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

.coverage-col {
  padding: 1.75rem 1.5rem;
  background: #F7F8FA;
  border: 1px solid rgba(5, 27, 50, 0.07);
  border-radius: var(--radius-cespo);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.coverage-col:hover {
  border-color: rgba(250, 133, 1, 0.28);
  box-shadow: 0 14px 36px rgba(5, 27, 50, 0.06);
  transform: translateY(-2px);
}

.coverage-col--accent {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.95), rgba(250, 133, 1, 0.04));
  border-color: rgba(250, 133, 1, 0.16);
}

.coverage-col__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.35rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(5, 27, 50, 0.08);
}

.coverage-col__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-cespo);
  background: rgba(250, 133, 1, 0.1);
  color: #FA8501;
  font-size: 1.25rem;
}

.coverage-col__title {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #051B32;
}

.coverage-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.coverage-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.7rem 0.35rem;
  border-radius: 4px;
  transition: background 0.2s ease;
}

.coverage-list li:hover {
  background: rgba(255, 255, 255, 0.7);
}

.coverage-col--accent .coverage-list li:hover {
  background: rgba(250, 133, 1, 0.05);
}

.coverage-list .ph {
  flex-shrink: 0;
  margin-top: 0.1rem;
  font-size: 1.15rem;
  color: #FA8501;
}

.coverage-list span {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: rgba(5, 27, 50, 0.72);
}

@media (max-width: 639px) {
  .specto-coverage {
    padding: 3.5rem 0;
  }

  .coverage-col {
    padding: 1.35rem 1.15rem;
  }

  .specto-coverage__title {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  .specto-coverage__lead {
    font-size: 0.925rem;
  }

  .coverage-list span {
    font-size: 0.875rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .coverage-col {
    transition: none;
  }

  .coverage-col:hover {
    transform: none;
  }
}

/* —— Features tabs —— */
.specto-features {
  position: relative;
  padding: 5rem 0;
  background: #F7F8FA;
  overflow: hidden;
}

.specto-features__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 45% at 80% 15%, rgba(250, 133, 1, 0.06), transparent 60%),
    radial-gradient(ellipse 40% 40% at 10% 85%, rgba(251, 173, 28, 0.05), transparent 60%),
    linear-gradient(90deg, rgba(5, 27, 50, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(5, 27, 50, 0.035) 1px, transparent 1px);
  background-size: auto, auto, 48px 48px, 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 25%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 25%, transparent 78%);
}

.specto-features__head {
  max-width: 36rem;
  margin-bottom: 2rem;
}

.specto-features__title {
  margin: 0.75rem 0 0.75rem;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #051B32;
}

.specto-features__lead {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(5, 27, 50, 0.55);
}

.features-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
  scroll-padding-inline: 0.25rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.features-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
  padding: 0.8rem 1.15rem;
  border: 1px solid rgba(5, 27, 50, 0.1);
  border-radius: var(--radius-cespo);
  background: #fff;
  color: rgba(5, 27, 50, 0.55);
  font: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.features-tab .ph {
  font-size: 1.15rem;
  color: rgba(5, 27, 50, 0.4);
  transition: color 0.2s ease;
}

.features-tab:hover {
  color: #051B32;
  border-color: rgba(250, 133, 1, 0.35);
}

.features-tab:hover .ph {
  color: #FA8501;
}

.features-tab.is-active {
  color: #051B32;
  border-color: rgba(250, 133, 1, 0.45);
  background: linear-gradient(165deg, #fff, rgba(250, 133, 1, 0.08));
  box-shadow: 0 8px 24px rgba(250, 133, 1, 0.12);
}

.features-tab.is-active .ph {
  color: #FA8501;
}

.features-tab:focus-visible {
  outline: 2px solid #FA8501;
  outline-offset: 2px;
}

.features-panel {
  display: none;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  align-items: center;
  padding: 1.75rem;
  background: #fff;
  border: 1px solid rgba(5, 27, 50, 0.06);
  border-radius: var(--radius-cespo);
  box-shadow: 0 4px 20px rgba(5, 27, 50, 0.04);
}

.features-panel.is-active {
  display: grid;
}

@media (min-width: 960px) {
  .features-panel.is-active {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
    gap: 2rem;
    padding: 2rem;
  }
}

.features-panel__title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #051B32;
}

.features-panel__lead {
  margin: 0 0 1.35rem;
  font-size: 0.975rem;
  line-height: 1.6;
  color: rgba(5, 27, 50, 0.58);
}

.features-panel__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.features-panel__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: rgba(5, 27, 50, 0.72);
}

.features-panel__list .ph {
  flex-shrink: 0;
  margin-top: 0.1rem;
  font-size: 1.1rem;
  color: #FA8501;
}

.features-panel__media {
  min-width: 0;
}

.features-panel__media img,
.specto-window__body img {
  max-width: 100%;
  height: auto;
}

.specto-monitor__media {
  max-width: 100%;
}

.features-panel__media--stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.specto-lightbox-trigger {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: zoom-in;
  text-align: left;
  border-radius: 12px;
}

.specto-lightbox-trigger:focus-visible {
  outline: 2px solid #FA8501;
  outline-offset: 3px;
}

.specto-lightbox-trigger__hint {
  position: absolute;
  right: 0.85rem;
  bottom: 0.85rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius-cespo);
  background: rgba(5, 27, 50, 0.72);
  color: #fff;
  font-size: 1.05rem;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}

.specto-lightbox-trigger:hover .specto-lightbox-trigger__hint,
.specto-lightbox-trigger:focus-visible .specto-lightbox-trigger__hint {
  opacity: 1;
  transform: translateY(0);
}

.specto-window--flat {
  transform: none;
  border-color: rgba(5, 27, 50, 0.08);
  box-shadow: 0 4px 20px rgba(5, 27, 50, 0.06);
  transition: box-shadow 0.25s ease;
}

.specto-window--flat:hover {
  transform: none;
  box-shadow: 0 8px 28px rgba(5, 27, 50, 0.09);
}

/* Lightbox */
.specto-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.specto-lightbox[hidden] {
  display: none;
}

.specto-lightbox__backdrop {
  position: absolute;
  inset: 0;
  border: none;
  padding: 0;
  background: rgba(5, 27, 50, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: zoom-out;
}

.specto-lightbox__dialog {
  position: relative;
  z-index: 1;
  max-width: min(1120px, 100%);
  max-height: calc(100vh - 3rem);
  margin: 0;
}

.specto-lightbox__img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 3rem);
  width: auto;
  height: auto;
  border-radius: var(--radius-cespo);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
  background: #fff;
}

.specto-lightbox__close {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: #051B32;
  font-size: 1.25rem;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: background 0.2s ease, color 0.2s ease;
}

.specto-lightbox__close:hover {
  background: #FA8501;
  color: #fff;
}

body.specto-lightbox-open {
  overflow: hidden;
}

@media (max-width: 639px) {
  .specto-features {
    padding: 3.5rem 0;
  }

  .specto-features__head {
    margin-bottom: 1.5rem;
  }

  .specto-features__title {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  .features-tabs {
    gap: 0.4rem;
    margin-bottom: 1.25rem;
  }

  .features-tab {
    padding: 0.65rem 0.85rem;
    font-size: 0.75rem;
    gap: 0.4rem;
  }

  .features-tab .ph {
    font-size: 1rem;
  }

  .features-panel {
    padding: 1.1rem;
    gap: 1.25rem;
  }

  .features-panel__lead {
    margin-bottom: 1rem;
    font-size: 0.9rem;
  }

  .features-panel__list li {
    font-size: 0.875rem;
    gap: 0.55rem;
  }

  .features-panel__media--stack {
    gap: 0.75rem;
  }

  .specto-window__chrome {
    padding: 0.5rem 0.7rem;
  }

  .specto-window__label {
    font-size: 0.65rem;
  }

  .specto-lightbox-trigger__hint {
    opacity: 0.9;
    transform: none;
  }

  .specto-lightbox {
    padding: 0.75rem;
  }

  .specto-lightbox__close {
    top: 0.5rem;
    right: 0.5rem;
  }

  .specto-lightbox__img {
    max-height: calc(100vh - 1.5rem);
  }
}

/* —— Commercial info —— */
.specto-commercial {
  position: relative;
  padding: 5rem 0 4rem;
  background: #fff;
  overflow: hidden;
}

.specto-commercial__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 50% at 50% 0%, rgba(250, 133, 1, 0.07), transparent 60%),
    radial-gradient(ellipse 40% 40% at 100% 100%, rgba(15, 52, 86, 0.05), transparent 55%),
    linear-gradient(90deg, rgba(5, 27, 50, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(5, 27, 50, 0.04) 1px, transparent 1px);
  background-size: auto, auto, 48px 48px, 48px 48px;
  mask-image: radial-gradient(ellipse 75% 65% at 50% 40%, #000 25%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 40%, #000 25%, transparent 78%);
}

.specto-commercial__card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
  width: 100%;
  max-width: none;
  margin-inline: auto;
  padding: 2rem 1.75rem;
  background:
    radial-gradient(ellipse 60% 50% at 100% 0%, rgba(250, 133, 1, 0.16), transparent 55%),
    linear-gradient(155deg, #0f3456 0%, #0a2640 50%, #0c2d4a 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-cespo);
  box-shadow: 0 8px 32px rgba(5, 27, 50, 0.12);
  color: #fff;
  overflow: hidden;
}

.specto-commercial__card::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 70% 80% at 80% 20%, #000 10%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 80% 20%, #000 10%, transparent 70%);
  opacity: 0.9;
}

@media (min-width: 768px) {
  .specto-commercial__card {
    grid-template-columns: auto 1fr;
    gap: 2rem;
    padding: 2.75rem 3rem;
  }
}

.specto-commercial__cert {
  width: 100%;
  max-width: none;
  margin: 1.25rem auto 0;
  padding: 0 0.25rem;
  text-align: center;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: rgba(5, 27, 50, 0.4);
}

.specto-commercial__icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.25rem;
  height: 4.25rem;
  border-radius: var(--radius-cespo);
  background: linear-gradient(145deg, rgba(250, 133, 1, 0.28), rgba(247, 72, 1, 0.12));
  border: 1px solid rgba(250, 133, 1, 0.35);
  color: #FBAD1C;
  font-size: 2rem;
}

.specto-commercial__body {
  position: relative;
  z-index: 1;
}

.specto-commercial__body .hero-eyebrow {
  margin-bottom: 0.85rem;
}

.specto-commercial__title {
  margin: 0 0 1rem;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: #fff;
}

.specto-commercial__text {
  margin: 0 0 0.85rem;
  font-size: 0.975rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
}

.specto-commercial__text:last-of-type {
  margin-bottom: 1.5rem;
}

.specto-commercial__cta {
  display: inline-flex;
}

@media (max-width: 639px) {
  .specto-commercial {
    padding: 3.5rem 0 3rem;
  }

  .specto-commercial__card {
    padding: 1.5rem 1.25rem;
  }

  .specto-commercial__icon {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.65rem;
  }

  .specto-commercial__title {
    font-size: 1.25rem;
  }

  .specto-commercial__text {
    font-size: 0.9rem;
  }

  .specto-commercial__cta {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
    line-height: 1.3;
    padding: 0.9rem 1rem;
  }

  .specto-commercial__cert {
    font-size: 0.75rem;
    padding-inline: 0.5rem;
  }
}

/* Contacts panel */
.contacts-panel {
  width: 100%;
  max-width: 28rem;
  padding: 1.75rem;
  background: rgba(5, 27, 50, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-cespo);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.contacts-panel__header {
  margin-bottom: 1.25rem;
}

.contacts-panel__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #FA8501;
}

.contacts-panel__mark {
  width: 2rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #FA8501, #F74801);
}

.contacts-panel__lead {
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
}

.contacts-list {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-item--last {
  border-bottom: none;
  padding-bottom: 0.25rem;
}

.contact-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
  border-radius: var(--radius-cespo);
  background: rgba(250, 133, 1, 0.16);
  color: #FA8501;
}

.contact-item__body {
  min-width: 0;
  padding-top: 0.125rem;
}

.contact-label {
  margin-bottom: 0.25rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #FBAD1C;
}

.contact-value {
  display: block;
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.45;
  color: #ffffff;
}

.contact-value--address {
  font-size: 0.9375rem;
  font-weight: 500;
}

.contacts-panel__cta {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.contacts-panel__cta-text {
  margin-bottom: 0.875rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
}

/* Contacts section decoration */
.contacts-glow-1 {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(250,133,1,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  animation: contacts-pulse 8s ease-in-out infinite;
}

.contacts-glow-2 {
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(251,173,28,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  animation: contacts-pulse 8s ease-in-out infinite;
  animation-delay: -4s;
}

@keyframes contacts-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

/* Contacts heading accent line */
.contacts-accent {
  width: 4rem;
  height: 3px;
  background: linear-gradient(90deg, #FA8501, #F74801);
  border-radius: 2px;
  margin: 1rem auto 0;
}

/* Link underline animation for contact links */
.contact-link {
  position: relative;
  display: inline-block;
  transition: color 0.2s ease;
}

.contact-link:hover {
  color: #FBAD1C;
}

.contact-link::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: linear-gradient(90deg, #FA8501, #F74801);
  transition: width 0.3s ease;
  border-radius: 1px;
}

.contact-link:hover::after {
  width: 100%;
}

/* Map container interaction */
.contacts-map-wrapper {
  position: relative;
  isolation: isolate;
}

.contacts-map-iframe {
  filter: saturate(0) grayscale(1) contrast(0.85);
  border: 0;
}

.contacts-map-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(5, 27, 50, 0.96), rgba(5, 27, 50, 0.88), rgba(5, 27, 50, 0.55));
}

.contacts-map-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  border-radius: var(--radius-cespo);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}

.section-heading--light {
  border-bottom-color: rgba(255, 255, 255, 0.10);
}
.team-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.team-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  color: rgba(5,27,50,0.7);
  font-size: 0.875rem;
  line-height: 1.65;
}

.team-marker {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  margin-top: 0.3em;
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  color: #FA8501;
}

.card-noise {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  mix-blend-mode: overlay;
}

/* Product cards — TV interference / glitch on hover */
.product-card {
  isolation: isolate;
  background-color: #051B32;
}

.product-card .card-bg {
  opacity: 0.4;
  transform: scale(1.05);
}

.product-card .card-overlay {
  background: linear-gradient(
    to bottom right,
    rgba(5, 27, 50, 0.82),
    rgba(7, 31, 58, 0.78),
    rgba(6, 29, 54, 0.85)
  );
}

.product-card::before,
.product-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 8;
  pointer-events: none;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.product-card::before {
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.18) 2px,
    rgba(0, 0, 0, 0.18) 3px
  );
  mix-blend-mode: multiply;
}

.product-card::after {
  inset: -20%;
  background-image:
    linear-gradient(90deg, transparent 42%, rgba(250, 133, 1, 0.35) 50%, transparent 58%),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='s'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23s)'/%3E%3C/svg%3E");
  background-size: 300% 100%, 160px 160px;
  mix-blend-mode: soft-light;
}

.product-card:hover::before {
  opacity: 1;
  animation: card-scanlines 0.1s linear infinite;
}

.product-card:hover::after {
  opacity: 0.55;
  animation:
    card-static-flicker 0.14s steps(3) infinite,
    card-static-drift 0.18s steps(2) infinite,
    card-interference-bar 1.8s ease-in-out infinite;
}

.product-card:hover .card-noise {
  opacity: 0.45 !important;
  animation:
    card-noise-flicker 0.12s steps(4) infinite,
    card-noise-drift 0.16s steps(2) infinite;
}

.product-card:hover .card-bg {
  animation: card-bg-glitch 2.4s steps(1) infinite;
}

@keyframes card-scanlines {
  0% { transform: translateY(0); }
  100% { transform: translateY(4px); }
}

@keyframes card-static-flicker {
  0%, 100% { opacity: 0.35; }
  33% { opacity: 0.65; }
  66% { opacity: 0.45; }
}

@keyframes card-static-drift {
  0% { transform: translate(0, 0); }
  50% { transform: translate(-3%, 2%); }
  100% { transform: translate(2%, -2%); }
}

@keyframes card-interference-bar {
  0%, 78%, 100% {
    background-position: -120% 0, 0 0;
    opacity: 0.35;
  }
  80% {
    background-position: 50% 0, 40px 20px;
    opacity: 0.75;
  }
  82% {
    background-position: 180% 0, -30px -15px;
    opacity: 0.5;
  }
}

@keyframes card-noise-flicker {
  0%, 100% { opacity: 0.3; }
  25% { opacity: 0.55; }
  50% { opacity: 0.25; }
  75% { opacity: 0.5; }
}

@keyframes card-noise-drift {
  0% { background-position: 0 0; }
  100% { background-position: 64px 48px; }
}

@keyframes card-bg-glitch {
  0%, 84%, 100% {
    transform: translate(0, 0) scale(1.05);
    filter: none;
    clip-path: inset(0 0 0 0);
  }
  85% {
    transform: translate(-6px, 0) scale(1.07);
    filter: saturate(2.2) contrast(1.35) hue-rotate(-8deg);
    clip-path: inset(12% 0 62% 0);
  }
  86% {
    transform: translate(5px, 1px) scale(1.01);
    filter: saturate(1.8) contrast(1.5) hue-rotate(12deg);
    clip-path: inset(58% 0 18% 0);
  }
  87% {
    transform: translate(-3px, -2px) scale(1.015);
    filter: saturate(2.5) contrast(1.2);
    clip-path: inset(32% 0 38% 0);
  }
  88% {
    transform: translate(4px, 0);
    filter: none;
    clip-path: inset(0 0 0 0);
  }
  92% {
    transform: translate(2px, 0);
    filter: saturate(1.6) brightness(1.15);
    clip-path: inset(72% 0 8% 0);
  }
  93% {
    transform: translate(-4px, 0);
    clip-path: inset(0 0 0 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-card:hover::before,
  .product-card:hover::after,
  .product-card:hover .card-noise,
  .product-card:hover .card-bg {
    animation: none;
  }

  .product-card:hover::after,
  .product-card:hover .card-noise {
    opacity: 0.2 !important;
  }

  .product-card:hover::before {
    opacity: 0.6;
  }
}

/* —— SPECTO product page —— */
.specto-hero {
  min-height: 0;
  background:
    radial-gradient(ellipse 55% 45% at 78% 42%, rgba(250, 133, 1, 0.08), transparent 72%),
    radial-gradient(ellipse 48% 36% at 18% 72%, rgba(251, 173, 28, 0.045), transparent 68%),
    linear-gradient(180deg, #ffffff 0%, #FBFBFC 42%, #F7F8FA 100%);
}

.specto-hero > .max-w-7xl {
  padding-bottom: 4.5rem;
}

@media (min-width: 1024px) {
  .specto-hero > .max-w-7xl {
    padding-bottom: 6.5rem;
  }
}

.specto-hero__ambiance {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.55) 42%, transparent 72%);
}

/* —— Hero bottom gradient decoration —— */
.specto-hero__bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 140px;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.specto-hero__bottom-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 90% at 18% 100%, rgba(250, 133, 1, 0.28), transparent 65%),
    radial-gradient(ellipse 50% 80% at 82% 100%, rgba(251, 173, 28, 0.22), transparent 65%),
    radial-gradient(ellipse 40% 70% at 50% 100%, rgba(247, 72, 1, 0.14), transparent 70%);
  filter: blur(22px);
  animation: specto-hero-bottom-pulse 8s ease-in-out infinite;
}

.specto-hero__bottom-line {
  display: none;
}

@keyframes specto-hero-bottom-pulse {
  0%, 100% { opacity: 0.85; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.04); }
}

@media (max-width: 1023px) {
  .specto-hero__bottom {
    height: 100px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .specto-hero__bottom-glow {
    animation: none;
  }
}

.specto-wordmark {
  font-family: "FB Agency";
  font-size: clamp(5rem, 11vw, 2.75rem);
  letter-spacing: 0.06em;
  background: linear-gradient(135deg, #FA8501, #F74801);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.specto-hero__title {
  margin: 0 0 1.1rem;
  font-size: clamp(1.7rem, 3.4vw, 2.55rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #051B32;
}

.specto-hero__lead {
  max-width: 26rem;
  margin: 0 0 1.75rem;
  font-size: clamp(0.975rem, 1.4vw, 1.0625rem);
  line-height: 1.65;
  color: rgba(5, 27, 50, 0.58);
}

.specto-hero__stage {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1600px;
  padding-bottom: 0.5rem;
}

/* Monitor device */
.specto-monitor {
  position: relative;
  width: min(100%, 720px);
  margin-inline: auto;
  animation: specto-monitor-float 7s ease-in-out infinite;
}

.specto-monitor__glow {
  position: absolute;
  inset: 8% -12% -6% -12%;
  background: radial-gradient(ellipse at center, rgba(250, 133, 1, 0.32), transparent 68%);
  filter: blur(42px);
  pointer-events: none;
  z-index: 0;
}

.specto-monitor__shadow {
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: -8%;
  height: 2.5rem;
  background: radial-gradient(ellipse at center, rgba(5, 27, 50, 0.42) 0%, rgba(5, 27, 50, 0.18) 35%, transparent 72%);
  filter: blur(18px);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.specto-monitor__device {
  position: relative;
  z-index: 1;
  transform: rotateY(-4deg) rotateX(2deg) translateZ(0);
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
}

.specto-monitor:hover .specto-monitor__device {
  transform: rotateY(-1deg) rotateX(0.5deg) translateZ(0);
}

.specto-monitor__bezel {
  position: relative;
  padding: 0.7rem;
  background:
    linear-gradient(150deg, #163d5e 0%, #0a2640 28%, #051B32 60%, #020d18 100%);
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -1px 0 rgba(0, 0, 0, 0.4),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 32px 64px rgba(5, 27, 50, 0.32),
    0 12px 28px rgba(5, 27, 50, 0.18);
}

.specto-monitor__camera {
  position: absolute;
  top: 0.38rem;
  left: 50%;
  width: 0.32rem;
  height: 0.32rem;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #4a6a88, #0a1624 70%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12),
    inset 0 0 0 1px rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.specto-monitor__screen {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #0b1522;
  aspect-ratio: 16 / 10;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.5) inset,
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.specto-monitor__media {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: fill;
  object-position: center center;
}

.specto-monitor__glass {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.04) 28%, transparent 48%),
    linear-gradient(to top, rgba(5, 27, 50, 0.18), transparent 35%);
  pointer-events: none;
  mix-blend-mode: soft-light;
}

.specto-monitor__scan {
  position: absolute;
  left: 0;
  right: 0;
  height: 28%;
  background: linear-gradient(to bottom, transparent, rgba(250, 133, 1, 0.07), transparent);
  animation: specto-scan 5.5s ease-in-out infinite;
  pointer-events: none;
  opacity: 0.7;
}

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

@keyframes specto-scan {
  0%, 100% { top: -20%; opacity: 0; }
  15% { opacity: 0.65; }
  50% { top: 80%; opacity: 0.4; }
  85% { opacity: 0; }
}

@media (max-width: 1023px) {
  .specto-hero {
    min-height: 0;
  }

  .specto-hero .max-w-7xl {
    padding-top: 6.5rem;
    padding-bottom: 4.25rem;
  }

  .specto-hero .grid {
    gap: 1.75rem;
  }

  .specto-monitor {
    width: min(100%, 440px);
    margin-top: 0.25rem;
  }

  .specto-monitor__glow {
    inset: 10% -6% -4% -6%;
    filter: blur(28px);
  }

  .specto-monitor__device {
    transform: none;
  }

  .specto-monitor:hover .specto-monitor__device {
    transform: none;
  }

  .specto-monitor__bezel {
    padding: 0.55rem;
    border-radius: 18px;
  }

  .specto-monitor__screen {
    border-radius: 12px;
  }
}

@media (max-width: 639px) {
  .specto-hero .max-w-7xl {
    padding-top: 5.5rem;
    padding-bottom: 3.75rem;
  }

  .specto-wordmark {
    font-family: "FB Agency";
    font-size: clamp(2rem, 11vw, 2.75rem);
    letter-spacing: 0.06em;
  }

  .specto-hero__title {
    font-size: clamp(1.45rem, 7vw, 1.85rem);
    margin-bottom: 0.9rem;
  }

  .specto-hero__lead {
    margin-bottom: 1.35rem;
    font-size: 0.95rem;
  }

  .specto-hero .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .specto-hero .hero-btn {
    justify-content: center;
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .specto-monitor {
    width: 100%;
    max-width: 360px;
  }

  .specto-monitor__shadow {
    bottom: -6%;
    height: 1.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .specto-monitor,
  .specto-monitor__scan {
    animation: none;
  }
}

.specto-hero__shot,
.specto-shot {
  display: block;
  width: 100%;
  border-radius: var(--radius-cespo);
  border: 1px solid rgba(5, 27, 50, 0.1);
  box-shadow: 0 24px 64px rgba(5, 27, 50, 0.14);
}

.bg-navy .specto-shot {
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
}

.specto-tick {
  flex-shrink: 0;
  width: 0.55rem;
  height: 0.55rem;
  margin-top: 0.55rem;
  border-radius: 1px;
  background: linear-gradient(135deg, #FA8501, #F74801);
}

/* —— VALUE block — "Что даёт SPECTO" —— */
.hero-eyebrow--on-dark .hero-eyebrow__text {
  color: rgba(255, 255, 255, 0.55);
}

.hero-eyebrow--on-dark .hero-eyebrow__mark {
  background: linear-gradient(90deg, #FA8501, #FBAD1C);
}

.specto-value {
  position: relative;
  padding: 5rem 0;
  background:
    linear-gradient(180deg, #F7F8FA 0%, #F7F8FA 100%);
  overflow: hidden;
}

.specto-value__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 28% at 50% 0%, rgba(250, 133, 1, 0.05), transparent 70%),
    radial-gradient(ellipse 50% 45% at 82% 28%, rgba(250, 133, 1, 0.05), transparent 60%),
    radial-gradient(ellipse 40% 40% at 12% 80%, rgba(251, 173, 28, 0.04), transparent 60%),
    linear-gradient(90deg, rgba(5, 27, 50, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(5, 27, 50, 0.035) 1px, transparent 1px);
  background-size: auto, auto, auto, 48px 48px, 48px 48px;
  mask-image: radial-gradient(ellipse 85% 75% at 50% 38%, #000 22%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 85% 75% at 50% 38%, #000 22%, transparent 80%);
}

.specto-value__title {
  margin: 0;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #051B32;
  padding-bottom: 0;
  border-bottom: none;
}

.specto-value__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.specto-value-item {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 1.25rem;
  padding: 1.15rem 0.85rem 1.15rem 0.75rem;
  margin: 0 -0.85rem 0 -0.75rem;
  border-radius: 8px;
  border-bottom: none;
  transition: background 0.25s ease, transform 0.25s ease;
}

.specto-value-item:last-child {
  border-bottom: none;
}

.specto-value-item:hover {
  background: linear-gradient(90deg, rgba(250, 133, 1, 0.08), rgba(250, 133, 1, 0.02) 70%, transparent);
  transform: translateX(2px);
}

.specto-value-item__num {
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #FA8501;
  opacity: 0.9;
  min-width: 1.5rem;
}

.specto-value-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(250, 133, 1, 0.12), rgba(247, 72, 1, 0.08));
  border: 1px solid rgba(250, 133, 1, 0.22);
  color: #F74801;
  font-size: 1.25rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.65),
    0 4px 14px rgba(250, 133, 1, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.specto-value-item:hover .specto-value-item__icon {
  transform: scale(1.06);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 6px 18px rgba(250, 133, 1, 0.18);
}

.specto-value-item__body {
  min-width: 0;
}

.specto-value-item__title {
  margin: 0 0 0.2rem;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: #051B32;
}

.specto-value-item__desc {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(5, 27, 50, 0.55);
}

/* —— App window mockup —— */
.specto-value__stage {
  position: relative;
  perspective: 1600px;
}

.specto-value__stage::before {
  content: '';
  position: absolute;
  inset: -8% -8% -12% -8%;
  background: radial-gradient(ellipse at 60% 50%, rgba(250, 133, 1, 0.16), transparent 70%);
  filter: blur(48px);
  pointer-events: none;
  z-index: 0;
}

.specto-window {
  position: relative;
  z-index: 1;
  background: #0b1522;
  border: 1px solid rgba(5, 27, 50, 0.12);
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 28px 64px rgba(5, 27, 50, 0.16),
    0 12px 28px rgba(5, 27, 50, 0.1);
  transform: rotateY(-6deg) rotateX(1.5deg) translateZ(0);
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.specto-window:hover {
  transform: rotateY(-2deg) rotateX(0.5deg) translateZ(0);
}

.specto-window__chrome {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.65rem 0.9rem;
  background: linear-gradient(180deg, #142b45 0%, #0e2138 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.specto-window__dots {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.specto-window__dots span {
  display: block;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: #2a3f57;
}

.specto-window__dots span:nth-child(1) { background: linear-gradient(135deg, #ff5f57, #d6443d); }
.specto-window__dots span:nth-child(2) { background: linear-gradient(135deg, #febc2e, #d99a1c); }
.specto-window__dots span:nth-child(3) { background: linear-gradient(135deg, #28c840, #1f9e30); }

.specto-window__label {
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.42);
}

.specto-window__body {
  background: #0b1522;
  line-height: 0;
}

.specto-window__body img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 1023px) {
  .specto-window {
    transform: none;
  }

  .specto-window:hover {
    transform: none;
  }

  .specto-value-item {
    gap: 1rem;
  }

  .specto-value-item__icon {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.125rem;
  }
}

@media (max-width: 639px) {
  .specto-value {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .specto-value-item {
    grid-template-columns: auto auto 1fr;
    gap: 0.65rem;
    padding: 0.9rem 0.65rem 0.9rem 0.55rem;
    margin: 0 -0.65rem 0 -0.55rem;
  }

  .specto-value-item__num {
    font-size: 0.7rem;
    min-width: 1.2rem;
  }

  .specto-value-item__icon {
    width: 2.35rem;
    height: 2.35rem;
    font-size: 1.05rem;
  }

  .specto-value-item:hover {
    transform: none;
  }

  .specto-value__title {
    font-size: clamp(1.6rem, 7vw, 2rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .specto-window,
  .specto-value-item,
  .specto-value-item__icon {
    transition: none;
  }

  .specto-window {
    transform: none;
  }
}

.specto-feature h3 {
  margin: 0 0 0.5rem;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #051B32;
}

.specto-feature p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(5, 27, 50, 0.55);
}

.specto-feature__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  margin-bottom: 1rem;
  border-radius: var(--radius-cespo);
  background: rgba(250, 133, 1, 0.08);
  overflow: hidden;
}

.specto-feature__icon img {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
}

.specto-feature__icon--tint {
  color: #FA8501;
}

.specto-q {
  position: relative;
  padding: 0.85rem 0 0.85rem 1.15rem;
  border-bottom: 1px solid rgba(5, 27, 50, 0.08);
  font-size: 0.975rem;
  font-weight: 500;
  line-height: 1.5;
  color: rgba(5, 27, 50, 0.78);
}

.specto-q::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.2rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 1px;
  background: #FA8501;
}

.specto-pillar h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #051B32;
}

.specto-pillar p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(5, 27, 50, 0.55);
}

.specto-pillar__img {
  width: 4.5rem;
  height: 4.5rem;
  margin-bottom: 1rem;
  object-fit: contain;
}

.specto-pillar__img--dark {
  filter: brightness(0) saturate(100%);
  opacity: 0.7;
}

.specto-cap {
  padding: 0.85rem 1rem;
  background: #fff;
  border: 1px solid rgba(5, 27, 50, 0.08);
  border-radius: var(--radius-cespo);
  font-size: 0.875rem;
  line-height: 1.45;
  color: rgba(5, 27, 50, 0.7);
}

.specto-legal {
  padding: 1.75rem;
  background: #fff;
  border: 1px solid rgba(5, 27, 50, 0.08);
  border-radius: var(--radius-cespo);
  box-shadow: 0 8px 32px rgba(5, 27, 50, 0.04);
}


/* —— XFS4IoT / Pakard product page —— */
.xfs-hero {
  min-height: 0;
  background:
    radial-gradient(ellipse 55% 45% at 78% 42%, rgba(250, 133, 1, 0.08), transparent 72%),
    radial-gradient(ellipse 48% 36% at 18% 72%, rgba(251, 173, 28, 0.045), transparent 68%),
    linear-gradient(180deg, #ffffff 0%, #FBFBFC 42%, #F7F8FA 100%);
}

.xfs-hero > .max-w-7xl {
  padding-bottom: 4.5rem;
}

@media (min-width: 1024px) {
  .xfs-hero > .max-w-7xl {
    padding-bottom: 6.5rem;
  }
}

.xfs-hero__ambiance {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.55) 42%, transparent 72%);
}

.xfs-hero__bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 140px;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.xfs-hero__bottom-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 90% at 18% 100%, rgba(250, 133, 1, 0.28), transparent 65%),
    radial-gradient(ellipse 50% 80% at 82% 100%, rgba(251, 173, 28, 0.22), transparent 65%),
    radial-gradient(ellipse 40% 70% at 50% 100%, rgba(247, 72, 1, 0.14), transparent 70%);
  filter: blur(22px);
  animation: xfs-hero-bottom-pulse 8s ease-in-out infinite;
}

@keyframes xfs-hero-bottom-pulse {
  0%, 100% { opacity: 0.85; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.04); }
}

.xfs-pakard-logo {
  display: block;
  height: 2rem;
  width: auto;
  filter: brightness(0) saturate(100%);
  opacity: 0.88;
}

.xfs-wordmark {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  font-family: 'IBM Plex Mono', 'Montserrat', monospace;
  background: linear-gradient(135deg, #FA8501, #F74801);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.xfs-hero__title {
  margin: 0 0 1rem;
  font-size: clamp(1.35rem, 2.6vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: #051B32;
}

.xfs-hero__lead {
  margin: 0 0 1.75rem;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(5, 27, 50, 0.55);
  max-width: 32rem;
}

.xfs-hero__copy {
  animation: xfs-fade-up 0.75s ease-out both;
}

.xfs-hero__stage {
  animation: xfs-fade-up 0.75s ease-out 0.15s both;
}

@keyframes xfs-fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hero mini-diagram */
.xfs-hero-diagram {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.65rem;
  padding: 1.5rem;
  background:
    radial-gradient(ellipse 60% 50% at 90% 10%, rgba(250, 133, 1, 0.10), transparent 55%),
    linear-gradient(155deg, #ffffff 0%, #FBFBFC 50%, #F7F8FA 100%);
  border: 1px solid rgba(5, 27, 50, 0.08);
  border-radius: var(--radius-cespo);
  box-shadow: 0 20px 48px rgba(5, 27, 50, 0.10);
  color: #051B32;
}

.xfs-hero-diagram__apps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.xfs-hero-diagram__apps span,
.xfs-hero-diagram__drivers {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0.75rem;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius-cespo);
}

.xfs-hero-diagram__apps span {
  background: rgba(250, 133, 1, 0.12);
  color: #051B32;
  border: 1px solid rgba(250, 133, 1, 0.35);
}

.xfs-hero-diagram__core {
  padding: 1rem;
  background: rgba(5, 27, 50, 0.04);
  border: 1px solid rgba(5, 27, 50, 0.10);
  border-radius: var(--radius-cespo);
}

.xfs-hero-diagram__label {
  display: block;
  margin-bottom: 0.75rem;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #051B32;
}

.xfs-hero-diagram__sps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
}

.xfs-hero-diagram__sps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  padding: 0.5rem 0.35rem;
  font-size: 0.65rem;
  font-weight: 600;
  color: #051B32;
  background: rgba(250, 133, 1, 0.08);
  border: 1px solid rgba(250, 133, 1, 0.30);
  border-radius: 4px;
}

.xfs-hero-diagram__sps span i {
  font-size: 0.85rem;
  flex-shrink: 0;
}

.xfs-hero-diagram__drivers {
  background: rgba(5, 27, 50, 0.05);
  border: 1px solid rgba(5, 27, 50, 0.12);
  color: #051B32;
}

/* Connectors */
.xfs-arch__conn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0;
}

.xfs-arch__conn--short {
  padding: 0.15rem 0;
}

.xfs-arch__flow {
  position: relative;
  width: 2px;
  height: 1.75rem;
  background: linear-gradient(180deg, rgba(250, 133, 1, 0.15), rgba(250, 133, 1, 0.75), rgba(250, 133, 1, 0.15));
  border-radius: 2px;
  overflow: hidden;
}

.xfs-arch__flow::after {
  content: '';
  position: absolute;
  left: -3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FA8501;
  box-shadow: 0 0 10px rgba(250, 133, 1, 0.7);
  animation: xfs-flow-pulse 2.2s ease-in-out infinite;
}

.xfs-arch__conn--short .xfs-arch__flow {
  height: 1.1rem;
}

@keyframes xfs-flow-pulse {
  0% { top: 0; opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { top: calc(100% - 8px); opacity: 0; }
}

.xfs-arch__transport {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
}

/* Core features */
.xfs-core {
  position: relative;
  padding: 5rem 0;
  background: #fff;
  overflow: hidden;
}

.xfs-core__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 45% at 0% 20%, rgba(250, 133, 1, 0.06), transparent 60%),
    radial-gradient(ellipse 40% 40% at 100% 80%, rgba(15, 52, 86, 0.04), transparent 55%);
}

.xfs-core__head {
  margin-bottom: 2.5rem;
  max-width: 48rem;
}

.xfs-core__title {
  margin: 0.75rem 0 1.5rem;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #051B32;
}

.xfs-core__lead {
  margin: 0 0 3rem;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 400;
  line-height: 1.55;
  color: rgba(5, 27, 50, 0.65);
  max-width: 42rem;
}

.xfs-features-list {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: xfs-feature;
  border-top: 1px solid rgba(5, 27, 50, 0.08);
}

.xfs-feature {
  counter-increment: xfs-feature;
  display: flex;
  align-items: baseline;
  gap: 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(5, 27, 50, 0.08);
}

.xfs-feature::before {
  content: counter(xfs-feature, decimal-leading-zero);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.875rem;
  font-weight: 500;
  color: #FA8501;
  flex-shrink: 0;
  width: 2rem;
}

.xfs-feature:hover::before {
  color: #F74801;
}

.xfs-feature:hover .xfs-feature__text {
  color: #051B32;
}

.xfs-feature__text {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.5;
  color: rgba(5, 27, 50, 0.8);
}

@media (max-width: 639px) {
  .xfs-feature {
    padding: 1.25rem 0;
    gap: 1.25rem;
  }
  .xfs-feature__text {
    font-size: 0.975rem;
  }
}

/* Architecture diagram */
.xfs-arch {
  padding: 5rem 0;
}

.xfs-arch__head {
  margin-bottom: 2.5rem;
  text-align: center;
}

.xfs-arch__head .hero-eyebrow {
  justify-content: center;
}

.xfs-arch__title {
  margin: 0.75rem 0 0.75rem;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #fff;
}

.xfs-arch__lead {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.5);
}

.xfs-diagram {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.25rem;
  max-width: 56rem;
  margin-inline: auto;
}

.xfs-diagram__apps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .xfs-diagram__apps {
    grid-template-columns: 1fr 1fr;
  }
}

.xfs-diagram__node {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 1rem 1.15rem;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: var(--radius-cespo);
}

.xfs-diagram__node--app {
  background: linear-gradient(135deg, #FA8501, #F74801);
  color: #fff;
  box-shadow: 0 8px 24px rgba(250, 133, 1, 0.25);
}

.xfs-diagram__node .ph {
  font-size: 1.15rem;
  flex-shrink: 0;
}

.xfs-diagram__discovery {
  padding: 1.25rem 1rem 1.15rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-cespo);
}

.xfs-diagram__discovery-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #fff;
}

.xfs-diagram__discovery-head .ph {
  color: #FA8501;
  font-size: 1.25rem;
}

.xfs-diagram__sps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
}

@media (min-width: 480px) {
  .xfs-diagram__sps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .xfs-diagram__sps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.xfs-diagram__sp {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 0.85rem;
  background: rgba(5, 27, 50, 0.35);
  border: 1px solid rgba(250, 133, 1, 0.18);
  border-radius: var(--radius-cespo);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.3;
  color: #FA8501;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.xfs-diagram__sp:hover {
  background: rgba(250, 133, 1, 0.1);
  border-color: rgba(250, 133, 1, 0.4);
}

.xfs-diagram__sp .ph {
  flex-shrink: 0;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
}

.xfs-diagram__drivers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  padding: 1rem 1.15rem;
  background: rgba(91, 48, 10, 0.45);
  border: 1px solid rgba(250, 133, 1, 0.35);
  border-radius: var(--radius-cespo);
}

@media (min-width: 640px) {
  .xfs-diagram__drivers {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

.xfs-diagram__drivers-main {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #FA8501;
}

.xfs-diagram__drivers-main .ph {
  font-size: 1.2rem;
}

.xfs-diagram__secure {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  padding: 0.65rem 0.85rem;
  border: 1px dashed rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-cespo);
}

.xfs-diagram__secure span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.xfs-diagram__secure .ph {
  color: #FBAD1C;
}

/* Services dual columns */
.xfs-services {
  padding: 5rem 0;
  background: #F7F8FA;
}

.xfs-services__head {
  margin-bottom: 2.5rem;
  max-width: 40rem;
}

.xfs-services__title {
  margin: 0.75rem 0 0;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #051B32;
}

.xfs-services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .xfs-services__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

.xfs-svc {
  padding: 1.75rem 1.5rem;
  background: #fff;
  border: 1px solid rgba(5, 27, 50, 0.08);
  border-radius: var(--radius-cespo);
  box-shadow: 0 4px 20px rgba(5, 27, 50, 0.04);
}

@media (min-width: 768px) {
  .xfs-svc {
    padding: 2rem 1.75rem;
  }
}

.xfs-svc__head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid rgba(5, 27, 50, 0.08);
}

.xfs-svc__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-cespo);
  background: rgba(250, 133, 1, 0.1);
  color: #FA8501;
  font-size: 1.35rem;
}

.xfs-svc__title {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #051B32;
}

.xfs-svc__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.xfs-svc__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(5, 27, 50, 0.7);
}

.xfs-svc__list .ph {
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: #FA8501;
  font-size: 1.15rem;
}

/* Why XFS4IoT */
.xfs-why {
  padding: 5rem 0;
}

.xfs-why__head {
  margin-bottom: 2.5rem;
}

.xfs-why__title {
  margin: 0.75rem 0 0;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #fff;
}

.xfs-why__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .xfs-why__list {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
}

/* CTA */
.xfs-cta {
  position: relative;
  padding: 5rem 0 4rem;
  background: #fff;
  overflow: hidden;
}

.xfs-cta__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 50% at 50% 0%, rgba(250, 133, 1, 0.07), transparent 60%),
    radial-gradient(ellipse 40% 40% at 100% 100%, rgba(15, 52, 86, 0.05), transparent 55%),
    linear-gradient(90deg, rgba(5, 27, 50, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(5, 27, 50, 0.04) 1px, transparent 1px);
  background-size: auto, auto, 48px 48px, 48px 48px;
  mask-image: radial-gradient(ellipse 75% 65% at 50% 40%, #000 25%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 40%, #000 25%, transparent 78%);
}

.xfs-cta__card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
  width: 100%;
  max-width: none;
  margin-inline: auto;
  padding: 2rem 1.75rem;
  background:
    radial-gradient(ellipse 60% 50% at 100% 0%, rgba(250, 133, 1, 0.16), transparent 55%),
    linear-gradient(155deg, #0f3456 0%, #0a2640 50%, #0c2d4a 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-cespo);
  box-shadow: 0 8px 32px rgba(5, 27, 50, 0.12);
  color: #fff;
  overflow: hidden;
}

.xfs-cta__card::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 70% 80% at 80% 20%, #000 10%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 80% 20%, #000 10%, transparent 70%);
  opacity: 0.9;
}

@media (min-width: 768px) {
  .xfs-cta__card {
    grid-template-columns: auto 1fr;
    gap: 2rem;
    padding: 2.75rem 3rem;
  }
}

.xfs-cta__icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.25rem;
  height: 4.25rem;
  border-radius: var(--radius-cespo);
  background: linear-gradient(145deg, rgba(250, 133, 1, 0.28), rgba(247, 72, 1, 0.12));
  border: 1px solid rgba(250, 133, 1, 0.35);
  color: #FBAD1C;
  font-size: 2rem;
}

.xfs-cta__title {
  margin: 0.75rem 0 0.85rem;
  font-size: clamp(1.4rem, 2.8vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: #fff;
}

.xfs-cta__text {
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
  max-width: 36rem;
}

.xfs-cta__btn {
  display: inline-flex;
}

/* Responsive tweaks */
@media (max-width: 1023px) {
  .xfs-hero__bottom {
    height: 100px;
  }

  .xfs-core,
  .xfs-arch,
  .xfs-services,
  .xfs-why {
    padding: 3.5rem 0;
  }

  .xfs-cta {
    padding: 3.5rem 0 3rem;
  }
}

@media (max-width: 639px) {
  .xfs-hero-diagram__sps {
    grid-template-columns: 1fr 1fr;
  }

  .xfs-diagram__node {
    font-size: 0.8rem;
    padding: 0.85rem 0.9rem;
  }

  .xfs-wordmark {
    letter-spacing: 0.02em;
  }

  .xfs-cta__card {
    padding: 1.5rem 1.25rem;
  }

  .xfs-cta__icon {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.65rem;
  }

  .xfs-cta__title {
    font-size: 1.25rem;
  }

  .xfs-cta__text {
    font-size: 0.9rem;
  }

  .xfs-cta__btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
    line-height: 1.3;
    padding: 0.9rem 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .xfs-hero__bottom-glow,
  .xfs-arch__flow::after,
  .xfs-hero__copy,
  .xfs-hero__stage {
    animation: none;
  }

  .xfs-hero__copy,
  .xfs-hero__stage {
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   Generic content lists (plain HTML from CMS / admin panel)
   Bare ul/ol without classes get site-style markers & spacing
   ============================================================ */

ul:not([class]),
ol:not([class]) {
  list-style: none;
  margin: 1.25em 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

/* Unordered list items */
ul:not([class]) > li {
  position: relative;
  padding-left: 2.1rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: rgba(5, 27, 50, 0.75);
}

/* SVG check-circle marker (stroke, not fill — fill-rule blobs the icon) */
ul:not([class]) > li::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0.12em;
  width: 1.3em;
  height: 1.3em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256' fill='none'%3E%3Ccircle cx='128' cy='128' r='96' stroke='%23FA8501' stroke-width='16'/%3E%3Cpolyline points='88 136 112 160 168 104' stroke='%23FA8501' stroke-width='16' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  transition: opacity 0.2s ease;
}

ul:not([class]) > li:hover::before {
  opacity: 0.8;
}

/* Ordered list items */
ol:not([class]) {
  counter-reset: cespo-list;
}

ol:not([class]) > li {
  counter-increment: cespo-list;
  position: relative;
  padding-left: 2.55em;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: rgba(5, 27, 50, 0.75);
}

ol:not([class]) > li::before {
  content: counter(cespo-list, decimal-leading-zero);
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
  font-size: 1em;
  font-weight: 600;
  color: #FA8501;
  position: absolute;
  left: 0;
  top: 0.15em;
  min-width: 2em;
  transition: color 0.2s ease;
}

ol:not([class]) > li:hover::before {
  color: #F74801;
}

/* Nested lists */
ul:not([class]) ul:not([class]),
ol:not([class]) ul:not([class]),
ul:not([class]) ol:not([class]),
ol:not([class]) ol:not([class]) {
  margin-top: 0.5rem;
  gap: 0.4rem;
}

ul:not([class]) ul:not([class]) > li {
  padding-left: 1.8em;
  font-size: 0.9em;
  line-height: 1.5;
}

ul:not([class]) ul:not([class]) > li::before {
  content: '';
  display: block;
  width: 0.85em;
  height: 0.85em;
  top: 0.3em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256' fill='none'%3E%3Cpolyline points='96 48 176 128 96 208' stroke='%23FBAD1C' stroke-width='16' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}

/* Nested ordered lists get counters */
ul:not([class]) ol:not([class]) > li::before,
ol:not([class]) ol:not([class]) > li::before {
  content: counter(cespo-list, decimal-leading-zero);
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
  font-size: 0.9em;
  font-weight: 600;
  color: #FBAD1C;
}

/* Links inside content lists */
ul:not([class]) > li > a,
ol:not([class]) > li > a {
  color: #F74801;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

ul:not([class]) > li > a:hover,
ol:not([class]) > li > a:hover {
  color: #FA8501;
}

/* Bold text inside list items */
ul:not([class]) > li > strong,
ol:not([class]) > li > strong {
  color: #051B32;
  font-weight: 650;
}

/* Services page */
.services-hero {
  min-height: 0;
  background:
    radial-gradient(ellipse 55% 45% at 78% 42%, rgba(250, 133, 1, 0.08), transparent 72%),
    radial-gradient(ellipse 48% 36% at 18% 72%, rgba(251, 173, 28, 0.045), transparent 68%),
    linear-gradient(180deg, #ffffff 0%, #FBFBFC 42%, #F7F8FA 100%);
}

.services-hero > .max-w-7xl {
  padding-bottom: 3.5rem;
}

@media (min-width: 1024px) {
  .services-hero > .max-w-7xl {
    padding-bottom: 5rem;
  }
}

.services-hero__ambiance {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.55) 42%, transparent 72%);
}

.services-hero__bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 140px;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.services-hero__bottom-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 90% at 18% 100%, rgba(250, 133, 1, 0.28), transparent 65%),
    radial-gradient(ellipse 50% 80% at 82% 100%, rgba(251, 173, 28, 0.22), transparent 65%),
    radial-gradient(ellipse 40% 70% at 50% 100%, rgba(247, 72, 1, 0.14), transparent 70%);
  filter: blur(22px);
  animation: specto-hero-bottom-pulse 8s ease-in-out infinite;
}

@media (max-width: 1023px) {
  .services-hero__bottom {
    height: 100px;
  }
}

.services-hero__copy {
  animation: xfs-fade-up 0.75s ease-out both;
}

.services-hero__title {
  margin: 0 0 1.1rem;
  font-size: clamp(1.7rem, 3.4vw, 2.55rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #051B32;
}

.services-hero__lead {
  max-width: 42rem;
  margin: 0;
  font-size: clamp(0.975rem, 1.4vw, 1.0625rem);
  line-height: 1.65;
  color: rgba(5, 27, 50, 0.58);
}

@media (prefers-reduced-motion: reduce) {
  .services-hero__bottom-glow {
    animation: none;
  }

  .services-hero__copy {
    animation: none;
  }
}

.services-body__inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .services-body__inner {
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .services-body__inner {
    gap: 2rem;
  }
}

.services-body {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

@media (min-width: 768px) {
  .services-body {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

@media (min-width: 1024px) {
  .services-body {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.services-packages__grid,
.services-features__grid {
  display: grid;
  gap: 1.25rem;
  align-items: stretch;
}

@media (min-width: 768px) {
  .services-packages__grid,
  .services-features__grid {
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .services-packages__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
  }

  .services-features__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
  }
}

.services-package.xfs-svc {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
  box-sizing: border-box;
}

.services-package .xfs-svc__title {
  line-height: 1.35;
}

.services-package__intro {
  margin: -0.35rem 0 1.25rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(5, 27, 50, 0.72);
}

.services-package__content {
  flex: 1;
}

.services-package__content ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.services-package__content li {
  position: relative;
  padding-left: 1.85rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(5, 27, 50, 0.7);
}

.services-package__content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.15rem;
  width: 1.15rem;
  height: 1.15rem;
  background-color: #FA8501;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='black' d='M128 24a104 104 0 1 0 104 104A104.11 104.11 0 0 0 128 24Zm0 192a88 88 0 1 1 88-88 88.1 88.1 0 0 1-88 88Zm45.66-101.66a8 8 0 0 1 0 11.32l-48 48a8 8 0 0 1-11.32 0l-24-24a8 8 0 0 1 11.32-11.32L120 156.69l42.34-42.35a8 8 0 0 1 11.32 0Z'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cpath fill='black' d='M128 24a104 104 0 1 0 104 104A104.11 104.11 0 0 0 128 24Zm0 192a88 88 0 1 1 88-88 88.1 88.1 0 0 1-88 88Zm45.66-101.66a8 8 0 0 1 0 11.32l-48 48a8 8 0 0 1-11.32 0l-24-24a8 8 0 0 1 11.32-11.32L120 156.69l42.34-42.35a8 8 0 0 1 11.32 0Z'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}

.services-feature-card__desc p {
  margin: 0 0 0.65rem;
}

.services-feature-card__desc p:last-child {
  margin-bottom: 0;
}

.services-features {
  margin: 0;
  padding: 0;
  border: 0;
}

.services-feature-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  min-height: 100%;
  box-sizing: border-box;
  padding: 1.75rem 1.5rem;
  background: #fff;
  border: 1px solid rgba(5, 27, 50, 0.08);
  border-radius: var(--radius-cespo);
  box-shadow: 0 4px 20px rgba(5, 27, 50, 0.04);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

@media (min-width: 768px) {
  .services-feature-card {
    padding: 2rem 1.75rem;
  }
}

.services-feature-card:hover {
  border-color: rgba(250, 133, 1, 0.28);
  box-shadow: 0 8px 28px rgba(5, 27, 50, 0.08);
  transform: translateY(-2px);
}

.services-feature-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1.15rem;
  border-radius: var(--radius-cespo);
  background: rgba(250, 133, 1, 0.1);
  color: #FA8501;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.services-feature-card__title {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.35;
  color: #051B32;
}

.services-feature-card__desc {
  margin: 0;
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(5, 27, 50, 0.72);
}

@media (min-width: 768px) {
  .services-features__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  .services-feature-card {
    transition: none;
  }

  .services-feature-card:hover {
    transform: none;
  }
}
