:root {
  --waves-black: #111318;
  --waves-graphite: #262a30;
  --waves-yellow: #ffc629;
  --waves-white: #ffffff;
  --waves-mist: #f4f5f6;
  --waves-gray-300: #d9dadd;
  --waves-gray-500: #73777e;
  --waves-gray-700: #454950;
  --waves-error: #111318;
  --waves-success: #ffc629;
  --waves-container: 1240px;
  --waves-reading: 760px;
  --waves-radius-control: 8px;
  --waves-radius-card: 12px;
  --waves-radius-module: 16px;
  --waves-shadow: 0 18px 50px rgba(17, 19, 24, 0.09);
}

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

html {
  scroll-behavior: auto;
  scroll-padding-top: 92px;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--waves-black);
  background: var(--waves-white);
  font-family: Inter, Arial, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.admin-bar .waves-site-header {
  top: 32px;
}

.wp-site-blocks {
  padding: 0;
}

.waves-home :where(h1, h2, h3, p, ul, ol, figure) {
  margin-top: 0;
}

.waves-home :where(h1, h2, h3),
.waves-site-header,
.waves-site-footer {
  font-family: Montserrat, Inter, Arial, system-ui, sans-serif;
}

.waves-home h1 {
  max-width: 950px;
  margin-bottom: 28px;
  font-size: clamp(2.5rem, 5.2vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.waves-home h2 {
  margin-bottom: 24px;
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.waves-home h3 {
  margin-bottom: 14px;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.waves-home p {
  margin-bottom: 20px;
}

.waves-home a,
.waves-site-header a,
.waves-site-footer a {
  color: inherit;
}

a,
button,
input,
select,
textarea,
summary,
.wp-element-button {
  min-height: 44px;
}

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--waves-yellow);
  outline-offset: 3px;
}

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

.waves-narrow {
  max-width: var(--waves-reading);
}

.waves-section {
  padding-block: clamp(72px, 9vw, 120px);
}

.waves-section--mist {
  background: var(--waves-mist);
}

.waves-section--yellow {
  background: var(--waves-yellow);
}

.waves-section-dark {
  color: var(--waves-white);
  background: var(--waves-black);
}

.waves-section-dark :where(h1, h2, h3, p, a) {
  color: inherit;
}

.waves-kicker {
  margin-bottom: 18px;
  color: var(--waves-yellow);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.waves-kicker--dark,
.waves-section:not(.waves-section-dark) .waves-kicker {
  color: var(--waves-black);
}

.waves-lead {
  max-width: 760px;
  font-size: clamp(1.08rem, 1.8vw, 1.25rem);
  line-height: 1.55;
}

.waves-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 48px;
}

.waves-heading-row > :last-child {
  margin-bottom: 8px;
}

.waves-grid {
  display: grid;
  gap: 24px;
}

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

.waves-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}

.waves-card {
  position: relative;
  min-height: 240px;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--waves-gray-300);
  border-radius: var(--waves-radius-card);
  background: var(--waves-white);
}

.waves-card__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 36px;
  border-radius: 50%;
  color: var(--waves-black);
  background: var(--waves-yellow);
  font-size: 0.8rem;
  font-weight: 800;
}

.waves-problem-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.waves-problem-card {
  display: grid;
  min-height: 330px;
  align-content: start;
  justify-items: start;
  gap: 14px;
  padding: clamp(26px, 3vw, 36px);
  border: 1px solid var(--waves-gray-300);
  border-radius: var(--waves-radius-card);
  color: var(--waves-black);
  background: var(--waves-white);
  text-align: left;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.waves-problem-card:hover {
  border-color: var(--waves-black);
  box-shadow: var(--waves-shadow);
  transform: translateY(-3px);
}

.waves-problem-card[aria-pressed="true"] {
  border-color: var(--waves-black);
  background: #fff8df;
  box-shadow: inset 0 0 0 2px var(--waves-yellow);
}

.waves-problem-card:focus-visible {
  outline-color: var(--waves-black);
}

.waves-problem-card__icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 50%;
  background: var(--waves-yellow);
}

.waves-problem-card__icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.waves-problem-card .waves-card__index {
  width: auto;
  height: auto;
  margin: 4px 0 0;
  color: var(--waves-gray-700);
  background: transparent;
}

.waves-problem-card > strong {
  font-family: Montserrat, Inter, Arial, system-ui, sans-serif;
  font-size: 1.25rem;
  line-height: 1.2;
}

.waves-problem-card > span:not(.waves-problem-card__icon):not(.waves-card__index) {
  line-height: 1.5;
}

.waves-problem-card small {
  color: var(--waves-gray-700);
  font-size: 0.82rem;
}

.waves-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.waves-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 2px solid transparent;
  border-radius: var(--waves-radius-control);
  font-family: Inter, Arial, system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 750;
  line-height: 1.15;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.waves-button--primary {
  color: var(--waves-black) !important;
  background: var(--waves-yellow);
  border-color: var(--waves-yellow);
}

.waves-button--primary:hover {
  background: #ffd45e;
  border-color: #ffd45e;
}

.waves-button--secondary-light {
  color: var(--waves-white) !important;
  border-color: rgba(255, 255, 255, 0.72);
  background: transparent;
}

.waves-button--secondary-light:hover {
  color: var(--waves-black) !important;
  background: var(--waves-white);
}

.waves-button--dark {
  color: var(--waves-white) !important;
  background: var(--waves-black);
  border-color: var(--waves-black);
}

.waves-button--dark:hover {
  background: var(--waves-graphite);
}

.waves-button--outline {
  color: var(--waves-black) !important;
  border-color: var(--waves-black);
  background: transparent;
}

.waves-button--outline:hover {
  color: var(--waves-white) !important;
  background: var(--waves-black);
}

.waves-text-link,
.waves-service-card a,
.waves-case-placeholder a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  font-weight: 750;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.waves-skip-link {
  position: fixed;
  z-index: 99999;
  top: 10px;
  left: 12px;
  padding: 12px 16px;
  color: var(--waves-black);
  background: var(--waves-yellow);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-150%);
}

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

.waves-site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  min-height: 80px;
  border-bottom: 1px solid rgba(17, 19, 24, 0.12);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
}

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

.waves-wordmark {
  display: inline-flex;
  min-width: 154px;
  align-items: center;
  text-decoration: none;
}

.waves-wordmark img {
  display: block;
  width: 178px;
  height: auto;
}

.waves-wordmark strong {
  font-size: 1.38rem;
  letter-spacing: 0.14em;
}

.waves-wordmark span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.31em;
}

.waves-wordmark small {
  margin-top: 7px;
  font-family: Inter, Arial, system-ui, sans-serif;
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.waves-primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 1.55vw, 25px);
}

.waves-primary-nav > a:not(.waves-button) {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  font-size: 0.84rem;
  font-weight: 650;
  text-decoration: none;
}

.waves-primary-nav > a:not(.waves-button):hover {
  text-decoration: underline;
  text-decoration-color: var(--waves-yellow);
  text-decoration-thickness: 3px;
  text-underline-offset: 7px;
}

.waves-nav-services {
  position: relative;
}

.waves-nav-services summary {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 7px;
  font-size: 0.84rem;
  font-weight: 650;
  cursor: pointer;
  list-style: none;
}

.waves-nav-services summary::-webkit-details-marker {
  display: none;
}

.waves-nav-services summary::after {
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: translateY(-2px) rotate(45deg);
}

.waves-nav-services[open] summary::after {
  transform: translateY(2px) rotate(225deg);
}

.waves-nav-services__menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  display: grid;
  width: min(420px, calc(100vw - 40px));
  padding: 14px;
  border: 1px solid var(--waves-gray-300);
  border-radius: var(--waves-radius-card);
  background: var(--waves-white);
  box-shadow: var(--waves-shadow);
  transform: translateX(-50%);
}

.waves-nav-services__menu a {
  display: grid;
  min-height: 48px;
  align-content: center;
  padding: 9px 12px;
  border-radius: 6px;
  font-size: 0.83rem;
  text-decoration: none;
}

.waves-nav-services__menu a:hover {
  background: var(--waves-mist);
}

.waves-nav-services__menu a:first-child {
  margin-bottom: 6px;
  border-left: 4px solid var(--waves-yellow);
  background: #fff8df;
}

.waves-nav-services__menu span {
  color: var(--waves-gray-700);
  font-size: 0.72rem;
}

.waves-nav-cta {
  min-height: 48px;
  padding: 12px 16px;
  font-size: 0.78rem;
}

.waves-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 44px;
  min-height: 44px;
  border: 0;
  color: var(--waves-black);
  background: transparent;
  font-weight: 800;
  cursor: pointer;
}

.waves-menu-toggle i,
.waves-menu-toggle i::before,
.waves-menu-toggle i::after {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--waves-black);
  content: "";
}

.waves-menu-toggle i {
  position: relative;
}

.waves-menu-toggle i::before {
  position: absolute;
  top: -7px;
}

.waves-menu-toggle i::after {
  position: absolute;
  top: 7px;
}

.waves-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(72px, 9vw, 128px);
}

.waves-hero::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  pointer-events: none;
}

.waves-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}

.waves-hero__copy > p:not(.waves-kicker) {
  max-width: 760px;
  color: #d9dadd;
}

.waves-hero-placeholder {
  position: relative;
  display: grid;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 198, 41, 0.55);
  border-radius: var(--waves-radius-module);
  background: var(--waves-graphite);
  box-shadow: 18px 18px 0 rgba(255, 198, 41, 0.13);
}

.waves-hero-placeholder::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 74% 18%, rgba(255, 198, 41, 0.22), transparent 24%), repeating-linear-gradient(135deg, transparent 0 30px, rgba(255, 255, 255, 0.028) 30px 31px);
  content: "";
}

.waves-hero-placeholder__signal {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 52px;
}

.waves-hero-placeholder__signal span {
  width: 14px;
  height: var(--bar-height, 100px);
  border-radius: 20px;
  background: var(--waves-yellow);
  opacity: 0.92;
}

.waves-hero-placeholder__signal span:nth-child(1),
.waves-hero-placeholder__signal span:nth-child(5) { --bar-height: 78px; }
.waves-hero-placeholder__signal span:nth-child(2),
.waves-hero-placeholder__signal span:nth-child(4) { --bar-height: 164px; }
.waves-hero-placeholder__signal span:nth-child(3) { --bar-height: 246px; }

.waves-hero-placeholder figcaption {
  position: relative;
  z-index: 1;
  display: grid;
  align-self: end;
  padding: 24px;
  color: var(--waves-white);
  background: rgba(17, 19, 24, 0.88);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.waves-hero-placeholder figcaption span {
  margin-top: 6px;
  color: #bfc1c5;
  font-size: 0.68rem;
}

.waves-hero-media {
  position: relative;
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 198, 41, 0.5);
  border-radius: var(--waves-radius-module);
  background: var(--waves-graphite);
  box-shadow: 18px 18px 0 rgba(255, 198, 41, 0.13);
}

.waves-hero-media picture,
.waves-hero-media img,
.waves-page-hero__media picture,
.waves-page-hero__media img,
.waves-authority__media picture,
.waves-authority__media img,
.waves-media-card picture,
.waves-media-card img,
.waves-process-media picture,
.waves-process-media img {
  display: block;
  width: 100%;
  height: 100%;
}

.waves-hero-media img,
.waves-page-hero__media img,
.waves-authority__media img,
.waves-media-card img,
.waves-process-media img {
  object-fit: cover;
}

.waves-hero-media figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 16px;
  padding: 16px 18px;
  color: var(--waves-white);
  background: rgba(17, 19, 24, 0.88);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.waves-card--media {
  padding: 0;
  overflow: hidden;
}

.waves-card--media picture,
.waves-card--media img {
  display: block;
  width: 100%;
}

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

.waves-card--media > div {
  padding: clamp(24px, 3vw, 34px);
}

.waves-card--media .waves-card__index {
  margin-bottom: 24px;
}

.waves-selector-intro {
  max-width: 820px;
  margin-bottom: 42px;
}

.waves-selector-layout {
  display: grid;
  gap: 42px;
}

.waves-selector {
  max-width: 1120px;
  margin-inline: auto;
  padding: clamp(24px, 4vw, 44px);
  border: 2px solid var(--waves-black);
  border-radius: var(--waves-radius-module);
  background: var(--waves-white);
  box-shadow: 14px 14px 0 var(--waves-black);
}

.waves-selector-progress {
  display: grid;
  grid-template-columns: minmax(180px, auto) minmax(220px, 1fr);
  gap: 28px;
  align-items: center;
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--waves-gray-300);
}

.waves-selector-progress > div {
  display: grid;
  gap: 2px;
}

.waves-selector-progress span {
  color: var(--waves-gray-700);
  font-size: 0.86rem;
}

.waves-selector-progress progress {
  width: 100%;
  height: 12px;
  overflow: hidden;
  border: 0;
  border-radius: 100px;
  color: var(--waves-yellow);
  background: var(--waves-gray-300);
}

.waves-selector-progress progress::-webkit-progress-bar {
  background: var(--waves-gray-300);
}

.waves-selector-progress progress::-webkit-progress-value {
  background: var(--waves-yellow);
}

.waves-selector-progress progress::-moz-progress-bar {
  background: var(--waves-yellow);
}

.waves-selector fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.waves-selector legend {
  width: 100%;
  margin-bottom: 10px;
  font-family: Montserrat, Inter, Arial, system-ui, sans-serif;
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
}

.waves-step-help {
  max-width: 760px;
  margin-bottom: 24px !important;
  color: var(--waves-gray-700);
}

.waves-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

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

.waves-choice-grid label {
  position: relative;
  cursor: pointer;
}

.waves-choice-grid input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.waves-choice-grid label > span {
  display: grid;
  min-height: 104px;
  align-content: center;
  gap: 6px;
  padding: 18px;
  border: 1px solid var(--waves-gray-300);
  border-radius: var(--waves-radius-control);
  background: var(--waves-white);
  transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.waves-choice-grid label:hover > span {
  border-color: var(--waves-black);
  transform: translateY(-2px);
}

.waves-choice-grid strong {
  font-size: 0.95rem;
  line-height: 1.35;
}

.waves-choice-grid small {
  color: var(--waves-gray-700);
  font-size: 0.78rem;
  line-height: 1.4;
}

.waves-choice-grid input:checked + span {
  border-color: var(--waves-black);
  background: #fff3c5;
  box-shadow: inset 0 0 0 2px var(--waves-yellow);
}

.waves-choice-grid input:focus-visible + span {
  outline: 3px solid var(--waves-black);
  outline-offset: 3px;
}

.waves-selector-secondary,
.waves-selector-subquestion {
  margin-top: 28px;
  padding-top: 26px;
  border-top: 1px solid var(--waves-gray-300);
}

.waves-selector-secondary select {
  max-width: 540px;
}

.waves-selector-subquestion h3 {
  margin-bottom: 16px;
  font-size: 1.15rem;
}

.waves-selector-actions {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 30px;
}

.waves-form-error,
.waves-field-error {
  color: var(--waves-error);
  font-size: 0.84rem;
  font-weight: 700;
}

.waves-selector-result {
  margin-top: 34px;
  padding: clamp(24px, 4vw, 40px);
  border-left: 6px solid var(--waves-yellow);
  background: var(--waves-mist);
}

.waves-selector-result[hidden],
.waves-form-success[hidden],
[hidden] {
  display: none !important;
}

.waves-result-reason {
  max-width: 820px;
  font-size: 1.08rem;
}

.waves-result-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.waves-result-grid section,
.waves-result-alternative {
  padding: 20px;
  border: 1px solid var(--waves-gray-300);
  border-radius: var(--waves-radius-control);
  background: var(--waves-white);
}

.waves-result-grid h4,
.waves-result-alternative h4 {
  margin: 0 0 8px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.waves-result-grid p,
.waves-result-alternative p {
  margin: 0;
}

.waves-result-alternative {
  margin-top: 14px;
  border-left: 4px solid var(--waves-yellow);
}

.waves-result-note {
  margin: 18px 0 0 !important;
  color: var(--waves-gray-700);
  font-size: 0.86rem;
}

.waves-service-ladder {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.waves-service-card {
  grid-column: span 2;
  min-height: 310px;
  padding: 30px;
  border: 1px solid var(--waves-gray-300);
  border-radius: var(--waves-radius-card);
  background: var(--waves-white);
}

.waves-service-card > span,
.waves-application-grid article > span,
.waves-case-placeholder > span {
  display: block;
  margin-bottom: 22px;
  color: var(--waves-gray-700);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.waves-service-card--featured {
  border: 3px solid var(--waves-yellow);
  box-shadow: var(--waves-shadow);
}

.waves-service-card--secondary {
  background: var(--waves-mist);
}

.waves-service-card--plans {
  grid-column: 2 / span 2;
}

.waves-service-card--validation {
  grid-column: 4 / span 2;
}

.waves-technical-note {
  margin-top: 32px;
  padding: 20px 24px;
  border-left: 4px solid var(--waves-yellow);
  color: var(--waves-gray-700);
  background: var(--waves-white);
}

.waves-media-grid {
  display: grid;
  gap: 22px;
  margin-top: 44px;
}

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

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

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

.waves-media-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--waves-gray-300);
  border-radius: var(--waves-radius-card);
  background: var(--waves-white);
}

.waves-media-card picture {
	display: block;
	width: 100%;
	height: auto;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.waves-media-card img {
	display: block;
	width: 100%;
	height: 100%;
}

.waves-media-card figcaption {
	position: relative;
	display: block;
	height: auto;
	overflow: visible;
}

.waves-media-card figcaption,
.waves-process-media figcaption,
.waves-video-card figcaption {
  padding: 16px 18px;
  font-size: 0.82rem;
  font-weight: 750;
}

.waves-materials-visual {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
  min-height: 300px;
  padding: 40px;
  border-radius: var(--waves-radius-module);
  color: var(--waves-white);
  background: var(--waves-black);
  font-size: clamp(1.15rem, 2.5vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-align: center;
}

.waves-materials-visual span:nth-child(2) {
  color: var(--waves-yellow);
  font-size: 3rem;
}

.waves-emphasis {
  font-weight: 800;
}

.waves-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.waves-process li {
  position: relative;
  padding: 36px 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.waves-process li:not(:last-child)::after {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--waves-yellow);
  content: "";
}

.waves-process li > span {
  display: block;
  margin-bottom: 42px;
  color: var(--waves-yellow);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.waves-process p {
  color: #cfd1d5;
}

.waves-process-media {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 44px;
  overflow: hidden;
  border-radius: var(--waves-radius-card);
  background: rgba(255, 255, 255, 0.18);
}

.waves-process-media figure {
  margin: 0;
  background: var(--waves-graphite);
}

.waves-process-media picture {
  aspect-ratio: 4 / 5;
}

.waves-process-media figcaption {
  color: var(--waves-white);
}

.waves-application-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--waves-gray-300);
  border-left: 1px solid var(--waves-gray-300);
}

.waves-application-grid article {
  min-height: 230px;
  padding: 30px;
  border-right: 1px solid var(--waves-gray-300);
  border-bottom: 1px solid var(--waves-gray-300);
}

.waves-application-grid article > span {
  margin-top: 30px;
  margin-bottom: 0;
}

.waves-case-placeholder {
  overflow: hidden;
  border: 1px solid var(--waves-gray-300);
  border-radius: var(--waves-radius-card);
  background: var(--waves-white);
}

.waves-case-placeholder > div {
  display: grid;
  min-height: 210px;
  place-items: center;
  padding: 24px;
  color: #a8abb0;
  background-image: linear-gradient(45deg, transparent 48%, #dcdee1 49%, #dcdee1 51%, transparent 52%), linear-gradient(-45deg, transparent 48%, #dcdee1 49%, #dcdee1 51%, transparent 52%);
  background-color: var(--waves-mist);
  background-size: 34px 34px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.waves-case-placeholder > :not(div) {
  margin-right: 28px;
  margin-left: 28px;
}

.waves-case-placeholder > span {
  margin-top: 28px;
}

.waves-case-placeholder > a {
  margin-bottom: 28px;
}

.waves-authority {
  border-top: 10px solid var(--waves-yellow);
}

.waves-authority__media,
.waves-page-hero__media {
  min-height: 440px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--waves-radius-module);
  background: var(--waves-graphite);
}

.waves-contact--media {
  position: relative;
  isolation: isolate;
  background-image: linear-gradient(90deg, rgba(17, 19, 24, 0.98), rgba(17, 19, 24, 0.9)), url("../media/web/panel-oscuro-textura-1600x1000.webp");
  background-position: center;
  background-size: cover;
}

.waves-page-hero {
  padding-block: clamp(72px, 8vw, 112px);
}

.waves-page-hero h1,
.waves-page h1 {
  max-width: 900px;
}

.waves-process-diagram {
  margin: 56px 0 0;
  padding: 26px;
  overflow: hidden;
  border: 1px solid var(--waves-gray-300);
  border-radius: var(--waves-radius-card);
  background: var(--waves-white);
}

.waves-process-diagram img {
  display: block;
  width: 100%;
  height: auto;
}

.waves-process-diagram figcaption {
  padding-top: 16px;
  color: var(--waves-black);
  font-size: 0.82rem;
  font-weight: 750;
}

.waves-process-mobile {
	display: none;
	margin: 32px 0 0;
	padding: 0;
	list-style: none;
}

.waves-process-mobile li {
	position: relative;
	padding: 22px 20px 22px 72px;
	border: 1px solid var(--waves-gray-300);
	border-bottom: 0;
	background: var(--waves-white);
	color: var(--waves-black);
}

.waves-process-mobile li:last-child {
	border-bottom: 1px solid var(--waves-gray-300);
}

.waves-process-mobile span {
	position: absolute;
	top: 20px;
	left: 18px;
	display: grid;
	width: 38px;
	height: 38px;
	place-items: center;
	border-radius: 50%;
	background: var(--waves-yellow);
	font-size: .72rem;
	font-weight: 900;
}

.waves-process-mobile h3,
.waves-process-mobile p {
	margin: 0;
}

.waves-process-mobile p {
	margin-top: 6px;
}

.waves-video-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(48px, 7vw, 88px);
  align-items: center;
}

.waves-video-card {
  width: min(100%, 480px);
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--waves-radius-module);
  background: var(--waves-black);
  box-shadow: var(--waves-shadow);
}

.waves-video-card video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 480 / 848;
  background: var(--waves-black);
}

.waves-video-card figcaption {
  color: var(--waves-white);
}

.waves-test-badge--dark {
  color: var(--waves-black);
  border-color: var(--waves-black);
}

.waves-check-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.waves-check-list li {
  position: relative;
  min-height: 44px;
  padding: 10px 0 10px 38px;
  border-bottom: 1px solid var(--waves-gray-300);
}

.waves-check-list li::before {
  position: absolute;
  top: 15px;
  left: 4px;
  width: 14px;
  height: 8px;
  border-bottom: 3px solid var(--waves-black);
  border-left: 3px solid var(--waves-black);
  content: "";
  transform: rotate(-45deg);
}

.waves-faq {
  margin-top: 42px;
  border-top: 1px solid var(--waves-gray-300);
}

.waves-faq details {
  border-bottom: 1px solid var(--waves-gray-300);
}

.waves-faq summary {
  position: relative;
  display: flex;
  min-height: 70px;
  align-items: center;
  padding: 18px 50px 18px 0;
  font-size: 1.08rem;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

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

.waves-faq summary::after {
  position: absolute;
  right: 8px;
  content: "+";
  font-size: 1.8rem;
  font-weight: 400;
}

.waves-faq details[open] summary::after {
  content: "−";
}

.waves-faq details p {
  max-width: 680px;
  padding-bottom: 24px;
}

.waves-contact__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(48px, 7vw, 88px);
  align-items: start;
}

.waves-test-badge {
  display: inline-flex;
  padding: 8px 12px;
  border: 1px solid var(--waves-yellow);
  border-radius: 100px;
  color: var(--waves-yellow);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.waves-contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  padding: clamp(24px, 4vw, 40px);
  border-radius: var(--waves-radius-module);
  color: var(--waves-black);
  background: var(--waves-white);
}

.waves-field {
  display: grid;
  gap: 8px;
}

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

.waves-field label {
  font-weight: 750;
}

.waves-field label span {
  color: var(--waves-gray-500);
  font-size: 0.8rem;
  font-weight: 500;
}

.waves-field :where(input, select, textarea) {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--waves-gray-500);
  border-radius: var(--waves-radius-control);
  color: var(--waves-black);
  background: var(--waves-white);
}

.waves-field textarea {
  resize: vertical;
}

.waves-field [aria-invalid="true"] {
  border-color: var(--waves-error);
  box-shadow: 0 0 0 1px var(--waves-error);
}

.waves-consent {
  display: flex;
  min-height: 48px;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.waves-consent input {
  width: 22px;
  min-width: 22px;
  height: 22px;
  min-height: 22px;
  margin-top: 2px;
  accent-color: var(--waves-yellow);
}

.waves-form-success {
  padding: 20px;
  border-left: 5px solid var(--waves-success);
  background: #fff8df;
}

.waves-form-success p {
  margin: 6px 0 0;
}

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

.waves-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 42px;
  color: var(--waves-gray-700);
  font-size: 0.78rem;
}

.waves-breadcrumbs a {
  text-underline-offset: 4px;
}

.waves-breadcrumbs--light {
  color: #d9dadd;
}

.waves-page-hero__media {
  position: relative;
}

.waves-page-hero__media figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 14px 18px;
  color: var(--waves-white);
  background: rgba(17, 19, 24, 0.88);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.waves-selector-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: center;
}

.waves-selector-callout .waves-lead {
  margin-bottom: 0;
}

.waves-problem-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--waves-gray-300);
  border-left: 1px solid var(--waves-gray-300);
}

.waves-problem-summary article {
  min-height: 230px;
  padding: 30px;
  border-right: 1px solid var(--waves-gray-300);
  border-bottom: 1px solid var(--waves-gray-300);
}

.waves-problem-summary article > span,
.waves-info-cards article > span {
  display: inline-flex;
  min-width: 42px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  border-radius: 50%;
  color: var(--waves-black);
  background: var(--waves-yellow);
  font-size: 0.74rem;
  font-weight: 800;
}

.waves-services-map {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: services;
}

.waves-services-map li {
  position: relative;
  display: grid;
  grid-template-columns: 54px 88px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  min-height: 210px;
  padding: 34px;
  border: 1px solid var(--waves-gray-300);
  border-radius: var(--waves-radius-card);
  background: var(--waves-white);
}

.waves-services-map li:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  bottom: -20px;
  left: 60px;
  width: 2px;
  height: 20px;
  background: var(--waves-yellow);
  content: "";
}

.waves-services-map li.is-central {
  border: 3px solid var(--waves-yellow);
  box-shadow: var(--waves-shadow);
}

.waves-services-map__number {
  color: var(--waves-gray-500);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.waves-services-map img {
  display: block;
  width: 88px;
  height: 88px;
}

.waves-services-map h3 {
  margin-bottom: 8px;
}

.waves-services-map h3 small {
  color: var(--waves-gray-500);
  font-size: 0.72em;
}

.waves-services-map p {
  max-width: 760px;
  margin-bottom: 12px;
}

.waves-services-map a,
.waves-related-links a,
.waves-boundary-card a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  font-weight: 800;
  text-underline-offset: 5px;
}

.waves-service-label {
  margin-bottom: 8px !important;
  color: var(--waves-gray-700);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.waves-compare-wrap {
  border: 1px solid var(--waves-gray-300);
  border-radius: var(--waves-radius-card);
  overflow: hidden;
}

.waves-compare {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.waves-compare :where(th, td) {
  padding: 20px;
  border-bottom: 1px solid var(--waves-gray-300);
  text-align: left;
  vertical-align: top;
}

.waves-compare thead th {
  color: var(--waves-white);
  background: var(--waves-black);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.waves-compare tbody th {
  width: 22%;
  font-family: Montserrat, Inter, Arial, system-ui, sans-serif;
}

.waves-compare tbody tr:last-child :where(th, td) {
  border-bottom: 0;
}

.waves-process-diagram--dark {
  border-color: rgba(255, 255, 255, 0.22);
}

.waves-service-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(72px, 8vw, 112px);
}

.waves-service-hero::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  pointer-events: none;
}

.waves-service-hero .waves-container {
  position: relative;
}

.waves-service-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.85fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}

.waves-service-hero__symbol {
  display: grid;
  min-height: 460px;
  align-content: center;
  justify-items: center;
  gap: 18px;
  padding: 42px;
  border: 1px solid rgba(255, 198, 41, 0.55);
  border-radius: var(--waves-radius-module);
  background: var(--waves-graphite);
  box-shadow: 18px 18px 0 rgba(255, 198, 41, 0.13);
  text-align: center;
}

.waves-service-hero__symbol.is-central {
  border-width: 3px;
}

.waves-service-hero__symbol > span {
  color: var(--waves-yellow);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.waves-service-hero__symbol img {
  width: min(220px, 70%);
  height: auto;
  filter: none;
}

.waves-service-hero__symbol strong {
  max-width: 360px;
  font-family: Montserrat, Inter, Arial, system-ui, sans-serif;
  font-size: 1.35rem;
  line-height: 1.2;
}

.waves-service-hero__symbol p {
  max-width: 330px;
  margin-bottom: 0;
  color: #cfd1d5;
}

.waves-boundary-card {
  padding: clamp(28px, 4vw, 42px);
  border-top: 8px solid var(--waves-yellow);
  border-radius: var(--waves-radius-card);
  background: var(--waves-mist);
}

.waves-boundary-card ul {
  margin: 24px 0;
  padding-left: 22px;
}

.waves-boundary-card li {
  margin-bottom: 10px;
}

.waves-deliverable-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.waves-deliverable-grid > article {
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--waves-gray-300);
  border-radius: var(--waves-radius-card);
  background: var(--waves-white);
}

.waves-deliverable-grid > article.is-included {
  border-top: 8px solid var(--waves-yellow);
}

.waves-limit-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.waves-limit-list li {
  position: relative;
  min-height: 44px;
  padding: 10px 0 10px 36px;
  border-bottom: 1px solid var(--waves-gray-300);
}

.waves-limit-list li::before {
  position: absolute;
  top: 13px;
  left: 6px;
  color: var(--waves-gray-500);
  content: "—";
  font-weight: 800;
}

.waves-info-cards,
.waves-scope-grid,
.waves-status-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.waves-info-cards--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.waves-info-cards article,
.waves-scope-grid article,
.waves-status-grid article {
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--waves-gray-300);
  border-radius: var(--waves-radius-card);
  background: var(--waves-white);
}

.waves-scope-grid article > span {
  display: inline-flex;
  margin-bottom: 30px;
  padding: 7px 10px;
  border-radius: 100px;
  color: var(--waves-black);
  background: var(--waves-yellow);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.waves-status-grid article {
  color: var(--waves-black);
}

.waves-status-grid article > span {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 30px;
  place-items: center;
  border-radius: 50%;
  color: var(--waves-black);
  background: var(--waves-yellow);
  font-size: 1.4rem;
  font-weight: 800;
}

.waves-service-transition {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(42px, 7vw, 88px);
  align-items: center;
}

.waves-related-links {
  display: grid;
  border-top: 1px solid var(--waves-gray-300);
}

.waves-related-links a {
  padding-block: 12px;
  border-bottom: 1px solid var(--waves-gray-300);
}

.waves-check-list--light li {
  border-bottom-color: rgba(255, 255, 255, 0.22);
}

.waves-check-list--light li::before {
  border-color: var(--waves-yellow);
}

.waves-technical-note--dark {
  color: #d9dadd;
  background: var(--waves-graphite);
}

.waves-site-footer {
  padding: 72px 0 26px;
  color: var(--waves-white);
  background: var(--waves-black);
}

.waves-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr;
  gap: 56px;
}

.waves-wordmark--light {
  color: var(--waves-white) !important;
}

.waves-footer-grid > div p {
  max-width: 360px;
  margin-top: 28px;
  color: #cfd1d5;
}

.waves-footer-grid nav {
  display: grid;
  align-content: start;
  gap: 8px;
}

.waves-footer-grid nav strong {
  margin-bottom: 12px;
  color: var(--waves-yellow);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.waves-footer-grid nav a,
.waves-footer-grid nav span {
  display: flex;
  min-height: 40px;
  align-items: center;
  color: #d9dadd;
  text-decoration: none;
}

.waves-footer-grid nav a:hover {
  color: var(--waves-white);
  text-decoration: underline;
  text-decoration-color: var(--waves-yellow);
  text-underline-offset: 5px;
}

.waves-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  color: #aeb1b6;
  font-size: 0.74rem;
}

.waves-footer-bottom strong {
  color: var(--waves-yellow);
}

.waves-extensions {
  border-top: 1px solid var(--waves-gray-300);
}

.waves-extension-grid,
.waves-case-paths,
.waves-resource-grid,
.waves-training-grid,
.waves-info-grid,
.waves-comparison-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 36px;
  border-top: 1px solid var(--waves-gray-300);
  border-left: 1px solid var(--waves-gray-300);
}

.waves-extension-grid article,
.waves-case-paths article,
.waves-resource-grid article,
.waves-training-grid article,
.waves-info-grid article,
.waves-comparison-cards article {
  min-width: 0;
  padding: 28px;
  border-right: 1px solid var(--waves-gray-300);
  border-bottom: 1px solid var(--waves-gray-300);
  background: var(--waves-white);
}

.waves-extension-grid article > span,
.waves-case-paths article > span,
.waves-resource-grid article > span,
.waves-training-grid article > span,
.waves-info-grid article > span,
.waves-comparison-cards article > span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--waves-gray-700);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.waves-extension-grid h3,
.waves-case-paths h3,
.waves-resource-grid h3,
.waves-training-grid h3,
.waves-info-grid h3,
.waves-comparison-cards h3 {
  margin: 0 0 12px;
}

.waves-extension-grid p,
.waves-case-paths p,
.waves-resource-grid p,
.waves-training-grid p,
.waves-info-grid p,
.waves-comparison-cards p {
  margin-bottom: 18px;
}

.waves-extension-grid article:first-child,
.waves-case-paths article:first-child,
.waves-resource-grid article:first-child,
.waves-training-grid article:first-child,
.waves-info-grid article:first-child {
  border-top: 4px solid var(--waves-yellow);
}

.waves-extension-note {
  max-width: 880px;
  margin: 26px 0 16px;
}

.waves-application-grid article a,
.waves-case-paths a,
.waves-resource-grid a,
.waves-training-grid a,
.waves-comparison-cards a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--waves-black);
  font-weight: 750;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.waves-application-grid article a {
  margin-top: 14px;
}

.waves-case-paths {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

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

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

.waves-cta-band {
  padding-block: clamp(64px, 8vw, 110px);
}

.waves-cta-band__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: 48px;
  align-items: end;
}

.waves-cta-band__inner h2 {
  max-width: 840px;
  margin-bottom: 16px;
}

.waves-cta-band__inner p {
  max-width: 780px;
}

.waves-faq-index {
  position: sticky;
  z-index: 20;
  top: 0;
  padding-block: 14px;
  border-bottom: 1px solid var(--waves-gray-300);
  background: color-mix(in srgb, var(--waves-white) 96%, transparent);
  backdrop-filter: blur(12px);
}

.admin-bar .waves-faq-index {
  top: 32px;
}

.waves-faq-index .waves-container {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.waves-faq-index a {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 12px 16px;
  border: 1px solid var(--waves-gray-300);
  color: var(--waves-black);
  font-size: 0.84rem;
  font-weight: 750;
  text-decoration: none;
}

.waves-faq-index a:hover,
.waves-faq-index a:focus-visible {
  border-color: var(--waves-black);
  background: var(--waves-yellow);
}

.waves-booking-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.waves-booking-card {
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid var(--waves-gray-300);
  background: var(--waves-white);
}

.waves-booking-card > span {
  display: block;
  margin-bottom: 42px;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.waves-booking-card--primary {
  border-color: var(--waves-black);
  background: var(--waves-black);
  color: var(--waves-white);
}

.waves-booking-card--primary .waves-check-list li::before {
  color: var(--waves-yellow);
}

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

.waves-info-grid--5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.waves-scope-card {
  align-self: stretch;
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid var(--waves-gray-300);
  background: var(--waves-white);
}

.waves-scope-card > span {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--waves-yellow);
  color: var(--waves-black);
  font-size: 1.4rem;
  font-weight: 900;
}

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

.waves-book-mark {
  display: grid;
  min-height: 470px;
  padding: clamp(28px, 5vw, 64px);
  align-content: space-between;
  border: 1px solid var(--waves-black);
  background: var(--waves-black);
  box-shadow: 18px 18px 0 rgba(0, 0, 0, 0.18);
  color: var(--waves-white);
}

.waves-book-mark span {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 50%;
  background: var(--waves-yellow);
  color: var(--waves-black);
  font-size: 1.4rem;
  font-weight: 900;
}

.waves-book-mark strong {
  max-width: 10ch;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 0.92;
}

.waves-book-mark small,
.waves-book-mark p {
  display: block;
  margin: 0 0 14px;
  color: var(--waves-yellow);
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.waves-course-grid,
.waves-project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 42px;
}

.waves-course-card,
.waves-project-card {
  display: flex;
  min-width: 0;
  padding: clamp(26px, 4vw, 44px);
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--waves-gray-300);
  background: var(--waves-white);
}

.waves-course-card--featured,
.waves-project-card--featured {
  border-color: var(--waves-black);
  background: var(--waves-black);
  color: var(--waves-white);
}

.waves-course-card__index {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--waves-yellow);
  color: var(--waves-black);
  font-weight: 900;
}

.waves-course-card__type,
.waves-project-card__header span {
  margin-bottom: 10px;
  color: var(--waves-gray-700);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.11em;
}

.waves-course-card--featured .waves-course-card__type,
.waves-project-card--featured .waves-project-card__header span {
  color: var(--waves-yellow);
}

.waves-course-card h3,
.waves-project-card h3 {
  margin-top: 0;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.waves-course-card dl {
  display: grid;
  width: 100%;
  margin: 24px 0;
  border-top: 1px solid var(--waves-gray-300);
}

.waves-course-card dl div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--waves-gray-300);
}

.waves-course-card dt {
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.waves-course-card dd {
  margin: 0;
}

.waves-course-card details {
  width: 100%;
  margin: 0 0 28px;
  border-bottom: 1px solid var(--waves-gray-300);
}

.waves-course-card summary {
  min-height: 48px;
  padding: 14px 0;
  cursor: pointer;
  font-weight: 800;
}

.waves-course-card details > div {
  padding: 0 0 18px;
}

.waves-course-card ol {
  padding-left: 20px;
}

.waves-course-card .waves-button {
  margin-top: auto;
}

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

.waves-project-card__header {
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 34px;
}

.waves-project-card__header strong {
  display: grid;
  min-width: 44px;
  min-height: 44px;
  padding: 8px;
  place-items: center;
  border-radius: 50%;
  background: var(--waves-yellow);
  color: var(--waves-black);
  font-size: 0.72rem;
}

.waves-project-card ul {
  padding-left: 20px;
}

.waves-project-card a {
  display: inline-flex;
  min-height: 44px;
  margin-top: auto;
  align-items: center;
  color: inherit;
  font-weight: 800;
  text-underline-offset: 4px;
}

.waves-project-metric {
  display: grid;
  margin: 18px 0 28px;
  gap: 4px;
}

.waves-project-metric strong {
  color: var(--waves-black);
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1;
}

.waves-project-card--featured .waves-project-metric strong {
  color: var(--waves-yellow);
}

.waves-book-index {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 42px 0 0;
  padding: 0;
  border-top: 1px solid var(--waves-gray-300);
  border-left: 1px solid var(--waves-gray-300);
  list-style: none;
}

.waves-book-index li {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  padding: 26px;
  border-right: 1px solid var(--waves-gray-300);
  border-bottom: 1px solid var(--waves-gray-300);
}

.waves-book-index li > span {
  color: var(--waves-gray-700);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.waves-book-index h3,
.waves-book-index p {
  margin-top: 0;
}

.waves-training-card--paused {
  background: var(--waves-mist) !important;
}

.waves-training-card--paused strong {
  display: inline-flex;
  min-height: 44px;
  margin-top: auto;
  align-items: center;
  color: var(--waves-gray-700);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.waves-legal-content {
  max-width: 900px;
}

.waves-legal-content h2 {
  margin-top: 48px;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.waves-about-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  gap: clamp(40px, 8vw, 110px);
  align-items: center;
}

.waves-about-signature {
  display: grid;
  min-height: 430px;
  padding: clamp(28px, 4vw, 54px);
  align-content: end;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background:
    linear-gradient(145deg, transparent 0 54%, rgba(255, 213, 0, 0.12) 54% 100%),
    var(--waves-graphite);
}

.waves-about-signature img {
  width: 72px;
  height: 72px;
  margin-bottom: auto;
  object-fit: contain;
}

.waves-about-signature p,
.waves-about-signature span {
  margin: 0;
  color: var(--waves-gray-300);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.waves-about-signature strong {
  margin: 12px 0 4px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
}

.waves-consent a,
.waves-site-footer a {
  color: inherit;
}

@media (max-width: 1180px) {
  .waves-primary-nav {
    gap: 12px;
  }

  .waves-primary-nav > a:not(.waves-button) {
    font-size: 0.76rem;
  }

  .waves-nav-services summary {
    font-size: 0.76rem;
  }

  .waves-nav-cta {
    display: none;
  }
}

@media (max-width: 1024px) {
  body.admin-bar .waves-site-header {
    top: 32px;
  }

  .waves-container {
    width: min(calc(100% - 40px), var(--waves-container));
  }

  .waves-menu-toggle {
    display: inline-flex;
  }

  .waves-primary-nav {
    position: absolute;
    top: 100%;
    right: 20px;
    left: 20px;
    display: none;
    padding: 20px;
    border: 1px solid var(--waves-gray-300);
    border-radius: var(--waves-radius-card);
    background: var(--waves-white);
    box-shadow: var(--waves-shadow);
  }

  .waves-primary-nav.is-open {
    display: grid;
  }

  .waves-primary-nav > a:not(.waves-button) {
    min-height: 50px;
    padding: 0 12px;
    font-size: 0.95rem;
  }

  .waves-nav-services summary {
    width: 100%;
    min-height: 50px;
    justify-content: space-between;
    padding: 0 12px;
    font-size: 0.95rem;
  }

  .waves-nav-services__menu {
    position: static;
    width: 100%;
    margin-top: 4px;
    padding: 8px;
    border-radius: var(--waves-radius-control);
    box-shadow: none;
    transform: none;
  }

  .waves-primary-nav .waves-nav-cta {
    display: inline-flex;
    margin-top: 6px;
  }

  .waves-hero__grid,
  .waves-selector-layout,
  .waves-contact__grid,
  .waves-video-layout,
  .waves-service-hero__grid,
  .waves-selector-callout,
  .waves-service-transition {
    grid-template-columns: 1fr;
  }

  .waves-hero-placeholder {
    min-height: 420px;
  }

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

  .waves-problem-grid,
  .waves-choice-grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .waves-media-grid--4,
  .waves-media-grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .waves-problem-summary,
  .waves-info-cards--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .waves-service-card,
  .waves-service-card--secondary,
  .waves-service-card--plans {
    grid-column: auto;
  }

  .waves-service-card--validation {
    grid-column: 1 / -1;
    width: calc(50% - 9px);
    justify-self: center;
  }

  .waves-process,
  .waves-application-grid,
  .waves-process-media {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .waves-extension-grid,
  .waves-case-paths,
  .waves-resource-grid,
  .waves-info-grid,
  .waves-info-grid--5 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .waves-cta-band__inner,
  .waves-about-hero__grid {
    grid-template-columns: 1fr;
  }

  .waves-service-hero__symbol {
    min-height: 380px;
  }

  .waves-process li:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 782px) {
  body.admin-bar .waves-site-header {
    top: 46px;
  }
}

@media (max-width: 767px) {
  html {
    scroll-padding-top: 78px;
  }

  body.admin-bar .waves-site-header {
    position: relative;
    top: 0;
  }

  .waves-container {
    width: min(calc(100% - 40px), var(--waves-container));
  }

  .waves-section {
    padding-block: 72px;
  }

  .waves-site-header,
  .waves-site-header__inner {
    min-height: 72px;
  }

  .waves-wordmark {
    min-width: 140px;
  }

  .waves-wordmark strong {
    font-size: 1.18rem;
  }

  .waves-wordmark span {
    font-size: 0.7rem;
  }

  .waves-home h1 {
    font-size: clamp(2.25rem, 10.5vw, 2.7rem);
  }

  .waves-home h2 {
    font-size: clamp(1.8rem, 8vw, 2.2rem);
  }

  .waves-heading-row,
  .waves-split,
  .waves-grid--3,
  .waves-problem-grid,
  .waves-problem-summary,
  .waves-service-ladder,
  .waves-process,
  .waves-application-grid,
  .waves-footer-grid,
  .waves-media-grid--4,
  .waves-media-grid--3,
  .waves-media-grid--2,
  .waves-process-media,
  .waves-deliverable-grid,
  .waves-info-cards,
  .waves-info-cards--4,
  .waves-scope-grid,
  .waves-status-grid {
    grid-template-columns: 1fr;
  }

  .waves-extension-grid,
  .waves-case-paths,
  .waves-resource-grid,
  .waves-training-grid,
  .waves-info-grid,
  .waves-info-grid--5,
  .waves-comparison-cards,
  .waves-booking-grid,
  .waves-cta-band__inner,
  .waves-about-hero__grid {
    grid-template-columns: 1fr;
  }

  .waves-course-grid,
  .waves-project-grid,
  .waves-book-index {
    grid-template-columns: 1fr;
  }

  .waves-course-card dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .waves-extension-grid article,
  .waves-case-paths article,
  .waves-resource-grid article,
  .waves-training-grid article,
  .waves-info-grid article,
  .waves-comparison-cards article {
    padding: 24px;
  }

  .waves-book-mark,
  .waves-about-signature {
    min-height: 360px;
  }

  .waves-faq-index {
    position: relative;
    top: auto;
  }

  .waves-heading-row {
    gap: 8px;
    margin-bottom: 36px;
  }

  .waves-actions,
  .waves-actions .waves-button {
    width: 100%;
  }

  .waves-hero {
    padding-block: 72px;
  }

  .waves-hero__grid {
    gap: 52px;
  }

  .waves-hero-placeholder,
  .waves-hero-media {
    order: 2;
    min-height: 390px;
  }

  .waves-hero-media picture,
  .waves-hero-media img {
    min-height: 390px;
  }

  .waves-wordmark img {
    width: 152px;
  }

  .waves-page-hero__media,
  .waves-authority__media {
    min-height: 360px;
  }

  .waves-breadcrumbs {
    margin-bottom: 30px;
  }

  .waves-service-hero__symbol {
    min-height: 330px;
    padding: 32px 24px;
    box-shadow: 10px 10px 0 rgba(255, 198, 41, 0.13);
  }

  .waves-services-map li {
    grid-template-columns: 42px 64px minmax(0, 1fr);
    gap: 16px;
    min-height: auto;
    padding: 24px 20px;
  }

  .waves-services-map li:not(:last-child)::after {
    left: 40px;
  }

  .waves-services-map img {
    width: 64px;
    height: 64px;
  }

  .waves-problem-summary article,
  .waves-info-cards article,
  .waves-scope-grid article,
  .waves-status-grid article {
    min-height: auto;
  }

  .waves-compare-wrap {
    border: 0;
    overflow: visible;
  }

  .waves-compare,
  .waves-compare tbody,
  .waves-compare tr,
  .waves-compare :where(th, td) {
    display: block;
    width: 100%;
  }

  .waves-compare thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .waves-compare tr {
    margin-bottom: 18px;
    overflow: hidden;
    border: 1px solid var(--waves-gray-300);
    border-radius: var(--waves-radius-card);
    background: var(--waves-white);
  }

  .waves-compare tbody th {
    padding: 20px;
    border-bottom: 4px solid var(--waves-yellow);
    background: var(--waves-black);
    color: var(--waves-white);
  }

  .waves-compare td {
    position: relative;
    padding: 44px 20px 18px;
  }

  .waves-compare td::before {
    position: absolute;
    top: 16px;
    left: 20px;
    color: var(--waves-gray-700);
    content: attr(data-label);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .waves-compare tbody tr:last-child :where(th, td) {
    border-bottom: 1px solid var(--waves-gray-300);
  }

  .waves-compare tbody tr:last-child td:last-child,
  .waves-compare tbody tr :last-child {
    border-bottom: 0;
  }

  .waves-choice-grid,
  .waves-choice-grid--3,
  .waves-contact-form {
    grid-template-columns: 1fr;
  }

  .waves-problem-card {
    min-height: auto;
  }

  .waves-selector-progress,
  .waves-result-grid {
    grid-template-columns: 1fr;
  }

  .waves-selector-progress {
    gap: 14px;
  }

  .waves-selector-actions {
    display: grid;
  }

  .waves-selector-actions .waves-button {
    width: 100%;
  }

  .waves-selector {
    padding: 22px;
    box-shadow: 8px 8px 0 var(--waves-black);
  }

  .waves-service-card,
  .waves-service-card--featured,
  .waves-service-card--secondary,
  .waves-service-card--plans,
  .waves-service-card--validation {
    grid-column: auto;
    width: 100%;
    min-height: auto;
  }

  .waves-process li {
    padding: 26px 8px 28px 54px;
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.25);
  }

  .waves-process li:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: -5px;
    left: -5px;
    display: block;
  }

  .waves-process li > span {
    position: absolute;
    top: 28px;
    left: 14px;
    margin: 0;
  }

  .waves-application-grid {
    border-top: 1px solid var(--waves-gray-300);
    border-left: 1px solid var(--waves-gray-300);
  }

  .waves-materials-visual {
    min-height: 230px;
    padding: 26px 18px;
  }

  .waves-contact-form {
    padding: 22px;
  }

  .waves-selector-callout .waves-button {
    width: 100%;
  }

  .waves-field--full {
    grid-column: auto;
  }

  .waves-footer-grid {
    gap: 36px;
  }

  .waves-footer-bottom {
    display: grid;
    gap: 10px;
  }
}

@media (max-width: 390px) {
  .waves-container {
    width: calc(100% - 40px);
  }

  .waves-home h1 {
    font-size: 2.2rem;
  }

  .waves-menu-toggle span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .waves-hero-placeholder {
    min-height: 340px;
  }

  .waves-hero-placeholder__signal {
    gap: 12px;
    padding: 30px;
  }

  .waves-hero-placeholder__signal span:nth-child(3) {
    --bar-height: 190px;
  }

  .waves-materials-visual {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .waves-services-map li {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .waves-services-map li img {
    grid-row: span 2;
    grid-column: 2;
    width: 58px;
    height: 58px;
  }

  .waves-services-map li > div {
    grid-column: 1 / -1;
  }
}

/* Blog y biblioteca editorial */
.waves-blog-library {
  background: var(--waves-white);
}

.waves-blog-search {
  margin-bottom: 28px;
  padding: 24px;
  border: 1px solid var(--waves-gray-300);
  border-radius: var(--waves-radius-module);
  background: var(--waves-mist);
}

.waves-blog-search > label {
  display: block;
  margin-bottom: 10px;
  font-weight: 800;
}

.waves-blog-search__controls {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(240px, 0.55fr) auto;
  gap: 12px;
}

.waves-blog-search :where(input, select) {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid var(--waves-gray-500);
  border-radius: var(--waves-radius-control);
  background: var(--waves-white);
  color: var(--waves-black);
}

.waves-category-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 42px;
}

.waves-category-chips a {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  min-height: 44px;
  padding: 9px 14px;
  border: 1px solid var(--waves-gray-300);
  border-radius: 999px;
  color: var(--waves-black);
  font-size: 0.9rem;
  font-weight: 750;
  text-decoration: none;
}

.waves-category-chips a:hover,
.waves-category-chips a.is-active {
  border-color: var(--waves-black);
  background: var(--waves-black);
  color: var(--waves-white);
}

.waves-category-chips span {
  display: grid;
  min-width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 999px;
  background: var(--waves-yellow);
  color: var(--waves-black);
  font-size: 0.75rem;
}

.waves-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin: 0;
  padding: 0;
}

.waves-blog-card {
  display: flex;
  min-width: 0;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--waves-gray-300);
  border-radius: var(--waves-radius-card);
  background: var(--waves-white);
  box-shadow: 0 10px 30px rgba(17, 19, 24, 0.05);
  flex-direction: column;
}

.waves-blog-card__media {
  display: grid;
  width: 100%;
  min-height: 220px;
  overflow: hidden;
  place-items: center;
  background: var(--waves-graphite);
  color: var(--waves-yellow);
  text-decoration: none;
}

.waves-blog-card__media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 180ms ease;
}

.waves-blog-card__media img.waves-blog-card__image--contained {
	object-fit: contain;
	padding: 12px;
	background: linear-gradient(135deg, #111318, #25282e);
}

.waves-blog-card:hover .waves-blog-card__media img {
  transform: scale(1.025);
}

.waves-blog-card__media > span {
  color: var(--waves-yellow);
  font-family: Montserrat, Inter, sans-serif;
  font-size: 4rem;
  font-weight: 900;
}

.waves-blog-card__body {
  display: flex;
  min-height: 0;
  padding: 24px;
  flex: 1;
  flex-direction: column;
}

.waves-blog-card__meta {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  color: var(--waves-gray-700);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.waves-blog-card__meta a {
  color: inherit;
  text-decoration: none;
}

.waves-blog-card h3,
.waves-blog-card h2 {
  margin-bottom: 14px;
  font-size: 1.25rem;
  line-height: 1.25;
}

.waves-blog-card h3 a,
.waves-blog-card h2 a {
  color: var(--waves-black);
  text-decoration: none;
}

.waves-blog-card p {
  color: var(--waves-gray-700);
}

.waves-blog-card .waves-link-arrow {
  margin-top: auto;
}

.waves-blog-pagination {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin-top: 48px;
}

.waves-blog-pagination a,
.waves-blog-pagination .page-numbers {
  display: grid;
  min-width: 44px;
  min-height: 44px;
  padding: 8px;
  place-items: center;
  border: 1px solid var(--waves-gray-300);
  border-radius: var(--waves-radius-control);
  color: var(--waves-black);
  text-decoration: none;
}

.waves-blog-pagination a:hover,
.waves-blog-pagination a.is-current,
.waves-blog-pagination .current {
  border-color: var(--waves-black);
  background: var(--waves-black);
  color: var(--waves-white);
}

.waves-blog-empty {
  padding: 48px;
  border: 1px solid var(--waves-gray-300);
  border-radius: var(--waves-radius-module);
  text-align: center;
}

.waves-article-hero,
.waves-archive-hero {
  padding-top: clamp(72px, 8vw, 110px);
  padding-bottom: clamp(56px, 7vw, 90px);
}

.waves-article-title,
.waves-archive-title {
  margin-top: 16px;
  margin-bottom: 20px;
}

.waves-article-category a {
  color: var(--waves-yellow);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.waves-article-date {
  color: var(--waves-gray-300);
}

.waves-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 820px) minmax(260px, 320px);
  gap: clamp(40px, 7vw, 84px);
  align-items: start;
}

.waves-article-body {
  min-width: 0;
  font-size: 1.06rem;
  line-height: 1.75;
}

.waves-article-body :where(h2, h3) {
  margin-top: 2.2em;
}

.waves-article-body :where(img, video, iframe) {
  max-width: 100%;
  height: auto;
}

.waves-article-body figure {
  max-width: 100%;
  margin: 32px 0;
}

.waves-article-body figcaption {
  margin-top: 8px;
  color: var(--waves-gray-700);
  font-size: 0.85rem;
}

.waves-article-body a {
  color: var(--waves-black);
  text-decoration-color: var(--waves-yellow);
  text-decoration-thickness: 3px;
  text-underline-offset: 3px;
}

.waves-article-featured {
  margin-bottom: 36px;
  overflow: hidden;
  border-radius: var(--waves-radius-module);
}

.waves-article-featured img {
  width: 100%;
  object-fit: cover;
}

.waves-article-featured img.waves-image--contained {
  max-height: 760px;
  object-fit: contain;
  padding: clamp(12px, 2.5vw, 28px);
  background: linear-gradient(135deg, #111318, #25282e);
}

.waves-article-aside {
  position: sticky;
  top: 110px;
  padding: 28px;
  border-top: 5px solid var(--waves-yellow);
  border-radius: 0 0 var(--waves-radius-module) var(--waves-radius-module);
  background: var(--waves-mist);
}

.waves-article-aside h2 {
  font-size: 1.45rem;
}

.waves-article-aside .waves-button {
  width: 100%;
  margin-bottom: 18px;
}

.waves-archive-description {
  max-width: 760px;
  font-size: 1.1rem;
}

.waves-archive-tools {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.waves-archive-query .wp-block-post-template {
  margin: 0;
  padding: 0;
}

@media (max-width: 1024px) {
  .waves-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .waves-article-layout {
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 40px;
  }
}

@media (max-width: 767px) {
	.waves-media-card picture {
		aspect-ratio: 4 / 5;
	}

	.waves-media-card--sonometer img { object-position: 50% 48%; }
	.waves-media-card--technician img { object-position: 42% 46%; }
	.waves-media-card--field img { object-position: 50% 44%; }
	.waves-media-card--installation img { object-position: 56% 48%; }

	.waves-process-diagram {
		display: none;
	}

	.waves-process-mobile {
		display: block;
	}

  .waves-blog-search__controls,
  .waves-blog-grid,
  .waves-article-layout {
    grid-template-columns: 1fr;
  }

  .waves-blog-search__controls .waves-button {
    width: 100%;
  }

  .waves-blog-card__media,
  .waves-blog-card__media img {
    min-height: 190px;
    height: 190px;
  }

  .waves-blog-card__meta,
  .waves-archive-tools {
    align-items: flex-start;
    flex-direction: column;
  }

  .waves-article-aside {
    position: static;
  }

  .waves-blog-empty {
    padding: 32px 22px;
  }
}

/* Hubs administrables de casos y cursos */
.waves-about-story {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  gap: clamp(48px, 7vw, 88px);
  align-items: center;
}

.waves-about-photo {
  margin: 0;
  overflow: hidden;
  border-radius: var(--waves-radius-module);
  background: var(--waves-graphite);
  box-shadow: 18px 18px 0 rgba(255, 198, 41, .18);
}

.waves-about-photo picture,
.waves-about-photo img { display: block; width: 100%; }
.waves-about-photo img { aspect-ratio: 4 / 5; object-fit: cover; object-position: 42% 48%; }
.waves-about-photo figcaption { padding: 14px 18px; color: var(--waves-white); font-size: .78rem; font-weight: 750; }

.waves-timeline {
  display: grid;
  margin: 44px 0 0;
  padding: 0;
  border-left: 4px solid var(--waves-yellow);
  list-style: none;
}

.waves-timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 28px;
  padding: 8px 0 34px 34px;
}

.waves-timeline li::before {
  position: absolute;
  top: 12px;
  left: -10px;
  width: 16px;
  height: 16px;
  border: 4px solid var(--waves-white);
  border-radius: 50%;
  background: var(--waves-black);
  content: "";
}

.waves-timeline time { font-weight: 900; }
.waves-timeline h3 { margin: 0 0 8px; }
.waves-timeline p { margin: 0; }

.waves-case-filters {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 38px 0 20px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--waves-gray-300);
  border-radius: var(--waves-radius-module);
  background: var(--waves-mist);
}

.waves-case-filters .waves-field--search {
  grid-column: span 2;
}

.waves-case-filters .waves-button {
  align-self: end;
}

.waves-filter-status {
  min-height: 1.5em;
  color: var(--waves-gray-700);
  font-weight: 700;
}

.waves-case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.waves-case-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.waves-case-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--waves-gray-300);
  border-radius: var(--waves-radius-card);
  background: var(--waves-white);
  flex-direction: column;
}

.waves-case-card[hidden] { display: none; }

.waves-case-card__media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--waves-graphite);
}

.waves-case-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.waves-case-card__body {
  display: flex;
  padding: 24px;
  flex: 1;
  flex-direction: column;
}

.waves-case-card__eyebrow {
  color: var(--waves-gray-700);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.waves-case-card h3 { font-size: 1.35rem; }
.waves-case-card h3 a { color: inherit; text-decoration: none; }
.waves-case-card dl { margin-top: auto; border-top: 1px solid var(--waves-gray-300); }
.waves-case-card dl div { display: grid; grid-template-columns: 84px 1fr; gap: 12px; padding: 9px 0; border-bottom: 1px solid var(--waves-gray-300); }
.waves-case-card dt { font-size: .72rem; font-weight: 850; text-transform: uppercase; }
.waves-case-card dd { margin: 0; }
.waves-case-card .waves-link-arrow { margin-top: 20px; }

.waves-case-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.waves-case-facts span {
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 100px;
  font-size: .78rem;
}

.waves-case-story {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.waves-case-story article {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--waves-gray-300);
  background: var(--waves-white);
}

.waves-case-story .waves-case-result {
  grid-column: 1 / -1;
  border-top: 7px solid var(--waves-yellow);
}

.waves-course-card__media {
  width: calc(100% + clamp(52px, 8vw, 88px));
  margin: calc(clamp(26px, 4vw, 44px) * -1) calc(clamp(26px, 4vw, 44px) * -1) 28px;
  overflow: hidden;
  background: var(--waves-graphite);
}

.waves-course-card__media picture,
.waves-course-card__media img {
  display: block;
  width: 100%;
}

.waves-course-card__media img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.waves-course-card__media figcaption {
  padding: 10px 16px;
  background: var(--waves-graphite);
  color: var(--waves-white);
  font-size: .7rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.waves-course-card__actions {
  display: flex;
  width: 100%;
  gap: 10px;
  margin-top: auto;
  flex-wrap: wrap;
}

.waves-course-card__actions .waves-button { margin-top: 0; flex: 1 1 190px; }

.waves-course-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  gap: clamp(40px, 7vw, 88px);
  align-items: start;
}

.waves-course-facts {
  padding: 28px;
  border-top: 6px solid var(--waves-yellow);
  background: var(--waves-mist);
}

.waves-course-facts dl { margin: 0; }
.waves-course-facts dl div { padding: 12px 0; border-bottom: 1px solid var(--waves-gray-300); }
.waves-course-facts dt { font-size: .72rem; font-weight: 850; text-transform: uppercase; }
.waves-course-facts dd { margin: 4px 0 0; }

.waves-syllabus {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 34px 0;
  padding: 0;
  border-top: 1px solid var(--waves-gray-300);
  border-left: 1px solid var(--waves-gray-300);
  list-style: none;
}

.waves-syllabus li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  min-height: 96px;
  padding: 20px;
  align-items: center;
  border-right: 1px solid var(--waves-gray-300);
  border-bottom: 1px solid var(--waves-gray-300);
  background: var(--waves-white);
}

.waves-syllabus span { color: var(--waves-gray-700); font-size: .72rem; font-weight: 850; }

@media (max-width: 1024px) {
  .waves-case-filters { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .waves-case-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 767px) {
  .waves-about-story { grid-template-columns: 1fr; }
  .waves-timeline li { grid-template-columns: 1fr; gap: 6px; }
  .waves-case-filters,
  .waves-case-grid,
  .waves-case-story,
  .waves-course-detail,
  .waves-syllabus { grid-template-columns: 1fr; }
  .waves-case-filters .waves-field--search,
  .waves-case-story .waves-case-result { grid-column: auto; }
  .waves-case-card__media { aspect-ratio: 4 / 5; }
  .waves-course-card__media img { aspect-ratio: 4 / 5; }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .waves-site-header,
  .waves-site-footer,
  .waves-actions,
  .waves-contact-form {
    display: none !important;
  }
}
