:root {
  --color-bg: #f8fafc;
  --color-bg-soft: #eef3f8;
  --color-surface: #ffffff;
  --color-surface-alt: #f2f7fc;
  --color-card: #ffffff;
  --color-border: rgba(15, 63, 109, 0.14);
  --color-border-strong: rgba(31, 116, 255, 0.36);
  --color-text: #10243c;
  --color-text-muted: #4e647d;
  --color-cyan: #15d5ff;
  --color-blue: #1f74ff;
  --color-accent: #4bb8ff;
  --color-dark: #061427;
  --gradient-brand: linear-gradient(135deg, #072047 0%, #0e3f84 45%, #11b2e0 100%);
  --radius-s: 0.75rem;
  --radius-m: 1.2rem;
  --radius-l: 1.6rem;
  --shadow-soft: 0 14px 30px rgba(7, 31, 61, 0.09);
  --shadow-glow: 0 0 0 1px rgba(98, 194, 255, 0.16), 0 16px 34px rgba(17, 128, 255, 0.18);
  --max-width: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", "Trebuchet MS", "Arial", sans-serif;
  color: var(--color-text);
  background: linear-gradient(180deg, #f8fafc 0%, #f4f8fc 56%, #eef4fa 100%);
  line-height: 1.5;
}

.s-home {
  background: #010d2a;
  padding-top: 5.75rem;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.l-container {
  width: min(100% - var(--layout-page-gutter, 2rem), var(--max-width));
  margin-inline: auto;
}

.l-grid {
  display: grid;
  gap: 1rem;
}

.s-site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(248, 251, 255, 0.78));
  border-bottom: 1px solid rgba(42, 107, 172, 0.12);
}

.l-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  min-height: 4.6rem;
}

.c-logo {
  display: inline-flex;
  align-items: center;
  max-width: min(52vw, 15rem);
}

.c-logo__img {
  display: block;
  width: 100%;
  height: auto;
}

.c-logo__img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.c-nav {
  display: none;
}

.s-home main > section {
  padding: 5.2rem 0;
}

.s-home main > section {
  position: relative;
  overflow: hidden;
}

.s-home-hero {
  min-height: calc(100vh - 4.6rem);
  padding-top: 7.2rem;
  padding-bottom: 4rem;
  background:
    radial-gradient(circle at 12% 12%, rgba(34, 111, 255, 0.28), transparent 36%),
    radial-gradient(circle at 98% 34%, rgba(30, 94, 255, 0.2), transparent 40%),
    linear-gradient(130deg, #01081d 0%, #021136 45%, #041646 100%);
}

.s-home-hero::before,
.s-home-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.s-home-hero::before {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 10, 29, 0.9) 0%, rgba(2, 11, 32, 0.84) 35%, rgba(2, 10, 31, 0.45) 56%, rgba(2, 10, 31, 0.08) 70%),
    linear-gradient(180deg, rgba(0, 7, 22, 0.25), rgba(0, 7, 22, 0.5));
  z-index: 0;
}

.s-home-hero::after {
  inset: auto 0 0 0;
  height: 5.8rem;
  background: linear-gradient(180deg, transparent, rgba(0, 6, 19, 0.75));
  z-index: 2;
}

.l-grid--hero {
  position: relative;
  align-items: center;
  gap: 2.5rem;
  z-index: 1;
}

.c-hero-copy {
  position: relative;
  z-index: 1;
}

.c-hero-copy::before {
  display: none;
}

.c-eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  color: #6bb5ff;
  position: relative;
  padding-right: 4.25rem;
}

.c-eyebrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 3.4rem;
  height: 1px;
  background: linear-gradient(90deg, #1f6cff, rgba(31, 108, 255, 0));
}

.c-hero-copy h1 {
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 3.55rem);
  line-height: 1.16;
  letter-spacing: -0.02em;
  max-width: 16ch;
  color: #f3f8ff;
  text-shadow: 0 2px 16px rgba(1, 8, 29, 0.92);
}

.c-hero-copy h1 span {
  color: #1675ff;
}

.c-lead {
  margin: 1.55rem 0 0;
  color: #c9dcf8;
  max-width: 54ch;
  font-size: 1.03rem;
}

.s-home-services .c-eyebrow,
.s-home-authority .c-eyebrow,
.s-home-process .c-eyebrow,
.s-home-plans .c-eyebrow {
  color: #2a6ca8;
}

.s-home-services .c-section-title,
.s-home-authority .c-section-title,
.s-home-process .c-section-title,
.s-home-plans .c-section-title {
  color: #0f2d4c;
}

.s-home-authority .c-lead {
  color: #4d6680;
}

.c-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: 0.65rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.c-btn:hover {
  transform: translateY(-2px);
}

.c-btn--primary {
  color: #f5faff;
  background: linear-gradient(135deg, #0058f1 0%, #1d82ff 100%);
  box-shadow: 0 12px 22px rgba(8, 66, 183, 0.45);
}

.c-btn--secondary {
  color: #deedff;
  background: rgba(4, 24, 63, 0.62);
  border-color: rgba(103, 160, 255, 0.36);
}

.c-btn--ghost {
  color: #0f4a7c;
  border-color: rgba(42, 124, 194, 0.32);
  background: rgba(255, 255, 255, 0.86);
}

.s-home-hero .c-eyebrow {
  color: #8fd4ff;
}

.s-home-hero .c-btn--ghost,
.s-home-cta .c-btn--ghost {
  color: #d7efff;
  border-color: rgba(134, 210, 255, 0.45);
  background: rgba(8, 29, 56, 0.6);
}

.s-home-hero .c-btn--secondary {
  color: #e3f3ff;
  border-color: rgba(149, 220, 255, 0.42);
  background: rgba(12, 44, 85, 0.72);
}

.c-hero-trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.95rem;
  margin: 2rem 0 0;
  padding: 0;
}

.c-hero-trust li {
  position: relative;
  font-size: 0.92rem;
  color: #d4e7ff;
  padding-left: 1.55rem;
}

.c-hero-trust li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  border: 1px solid rgba(74, 147, 255, 0.74);
  box-shadow: 0 0 0 3px rgba(24, 98, 237, 0.22);
}

.c-hero-trust li + li {
  border-left: 1px solid rgba(99, 152, 231, 0.3);
  padding-left: 2.35rem;
}

.c-hero-media {
  position: relative;
  margin-right: -4.5rem;
}

.c-hero-media picture {
  display: block;
}

.c-hero-media img {
  width: min(100%, 900px);
  max-width: none;
  object-fit: contain;
  filter: drop-shadow(0 18px 36px rgba(1, 8, 30, 0.78));
}

.c-hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%);
  z-index: 3;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid rgba(102, 167, 255, 0.5);
  background: rgba(0, 16, 43, 0.75);
  color: #d9e9ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  box-shadow: 0 0 18px rgba(31, 114, 255, 0.42);
}

.s-home .s-site-header {
  background: linear-gradient(180deg, rgba(0, 11, 35, 0.82), rgba(0, 11, 35, 0.56));
  border-bottom: 1px solid rgba(84, 141, 237, 0.16);
}

.s-home .c-nav {
  color: #e3efff;
}

.s-home .c-nav a {
  opacity: 0.86;
}

.s-home .c-nav a:hover,
.s-home .c-nav a[aria-current="page"] {
  opacity: 1;
  color: #4fa1ff;
}

.s-home .l-header > .c-btn {
  background: linear-gradient(135deg, #0059f5, #197cff);
  border-color: rgba(108, 174, 255, 0.4);
  color: #edf6ff;
}

.s-home-capabilities {
  border-top: 1px solid rgba(44, 120, 192, 0.12);
  border-bottom: 1px solid rgba(44, 120, 192, 0.12);
  background:
    radial-gradient(circle at 8% 18%, rgba(111, 187, 255, 0.12), transparent 36%),
    linear-gradient(180deg, #fbfdff, #f5f9fe);
}

.s-home-capabilities::before,
.s-home-services::before,
.s-home-process::before,
.s-home-plans::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: min(92%, 980px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(70, 160, 236, 0.42), transparent);
}

.s-home-capabilities::after,
.s-home-services::after,
.s-home-process::after,
.s-home-plans::after {
  content: "";
  position: absolute;
  right: 4%;
  bottom: 1.1rem;
  width: 8.6rem;
  height: 3.4rem;
  opacity: 0.28;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(88, 177, 245, 0.65) 1px, transparent 1.8px);
  background-size: 13px 13px;
  mask-image: linear-gradient(90deg, transparent, rgba(0, 0, 0, 1));
}

.l-grid--capabilities {
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

.c-capability-item {
  position: relative;
  padding: 1.2rem;
  border-radius: var(--radius-m);
  border: 1px solid rgba(20, 81, 142, 0.12);
  background: #ffffff;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 10px 22px rgba(8, 31, 61, 0.06);
}

.c-capability-item:hover {
  transform: translateY(-7px);
  border-color: var(--color-border-strong);
  box-shadow: var(--shadow-soft), 0 0 18px rgba(39, 157, 255, 0.14);
}

.c-capability-item h2 {
  margin: 0.7rem 0 0.35rem;
  font-size: 1.06rem;
}

.c-capability-item p {
  margin: 0;
  color: #516a84;
  font-size: 0.92rem;
}

.c-icon {
  display: inline-grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 0.68rem;
  border: 1px solid rgba(103, 171, 235, 0.42);
  background: linear-gradient(165deg, rgba(70, 160, 236, 0.2), rgba(17, 111, 197, 0.9));
  box-shadow: 0 0 14px rgba(47, 177, 255, 0.2);
}

.c-icon::before {
  content: "";
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 0.2rem;
  border: 2px solid #d2efff;
}

.c-icon--cost::before {
  border-radius: 50%;
}

.c-icon--sustainability::before {
  width: 1rem;
  height: 0.8rem;
  border-radius: 1rem 0.2rem 1rem 0.2rem;
  transform: rotate(-25deg);
}

.c-icon--quality::before {
  width: 0.85rem;
  height: 0.85rem;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  border-radius: 0;
}

.c-section-title {
  margin: 0;
  font-size: clamp(1.55rem, 3.1vw, 2.4rem);
  line-height: 1.2;
  max-width: 22ch;
}

.c-section-subtitle {
  color: #546b84;
  margin-top: 0.75rem;
}

.l-grid--services {
  grid-template-columns: 1fr;
  margin-top: 1.45rem;
}

.l-grid--services-media {
  grid-template-columns: 1fr;
  margin-top: 1.25rem;
  gap: 1rem;
}

.c-media-inline-card {
  margin: 0;
  border-radius: 1.15rem;
  overflow: hidden;
  border: 1px solid rgba(18, 76, 135, 0.14);
  background: #ffffff;
  box-shadow: 0 14px 26px rgba(8, 31, 61, 0.1);
  position: relative;
}

.c-media-inline-card--featured {
  max-width: 980px;
}

.c-media-inline-card img {
  aspect-ratio: 21 / 9;
  object-fit: cover;
}

.c-media-inline-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(19, 97, 171, 0.03), rgba(19, 97, 171, 0.1));
}

.c-media-inline-card__caption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  margin: 0;
  z-index: 2;
  color: #f0f8ff;
  font-size: 0.86rem;
  letter-spacing: 0.02em;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(166, 223, 255, 0.55);
  background: rgba(7, 35, 68, 0.68);
  backdrop-filter: blur(4px);
}

.s-home-services {
  background:
    radial-gradient(circle at 90% 18%, rgba(111, 187, 255, 0.1), transparent 34%),
    linear-gradient(180deg, #f3f8fd, #ebf3fb),
    radial-gradient(circle at 12% 86%, rgba(104, 188, 255, 0.08), transparent 40%);
}

.s-home-services .c-section-title {
  font-size: clamp(1.75rem, 3.6vw, 2.65rem);
  max-width: 24ch;
}

.c-service-card {
  position: relative;
  padding: 1.6rem 1.5rem 1.45rem;
  border-radius: var(--radius-m);
  border: 1px solid rgba(18, 76, 135, 0.12);
  background:
    linear-gradient(170deg, rgba(197, 230, 255, 0.07), rgba(109, 181, 255, 0.02)),
    #ffffff;
  box-shadow: inset 0 1px 0 rgba(193, 231, 255, 0.45), 0 14px 28px rgba(8, 31, 61, 0.08);
  transition: transform 0.27s ease, box-shadow 0.27s ease, border-color 0.27s ease;
}

.c-service-card__icon {
  display: inline-grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.9rem;
  border-radius: 0.6rem;
  border: 1px solid rgba(34, 90, 146, 0.22);
  background: linear-gradient(180deg, #ffffff, #f4f8fc);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 6px 12px rgba(12, 45, 79, 0.08);
}

.c-service-card__icon::before {
  content: "";
  width: 1rem;
  height: 1rem;
  border: 1.8px solid #1f5f99;
  border-radius: 0.2rem;
}

.c-service-card--engineering .c-service-card__icon::before {
  border-radius: 50%;
  border-color: #255f95;
}

.c-service-card--sustainability .c-service-card__icon::before {
  width: 0.92rem;
  height: 0.72rem;
  border-radius: 1rem 0.2rem 1rem 0.2rem;
  transform: rotate(-25deg);
  border-color: #2d6f64;
}

.c-service-card--implementation .c-service-card__icon::before {
  width: 0.72rem;
  height: 0.9rem;
  border-radius: 0;
  border-width: 0 1.8px 1.8px 0;
  transform: rotate(45deg);
  border-color: #1e5f98;
}

.c-service-card::after {
  content: "";
  position: absolute;
  left: 1.35rem;
  right: 1.35rem;
  bottom: 0.65rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(142, 219, 255, 0.7), transparent);
  opacity: 0.44;
}

.c-service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(140, 214, 255, 0.62);
  box-shadow: 0 22px 36px rgba(8, 31, 61, 0.13), 0 0 20px rgba(27, 141, 255, 0.14);
}

.c-service-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.24rem;
  letter-spacing: -0.01em;
}

.c-service-card p {
  margin: 0;
  color: #4f6882;
}

.c-service-card a {
  display: inline-block;
  margin-top: 1rem;
  color: #0f65b4;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

.s-home-authority {
  background:
    radial-gradient(circle at 14% 82%, rgba(111, 187, 255, 0.08), transparent 34%),
    linear-gradient(180deg, #f9fbfe, #f1f6fc),
    radial-gradient(circle at 84% 24%, rgba(29, 151, 255, 0.08), transparent 42%);
}

.l-grid--authority {
  gap: 1.7rem;
}

.c-authority-media {
  margin: 1.25rem 0 0;
  border-radius: 1.2rem;
  overflow: hidden;
  border: 1px solid rgba(18, 76, 135, 0.16);
  box-shadow: 0 15px 30px rgba(8, 31, 61, 0.12);
  position: relative;
}

.c-authority-media img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.c-authority-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(15, 79, 146, 0.02), rgba(15, 79, 146, 0.1));
}

.c-authority-panels {
  position: relative;
  display: grid;
  gap: 1rem;
  padding-left: 1.2rem;
}

.c-authority-panels::before {
  content: "";
  position: absolute;
  left: 0.25rem;
  top: 0.55rem;
  bottom: 0.55rem;
  width: 4px;
  background: linear-gradient(180deg, rgba(70, 153, 223, 0.2), rgba(27, 126, 212, 0.98), rgba(70, 153, 223, 0.22));
  box-shadow: 0 0 16px rgba(43, 143, 220, 0.38);
}

.c-panel {
  position: relative;
  padding: 1.28rem 1.22rem 1.2rem 1.32rem;
  border-radius: var(--radius-m);
  border: 1px solid rgba(20, 81, 142, 0.15);
  background:
    linear-gradient(175deg, rgba(203, 233, 255, 0.1), rgba(124, 188, 255, 0.03)),
    #ffffff;
  box-shadow: inset 0 1px 0 rgba(201, 234, 255, 0.45), 0 15px 28px rgba(7, 31, 61, 0.1);
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.c-panel::after {
  content: "";
  position: absolute;
  left: 1.15rem;
  right: 1.15rem;
  top: 0.75rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(168, 230, 255, 0.8), transparent);
}

.c-panel:hover {
  transform: translateX(4px) translateY(-3px);
  border-color: rgba(75, 158, 228, 0.42);
  box-shadow: inset 0 1px 0 rgba(201, 234, 255, 0.6), 0 20px 34px rgba(7, 31, 61, 0.13), 0 0 18px rgba(24, 153, 255, 0.12);
}

.c-panel__dot {
  position: absolute;
  left: -1.25rem;
  top: 1.15rem;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  background: radial-gradient(circle, #b8f3ff 0%, #33c9ff 58%, #128dff 100%);
  box-shadow: 0 0 0 4px rgba(47, 148, 255, 0.2), 0 0 15px rgba(50, 194, 255, 0.48);
}

.c-panel h3 {
  margin: 0;
  font-size: 1.05rem;
}

.c-panel p {
  margin: 0.5rem 0 0;
  color: #4e647d;
}

.s-home-kpis {
  background:
    linear-gradient(180deg, rgba(11, 35, 67, 0.8), rgba(7, 18, 35, 0.95)),
    radial-gradient(circle at center, rgba(54, 150, 255, 0.32), transparent 64%);
}

.l-grid--kpis {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.c-kpi-block {
  text-align: center;
  border-radius: var(--radius-m);
  padding: 1.2rem 0.8rem;
  border: 1px solid rgba(124, 202, 255, 0.34);
  background:
    linear-gradient(175deg, rgba(205, 234, 255, 0.1), rgba(117, 190, 255, 0.04)),
    rgba(11, 40, 79, 0.72);
  box-shadow: inset 0 1px 0 rgba(207, 238, 255, 0.1), 0 12px 24px rgba(3, 13, 30, 0.35);
  animation: c-kpi-fade 0.8s ease both;
}

.c-kpi-block__value {
  margin: 0;
  font-size: clamp(2.45rem, 6vw, 4rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #eaf8ff;
  text-shadow: 0 0 20px rgba(71, 184, 255, 0.62), 0 0 36px rgba(35, 122, 255, 0.35);
}

.c-kpi-block__label {
  margin: 0.45rem 0 0;
  color: #c8e7ff;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.l-grid--process {
  grid-template-columns: 1fr;
  margin-top: 1.4rem;
}

.s-home-process {
  background:
    radial-gradient(circle at 88% 22%, rgba(111, 187, 255, 0.1), transparent 34%),
    linear-gradient(180deg, #f4f8fd, #ebf3fa),
    linear-gradient(180deg, rgba(9, 30, 56, 0.05), rgba(7, 24, 45, 0.08));
}

.c-process-card {
  position: relative;
  border-radius: var(--radius-m);
  padding: 1.3rem;
  border: 1px solid rgba(18, 76, 135, 0.12);
  background:
    linear-gradient(175deg, rgba(201, 232, 255, 0.08), rgba(111, 184, 255, 0.03)),
    #ffffff;
  box-shadow: inset 0 1px 0 rgba(196, 235, 255, 0.45), 0 14px 28px rgba(7, 31, 61, 0.08);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.c-process-card::after {
  content: "";
  position: absolute;
  left: 1.2rem;
  bottom: 0.7rem;
  width: 4.1rem;
  height: 2px;
  background: linear-gradient(90deg, rgba(116, 219, 255, 0.92), rgba(116, 219, 255, 0));
}

.c-process-card:hover {
  transform: translateY(-8px);
  border-color: rgba(88, 169, 236, 0.4);
  box-shadow: 0 18px 30px rgba(7, 31, 61, 0.12), 0 0 18px rgba(34, 164, 255, 0.12);
}

.c-process-card h3 {
  margin: 0.7rem 0 0.45rem;
}

.c-process-card p {
  margin: 0;
  color: #4f6882;
}

.c-icon--diagnosis::before {
  border-radius: 50%;
  border-width: 2px;
}

.c-icon--strategy::before {
  width: 0.95rem;
  height: 0.95rem;
  transform: rotate(45deg);
}

.c-icon--execution::before {
  width: 0.7rem;
  height: 1.05rem;
  border-width: 0 2px 2px 0;
  border-radius: 0;
  transform: rotate(45deg);
}

.s-home-plans {
  background:
    radial-gradient(circle at 10% 24%, rgba(111, 187, 255, 0.08), transparent 32%),
    linear-gradient(180deg, #f9fbfe, #f0f6fc),
    radial-gradient(circle at 50% 12%, rgba(38, 141, 255, 0.09), transparent 55%);
}

.l-grid--plans {
  grid-template-columns: 1fr;
  gap: 0.95rem;
  margin-top: 1.4rem;
}

.c-plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: 1.45rem;
  border-radius: var(--radius-l);
  border: 1px solid rgba(18, 76, 135, 0.14);
  background:
    linear-gradient(170deg, rgba(194, 229, 255, 0.08), rgba(111, 184, 255, 0.02)),
    #ffffff;
  box-shadow: inset 0 1px 0 rgba(205, 239, 255, 0.45), 0 14px 28px rgba(7, 31, 61, 0.09);
  transition: transform 0.26s ease, border-color 0.26s ease, box-shadow 0.26s ease;
}

.c-plan-card:hover {
  transform: translateY(-10px);
  border-color: rgba(70, 155, 226, 0.42);
  box-shadow: 0 20px 36px rgba(7, 31, 61, 0.14), 0 0 18px rgba(26, 148, 255, 0.12);
}

.c-plan-card--featured {
  border-color: rgba(83, 170, 242, 0.7);
  box-shadow:
    0 0 0 1px rgba(141, 220, 255, 0.28),
    0 22px 38px rgba(7, 31, 61, 0.16),
    0 0 26px rgba(31, 162, 255, 0.2);
  transform: scale(1.035) translateY(-3px);
}

.c-plan-card__badge {
  align-self: flex-start;
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(135deg, rgba(148, 237, 255, 0.2), rgba(31, 128, 255, 0.32));
  border: 1px solid rgba(139, 223, 255, 0.38);
  border-radius: 999px;
  padding: 0.32rem 0.62rem;
}

.c-plan-card h3 {
  margin: 0;
  font-size: 1.2rem;
}

.c-plan-card__price {
  margin: 0;
  color: #105ca6;
  font-weight: 700;
}

.c-plan-card__list {
  margin: 0;
  padding-left: 1.05rem;
  color: #4f6882;
  display: grid;
  gap: 0.35rem;
}

.s-home-cta {
  background: linear-gradient(135deg, #08214a 0%, #0c3f7d 50%, #11a3cf 100%);
}

.c-final-cta {
  text-align: center;
  border-radius: var(--radius-l);
  padding: clamp(1.55rem, 4vw, 2.8rem);
  border: 1px solid rgba(165, 229, 255, 0.45);
  background: linear-gradient(180deg, rgba(7, 31, 66, 0.35), rgba(5, 22, 46, 0.52));
  box-shadow: var(--shadow-soft);
}

.s-home-hero,
.s-home-kpis,
.s-home-cta {
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.c-final-cta h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3.5vw, 2.35rem);
}

.c-final-cta p {
  margin: 0.9rem auto 0;
  max-width: 56ch;
  color: #d9f3ff;
}

.c-final-cta .c-hero-actions {
  justify-content: center;
}

@media (min-width: 680px) {
  .l-grid--capabilities {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .l-grid--services,
  .l-grid--process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .l-grid--services {
    gap: 1.2rem;
    margin-top: 1.75rem;
  }

  .l-grid--services-media {
    grid-template-columns: 1fr;
  }

  .l-grid--plans {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }
}

@media (min-width: 960px) {
  .c-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.93rem;
    color: #2b4f78;
  }

  .c-logo {
    max-width: 15.8rem;
  }

  .c-nav a {
    opacity: 1;
    transition: opacity 0.22s ease, color 0.22s ease;
  }

  .c-nav a:hover {
    opacity: 1;
    color: #0d6dbf;
  }

  .l-grid--hero,
  .l-grid--authority {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.4rem;
  }

  .l-grid--hero {
    grid-template-columns: 1.02fr 1.12fr;
    gap: 1rem;
  }

  .l-grid--capabilities {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
  }

  .l-grid--services {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
  }

  .l-grid--kpis {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .l-grid--process {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .c-plan-card--featured {
    transform: scale(1.065) translateY(-6px);
  }
}

@media (max-width: 959px) {
  .s-home-hero {
    min-height: auto;
    padding-top: 6.25rem;
    padding-bottom: 5.8rem;
  }

  .c-hero-copy h1 {
    max-width: 20ch;
  }

  .c-hero-trust li + li {
    border-left: 0;
    padding-left: 1.55rem;
  }

  .c-hero-media {
    margin-right: 0;
    margin-top: 1.25rem;
  }

  .c-hero-media img {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

@keyframes c-kpi-fade {
  from {
    opacity: 0;
    transform: translateY(9px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Home hero reference redesign */
.s-home .s-site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 250, 255, 0.9));
  border-bottom: 1px solid rgba(32, 107, 199, 0.14);
  box-shadow: 0 14px 34px rgba(4, 26, 58, 0.08);
  backdrop-filter: blur(18px);
}

.s-home .l-header {
  width: min(100% - var(--layout-page-gutter, 2rem), var(--layout-max-width));
  min-height: 5.75rem;
  padding: 0;
  gap: 1.1rem;
}

.s-home .c-logo {
  flex: 0 0 auto;
  max-width: none;
  gap: 0.72rem;
}

.s-home .c-logo__img {
  display: block;
  width: 28rem;
  max-width: none;
  opacity: 1;
  filter: none;
  transform: translate(-5.2rem, -2.92rem);
}

.s-home .c-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2.1vw, 2rem);
  color: #153762;
  font-size: 0.94rem;
  margin-left: auto;
}

.s-home .c-nav a {
  position: relative;
  opacity: 0.84;
  padding: 0.45rem 0;
}

.s-home .c-nav a[aria-current="page"] {
  color: #075ecf;
  font-weight: 700;
}

.s-home .c-nav a[aria-current="page"]::before {
  display: none;
}

.s-home .c-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.64rem;
  width: 0.46rem;
  height: 0.46rem;
  border-radius: 50%;
  transform: translateX(-50%);
  background: rgba(33, 119, 255, 0.78);
  box-shadow: 0 0 9px rgba(21, 104, 255, 0.6);
}

.s-home .l-header > .c-btn {
  min-width: 10rem;
  min-height: 3.2rem;
  padding: 0.74rem 1.45rem;
  gap: 0.85rem;
  color: #ffffff;
  background: linear-gradient(135deg, #043bea 0%, #087cff 100%);
  border-color: rgba(92, 158, 255, 0.38);
  box-shadow: 0 12px 28px rgba(8, 92, 223, 0.24);
}

.s-home-hero {
  min-height: calc(100vh - 5.75rem);
  padding: 0;
  display: flex;
  align-items: flex-start;
  background-color: #010816;
  background-image:
    linear-gradient(90deg, rgba(1, 8, 22, 0.96) 0%, rgba(1, 9, 25, 0.9) 29%, rgba(1, 9, 25, 0.48) 46%, rgba(1, 9, 25, 0.1) 66%),
    linear-gradient(180deg, rgba(1, 7, 19, 0.18) 0%, rgba(1, 7, 19, 0.2) 62%, rgba(1, 7, 19, 0.78) 100%),
    url("/assets/img/banner.jpg");
  background-repeat: no-repeat;
  background-size: cover, cover, cover;
  background-position: center, center, center top;
}

.s-home-hero::before {
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 65% 32%, rgba(5, 99, 255, 0.18), transparent 24rem),
    radial-gradient(circle at 92% 76%, rgba(0, 117, 255, 0.16), transparent 20rem);
}

.s-home-hero::after {
  inset: auto 0 0;
  height: 5.7rem;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent, rgba(0, 7, 24, 0.92)),
    radial-gradient(ellipse at 8% 100%, rgba(1, 61, 134, 0.72), transparent 30rem);
}

.s-home-hero .l-container {
  width: min(100% - 7.5rem, 1720px);
}

.l-grid--hero {
  grid-template-columns: minmax(32rem, 47rem) 1fr;
  min-height: calc(100vh - 5.75rem);
  align-items: center;
  padding-top: 1.8rem;
}

.c-hero-copy {
  max-width: 55rem;
  transform: translateY(-3.1rem);
}

.c-eyebrow {
  margin-bottom: 1.72rem;
  padding-right: 4.2rem;
  color: #72aaff;
  font-size: 0.91rem;
  letter-spacing: 0.22em;
  font-weight: 500;
}

.c-eyebrow::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 3.52rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  transform: translateY(-50%);
  background: rgba(49, 135, 255, 0.72);
  box-shadow: 0 0 8px rgba(16, 104, 255, 0.55);
}

.c-eyebrow::after {
  display: none;
}

.c-hero-copy h1 {
  max-width: 32ch;
  font-size: 2.28rem;
  line-height: 1.33;
  font-weight: 400;
  letter-spacing: 0;
  color: #ffffff;
  text-shadow: 0 2px 18px rgba(0, 4, 16, 0.82);
}

.c-hero-copy h1 span {
  color: #0d5dff;
  font-weight: 700;
}

.c-lead {
  max-width: 50rem;
  margin-top: 2rem;
  color: #e8efff;
  font-size: 1.12rem;
  line-height: 1.72;
}

.c-hero-actions {
  margin-top: 2.15rem;
  gap: 1.35rem;
}

.s-home-hero .c-btn {
  min-height: 3.25rem;
  padding: 0.75rem 1.75rem;
  gap: 1rem;
  font-size: 0.96rem;
}

.s-home-hero .c-btn--primary {
  background: linear-gradient(135deg, #043bea 0%, #087cff 100%);
  box-shadow: 0 14px 26px rgba(0, 75, 225, 0.4);
}

.s-home-hero .c-btn--secondary {
  background: rgba(3, 17, 49, 0.58);
  border-color: rgba(72, 121, 209, 0.72);
  color: #f2f7ff;
  box-shadow: inset 0 0 0 1px rgba(21, 75, 163, 0.18);
}

.c-hero-trust {
  margin-top: 3.25rem;
  gap: 1.45rem;
}

.c-hero-trust li {
  min-height: 2.05rem;
  display: inline-flex;
  align-items: center;
  padding-left: 3.1rem;
  color: #eef5ff;
  font-size: 0.92rem;
}

.c-hero-trust li::before {
  top: 50%;
  width: 2.05rem;
  height: 2.05rem;
  transform: translateY(-50%);
  border-color: rgba(18, 97, 255, 0.72);
  background:
    radial-gradient(circle, transparent 0 34%, rgba(20, 101, 255, 0.4) 35% 39%, transparent 41%),
    repeating-conic-gradient(from 0deg, rgba(20, 101, 255, 0.8) 0 12deg, transparent 12deg 24deg);
  box-shadow: 0 0 14px rgba(11, 92, 255, 0.42);
}

.c-hero-trust li::after {
  content: "";
  position: absolute;
  left: 2.25rem;
  top: 50%;
  width: 1px;
  height: 2.2rem;
  transform: translateY(-50%);
  background: rgba(39, 95, 190, 0.42);
}

.c-hero-trust li + li {
  border-left: 1px solid rgba(42, 86, 168, 0.55);
  padding-left: 4.2rem;
}

.c-hero-trust li + li::before {
  left: 1.05rem;
}

.c-hero-trust li + li::after {
  left: 3.32rem;
}

.c-hero-scroll {
  bottom: 2rem;
  width: 3.05rem;
  height: 3.05rem;
  background: rgba(1, 16, 45, 0.58);
  border-color: rgba(124, 177, 255, 0.65);
  color: #ffffff;
}

@media (max-width: 1180px) {
  .s-home .l-header,
  .s-home-hero .l-container {
    width: min(100% - 3rem, 1180px);
  }

  .s-home .c-nav {
    gap: 1.35rem;
  }

  .s-home .c-logo__img {
    width: 25.5rem;
    transform: translate(-4.72rem, -2.66rem);
  }
}

@media (max-width: 959px) {
  .s-home .s-site-header {
    position: fixed;
  }

  .s-home .l-header {
    min-height: 5.7rem;
    width: min(100% - var(--layout-page-gutter, 2rem), 100%);
  }

  .s-home .c-logo {
    width: min(52vw, 13.5rem);
    height: 2.55rem;
  }

  .s-home .c-logo__img {
    width: 21.6rem;
    transform: translate(-4.02rem, -2.26rem);
  }

  .s-home .c-nav {
    display: none;
  }

  .s-home .l-header > .c-btn {
    min-width: auto;
    min-height: 2.9rem;
    padding-inline: 1.1rem;
  }

  .s-home-hero {
    min-height: calc(100vh - 5.7rem);
    padding: 3.3rem 0 5.7rem;
    align-items: flex-end;
    background-position: center, center, 62% top;
  }

  .s-home-hero .l-container {
    width: min(100% - var(--layout-page-gutter, 2rem), 100%);
  }

  .l-grid--hero {
    display: block;
    min-height: auto;
    padding-top: 0;
  }

  .c-hero-copy {
    max-width: 34rem;
    transform: none;
  }

  .c-hero-copy h1 {
    font-size: 2.05rem;
    line-height: 1.2;
  }

  .c-lead {
    font-size: 1rem;
    line-height: 1.55;
  }

  .c-hero-trust {
    gap: 0.75rem 1rem;
    margin-top: 2.1rem;
  }

  .c-hero-trust li,
  .c-hero-trust li + li {
    border-left: 0;
    padding-left: 2.55rem;
  }

  .c-hero-trust li + li::before {
    left: 0;
  }

  .c-hero-trust li::after {
    display: none;
  }
}

/* Light hero redesign */
.s-home {
  padding-top: 0;
  background: #f5f9ff;
}

.s-home .s-site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  backdrop-filter: none;
  transition: background 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, backdrop-filter 0.24s ease;
}

.s-home.has-scrolled .s-site-header {
  background: linear-gradient(180deg, rgba(249, 252, 255, 0.96), rgba(239, 247, 255, 0.88));
  border-color: rgba(17, 98, 214, 0.1);
  box-shadow: 0 12px 30px rgba(9, 74, 168, 0.08);
  backdrop-filter: blur(18px);
}

.s-home .l-header {
  width: min(100% - 4rem, 1720px);
  min-height: 5.6rem;
  gap: 2rem;
}

.s-home .c-logo {
  width: min(48vw, 15.7rem);
  height: auto;
  overflow: visible;
}

.s-home .c-logo__img {
  width: 100%;
  max-width: 100%;
  opacity: 1;
  filter: none;
  transform: none;
}

.s-home .c-nav {
  gap: clamp(1rem, 2.25vw, 2.35rem);
  color: #0a2348;
  font-size: 1rem;
}

.s-home .c-nav a {
  opacity: 0.9;
}

.s-home .c-nav a:hover,
.s-home .c-nav a[aria-current="page"] {
  color: #005fd8;
  opacity: 1;
}

.s-home .c-nav a[aria-current="page"]::before {
  display: none;
}

.s-home .c-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.82rem;
  width: 2.45rem;
  height: 0.22rem;
  border-radius: 999px;
  transform: translateX(-50%);
  background:
    radial-gradient(circle at 50% 50%, #006dff 0 0.23rem, transparent 0.25rem),
    linear-gradient(90deg, #006dff, #006dff);
  box-shadow: 0 0 14px rgba(0, 109, 255, 0.62), 0 0 26px rgba(20, 217, 255, 0.28);
}

.s-home .l-header > .c-btn {
  min-width: 11.2rem;
  min-height: 3.35rem;
  padding: 0 1.55rem;
  align-items: center;
  justify-content: center;
  line-height: 1;
  white-space: nowrap;
  color: #ffffff;
  border-color: rgba(73, 143, 255, 0.42);
  background: linear-gradient(135deg, #0054e9 0%, #087bff 100%);
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.72),
    0 0 0 5px rgba(20, 217, 255, 0.24),
    0 12px 24px rgba(8, 92, 223, 0.24),
    0 0 24px rgba(0, 120, 255, 0.34);
}

.s-home .l-header > .c-btn:hover {
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.82),
    0 0 0 6px rgba(20, 217, 255, 0.26),
    0 16px 30px rgba(8, 92, 223, 0.3),
    0 0 34px rgba(0, 120, 255, 0.42);
}

.s-home .l-header > .c-btn span,
.s-home-hero .c-btn span {
  display: inline-grid;
  place-items: center;
  width: 1em;
  height: 1em;
  line-height: 1;
  transform: translateY(-0.02em);
}

.s-home-hero {
  height: 100vh;
  height: 100dvh;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 0;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background-color: #f5f9ff;
  background-image: url("/assets/img/banner-blanco.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  box-shadow: none;
}

.s-home-hero::before {
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, rgba(247, 251, 255, 0.18) 0%, rgba(247, 251, 255, 0) 58%);
}

.s-home-hero::after {
  inset: auto 0 0;
  height: 7.5rem;
  z-index: 1;
  background:
    radial-gradient(ellipse at 16% 100%, rgba(108, 166, 255, 0.28), transparent 28rem),
    linear-gradient(180deg, transparent, rgba(225, 238, 255, 0.68));
}

.s-home-hero .l-container {
  width: min(100% - 6.5rem, 1720px);
}

.l-grid--hero {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 100%;
  height: 100%;
  padding-top: 5.6rem;
  padding-bottom: clamp(2.25rem, 5vh, 4.6rem);
}

.c-hero-copy {
  max-width: min(58rem, 58vw);
  transform: none;
}

.c-eyebrow {
  margin-bottom: 1.35rem;
  padding-right: 4.15rem;
  color: #005fcf;
  font-size: 0.91rem;
  letter-spacing: 0.2em;
  font-weight: 700;
}

.c-eyebrow::before {
  right: 3.54rem;
  width: 0.43rem;
  height: 0.43rem;
  background: #19d8ff;
  box-shadow: 0 0 13px rgba(25, 216, 255, 0.86), 0 0 30px rgba(25, 216, 255, 0.34);
}

.c-eyebrow::after {
  display: block;
  width: 3.1rem;
  background: linear-gradient(90deg, rgba(25, 216, 255, 0.92), rgba(25, 216, 255, 0));
  box-shadow: 0 0 18px rgba(25, 216, 255, 0.26);
}

.c-hero-copy h1 {
  max-width: 31ch;
  color: #071b46;
  font-size: 2.25rem;
  line-height: 1.34;
  font-weight: 700;
  letter-spacing: 0;
  text-shadow: none;
}

.c-hero-copy h1 span {
  color: #006dff;
  font-weight: 800;
}

.c-lead {
  max-width: 58rem;
  margin-top: 1.55rem;
  color: #253a5d;
  font-size: 1.1rem;
  line-height: 1.65;
}

.s-home-hero .c-lead {
  max-width: clamp(29rem, 37vw, 40rem);
}

.c-hero-actions {
  margin-top: 2.05rem;
  gap: 1.35rem;
}

.s-home-hero .c-btn {
  min-height: 3.28rem;
  padding: 0 1.85rem;
  align-items: center;
  justify-content: center;
  gap: 0.92rem;
  font-size: 0.96rem;
  line-height: 1;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.s-home-hero .c-btn:hover {
  transform: translateY(-1px);
}

.s-home-hero .c-btn--primary {
  color: #ffffff;
  background: linear-gradient(135deg, #0054e9 0%, #087bff 100%);
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.86),
    0 0 0 5px rgba(20, 217, 255, 0.28),
    0 16px 28px rgba(8, 92, 223, 0.3),
    0 0 28px rgba(0, 128, 255, 0.38);
}

.s-home-hero .c-btn--primary:hover {
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.94),
    0 0 0 6px rgba(20, 217, 255, 0.34),
    0 18px 32px rgba(8, 92, 223, 0.36),
    0 0 36px rgba(0, 128, 255, 0.46);
}

.s-home-hero .c-btn--secondary {
  color: #0a2d61;
  background: rgba(255, 255, 255, 0.64);
  border-color: rgba(0, 95, 207, 0.52);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.62),
    0 0 0 2px rgba(255, 255, 255, 0.36),
    0 0 22px rgba(0, 118, 255, 0.16);
}

.s-home-hero .c-btn--secondary:hover {
  border-color: rgba(0, 118, 255, 0.7);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.68),
    0 0 0 2px rgba(255, 255, 255, 0.48),
    0 0 28px rgba(0, 118, 255, 0.24);
}

.c-hero-trust {
  margin-top: 2.55rem;
  gap: 1.2rem;
  max-width: clamp(31rem, 40vw, 43rem);
}

.c-hero-trust li {
  min-height: 2.25rem;
  color: #16325b;
  font-size: 0.92rem;
  padding-left: 3rem;
}

.c-hero-trust li::before {
  top: 50%;
  width: 2.1rem;
  height: 2.1rem;
  transform: translateY(-50%);
  border-color: rgba(0, 95, 207, 0.68);
  background:
    radial-gradient(circle, rgba(0, 109, 255, 0.12) 0 34%, transparent 36%),
    repeating-conic-gradient(from 0deg, #006dff 0 12deg, transparent 12deg 24deg);
  box-shadow: 0 0 0 3px rgba(0, 109, 255, 0.06);
}

.c-hero-trust li::after {
  left: 2.28rem;
  background: rgba(0, 95, 207, 0.26);
}

.c-hero-trust li + li {
  border-left: 1px solid rgba(0, 95, 207, 0.24);
  padding-left: 3.95rem;
}

.c-hero-trust li + li::before {
  left: 0.95rem;
}

.c-hero-trust li + li::after {
  left: 3.22rem;
}

.c-hero-trust li {
  gap: 0.7rem;
  padding-left: 0;
}

.c-hero-trust li::before {
  display: none;
}

.c-hero-trust__icon {
  flex: 0 0 auto;
  width: 2.55rem;
  height: 2.55rem;
  object-fit: contain;
  filter:
    drop-shadow(0 0 3px rgba(255, 255, 255, 0.92))
    drop-shadow(0 0 10px rgba(0, 111, 255, 0.28))
    drop-shadow(0 0 18px rgba(20, 217, 255, 0.2));
}

.c-hero-trust li::after {
  left: auto;
  right: -0.7rem;
  width: 1px;
  height: 2.25rem;
  background: rgba(0, 95, 207, 0.24);
}

.c-hero-trust li + li {
  border-left: 0;
  padding-left: 1.25rem;
}

.c-hero-trust li + li::after {
  left: auto;
}

.c-hero-trust li:last-child::after {
  display: none;
}

.c-hero-scroll {
  bottom: 1.45rem;
  width: 3.1rem;
  height: 3.1rem;
  color: #006dff;
  line-height: 1;
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(0, 95, 207, 0.46);
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.78),
    0 0 0 5px rgba(20, 217, 255, 0.18),
    0 0 24px rgba(0, 109, 255, 0.32),
    0 0 46px rgba(20, 217, 255, 0.22);
}

.c-hero-scroll span {
  display: inline-grid;
  place-items: center;
  width: 1em;
  height: 1em;
  line-height: 1;
  filter: drop-shadow(0 0 5px rgba(0, 109, 255, 0.42));
}

@media (max-width: 1180px) {
  .s-home .l-header,
  .s-home-hero .l-container {
    width: min(100% - 3rem, 1180px);
  }

  .s-home .c-logo,
  .s-home .c-logo__img {
    width: min(48vw, 13.4rem);
    transform: none;
  }

  .s-home .c-nav {
    gap: 1.25rem;
  }

  .c-hero-copy {
    max-width: min(46rem, 62vw);
  }

  .c-hero-copy h1 {
    max-width: 27ch;
  }
}

@media (max-width: 959px) {
  .s-home .l-header {
    width: min(100% - var(--layout-page-gutter, 2rem), 100%);
    min-height: 5.25rem;
  }

  .s-home .c-logo,
  .s-home .c-logo__img {
    width: min(54vw, 12rem);
  }

  .s-home-hero {
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    min-height: 100dvh;
    padding: 0;
    align-items: stretch;
    background-position: 64% top;
  }

  .s-home-hero .l-container {
    width: min(100% - var(--layout-page-gutter, 2rem), 100%);
  }

  .l-grid--hero {
    min-height: 100%;
    height: 100%;
    justify-content: flex-end;
    padding-top: 5.25rem;
    padding-bottom: 5.2rem;
  }

  .c-hero-copy {
    max-width: 34rem;
    padding: 1.35rem;
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: 1.35rem;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(238, 247, 255, 0.58)),
      radial-gradient(circle at 0 0, rgba(20, 217, 255, 0.16), transparent 16rem);
    box-shadow: 0 18px 46px rgba(16, 86, 178, 0.12), 0 0 34px rgba(20, 217, 255, 0.14);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
  }

  .c-hero-copy h1 {
    max-width: 18ch;
    font-size: 2rem;
    line-height: 1.22;
  }

  .c-lead {
    font-size: 1rem;
    line-height: 1.52;
  }

  .c-hero-trust {
    gap: 0.75rem 1rem;
    margin-top: 2rem;
  }

  .c-hero-trust li,
  .c-hero-trust li + li {
    border-left: 0;
    padding-left: 0;
  }

  .c-hero-trust li + li::before {
    left: 0;
  }

  .c-hero-trust li::after {
    display: none;
  }

  .c-hero-trust__icon {
    width: 2.25rem;
    height: 2.25rem;
  }
}

/* Home content reference redesign */
.s-home main {
  background:
    radial-gradient(circle at 12% 10%, rgba(0, 119, 255, 0.06), transparent 24rem),
    linear-gradient(180deg, #f5f9ff 0%, #ffffff 36%, #f3f8ff 100%);
}

.s-home main > section:not(.s-home-hero) .l-grid {
  display: grid;
}

.s-home-capabilities,
.s-home-services,
.s-home-authority,
.s-home-lower,
.s-home-cta {
  position: relative;
  padding: clamp(4rem, 7vw, 6rem) 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 109, 255, 0.045), transparent 20rem),
    radial-gradient(circle at 86% 8%, rgba(20, 217, 255, 0.045), transparent 22rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(242, 248, 255, 0.78));
  box-shadow: none;
}

.s-home-capabilities {
  padding-top: clamp(4.6rem, 8vw, 7rem);
  padding-bottom: clamp(3rem, 5.6vw, 4.8rem);
  border: 0;
}

.s-home-capabilities::before,
.s-home-services::before,
.s-home-lower::before,
.s-home-plans::before,
.s-home-process::before,
.s-home-capabilities::after,
.s-home-services::after,
.s-home-lower::after,
.s-home-plans::after,
.s-home-process::after {
  display: none;
}

.l-grid--capabilities {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.35rem;
}

.c-capability-item,
.c-service-card,
.c-panel,
.c-process-card,
.c-plan-card {
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 0.85rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(247, 251, 255, 0.88));
  box-shadow: 0 18px 38px rgba(32, 82, 145, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.c-capability-item:hover,
.c-service-card:hover,
.c-panel:hover,
.c-process-card:hover,
.c-plan-card:hover {
  transform: translateY(-4px);
  border-color: rgba(105, 178, 255, 0.42);
  box-shadow: 0 22px 42px rgba(32, 82, 145, 0.12), 0 0 30px rgba(20, 217, 255, 0.12);
}

.c-capability-item {
  min-height: 15.3rem;
  padding: 2.1rem 1.55rem 1.7rem;
}

.c-icon-bubble {
  display: inline-grid;
  place-items: center;
  width: 3.6rem;
  height: 3.6rem;
  margin-bottom: 1.55rem;
  border-radius: 999px;
  color: #006dff;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.92), rgba(235, 245, 255, 0.7)),
    radial-gradient(circle at 65% 28%, rgba(20, 217, 255, 0.18), transparent 60%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.9),
    0 14px 24px rgba(0, 109, 255, 0.08),
    0 0 24px rgba(0, 109, 255, 0.14);
}

.c-ui-icon {
  width: 1.65rem;
  height: 1.65rem;
}

.c-capability-item h2,
.c-service-card h3,
.c-panel h3,
.c-process-card h3,
.c-plan-card h3 {
  margin: 0;
  color: #071b46;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.c-capability-item h2 {
  font-size: 1.03rem;
  margin-bottom: 1.05rem;
}

.c-capability-item p,
.c-service-card p,
.c-panel p,
.c-process-card p,
.c-section-subtitle,
.c-plan-card__list {
  color: #445a78;
  line-height: 1.62;
}

.c-capability-item p {
  margin: 0;
  font-size: 0.92rem;
}

.s-home-services {
  padding-top: clamp(4.8rem, 7.5vw, 6.8rem);
}

.l-grid--services-shell {
  grid-template-columns: minmax(0, 1.02fr) minmax(24rem, 0.98fr);
  gap: clamp(2rem, 5vw, 4.4rem);
  align-items: start;
}

.s-home-services .c-eyebrow,
.s-home-authority .c-eyebrow,
.s-home-lower .c-eyebrow,
.s-home-cta .c-eyebrow {
  margin: 0 0 1rem;
  padding-right: 0;
  color: #006dff;
  font-size: 0.72rem;
  line-height: 1;
  letter-spacing: 0.18em;
  font-weight: 900;
}

.s-home-services .c-eyebrow::before,
.s-home-services .c-eyebrow::after,
.s-home-authority .c-eyebrow::before,
.s-home-authority .c-eyebrow::after,
.s-home-lower .c-eyebrow::before,
.s-home-lower .c-eyebrow::after,
.s-home-cta .c-eyebrow::before,
.s-home-cta .c-eyebrow::after {
  display: none;
}

.c-section-title {
  max-width: 18ch;
  margin: 0;
  color: #071b46;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.13;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.c-section-subtitle {
  max-width: 41rem;
  margin: 1.05rem 0 0;
  font-size: 0.96rem;
}

.c-media-inline-card,
.c-authority-media {
  margin: 2.1rem 0 0;
  overflow: hidden;
  border-radius: 1.05rem;
  background: #ffffff;
  box-shadow: 0 20px 42px rgba(24, 70, 132, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.84);
}

.c-media-inline-card img,
.c-authority-media img {
  width: 100%;
  aspect-ratio: 1.86 / 1;
  object-fit: cover;
}

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

.c-service-card {
  min-height: 14rem;
  padding: 1.55rem 1.45rem 1.35rem;
}

.c-service-card .c-icon-bubble,
.c-panel .c-icon-bubble,
.c-process-card .c-icon-bubble {
  width: 3.05rem;
  height: 3.05rem;
  margin-bottom: 1.15rem;
}

.c-service-card .c-ui-icon,
.c-panel .c-ui-icon,
.c-process-card .c-ui-icon {
  width: 1.4rem;
  height: 1.4rem;
}

.c-service-card h3 {
  font-size: 1rem;
  line-height: 1.25;
}

.c-service-card p {
  margin: 0.82rem 0 1.15rem;
  font-size: 0.88rem;
}

.c-service-card a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #006dff;
  font-size: 0.85rem;
  font-weight: 800;
}

.s-home-authority {
  padding-top: clamp(3.4rem, 6vw, 5.2rem);
}

.l-grid--authority {
  grid-template-columns: minmax(0, 1.02fr) minmax(25rem, 0.98fr);
  gap: clamp(2.4rem, 5vw, 4.8rem);
  align-items: center;
}

.c-authority-panels {
  position: relative;
  display: grid;
  gap: 1.55rem;
  padding-left: 2.45rem;
}

.c-authority-panels::before {
  content: "";
  position: absolute;
  left: 0.45rem;
  top: 0.6rem;
  bottom: 0.6rem;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(0, 109, 255, 0.64), transparent);
}

.c-panel {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  min-height: 6.05rem;
  padding: 1.1rem 1.25rem;
  border-radius: 0.85rem;
}

.c-panel::before {
  content: "";
  position: absolute;
  left: -2.28rem;
  top: 50%;
  width: 0.78rem;
  height: 0.78rem;
  border-radius: 999px;
  transform: translateY(-50%);
  background: #0072ff;
  box-shadow: 0 0 0 4px rgba(0, 109, 255, 0.12), 0 0 18px rgba(0, 109, 255, 0.34);
}

.c-panel .c-icon-bubble {
  margin: 0;
}

.c-panel h3 {
  font-size: 0.94rem;
}

.c-panel p {
  margin: 0.3rem 0 0;
  font-size: 0.84rem;
}

.s-home-kpis {
  padding: 2.45rem 0;
  background:
    radial-gradient(circle at 12% 42%, rgba(0, 109, 255, 0.34), transparent 20rem),
    radial-gradient(circle at 88% 42%, rgba(20, 217, 255, 0.14), transparent 20rem),
    linear-gradient(135deg, #031735 0%, #06275a 48%, #031735 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), inset 0 -1px 0 rgba(255, 255, 255, 0.06);
}

.l-grid--kpis {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.c-kpi-block {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: center;
  align-items: center;
  column-gap: 1rem;
  padding: 0.55rem 1rem;
  border-right: 1px solid rgba(78, 142, 230, 0.34);
}

.c-kpi-block:last-child {
  border-right: 0;
}

.c-kpi-block__icon {
  grid-row: span 2;
  display: inline-grid;
  place-items: center;
  width: 3.1rem;
  height: 3.1rem;
  color: #0079ff;
  filter: drop-shadow(0 0 12px rgba(0, 109, 255, 0.8));
}

.c-kpi-block__icon .c-ui-icon {
  width: 2.1rem;
  height: 2.1rem;
  stroke-width: 2.25;
}

.c-kpi-block__value {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.c-kpi-block__label {
  margin: 0.65rem 0 0;
  color: #e8f3ff;
  font-size: 0.72rem;
  line-height: 1.2;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.s-home-lower {
  padding-top: clamp(4.6rem, 7vw, 6.1rem);
}

.l-grid--lower {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2.6rem, 5vw, 4.2rem);
  align-items: start;
}

.c-lower-block .c-section-title {
  max-width: 17ch;
  font-size: clamp(1.55rem, 2.45vw, 2.05rem);
}

.l-grid--process {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
  margin-top: 2.25rem;
}

.c-process-card {
  position: relative;
  min-height: 14.4rem;
  padding: 2.6rem 1.15rem 1.25rem;
}

.c-process-card:not(:last-child)::after {
  content: "...";
  position: absolute;
  right: -1.05rem;
  top: 5.35rem;
  color: #006dff;
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.c-process-card__step {
  position: absolute;
  right: 1.3rem;
  top: 1.1rem;
  color: rgba(0, 85, 190, 0.44);
  font-size: 0.78rem;
  font-weight: 900;
}

.c-process-card h3 {
  font-size: 0.95rem;
}

.c-process-card p {
  margin: 0.72rem 0 0;
  font-size: 0.81rem;
}

.l-grid--plans {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
  margin-top: 2.25rem;
}

.c-plan-card {
  min-height: 14.4rem;
  padding: 1.55rem 1.25rem 1.2rem;
  border-radius: 0.92rem;
  gap: 0.9rem;
}

.c-plan-card--featured {
  border-color: rgba(0, 109, 255, 0.36);
  transform: translateY(-0.6rem);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.84),
    0 18px 34px rgba(0, 96, 220, 0.15),
    0 0 34px rgba(0, 109, 255, 0.22);
}

.c-plan-card--featured:hover {
  transform: translateY(-0.85rem);
}

.c-plan-card__badge {
  position: absolute;
  top: -0.72rem;
  right: 1.2rem;
  margin: 0;
  padding: 0.32rem 0.82rem;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #0054e9, #0b7fff);
  box-shadow: 0 8px 18px rgba(0, 109, 255, 0.28);
  font-size: 0.7rem;
  font-weight: 900;
}

.c-plan-card h3 {
  font-size: 1rem;
}

.c-plan-card__price {
  margin: 0;
  color: #071b46;
  font-size: 0.82rem;
  font-weight: 900;
}

.c-plan-card__list {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.78rem;
}

.c-plan-card__list li {
  position: relative;
  padding-left: 1.3rem;
}

.c-plan-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48rem;
  width: 0.45rem;
  height: 0.72rem;
  border-right: 2px solid #006dff;
  border-bottom: 2px solid #006dff;
  transform: rotate(45deg);
}

.c-plan-card .c-btn {
  min-height: 2.85rem;
  margin-top: auto;
  padding: 0 1rem;
  font-size: 0.78rem;
}

.s-home-cta {
  padding: 2.7rem 0 4.2rem;
  background: linear-gradient(180deg, rgba(243, 248, 255, 0.88), #ffffff);
}

.c-final-cta {
  width: min(100%, 50rem);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.9rem;
  align-items: center;
  padding: 2.1rem 2.8rem;
  border: 1px solid rgba(83, 169, 255, 0.22);
  border-radius: 1.05rem;
  color: #ffffff;
  text-align: left;
  background:
    radial-gradient(circle at 14% 50%, rgba(0, 109, 255, 0.44), transparent 12rem),
    radial-gradient(circle at 92% 8%, rgba(20, 217, 255, 0.18), transparent 18rem),
    linear-gradient(135deg, #05255d 0%, #031c42 100%);
  box-shadow: 0 22px 48px rgba(0, 64, 168, 0.22), 0 0 38px rgba(0, 109, 255, 0.24);
}

.c-final-cta__orb {
  width: 4.1rem;
  height: 4.1rem;
  border-radius: 999px;
  background:
    radial-gradient(circle at center, transparent 38%, #0072ff 41% 63%, transparent 66%),
    conic-gradient(from 40deg, #006dff, transparent 26%, #14d9ff, #006dff);
  filter: drop-shadow(0 0 16px rgba(0, 109, 255, 0.72));
}

.c-final-cta h2 {
  margin: 0;
  max-width: none;
  color: #ffffff;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.c-final-cta p {
  margin: 0.6rem 0 0;
  color: rgba(255, 255, 255, 0.88);
}

.c-final-cta .c-hero-actions {
  margin-top: 1.35rem;
  justify-content: flex-start;
}

.c-final-cta .c-btn--ghost {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(3, 19, 52, 0.52);
}

.s-home .s-site-footer {
  margin-top: 0;
  padding-top: 2.8rem;
  border-top: 0;
  background: #f7fbff;
}

.s-home .l-footer {
  grid-template-columns: 1fr 1.65fr;
  align-items: end;
  gap: 2.8rem;
}

.s-home .c-footer-brand__logo {
  width: 12.8rem;
}

.s-home .c-footer-brand p {
  max-width: 25rem;
  color: #48617d;
  font-size: 0.86rem;
}

.s-home .c-footer-nav {
  justify-content: flex-end;
  gap: clamp(1rem, 2.5vw, 2.35rem);
  color: #536985;
  font-size: 0.78rem;
}

.s-home .c-footer-meta {
  border-top: 0;
  align-items: end;
}

.s-home .c-footer-meta p {
  font-size: 0.82rem;
}

.s-home .c-footer-social {
  margin-left: auto;
  color: #6b7d96;
}

.s-home .c-footer-social a:hover {
  color: #006dff;
}

.s-home .c-footer-cookies {
  display: inline-flex;
}

body.s-home .c-cookie-banner {
  position: fixed;
  inset: auto var(--layout-page-gutter) var(--layout-page-gutter);
  padding: 0;
}

body.s-home .c-nav .c-language-switch a {
  display: inline-grid;
  place-items: center;
  min-width: 2.05rem;
  min-height: 1.75rem;
  padding: 0 0.45rem;
  border-radius: 999px;
  color: #0f4f99;
  background: transparent;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  opacity: 1;
}

body.s-home .c-nav .c-language-switch a[aria-current="true"] {
  color: #ffffff;
  background: #006dff;
}

body.s-home .c-nav .c-language-switch a::before,
body.s-home .c-nav .c-language-switch a::after {
  content: none;
}

@media (min-width: 1080px) {
  body.s-home .c-logo {
    width: min(42vw, 13.5rem);
  }

  body.s-home .c-nav {
    gap: clamp(0.45rem, 0.75vw, 0.9rem);
    font-size: 0.88rem;
  }

  body.s-home .s-site-header .l-header > .c-btn {
    padding: 0.6rem 0.78rem;
  }
}

@media (max-width: 1180px) {
  .l-grid--capabilities {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .l-grid--services-shell,
  .l-grid--authority,
  .l-grid--lower {
    grid-template-columns: 1fr;
  }

  .c-section-title {
    max-width: 22ch;
  }

  .c-authority-panels {
    max-width: 44rem;
  }
}

@media (max-width: 760px) {
  .s-home-capabilities,
  .s-home-services,
  .s-home-authority,
  .s-home-lower,
  .s-home-cta {
    padding-block: 3.4rem;
  }

  .l-grid--capabilities,
  .l-grid--services,
  .l-grid--kpis,
  .l-grid--process,
  .l-grid--plans {
    grid-template-columns: 1fr;
  }

  .c-capability-item,
  .c-service-card,
  .c-process-card,
  .c-plan-card {
    min-height: auto;
  }

  .c-authority-panels {
    padding-left: 1.6rem;
  }

  .c-panel {
    grid-template-columns: 1fr;
  }

  .c-panel::before {
    left: -1.42rem;
  }

  .c-kpi-block {
    border-right: 0;
    border-bottom: 1px solid rgba(78, 142, 230, 0.34);
    justify-content: start;
  }

  .c-kpi-block:last-child {
    border-bottom: 0;
  }

  .c-process-card:not(:last-child)::after {
    display: none;
  }

  .c-plan-card--featured,
  .c-plan-card--featured:hover {
    transform: none;
  }

  .c-final-cta {
    grid-template-columns: 1fr;
    padding: 1.55rem;
  }

  .s-home .l-footer {
    grid-template-columns: 1fr;
  }

  .s-home .c-footer-nav {
    justify-content: flex-start;
  }
}

/* Requested refinements */
.s-home-services .c-section-title,
.s-home-authority .c-section-title,
.s-home-process .c-section-title,
.s-home-plans .c-section-title {
  max-width: 19ch;
  font-size: clamp(1.55rem, 2.45vw, 2.05rem);
  line-height: 1.16;
  letter-spacing: -0.04em;
}

.s-home-kpis {
  padding: clamp(2.45rem, 4.2vw, 3.35rem) 0;
  background:
    radial-gradient(circle at 13% 48%, rgba(0, 111, 255, 0.34), transparent 19rem),
    radial-gradient(circle at 84% 52%, rgba(20, 217, 255, 0.14), transparent 20rem),
    linear-gradient(135deg, #031532 0%, #062964 50%, #031532 100%);
}

.s-home-kpis .l-container {
  width: min(100% - var(--layout-page-gutter, 2rem), 1200px);
}

.l-grid--kpis {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
}

.c-kpi-block {
  min-height: 4.4rem;
  display: grid;
  grid-template-columns: auto auto;
  justify-content: center;
  align-items: center;
  column-gap: 1.1rem;
  padding: 0.25rem clamp(1.2rem, 2.4vw, 2rem);
  border: 0;
  border-right: 1px solid rgba(73, 143, 255, 0.34);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.c-kpi-block:last-child {
  border-right: 0;
}

.c-kpi-block__icon {
  grid-row: span 2;
  width: 3.4rem;
  height: 3.4rem;
  color: #0078ff;
  filter:
    drop-shadow(0 0 7px rgba(0, 109, 255, 0.88))
    drop-shadow(0 0 18px rgba(20, 217, 255, 0.3));
}

.c-kpi-block__icon .c-ui-icon {
  width: 2.35rem;
  height: 2.35rem;
  stroke-width: 2.35;
}

.c-kpi-block__value {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.1rem, 4.1vw, 3.25rem);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: -0.06em;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.14);
}

.c-kpi-block__label {
  margin: 0.52rem 0 0;
  color: #f4f9ff;
  font-size: 0.72rem;
  line-height: 1.1;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.025em;
}

.s-home-process,
.s-home-plans {
  padding: clamp(4rem, 6.6vw, 5.8rem) 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 109, 255, 0.045), transparent 20rem),
    radial-gradient(circle at 86% 8%, rgba(20, 217, 255, 0.045), transparent 22rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(242, 248, 255, 0.82));
}

.s-home-plans {
  padding-top: clamp(3.2rem, 5vw, 4.5rem);
}

.s-home-process .c-lower-block,
.s-home-plans .c-lower-block {
  max-width: none;
}

.s-home-process .c-section-subtitle {
  max-width: 34rem;
}

.s-home-plans .l-grid--plans,
.s-home-process .l-grid--process {
  margin-top: 2.35rem;
}

.s-home-plans .c-plan-card__price {
  display: none;
}

.s-home .s-site-footer {
  padding: 2.4rem 0 1.2rem;
  border-top: 1px solid rgba(23, 98, 186, 0.1);
  background:
    radial-gradient(circle at 12% 0%, rgba(0, 109, 255, 0.08), transparent 18rem),
    linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
}

.s-home .l-footer {
  gap: 1.6rem;
  align-items: center;
}

.s-home .c-footer-brand {
  max-width: 24rem;
}

.s-home .c-footer-brand__lockup {
  display: inline-flex;
  align-items: center;
  padding: 0;
}

.s-home .c-footer-brand__logo {
  width: min(100%, 5.6rem);
}

.s-home .c-footer-brand p {
  display: none;
}

.s-home .c-footer-nav {
  gap: 0.85rem clamp(1rem, 2vw, 1.9rem);
  color: #425b79;
  font-size: 0.86rem;
  font-weight: 600;
}

.s-home .c-footer-meta {
  margin-top: 1.8rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(25, 99, 176, 0.1);
}

@media (max-width: 760px) {
  .l-grid--kpis {
    grid-template-columns: 1fr;
  }

  .c-kpi-block {
    justify-content: start;
    border-right: 0;
    border-bottom: 1px solid rgba(73, 143, 255, 0.28);
  }

  .c-kpi-block:last-child {
    border-bottom: 0;
  }
}

.c-service-card::after,
.c-panel::after,
.c-process-card::after,
.c-process-card:not(:last-child)::after {
  content: none;
  display: none;
}

/* Mobile navigation and viewport safety */
.u-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.c-mobile-menu-toggle {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid rgba(108, 174, 255, 0.36);
  border-radius: 999px;
  color: #edf6ff;
  background: rgba(5, 26, 61, 0.74);
  box-shadow: 0 10px 20px rgba(2, 12, 30, 0.2);
}

.c-mobile-menu-toggle__bar {
  display: block;
  width: 1.15rem;
  height: 2px;
  margin: 2px 0;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

body.is-nav-open {
  overflow: hidden;
}

body.is-nav-open .c-mobile-menu-toggle__bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

body.is-nav-open .c-mobile-menu-toggle__bar:nth-child(2) {
  opacity: 0;
}

body.is-nav-open .c-mobile-menu-toggle__bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 959px) {
  .s-home .l-header {
    gap: 0.7rem;
  }

  .s-home .c-logo {
    width: min(46vw, 12.8rem);
  }

  .s-home .c-nav {
    position: fixed;
    left: 1rem;
    right: 1rem;
    top: calc(5.6rem + 0.75rem);
    display: grid;
    gap: 0.25rem;
    max-height: calc(100dvh - 7rem);
    padding: 0.75rem;
    overflow-y: auto;
    border: 1px solid rgba(84, 141, 237, 0.2);
    border-radius: 0.9rem;
    color: #0a2348;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 22px 48px rgba(2, 12, 30, 0.28);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-0.6rem);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .s-home .c-nav a {
    display: flex;
    align-items: center;
    min-height: 3rem;
    padding: 0.68rem 0.85rem;
    border-radius: 0.7rem;
    font-weight: 800;
    opacity: 1;
  }

  .s-home .c-nav a[aria-current="page"],
  .s-home .c-nav a:hover {
    color: #075ecf;
    background: #eef6ff;
  }

  body.is-nav-open .c-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

@media (min-width: 960px) {
  .c-mobile-menu-toggle {
    display: none;
  }
}

@media (max-width: 760px) {
  .s-home main > section {
    overflow: clip;
  }

  .s-home-hero {
    height: auto;
    min-height: calc(100svh - 5.6rem);
  }

  .l-grid--hero {
    min-height: calc(100svh - 5.6rem);
    height: auto;
  }

  .c-hero-copy {
    max-width: none;
    padding: 1.15rem;
  }

  .c-hero-copy h1 {
    max-width: 19ch;
    font-size: clamp(1.7rem, 9vw, 2.2rem);
  }

  .c-hero-actions,
  .c-final-cta .c-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .c-hero-actions .c-btn,
  .c-final-cta .c-btn,
  .c-plan-card .c-btn {
    width: 100%;
    white-space: normal;
    line-height: 1.25;
    text-align: center;
  }

  .c-media-inline-card img,
  .c-authority-media img {
    aspect-ratio: 4 / 3;
  }

  .c-panel,
  .c-kpi-block {
    min-width: 0;
  }
}

@media (max-width: 520px) {
  .s-home .l-header > .c-btn {
    display: none;
  }

  .s-home .c-logo {
    width: min(58vw, 12.2rem);
  }
}

/* Visual coherence baseline: HOME remains the reference for other public pages */
:root {
  --radius-s: 8px;
  --radius-m: 8px;
  --radius-l: 8px;
}

.s-home h1,
.s-home h2,
.s-home h3,
.s-home .c-section-title,
.s-home .c-kpi-block__value,
.s-home .c-final-cta h2 {
  letter-spacing: 0;
}

.s-home .c-capability-item,
.s-home .c-service-card,
.s-home .c-panel,
.s-home .c-process-card,
.s-home .c-plan-card,
.s-home .c-media-inline-card,
.s-home .c-authority-media,
.s-home .c-final-cta {
  border-radius: 8px;
}

/* Header normalization: keep HOME aligned with the shared public header. */
.s-home .s-site-header,
.s-home.has-scrolled .s-site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: linear-gradient(180deg, rgba(249, 252, 255, 0.96), rgba(239, 247, 255, 0.88));
  border-bottom: 1px solid rgba(17, 98, 214, 0.1);
  box-shadow: 0 12px 30px rgba(9, 74, 168, 0.08);
}

.s-home .l-header {
  width: min(100% - var(--layout-page-gutter, 2rem), var(--layout-max-width));
  min-height: 5.6rem;
  padding: 0;
  gap: 1.1rem;
}

.s-home .c-logo {
  display: inline-flex;
  align-items: center;
  width: min(48vw, 15.7rem);
  height: auto;
  max-width: none;
  overflow: visible;
}

.s-home .c-logo__img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: none;
  transform: none;
}

.s-home .c-mobile-menu-toggle {
  color: #0f4f99;
  border-color: rgba(25, 99, 215, 0.22);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 20px rgba(13, 63, 128, 0.08);
}

@media (min-width: 860px) {
  .s-home .c-mobile-menu-toggle {
    display: none;
  }

  .s-home .c-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2.25vw, 2.35rem);
    max-height: none;
    padding: 0;
    overflow: visible;
    border: 0;
    border-radius: 0;
    color: #0a2348;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    font-size: 1rem;
  }

  .s-home .c-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 0;
    padding: 0;
    border-radius: 0;
    font-weight: 600;
    opacity: 0.9;
    background: transparent;
  }

  .s-home .c-nav a:hover,
  .s-home .c-nav a[aria-current="page"] {
    color: #005fd8;
    opacity: 1;
    background: transparent;
  }

  .s-home .c-nav a[aria-current="page"] {
    font-weight: 700;
  }

  .s-home .c-nav a[aria-current="page"]::before {
    display: none;
  }

  .s-home .c-nav a[aria-current="page"]::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -0.82rem;
    width: 2.45rem;
    height: 0.22rem;
    border-radius: 999px;
    transform: translateX(-50%);
    background:
      radial-gradient(circle at 50% 50%, #006dff 0 0.23rem, transparent 0.25rem),
      linear-gradient(90deg, #006dff, #006dff);
    box-shadow: 0 0 10px rgba(5, 104, 224, 0.42);
  }

  .s-home .l-header > .c-btn {
    min-width: 11.2rem;
    min-height: 3.35rem;
    padding: 0.64rem 1.15rem;
    gap: 0.9rem;
    color: #ffffff;
    border-color: rgba(73, 143, 255, 0.42);
    background: linear-gradient(135deg, #0054e9 0%, #087bff 100%);
    box-shadow: 0 12px 24px rgba(8, 92, 223, 0.24), 0 0 0 3px rgba(20, 217, 255, 0.18);
  }

  .s-home .l-header > .c-btn:hover {
    box-shadow: 0 14px 28px rgba(8, 92, 223, 0.3), 0 0 0 3px rgba(20, 217, 255, 0.2);
  }
}

@media (max-width: 859px) {
  .s-home .l-header {
    width: min(100% - var(--layout-page-gutter, 2rem), var(--layout-max-width));
    min-height: 5.6rem;
    gap: 0.7rem;
  }

  .s-home .c-logo,
  .s-home .c-logo__img {
    width: min(46vw, 13.2rem);
  }

  .s-home .c-nav {
    position: fixed;
    left: 1rem;
    right: 1rem;
    top: calc(5.6rem + 0.75rem);
    display: grid;
    gap: 0.25rem;
    max-height: calc(100dvh - 7rem);
    padding: 0.75rem;
    overflow-y: auto;
    border: 1px solid rgba(17, 98, 214, 0.14);
    border-radius: 0.9rem;
    color: #0a2348;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 22px 48px rgba(9, 74, 168, 0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-0.6rem);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .s-home .c-nav a {
    display: flex;
    align-items: center;
    min-height: 3rem;
    padding: 0.68rem 0.85rem;
    border-radius: 0.7rem;
    font-weight: 700;
    opacity: 1;
  }

  .s-home .c-nav a[aria-current="page"],
  .s-home .c-nav a:hover {
    color: #075ecf;
    background: #eef6ff;
  }

  body.is-nav-open .s-home .c-nav,
  body.s-home.is-nav-open .c-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

@media (max-width: 520px) {
  .s-home .l-header > .c-btn {
    display: none;
  }

  .s-home .c-logo,
  .s-home .c-logo__img {
    width: min(58vw, 12.2rem);
  }
}

/* Keep the shared header CTA consistent with the rest of the public pages. */
.s-home .s-site-header .l-header > .c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 2.75rem;
  padding: 0.64rem 1.15rem;
  gap: normal;
  border: 1px solid rgba(25, 99, 215, 0.28);
  border-radius: 999px;
  color: #0f4f99;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: none;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.5;
  white-space: normal;
  transform: none;
}

.s-home .s-site-header .l-header > .c-btn:hover {
  box-shadow: none;
  transform: none;
}

.s-home .s-site-header .l-header > .c-btn span {
  display: inline;
  width: auto;
  height: auto;
  line-height: inherit;
  transform: none;
}

@media (min-width: 860px) {
  .s-home .s-site-header .l-header > .c-btn {
    min-width: 11.2rem;
    min-height: 3.35rem;
    gap: 0.9rem;
    color: #ffffff;
    border-color: rgba(73, 143, 255, 0.42);
    background: linear-gradient(135deg, #0054e9 0%, #087bff 100%);
    box-shadow: 0 12px 24px rgba(8, 92, 223, 0.24), 0 0 0 3px rgba(20, 217, 255, 0.18);
  }

  .s-home .s-site-header .l-header > .c-btn:hover {
    box-shadow: 0 12px 24px rgba(8, 92, 223, 0.24), 0 0 0 3px rgba(20, 217, 255, 0.18);
  }
}

@media (max-width: 520px) {
  .s-home .s-site-header .l-header > .c-btn {
    display: none;
  }
}

/* Header parity pass: make Inicio inherit the same public header sizing and menu behavior. */
body.s-home {
  padding-top: 5.6rem;
}

body.s-home .s-site-header,
body.s-home.has-scrolled .s-site-header {
  position: fixed;
  top: 0;
  right: 0;
  bottom: auto;
  left: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: linear-gradient(180deg, rgba(249, 252, 255, 0.96), rgba(239, 247, 255, 0.88));
  border-bottom: 1px solid rgba(17, 98, 214, 0.1);
  box-shadow: 0 12px 30px rgba(9, 74, 168, 0.08);
}

body.s-home .l-header {
  width: min(100% - var(--layout-page-gutter, 2rem), var(--layout-max-width));
  min-height: 5.6rem;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.1rem;
}

body.s-home .c-logo {
  display: inline-flex;
  align-items: center;
  width: min(48vw, 15.7rem);
  max-width: none;
  height: auto;
  overflow: visible;
}

body.s-home .c-logo__img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: none;
  transform: none;
}

body.s-home .s-site-header .l-header > .c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 2.75rem;
  padding: 0.64rem 1.15rem;
  gap: normal;
  border: 1px solid rgba(25, 99, 215, 0.28);
  border-radius: 999px;
  color: #0f4f99;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: none;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.5;
  white-space: normal;
  transform: none;
}

@media (min-width: 860px) {
  body.s-home .c-mobile-menu-toggle {
    display: none;
  }

  body.s-home .c-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2.25vw, 2.35rem);
    max-height: none;
    padding: 0;
    overflow: visible;
    border: 0;
    border-radius: 0;
    color: #0a2348;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    font-size: 1rem;
    line-height: 1.5;
  }

  body.s-home .c-nav a {
    position: relative;
    display: inline;
    min-height: 0;
    padding: 0;
    border-radius: 0;
    color: inherit;
    background: transparent;
    font-weight: 400;
    line-height: 1.5;
    opacity: 0.9;
    transition: color 0.22s ease, opacity 0.22s ease;
  }

  body.s-home .c-nav a:hover {
    color: #005fd8;
    background: transparent;
    opacity: 1;
  }

  body.s-home .c-nav a[aria-current="page"] {
    color: #075ecf;
    background: transparent;
    font-weight: 700;
    opacity: 1;
  }

  body.s-home .c-nav a[aria-current="page"]::before {
    display: none;
  }

  body.s-home .c-nav a[aria-current="page"]::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -0.82rem;
    width: 2.45rem;
    height: 0.22rem;
    border-radius: 999px;
    transform: translateX(-50%);
    background:
      radial-gradient(circle at 50% 50%, #006dff 0 0.23rem, transparent 0.25rem),
      linear-gradient(90deg, #006dff, #006dff);
    box-shadow: 0 0 10px rgba(5, 104, 224, 0.42);
  }

  body.s-home .s-site-header .l-header > .c-btn {
    min-width: 11.2rem;
    min-height: 3.35rem;
    gap: 0.9rem;
    color: #ffffff;
    border-color: rgba(73, 143, 255, 0.42);
    background: linear-gradient(135deg, #0054e9 0%, #087bff 100%);
    box-shadow: 0 12px 24px rgba(8, 92, 223, 0.24), 0 0 0 3px rgba(20, 217, 255, 0.18);
  }
}

@media (max-width: 859px) {
  body.s-home .l-header {
    gap: 0.7rem;
  }

  body.s-home .c-logo {
    width: min(46vw, 13.2rem);
  }

  body.s-home .c-nav {
    position: fixed;
    left: 1rem;
    right: 1rem;
    top: calc(5.6rem + 0.75rem);
    display: grid;
    gap: 0.25rem;
    max-height: calc(100dvh - 7rem);
    padding: 0.75rem;
    overflow-y: auto;
    border: 1px solid rgba(17, 98, 214, 0.14);
    border-radius: 0.9rem;
    color: #0a2348;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 22px 48px rgba(9, 74, 168, 0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-0.6rem);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  body.s-home .c-nav a {
    display: flex;
    align-items: center;
    min-height: 3rem;
    padding: 0.68rem 0.85rem;
    border-radius: 0.7rem;
    font-weight: 700;
    opacity: 1;
  }

  body.s-home .c-nav a[aria-current="page"],
  body.s-home .c-nav a:hover {
    color: #075ecf;
    background: #eef6ff;
  }

  body.s-home.is-nav-open .c-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

@media (max-width: 640px) {
  body.s-home .c-logo {
    width: min(44vw, 12.4rem);
  }
}

@media (max-width: 520px) {
  body.s-home .s-site-header .l-header > .c-btn {
    display: none;
  }

  body.s-home .c-logo {
    width: min(58vw, 12.2rem);
  }
}

/* Mobile home QA: keep Inicio aligned with the shared header and center key blocks. */
body.s-home .c-final-cta {
  grid-template-columns: 1fr;
}

body.s-home .c-final-cta__orb {
  display: none;
}

@media (min-width: 1080px) {
  body.s-home .c-mobile-menu-toggle {
    display: none;
  }

  body.s-home .c-nav {
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
    min-width: 0;
    gap: clamp(0.7rem, 1vw, 1.15rem);
    max-height: none;
    padding: 0;
    overflow: visible;
    border: 0;
    border-radius: 0;
    color: #0a2348;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    font-size: 0.93rem;
    line-height: 1.5;
  }

  body.s-home .c-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 0;
    padding: 0;
    border-radius: 0;
    color: inherit;
    background: transparent;
    font-weight: 400;
    line-height: 1.5;
    white-space: nowrap;
    opacity: 0.9;
  }

  body.s-home .c-nav__flexoai {
    display: none;
  }

  body.s-home .s-site-header .l-header > .c-btn {
    min-width: 0;
    min-height: 3.35rem;
    padding: 0.6rem 0.92rem;
    gap: 0.55rem;
    color: #ffffff;
    border-color: rgba(73, 143, 255, 0.42);
    background: linear-gradient(135deg, #0054e9 0%, #087bff 100%);
    box-shadow: 0 12px 24px rgba(8, 92, 223, 0.24), 0 0 0 3px rgba(20, 217, 255, 0.18);
    white-space: nowrap;
  }
}

@media (max-width: 1079px) {
  body.s-home .l-header {
    gap: 0.7rem;
  }

  body.s-home .c-logo {
    width: min(46vw, 13.2rem);
  }

  body.s-home .s-site-header .l-header > .c-flexoai-trigger {
    display: none;
  }

  body.s-home .c-mobile-menu-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.28rem;
    margin-left: auto;
    width: 3rem;
    height: 3rem;
    border-radius: 16px;
    color: #075ecf;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 247, 255, 0.94));
    box-shadow: 0 12px 24px rgba(13, 63, 128, 0.1);
  }

  body.s-home .c-mobile-menu-toggle__bar {
    width: 1.25rem;
    margin: 0;
  }

  body.s-home .c-nav {
    position: fixed;
    right: 1rem;
    left: auto;
    top: calc(5.6rem + 0.75rem);
    display: grid;
    gap: 0.35rem;
    width: min(22.5rem, calc(100vw - 2rem));
    max-height: calc(100dvh - 7rem);
    padding: 0.72rem;
    overflow-y: auto;
    border: 1px solid rgba(17, 98, 214, 0.14);
    border-radius: 1.15rem;
    color: #0a2348;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 54px rgba(9, 74, 168, 0.22);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-0.55rem) scale(0.98);
    transform-origin: top right;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  body.s-home .c-nav a,
  body.s-home .c-nav__flexoai {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    min-height: 3rem;
    padding: 0.68rem 0.85rem;
    border: 0;
    border-radius: 0.7rem;
    color: #0a2348;
    background: transparent;
    text-align: left;
    font-weight: 700;
    opacity: 1;
  }

  body.s-home .c-nav a::before,
  body.s-home .c-nav a::after {
    content: none;
    display: none;
  }

  body.s-home .c-nav__flexoai {
    margin-top: 0.25rem;
    color: #ffffff;
    background: linear-gradient(135deg, #0054e9 0%, #087bff 100%);
    box-shadow: 0 12px 22px rgba(8, 92, 223, 0.22);
  }

  body.s-home.is-nav-open .c-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 760px) {
  body.s-home .s-home-hero {
    min-height: calc(100svh - 5.6rem);
    height: auto;
    display: flex;
    align-items: center;
    padding: 1.4rem 0 2.4rem;
    background-position: 58% center;
  }

  body.s-home .s-home-hero .l-container,
  body.s-home .l-grid--hero {
    min-height: auto;
    height: auto;
    padding-top: 0;
    padding-bottom: 0;
  }

  body.s-home .l-grid--hero {
    align-items: center;
    justify-content: center;
  }

  body.s-home .c-hero-copy {
    width: min(100%, 34rem);
    margin-inline: auto;
  }

  body.s-home .s-home-kpis {
    padding: 2rem 0;
  }

  body.s-home .l-grid--kpis {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
  }

  body.s-home .c-kpi-block {
    min-height: 9rem;
    grid-template-columns: 1fr;
    justify-items: center;
    justify-content: center;
    text-align: center;
    row-gap: 0.5rem;
    padding: 1rem 0.65rem;
    border: 0;
  }

  body.s-home .c-kpi-block:nth-child(odd) {
    border-right: 1px solid rgba(73, 143, 255, 0.28);
  }

  body.s-home .c-kpi-block:nth-child(-n+2) {
    border-bottom: 1px solid rgba(73, 143, 255, 0.28);
  }

  body.s-home .c-kpi-block__icon {
    grid-row: auto;
    width: 2.65rem;
    height: 2.65rem;
  }

  body.s-home .c-kpi-block__icon .c-ui-icon {
    width: 2rem;
    height: 2rem;
  }

  body.s-home .c-kpi-block__value {
    font-size: 2.2rem;
  }

  body.s-home .c-kpi-block__label {
    max-width: 12rem;
    margin: 0;
  }

  body.s-home .c-final-cta {
    justify-items: center;
    text-align: center;
  }

  body.s-home .c-final-cta .c-hero-actions {
    width: 100%;
  }

  body.s-home .l-footer,
  body.s-home .c-footer-meta {
    justify-items: center;
    justify-content: center;
    text-align: center;
  }

  body.s-home .c-footer-brand,
  body.s-home .c-footer-brand__lockup,
  body.s-home .c-footer-nav,
  body.s-home .c-footer-legal,
  body.s-home .c-footer-social {
    justify-content: center;
    margin-inline: auto;
  }

  body.s-home .c-footer-nav {
    display: flex;
    flex-wrap: wrap;
  }

  body.s-home .c-footer-meta {
    align-items: center;
  }
}

@media (max-width: 640px) {
  body.s-home .c-logo {
    width: min(44vw, 12.4rem);
  }
}

@media (max-width: 520px) {
  body.s-home .c-logo {
    width: min(58vw, 12.2rem);
  }
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

@media (max-width: 760px) {
  body.s-home .c-hero-scroll {
    display: none;
  }

  body.s-home .s-home-kpis {
    padding: 0;
  }

  body.s-home .s-home-kpis .l-container {
    width: 100%;
  }

  body.s-home .l-grid--kpis {
    align-items: stretch;
    grid-template-rows: repeat(2, minmax(10.4rem, 1fr));
    grid-auto-rows: minmax(10.4rem, 1fr);
  }

  body.s-home .c-kpi-block {
    min-height: 10.4rem;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    place-items: center;
    align-content: center;
    justify-content: center;
    gap: 0.45rem;
  }

  body.s-home .c-kpi-block__icon,
  body.s-home .c-kpi-block__value,
  body.s-home .c-kpi-block__label {
    justify-self: center;
    align-self: center;
  }

  body.s-home .c-kpi-block__label {
    min-height: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

body.s-home .c-nav .c-language-switch a {
  display: inline-grid;
  place-items: center;
  min-width: 2.05rem;
  min-height: 1.75rem;
  padding: 0 0.45rem;
  border-radius: 999px;
  color: #0f4f99;
  background: transparent;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  opacity: 1;
}

body.s-home .c-nav .c-language-switch a[aria-current="true"] {
  color: #ffffff;
  background: #006dff;
}

body.s-home .c-nav .c-language-switch a::before,
body.s-home .c-nav .c-language-switch a::after {
  content: none;
}
