:root {
  --bg: #08101a;
  --bg-soft: #101b2a;
  --surface: #132338;
  --surface-2: #172b44;
  --text: #e8f2ff;
  --muted: #a4b6cf;
  --line: rgba(255, 255, 255, 0.16);
  --gold: #c9a227;
  --cyan: #5fd1ff;
  --max: 1180px;
}

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

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

html {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
}

html.is-language-reloading body {
  pointer-events: none;
  cursor: progress;
}

body {
  font-family: "Outfit", sans-serif;
  color: var(--text);
  background: #08101a;
  padding-bottom: 128px;
}

.reveal-item {
  opacity: 0;
  transform: translate3d(0, 18px, 0) scale(0.985);
  filter: blur(2px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 0.84, 0.24, 1),
    transform 0.65s cubic-bezier(0.22, 0.84, 0.24, 1),
    filter 0.65s cubic-bezier(0.22, 0.84, 0.24, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.social-card.reveal-item,
.social-map-btn.reveal-item {
  transform: translate3d(0, 22px, 0) scale(0.98);
  transition:
    opacity 1.8s cubic-bezier(0.22, 0.84, 0.24, 1),
    transform 1.8s cubic-bezier(0.22, 0.84, 0.24, 1);
}

.social-card.reveal-item.is-visible,
.social-map-btn.reveal-item.is-visible {
  transform: translate3d(0, 0, 0);
}

.typing-cursor {
  display: inline-block;
  margin-left: 0.12em;
  color: #f1f7ff;
  animation: typingBlink 0.9s steps(1, end) infinite;
}

.segment-service-card.reveal-item,
.clients-copy-panel.reveal-item,
.clients-accordion-item.reveal-item,
.client-brand-tile.reveal-item,
.erp-benefit-card.reveal-item,
.career-accordion-item.reveal-item,
.career-path-card.reveal-item,
.contact-accordion-item.reveal-item,
.contact-form-card.reveal-item,
.service-card.reveal-item {
  transform: translate3d(0, 34px, 0) scale(0.965);
  filter: blur(4px);
  transition:
    opacity 1.3s cubic-bezier(0.22, 0.84, 0.24, 1),
    transform 1.3s cubic-bezier(0.22, 0.84, 0.24, 1),
    filter 1.3s cubic-bezier(0.22, 0.84, 0.24, 1),
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.segment-service-card.reveal-item.is-visible,
.clients-copy-panel.reveal-item.is-visible,
.clients-accordion-item.reveal-item.is-visible,
.client-brand-tile.reveal-item.is-visible,
.erp-benefit-card.reveal-item.is-visible,
.career-accordion-item.reveal-item.is-visible,
.career-path-card.reveal-item.is-visible,
.contact-accordion-item.reveal-item.is-visible,
.contact-form-card.reveal-item.is-visible,
.service-card.reveal-item.is-visible {
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

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

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

.hero {
  min-height: 100svh;
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
}

.hero-video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
  filter: brightness(0.38) saturate(0.88);
}

.hero-scroll-cue {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  pointer-events: none;
}

.section-scroll-cue {
  position: absolute;
  left: 50%;
  top: calc(100svh - 52px);
  transform: translateX(-50%);
  z-index: 3;
  pointer-events: none;
}

.hero-arrow {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  width: 34px;
  height: 34px;
}

.scroll-nav-btn {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #ecf4ff;
  font-size: 1.1rem;
  font-weight: 800;
  background: rgba(7, 16, 28, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.34);
  cursor: pointer;
  pointer-events: auto;
}

.hero-arrow,
.hero-next-btn {
  animation: heroArrowBounce 1.7s ease-in-out infinite;
}

.hero-prev-btn {
  animation: heroArrowUpBounce 1.7s ease-in-out infinite;
}

.hero-menu {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
  backdrop-filter: none;
  background: transparent;
  border-bottom: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.brand-logo {
  width: clamp(56px, 6vw, 74px);
  height: auto;
  display: block;
  object-fit: contain;
  padding: 0.38rem;
  border-radius: 8px;
  background: #ffffff;
  box-shadow:
    0 12px 24px -20px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.brand-name {
  font-family: "Sora", sans-serif;
  font-size: 1.04rem;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.menu-links {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.menu-links a,
.menu-item > a {
  padding: 0.46rem 0.72rem;
  border-radius: 999px;
  color: #d7e8ff;
  border: 1px solid transparent;
}

.menu-links a:hover,
.menu-links a:focus-visible,
.menu-item > a:hover,
.menu-item > a:focus-visible {
  border-color: rgba(95, 209, 255, 0.35);
  background: rgba(95, 209, 255, 0.14);
}

.menu-links a.is-current,
.menu-item > a.is-current,
.menu-item.is-current > a {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(6, 15, 25, 0.62);
  color: #f7fbff;
}

.menu-links > a.menu-proposal-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.32s ease,
    background 0.32s ease,
    border-color 0.32s ease,
    color 0.32s ease,
    padding 0.32s ease;
  transform-origin: center;
  padding-inline: 0.9rem 1rem;
  border-color: rgba(37, 211, 102, 0.78);
  background: linear-gradient(135deg, #25d366, #179c4b);
  color: #f7fbff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    0 14px 24px -20px rgba(37, 211, 102, 0.72);
}

.menu-links > a.menu-proposal-cta:hover,
.menu-links > a.menu-proposal-cta:focus-visible {
  border-color: rgba(43, 224, 109, 0.88);
  background: linear-gradient(135deg, #2be06d, #169146);
}

.menu-links > a.menu-proposal-cta.cta-pulse {
  animation: menuContactReveal 0.55s cubic-bezier(0.22, 0.84, 0.24, 1), menuContactWobble 1.6s ease-in-out infinite 0.55s;
}

.menu-item {
  position: relative;
}

.has-submenu {
  display: flex;
  align-items: center;
}

.has-submenu > a {
  display: inline-flex;
  align-items: center;
  gap: 0.34rem;
}

.has-submenu > a::after {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-1px) rotate(45deg);
  opacity: 0.68;
}

.has-submenu::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;
}

.submenu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 180px;
  padding: 0.42rem;
  display: grid;
  gap: 0.24rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(6, 14, 24, 0.96);
  box-shadow: 0 22px 34px -28px rgba(0, 0, 0, 0.78);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.22s ease, transform 0.22s ease;
  z-index: 35;
}

.submenu a {
  border-radius: 12px;
  padding: 0.52rem 0.72rem;
}

.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.menu-toggle {
  display: none;
  font: inherit;
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(6, 15, 25, 0.7);
  border-radius: 12px;
  padding: 0.48rem 0.74rem;
}

.lang-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  height: 40px;
  padding: 0 0.86rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(6, 15, 25, 0.62);
  color: #d7e8ff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.lang-toggle svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.lang-toggle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1rem;
  flex: 0 0 auto;
}

.lang-toggle-label {
  font-size: 0.82rem;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
}

.lang-toggle-icon img,
.lang-option-flag img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.16rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.lang-option-flag {
  display: inline-flex;
  width: 1.25rem;
  height: 0.9rem;
  flex: 0 0 auto;
  overflow: hidden;
  flex: 0 0 auto;
}

.lang-toggle:hover,
.lang-toggle:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(95, 209, 255, 0.46);
  background: rgba(95, 209, 255, 0.14);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 0.6rem);
  right: 0;
  min-width: 196px;
  padding: 0.42rem;
  display: grid;
  gap: 0.24rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(6, 14, 24, 0.96);
  box-shadow: 0 22px 34px -28px rgba(0, 0, 0, 0.78);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.22s ease, transform 0.22s ease;
  z-index: 36;
}

.lang-switcher.is-open .lang-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 0.62rem;
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  font: inherit;
  cursor: pointer;
  border-radius: 12px;
  padding: 0.58rem 0.72rem;
  color: #d7e8ff;
}

.lang-option span {
  font-size: 1rem;
  line-height: 1;
}

.lang-option strong {
  font-size: 0.92rem;
  line-height: 1.2;
}

.lang-option:hover,
.lang-option:focus-visible {
  background: rgba(95, 209, 255, 0.14);
  border-color: rgba(95, 209, 255, 0.3);
}

.lang-option.is-active {
  background: rgba(95, 209, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(95, 209, 255, 0.28);
}

.hero-menu.is-light .brand-name {
  color: #d7e8ff;
}

.hero-menu.is-light .menu-links a,
.hero-menu.is-light .menu-item > a {
  color: #d7e8ff;
}

.hero-menu.is-light .menu-links a:hover,
.hero-menu.is-light .menu-links a:focus-visible,
.hero-menu.is-light .menu-item > a:hover,
.hero-menu.is-light .menu-item > a:focus-visible {
  border-color: rgba(95, 209, 255, 0.35);
  background: rgba(95, 209, 255, 0.14);
}

.hero-menu.is-light .menu-links a.is-current,
.hero-menu.is-light .menu-item > a.is-current,
.hero-menu.is-light .menu-item.is-current > a {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(6, 15, 25, 0.62);
  color: #f7fbff;
}

.hero-menu.is-light .menu-toggle {
  color: var(--text);
  border-color: var(--line);
  background: rgba(6, 15, 25, 0.7);
}

.hero-main {
  width: min(var(--max), calc(100% - 2rem));
  margin: clamp(8.6rem, 21vh, 12.4rem) auto 5.2rem;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(248px, 296px);
  gap: 0.8rem;
  align-items: start;
}

.hero-content {
  max-width: none;
  min-width: 0;
}

.hero-social {
  margin-top: calc(6.2rem - 1.5cm);
  display: grid;
  gap: 0.56rem;
}

.hero-social-title {
  margin: 0 0 0.24rem;
  font-size: 1rem;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 0.62rem;
  border-radius: 14px;
  padding: 0.64rem 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(8, 18, 31, 0.62);
  font-weight: 700;
}

.social-card img {
  width: 18px;
  height: 18px;
  display: block;
}

.social-card.instagram:hover,
.social-card.instagram:focus-visible {
  border-color: rgba(221, 42, 123, 0.7);
}

.social-card.facebook:hover,
.social-card.facebook:focus-visible {
  border-color: rgba(24, 119, 242, 0.7);
}

.social-card.linkedin:hover,
.social-card.linkedin:focus-visible {
  border-color: rgba(10, 102, 194, 0.7);
}

.social-card.whatsapp:hover,
.social-card.whatsapp:focus-visible {
  border-color: rgba(37, 211, 102, 0.7);
}

.social-map-btn {
  margin-top: 0.16rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  border-radius: 12px;
  padding: 0.64rem 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(9, 19, 33, 0.72);
  font-weight: 700;
  min-height: 44px;
}

.social-map-btn img {
  width: 16px;
  height: 16px;
  display: block;
}

.social-map-btn:hover,
.social-map-btn:focus-visible {
  border-color: rgba(95, 209, 255, 0.54);
  background: rgba(95, 209, 255, 0.14);
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--gold);
}

h1,
h2,
h3 {
  font-family: "Sora", sans-serif;
  line-height: 1.12;
  margin: 0.2rem 0 0.8rem;
}

.hero h1 {
  max-width: min(18ch, 100%);
  font-size: clamp(2rem, 5vw, 4rem);
}

.lead {
  max-width: 58ch;
  font-size: clamp(1.14rem, 2.25vw, 1.42rem);
  line-height: 1.45;
  color: #ccdef8;
}

.hero-actions {
  margin-top: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.btn {
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 0.7rem 1rem;
  font-weight: 700;
}

.btn-primary {
  background: linear-gradient(120deg, #c9a227, #e4bf4b);
  color: #241700;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  filter: brightness(1.06);
}

.btn-ghost {
  border-color: rgba(218, 233, 255, 0.32);
  background: rgba(10, 19, 31, 0.44);
  color: #dfebff;
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: rgba(95, 209, 255, 0.4);
  background: rgba(95, 209, 255, 0.13);
}

.video-tag {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: #9fc1e3;
}

.section {
  min-height: 100svh;
  position: relative;
  padding: clamp(3.2rem, 7vw, 5.4rem) 0;
  padding-top: calc(84px + clamp(2.4rem, 4vw, 3.8rem));
  display: flex;
  align-items: center;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.hero {
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.section h2 {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
}

.grid {
  display: grid;
  gap: 0.82rem;
}

.segments {
  position: relative;
  background: transparent;
  overflow: hidden;
  isolation: isolate;
}

.segments::before {
  display: none;
}

.segments::after {
  display: none;
}

.segments .container {
  position: relative;
  z-index: 2;
}

.segment-service-grid {
  margin-top: 1rem;
}

.segment-service-card {
  position: relative;
}

.segment-icon svg {
  width: 38px;
  height: 38px;
  display: block;
}

.segment-service-card:nth-child(1) .segment-icon { color: #e67e22; }
.segment-service-card:nth-child(2) .segment-icon { color: #2e86de; }
.segment-service-card:nth-child(3) .segment-icon { color: #16a085; }
.segment-service-card:nth-child(4) .segment-icon { color: #e84393; }
.segment-service-card:nth-child(5) .segment-icon { color: #8e44ad; }
.segment-service-card:nth-child(6) .segment-icon { color: #c0392b; }

.segment-service-card .service-more {
  margin-top: auto;
}

.segment-service-card:hover,
.segment-service-card:focus-within {
  transform: translateY(-5px);
  border-color: rgba(95, 209, 255, 0.52);
  box-shadow: 0 18px 30px -22px rgba(23, 58, 95, 0.42);
}

.segment-service-card:hover .segment-icon,
.segment-service-card:focus-within .segment-icon {
  transform: translateY(-2px) scale(1.08);
}

.segment-service-card:hover h3,
.segment-service-card:focus-within h3 {
  transform: translateY(-1px);
}

.segment-service-card:hover p,
.segment-service-card:focus-within p {
  transform: translateY(-1px);
  color: #3e5670;
}

.segment-carousel {
  margin-top: 0.9rem;
  flex: 1;
  display: grid;
  gap: 0.78rem;
}

.segment-stage {
  min-height: clamp(330px, 56vh, 500px);
  position: relative;
}

.segment-stage-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.1rem, 2.4vw, 2.2rem);
  max-width: 780px;
}

.segment-stage-kicker {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8fc2ff;
  font-weight: 700;
}

.segment-stage-content h3 {
  margin: 0.42rem 0 0.52rem;
  color: #f3f9ff;
  font-size: clamp(1.36rem, 3.6vw, 2.45rem);
  line-height: 1.1;
  max-width: 18ch;
}

.segment-stage-content p {
  margin: 0;
  color: #d2e4fa;
  max-width: 56ch;
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
}

.segment-stage-controls {
  position: absolute;
  z-index: 3;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  gap: 0.45rem;
}

.segment-arrow {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(143, 194, 255, 0.55);
  background: linear-gradient(145deg, rgba(11, 25, 40, 0.82), rgba(12, 28, 45, 0.65));
  color: #e8f4ff;
  font-size: 1.22rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 14px 20px -18px rgba(0, 0, 0, 0.65);
}

.segment-arrow:hover,
.segment-arrow:focus-visible {
  background: linear-gradient(145deg, rgba(95, 209, 255, 0.28), rgba(10, 28, 47, 0.74));
}

.segment-rail {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.45rem;
}

.segment-pill {
  border: 1px solid rgba(143, 194, 255, 0.34);
  background: linear-gradient(140deg, rgba(8, 16, 28, 0.72), rgba(9, 21, 34, 0.56));
  color: #d4e7ff;
  border-radius: 12px;
  min-height: 58px;
  padding: 0.62rem 0.72rem;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  text-align: left;
  letter-spacing: 0.01em;
}

.segment-pill.is-active {
  color: #f6fbff;
  border-color: rgba(95, 209, 255, 0.78);
  background: linear-gradient(135deg, rgba(95, 209, 255, 0.24), rgba(13, 36, 58, 0.82));
  box-shadow: 0 12px 18px -16px rgba(95, 209, 255, 0.55);
}

.clients {
  background: transparent;
}

.client-authority {
  background: transparent;
  align-items: flex-start;
}

.client-authority-layout {
  margin-top: 0.15rem;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 0.95rem;
  align-items: start;
}

.client-authority-copy {
  display: grid;
  gap: 0.6rem;
  align-self: start;
}

.client-authority-copy h2 {
  margin: 0;
  max-width: 18ch;
  color: #f4f9ff;
}

.client-authority-copy h3 {
  margin: 0;
  max-width: 64ch;
  color: #c4d5eb;
  font-size: 0.98rem;
  line-height: 1.65;
  font-weight: 400;
}

.client-authority-proof-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.72rem;
  align-items: stretch;
  margin-top: 0.22rem;
}

.client-authority-proof-card {
  min-height: 0;
  display: flex;
  align-items: center;
  gap: 0.68rem;
  padding: 0.18rem 0;
}

.client-authority-proof-mark {
  width: 76px;
  height: 76px;
  flex: 0 0 76px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #ffffff;
}

.client-authority-proof-mark img {
  max-width: 50px;
  max-height: 50px;
  object-fit: contain;
  filter: none;
}

.client-authority-proof-copy {
  display: grid;
  gap: 0.18rem;
  align-content: center;
}

.client-authority-proof-copy strong {
  color: #f5fbff;
  font-size: 0.86rem;
  line-height: 1.2;
}

.client-authority-proof-copy p {
  margin: 0;
  color: rgba(228, 240, 255, 0.9);
  font-size: 0.74rem;
  line-height: 1.42;
}

.client-authority-metrics {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.32rem;
  border-radius: 22px;
  overflow: visible;
  border: 0;
  box-shadow: none;
}

.client-authority-metric {
  position: relative;
  isolation: isolate;
  min-height: 228px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.2rem;
  padding: 1rem 1rem 0.96rem;
  border-radius: 0;
  overflow: hidden;
  border-right: 0;
  background:
    linear-gradient(180deg, rgba(5, 10, 18, 0.04), rgba(5, 10, 18, 0.56)),
    radial-gradient(circle at 18% 20%, rgba(95, 209, 255, 0.16), transparent 34%),
    radial-gradient(circle at 78% 24%, rgba(201, 162, 39, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(16, 38, 61, 0.82), rgba(11, 23, 40, 0.74));
}

.client-authority-metric.panel {
  border-color: rgba(143, 197, 255, 0.12);
  background: linear-gradient(135deg, rgba(16, 38, 61, 0.8), rgba(11, 23, 40, 0.72));
}

.client-authority-metric.panel::before {
  display: none;
}

.client-authority-metric::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(4, 10, 18, 0.02) 0%, rgba(4, 10, 18, 0.18) 42%, rgba(4, 10, 18, 0.64) 100%),
    linear-gradient(115deg, rgba(255, 255, 255, 0.05), transparent 32% 68%, rgba(255, 255, 255, 0.04)),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.18), transparent 46%);
  opacity: 0.76;
}

.client-authority-metric::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.42;
  transform: scale(1.02);
}

.client-authority-metric:last-child {
  border-right: 0;
}

.client-authority-metric:nth-child(1)::after {
  background-image:
    linear-gradient(155deg, rgba(8, 18, 30, 0.08), rgba(8, 18, 30, 0.42)),
    radial-gradient(circle at 22% 18%, rgba(95, 209, 255, 0.34), transparent 30%),
    linear-gradient(140deg, rgba(17, 57, 96, 0.38), rgba(62, 156, 230, 0.16)),
    linear-gradient(135deg, rgba(12, 30, 48, 0.18), rgba(11, 23, 38, 0.1)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' x2='1' y1='0' y2='1'%3E%3Cstop stop-color='%23b9d8ff' stop-opacity='.72'/%3E%3Cstop offset='1' stop-color='%23ffffff' stop-opacity='.16'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='640' height='640' fill='%23111c29'/%3E%3Cpath d='M0 486 168 344l94 72 142-148 236 218H0Z' fill='url(%23g)' opacity='.8'/%3E%3Cpath d='M0 550h640v90H0z' fill='%230a121d' opacity='.76'/%3E%3C/svg%3E");
}

.client-authority-metric:nth-child(2)::after {
  background-image:
    linear-gradient(155deg, rgba(8, 18, 30, 0.08), rgba(8, 18, 30, 0.44)),
    radial-gradient(circle at 78% 22%, rgba(129, 208, 255, 0.24), transparent 28%),
    linear-gradient(140deg, rgba(11, 42, 74, 0.42), rgba(104, 192, 255, 0.14)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640'%3E%3Crect width='640' height='640' fill='%23101927'/%3E%3Cg fill='none' stroke='%23d4e7ff' stroke-opacity='.42'%3E%3Cpath d='M80 520 220 320l86 110 98-152 156 242' stroke-width='12'/%3E%3Cpath d='M120 472h70M224 365h54M362 338h64M470 456h70' stroke-width='8'/%3E%3C/g%3E%3Ccircle cx='222' cy='320' r='12' fill='%23d4e7ff' fill-opacity='.58'/%3E%3Ccircle cx='404' cy='278' r='12' fill='%23d4e7ff' fill-opacity='.58'/%3E%3C/svg%3E");
}

.client-authority-metric:nth-child(3)::after {
  background-image:
    linear-gradient(155deg, rgba(8, 18, 30, 0.08), rgba(8, 18, 30, 0.44)),
    radial-gradient(circle at 30% 14%, rgba(95, 209, 255, 0.24), transparent 26%),
    linear-gradient(140deg, rgba(15, 45, 78, 0.4), rgba(101, 178, 241, 0.16)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640'%3E%3Crect width='640' height='640' fill='%230f1825'/%3E%3Cg stroke='%23e8f4ff' stroke-opacity='.25' fill='none'%3E%3Crect x='92' y='108' width='108' height='424' rx='12' stroke-width='10'/%3E%3Crect x='240' y='188' width='108' height='344' rx='12' stroke-width='10'/%3E%3Crect x='388' y='142' width='160' height='390' rx='12' stroke-width='10'/%3E%3C/g%3E%3Cpath d='M84 540h476' stroke='%23ffffff' stroke-opacity='.18' stroke-width='10'/%3E%3C/svg%3E");
}

.client-authority-metric:nth-child(4)::after {
  background-image:
    linear-gradient(155deg, rgba(8, 18, 30, 0.08), rgba(8, 18, 30, 0.44)),
    radial-gradient(circle at 82% 18%, rgba(95, 209, 255, 0.24), transparent 26%),
    linear-gradient(140deg, rgba(13, 41, 72, 0.42), rgba(118, 204, 255, 0.16)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640'%3E%3Crect width='640' height='640' fill='%23101927'/%3E%3Cg fill='%23eef6ff' fill-opacity='.15'%3E%3Ccircle cx='198' cy='226' r='56'/%3E%3Ccircle cx='302' cy='206' r='70'/%3E%3Ccircle cx='428' cy='232' r='52'/%3E%3Crect x='124' y='312' width='360' height='152' rx='76'/%3E%3C/g%3E%3Cpath d='M122 484c74-56 138-82 202-82 68 0 132 26 194 82' fill='none' stroke='%23ffffff' stroke-opacity='.16' stroke-width='18' stroke-linecap='round'/%3E%3C/svg%3E");
}

.client-authority-metric-kicker {
  margin: 0;
  min-height: 1.7rem;
  width: 100%;
  color: #8fdcff;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.client-authority-metric strong {
  display: block;
  max-width: 11ch;
  margin-top: auto;
  color: #f7fbff;
  font-size: 1.16rem;
  line-height: 1;
  letter-spacing: -0.02em;
  text-wrap: balance;
  text-shadow: 0 8px 26px rgba(0, 0, 0, 0.42);
  transition: transform 0.22s ease;
}

.client-authority-metric-number {
  color: #d9b34b;
  font-size: clamp(2.4rem, 3.5vw, 3.35rem);
  line-height: 0.88;
  letter-spacing: -0.05em;
  transition: font-size 0.22s ease, transform 0.22s ease;
}

.client-authority-metric-suffix {
  color: #f7fbff;
  font-size: 1.28rem;
  line-height: 1.08;
  transition: font-size 0.22s ease, transform 0.22s ease;
}

.client-authority-metric-modal {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 0.34rem);
  width: min(240px, calc(100vw - 2rem));
  padding: 0.18rem 0;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-50%, 8px, 0);
  transition:
    opacity 0.24s ease,
    transform 0.24s ease;
  z-index: 4;
}

.client-authority-metric-detail {
  margin: 0;
  max-width: 22ch;
  width: 100%;
  color: rgba(222, 236, 255, 0.88);
  font-size: 0.78rem;
  line-height: 1.46;
  text-wrap: balance;
  text-align: center;
}

.client-authority-metric:hover .client-authority-metric-modal,
.client-authority-metric:focus-visible .client-authority-metric-modal {
  opacity: 1;
  transform: translate3d(-50%, 0, 0);
}

.client-authority-metric:hover strong,
.client-authority-metric:focus-visible strong {
  transform: scale(1.04);
}

.client-authority-metric:hover .client-authority-metric-number,
.client-authority-metric:focus-visible .client-authority-metric-number {
  transform: scale(1.08);
}

.client-authority-metric:hover .client-authority-metric-suffix,
.client-authority-metric:focus-visible .client-authority-metric-suffix {
  transform: scale(1.05);
}

.clients-head {
  margin-top: 1.05rem;
  display: grid;
  gap: 0.34rem;
  max-width: 64rem;
}

.clients-head h2 {
  margin: 0;
  max-width: 23ch;
}

.clients-head p {
  margin: 0;
  max-width: 68ch;
  color: #bfd2e8;
  font-size: 0.96rem;
  line-height: 1.58;
}

.clients-showcase {
  margin-top: 1rem;
}

.clients-copy-panel {
  position: sticky;
  top: 110px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.42rem;
  height: 100%;
  padding: 0.1rem 0.1rem 0.1rem 0;
}

.clients-copy-panel h2 {
  color: #f3f8ff;
  margin-bottom: 0.45rem;
  font-size: clamp(1.26rem, 1.8vw, 1.8rem);
}

.clients-copy-panel p {
  color: #c1d3ea;
  margin: 0;
  font-size: 0.94rem;
}

.clients-copy-intro {
  display: grid;
  gap: 0.32rem;
}

.clients-mini {
  margin: 0 0 0.45rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8fe0ff;
}

.clients-accordion {
  margin-top: 0.28rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.62rem;
}

.clients-accordion-item {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
}

.clients-accordion-item[open] {
  background: transparent;
}

.clients-accordion-summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  min-height: 88px;
  padding: 1rem 1rem 0.96rem;
  cursor: pointer;
}

.clients-accordion-summary::-webkit-details-marker {
  display: none;
}

.clients-accordion-labels {
  display: grid;
  gap: 0.18rem;
  min-width: 0;
}

.clients-accordion-labels strong {
  display: block;
  color: #f6fbff;
  font-size: 1.04rem;
  line-height: 1.18;
}

.clients-accordion-toggle {
  position: relative;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.clients-accordion-toggle::before,
.clients-accordion-toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 1.5px;
  border-radius: 999px;
  background: #9fe1ff;
  transform: translate(-50%, -50%);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.clients-accordion-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.clients-accordion-item[open] .clients-accordion-toggle::after {
  opacity: 0;
}

.clients-accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}

.clients-accordion-panel > p {
  overflow: hidden;
  margin: 0;
  padding: 0 1rem 0;
  color: #9cb7d6;
  font-size: 0.83rem;
  line-height: 1.42;
}

.clients-accordion-item[open] .clients-accordion-panel {
  grid-template-rows: 1fr;
}

.clients-accordion-item[open] .clients-accordion-panel > p {
  padding-bottom: 1.02rem;
}

.clients-stat-kicker {
  margin: 0;
  color: #7fb9d6;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.62rem;
}

.client-brand-tile {
  position: relative;
  min-height: 112px;
  border-radius: 13px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.97), rgba(241, 247, 255, 0.92)),
    radial-gradient(circle at 24% 24%, rgba(95, 209, 255, 0.18), transparent 30%);
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 0.22rem;
  padding: 0.42rem 0.4rem;
  box-shadow:
    0 18px 30px -26px rgba(8, 24, 40, 0.66),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease;
}

.client-brand-tile:hover,
.client-brand-tile:focus-within {
  transform: translateY(-5px);
  border-color: rgba(95, 209, 255, 0.38);
  box-shadow:
    0 28px 42px -26px rgba(8, 24, 40, 0.8),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.client-brand-tile img {
  width: auto;
  max-width: 97%;
  max-height: 82px;
  object-fit: contain;
  display: block;
  filter: saturate(1.04) contrast(1.05);
  transition: transform 0.26s ease;
  transform-origin: center;
}

.client-brand-tile:hover > img,
.client-brand-tile:focus-within > img {
  transform: scale(1.14);
}

.client-brand-info {
  width: 100%;
  text-align: center;
}

.client-brand-info strong {
  display: block;
  color: #27435d;
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1.2;
}

.areas {
  background: transparent;
}

.areas-grid {
  margin-top: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.panel {
  border: 1px solid rgba(34, 53, 75, 0.18);
  border-radius: 16px;
  padding: 1.05rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.94));
  position: relative;
  overflow: hidden;
}

.panel::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #5fd1ff, #3d8cff, #9b5de5);
  opacity: 0.85;
}

.panel::after {
  content: "";
  position: absolute;
  right: -26px;
  top: -26px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(95, 209, 255, 0.18), transparent 68%);
  pointer-events: none;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 230px;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.service-icon {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 0.72rem;
  transform: translateY(0) scale(1);
  transition: transform 0.32s ease;
}

.panel h3 {
  margin-bottom: 0.52rem;
  font-size: 1.02rem;
  color: #1d3045;
  transform: translateY(0);
  transition: transform 0.32s ease;
}

.areas-grid .service-card h3 {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.18rem, 1.6vw, 1.42rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.panel p {
  margin: 0;
  color: #4d627a;
  transform: translateY(0);
  transition: transform 0.36s ease, color 0.36s ease;
}

.service-more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 0.34rem;
  color: #f5fbff;
  font-weight: 700;
  font-size: 0.86rem;
  padding: 0.56rem 0.78rem;
  border-radius: 999px;
  border: 1px solid rgba(45, 124, 212, 0.92);
  background: linear-gradient(135deg, rgba(63, 155, 255, 0.98), rgba(26, 102, 191, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    0 12px 24px -22px rgba(16, 79, 152, 0.78);
  transform: translateY(6px);
  opacity: 0.88;
  transition:
    transform 0.32s ease,
    opacity 0.32s ease,
    color 0.32s ease,
    border-color 0.32s ease,
    background 0.32s ease,
    box-shadow 0.32s ease;
}

.service-more span {
  display: inline-block;
  transform: translateX(0);
  transition: transform 0.28s ease;
}

.areas-grid .service-card.reveal-item.is-visible .service-more,
.segment-service-grid .segment-service-card.reveal-item.is-visible .service-more {
  animation: serviceMoreCascadeWobble 5.8s ease-in-out infinite;
  transform-origin: center;
}

.areas-grid .service-card.reveal-item.is-visible:nth-child(1) .service-more,
.segment-service-grid .segment-service-card.reveal-item.is-visible:nth-child(1) .service-more {
  animation-delay: 0s;
}

.areas-grid .service-card.reveal-item.is-visible:nth-child(2) .service-more,
.segment-service-grid .segment-service-card.reveal-item.is-visible:nth-child(2) .service-more {
  animation-delay: 0.32s;
}

.areas-grid .service-card.reveal-item.is-visible:nth-child(3) .service-more,
.segment-service-grid .segment-service-card.reveal-item.is-visible:nth-child(3) .service-more {
  animation-delay: 0.64s;
}

.areas-grid .service-card.reveal-item.is-visible:nth-child(4) .service-more,
.segment-service-grid .segment-service-card.reveal-item.is-visible:nth-child(4) .service-more {
  animation-delay: 0.96s;
}

.areas-grid .service-card.reveal-item.is-visible:nth-child(5) .service-more,
.segment-service-grid .segment-service-card.reveal-item.is-visible:nth-child(5) .service-more {
  animation-delay: 1.28s;
}

.areas-grid .service-card.reveal-item.is-visible:nth-child(6) .service-more,
.segment-service-grid .segment-service-card.reveal-item.is-visible:nth-child(6) .service-more {
  animation-delay: 1.6s;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-5px);
  border-color: rgba(95, 209, 255, 0.52);
  box-shadow: 0 18px 30px -22px rgba(23, 58, 95, 0.42);
}

.service-card:hover .service-icon,
.service-card:focus-within .service-icon {
  transform: translateY(-2px) scale(1.08);
}

.service-card:hover h3,
.service-card:focus-within h3 {
  transform: translateY(-1px);
}

.service-card:hover p,
.service-card:focus-within p {
  transform: translateY(-1px);
  color: #3e5670;
}

.service-card:hover .service-more,
.service-card:focus-within .service-more,
.segment-service-card:hover .service-more,
.segment-service-card:focus-within .service-more {
  animation: none;
  transform: translateY(0);
  opacity: 1;
  color: #2d2200;
  border-color: rgba(213, 195, 59, 0.96);
  background: linear-gradient(135deg, rgba(213, 195, 59, 0.98), rgba(194, 175, 41, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    0 14px 24px -20px rgba(213, 195, 59, 0.62);
}

.service-card:hover .service-more span,
.service-card:focus-within .service-more span,
.segment-service-card:hover .service-more span,
.segment-service-card:focus-within .service-more span {
  transform: translateX(3px);
}

.erps {
  background: transparent;
}

.erps-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 0.82rem;
  align-items: start;
}

.erps-copy {
  position: sticky;
  top: 112px;
  display: grid;
  grid-template-rows: auto auto;
  gap: 0.58rem;
  align-content: start;
}

.erps-copy h2 {
  margin: 0;
  max-width: 24ch;
  font-size: clamp(1.44rem, 3.6vw, 2.88rem);
}

.erps-logo-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.72rem;
  align-self: start;
}

.erp-brand-tile {
  min-height: 132px;
  background: #ffffff;
  cursor: pointer;
  overflow: visible;
}

.erp-brand-tile img {
  max-width: 96%;
  max-height: 96px;
}

.erp-brand-tile .client-brand-info {
  display: none;
}

.erp-brand-tile::after {
  content: attr(data-erp-name);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 0.42rem);
  transform: translate3d(-50%, 8px, 0);
  padding: 0.36rem 0.56rem;
  border-radius: 999px;
  background: rgba(8, 20, 33, 0.94);
  color: #f4f9ff;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 12px 24px -16px rgba(0, 0, 0, 0.48);
  transition: opacity 0.22s ease, transform 0.22s ease;
  z-index: 3;
}

.erp-brand-tile.is-tooltip-open::after,
.erp-brand-tile:focus-visible::after {
  opacity: 1;
  transform: translate3d(-50%, 0, 0);
}

.about {
  background: transparent;
}

.about.is-deferred {
  display: none;
}

.about-grid,
.career-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  gap: 1rem;
  align-items: start;
}

.about-copy,
.career-copy {
  display: grid;
  gap: 0.52rem;
}

.about-principles {
  margin-top: 0.82rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.62rem;
}

.about-principle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 46px;
  padding: 0.72rem 0.84rem;
  border-radius: 999px;
  border: 1px solid rgba(95, 209, 255, 0.2);
  background: rgba(9, 19, 31, 0.34);
  color: #f2f8ff;
  backdrop-filter: blur(10px);
  transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.about-principle-btn:hover,
.about-principle-btn:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(95, 209, 255, 0.46);
  background: rgba(95, 209, 255, 0.12);
  outline: none;
}

.about-principle-icon {
  width: 1.25rem;
  height: 1.25rem;
  display: inline-grid;
  place-items: center;
  color: #8fd2ff;
}

.about-principle-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.about-principle-label {
  font-family: "Sora", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-certs {
  margin-top: 0.92rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.72rem;
}

.about-cert-card {
  min-height: 0;
  display: grid;
  gap: 0.72rem;
  align-content: start;
  padding: 0.92rem 0.94rem 0.98rem;
  background: rgba(10, 21, 34, 0.34);
  border: 1px solid rgba(159, 232, 255, 0.12);
  box-shadow: 0 18px 34px -28px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(10px);
}

.about-cert-mark {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  overflow: visible;
}

.about-cert-mark img {
  display: block;
  width: auto;
  height: 3rem;
  object-fit: contain;
  border-radius: 12px;
}

.about-cert-copy {
  display: grid;
  gap: 0.36rem;
}

.about-cert-copy strong {
  color: #f2f8ff;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  line-height: 1.12;
}

.about-cert-copy p {
  margin: 0;
  color: #c4d6ea;
  line-height: 1.58;
}

.about-copy p,
.career-copy p {
  margin: 0;
  color: #bfd2ea;
  max-width: 62ch;
}

.about-timeline {
  position: relative;
  display: grid;
  gap: 0.82rem;
  padding-left: 1.8rem;
}

.about-timeline-accordion {
  display: flex;
  flex-direction: column-reverse;
}

.about-timeline-legacy {
  display: none;
}

.about-timeline::before {
  content: "";
  position: absolute;
  left: 0.5rem;
  top: 0.35rem;
  bottom: 0.35rem;
  width: 2px;
  background: linear-gradient(180deg, rgba(95, 209, 255, 0.76), rgba(95, 209, 255, 0.12));
}

.about-timeline-item {
  position: relative;
  min-height: 0;
  background: rgba(10, 21, 34, 0.34);
  border: 1px solid rgba(159, 232, 255, 0.12);
  box-shadow: 0 18px 34px -28px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.about-timeline-item::before {
  content: "";
  position: absolute;
  left: -1.56rem;
  top: 1.24rem;
  width: 0.86rem;
  height: 0.86rem;
  border-radius: 50%;
  background: #5fd1ff;
  box-shadow: 0 0 0 6px rgba(95, 209, 255, 0.12);
}

.about-timeline-summary {
  list-style: none;
  display: grid;
  grid-template-columns: minmax(86px, 112px) minmax(0, 1fr) auto;
  gap: 0.46rem;
  align-items: center;
  min-height: 72px;
  padding: 0.74rem 0.92rem 0.78rem 0.96rem;
  cursor: pointer;
}

.about-timeline-summary::-webkit-details-marker {
  display: none;
}

.about-timeline-year {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 2.1rem;
  color: #9fe8ff;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.02rem, 0.9rem + 0.5vw, 1.34rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 0 10px 24px rgba(95, 209, 255, 0.18);
}

.about-timeline-year-current {
  color: #e4bf4b;
  text-shadow: 0 12px 28px rgba(201, 162, 39, 0.24);
}

.about-timeline-copy {
  display: grid;
  gap: 0.18rem;
}

.about-timeline-copy strong {
  color: #f2f8ff;
  font-family: "Sora", sans-serif;
  font-size: clamp(1rem, 0.96rem + 0.3vw, 1.18rem);
  line-height: 1.12;
}

.about-timeline-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}

.about-timeline-panel p {
  overflow: hidden;
  margin: 0;
  padding: 0 0.92rem 0 8.1rem;
  color: #c4d6ea;
  font-size: 0.97rem;
  line-height: 1.62;
}

.about-timeline-toggle {
  position: relative;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.about-timeline-toggle::before,
.about-timeline-toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 1.5px;
  border-radius: 999px;
  background: #9fe1ff;
  transform: translate(-50%, -50%);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.about-timeline-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.about-timeline-item[open] .about-timeline-toggle::after {
  opacity: 0;
}

.about-timeline-item[open] .about-timeline-panel {
  grid-template-rows: 1fr;
}

.about-timeline-item[open] .about-timeline-panel p {
  padding-bottom: 0.92rem;
}

.about-panels,
.about-panel,
.agenda-card,
.career-panel {
  min-height: 178px;
  display: grid;
  align-content: start;
  gap: 0.48rem;
}

.career-panel {
  display: none;
}

.about-panel strong,
.agenda-card strong,
.career-panel strong {
  color: #17314b;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  line-height: 1.15;
}

.about-panel p,
.agenda-card p,
.career-panel p {
  margin: 0;
  color: #4b627a;
}

.agenda {
  background: transparent;
}

.agenda-layout {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.6fr);
  gap: 1.5rem;
  align-items: start;
}

.agenda-copy {
  display: grid;
  align-content: start;
  gap: 0.52rem;
}

.agenda-copy h2 {
  max-width: 22ch;
  font-size: clamp(1.32rem, 2vw, 1.9rem);
  line-height: 1.12;
}

.agenda-subtitle {
  margin: 0;
  max-width: 42ch;
  color: rgba(223, 235, 248, 0.82);
  font-size: clamp(0.94rem, 1.35vw, 1.02rem);
  line-height: 1.55;
  font-weight: 500;
}

.agenda-calendar {
  padding: 0;
  display: grid;
  gap: 0.72rem;
  width: 100%;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.agenda-calendar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.agenda-calendar-month {
  color: #eef6ff;
  font-family: "Sora", sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.agenda-calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.38rem;
}

.agenda-calendar-weekdays span {
  padding: 0.42rem 0.32rem;
  border-radius: 10px;
  background: rgba(117, 189, 255, 0.09);
  color: rgba(118, 208, 255, 0.98);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.agenda-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.38rem;
}

.agenda-day {
  min-height: 92px;
  padding: 0.5rem 0.46rem 0.48rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(9, 16, 26, 0.32), rgba(5, 11, 18, 0.42)),
    rgba(8, 16, 27, 0.1);
  display: grid;
  align-content: start;
  gap: 0.36rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 18px 32px -28px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px) saturate(118%);
  -webkit-backdrop-filter: blur(14px) saturate(118%);
}

.agenda-day.has-obligations {
  cursor: pointer;
  border-color: rgba(255, 136, 48, 0.46);
  background:
    linear-gradient(180deg, rgba(255, 148, 56, 0.92), rgba(216, 89, 14, 0.92)),
    rgba(161, 65, 8, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 230, 194, 0.26), 0 20px 34px -26px rgba(79, 24, 0, 0.52);
}

.agenda-day.has-obligations:hover,
.agenda-day.has-obligations:focus-visible {
  transform: translateY(-1px);
  outline: 0;
  border-color: rgba(255, 178, 104, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 242, 214, 0.34), 0 24px 40px -26px rgba(79, 24, 0, 0.62);
}

.agenda-day.is-empty {
  opacity: 0.32;
}

.agenda-day.is-today {
  border-color: rgba(95, 209, 255, 0.48);
  box-shadow: 0 18px 30px -24px rgba(95, 209, 255, 0.34);
}

.agenda-day-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.4rem;
}

.agenda-day.has-obligations .agenda-day-head {
  align-items: flex-start;
  justify-content: space-between;
}

.agenda-day-number {
  color: #f3f8ff;
  font-family: "Sora", sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
}

.agenda-day-alert {
  display: inline-grid;
  place-items: center;
  width: 1.28rem;
  height: 1.28rem;
  margin-top: -0.18rem;
  color: #fff3df;
  filter: drop-shadow(0 10px 12px rgba(93, 26, 0, 0.28));
  animation: agendaAlertWobble 3.4s ease-in-out infinite;
}

.agenda-day-alert svg {
  display: block;
  width: 100%;
  height: 100%;
}

.agenda-day-items {
  display: grid;
  gap: 0.34rem;
  align-content: start;
}

.agenda-day.has-obligations .agenda-day-items {
  display: none;
}

@keyframes agendaAlertWobble {
  0%,
  100% {
    transform: rotate(0deg) translateX(0);
  }
  18% {
    transform: rotate(-4deg) translateX(-1px);
  }
  32% {
    transform: rotate(3deg) translateX(1px);
  }
  46% {
    transform: rotate(-2deg) translateX(-1px);
  }
  60% {
    transform: rotate(1.5deg) translateX(1px);
  }
  74% {
    transform: rotate(-1deg) translateX(0);
  }
}

.agenda-day-item {
  margin: 0;
  padding: 0.3rem 0.36rem;
  border-radius: 8px;
  background: rgba(7, 16, 27, 0.34);
  color: #dbeaff;
  font-size: 0.66rem;
  line-height: 1.34;
}

.agenda-day-note {
  margin: 0;
  color: rgba(219, 234, 255, 0.24);
  font-size: 0.64rem;
  line-height: 1.3;
}

.career {
  background: transparent;
}

.career-copy {
  align-content: start;
}

.career-copy h2 {
  max-width: min(21ch, 100%);
  font-size: clamp(1.7rem, 4.25vw, 3.4rem);
}

.career-copy > p {
  font-size: clamp(0.97rem, 1.92vw, 1.21rem);
  line-height: 1.45;
}

.career-panel .btn {
  margin-top: 0.4rem;
  justify-self: start;
}

.career-accordion {
  display: grid;
  gap: 0.56rem;
  margin-top: 0.72rem;
}

.career-accordion-item {
  min-height: 0;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(188, 205, 225, 0.72);
  box-shadow: 0 18px 34px -28px rgba(9, 31, 56, 0.24);
  overflow: hidden;
}

.career-accordion-summary {
  list-style: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.8rem;
  align-items: center;
  min-height: 60px;
  padding: 0.72rem 0.86rem;
  cursor: pointer;
  background: linear-gradient(135deg, rgba(248, 251, 255, 0.98), rgba(238, 244, 251, 0.98));
  border-bottom: 1px solid rgba(191, 206, 224, 0.72);
}

.career-accordion-summary::-webkit-details-marker {
  display: none;
}

.career-accordion-summary strong {
  color: #1b3148;
  font-family: "Sora", sans-serif;
  font-size: clamp(0.94rem, 0.92rem + 0.18vw, 1.06rem);
  line-height: 1.12;
  text-transform: uppercase;
}

.career-accordion-toggle {
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(180, 199, 221, 0.92);
  background: linear-gradient(135deg, rgba(247, 250, 255, 0.98), rgba(231, 239, 249, 0.98));
}

.career-accordion-toggle::before,
.career-accordion-toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 1.5px;
  border-radius: 999px;
  background: #2d6cad;
  transform: translate(-50%, -50%);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.career-accordion-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.career-accordion-item[open] .career-accordion-toggle::after {
  opacity: 0;
}

.career-accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}

.career-accordion-item[open] .career-accordion-panel {
  grid-template-rows: 1fr;
}

.career-accordion-panel > * {
  overflow: hidden;
}

.career-accordion-panel p {
  margin: 0;
  padding: 0 0.86rem 0.68rem;
  color: #4d627a;
  line-height: 1.52;
  font-size: 0.93rem;
}

.career-accordion-share {
  margin: 0 0 0.76rem 0.86rem;
  justify-self: start;
  border-color: rgba(45, 124, 212, 0.22);
  background: rgba(247, 250, 255, 0.98);
  color: #1f5f9a;
  padding: 0.58rem 0.84rem;
  font-size: 0.82rem;
}

.career-accordion-share:hover,
.career-accordion-share:focus-visible {
  background: rgba(95, 209, 255, 0.16);
  border-color: rgba(95, 209, 255, 0.42);
}

.career-grid {
  grid-template-columns: minmax(0, 1.92fr) minmax(300px, 0.76fr);
  align-items: stretch;
}

.career-paths {
  display: grid;
  gap: 0.58rem;
}

.career-path-card {
  position: relative;
  display: block;
  min-height: 184px;
  padding: 0;
  border: 0;
  border-radius: 22px;
  box-shadow: 0 28px 46px -34px rgba(0, 0, 0, 0.38);
  overflow: hidden;
}

.career-path-media {
  position: absolute;
  inset: 0;
  min-height: 0;
  overflow: hidden;
}

.career-path-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(7, 18, 30, 0.1), rgba(7, 18, 30, 0.24)),
    linear-gradient(135deg, rgba(95, 209, 255, 0.06), rgba(95, 209, 255, 0));
}

.career-path-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.65s ease;
}

.career-path-senior .career-path-media img {
  transform: scale(1.02) scaleX(-1);
}

.career-path-copy {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  gap: 0.34rem;
  min-height: 184px;
  width: min(52%, 280px);
  margin-left: auto;
  padding: 0.82rem 0.86rem 0.8rem;
  background:
    linear-gradient(180deg, rgba(10, 21, 34, 0.16), rgba(10, 21, 34, 0.3)),
    rgba(8, 16, 26, 0.08);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
}

.career-path-kicker {
  margin: 0;
  color: #e1f1ff;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.career-path-copy strong {
  color: #f7fbff;
  font-family: "Sora", sans-serif;
  font-size: clamp(0.94rem, 0.9rem + 0.22vw, 1.08rem);
  line-height: 1.08;
  max-width: 14ch;
}

.career-path-copy p {
  margin: 0;
  color: rgba(234, 243, 255, 0.9);
  line-height: 1.42;
  font-size: 0.84rem;
}

.career-path-btn {
  margin-top: 0.18rem;
  display: inline-flex;
  align-items: center;
  gap: 0.52rem;
  justify-self: start;
  position: relative;
  z-index: 3;
  border-color: rgba(223, 235, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: #f1f7ff;
  box-shadow: 0 16px 26px -22px rgba(0, 0, 0, 0.36);
  padding: 0.56rem 0.78rem;
  font-size: 0.78rem;
  transition:
    transform 0.24s ease,
    background-color 0.24s ease,
    border-color 0.24s ease,
    color 0.24s ease,
    box-shadow 0.24s ease;
}

.career-path-btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
}

.career-path-btn-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.career-path-btn:hover,
.career-path-btn:focus-visible {
  transform: scale(1.05);
  background: #5fd1ff;
  border-color: #5fd1ff;
  color: #0b1625;
  box-shadow: 0 18px 30px -20px rgba(95, 209, 255, 0.52);
}

.career-path-card:hover .career-path-media img,
.career-path-card:focus-within .career-path-media img {
  transform: scale(1.12);
}

.career-path-senior:hover .career-path-media img,
.career-path-senior:focus-within .career-path-media img {
  transform: scale(1.12) scaleX(-1);
}

.career-path-card:hover,
.career-path-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 30px 52px -34px rgba(0, 0, 0, 0.44);
}

.cta {
  background: transparent;
}

.cta-wrap {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  padding: clamp(1.2rem, 4vw, 2rem);
  background: linear-gradient(140deg, rgba(27, 45, 70, 0.88), rgba(16, 27, 44, 0.9));
}

.cta p {
  color: var(--muted);
}

.contact-section {
  background: transparent;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(1rem, 3vw, 1.8rem);
  align-items: stretch;
}

.contact-copy {
  display: grid;
  align-content: start;
  gap: 0.76rem;
}

.contact-copy h2 {
  max-width: min(18ch, 100%);
  font-size: clamp(1.58rem, 3.7vw, 2.95rem);
  line-height: 1.04;
}

.contact-lead {
  margin: 0;
  max-width: 58ch;
  color: rgba(223, 235, 248, 0.76);
  font-size: clamp(1rem, 1.75vw, 1.12rem);
  line-height: 1.55;
}

.contact-company {
  margin: 0.08rem 0 0;
  color: rgba(238, 245, 255, 0.9);
  font-family: "Sora", sans-serif;
  font-size: clamp(0.96rem, 1.3vw, 1.06rem);
  line-height: 1.45;
}

.contact-accordion {
  display: grid;
  gap: 0.68rem;
  margin-top: 0.36rem;
}

.contact-accordion-item {
  min-height: 0;
  border: 1px solid rgba(188, 205, 225, 0.72);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 34px -28px rgba(9, 31, 56, 0.24);
  overflow: hidden;
}

.contact-accordion-summary {
  list-style: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.8rem;
  align-items: center;
  min-height: 64px;
  padding: 0.92rem 1rem;
  cursor: pointer;
  background: linear-gradient(135deg, rgba(248, 251, 255, 0.98), rgba(238, 244, 251, 0.98));
  border-bottom: 1px solid rgba(191, 206, 224, 0.72);
}

.contact-accordion-summary::-webkit-details-marker {
  display: none;
}

.contact-accordion-summary strong {
  color: #1b3148;
  font-family: "Sora", sans-serif;
}

.contact-detail-label {
  color: #1b3148;
  font-family: "Sora", sans-serif;
  font-weight: 700;
}

.contact-accordion-toggle {
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(180, 199, 221, 0.92);
  background: linear-gradient(135deg, rgba(247, 250, 255, 0.98), rgba(231, 239, 249, 0.98));
}

.contact-accordion-toggle::before,
.contact-accordion-toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 1.5px;
  border-radius: 999px;
  background: #2d6cad;
  transform: translate(-50%, -50%);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.contact-accordion-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.contact-accordion-item[open] .contact-accordion-toggle::after {
  opacity: 0;
}

.contact-accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}

.contact-accordion-item[open] .contact-accordion-panel {
  grid-template-rows: 1fr;
}

.contact-detail-label,
.contact-accordion-panel > * {
  overflow: hidden;
}

.contact-accordion-panel p {
  margin: 0;
  padding: 0.18rem 1rem 1rem;
  color: #4d627a;
  font-size: 0.95rem;
  line-height: 1.58;
  font-weight: 700;
}

.contact-actions {
  margin-top: 0.2rem;
}

.contact-form-card {
  height: 100%;
  padding: clamp(0.2rem, 1vw, 0.4rem) 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  display: grid;
  align-content: start;
  gap: 0.82rem;
}

.contact-form-card h3 {
  margin: 0;
  color: #f2f8ff;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.16rem, 1.6vw, 1.46rem);
  line-height: 1.18;
}

.contact-form {
  display: grid;
  gap: 0.9rem;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.88rem;
}

.contact-field {
  display: grid;
  gap: 0.42rem;
}

.contact-field span {
  color: #eef5ff;
  font-size: 0.88rem;
  font-weight: 700;
}

.form-field-label {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
}

.form-field-icon {
  width: 0.92rem;
  height: 0.92rem;
  color: rgba(159, 232, 255, 0.92);
  flex: 0 0 auto;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  padding: 0.98rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(21, 47, 79, 0.16);
  background: rgba(255, 255, 255, 0.98);
  color: #17314b;
  font: inherit;
  font-size: 0.98rem;
  line-height: 1.45;
  outline: none;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
  resize: vertical;
}

.contact-field input {
  min-height: 3.45rem;
}

.contact-field textarea {
  min-height: 9rem;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: rgba(23, 49, 75, 0.72);
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: rgba(95, 209, 255, 0.62);
  box-shadow: 0 0 0 4px rgba(95, 209, 255, 0.12);
  background: #ffffff;
}

.contact-field-full {
  grid-column: 1 / -1;
}

.contact-form-feedback {
  margin: 0;
  min-height: 1.3rem;
  color: rgba(255, 214, 179, 0.9);
  font-size: 0.88rem;
  line-height: 1.45;
}

.contact-form-feedback.is-error {
  min-height: 0;
  padding: 0.82rem 1rem;
  border-radius: 12px;
  background: rgba(181, 26, 26, 0.22);
  border: 1px solid rgba(255, 120, 120, 0.38);
  color: #ffd7d7;
  font-weight: 800;
}

.contact-form-feedback.is-success {
  min-height: 0;
  padding: 0.82rem 1rem;
  border-radius: 12px;
  background: rgba(12, 110, 74, 0.22);
  border: 1px solid rgba(114, 231, 187, 0.3);
  color: #d3fff0;
  font-weight: 700;
}

@media (max-width: 980px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-copy h2 {
    max-width: 100%;
  }
}

@media (max-width: 760px) {
  .contact-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-form-card {
    padding: 0;
  }
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 58px;
  width: min(calc(100vw - 2rem), var(--max));
  transform: translateX(-50%);
  z-index: 81;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.74rem 0.84rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(8, 14, 23, 0.9);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner-copy {
  display: grid;
  gap: 0.18rem;
  max-width: 760px;
}

.cookie-banner-copy strong {
  font-size: 0.88rem;
  color: #f7fbff;
}

.cookie-banner-copy p {
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.55;
  color: rgba(235, 242, 252, 0.72);
}

.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
}

.cookie-accept {
  min-height: auto;
  padding: 0.7rem 1rem;
  font-size: 0.76rem;
}

.cookie-link {
  border: 0;
  padding: 0;
  background: transparent;
  color: rgba(143, 210, 255, 0.84);
  font: inherit;
  font-size: 0.74rem;
  cursor: pointer;
  transition: color 180ms ease;
}

.cookie-link:hover,
.cookie-link:focus-visible {
  color: #f7fbff;
  outline: none;
}

.legal-strip {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 12px;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.34rem 0.62rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 999px;
  background: rgba(6, 12, 20, 0.2);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.legal-strip-copy {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.38rem 0.9rem;
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(235, 242, 252, 0.38);
}

.legal-year-button {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  cursor: pointer;
  transition: color 180ms ease;
}

.legal-year-button:disabled {
  cursor: default;
  pointer-events: none;
}

.legal-year-button:hover,
.legal-year-button:focus-visible {
  color: rgba(247, 251, 255, 0.86);
  outline: none;
}

.legal-link {
  border: 0;
  padding: 0;
  background: transparent;
  color: rgba(143, 210, 255, 0.68);
  font: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms ease;
}

.legal-link:hover,
.legal-link:focus-visible {
  color: rgba(247, 251, 255, 0.86);
  outline: none;
}

.legal-strip-credit {
  position: relative;
  display: flex;
  align-items: center;
  align-self: center;
  min-height: 0;
  line-height: 0;
}

.legal-strip-credit::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 100%;
  width: 100%;
  height: 14px;
}

.legal-credit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  border: 0;
  border-radius: 999px;
  padding: 0.08rem 0.14rem;
  background: transparent;
  color: rgba(235, 242, 252, 0.38);
  text-decoration: none;
  line-height: 0;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.legal-credit-button:hover,
.legal-credit-button:focus-visible {
  color: rgba(247, 251, 255, 0.78);
  background: rgba(106, 195, 255, 0.03);
  outline: none;
  transform: translateY(-1px);
}

.legal-credit-icon {
  display: inline-grid;
  place-items: center;
  width: 2.9rem;
  height: 0.86rem;
  line-height: 0;
  overflow: hidden;
}

.legal-credit-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  opacity: 1;
  filter: none;
  transform: translateY(-2px) scale(1.12);
  transform-origin: center;
}

.legal-credit-tooltip {
  position: absolute;
  right: 0;
  bottom: calc(100% + 6px);
  width: min(280px, calc(100vw - 2rem));
  padding: 0.76rem 0.82rem;
  border: 1px solid rgba(143, 210, 255, 0.12);
  border-radius: 12px;
  background: rgba(7, 14, 23, 0.88);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.72rem;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  pointer-events: none;
}

.legal-credit-tooltip-logo {
  display: inline-grid;
  place-items: center;
  text-decoration: none;
}

.legal-credit-tooltip-logo img {
  width: auto;
  height: 1.9rem;
  display: block;
  object-fit: contain;
}

.legal-credit-tooltip-copy {
  min-width: 0;
}

.legal-credit-tooltip p {
  margin: 0;
  font-size: 0.68rem;
  line-height: 1.5;
  color: rgba(235, 242, 252, 0.68);
}

.legal-credit-tooltip p a {
  color: rgba(143, 210, 255, 0.82);
  text-decoration: none;
}

.legal-credit-tooltip p a:hover,
.legal-credit-tooltip p a:focus-visible {
  color: rgba(247, 251, 255, 0.92);
  text-decoration: underline;
  outline: none;
}

.legal-strip-credit:hover .legal-credit-tooltip,
.legal-strip-credit:focus-within .legal-credit-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.legal-info-modal {
  position: fixed;
  inset: 0;
  z-index: 92;
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.legal-info-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.legal-info-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 12, 0.72);
  backdrop-filter: blur(6px);
}

.legal-info-modal-panel {
  position: relative;
  width: min(460px, calc(100vw - 2rem));
  max-height: calc(100dvh - 2rem);
  padding: 1.18rem 1.18rem 1.06rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(9, 17, 27, 0.96), rgba(7, 13, 22, 0.96));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
  overflow-y: auto;
}

.legal-info-modal-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.92rem;
}

.legal-info-modal-kicker {
  margin: 0 0 0.26rem;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(143, 210, 255, 0.74);
}

#legal-info-modal-title {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.1rem, 2.6vw, 1.5rem);
  color: #f7fbff;
}

.legal-info-modal-close {
  border: 0;
  background: transparent;
  color: rgba(235, 242, 252, 0.74);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.legal-info-modal-body {
  display: grid;
  gap: 0.72rem;
}

.legal-info-modal-body p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.68;
  color: rgba(235, 242, 252, 0.8);
}

.legal-info-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.legal-info-credit {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.58rem;
  align-items: end;
  padding-top: 0.3rem;
  opacity: 0.72;
}

.legal-info-credit-logo {
  display: inline-grid;
  place-items: center;
  align-self: end;
  opacity: 0.46;
}

.legal-info-credit-logo img {
  width: auto;
  height: 1.15rem;
  display: block;
  object-fit: contain;
}

#legal-info-credit-text {
  font-size: 0.64rem;
  line-height: 1.38;
  color: rgba(235, 242, 252, 0.48);
}

.privacy-modal,
.ethics-modal,
.about-principle-modal,
.career-modal,
.career-success-modal,
.agenda-modal {
  position: fixed;
  inset: 0;
  z-index: 92;
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.privacy-modal.is-open,
.ethics-modal.is-open,
.about-principle-modal.is-open,
.career-modal.is-open,
.career-success-modal.is-open,
.agenda-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.privacy-modal-backdrop,
.ethics-modal-backdrop,
.about-principle-modal-backdrop,
.career-modal-backdrop,
.career-success-modal-backdrop,
.agenda-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 12, 0.72);
  backdrop-filter: blur(6px);
}

.privacy-modal-panel,
.ethics-modal-panel,
.about-principle-modal-panel,
.career-modal-panel,
.career-success-modal-panel,
.agenda-modal-panel {
  position: relative;
  width: min(620px, calc(100vw - 2rem));
  max-height: calc(100dvh - 2rem);
  padding: 1.18rem 1.18rem 1.06rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(9, 17, 27, 0.96), rgba(7, 13, 22, 0.96));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

.privacy-modal-top,
.ethics-modal-top,
.about-principle-modal-top,
.career-modal-top,
.career-success-modal-top,
.agenda-modal-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.92rem;
}

.career-modal-alert {
  display: none;
  margin: -0.12rem 0 0.9rem;
  padding: 0.88rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 133, 133, 0.42);
  background: rgba(170, 24, 24, 0.2);
  color: #ffe4e4;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.5;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.career-modal-alert.is-visible {
  display: block;
}

.privacy-modal-kicker,
.ethics-modal-kicker,
.about-principle-modal-kicker,
.career-modal-kicker,
.agenda-modal-kicker {
  margin: 0 0 0.26rem;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(143, 210, 255, 0.74);
}

#privacy-modal-title,
#ethics-modal-title,
#about-principle-modal-title,
#career-modal-title,
#agenda-modal-title {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.2rem, 2.6vw, 1.7rem);
  color: #f7fbff;
}

.privacy-modal-close,
.ethics-modal-close,
.about-principle-modal-close,
.career-modal-close,
.agenda-modal-close {
  border: 0;
  background: transparent;
  color: rgba(235, 242, 252, 0.74);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.privacy-modal-body,
.ethics-modal-body,
.about-principle-modal-body,
.career-modal-body,
.agenda-modal-body {
  display: grid;
  gap: 0.72rem;
}

.privacy-modal-body p,
.ethics-modal-body p,
.about-principle-modal-body p,
.career-modal-body p,
.agenda-modal-body p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.68;
  color: rgba(235, 242, 252, 0.8);
}

.career-modal-panel {
  width: min(760px, calc(100vw - 2rem));
}

.career-success-modal-panel {
  width: min(520px, calc(100vw - 2rem));
}

.agenda-modal-panel {
  width: min(560px, calc(100vw - 2rem));
}

.agenda-modal-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.68rem;
}

.agenda-modal-list li {
  padding: 0.78rem 0.9rem;
  border: 1px solid rgba(255, 140, 64, 0.26);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 132, 55, 0.18), rgba(156, 72, 8, 0.16));
  color: rgba(248, 250, 255, 0.92);
  line-height: 1.55;
}

.career-modal-body {
  gap: 1rem;
}

.career-success-modal-panel {
  display: grid;
  align-content: center;
  min-height: min(420px, calc(100dvh - 2rem));
}

.career-modal-form {
  display: grid;
  gap: 0.92rem;
}

.career-modal-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.88rem;
}

.career-field {
  display: grid;
  gap: 0.4rem;
}

.career-field span {
  color: #eef5ff;
  font-size: 0.88rem;
  font-weight: 700;
}

.career-field input,
.career-field select {
  width: 100%;
  min-height: 3.45rem;
  padding: 0.98rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(21, 47, 79, 0.16);
  background: rgba(255, 255, 255, 0.98);
  color: #17314b;
  font-size: 0.98rem;
  line-height: 1.3;
  outline: none;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.career-field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 3rem;
  background-image:
    linear-gradient(45deg, transparent 50%, #17314b 50%),
    linear-gradient(135deg, #17314b 50%, transparent 50%);
  background-position:
    calc(100% - 1.25rem) calc(50% - 0.16rem),
    calc(100% - 0.9rem) calc(50% - 0.16rem);
  background-size: 0.42rem 0.42rem, 0.42rem 0.42rem;
  background-repeat: no-repeat;
}

.career-field input::placeholder {
  color: rgba(23, 49, 75, 0.72);
}

.career-field input:focus,
.career-field select:focus {
  border-color: rgba(95, 209, 255, 0.62);
  box-shadow: 0 0 0 4px rgba(95, 209, 255, 0.12);
  background: #ffffff;
}

.career-file-control {
  position: relative;
  display: block;
}

.career-file-control input[type="file"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.career-file-ui {
  min-height: 3.7rem;
  padding: 0.56rem 0.72rem;
  border-radius: 16px;
  border: 1px solid rgba(21, 47, 79, 0.16);
  background: rgba(255, 255, 255, 0.98);
  display: flex;
  align-items: center;
  gap: 0.76rem;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.career-file-control:hover .career-file-ui,
.career-file-control:focus-within .career-file-ui {
  border-color: rgba(95, 209, 255, 0.62);
  box-shadow: 0 0 0 4px rgba(95, 209, 255, 0.12);
  background: #ffffff;
}

.career-file-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0.52rem 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(23, 49, 75, 0.16);
  background: linear-gradient(180deg, #23486d, #17314b);
  color: #f7fbff;
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.career-file-name {
  color: #4d627a !important;
  font-size: 0.92rem;
  line-height: 1.35;
  font-weight: 600;
  opacity: 1;
}

.career-field small {
  color: #8da9c7;
  font-size: 0.78rem;
}

.career-consent {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 0.72rem;
  color: #dbe8f6;
  font-size: 0.9rem;
  line-height: 1.5;
}

.career-consent input {
  width: 1.08rem;
  height: 1.08rem;
  margin-top: 0.14rem;
  accent-color: #5fd1ff;
}

.career-altcha-block {
  display: grid;
  gap: 0.5rem;
}

.contact-submit-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.8rem;
}

.contact-altcha-block {
  min-width: 0;
  display: grid;
  gap: 0.5rem;
}

.contact-submit-btn {
  align-self: start;
  white-space: nowrap;
  position: relative;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    filter 0.22s ease;
}

.contact-submit-btn:hover,
.contact-submit-btn:focus-visible {
  transform: translateY(-1px);
}

.contact-submit-btn.is-submitting {
  color: rgba(36, 23, 0, 0.92);
  padding-right: 2.7rem;
}

.contact-submit-btn.is-submitting::after {
  content: "";
  position: absolute;
  right: 0.92rem;
  top: 50%;
  width: 0.92rem;
  height: 0.92rem;
  margin-top: -0.46rem;
  border-radius: 999px;
  border: 2px solid rgba(36, 23, 0, 0.28);
  border-top-color: rgba(36, 23, 0, 0.9);
  animation: contactSubmitSpinner 0.72s linear infinite;
}

.contact-submit-btn.is-error-pulse {
  animation: contactSubmitErrorPulse 0.42s ease;
}

.career-altcha-label {
  color: #eef5ff;
  font-size: 0.88rem;
  font-weight: 700;
}

#career-altcha {
  display: block;
  width: 100%;
  min-height: 78px;
  padding: 0.35rem;
  border-radius: 16px;
  background: rgba(10, 20, 33, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-sizing: border-box;
  color-scheme: dark;
  --altcha-border-radius: 12px;
  --altcha-color-base: rgba(10, 20, 33, 0.96);
  --altcha-color-border: rgba(95, 209, 255, 0.22);
  --altcha-color-text: #eef5ff;
  --altcha-color-text-light: #b9cde4;
  --altcha-color-footer-bg: transparent;
  --altcha-max-width: 100%;
}

.career-form-feedback {
  min-height: 1.2rem;
  color: #ffcf9d;
  font-size: 0.84rem;
  line-height: 1.45;
}

.career-form-feedback.is-error {
  min-height: 0;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: rgba(181, 26, 26, 0.22);
  border: 1px solid rgba(255, 120, 120, 0.38);
  color: #ffd7d7;
  font-weight: 800;
}

.career-form-feedback.is-success {
  min-height: 0;
  padding: 0;
  background: transparent;
  border: 0;
  color: #a7f3d0;
  font-weight: 700;
}

.career-success-state {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 0.9rem;
  padding: 0.4rem 0 0.2rem;
}

.career-success-state[hidden] {
  display: none !important;
}

.career-success-state.is-entering {
  animation: careerSuccessReveal 0.5s cubic-bezier(0.22, 0.84, 0.24, 1) both;
}

@keyframes careerSuccessReveal {
  from {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.career-success-icon {
  width: 4rem;
  height: 4rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(34, 197, 94, 0.24), rgba(22, 101, 52, 0.24));
  border: 1px solid rgba(134, 239, 172, 0.4);
  color: #bbf7d0;
  font-size: 1.8rem;
  font-weight: 900;
}

#career-success-title {
  margin: 0;
  color: #f5f8ff;
  font-size: 1.35rem;
}

#career-success-text {
  margin: 0;
  max-width: 36ch;
  color: #c7d7ea;
  line-height: 1.6;
}

.career-success-social-text {
  max-width: 34ch;
  color: #9fb5cc;
  font-size: 0.9rem;
}

.career-success-socials {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.career-success-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 2.9rem;
  padding: 0.7rem 0.9rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(10, 20, 33, 0.78);
  color: #eef5ff;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.career-success-social:hover,
.career-success-social:focus-visible {
  transform: translateY(-1px);
}

.career-success-social img {
  width: 18px;
  height: 18px;
}

.career-success-social.instagram:hover,
.career-success-social.instagram:focus-visible {
  border-color: rgba(228, 64, 95, 0.5);
}

.career-success-social.facebook:hover,
.career-success-social.facebook:focus-visible {
  border-color: rgba(24, 119, 242, 0.5);
}

.career-success-social.linkedin:hover,
.career-success-social.linkedin:focus-visible {
  border-color: rgba(10, 102, 194, 0.5);
}

.career-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
  margin-top: 0.16rem;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 93;
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.cookie-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.cookie-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 12, 0.72);
  backdrop-filter: blur(6px);
}

.cookie-modal-panel {
  position: relative;
  width: min(660px, calc(100vw - 2rem));
  max-height: calc(100dvh - 2rem);
  padding: 1.18rem 1.18rem 1.06rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(9, 17, 27, 0.97), rgba(7, 13, 22, 0.97));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

.cookie-modal-top,
.cookie-modal-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-modal-top {
  align-items: flex-start;
  margin-bottom: 0.92rem;
}

.cookie-modal-kicker {
  margin: 0 0 0.26rem;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(143, 210, 255, 0.74);
}

#cookie-modal-title {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.16rem, 2.6vw, 1.62rem);
  color: #f7fbff;
}

.cookie-modal-close {
  border: 0;
  background: transparent;
  color: rgba(235, 242, 252, 0.74);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.cookie-modal-body {
  display: grid;
  gap: 0.92rem;
}

.cookie-modal-body > p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.68;
  color: rgba(235, 242, 252, 0.8);
}

.cookie-pref-list {
  display: grid;
  gap: 0.72rem;
}

.cookie-pref-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.96rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
}

.cookie-pref-item.is-locked {
  background: rgba(255, 255, 255, 0.02);
}

.cookie-pref-copy strong {
  display: block;
  margin-bottom: 0.18rem;
  color: #f7fbff;
  font-size: 0.88rem;
}

.cookie-pref-copy p {
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.58;
  color: rgba(235, 242, 252, 0.7);
}

.cookie-pref-badge {
  flex-shrink: 0;
  padding: 0.28rem 0.56rem;
  border-radius: 999px;
  background: rgba(143, 210, 255, 0.12);
  color: rgba(143, 210, 255, 0.86);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cookie-toggle {
  flex-shrink: 0;
}

.cookie-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.cookie-toggle-ui {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  transition: background-color 180ms ease;
}

.cookie-toggle-ui::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #f7fbff;
  transition: transform 180ms ease;
}

.cookie-toggle input:checked + .cookie-toggle-ui {
  background: rgba(95, 209, 255, 0.5);
}

.cookie-toggle input:checked + .cookie-toggle-ui::after {
  transform: translateX(20px);
}

.cookie-modal-actions {
  margin-top: 1rem;
}

.offer-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s ease;
}

.offer-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.offer-modal.is-open .offer-modal-panel {
  transform: translateY(0) scale(1);
}

.offer-modal-top,
#offer-modal-text,
.offer-faq-item,
.offer-modal-actions {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
}

.offer-modal.is-open .modal-cascade-in {
  animation: modalCascadeIn 1.28s cubic-bezier(0.22, 0.84, 0.24, 1) forwards;
  animation-delay: var(--modal-delay, 0ms);
}

.offer-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 8, 15, 0.66);
  backdrop-filter: blur(3px);
}

.offer-modal-panel {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 2rem));
  max-height: calc(100dvh - 2rem);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(150deg, rgba(8, 20, 34, 0.96), rgba(14, 33, 56, 0.95));
  border-radius: 16px;
  padding: clamp(1.1rem, 3vw, 1.8rem);
  box-shadow:
    0 30px 56px -24px rgba(0, 0, 0, 0.68),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  transform: translateY(14px) scale(0.985);
  transition: transform 0.34s cubic-bezier(0.22, 0.84, 0.24, 1);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

.offer-modal-panel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, #5fd1ff, #79e9ba 48%, #c9a227);
}

.offer-modal-panel::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -70px;
  top: -90px;
  background: radial-gradient(circle, rgba(95, 209, 255, 0.18), transparent 65%);
  pointer-events: none;
}

.offer-modal-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: 0.8rem;
  margin-bottom: 0.45rem;
}

.offer-modal-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #8ee3ff;
  border: 1px solid rgba(95, 209, 255, 0.42);
  background: linear-gradient(145deg, rgba(95, 209, 255, 0.18), rgba(95, 209, 255, 0.08));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.offer-modal-badge svg {
  width: 24px;
  height: 24px;
}

.offer-modal-headtext {
  min-width: 0;
}

.offer-modal-kicker {
  margin: 0 0 0.35rem;
  color: #9fe8ff;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

#offer-modal-title {
  margin: 0;
  color: #f5f9ff;
  font-size: clamp(1.65rem, 2.7vw, 2.18rem);
  line-height: 1.04;
}

#offer-modal-text {
  margin: 0.75rem 0 1.2rem;
  color: #c7d7ea;
  line-height: 1.65;
}

.offer-faq {
  display: grid;
  gap: 0.55rem;
  margin: 0 0 1.2rem;
}

.offer-faq:empty {
  display: none;
}

.offer-faq-item {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 255, 0.96));
  overflow: hidden;
}

.offer-faq-item[open] {
  border-color: rgba(95, 209, 255, 0.44);
  background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(240, 248, 255, 0.98));
}

.offer-faq-summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.9rem 1rem;
  cursor: pointer;
}

.offer-faq-summary::-webkit-details-marker {
  display: none;
}

.offer-faq-summary strong {
  color: #17314b;
  font-size: 1.08rem;
  line-height: 1.26;
}

.offer-faq-toggle {
  position: relative;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(26, 59, 91, 0.14);
  background: rgba(20, 56, 88, 0.06);
}

.offer-faq-toggle::before,
.offer-faq-toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 1.5px;
  background: #9fe8ff;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease;
}

.offer-faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.offer-faq-item[open] .offer-faq-toggle::after {
  opacity: 0;
}

.offer-faq-answer {
  margin: 0;
  padding: 0 1rem 1rem;
  color: #4a627b;
  line-height: 1.62;
}

.offer-modal-actions {
  margin-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
}

.agenda-actions {
  margin-top: 1.15rem;
  opacity: 1;
  transform: none;
}

.offer-modal-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.58rem;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #179c4b);
  color: #f7fffb;
  border-color: rgba(37, 211, 102, 0.72);
  box-shadow: 0 18px 28px -20px rgba(37, 211, 102, 0.62);
}

.btn-whatsapp:hover,
.btn-whatsapp:focus-visible {
  background: linear-gradient(135deg, #2be06d, #169146);
  border-color: rgba(43, 224, 109, 0.88);
}

.btn-whatsapp svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.btn-whatsapp.cta-pulse {
  animation: whatsappPulse 0.72s ease-in-out infinite;
}

.btn-share {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(240, 246, 255, 0.96));
  color: #15324d;
  border-color: rgba(255, 255, 255, 0.72);
}

.btn-share:hover,
.btn-share:focus-visible {
  background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(233, 242, 252, 1));
  border-color: rgba(95, 209, 255, 0.42);
}

.btn-share svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

#contact-map-btn {
  background: linear-gradient(135deg, rgba(66, 133, 244, 0.18), rgba(52, 168, 83, 0.16), rgba(251, 188, 4, 0.14));
  color: #f7fbff;
  border-color: rgba(66, 133, 244, 0.34);
  box-shadow: 0 18px 30px -24px rgba(66, 133, 244, 0.36);
}

#contact-map-btn:hover,
#contact-map-btn:focus-visible {
  background: linear-gradient(135deg, rgba(66, 133, 244, 0.26), rgba(52, 168, 83, 0.22), rgba(234, 67, 53, 0.18));
  border-color: rgba(66, 133, 244, 0.5);
}

.offer-modal-close {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #e9f2ff;
  font-size: 1.25rem;
  cursor: pointer;
}

.offer-modal-close:hover,
.offer-modal-close:focus-visible {
  border-color: rgba(95, 209, 255, 0.5);
  background: rgba(95, 209, 255, 0.16);
}

@keyframes modalCascadeIn {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes whatsappPulse {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }
  15% {
    transform: translate3d(-2px, 0, 0) rotate(-2deg) scale(1.02);
  }
  30% {
    transform: translate3d(2px, 0, 0) rotate(2deg) scale(1.03);
  }
  45% {
    transform: translate3d(-3px, 0, 0) rotate(-2.5deg) scale(1.03);
  }
  60% {
    transform: translate3d(3px, 0, 0) rotate(2.5deg) scale(1.03);
  }
  75% {
    transform: translate3d(-1px, 0, 0) rotate(-1deg) scale(1.01);
  }
}

@keyframes menuContactReveal {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  45% {
    transform: translate3d(0, -1px, 0) scale(1.04);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes menuContactWobble {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  20% {
    transform: translate3d(-2px, 0, 0) rotate(-1.8deg) scale(1.01);
  }
  40% {
    transform: translate3d(2px, 0, 0) rotate(1.8deg) scale(1.02);
  }
  60% {
    transform: translate3d(-2px, 0, 0) rotate(-1.4deg) scale(1.02);
  }
  80% {
    transform: translate3d(2px, 0, 0) rotate(1.4deg) scale(1.01);
  }
}

@keyframes contactSubmitSpinner {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes contactSubmitErrorPulse {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  25% {
    transform: translate3d(-2px, 0, 0);
  }
  50% {
    transform: translate3d(2px, 0, 0);
  }
  75% {
    transform: translate3d(-1px, 0, 0);
  }
}

@keyframes serviceMoreCascadeWobble {
  0%,
  100% {
    transform: translate3d(0, 6px, 0) rotate(0deg) scale(1);
    color: #f5fbff;
    border-color: rgba(45, 124, 212, 0.92);
    background: linear-gradient(135deg, rgba(63, 155, 255, 0.98), rgba(26, 102, 191, 0.98));
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.32),
      0 12px 24px -22px rgba(16, 79, 152, 0.78);
  }

  4% {
    transform: translate3d(-2px, 5px, 0) rotate(-1.6deg) scale(1.02);
    color: #fff9ef;
    border-color: rgba(232, 143, 33, 0.96);
    background: linear-gradient(135deg, rgba(243, 154, 49, 0.98), rgba(218, 118, 18, 0.98));
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.28),
      0 16px 28px -22px rgba(226, 129, 22, 0.72);
  }

  8% {
    transform: translate3d(2px, 4px, 0) rotate(1.8deg) scale(1.03);
    color: #fff9ef;
    border-color: rgba(232, 143, 33, 0.96);
    background: linear-gradient(135deg, rgba(243, 154, 49, 0.98), rgba(218, 118, 18, 0.98));
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.28),
      0 16px 28px -22px rgba(226, 129, 22, 0.72);
  }

  12% {
    transform: translate3d(-2px, 5px, 0) rotate(-1.5deg) scale(1.01);
    color: #fff9ef;
    border-color: rgba(232, 143, 33, 0.96);
    background: linear-gradient(135deg, rgba(243, 154, 49, 0.98), rgba(218, 118, 18, 0.98));
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.28),
      0 16px 28px -22px rgba(226, 129, 22, 0.72);
  }

  16% {
    transform: translate3d(-2px, 4px, 0) rotate(-1.4deg) scale(1.02);
    color: #fff9ef;
    border-color: rgba(232, 143, 33, 0.96);
    background: linear-gradient(135deg, rgba(243, 154, 49, 0.98), rgba(218, 118, 18, 0.98));
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.28),
      0 16px 28px -22px rgba(226, 129, 22, 0.72);
  }

  22% {
    transform: translate3d(0, 6px, 0) rotate(0deg) scale(1);
    color: #f5fbff;
    border-color: rgba(45, 124, 212, 0.92);
    background: linear-gradient(135deg, rgba(63, 155, 255, 0.98), rgba(26, 102, 191, 0.98));
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.32),
      0 12px 24px -22px rgba(16, 79, 152, 0.78);
  }
}

@media (max-width: 980px) {
  .client-authority-layout {
    grid-template-columns: 1fr;
  }

  .client-authority-proof-grid,
  .client-authority-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .clients-showcase {
    grid-template-columns: 1fr;
  }

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

  .about-grid,
  .career-grid {
    grid-template-columns: 1fr;
    gap: 1.1rem;
    align-items: start;
  }

  .about-panels,
  .agenda-calendar {
    padding: 0;
  }

  .agenda-layout {
    grid-template-columns: minmax(240px, 0.82fr) minmax(0, 1.7fr);
    gap: 1rem;
  }

  .agenda-copy h2 {
    max-width: 20ch;
    font-size: clamp(1.18rem, 1.8vw, 1.64rem);
  }

  .agenda-calendar-weekdays,
  .agenda-calendar-grid {
    gap: 0.38rem;
  }

  .agenda-day {
    min-height: 88px;
    padding: 0.5rem 0.42rem 0.48rem;
  }

  .career-path-card {
    grid-template-columns: 1fr;
  }

  .career-copy {
    position: relative;
    z-index: 2;
  }

  .career-paths {
    position: relative;
    z-index: 1;
    margin-top: 0.2rem;
  }

  .career-path-media {
    min-height: 180px;
  }

  .career-path-copy,
  .career-path-card:nth-child(even) .career-path-copy {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .career-modal-form-grid {
    grid-template-columns: 1fr;
  }

  .about-certs {
    grid-template-columns: 1fr;
  }

  .about-principles {
    grid-template-columns: 1fr;
  }

  .about-timeline-summary {
    grid-template-columns: 1fr auto;
    gap: 0.5rem;
    align-items: start;
  }

  .about-timeline-year {
    grid-column: 1 / -1;
    min-height: 0;
  }

  .about-timeline-panel p {
    padding-left: 1.12rem;
  }

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

  .segment-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .erps-showcase {
    grid-template-columns: 1fr;
  }

  .erps-copy {
    position: static;
    min-height: auto;
    grid-template-rows: auto;
  }

  .erps-copy h2 {
    max-width: 22ch;
  }

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

  .erps-benefits {
    grid-template-columns: 1fr;
    max-width: 46rem;
  }

  .erp-visual {
    display: none;
  }

  .legal-strip-credit {
    width: 100%;
    justify-content: flex-end;
    align-self: flex-end;
  }

  .legal-credit-button {
    opacity: 0.28;
  }
}

html[lang="fr"] .hero h1,
html[lang="de"] .hero h1,
html[lang="it"] .hero h1,
html[lang="es"] .hero h1,
html[lang="ar"] .hero h1 {
  max-width: min(20ch, 100%);
  font-size: clamp(1.84rem, 4.05vw, 3.18rem);
  line-height: 1.04;
}

html[lang="fr"] .lead,
html[lang="de"] .lead,
html[lang="it"] .lead,
html[lang="es"] .lead,
html[lang="ar"] .lead {
  max-width: 58ch;
  font-size: clamp(1rem, 1.68vw, 1.2rem);
  line-height: 1.4;
}

html[lang="fr"] .career-copy h2,
html[lang="de"] .career-copy h2,
html[lang="it"] .career-copy h2,
html[lang="es"] .career-copy h2,
html[lang="ar"] .career-copy h2 {
  max-width: 100%;
  font-size: clamp(1.46rem, 3vw, 2.58rem);
  line-height: 1.08;
}

html[lang="fr"] .career-grid,
html[lang="de"] .career-grid,
html[lang="it"] .career-grid,
html[lang="es"] .career-grid,
html[lang="ar"] .career-grid {
  grid-template-columns: minmax(0, 2.08fr) minmax(280px, 0.68fr);
}

html[lang="fr"] .career-copy > p,
html[lang="de"] .career-copy > p,
html[lang="it"] .career-copy > p,
html[lang="es"] .career-copy > p,
html[lang="ar"] .career-copy > p {
  font-size: clamp(0.92rem, 1.35vw, 1.08rem);
  line-height: 1.42;
}

html[lang="fr"] .career-accordion-summary strong,
html[lang="de"] .career-accordion-summary strong,
html[lang="it"] .career-accordion-summary strong,
html[lang="es"] .career-accordion-summary strong,
html[lang="ar"] .career-accordion-summary strong {
  font-size: clamp(0.86rem, 0.82rem + 0.12vw, 0.96rem);
  line-height: 1.14;
}

html[lang="fr"] .career-accordion-panel p,
html[lang="de"] .career-accordion-panel p,
html[lang="it"] .career-accordion-panel p,
html[lang="es"] .career-accordion-panel p,
html[lang="ar"] .career-accordion-panel p {
  font-size: 0.88rem;
  line-height: 1.46;
}

html[lang="fr"] .career-path-copy,
html[lang="de"] .career-path-copy,
html[lang="it"] .career-path-copy,
html[lang="es"] .career-path-copy,
html[lang="ar"] .career-path-copy {
  width: min(58%, 320px);
}

html[lang="fr"] .career-path-copy strong,
html[lang="de"] .career-path-copy strong,
html[lang="it"] .career-path-copy strong,
html[lang="es"] .career-path-copy strong,
html[lang="ar"] .career-path-copy strong {
  max-width: 100%;
  font-size: clamp(0.88rem, 0.84rem + 0.14vw, 0.98rem);
  line-height: 1.12;
}

html[lang="fr"] .career-path-copy p,
html[lang="de"] .career-path-copy p,
html[lang="it"] .career-path-copy p,
html[lang="es"] .career-path-copy p,
html[lang="ar"] .career-path-copy p {
  font-size: 0.8rem;
  line-height: 1.38;
}

html[lang="fr"] .career-path-btn,
html[lang="de"] .career-path-btn,
html[lang="it"] .career-path-btn,
html[lang="es"] .career-path-btn,
html[lang="ar"] .career-path-btn {
  font-size: 0.74rem;
  gap: 0.42rem;
  padding: 0.58rem 0.74rem;
}

@media (max-height: 820px) and (min-width: 981px) {
  html {
    font-size: 90%;
  }

  body {
    padding-bottom: 120px;
  }

  .hero,
  .section {
    justify-content: center;
  }

  .container,
  .hero-menu,
  .segments .container {
    width: min(var(--max), calc(100% - 2.1rem));
  }

  .hero-menu {
    min-height: 72px;
  }

  .hero-main {
    margin: clamp(9.1rem, 18vh, 10.6rem) auto 2.35rem;
    grid-template-columns: minmax(0, 1.12fr) minmax(220px, 244px);
    gap: 0.9rem;
    align-items: start;
  }

  .hero-content {
    padding-top: 0.52rem;
  }

  .hero-social {
    margin-top: 2rem;
    gap: 0.42rem;
    align-self: start;
  }

  .hero-social-title {
    margin-bottom: 0.18rem;
    font-size: 0.88rem;
  }

  .hero h1 {
    margin-top: 0.12rem;
    margin-bottom: 0.62rem;
    font-size: clamp(1.58rem, 2.9vw, 2.42rem);
    max-width: min(19ch, 100%);
  }

  .lead {
    margin-top: 0;
    font-size: clamp(0.86rem, 0.98vw, 0.96rem);
    line-height: 1.4;
    max-width: 58ch;
  }

  .hero-actions {
    margin-top: 0.88rem;
    gap: 0.48rem;
  }

  #hero-main-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.62rem;
    min-width: max-content;
    padding: 0.5rem 0.86rem;
    text-align: center;
    white-space: nowrap;
  }

  #hero-main-actions .btn span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
  }

  #hero-main-actions .btn-whatsapp {
    gap: 0.44rem;
    padding-inline: 0.94rem 1.02rem;
  }

  #hero-main-actions .btn-whatsapp svg {
    flex: 0 0 auto;
  }

  #hero-main-actions .btn-ghost {
    padding-inline: 0.92rem 1rem;
  }

  .social-card,
  .social-map-btn {
    padding: 0.46rem 0.54rem;
    border-radius: 12px;
    font-size: 0.8rem;
  }

  .section {
    min-height: auto;
    padding: clamp(2rem, 3.2vw, 2.8rem) 0;
    padding-top: calc(72px + clamp(1.25rem, 2vw, 1.7rem));
  }

  .client-authority .container,
  .clients .container,
  .erps .container,
  .agenda .container,
  .contact-section .container {
    min-height: calc(100svh - 72px - 3.1rem);
    display: grid;
    align-content: center;
  }

  .client-authority-layout,
  .erps-showcase,
  .agenda-layout,
  .contact-layout {
    align-items: center;
  }

  .clients .container {
    align-content: center;
  }

  .clients-head {
    margin-top: 0;
  }

  .clients-showcase,
  .areas-grid,
  .segment-service-grid,
  .agenda-layout {
    margin-top: 0.78rem;
  }

  .career.section {
    align-items: flex-start;
  }

  .section h2,
  .about-copy h2,
  .agenda-copy h2,
  .career-copy h2,
  .contact-copy h2 {
    font-size: clamp(1.2rem, 1.85vw, 1.72rem);
  }

  .kicker {
    font-size: 0.7rem;
  }

  .areas-grid,
  .segment-service-grid,
  .clients-grid,
  .client-authority-proof-grid,
  .client-authority-metrics,
  .erps-benefits,
  .about-certs,
  .about-principles,
  .career-paths,
  .career-accordion,
  .clients-accordion,
  .contact-accordion {
    gap: 0.58rem;
  }

  .panel,
  .segment-service-card,
  .erp-benefit-card,
  .client-authority-proof-card,
  .client-authority-metric,
  .about-cert-card,
  .about-timeline-item,
  .career-accordion-item,
  .contact-accordion-item,
  .contact-form-card,
  .client-brand-tile {
    border-radius: 14px;
  }

  .panel,
  .segment-service-card {
    padding: 0.72rem 0.76rem 0.78rem;
    min-height: 172px;
  }

  .client-authority-layout {
    gap: 0.78rem;
  }

.client-authority-copy h2,
.clients-head h2 {
  max-width: 24ch;
}

  .client-authority-copy h3 {
    max-width: 64ch;
    font-size: 0.96rem;
    line-height: 1.52;
  }

  .client-authority-proof-card {
    min-height: 102px;
    padding: 0.18rem 0;
  }

  .client-authority-proof-mark {
    width: 64px;
    height: 64px;
    flex-basis: 64px;
  }

  .client-authority-proof-mark img {
    max-width: 42px;
    max-height: 42px;
  }

  .client-authority-metric {
    min-height: 174px;
    padding: 0.78rem 0.78rem 0.72rem;
  }

  .client-authority-metric strong {
    font-size: 1.08rem;
    max-width: 8ch;
  }

  .client-authority-metric-number {
    font-size: clamp(1.95rem, 2.45vw, 2.35rem);
  }

  .client-authority-metric-suffix {
    font-size: 1.14rem;
  }

  .client-authority-metric p {
    font-size: 0.72rem;
    max-width: 21ch;
  }

  .clients-head p {
    font-size: 0.92rem;
  }

  .clients .container {
    display: grid;
    align-content: center;
  }

  .clients-head {
    margin-top: 0;
    gap: 0.22rem;
    max-width: 58rem;
  }

  .clients-head h2 {
    max-width: 28ch;
    font-size: clamp(1.12rem, 1.7vw, 1.52rem);
    line-height: 1.08;
  }

  .clients-head p {
    max-width: 78ch;
    font-size: 0.88rem;
    line-height: 1.46;
  }

  .clients-showcase {
    margin-top: 0.78rem;
  }

  .clients-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.52rem;
  }

  .client-brand-tile {
    min-height: 98px;
    border-radius: 12px;
    padding: 0.34rem 0.32rem;
    gap: 0.16rem;
  }

  .client-brand-tile img {
    max-height: 68px;
  }

  .client-brand-info strong {
    font-size: 0.68rem;
    line-height: 1.12;
  }

  .service-card,
  .segment-service-card {
    min-height: 172px;
  }

  .erp-benefit-card {
    min-height: 172px;
    padding: 0.68rem 0.74rem 0.72rem;
  }

  .service-icon {
    font-size: 1.46rem;
    margin-bottom: 0.42rem;
  }

  .areas-grid .service-card h3,
  .segment-service-card h3,
  .erp-benefit-copy strong {
    font-size: 1.02rem;
    line-height: 1.12;
  }

  .areas h2 {
    max-width: 36ch;
  }

  .segments h2 {
    max-width: 36ch;
  }

  .areas-grid {
    width: min(100%, 1020px);
    margin-inline: auto;
    grid-template-columns: repeat(3, minmax(0, 0.94fr));
  }

  .segment-service-grid {
    width: min(100%, 1020px);
    margin-inline: auto;
    grid-template-columns: repeat(3, minmax(0, 0.94fr));
  }

  .panel h3,
  .segment-service-card h3,
  .erp-benefit-copy strong {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }

  .panel p,
  .segment-service-card p,
  .erp-benefit-copy p,
  .about-copy p,
  .career-copy > p,
  .contact-lead,
  .agenda-subtitle,
  .contact-company {
    font-size: 0.88rem;
    line-height: 1.42;
  }

  .panel p,
  .segment-service-card p,
  .erp-benefit-copy p {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }

  .service-more,
  .career-path-btn,
  .career-accordion-share,
  .btn {
    font-size: 0.76rem;
    padding: 0.5rem 0.68rem;
  }

  .clients-showcase,
  .agenda-layout,
  .contact-layout,
  .about-grid,
  .career-grid {
    gap: 0.86rem;
  }

  .clients-copy-panel h2 {
    font-size: 1.22rem;
  }

  .clients-copy-panel p {
    font-size: 0.86rem;
  }

  .clients-accordion-summary {
    min-height: 70px;
    padding: 0.72rem 0.8rem 0.68rem;
  }

  .clients-accordion-labels strong {
    font-size: 0.9rem;
  }

  .clients-accordion-panel > p {
    font-size: 0.84rem;
    line-height: 1.46;
    padding-left: 0.8rem;
    padding-right: 0.8rem;
  }

  .client-brand-tile {
    min-height: 104px;
    padding: 0.48rem;
    gap: 0.32rem;
  }

  .client-brand-tile img {
    max-height: 56px;
    max-width: 86%;
  }

  .client-brand-info strong {
    font-size: 0.72rem;
  }

  .erp-benefit-icon {
    width: 1.9rem;
    height: 1.9rem;
    margin-bottom: 0.38rem;
  }

  .erp-benefit-icon svg {
    width: 1.38rem;
    height: 1.38rem;
  }

  .erps-copy {
    position: static;
    min-height: auto;
    gap: 0.48rem;
  }

  .erps-benefits {
    margin-top: 0.64rem;
  }

  .erp-visual {
    height: min(440px, 60vh);
    width: min(100%, 220px);
  }

  .erp-chip-media {
    width: 104px;
    height: 104px;
  }

  .erp-chip img {
    max-width: 84px;
    max-height: 84px;
  }

  .about-principle-btn {
    min-height: 40px;
    padding: 0.52rem 0.68rem;
  }

  .about-principle-label {
    font-size: 0.68rem;
  }

  .about-cert-card {
    padding: 0.72rem 0.76rem 0.8rem;
  }

  .about-cert-mark img {
    height: 2.3rem;
  }

  .about-cert-copy strong,
  .about-panel strong,
  .agenda-card strong,
  .career-panel strong {
    font-size: 0.92rem;
  }

  .about-timeline-item.panel {
    padding: 0;
    min-height: 0;
    border-radius: 12px;
  }

  .about-timeline-item.panel::after {
    display: none;
  }

  .about-timeline-item.panel::before {
    left: -1.08rem;
    top: 0.96rem;
    width: 0.64rem;
    height: 0.64rem;
    box-shadow: 0 0 0 4px rgba(95, 209, 255, 0.12);
  }

  .about-timeline {
    gap: 0.4rem;
    padding-left: 1rem;
  }

  .about-timeline-summary {
    grid-template-columns: minmax(72px, 92px) minmax(0, 1fr) auto;
    min-height: 50px;
    padding: 0.42rem 0.54rem 0.44rem 0.58rem;
    gap: 0.34rem;
  }

  .about-timeline-year {
    min-height: 1.7rem;
    font-size: 1rem;
    letter-spacing: 0.1em;
  }

  .about-timeline-copy strong {
    font-size: 0.92rem;
    line-height: 1.16;
  }

  .about-timeline-panel p {
    font-size: 0.86rem;
    line-height: 1.48;
    padding: 0 0.54rem 0 5.9rem;
  }

  .about-timeline-toggle {
    width: 28px;
    height: 28px;
  }

  .about-timeline-toggle::before,
  .about-timeline-toggle::after {
    width: 10px;
  }

  .about-timeline-item[open] .about-timeline-panel p {
    padding-bottom: 0.56rem;
  }

  .about-grid {
    grid-template-columns: minmax(0, 0.76fr) minmax(360px, 1.08fr);
    gap: 0.74rem;
  }

  .about-panels,
  .about-panel,
  .agenda-card,
  .career-panel {
    min-height: 162px;
    gap: 0.42rem;
  }

  .agenda-calendar {
    gap: 0.42rem;
  }

  .agenda-calendar-weekdays,
  .agenda-calendar-grid {
    gap: 0.24rem;
  }

  .agenda-calendar-weekdays span {
    font-size: 0.56rem;
    padding: 0.3rem 0.16rem;
  }

  .agenda-day {
    min-height: 70px;
    padding: 0.34rem 0.28rem 0.3rem;
    border-radius: 10px;
    gap: 0.22rem;
  }

  .agenda-day-number {
    font-size: 0.76rem;
  }

  .agenda-day-item {
    font-size: 0.56rem;
    padding: 0.18rem 0.22rem;
  }

  .agenda-day-note {
    font-size: 0.52rem;
  }

  .career-accordion-summary {
    min-height: 50px;
    padding: 0.54rem 0.68rem;
  }

  .career-accordion-summary strong {
    font-size: 0.8rem;
  }

  .career-accordion-panel p {
    font-size: 0.84rem;
    line-height: 1.46;
    padding: 0 0.68rem 0.54rem;
  }

  .career-path-card,
  .career-path-copy {
    min-height: 154px;
  }

  .career-path-copy {
    width: min(62%, 272px);
    padding: 0.72rem 0.78rem 0.74rem;
  }

  .career-path-copy strong {
    font-size: 0.96rem;
    max-width: 16ch;
  }

  .career-path-copy p {
    font-size: 0.84rem;
    line-height: 1.42;
  }

  .career-accordion-item.panel {
    padding: 0;
    min-height: 0;
    border-radius: 12px;
  }

  .career-accordion-item.panel::after {
    display: none;
  }

  .clients-accordion-item,
  .career-accordion-item,
  .contact-accordion-item {
    border-radius: 14px;
  }

  .clients-accordion-summary,
  .career-accordion-summary,
  .contact-accordion-summary {
    min-height: 46px;
    gap: 0.58rem;
  }

  .career-accordion {
    gap: 0.46rem;
    margin-top: 0.56rem;
  }

  .clients-accordion-toggle,
  .career-accordion-toggle,
  .contact-accordion-toggle {
    width: 28px;
    height: 28px;
  }

  .clients-accordion-toggle::before,
  .clients-accordion-toggle::after,
  .career-accordion-toggle::before,
  .career-accordion-toggle::after,
  .contact-accordion-toggle::before,
  .contact-accordion-toggle::after {
    width: 10px;
  }

  .clients-accordion-panel > p,
  .career-accordion-panel p,
  .contact-accordion-panel p {
    font-size: 0.82rem;
    line-height: 1.42;
  }

  .career-accordion-summary {
    padding: 0.52rem 0.72rem;
  }

  .career-accordion-summary strong {
    font-size: 0.96rem;
    line-height: 1.14;
    max-width: 100%;
  }

  .career-accordion-panel p {
    font-size: 0.86rem;
    line-height: 1.5;
    padding: 0 0.72rem 0.56rem;
  }

  .career-accordion-share {
    margin: 0 0 0.62rem 0.72rem;
    padding: 0.48rem 0.72rem;
    font-size: 0.78rem;
  }

  .career-grid {
    grid-template-columns: minmax(0, 1.72fr) minmax(320px, 0.92fr);
    align-items: start;
    gap: 0.78rem;
  }

  .career-copy p {
    max-width: 68ch;
  }

  .career-paths {
    gap: 0.72rem;
    align-self: start;
  }

  .career-path-btn {
    padding: 0.52rem 0.74rem;
    font-size: 0.76rem;
  }

  .contact-accordion-summary {
    padding: 0.46rem 0.58rem;
  }

  .contact-accordion-panel p {
    padding: 0.16rem 0.58rem 0.46rem;
    font-weight: 700;
  }

  .contact-layout {
    grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
    gap: 0.68rem;
  }

  .contact-copy h2 {
    max-width: min(24ch, 100%);
    font-size: clamp(1.34rem, 2.1vw, 1.86rem);
    line-height: 1.08;
  }

  .contact-copy {
    gap: 0.62rem;
  }

  .contact-form-card {
    padding: 0.24rem 0;
    gap: 0.56rem;
    min-width: 0;
  }

  .contact-form-card h3 {
    font-size: 1.14rem;
    line-height: 1.18;
  }

  .contact-form,
  .career-modal-form {
    gap: 0.68rem;
  }

  .contact-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-submit-row {
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 0.62rem;
  }

  .career-modal-form-grid {
    gap: 0.64rem;
  }

  .contact-field-full,
  .career-field-full {
    grid-column: 1 / -1;
    min-width: 0;
  }

  .contact-field,
  .career-field {
    gap: 0.32rem;
    min-width: 0;
  }

  .contact-field input,
  .contact-field textarea {
    min-width: 0;
  }

  .contact-submit-btn {
    padding-inline: 0.72rem;
  }

  .contact-field span,
  .career-field span,
  .career-altcha-label {
    font-size: 0.8rem;
  }

  .contact-field input,
  .contact-field textarea,
  .career-field input,
  .career-field select {
    padding: 0.74rem 0.82rem;
    border-radius: 12px;
    font-size: 0.9rem;
  }

  .contact-field input,
  .career-field input,
  .career-field select {
    min-height: 2.8rem;
  }

  .contact-field textarea {
    min-height: 6.4rem;
    max-width: 100%;
  }

  .career-file-ui {
    min-height: 3.05rem;
    padding: 0.42rem 0.56rem;
    border-radius: 12px;
    gap: 0.56rem;
  }

  .career-file-button,
  .career-file-name,
  .career-field small,
  .contact-form-feedback,
  .career-form-feedback {
    font-size: 0.78rem;
  }

  #career-altcha {
    min-height: 68px;
    padding: 0.26rem;
  }

  #contact-altcha {
    display: block;
    width: 100%;
    min-width: 0;
  }

  .segments .container {
    min-height: calc(100svh - 72px - 1.8rem);
    padding-bottom: 1rem;
  }

  .segment-stage {
    min-height: clamp(280px, 48vh, 380px);
  }

  .segment-stage-content {
    padding: clamp(0.9rem, 1.8vw, 1.4rem);
  }

  .areas-grid,
  .segment-service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  /* Final typography pass for low-height desktop heroes/section intros */
  .section h2,
  .about-copy h2,
  .agenda-copy h2,
  .career-copy h2,
  .contact-copy h2,
  .clients-head h2,
  .contact-copy h2 {
    font-size: clamp(1.28rem, 2vw, 1.84rem);
    line-height: 1.1;
  }

  .client-authority-copy h3,
  .clients-head p,
  .about-copy p,
  .career-copy > p,
  .contact-lead,
  .agenda-subtitle {
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .clients-head {
    gap: 0.28rem;
    max-width: 62rem;
  }

  .client-authority-copy h3,
  .career-copy > p,
  .agenda-subtitle {
    max-width: 66ch;
  }

  .clients-head p,
  .about-copy p,
  .contact-lead {
    max-width: 70ch;
  }

  .contact-form-card h3 {
    font-size: 1.2rem;
    line-height: 1.22;
  }

  .hero-social-title {
    font-size: 0.92rem;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 168px;
    overflow-x: clip;
  }

  .section {
    padding-top: calc(76px + clamp(2.6rem, 8vw, 3.35rem));
  }

  .menu-toggle {
    display: inline-block;
  }

  .hero-menu {
    width: min(var(--max), calc(100% - 1rem));
    min-height: 76px;
    gap: 0.55rem;
  }

  .brand {
    min-width: 0;
    gap: 0.34rem;
  }

  .brand-name {
    font-size: 0;
    letter-spacing: 0;
    min-width: 0;
  }

  .brand-name::after {
    content: "EMECINCO";
    font-family: "Sora", sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    font-weight: 800;
  }

  .menu-links {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: 72px;
    background: rgba(5, 12, 20, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    padding: 0.5rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .lang-switcher {
    margin-left: auto;
    position: static;
  }

  .lang-menu {
    position: fixed;
    left: auto;
    right: 0.75rem;
    top: 4.45rem;
    width: min(82vw, 216px);
    min-width: 0;
    max-width: calc(100vw - 1.5rem);
  }

  .menu-item,
  .has-submenu {
    width: 100%;
    display: grid;
  }

  .submenu {
    position: static;
    min-width: 0;
    margin-top: 0.18rem;
    padding: 0.24rem 0 0 0.72rem;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .submenu a {
    padding: 0.42rem 0.62rem;
  }

  .erp-benefit-card {
    grid-template-columns: auto 1fr;
  }

  .hero-menu {
    background: transparent;
  }

  .menu-links.open {
    display: flex;
  }

  .hero-main {
    margin-top: clamp(7.7rem, 18vh, 10.4rem);
    margin-bottom: 2rem;
    grid-template-columns: 1fr;
  }

  .hero-social {
    margin-top: 0.4rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-social-title,
  .social-map-btn {
    grid-column: 1 / -1;
  }

  .hero h1 {
    max-width: 100%;
  }

  .client-authority-proof-grid,
  .clients-grid {
    grid-template-columns: 1fr;
  }

  .client-authority-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.32rem;
    border-radius: 18px;
  }

  .client-authority-metric,
  .client-authority-proof-card {
    min-height: 0;
  }

  .client-authority-proof-mark {
    width: 60px;
    height: 60px;
    flex-basis: 60px;
  }

  .client-authority-metric {
    min-height: 164px;
    padding: 0.72rem 0.7rem 0.68rem;
    border-right: 0;
    border-bottom: 0;
  }

  .client-authority-metric strong {
    max-width: 7.4ch;
  }

  .client-authority-metric-number {
    font-size: clamp(1.7rem, 6vw, 2.15rem);
  }

  .client-authority-metric-suffix {
    font-size: 0.98rem;
    line-height: 1.05;
  }

  .client-authority-metric-kicker {
    font-size: 0.58rem;
    letter-spacing: 0.1em;
  }

  .client-authority-proof-grid {
    grid-template-columns: 1fr;
  }

  .areas-grid,
  .segment-carousel,
  .segment-service-grid {
    grid-template-columns: 1fr;
  }

  .erp-column {
    animation: none;
    min-height: 100%;
  }

  .erp-column:last-child .erp-track:last-child,
  .erp-column:first-child .erp-track:last-child {
    display: none;
  }

  .erp-chip {
    min-height: 0;
    padding: 0.04rem 0;
  }

  .erp-chip-media {
    width: 82px;
    height: 82px;
  }

  .erp-chip img {
    max-width: 68px;
    max-height: 68px;
  }

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

  .erps-logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.46rem;
  }

  .clients-copy-panel {
    position: static;
    height: auto;
  }

  .clients-accordion-summary {
    min-height: 74px;
    padding: 0.78rem 0.82rem;
  }

  .clients-accordion-labels strong {
    font-size: 0.92rem;
  }

  .clients-accordion-panel > p {
    padding-left: 0.82rem;
    padding-right: 0.82rem;
  }

  .client-brand-tile {
    min-height: 116px;
    border-radius: 14px;
    padding: 0.48rem;
  }

  .client-brand-tile img {
    max-height: 74px;
  }

  .client-brand-info strong {
    font-size: 0.76rem;
  }

  .client-brand-info span {
    font-size: 0.7rem;
  }

  .client-brand-popover {
    display: none;
  }

  .agenda-layout {
    grid-template-columns: 1fr;
    gap: 0.72rem;
  }

  .agenda-copy h2 {
    max-width: 100%;
    font-size: clamp(1.1rem, 4.5vw, 1.48rem);
    line-height: 1.12;
  }

  .agenda-calendar {
    padding: 0;
    gap: 0.56rem;
  }

  .agenda-calendar-weekdays {
    gap: 0.22rem;
  }

  .agenda-calendar-weekdays span {
    padding: 0.42rem 0.2rem;
    font-size: 0.62rem;
    border-radius: 10px;
  }

  .agenda-calendar-grid {
    gap: 0.22rem;
  }

  .agenda-day {
    min-height: 84px;
    padding: 0.44rem 0.3rem 0.38rem;
    border-radius: 12px;
    gap: 0.3rem;
  }

  .agenda-day-number {
    font-size: 0.88rem;
  }

  .agenda-day-items {
    gap: 0.2rem;
  }

  .agenda-day-item {
    padding: 0.22rem 0.28rem;
    font-size: 0.6rem;
    line-height: 1.28;
  }

  .agenda-day-note {
    font-size: 0.58rem;
  }

  .legal-strip {
    left: 10px;
    right: 10px;
    bottom: 10px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.45rem;
    padding: 0.46rem 0.62rem;
    border-radius: 18px;
  }

  .legal-strip-copy {
    gap: 0.28rem 0.64rem;
    font-size: 0.56rem;
    flex-wrap: nowrap;
  }

  .legal-strip-copy > :not(:first-child) {
    display: none;
  }

  .legal-strip-credit {
    width: auto;
    justify-content: flex-end;
    align-self: center;
  }

  .legal-credit-button {
    opacity: 0.34;
  }

  .legal-credit-tooltip {
    right: auto;
    left: 0;
    width: min(260px, calc(100vw - 2rem));
    grid-template-columns: auto 1fr;
  }

  .legal-info-modal-panel {
    width: min(420px, calc(100vw - 1rem));
    padding: 1rem;
  }

  .legal-info-credit {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 0.52rem;
    align-items: end;
    padding: 0.42rem 0.48rem 0 0.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  .legal-info-credit-logo {
    justify-self: start;
  }

  .legal-info-credit-logo img {
    height: 1rem;
  }

  #legal-info-credit-text {
    font-size: 0.58rem;
    line-height: 1.34;
  }

  .cookie-banner {
    left: 50%;
    bottom: 76px;
    width: min(calc(100vw - 1rem), var(--max));
    transform: translateX(-50%);
    flex-direction: column;
    align-items: flex-start;
    padding: 0.72rem 0.76rem;
    border-radius: 16px;
  }

  .cookie-banner-copy {
    max-width: none;
  }

  .cookie-banner-copy strong {
    font-size: 0.84rem;
  }

  .cookie-banner-copy p {
    font-size: 0.72rem;
  }

  .cookie-banner-actions {
    width: 100%;
    justify-content: space-between;
  }

  .cookie-accept {
    padding: 0.66rem 0.92rem;
    font-size: 0.72rem;
  }

  .privacy-modal-panel,
  .ethics-modal-panel {
    width: min(100vw - 1rem, 620px);
    padding: 1rem 0.92rem 0.94rem;
    border-radius: 16px;
  }

  .privacy-modal-body p,
  .ethics-modal-body p {
    font-size: 0.86rem;
  }

  .cookie-modal-panel {
    width: min(100vw - 1rem, 660px);
    padding: 1rem 0.92rem 0.94rem;
    border-radius: 16px;
  }

  .cookie-pref-item,
  .cookie-modal-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-modal-actions {
    gap: 0.7rem;
  }
}

@media (max-width: 760px) {
  .offer-modal,
  .privacy-modal,
  .ethics-modal,
  .about-principle-modal,
  .career-modal,
  .agenda-modal,
  .cookie-modal {
    place-items: start center;
    padding: 0.75rem;
  }

  .offer-modal-panel,
  .privacy-modal-panel,
  .ethics-modal-panel,
  .about-principle-modal-panel,
  .career-modal-panel,
  .agenda-modal-panel,
  .cookie-modal-panel {
    width: min(100vw - 1.5rem, 760px);
    max-height: calc(100dvh - 1.5rem);
    margin-top: 0;
  }

  html[lang="fr"] .career-grid,
  html[lang="de"] .career-grid,
  html[lang="it"] .career-grid,
  html[lang="es"] .career-grid,
  html[lang="ar"] .career-grid {
    grid-template-columns: 1fr;
  }

  html[lang="fr"] .hero h1,
  html[lang="de"] .hero h1,
  html[lang="it"] .hero h1,
  html[lang="es"] .hero h1,
  html[lang="ar"] .hero h1 {
    font-size: clamp(1.72rem, 7vw, 2.28rem);
    line-height: 1.04;
  }

  html[lang="fr"] .lead,
  html[lang="de"] .lead,
  html[lang="it"] .lead,
  html[lang="es"] .lead,
  html[lang="ar"] .lead {
    font-size: clamp(0.96rem, 3.35vw, 1.08rem);
    line-height: 1.4;
    max-width: 100%;
  }

  html[lang="fr"] .career-copy h2,
  html[lang="de"] .career-copy h2,
  html[lang="it"] .career-copy h2,
  html[lang="es"] .career-copy h2,
  html[lang="ar"] .career-copy h2 {
    max-width: 100%;
    font-size: clamp(1.44rem, 5.8vw, 2.04rem);
    line-height: 1.08;
  }

  html[lang="fr"] .career-copy > p,
  html[lang="de"] .career-copy > p,
  html[lang="it"] .career-copy > p,
  html[lang="es"] .career-copy > p,
  html[lang="ar"] .career-copy > p,
  html[lang="fr"] .career-accordion-panel p,
  html[lang="de"] .career-accordion-panel p,
  html[lang="it"] .career-accordion-panel p,
  html[lang="es"] .career-accordion-panel p,
  html[lang="ar"] .career-accordion-panel p {
    font-size: 0.88rem;
    line-height: 1.46;
  }

  html[lang="fr"] .career-accordion-summary strong,
  html[lang="de"] .career-accordion-summary strong,
  html[lang="it"] .career-accordion-summary strong,
  html[lang="es"] .career-accordion-summary strong,
  html[lang="ar"] .career-accordion-summary strong {
    font-size: 0.88rem;
    line-height: 1.16;
  }

  html[lang="fr"] .career-path-copy,
  html[lang="de"] .career-path-copy,
  html[lang="it"] .career-path-copy,
  html[lang="es"] .career-path-copy,
  html[lang="ar"] .career-path-copy {
    padding: 1.02rem 0.92rem 0.94rem;
  }

  html[lang="fr"] .career-path-copy strong,
  html[lang="de"] .career-path-copy strong,
  html[lang="it"] .career-path-copy strong,
  html[lang="es"] .career-path-copy strong,
  html[lang="ar"] .career-path-copy strong {
    max-width: 100%;
    font-size: 0.92rem;
    line-height: 1.12;
  }

  html[lang="fr"] .career-path-copy p,
  html[lang="de"] .career-path-copy p,
  html[lang="it"] .career-path-copy p,
  html[lang="es"] .career-path-copy p,
  html[lang="ar"] .career-path-copy p {
    font-size: 0.8rem;
    line-height: 1.38;
  }

  html[lang="fr"] .career-path-btn,
  html[lang="de"] .career-path-btn,
  html[lang="it"] .career-path-btn,
  html[lang="es"] .career-path-btn,
  html[lang="ar"] .career-path-btn {
    font-size: 0.74rem;
    gap: 0.42rem;
    padding: 0.6rem 0.76rem;
  }
}

@media (max-width: 420px) {
  html[lang="fr"] .hero h1,
  html[lang="de"] .hero h1,
  html[lang="it"] .hero h1,
  html[lang="es"] .hero h1,
  html[lang="ar"] .hero h1 {
    font-size: clamp(1.56rem, 6.5vw, 1.94rem);
  }

  html[lang="fr"] .lead,
  html[lang="de"] .lead,
  html[lang="it"] .lead,
  html[lang="es"] .lead,
  html[lang="ar"] .lead {
    font-size: 0.92rem;
  }

  html[lang="fr"] .career-copy h2,
  html[lang="de"] .career-copy h2,
  html[lang="it"] .career-copy h2,
  html[lang="es"] .career-copy h2,
  html[lang="ar"] .career-copy h2 {
    font-size: clamp(1.3rem, 5.4vw, 1.72rem);
  }

  html[lang="fr"] .career-accordion-summary strong,
  html[lang="de"] .career-accordion-summary strong,
  html[lang="it"] .career-accordion-summary strong,
  html[lang="es"] .career-accordion-summary strong,
  html[lang="ar"] .career-accordion-summary strong {
    font-size: 0.82rem;
  }

  html[lang="fr"] .career-path-copy strong,
  html[lang="de"] .career-path-copy strong,
  html[lang="it"] .career-path-copy strong,
  html[lang="es"] .career-path-copy strong,
  html[lang="ar"] .career-path-copy strong {
    font-size: 0.86rem;
  }

  html[lang="fr"] .career-path-copy p,
  html[lang="de"] .career-path-copy p,
  html[lang="it"] .career-path-copy p,
  html[lang="es"] .career-path-copy p,
  html[lang="ar"] .career-path-copy p,
  html[lang="fr"] .career-accordion-panel p,
  html[lang="de"] .career-accordion-panel p,
  html[lang="it"] .career-accordion-panel p,
  html[lang="es"] .career-accordion-panel p,
  html[lang="ar"] .career-accordion-panel p {
    font-size: 0.8rem;
  }

  html[lang="fr"] .career-path-btn,
  html[lang="de"] .career-path-btn,
  html[lang="it"] .career-path-btn,
  html[lang="es"] .career-path-btn,
  html[lang="ar"] .career-path-btn {
    font-size: 0.7rem;
    padding: 0.56rem 0.68rem;
  }
}

@keyframes heroArrowBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

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

.hero-arrow {
  animation-name: heroArrowMainBounce;
}

@keyframes heroArrowMainBounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(6px);
  }
}

@keyframes typingBlink {
  0%,
  49% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
  }
}
