:root {
  --navy-950: #070b2d;
  --navy-900: #0b103c;
  --navy-700: #25315d;
  --slate-500: #68718b;
  --surface: #ffffff;
  --surface-soft: #fbfaf8;
  --orange: #ff9e1b;
  --coral: #ff586c;
  --magenta: #b000c8;
  --gradient: linear-gradient(102deg, var(--orange) 0%, var(--coral) 48%, var(--magenta) 100%);
  --container: 1540px;
  --header-height: 104px;
  --shadow-header: 0 16px 45px rgba(7, 11, 45, 0.08);
}

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

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  background: var(--surface);
  color: var(--navy-950);
  font-family: Inter, "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

img {
  display: block;
  max-width: 100%;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(calc(100% - 80px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 18px;
  border-radius: 8px;
  background: var(--navy-950);
  color: #fff;
  font-weight: 700;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.94);
  transition: height 220ms ease, background-color 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  height: 82px;
  border-color: rgba(7, 11, 45, 0.07);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-header);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  width: 250px;
  height: 100%;
}

.brand__full {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: auto;
  opacity: 1;
  transform: translateY(-50%) scale(1);
  transform-origin: left center;
  transition: opacity 160ms ease, transform 220ms ease;
}

.brand__compact {
  position: absolute;
  top: 50%;
  left: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%) translateX(-6px) scale(0.97);
  transform-origin: left center;
  transition: opacity 160ms ease, transform 220ms ease;
}

.brand__mark {
  flex: 0 0 auto;
  width: 64px;
  height: auto;
}

.brand__wordmark {
  flex: 0 0 auto;
  width: 150px;
  height: auto;
}

.site-header.is-scrolled .brand__full {
  opacity: 0;
  transform: translateY(-50%) translateX(6px) scale(0.94);
}

.site-header.is-scrolled .brand__compact {
  opacity: 1;
  transform: translateY(-50%) translateX(0) scale(1);
}

.primary-navigation {
  display: flex;
  align-items: center;
  gap: clamp(28px, 3.3vw, 62px);
}

.primary-navigation ul {
  display: flex;
  align-items: center;
  gap: clamp(24px, 2.2vw, 42px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-navigation li a {
  position: relative;
  display: inline-flex;
  padding: 12px 0;
  color: var(--navy-950);
  font-size: 0.94rem;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.primary-navigation li a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--gradient);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.primary-navigation li a:hover::after,
.primary-navigation li a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-size: 0.95rem;
  font-weight: 750;
  letter-spacing: -0.015em;
  line-height: 1.2;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

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

.button:focus-visible,
.menu-toggle:focus-visible,
.primary-navigation a:focus-visible,
.hero__scroll:focus-visible {
  outline: 3px solid rgba(176, 0, 200, 0.26);
  outline-offset: 4px;
}

.button--header,
.button--primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 12px 28px rgba(176, 0, 200, 0.15);
}

.button--header {
  min-height: 52px;
  padding-inline: 26px;
}

.button--header:hover,
.button--primary:hover {
  box-shadow: 0 16px 34px rgba(176, 0, 200, 0.25);
}

.button--secondary {
  border-color: var(--navy-700);
  background: rgba(255, 255, 255, 0.76);
  color: var(--navy-950);
}

.button--secondary:hover {
  border-color: var(--magenta);
  background: #fff;
  box-shadow: 0 12px 30px rgba(7, 11, 45, 0.09);
}

.button--secondary svg {
  width: 19px;
  margin-left: 10px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: visible;
  background: radial-gradient(circle at 88% 75%, rgba(176, 0, 200, 0.08), transparent 27%), linear-gradient(180deg, #fff 0%, #fff 78%, var(--surface-soft) 100%);
}

.hero__ambient {
  position: absolute;
  z-index: 0;
  top: 14%;
  right: -10%;
  width: 52vw;
  height: 52vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(23, 205, 228, 0.06), transparent 68%);
  pointer-events: none;
}

.hero__layout {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  align-items: center;
  gap: clamp(30px, 3vw, 72px);
  min-height: 100svh;
  padding-block: calc(var(--header-height) + clamp(44px, 6.5vh, 78px)) 104px;
}

.hero__content {
  position: relative;
  z-index: 5;
  isolation: isolate;
  align-self: center;
  max-width: 720px;
}

.hero__content::before {
  position: absolute;
  z-index: -1;
  inset: -90px -110px -90px -50vw;
  background: linear-gradient(90deg, #fff 0%, #fff 78%, rgba(255, 255, 255, 0.93) 89%, transparent 100%);
  content: "";
  pointer-events: none;
}

.hero__eyebrow {
  margin: 0 0 25px;
  color: var(--slate-500);
  font-size: clamp(0.71rem, 0.72vw, 0.82rem);
  font-weight: 800;
  letter-spacing: 0.095em;
  line-height: 1.45;
  text-transform: uppercase;
}

.hero__title {
  max-width: 790px;
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(3.1rem, 4vw, 4.8rem);
  font-weight: 780;
  letter-spacing: -0.058em;
  line-height: 1.04;
  text-wrap: balance;
}

.hero__description {
  max-width: 670px;
  margin: 30px 0 0;
  color: var(--navy-700);
  font-size: clamp(1.05rem, 1.25vw, 1.31rem);
  line-height: 1.58;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 40px;
}

.hero__visual {
  position: relative;
  z-index: 2;
  align-self: center;
  width: min(54vw, 880px);
  margin-right: min(-8vw, -70px);
  transform: translate3d(var(--pointer-x, 0), var(--pointer-y, 0), 0) translateY(10px);
  transition: transform 200ms ease-out;
}

.hero-services {
  position: relative;
  width: 100%;
  outline: none;
  animation: visual-enter 850ms 120ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-services__stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1.3 / 1;
}

.hero-service {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(22px, 6px, 0) scale(0.985);
  transition: opacity 360ms ease, transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-service.is-active {
  z-index: 2;
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
}

.hero-service__art {
  position: absolute;
  z-index: 1;
  top: -7%;
  right: 11%;
  width: 76%;
  height: 84%;
  filter: drop-shadow(0 26px 24px rgba(7, 11, 45, 0.15));
}

.hero-service--seo .hero-service__art {
  top: -5%;
  right: 10%;
  width: 75%;
  height: 82%;
}

.hero-service--communication .hero-service__art {
  top: -7%;
  right: 10%;
  width: 76%;
  height: 84%;
}

.hero-service__art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top right;
  transform: translate3d(10px, 8px, 0) scale(0.96) rotate(0.8deg);
  transform-origin: 60% 55%;
  transition: transform 5.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-service.is-active .hero-service__art img {
  transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
}

.hero-service__copy {
  position: absolute;
  z-index: 3;
  right: 10%;
  bottom: 14%;
  width: max-content;
  max-width: 52%;
  text-align: right;
  text-shadow: 0 2px 20px rgba(255, 255, 255, 0.98);
}

.hero-service__copy span {
  display: block;
  color: #c3208e;
  font-size: clamp(0.56rem, 0.58vw, 0.66rem);
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-service__copy p {
  max-width: none;
  margin: 5px 0 0;
  color: var(--navy-950);
  font-size: clamp(0.98rem, 1.08vw, 1.28rem);
  font-weight: 850;
  letter-spacing: -0.035em;
  line-height: 1.05;
  white-space: nowrap;
}

.hero-service__copy a {
  display: inline-flex;
  align-items: center;
  margin-top: 9px;
  border-bottom: 1px solid rgba(7, 11, 45, 0.25);
  color: var(--navy-700);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-transform: uppercase;
  transition: border-color 180ms ease, color 180ms ease;
}

.hero-service__copy a:hover,
.hero-service__copy a:focus-visible {
  border-color: #c3208e;
  color: #c3208e;
}

.hero-services__navigation {
  position: absolute;
  z-index: 5;
  right: 10%;
  bottom: 8%;
  display: flex;
  align-items: center;
  gap: 5px;
}

.hero-services__navigation button {
  position: relative;
  display: grid;
  place-items: center;
  width: 28px;
  height: 22px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.hero-services__navigation button::after {
  position: absolute;
  right: 3px;
  top: 50%;
  left: 3px;
  height: 2px;
  border-radius: 99px;
  background: rgba(7, 11, 45, 0.16);
  content: "";
  transform: translateY(-50%);
}

.hero-services__navigation button.is-active::after {
  background: var(--gradient);
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-services__navigation button:focus-visible {
  outline: 3px solid rgba(176, 0, 200, 0.25);
  outline-offset: 2px;
}

.hero__visual-glow {
  position: absolute;
  right: 2%;
  bottom: 1%;
  width: 83%;
  height: 24%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(176, 0, 200, 0.23), transparent 68%);
  filter: blur(24px);
  transform: rotate(-4deg);
}

.hero__scroll {
  position: absolute;
  z-index: 5;
  bottom: 24px;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  color: var(--slate-500);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  opacity: var(--scroll-hint-opacity, 1);
  transform: translateX(-50%);
  transition: opacity 60ms linear;
}

.hero__motion-stage {
  position: absolute;
  z-index: 1;
  inset: 0;
  height: 100%;
  overflow: visible;
  pointer-events: none;
  will-change: opacity;
}

.hero__symbol {
  position: absolute;
  top: calc(var(--header-height) + clamp(38px, 5.5vh, 64px));
  right: clamp(300px, 21vw, 430px);
  width: clamp(430px, 31vw, 620px);
  aspect-ratio: 925 / 904;
  filter: drop-shadow(0 16px 28px rgba(176, 0, 200, 0.05));
}

.hero__symbol-outline {
  display: block;
  width: 100%;
  height: auto;
  opacity: var(--symbol-opacity, 0.115);
}

.motion-triangle {
  position: absolute;
  display: block;
  opacity: 0.32;
  will-change: transform;
  transform-origin: 50% 50%;
}

.motion-triangle img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 12px rgba(176, 0, 200, 0.07));
}

.hero__motion-stage.is-grouped .motion-triangle img {
  animation: triangle-idle-drift 7.4s ease-in-out infinite both;
}

.hero__motion-stage.is-grouped .motion-triangle--two img {
  animation-duration: 8.2s;
}

.hero__motion-stage.is-grouped .motion-triangle--three img {
  animation-duration: 9s;
}

.hero__motion-stage.is-grouped .motion-triangle--four img {
  animation-duration: 7.8s;
}

.motion-triangle--one {
  top: 9.292%;
  left: 8.541%;
  width: 13.405%;
  aspect-ratio: 124 / 95;
}

.motion-triangle--two {
  top: 39.27%;
  left: 0;
  width: 14.27%;
  aspect-ratio: 132 / 95;
}

.motion-triangle--three {
  top: 48.562%;
  left: 17.514%;
  width: 22.054%;
  aspect-ratio: 204 / 161;
}

.motion-triangle--four {
  top: 73.009%;
  left: 28.108%;
  width: 11.459%;
  aspect-ratio: 106 / 139;
}

.services-section {
  position: relative;
  min-height: 100svh;
  overflow: clip;
  border-top: 1px solid rgba(7, 11, 45, 0.07);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(248, 246, 249, 0.92)),
    #f8f7f4;
}

.services-section::before {
  position: absolute;
  top: 0;
  left: 8%;
  width: 84%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(236, 63, 117, 0.58), transparent);
  content: "";
}

.services-section__orb {
  position: absolute;
  border-radius: 50%;
  opacity: 0.42;
  filter: blur(8px);
  pointer-events: none;
}

.services-section__orb--one {
  top: -170px;
  left: -150px;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(255, 158, 27, 0.16), transparent 68%);
}

.services-section__orb--two {
  right: -170px;
  bottom: -220px;
  width: 570px;
  height: 570px;
  background: radial-gradient(circle, rgba(176, 0, 200, 0.14), transparent 69%);
}

.services-section__layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(255px, 0.42fr) minmax(0, 1fr);
  align-content: center;
  align-items: start;
  column-gap: clamp(48px, 6vw, 112px);
  min-height: 100svh;
  padding-block: clamp(104px, 12vh, 144px) clamp(72px, 8vh, 104px);
}

.services-section__intro {
  padding-top: 8px;
}

.services-section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--coral);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.services-section__eyebrow::before {
  width: 26px;
  height: 2px;
  border-radius: 99px;
  background: var(--gradient);
  content: "";
}

.services-section__intro h2 {
  max-width: 470px;
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(2.25rem, 3vw, 3.45rem);
  font-weight: 790;
  letter-spacing: -0.06em;
  line-height: 1.02;
}

.services-section__intro p {
  max-width: 430px;
  margin: 28px 0 0;
  color: var(--navy-700);
  font-size: clamp(0.96rem, 1.05vw, 1.08rem);
  line-height: 1.65;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.3vw, 22px);
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: clamp(210px, 24vh, 260px);
  padding: clamp(24px, 2vw, 34px);
  overflow: hidden;
  border: 1px solid rgba(7, 11, 45, 0.065);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 20px 46px rgba(7, 11, 45, 0.055);
  isolation: isolate;
  transition: transform 280ms ease, border-color 280ms ease, box-shadow 280ms ease;
}

.service-card::before {
  position: absolute;
  z-index: -1;
  inset: auto -46px -64px auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 88, 108, 0.12), transparent 70%);
  content: "";
  opacity: 0;
  transform: scale(0.78);
  transition: opacity 280ms ease, transform 360ms ease;
}

.service-card:hover {
  border-color: rgba(255, 88, 108, 0.22);
  box-shadow: 0 28px 60px rgba(7, 11, 45, 0.09);
  transform: translateY(-6px);
}

.service-card:hover::before {
  opacity: 1;
  transform: scale(1);
}

.service-card__number {
  position: absolute;
  top: 25px;
  right: 27px;
  color: rgba(7, 11, 45, 0.23);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.service-card__icon {
  display: block;
  width: clamp(52px, 4vw, 66px);
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  filter: drop-shadow(0 8px 12px rgba(176, 0, 200, 0.08));
  transition: transform 320ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.service-card:hover .service-card__icon {
  transform: translateY(-2px) rotate(-4deg) scale(1.07);
}

.service-card h3 {
  max-width: 240px;
  margin: 32px 0 0;
  color: var(--navy-950);
  font-size: clamp(1.12rem, 1.25vw, 1.35rem);
  font-weight: 760;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.services-section__closing {
  grid-column: 1 / -1;
  margin: clamp(32px, 4vh, 50px) 0 0;
  color: var(--navy-950);
  font-size: clamp(0.94rem, 1.1vw, 1.1rem);
  font-weight: 720;
  letter-spacing: -0.02em;
  text-align: center;
}

.services-section__closing strong {
  background: var(--gradient);
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
}

.reveal-ready {
  opacity: 0;
  transform: translate3d(var(--reveal-x, 0), 26px, 0);
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 820ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--delay, 0ms);
  will-change: opacity, transform;
}

.reveal-ready.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.experience-section {
  position: relative;
  min-height: 100svh;
  overflow: clip;
  color: #fff;
  background:
    radial-gradient(circle at 9% 15%, rgba(26, 103, 195, 0.2), transparent 31%),
    radial-gradient(circle at 88% 86%, rgba(210, 0, 156, 0.25), transparent 32%),
    linear-gradient(135deg, #050a31 0%, #070d3f 55%, #090832 100%);
  isolation: isolate;
}

.experience-section::before {
  position: absolute;
  top: 0;
  left: 7%;
  width: 86%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 88, 108, 0.62), transparent);
  content: "";
}

.experience-section__flare {
  position: absolute;
  z-index: -1;
  right: -7%;
  bottom: -37%;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 41, 163, 0.26), transparent 68%);
  filter: blur(8px);
}

.experience-section__mesh {
  position: absolute;
  z-index: -1;
  right: -100px;
  bottom: 1%;
  width: 540px;
  height: 270px;
  opacity: 0.2;
  background:
    linear-gradient(28deg, transparent 47%, rgba(255, 88, 108, 0.8) 49%, transparent 51%),
    linear-gradient(-18deg, transparent 47%, rgba(83, 69, 222, 0.85) 49%, transparent 51%),
    linear-gradient(72deg, transparent 47%, rgba(255, 158, 27, 0.52) 49%, transparent 51%);
  transform: skewY(-6deg);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 36%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 36%, transparent);
}

.experience-section__layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(310px, 0.38fr) minmax(0, 0.62fr);
  align-content: center;
  align-items: center;
  column-gap: clamp(54px, 6vw, 110px);
  min-height: 100svh;
  padding-block: clamp(110px, 12vh, 148px) clamp(62px, 8vh, 96px);
}

.experience-section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: #ff7082;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.experience-section__eyebrow::before {
  width: 26px;
  height: 2px;
  border-radius: 99px;
  background: var(--gradient);
  content: "";
}

.experience-section__content h2 {
  max-width: 500px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.35rem, 3.4vw, 3.8rem);
  font-weight: 780;
  letter-spacing: -0.06em;
  line-height: 1.02;
}

.experience-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: clamp(34px, 5vh, 52px) 0 0;
}

.experience-stats div {
  min-width: 0;
  padding: 0 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.experience-stats div:first-child {
  padding-left: 0;
  border-left: 0;
}

.experience-stats dt {
  margin: 0 0 4px;
  color: #fff;
  font-size: clamp(1.38rem, 2vw, 2rem);
  font-weight: 520;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.experience-stats dt [data-count-to] {
  display: inline-block;
  min-width: 4ch;
  font-variant-numeric: tabular-nums;
}

.experience-stats div:nth-child(2) dt [data-count-to] {
  min-width: 3ch;
}

.experience-stats dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.72rem;
  line-height: 1.35;
}

.experience-section blockquote {
  position: relative;
  max-width: 480px;
  margin: clamp(42px, 6vh, 66px) 0 0;
  padding-left: 34px;
}

.experience-section blockquote > span {
  position: absolute;
  top: -18px;
  left: 0;
  color: #f83f90;
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 1;
}

.experience-section blockquote p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  line-height: 1.55;
}

.experience-section blockquote cite {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.7rem;
  font-style: normal;
}

.experience-showcase {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.72fr) minmax(190px, 0.72fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
  min-width: 0;
  min-height: clamp(440px, 56vh, 570px);
}

.project-laptop {
  position: relative;
  grid-column: 1;
  grid-row: 1 / 3;
  align-self: center;
  width: 100%;
  perspective: 1100px;
}

.project-laptop__screen {
  position: relative;
  aspect-ratio: 1.72 / 1;
  overflow: hidden;
  border: clamp(7px, 0.7vw, 11px) solid #11162c;
  border-radius: 13px 13px 7px 7px;
  background: #fff;
  box-shadow: 0 36px 70px rgba(0, 0, 0, 0.34);
  transform: rotateY(-1.4deg);
}

.project-screen-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.002);
  transition: transform 760ms cubic-bezier(0.22, 1, 0.36, 1), filter 420ms ease;
}

.project-screen-image--arqoh { object-position: 50% top; }
.project-screen-image--sigena { object-position: 55% top; }
.project-screen-image--prodese { object-position: 50% top; }

.project-screen-caption {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  padding: clamp(34px, 4vw, 58px) clamp(15px, 2vw, 24px) clamp(13px, 1.5vw, 19px);
  background: linear-gradient(180deg, transparent, rgba(3, 7, 27, 0.88));
  color: #fff;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 320ms ease, transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.project-screen-caption strong {
  font-size: clamp(0.72rem, 0.92vw, 0.94rem);
  font-weight: 760;
  letter-spacing: -0.02em;
}

.project-screen-caption span {
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(0.5rem, 0.62vw, 0.64rem);
  letter-spacing: 0.07em;
  text-align: right;
  text-transform: uppercase;
}

.project-laptop__screen:hover .project-screen-caption,
.project-preview:hover .project-screen-caption {
  opacity: 1;
  transform: translateY(0);
}

.project-laptop__screen:hover .project-screen-image,
.project-preview:hover .project-screen-image {
  filter: saturate(0.88) brightness(0.78);
  transform: scale(1.025);
}

.project-laptop__base {
  position: relative;
  display: block;
  width: 112%;
  height: 16px;
  margin-left: -6%;
  border-radius: 0 0 44% 44%;
  background: linear-gradient(180deg, #e3e6ef, #777f95 68%, #31374a);
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.28);
}

.project-preview {
  position: relative;
  width: 100%;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.22);
}

.project-preview--sigena { grid-column: 2; grid-row: 1; }
.project-preview--prodese { grid-column: 2; grid-row: 2; }

.experience-clients {
  grid-column: 1 / -1;
  min-width: 0;
  margin-top: clamp(34px, 5vh, 58px);
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.experience-clients__viewport {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.experience-clients__track {
  --marquee-distance: -50%;
  display: flex;
  width: max-content;
  animation: client-logo-carousel 68s linear infinite;
  will-change: transform;
}

.experience-clients__viewport:hover .experience-clients__track {
  animation-play-state: paused;
}

.experience-clients__sequence {
  --client-logo-gap: clamp(34px, 4.2vw, 64px);
  display: flex;
  flex: none;
  align-items: center;
  gap: var(--client-logo-gap);
  padding-right: var(--client-logo-gap);
}

.experience-client-logo {
  display: flex;
  flex: 0 0 clamp(176px, 13.8vw, 220px);
  align-items: center;
  justify-content: center;
  height: 78px;
  padding: 0 clamp(10px, 1.3vw, 18px);
}

.experience-client-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.52;
  transition: opacity 240ms ease;
}

.experience-client-logo:hover img {
  opacity: 0.86;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--coral);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-eyebrow::before {
  width: 25px;
  height: 2px;
  border-radius: 99px;
  background: var(--gradient);
  content: "";
}

.values-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 12%, rgba(255, 88, 108, 0.07), transparent 29%),
    #fbfaf8;
}

.values-section::before {
  position: absolute;
  inset: 0 0 auto;
  z-index: 2;
  height: 4px;
  background: var(--gradient);
  content: "";
}

.values-section__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  width: min(100%, 1920px);
  min-height: clamp(540px, 59vw, 690px);
  margin-inline: auto;
}

.values-section__photo {
  min-width: 0;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  background: #050607;
}

.values-section__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.values-section__photo:hover img {
  transform: scale(1.025);
}

.values-section__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(66px, 7.2vw, 116px) clamp(48px, 7.7vw, 132px);
}

.values-section__content h2 {
  max-width: 700px;
  margin: 20px 0 0;
  color: var(--navy-950);
  font-size: clamp(2.5rem, 4.2vw, 4.75rem);
  font-weight: 780;
  letter-spacing: -0.062em;
  line-height: 0.99;
}

.values-section__content > p:not(.values-section__closing) {
  max-width: 700px;
  margin: 28px 0 0;
  color: var(--slate-500);
  font-size: clamp(0.96rem, 1.1vw, 1.13rem);
  line-height: 1.62;
}

.values-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: clamp(40px, 5.5vw, 68px) 0 0;
  padding: 0 0 22px;
  list-style: none;
}

.values-list::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--gradient);
  content: "";
}

.values-list li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding-inline: clamp(10px, 1.45vw, 26px);
  color: var(--navy-950);
  font-size: clamp(0.76rem, 0.9vw, 0.93rem);
  font-weight: 760;
  text-align: center;
}

.values-list li + li::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 18px;
  background: rgba(255, 88, 108, 0.54);
  content: "";
  transform: translateY(-50%);
}

.values-section__closing {
  max-width: 760px;
  margin: 30px 0 0;
  color: var(--navy-700);
  font-size: clamp(0.88rem, 1vw, 1rem);
  font-weight: 500;
  line-height: 1.66;
}

.values-section__closing strong {
  color: var(--navy-950);
  font-weight: 770;
}

.values-section__more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  color: var(--navy-950);
  font-size: 0.8rem;
  font-weight: 800;
}

.values-section__more span {
  color: var(--coral);
  font-size: 1.15rem;
  transition: transform 180ms ease;
}

.values-section__more:hover span,
.values-section__more:focus-visible span {
  transform: translateX(4px);
}

.blog-section {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.blog-section::before {
  position: absolute;
  right: -170px;
  bottom: -240px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(176, 0, 200, 0.075), transparent 67%);
  content: "";
}

.blog-section__layout {
  position: relative;
  z-index: 1;
  padding-block: clamp(88px, 9vw, 138px);
}

.blog-section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: clamp(38px, 4vw, 60px);
}

.blog-section__header h2 {
  margin: 17px 0 0;
  color: var(--navy-950);
  font-size: clamp(2.4rem, 4vw, 4.5rem);
  font-weight: 780;
  letter-spacing: -0.06em;
  line-height: 1;
}

.blog-section__header p {
  margin: 17px 0 0;
  color: var(--slate-500);
  font-size: 0.93rem;
}

.blog-section__all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 6px;
  color: var(--navy-950);
  font-size: 0.78rem;
  font-weight: 760;
  white-space: nowrap;
  text-decoration: none;
}

.blog-section__all b {
  color: var(--coral);
  font-size: 1.1rem;
}

.service-card,
.project-laptop__screen,
.project-preview,
.blog-card {
  position: relative;
}

.card-hit-area {
  position: absolute;
  z-index: 6;
  inset: 0;
  border-radius: inherit;
}

.card-hit-area:focus-visible {
  outline: 3px solid rgba(255, 88, 108, 0.58);
  outline-offset: 3px;
}

.blog-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(390px, 0.85fr);
  gap: clamp(34px, 5vw, 82px);
  align-items: stretch;
}

.blog-card {
  min-width: 0;
}

.blog-card__image {
  overflow: hidden;
  border-radius: 12px;
  background: #e9ebf1;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1), filter 320ms ease;
}

.blog-card:hover .blog-card__image img {
  filter: saturate(1.08);
  transform: scale(1.035);
}

.blog-card__copy span {
  color: var(--navy-700);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.blog-card__copy h3 {
  margin: 9px 0 0;
  color: var(--navy-950);
  font-weight: 760;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.blog-card--featured {
  position: relative;
}

.blog-card--featured .blog-card__image {
  height: clamp(360px, 32vw, 520px);
}

.blog-card--featured .blog-card__copy {
  padding: clamp(24px, 2.7vw, 40px) 0 0;
}

.blog-card--featured .blog-card__copy h3 {
  max-width: 620px;
  font-size: clamp(1.65rem, 2.4vw, 2.75rem);
}

.blog-secondary {
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.blog-card--horizontal {
  display: grid;
  grid-template-columns: minmax(160px, 0.88fr) minmax(200px, 1.12fr);
  gap: clamp(22px, 2.5vw, 40px);
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(7, 11, 45, 0.11);
}

.blog-card--horizontal:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.blog-card--horizontal .blog-card__image {
  height: 100%;
  min-height: 138px;
}

.blog-card--horizontal .blog-card__copy h3 {
  font-size: clamp(1.05rem, 1.32vw, 1.48rem);
}

.cta-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 22%, rgba(255, 88, 108, 0.13), transparent 28%),
    radial-gradient(circle at 15% 120%, rgba(176, 0, 200, 0.1), transparent 31%),
    #fbfaf8;
}

.cta-section::before {
  position: absolute;
  inset: 0 8% auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 88, 108, 0.55), transparent);
  content: "";
}

.cta-section__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: clamp(44px, 6vw, 96px);
  min-height: clamp(520px, 43vw, 650px);
  padding-block: clamp(72px, 7vw, 108px);
}

.cta-section h2 {
  max-width: 950px;
  margin: 19px 0 0;
  color: var(--navy-950);
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  font-weight: 790;
  letter-spacing: -0.066em;
  line-height: 0.98;
}

.cta-section p {
  max-width: 780px;
  margin: 26px 0 0;
  color: var(--slate-500);
  font-size: clamp(0.95rem, 1.1vw, 1.08rem);
  line-height: 1.6;
}

.cta-section__content .button--cta {
  margin-top: 32px;
}

.cta-section__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.cta-section__visual img {
  display: block;
  width: min(112%, 560px);
  height: auto;
  max-height: 590px;
  object-fit: contain;
  filter: drop-shadow(0 30px 38px rgba(8, 14, 58, 0.16));
}

.button--cta {
  min-width: 260px;
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 18px 42px rgba(176, 0, 200, 0.2);
  white-space: nowrap;
}

.button--cta:hover {
  box-shadow: 0 22px 50px rgba(176, 0, 200, 0.28);
  transform: translateY(-2px);
}

.site-footer {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #090b22;
}

.site-footer::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--gradient);
  content: "";
}

.site-footer__main {
  display: grid;
  grid-template-columns: minmax(280px, 1.25fr) minmax(210px, 0.9fr) minmax(140px, 0.58fr) minmax(310px, 1.3fr);
  gap: clamp(34px, 4.3vw, 74px);
  padding-block: clamp(82px, 8vw, 126px) clamp(66px, 7vw, 98px);
}

.site-footer__brand > a {
  display: block;
  width: min(390px, 100%);
}

.site-footer__brand img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2048 / 1048;
  object-fit: contain;
}

.site-footer__brand p {
  max-width: 350px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.62;
}

.site-footer__brand > span {
  display: block;
  margin-top: 22px;
  color: #ff8595;
  font-size: 0.7rem;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer__nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.site-footer__nav strong {
  margin-bottom: 8px;
  color: #fff;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer__nav a {
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.82rem;
  transition: color 180ms ease, transform 180ms ease;
}

.site-footer__nav a:hover,
.site-footer__nav a:focus-visible {
  color: #fff;
  transform: translateX(3px);
}

.site-footer__contact > span {
  color: #ff8595;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.site-footer__contact h2 {
  max-width: 390px;
  margin: 13px 0 22px;
  color: #fff;
  font-size: clamp(1.35rem, 1.7vw, 1.85rem);
  font-weight: 740;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.footer-contact-list {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-contact-list a {
  display: flex;
  align-items: center;
  gap: 13px;
  width: fit-content;
  padding: 2px 0;
  color: #fff;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-contact-list a:hover,
.footer-contact-list a:focus-visible {
  color: #ff8595;
  transform: translateX(3px);
}

.footer-contact-list img {
  flex: 0 0 27px;
  width: 27px;
  height: 27px;
}

.footer-contact-list img {
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(68%) sepia(64%) saturate(1076%) hue-rotate(304deg) brightness(104%) contrast(101%);
}

.footer-contact-list strong {
  overflow-wrap: anywhere;
  font-size: 0.84rem;
  font-weight: 720;
}

.social-links { margin-top: 32px; }
.social-links > span {
  display: block;
  color: #68728a;
  font-size: 0.68rem;
  font-weight: 780;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.social-links nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.social-links a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 14px;
  border: 1px solid rgba(7, 11, 45, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy-950);
  font-size: 0.74rem;
  font-weight: 740;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  border-color: #ff647b;
  background: #fff;
  transform: translateY(-2px);
}

.social-links__icon {
  flex: 0 0 21px;
  width: 21px;
  height: 21px;
}

.social-links__icon {
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(10%) sepia(35%) saturate(2416%) hue-rotate(211deg) brightness(83%) contrast(118%);
}

.social-links--footer { margin-top: 27px; }
.social-links--footer > span { color: rgba(255, 255, 255, 0.5); font-size: 0.62rem; }
.social-links--footer a {
  width: 42px;
  min-height: 42px;
  padding: 0;
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.035);
}
.social-links--footer a:hover,
.social-links--footer a:focus-visible { border-color: #ff8595; background: rgba(255, 133, 149, 0.09); }
.social-links--footer .social-links__icon {
  filter: brightness(0) saturate(100%) invert(68%) sepia(64%) saturate(1076%) hue-rotate(304deg) brightness(104%) contrast(101%);
}
.social-links--contact a { width: 47px; min-height: 47px; padding: 0; background: #fff; }
.social-links--contact .social-links__icon {
  width: 22px;
  height: 22px;
  filter: brightness(0) saturate(100%) invert(47%) sepia(72%) saturate(2421%) hue-rotate(317deg) brightness(106%) contrast(101%);
}
.social-links--founder a { min-height: 46px; background: #fff; }
.social-links--founder .social-links__icon {
  filter: brightness(0) saturate(100%) invert(47%) sepia(72%) saturate(2421%) hue-rotate(317deg) brightness(106%) contrast(101%);
}
.social-links__name { line-height: 1; }

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-block: 24px 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.68rem;
}

.site-footer__bottom p { margin: 0; }
.site-footer__bottom nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 12px 24px;
}

.site-footer__bottom a,
.site-footer__bottom button {
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
  transition: color 180ms ease;
}

.site-footer__bottom a:hover,
.site-footer__bottom a:focus-visible,
.site-footer__bottom button:hover,
.site-footer__bottom button:focus-visible {
  color: #fff;
}

.cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 18px;
  left: 20px;
  z-index: 500;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(30px, 4vw, 72px);
  width: min(calc(100% - 40px), 1980px);
  margin-inline: auto;
  padding: clamp(26px, 2.7vw, 50px) clamp(28px, 3vw, 58px);
  border: 1px solid rgba(7, 11, 45, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.985);
  box-shadow: 0 22px 70px rgba(7, 11, 45, 0.2);
  color: var(--navy-950);
  backdrop-filter: blur(14px);
}

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

.cookie-settings header span {
  color: #ff8595;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.cookie-banner h2 {
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(1.32rem, 1.8vw, 2rem);
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.cookie-banner p {
  max-width: 990px;
  margin: 15px 0 0;
  color: #5d6679;
  font-size: clamp(0.9rem, 1.2vw, 1.08rem);
  line-height: 1.52;
}

.cookie-banner__policy {
  display: inline-flex;
  margin-top: 13px;
  color: #c52153;
  font-size: clamp(0.78rem, 1vw, 0.92rem);
  font-weight: 800;
}

.cookie-banner__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(210px, 1fr));
  gap: 12px;
  min-width: min(100%, 470px);
}

.cookie-button {
  display: inline-flex;
  min-height: 72px;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 760;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.cookie-button:hover,
.cookie-button:focus-visible { transform: translateY(-1px); }

.cookie-button:focus-visible {
  outline: 4px solid rgba(255, 177, 23, 0.88);
  outline-offset: 4px;
}

.cookie-button--primary {
  border-color: transparent;
  background: var(--gradient);
  color: #fff;
}

.cookie-button--secondary {
  border-color: #d62c60;
  background: #fff;
  color: #b41646;
}

.cookie-button--text {
  grid-column: 1 / -1;
  min-height: 38px;
  color: rgba(255, 255, 255, 0.76);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-settings {
  width: min(calc(100% - 32px), 680px);
  max-height: min(88vh, 760px);
  padding: 0;
  border: 0;
  border-radius: 18px;
  background: #fff;
  color: var(--navy-950);
  box-shadow: 0 32px 100px rgba(7, 11, 45, 0.35);
}

.cookie-settings::backdrop {
  background: rgba(7, 11, 45, 0.67);
  backdrop-filter: blur(5px);
}

.cookie-settings__panel {
  padding: clamp(24px, 4vw, 42px);
}

.cookie-settings header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.cookie-settings h2 {
  margin: 8px 0 0;
  font-size: clamp(1.7rem, 3.5vw, 2.55rem);
  letter-spacing: -0.055em;
  line-height: 1;
}

.cookie-settings__close {
  display: inline-flex;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(7, 11, 45, 0.12);
  border-radius: 50%;
  background: #fff;
  color: var(--navy-950);
  font-size: 1.55rem;
  cursor: pointer;
}

.cookie-settings__intro {
  margin: 20px 0 26px;
  color: var(--slate-500);
  font-size: 0.9rem;
  line-height: 1.6;
}

.cookie-option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
  border-top: 1px solid rgba(7, 11, 45, 0.1);
}

.cookie-option strong { font-size: 0.95rem; }
.cookie-option p {
  margin: 7px 0 0;
  color: var(--slate-500);
  font-size: 0.8rem;
  line-height: 1.52;
}

.cookie-option__status {
  color: #66708c;
  font-size: 0.68rem;
  font-weight: 750;
  white-space: nowrap;
}

.cookie-option--toggle {
  position: relative;
  cursor: pointer;
}

.cookie-option--toggle input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 28px;
  border-radius: 99px;
  background: #d8dbe4;
  transition: background-color 180ms ease;
}

.cookie-toggle::after {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 7px rgba(7, 11, 45, 0.22);
  content: "";
  transition: transform 180ms ease;
}

.cookie-option--toggle input:checked + .cookie-toggle { background: #ff647b; }
.cookie-option--toggle input:checked + .cookie-toggle::after { transform: translateX(22px); }
.cookie-option--toggle input:focus-visible + .cookie-toggle { outline: 3px solid rgba(255, 88, 108, 0.26); outline-offset: 3px; }

.cookie-settings footer {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding-top: 22px;
}

.cookie-settings .cookie-button--secondary {
  border-color: rgba(7, 11, 45, 0.24);
  color: var(--navy-950);
}

.legal-page {
  min-height: 100vh;
  background: var(--surface-soft);
}

.legal-header {
  border-top: 4px solid transparent;
  border-image: var(--gradient) 1;
  background: #fff;
  box-shadow: 0 10px 34px rgba(7, 11, 45, 0.06);
}

.legal-header__inner {
  display: flex;
  min-height: 94px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.legal-header__logo { width: min(230px, 52vw); }
.legal-header__logo img { width: 100%; height: auto; }
.legal-header__back {
  color: var(--navy-950);
  font-size: 0.84rem;
  font-weight: 720;
}

.legal-main { padding-block: clamp(70px, 9vw, 130px); }
.legal-article { width: min(calc(100% - 40px), 960px); margin-inline: auto; }
.legal-article__eyebrow {
  color: var(--coral);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-article h1 {
  max-width: 850px;
  margin: 16px 0 20px;
  font-size: clamp(2.55rem, 7vw, 5.5rem);
  letter-spacing: -0.07em;
  line-height: 0.96;
}

.legal-article__updated { margin: 0 0 48px; color: var(--slate-500); font-size: 0.8rem; }
.legal-article section { padding: 30px 0; border-top: 1px solid rgba(7, 11, 45, 0.12); }
.legal-article h2 { margin: 0 0 14px; font-size: clamp(1.25rem, 2.4vw, 1.7rem); letter-spacing: -0.035em; }
.legal-article h3 { margin: 24px 0 8px; font-size: 1rem; }
.legal-article p,
.legal-article li { color: #47516c; font-size: 0.94rem; line-height: 1.75; }
.legal-article ul { padding-left: 22px; }
.legal-article a { color: #9514aa; text-decoration: underline; text-underline-offset: 3px; }
.legal-data {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.legal-data li { padding: 15px 17px; border-radius: 10px; background: #fff; }
.legal-data strong { display: block; margin-bottom: 3px; color: var(--navy-950); font-size: 0.72rem; text-transform: uppercase; }
.legal-table-wrap { overflow-x: auto; }
.legal-table { width: 100%; border-collapse: collapse; min-width: 620px; }
.legal-table th,
.legal-table td { padding: 14px 12px; border-bottom: 1px solid rgba(7, 11, 45, 0.1); text-align: left; font-size: 0.82rem; line-height: 1.5; }
.legal-table th { color: var(--navy-950); }
.legal-footer {
  padding-block: 28px;
  background: #090b22;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.75rem;
}
.legal-footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.legal-footer nav { display: flex; flex-wrap: wrap; gap: 18px; }
.legal-footer button {
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
}
.legal-footer a:hover,
.legal-footer a:focus-visible,
.legal-footer button:hover,
.legal-footer button:focus-visible { color: #fff; }
.legal-cookie-button { color: var(--navy-950); text-decoration: none; }

.hero__scroll svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  animation: scroll-hint 1.8s ease-in-out infinite;
}

.next-section-anchor {
  height: 1px;
}

.page-anchor {
  scroll-margin-top: calc(var(--header-height) + 16px);
}

@keyframes visual-enter {
  from { opacity: 0; transform: translate3d(34px, 24px, 0) scale(0.98); }
  to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes scroll-hint {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

@keyframes client-logo-carousel {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(var(--marquee-distance), 0, 0); }
}

@keyframes triangle-idle-drift {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-5px) rotate(1.4deg); }
}

@media (min-width: 1061px) and (max-width: 1680px) {
  .hero__visual {
    justify-self: end;
    width: min(48vw, 760px);
    margin-right: clamp(18px, 2.5vw, 42px);
  }
}

@media (max-width: 1320px) {
  :root { --header-height: 92px; }
  .container { width: min(calc(100% - 56px), var(--container)); }
  .brand { width: 214px; }
  .brand__compact { gap: 9px; }
  .brand__mark { width: 58px; }
  .brand__wordmark { width: 138px; }
  .primary-navigation { gap: 28px; }
  .primary-navigation ul { gap: 24px; }
  .hero__layout { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .hero__title { font-size: clamp(2.85rem, 4vw, 4.15rem); }
}

@media (max-width: 1060px) {
  .menu-toggle {
    position: relative;
    z-index: 102;
    display: grid;
    place-content: center;
    width: 50px;
    height: 50px;
    padding: 0;
    border: 1px solid rgba(7, 11, 45, 0.11);
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 23px;
    height: 2px;
    margin: 3px 0;
    border-radius: 99px;
    background: var(--navy-950);
    transition: transform 200ms ease, opacity 200ms ease;
  }

  .site-header[data-menu-open="true"] .menu-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .site-header[data-menu-open="true"] .menu-toggle span:nth-child(2) { opacity: 0; }
  .site-header[data-menu-open="true"] .menu-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .primary-navigation {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 36px;
    padding: 120px clamp(28px, 8vw, 86px) 48px;
    background: rgba(255, 255, 255, 0.985);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .site-header[data-menu-open="true"] .primary-navigation {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .primary-navigation ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .primary-navigation li a {
    padding: 8px 0;
    font-size: clamp(1.6rem, 5vw, 2.45rem);
    font-weight: 720;
    letter-spacing: -0.04em;
  }

  .button--header { align-self: flex-start; }
  .hero { min-height: 100svh; }
  .hero__layout { grid-template-columns: 1fr; gap: 34px; padding-block: 70px 92px; }
  .hero__content { max-width: 760px; }
  .hero__visual { justify-self: center; width: min(100%, 800px); margin: -18px 0 0; }
  .hero-services__stage { aspect-ratio: 1.38 / 1; }
  .hero__scroll { display: none; }
  .hero__symbol { right: 24px; width: clamp(340px, 44vw, 460px); }
  .services-section__layout {
    grid-template-columns: 1fr;
    align-content: start;
    row-gap: 44px;
    padding-block: 112px 82px;
  }
  .services-section__intro h2,
  .services-section__intro p { max-width: 720px; }
  .services-section__closing { margin-top: 0; }
  .experience-section__layout {
    grid-template-columns: 1fr;
    align-content: start;
    row-gap: 54px;
    padding-block: 112px 82px;
  }
  .experience-section__content h2 { max-width: 720px; }
  .experience-section__content { max-width: 760px; }
  .experience-showcase { min-height: 540px; }
  .experience-client-logo { flex-basis: 172px; }
  .values-section__layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    min-height: 570px;
  }
  .values-section__content { padding: 72px clamp(42px, 7vw, 78px); }
  .values-section__content h2 { font-size: clamp(2.6rem, 5.6vw, 4.1rem); }
  .values-list { margin-top: 44px; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card--featured .blog-card__image { height: 460px; }
  .blog-secondary { grid-template-columns: repeat(3, minmax(0, 1fr)); grid-template-rows: none; }
  .blog-card--horizontal {
    grid-template-columns: 1fr;
    align-content: start;
    gap: 18px;
  }
  .blog-card--horizontal .blog-card__image { height: 180px; min-height: 0; }
  .cta-section__layout {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr);
    gap: 34px;
  }
  .site-footer__main { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .site-footer__contact { max-width: 470px; }
  .cookie-banner {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 22px;
  }
  .cookie-banner__actions {
    width: min(100%, 430px);
    min-width: 0;
  }
}

@media (max-width: 680px) {
  :root { --header-height: 70px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .site-header,
  .site-header.is-scrolled { height: var(--header-height); }
  .site-header__inner { min-width: 0; }
  .brand { width: 134px; max-width: calc(100% - 58px); }
  .brand__compact { display: none; }
  .site-header.is-scrolled .brand__full {
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }
  .menu-toggle {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    margin-left: 14px;
  }
  .hero { min-height: auto; overflow: hidden; }
  .hero__motion-stage { display: none; }
  .hero__layout {
    position: relative;
    top: auto;
    grid-template-columns: minmax(0, 40%) minmax(0, 60%);
    min-height: 0;
    column-gap: 0;
    row-gap: 0;
    padding-block: calc(var(--header-height) + 28px) 40px;
  }
  .hero__content { display: contents; }
  .hero__visual { min-width: 0; max-width: none; }
  .hero__content::before { display: none; }

  .hero__eyebrow {
    grid-column: 1 / -1;
    max-width: 100%;
    margin-bottom: 16px;
    font-size: 0.62rem;
    letter-spacing: 0.055em;
    line-height: 1.45;
  }
  .hero__title {
    grid-column: 1 / -1;
    font-size: clamp(2.3rem, 10.8vw, 2.75rem);
    letter-spacing: -0.058em;
    line-height: 1.02;
  }
  .hero__description {
    grid-column: 1 / -1;
    margin-top: 22px;
    margin-bottom: 24px;
    font-size: 0.98rem;
    line-height: 1.52;
  }
  .hero__actions {
    grid-column: 1;
    grid-row: 4;
    align-self: center;
    flex-direction: column;
    gap: 10px;
    margin: 0;
    padding-right: 10px;
  }
  .hero__actions .button {
    width: 100%;
    min-height: 48px;
    padding: 10px 9px;
    font-size: 0.7rem;
    line-height: 1.22;
    text-align: center;
  }
  .hero__actions .button svg { flex: 0 0 16px; width: 16px; margin-left: 6px; }
  .hero__visual {
    grid-column: 2;
    grid-row: 4;
    align-self: center;
    justify-self: end;
    width: calc(100% + 8px);
    margin: 0 0 0 -8px;
    transform: none;
  }
  .hero-services__stage { aspect-ratio: 0.72 / 1; }
  .hero-service__art,
  .hero-service--seo .hero-service__art,
  .hero-service--communication .hero-service__art {
    top: 0;
    right: -4%;
    width: 112%;
    height: 80%;
  }
  .hero-service__copy { right: 0; bottom: 8%; width: max-content; max-width: 100%; text-align: right; }
  .hero-service__copy span { font-size: 0.46rem; letter-spacing: 0.085em; }
  .hero-service__copy p { font-size: clamp(0.7rem, 3.1vw, 0.88rem); }
  .hero-service__copy a { margin-top: 6px; font-size: 0.61rem; }
  .hero-services__navigation { right: 0; bottom: 0; }
  .hero__visual-glow { right: 0; width: 100%; }
  .services-section { min-height: auto; }
  .services-section__layout {
    min-height: 0;
    row-gap: 34px;
    padding-block: 76px 64px;
  }
  .services-section__intro { padding-top: 0; }
  .services-section__eyebrow { margin-bottom: 14px; }
  .services-section__intro h2 { font-size: clamp(2.15rem, 10vw, 2.8rem); }
  .services-section__intro p { margin-top: 20px; font-size: 0.96rem; }
  .services-grid { grid-template-columns: 1fr; gap: 13px; }
  .service-card { min-height: 176px; padding: 24px; }
  .service-card__number { top: 23px; right: 23px; }
  .service-card__icon { width: 52px; }
  .service-card h3 { margin-top: 25px; font-size: 1.15rem; }
  .services-section__closing { margin-top: 4px; line-height: 1.5; }
  .reveal-ready { --reveal-x: 0px !important; transform: translate3d(0, 22px, 0); }
  .experience-section { min-height: auto; }
  .experience-section__layout {
    min-height: 0;
    row-gap: 42px;
    padding-block: 76px 64px;
  }
  .experience-section__eyebrow { margin-bottom: 14px; }
  .experience-section__content h2 { font-size: clamp(2.18rem, 10vw, 2.9rem); }
  .experience-stats { margin-top: 32px; }
  .experience-stats div { padding-inline: 11px; }
  .experience-stats dt { font-size: 1.28rem; }
  .experience-stats dd { font-size: 0.64rem; }
  .experience-section blockquote { margin-top: 42px; padding-left: 30px; }
  .experience-showcase {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    min-height: 0;
  }
  .project-laptop {
    position: relative;
    top: auto;
    left: auto;
    grid-column: 1 / -1;
    grid-row: auto;
    width: 100%;
    margin-bottom: 8px;
  }
  .project-preview {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: 194px;
  }
  .project-preview--sigena,
  .project-preview--prodese { grid-column: auto; grid-row: auto; }
  .project-screen-caption {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
    padding: 34px 12px 10px;
    opacity: 1;
    transform: none;
  }
  .project-screen-caption span { text-align: left; }
  .experience-clients {
    margin-top: 4px;
  }
  .experience-client-logo {
    flex-basis: 158px;
    height: 68px;
    padding-inline: 10px;
  }
  .experience-clients__sequence {
    --client-logo-gap: 28px;
  }
  .experience-clients__track { animation-duration: 52s; }
  .values-section__layout {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .values-section__photo {
    height: min(104vw, 430px);
    min-height: 0;
  }
  .values-section__photo img { object-position: 50% 40%; }
  .values-section__content { padding: 54px 20px 64px; }
  .values-section__content h2 {
    margin-top: 17px;
    font-size: clamp(2.15rem, 10vw, 2.8rem);
  }
  .values-section__content > p:not(.values-section__closing) {
    margin-top: 22px;
    font-size: 0.94rem;
  }
  .values-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 20px;
    margin-top: 34px;
    padding-bottom: 17px;
  }
  .values-list li,
  .values-list li:first-child,
  .values-list li:last-child {
    padding-inline: 10px;
    text-align: center;
  }
  .values-list li:nth-child(3)::before { display: none; }
  .values-section__closing { margin-top: 24px; font-size: 0.88rem; line-height: 1.62; }
  .blog-section__layout { padding-block: 72px; }
  .blog-section__header {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 34px;
  }
  .blog-section__header h2 { font-size: clamp(2.15rem, 10vw, 2.85rem); }
  .blog-section__header p { line-height: 1.5; }
  .blog-section__all { display: none; }
  .blog-grid { gap: 30px; }
  .blog-card--featured { padding-bottom: 0; }
  .blog-card--featured .blog-card__image { height: 260px; }
  .blog-card--featured .blog-card__copy {
    position: relative;
    inset: auto;
    padding: 22px 2px 4px;
    border-radius: 0;
    box-shadow: none;
  }
  .blog-card--featured .blog-card__copy h3 { font-size: 1.55rem; }
  .blog-secondary {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .blog-card--horizontal {
    grid-template-columns: minmax(116px, 0.85fr) minmax(0, 1.15fr);
    gap: 16px;
    padding-bottom: 18px;
  }
  .blog-card--horizontal .blog-card__image { min-height: 118px; }
  .blog-card--horizontal .blog-card__copy h3 {
    margin-top: 7px;
    font-size: 1rem;
    line-height: 1.13;
  }
  .blog-card__copy span { font-size: 0.54rem; }
  .cta-section__layout {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 38px;
    padding-block: 70px;
  }
  .cta-section h2 { font-size: clamp(2.3rem, 10.5vw, 3rem); }
  .cta-section p { margin-top: 20px; font-size: 0.93rem; }
  .cta-section__content .button--cta { margin-top: 26px; }
  .cta-section__visual img { width: min(90vw, 440px); max-height: 470px; }
  .button--cta {
    width: 100%;
    min-width: 0;
    padding-inline: 16px;
    text-align: center;
    white-space: normal;
  }
  .site-footer__main {
    grid-template-columns: 1fr;
    gap: 46px;
    padding-block: 68px 56px;
  }
  .site-footer__brand > a { width: min(300px, 100%); }
  .site-footer__nav { gap: 12px; }
  .site-footer__contact h2 { font-size: 1.65rem; }
  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    padding-block: 22px 28px;
  }
  .site-footer__bottom nav { justify-content: flex-start; gap: 10px 18px; }
  .cookie-banner {
    right: 10px;
    bottom: 10px;
    left: 10px;
    width: calc(100% - 20px);
    max-height: calc(100vh - 20px);
    overflow-y: auto;
    padding: 22px;
    border-radius: 14px;
  }
  .cookie-banner__actions { grid-template-columns: 1fr 1fr; }
  .cookie-button { padding-inline: 13px; }
  .cookie-settings { width: min(calc(100% - 20px), 680px); max-height: calc(100vh - 20px); }
  .cookie-settings__panel { padding: 23px; }
  .cookie-option { grid-template-columns: minmax(0, 1fr) auto; gap: 14px; }
  .cookie-settings footer { align-items: stretch; flex-direction: column; }
  .legal-header__inner { min-height: 78px; }
  .legal-header__back { font-size: 0.75rem; }
  .legal-data { grid-template-columns: 1fr; }
  .legal-footer__inner { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  .reveal-ready,
  .reveal-ready.is-visible {
    opacity: 1 !important;
    transform: none !important;
  }
  .experience-clients__viewport {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .experience-clients__track { animation: none; }
  .experience-clients__sequence--duplicate { display: none; }
}

/* Contacto permanente: escritorio y barra móvil. */
.contact-dock {
  position: fixed;
  z-index: 160;
  right: max(22px, env(safe-area-inset-right));
  bottom: max(22px, env(safe-area-inset-bottom));
  display: grid;
  justify-items: end;
  gap: 12px;
}
.contact-dock__panel {
  width: min(330px, calc(100vw - 40px));
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: #080b2c;
  box-shadow: 0 24px 70px rgba(6, 8, 37, 0.28);
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px) scale(0.98);
  transform-origin: bottom right;
  transition: opacity 180ms ease, transform 180ms ease;
}
.contact-dock[data-open="true"] .contact-dock__panel {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.contact-dock__panel > span {
  display: block;
  color: #ff778e;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.contact-dock__panel > strong {
  display: block;
  margin: 5px 0 16px;
  font-size: 1.2rem;
  letter-spacing: -0.025em;
}
.contact-dock__panel > a {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 66px;
  padding: 10px 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  color: #fff;
  text-decoration: none;
  transition: background-color 160ms ease, transform 160ms ease;
}
.contact-dock__panel > a:hover,
.contact-dock__panel > a:focus-visible {
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(2px);
}
.contact-dock__panel img,
.mobile-contact-bar img {
  width: 25px;
  height: 25px;
  object-fit: contain;
  filter: invert(63%) sepia(83%) saturate(1228%) hue-rotate(299deg) brightness(103%) contrast(101%);
}
.contact-dock__panel a > span:last-child { display: grid; gap: 3px; }
.contact-dock__panel b { font-size: 0.85rem; }
.contact-dock__panel small { color: #aeb3c8; font-size: 0.68rem; }
.contact-dock__toggle {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 58px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(112deg, #ff9518 0%, #ff4e7a 48%, #bc20c7 100%);
  box-shadow: 0 16px 38px rgba(196, 24, 157, 0.28);
  color: #fff;
  font: inherit;
  font-size: 0.79rem;
  font-weight: 800;
  cursor: pointer;
}
.contact-dock__toggle > span:last-child {
  font-size: 1.25rem;
  font-weight: 500;
  transition: transform 180ms ease;
}
.contact-dock[data-open="true"] .contact-dock__toggle > span:last-child { transform: rotate(45deg); }
.contact-dock__pulse {
  width: 9px;
  height: 9px;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.16);
}
.contact-dock__form-icon {
  display: inline-grid;
  align-content: center;
  gap: 4px;
  width: 25px;
  height: 29px;
  padding: 5px;
  border: 2px solid #ff778e;
  border-radius: 4px;
}
.contact-dock__form-icon i {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: #ff778e;
}
.mobile-contact-bar { display: none; }

@media (max-width: 680px) {
  body:not(.legal-page) { padding-bottom: calc(70px + env(safe-area-inset-bottom)); }
  .contact-dock { display: none; }
  .mobile-contact-bar {
    position: fixed;
    z-index: 160;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1.25fr;
    min-height: calc(68px + env(safe-area-inset-bottom));
    padding-bottom: env(safe-area-inset-bottom);
    border-top: 1px solid rgba(7, 11, 45, 0.12);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 -12px 35px rgba(7, 11, 45, 0.12);
    backdrop-filter: blur(12px);
  }
  .mobile-contact-bar > a {
    display: grid;
    place-items: center;
    align-content: center;
    gap: 4px;
    min-width: 0;
    color: #080b2c;
    font-size: 0.62rem;
    font-weight: 800;
    text-decoration: none;
  }
  .mobile-contact-bar > a + a { border-left: 1px solid rgba(7, 11, 45, 0.1); }
  .mobile-contact-bar .mobile-contact-bar__form {
    background: linear-gradient(112deg, #ff9518 0%, #ff4e7a 48%, #bc20c7 100%);
    color: #fff;
  }
  .mobile-contact-bar__form .contact-dock__form-icon {
    width: 23px;
    height: 25px;
    border-color: #fff;
  }
  .mobile-contact-bar__form .contact-dock__form-icon i { background: #fff; }
}

@media (prefers-reduced-motion: reduce) {
  .contact-dock__panel,
  .contact-dock__toggle > span:last-child,
  .contact-dock__panel > a { transition: none; }
}

/* Acceso permanente y directo a WhatsApp. */
.whatsapp-float {
  position: fixed;
  z-index: 160;
  right: max(22px, env(safe-area-inset-right));
  bottom: max(22px, env(safe-area-inset-bottom));
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  width: 64px;
  height: 64px;
  padding: 0 17px;
  overflow: hidden;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: #00c963;
  box-shadow: 0 16px 38px rgba(20, 128, 61, 0.28);
  color: #fff;
  text-decoration: none;
  transition: width 220ms ease, transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}
.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  background: #2ee672;
  box-shadow: 0 20px 46px rgba(20, 128, 61, 0.36);
  transform: translateY(-3px);
}
.whatsapp-float img {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.whatsapp-float__label {
  order: -1;
  max-width: 0;
  margin-right: 0;
  overflow: hidden;
  color: #fff;
  font-size: 1rem;
  font-weight: 520;
  line-height: 1;
  opacity: 0;
  white-space: nowrap;
  transform: translateX(8px);
  transition: max-width 220ms ease, margin-right 220ms ease, opacity 160ms ease, transform 220ms ease;
}

@media (min-width: 681px) {
  .whatsapp-float:hover,
  .whatsapp-float:focus-visible { width: 224px; }
  .whatsapp-float:hover .whatsapp-float__label,
  .whatsapp-float:focus-visible .whatsapp-float__label {
    max-width: 145px;
    margin-right: 17px;
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 680px) {
  body:not(.legal-page) { padding-bottom: 0; }
  .whatsapp-float {
    right: max(14px, env(safe-area-inset-right));
    bottom: max(14px, env(safe-area-inset-bottom));
    width: 58px;
    height: 58px;
    justify-content: center;
    padding: 0;
  }
  .whatsapp-float__label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-float,
  .whatsapp-float__label { transition: none; }
}


.faq-more {
	display: flex;
	justify-content: center;
	margin-top: 28px;
}

.faq-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 13px 20px;
	border: 1px solid rgba(0, 0, 0, 0.14);
	border-radius: 999px;
	background: transparent;
	color: inherit;
	font: inherit;
	font-size: 0.95rem;
	font-weight: 600;
	line-height: 1.2;
	cursor: pointer;
	transition:
		background-color 0.2s ease,
		border-color 0.2s ease,
		transform 0.2s ease;
}

.faq-toggle:hover {
	background: rgba(0, 0, 0, 0.04);
	border-color: rgba(0, 0, 0, 0.28);
}

.faq-toggle:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 4px;
}

.faq-toggle:active {
	transform: translateY(1px);
}

.faq-toggle-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1em;
	transition: transform 0.25s ease;
}

.faq-toggle[aria-expanded="true"] .faq-toggle-icon {
	transform: rotate(180deg);
}