:root {
  --wm-navy-950: #050d19;
  --wm-navy-900: #071426;
  --wm-navy-850: #0b1b31;
  --wm-navy-800: #10233e;
  --wm-blue-700: #203e70;
  --wm-blue-600: #28508c;
  --wm-blue-500: #3266ae;
  --wm-red-700: #a82025;
  --wm-red-600: #c32d31;
  --wm-red-500: #dc3a3f;
  --wm-ink: #17243a;
  --wm-muted: #647189;
  --wm-line: #dfe6ef;
  --wm-cloud: #f4f7fb;
  --wm-white: #fff;
  --wm-green: #31c987;
  --wm-radius-sm: 10px;
  --wm-radius: 18px;
  --wm-radius-lg: 28px;
  --wm-shadow: 0 24px 70px rgba(7, 20, 38, 0.12);
  --wm-shadow-lg: 0 36px 90px rgba(1, 7, 16, 0.28);
  --wm-container: 1180px;
  --wm-font: Aptos, "Segoe UI", Helvetica, Arial, sans-serif;
}

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

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

body {
  margin: 0;
  background: var(--wm-white);
  color: var(--wm-ink);
  font-family: var(--wm-font);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: clip;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

svg {
  display: block;
  width: 1.15em;
  height: 1.15em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

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

button,
a,
summary,
input,
textarea,
select {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #79a8f4;
  outline-offset: 3px;
}

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

.screen-reader-text:focus {
  z-index: 100000;
  top: 8px;
  left: 8px;
  width: auto;
  height: auto;
  padding: 12px 18px;
  clip: auto;
  background: var(--wm-white);
  color: var(--wm-navy-900);
  font-weight: 750;
  white-space: normal;
}

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

.wm-content-narrow {
  width: min(calc(100% - 48px), 780px);
  margin-inline: auto;
}

.wm-section {
  position: relative;
  padding: 116px 0;
}

.wm-skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 11px 18px;
  border-radius: 8px;
  background: var(--wm-white);
  color: var(--wm-navy-900);
  font-weight: 750;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

/* Header */
.wm-site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  background: rgba(5, 13, 25, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

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

.wm-site-header.is-scrolled,
body:not(.home) .wm-site-header {
  border-color: rgba(255, 255, 255, 0.09);
  background: rgba(5, 13, 25, 0.94);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
}

.wm-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 28px;
}

.wm-brand,
.wm-default-logo,
.custom-logo-link {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.wm-default-logo img,
.custom-logo {
  width: auto;
  max-width: 220px;
  height: 38px;
  object-fit: contain;
}

.wm-primary-nav {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 30px;
}

.wm-menu,
.wm-primary-nav ul {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  gap: 27px;
  list-style: none;
}

.wm-menu li {
  position: relative;
}

.wm-menu a {
  position: relative;
  display: inline-flex;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.91rem;
  font-weight: 650;
  line-height: 1;
  transition: color 0.2s ease;
}

.wm-menu a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--wm-red-500);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}

.wm-menu a:hover,
.wm-menu a:focus-visible,
.wm-menu .current-menu-item > a {
  color: var(--wm-white);
}

.wm-menu a:hover::after,
.wm-menu .current-menu-item > a::after {
  transform: scaleX(1);
  transform-origin: left;
}

.wm-menu .sub-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: -18px;
  display: none;
  min-width: 210px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: var(--wm-navy-900);
  box-shadow: var(--wm-shadow-lg);
}

.wm-menu li:hover > .sub-menu,
.wm-menu li:focus-within > .sub-menu {
  display: block;
}

.wm-menu .sub-menu li + li {
  margin-top: 4px;
}

.wm-menu-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border: 0;
  background: transparent;
  color: var(--wm-white);
  cursor: pointer;
}

.wm-menu-toggle-label {
  font-size: 0.84rem;
  font-weight: 750;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.wm-menu-toggle-icon {
  position: relative;
  display: block;
  width: 26px;
  height: 20px;
}

.wm-menu-toggle-icon span {
  position: absolute;
  right: 0;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.25s ease, top 0.25s ease;
}

.wm-menu-toggle-icon span:first-child {
  top: 5px;
}

.wm-menu-toggle-icon span:last-child {
  top: 13px;
  width: 17px;
}

.wm-menu-toggle[aria-expanded="true"] .wm-menu-toggle-icon span:first-child {
  top: 9px;
  transform: rotate(45deg);
}

.wm-menu-toggle[aria-expanded="true"] .wm-menu-toggle-icon span:last-child {
  top: 9px;
  width: 24px;
  transform: rotate(-45deg);
}

/* Buttons */
.wm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 21px;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.15;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

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

.wm-btn svg {
  transition: transform 0.2s ease;
}

.wm-btn:hover svg {
  transform: translateX(3px);
}

.wm-btn--header {
  min-height: 43px;
  padding: 10px 18px;
  background: var(--wm-red-600);
  color: var(--wm-white);
  box-shadow: 0 10px 24px rgba(195, 45, 49, 0.22);
}

.wm-btn--header:hover,
.wm-btn--primary:hover {
  background: var(--wm-red-500);
  box-shadow: 0 14px 30px rgba(195, 45, 49, 0.3);
}

.wm-btn--large {
  min-height: 56px;
  padding: 16px 25px;
  font-size: 1rem;
}

.wm-btn--primary {
  background: var(--wm-red-600);
  color: var(--wm-white);
  box-shadow: 0 16px 34px rgba(195, 45, 49, 0.25);
}

.wm-btn--ghost {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
  color: var(--wm-white);
}

.wm-btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
}

.wm-btn--light {
  background: var(--wm-white);
  color: var(--wm-navy-900);
}

.wm-btn--light:hover {
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

/* Shared headings */
.wm-eyebrow {
  display: flex;
  align-items: center;
  margin: 0 0 18px;
  gap: 10px;
  color: var(--wm-red-600);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.wm-eyebrow > span {
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.wm-eyebrow--light {
  color: #ff696d;
}

.wm-section-heading {
  margin-bottom: 56px;
}

.wm-section-heading h2,
.wm-audience-intro h2,
.wm-ai-copy h2,
.wm-faq-intro h2,
.wm-contact-copy h2 {
  margin: 0;
  color: var(--wm-navy-900);
  font-size: clamp(2.2rem, 4.2vw, 4.2rem);
  font-weight: 780;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.wm-section-heading > p,
.wm-audience-intro > p:last-child,
.wm-faq-intro > p,
.wm-ai-copy > p,
.wm-contact-copy > p {
  color: var(--wm-muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.wm-section-heading--center {
  max-width: 800px;
  margin-inline: auto;
  text-align: center;
}

.wm-section-heading--center .wm-eyebrow {
  justify-content: center;
}

.wm-section-heading--center > p:last-child {
  max-width: 650px;
  margin: 22px auto 0;
}

.wm-section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.7fr);
  align-items: end;
  gap: 70px;
}

.wm-section-heading--split > p {
  margin: 0;
}

.wm-section-heading--light h2,
.wm-section-heading--light > p {
  color: var(--wm-white);
}

.wm-section-heading--light > p {
  color: rgba(255, 255, 255, 0.64);
}

/* Hero */
.wm-hero {
  position: relative;
  min-height: 850px;
  padding: 176px 0 0;
  background:
    radial-gradient(circle at 76% 24%, rgba(40, 80, 140, 0.25), transparent 33%),
    linear-gradient(135deg, var(--wm-navy-950) 0%, var(--wm-navy-900) 54%, #0b1b32 100%);
  color: var(--wm-white);
  overflow: hidden;
}

.wm-hero::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  height: 5px;
  background: linear-gradient(90deg, transparent, var(--wm-red-600));
  content: "";
}

.wm-hero-grid {
  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: 56px 56px;
  mask-image: linear-gradient(to right, transparent 0, #000 46%, #000 100%);
}

.wm-hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}

.wm-hero-glow--one {
  top: 130px;
  right: -160px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(85, 130, 204, 0.18);
  box-shadow: inset 0 0 100px rgba(40, 80, 140, 0.07);
}

.wm-hero-glow--two {
  right: 270px;
  bottom: 120px;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(195, 45, 49, 0.14);
}

.wm-hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 0.82fr);
  align-items: center;
  min-height: 545px;
  gap: 86px;
}

.wm-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 670px;
}

.wm-hero h1 {
  max-width: 650px;
  margin: 0;
  color: var(--wm-white);
  font-size: clamp(3.2rem, 5.6vw, 5.7rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.98;
  text-wrap: balance;
}

.wm-hero h1::after {
  display: block;
  width: 118px;
  height: 6px;
  margin-top: 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--wm-red-600), rgba(195, 45, 49, 0.08));
  content: "";
}

.wm-hero-lead {
  max-width: 610px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.16rem;
  line-height: 1.72;
}

.wm-hero-actions {
  display: flex;
  flex-wrap: wrap;
  margin-top: 36px;
  gap: 13px;
}

.wm-hero-note {
  display: flex;
  align-items: center;
  margin: 20px 0 0;
  gap: 8px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
}

.wm-hero-note svg {
  color: var(--wm-green);
}

.wm-hero-console {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(11, 27, 49, 0.78);
  box-shadow: 0 42px 100px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(20px);
}

.wm-hero-console::before {
  position: absolute;
  z-index: -1;
  right: -26px;
  bottom: -26px;
  width: 72%;
  height: 72%;
  border: 1px solid rgba(195, 45, 49, 0.22);
  border-radius: 24px;
  content: "";
}

.wm-console-topbar {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  gap: 15px;
}

.wm-window-dots {
  display: flex;
  gap: 5px;
}

.wm-window-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

.wm-window-dots span:first-child {
  background: var(--wm-red-500);
}

.wm-console-topbar p {
  flex: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.44);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.69rem;
  letter-spacing: 0.03em;
}

.wm-live-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.69rem;
  font-weight: 700;
}

.wm-live-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--wm-green);
  box-shadow: 0 0 0 5px rgba(49, 201, 135, 0.1);
}

.wm-console-body {
  padding: 28px;
}

.wm-project-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.wm-project-heading span,
.wm-project-heading h2,
.wm-project-step strong,
.wm-project-step small,
.wm-console-insight p,
.wm-console-insight strong {
  display: block;
}

.wm-project-heading span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wm-project-heading h2 {
  margin: 5px 0 0;
  color: var(--wm-white);
  font-size: 1.32rem;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.wm-project-heading .wm-ai-chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border: 1px solid rgba(85, 130, 204, 0.26);
  border-radius: 999px;
  gap: 6px;
  background: rgba(40, 80, 140, 0.2);
  color: #9fc4ff;
  font-size: 0.68rem;
}

.wm-progress-track {
  height: 5px;
  margin: 25px 0 26px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.wm-progress-track span {
  display: block;
  width: 62%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--wm-blue-500), var(--wm-red-500));
}

.wm-project-steps {
  display: grid;
  gap: 8px;
}

.wm-project-step {
  display: flex;
  align-items: center;
  padding: 11px 12px;
  border: 1px solid transparent;
  border-radius: 11px;
  gap: 12px;
}

.wm-project-step.is-current {
  border-color: rgba(82, 132, 211, 0.18);
  background: rgba(40, 80, 140, 0.14);
}

.wm-step-icon {
  display: grid;
  width: 31px;
  height: 31px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9px;
  color: rgba(255, 255, 255, 0.46);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.67rem;
}

.wm-step-icon svg {
  width: 15px;
  height: 15px;
}

.is-done .wm-step-icon {
  border-color: rgba(49, 201, 135, 0.22);
  background: rgba(49, 201, 135, 0.11);
  color: var(--wm-green);
}

.is-current .wm-step-icon {
  border-color: rgba(83, 136, 220, 0.3);
  background: rgba(40, 80, 140, 0.28);
  color: #9ec3ff;
}

.wm-project-step strong {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.8rem;
  line-height: 1.35;
}

.wm-project-step small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.37);
  font-size: 0.69rem;
  line-height: 1.35;
}

.wm-console-insight {
  display: flex;
  align-items: flex-start;
  margin-top: 22px;
  padding: 15px;
  border: 1px solid rgba(195, 45, 49, 0.22);
  border-radius: 13px;
  gap: 12px;
  background: linear-gradient(110deg, rgba(195, 45, 49, 0.12), rgba(195, 45, 49, 0.035));
}

.wm-insight-icon {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 9px;
  background: rgba(195, 45, 49, 0.17);
  color: #ff7478;
}

.wm-console-insight strong {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.77rem;
}

.wm-console-insight p {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.69rem;
  line-height: 1.5;
}

.wm-floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  min-width: 196px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  gap: 10px;
  background: rgba(7, 20, 38, 0.92);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(16px);
}

.wm-floating-card > span {
  display: grid;
  width: 35px;
  height: 35px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 10px;
  background: rgba(40, 80, 140, 0.28);
  color: #9fc4ff;
}

.wm-floating-card small,
.wm-floating-card strong {
  display: block;
  line-height: 1.35;
}

.wm-floating-card small {
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.61rem;
}

.wm-floating-card strong {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.69rem;
}

.wm-floating-card--top {
  top: 74px;
  right: -64px;
}

.wm-floating-card--bottom {
  bottom: 52px;
  left: -56px;
}

.wm-floating-card--bottom > span {
  background: rgba(195, 45, 49, 0.19);
  color: #ff7276;
}

.wm-capability-strip {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 116px;
  margin-top: 82px;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.77rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wm-capability-strip span {
  display: inline-flex;
  align-items: center;
  gap: 20px;
}

.wm-capability-strip span:not(:last-child)::after {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--wm-red-500);
  content: "";
}

/* Pain points */
.wm-problem-section {
  background: var(--wm-white);
}

.wm-problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.wm-problem-card {
  position: relative;
  min-height: 322px;
  padding: 34px;
  border: 1px solid var(--wm-line);
  border-radius: var(--wm-radius);
  background: var(--wm-white);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.wm-problem-card::after {
  position: absolute;
  right: -40px;
  bottom: -45px;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(32, 62, 112, 0.09);
  border-radius: 50%;
  content: "";
}

.wm-problem-card:hover {
  border-color: rgba(32, 62, 112, 0.23);
  box-shadow: var(--wm-shadow);
  transform: translateY(-6px);
}

.wm-card-number {
  position: absolute;
  top: 28px;
  right: 30px;
  color: #c7d0dd;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.76rem;
}

.wm-icon-box {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 14px;
  background: rgba(32, 62, 112, 0.08);
  color: var(--wm-blue-700);
}

.wm-icon-box svg {
  width: 23px;
  height: 23px;
}

.wm-problem-card:nth-child(2) .wm-icon-box {
  background: rgba(195, 45, 49, 0.08);
  color: var(--wm-red-600);
}

.wm-problem-card h3,
.wm-service-card h3,
.wm-process-step h3,
.wm-value-card h3 {
  margin: 24px 0 11px;
  color: var(--wm-navy-900);
  font-size: 1.32rem;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.wm-problem-card p,
.wm-service-card p,
.wm-process-step p,
.wm-value-card p {
  margin: 0;
  color: var(--wm-muted);
  line-height: 1.72;
}

/* Services */
.wm-services-section {
  background: var(--wm-cloud);
}

.wm-services-section::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 22%;
  height: 4px;
  background: var(--wm-blue-700);
  content: "";
}

.wm-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.wm-service-card {
  display: flex;
  min-height: 306px;
  padding: 31px;
  border: 1px solid rgba(7, 20, 38, 0.08);
  border-radius: var(--wm-radius);
  flex-direction: column;
  background: var(--wm-white);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.wm-service-card:hover {
  box-shadow: 0 22px 54px rgba(7, 20, 38, 0.1);
  transform: translateY(-5px);
}

.wm-service-card--featured {
  background: var(--wm-navy-900);
  box-shadow: 0 24px 55px rgba(7, 20, 38, 0.2);
}

.wm-service-card--featured h3,
.wm-service-card--featured p {
  color: var(--wm-white);
}

.wm-service-card--featured p {
  color: rgba(255, 255, 255, 0.61);
}

.wm-service-card--featured .wm-icon-box {
  background: rgba(255, 255, 255, 0.09);
  color: #aecbfa;
}

.wm-service-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.wm-service-tag {
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.64rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wm-service-card > a {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  margin-top: auto;
  padding-top: 22px;
  gap: 8px;
  color: #b9d2ff;
  font-size: 0.88rem;
  font-weight: 750;
}

.wm-service-card > a svg {
  transition: transform 0.2s ease;
}

.wm-service-card > a:hover svg {
  transform: translateX(4px);
}

/* Audience tabs */
.wm-audience-section {
  background: var(--wm-white);
}

.wm-audience-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(550px, 1.15fr);
  align-items: start;
  gap: 92px;
}

.wm-audience-intro {
  position: sticky;
  top: 130px;
}

.wm-audience-intro > p:last-child {
  margin: 25px 0 0;
}

.wm-audience-tool {
  overflow: hidden;
  border: 1px solid var(--wm-line);
  border-radius: var(--wm-radius-lg);
  background: var(--wm-cloud);
  box-shadow: 0 26px 70px rgba(7, 20, 38, 0.09);
}

.wm-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 8px;
  gap: 6px;
  border-bottom: 1px solid var(--wm-line);
  background: var(--wm-white);
}

.wm-tab {
  min-height: 49px;
  padding: 10px 14px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--wm-muted);
  font-size: 0.87rem;
  font-weight: 730;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.wm-tab:hover {
  color: var(--wm-navy-900);
}

.wm-tab.is-active {
  background: var(--wm-navy-900);
  color: var(--wm-white);
  box-shadow: 0 8px 18px rgba(7, 20, 38, 0.13);
}

.wm-tab-panel {
  min-height: 405px;
  padding: 45px 46px;
  animation: wmFadePanel 0.35s ease;
}

.wm-tab-panel[hidden] {
  display: none;
}

@keyframes wmFadePanel {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.wm-tab-panel > div:first-child {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.wm-panel-index {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 13px;
  background: rgba(195, 45, 49, 0.09);
  color: var(--wm-red-600);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.75rem;
  font-weight: 750;
}

.wm-tab-panel h3 {
  max-width: 450px;
  margin: 1px 0 0;
  color: var(--wm-navy-900);
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.wm-tab-panel > p {
  margin: 27px 0 25px;
  color: var(--wm-muted);
  line-height: 1.72;
}

.wm-tab-panel ul {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 11px;
  list-style: none;
}

.wm-tab-panel li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #36445b;
  font-size: 0.94rem;
  font-weight: 650;
}

.wm-tab-panel li svg {
  color: var(--wm-red-600);
}

/* Process */
.wm-process-section {
  background:
    radial-gradient(circle at 15% 115%, rgba(40, 80, 140, 0.34), transparent 30%),
    var(--wm-navy-900);
  color: var(--wm-white);
  overflow: hidden;
}

.wm-process-section::after {
  position: absolute;
  top: -180px;
  right: -160px;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  content: "";
}

.wm-process-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.wm-process-step {
  position: relative;
  padding-top: 8px;
}

.wm-process-number {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.83);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.75rem;
}

.wm-process-step:first-child .wm-process-number {
  border-color: var(--wm-red-600);
  background: var(--wm-red-600);
  color: var(--wm-white);
  box-shadow: 0 0 0 7px rgba(195, 45, 49, 0.1);
}

.wm-process-line {
  position: absolute;
  top: 31px;
  right: -26px;
  left: 59px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.04));
}

.wm-process-step h3 {
  margin-top: 30px;
  color: var(--wm-white);
}

.wm-process-step p {
  color: rgba(255, 255, 255, 0.54);
}

/* AI */
.wm-ai-section {
  background: var(--wm-cloud);
  overflow: hidden;
}

.wm-ai-layout {
  display: grid;
  grid-template-columns: minmax(450px, 0.95fr) minmax(0, 0.82fr);
  align-items: center;
  gap: 105px;
}

.wm-ai-visual {
  position: relative;
  min-height: 530px;
}

.wm-ai-visual::before {
  position: absolute;
  inset: 10% 6%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(32, 62, 112, 0.13), transparent 68%);
  content: "";
}

.wm-ai-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(32, 62, 112, 0.16);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.wm-ai-orbit--one {
  width: 330px;
  height: 330px;
}

.wm-ai-orbit--two {
  width: 465px;
  height: 465px;
  border-style: dashed;
  border-color: rgba(195, 45, 49, 0.17);
}

.wm-ai-orbit--one::before,
.wm-ai-orbit--two::before {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--wm-red-600);
  box-shadow: 0 0 0 8px rgba(195, 45, 49, 0.09);
  content: "";
}

.wm-ai-orbit--one::before {
  top: 25px;
  right: 60px;
}

.wm-ai-orbit--two::before {
  bottom: 55px;
  left: 82px;
  background: var(--wm-blue-500);
  box-shadow: 0 0 0 8px rgba(50, 102, 174, 0.09);
}

.wm-ai-core {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: 180px;
  height: 180px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  background: var(--wm-white);
  box-shadow: 0 28px 70px rgba(7, 20, 38, 0.17), inset 0 0 0 11px rgba(32, 62, 112, 0.035);
  transform: translate(-50%, -50%);
}

.wm-ai-core img {
  width: 110px;
}

.wm-ai-node {
  position: absolute;
  z-index: 3;
  padding: 10px 16px;
  border: 1px solid rgba(7, 20, 38, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--wm-navy-800);
  box-shadow: 0 13px 32px rgba(7, 20, 38, 0.1);
  font-size: 0.78rem;
  font-weight: 750;
}

.wm-ai-node--one {
  top: 96px;
  left: 28px;
}

.wm-ai-node--two {
  top: 132px;
  right: 7px;
}

.wm-ai-node--three {
  right: 52px;
  bottom: 83px;
}

.wm-ai-copy > p:not(.wm-eyebrow) {
  margin: 25px 0 0;
}

.wm-ai-list {
  display: grid;
  margin-top: 34px;
  gap: 12px;
}

.wm-ai-list > div {
  display: flex;
  padding: 15px 0;
  border-bottom: 1px solid var(--wm-line);
  gap: 14px;
}

.wm-ai-list > div > span {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 11px;
  background: rgba(32, 62, 112, 0.08);
  color: var(--wm-blue-700);
}

.wm-ai-list p,
.wm-ai-list strong,
.wm-ai-list small {
  display: block;
  margin: 0;
}

.wm-ai-list strong {
  color: var(--wm-navy-900);
  font-size: 0.95rem;
  line-height: 1.4;
}

.wm-ai-list small {
  margin-top: 4px;
  color: var(--wm-muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.wm-ai-principle {
  display: flex;
  align-items: flex-start;
  margin-top: 29px !important;
  padding: 17px 18px;
  border-left: 3px solid var(--wm-red-600);
  background: var(--wm-white);
  gap: 11px;
  color: var(--wm-muted) !important;
  font-size: 0.88rem !important;
  line-height: 1.55 !important;
}

.wm-ai-principle svg {
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--wm-red-600);
}

.wm-ai-principle strong {
  color: var(--wm-navy-900);
}

/* Values */
.wm-use-cases-section {
  background: var(--wm-white);
}

.wm-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--wm-line);
  border-bottom: 1px solid var(--wm-line);
}

.wm-value-card {
  min-height: 305px;
  padding: 34px 28px;
}

.wm-value-card + .wm-value-card {
  border-left: 1px solid var(--wm-line);
}

.wm-value-card > span {
  display: inline-flex;
  padding: 6px 9px;
  border-radius: 7px;
  background: var(--wm-cloud);
  color: var(--wm-blue-700);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.7rem;
  font-weight: 750;
}

.wm-value-card:nth-child(2) > span,
.wm-value-card:nth-child(4) > span {
  color: var(--wm-red-600);
}

/* FAQ */
.wm-faq-section {
  background: var(--wm-cloud);
}

.wm-faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(530px, 1fr);
  align-items: start;
  gap: 100px;
}

.wm-faq-intro {
  position: sticky;
  top: 130px;
}

.wm-faq-intro > p {
  margin: 24px 0 0;
}

.wm-text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 26px;
  gap: 8px;
  color: var(--wm-blue-700);
  font-weight: 750;
}

.wm-text-link:hover {
  color: var(--wm-red-600);
}

.wm-faq-list {
  border-top: 1px solid var(--wm-line);
}

.wm-faq-list details {
  border-bottom: 1px solid var(--wm-line);
}

.wm-faq-list summary {
  position: relative;
  padding: 25px 52px 25px 0;
  color: var(--wm-navy-900);
  font-size: 1.05rem;
  font-weight: 730;
  line-height: 1.4;
  list-style: none;
  cursor: pointer;
}

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

.wm-faq-list summary span {
  position: absolute;
  top: 50%;
  right: 6px;
  width: 22px;
  height: 22px;
  border: 1px solid #cbd4df;
  border-radius: 50%;
  transform: translateY(-50%);
}

.wm-faq-list summary span::before,
.wm-faq-list summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 1px;
  background: var(--wm-navy-900);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}

.wm-faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.wm-faq-list details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.wm-faq-list details > p {
  margin: -7px 52px 25px 0;
  color: var(--wm-muted);
  line-height: 1.72;
}

/* Contact */
.wm-contact-section {
  background:
    linear-gradient(115deg, rgba(195, 45, 49, 0.06), transparent 38%),
    var(--wm-navy-900);
  color: var(--wm-white);
  overflow: hidden;
}

.wm-contact-section::before {
  position: absolute;
  right: -150px;
  bottom: -190px;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  content: "";
}

.wm-contact-glow {
  position: absolute;
  top: -250px;
  left: -270px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(32, 62, 112, 0.18);
  filter: blur(80px);
}

.wm-contact-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(550px, 0.94fr);
  align-items: center;
  gap: 94px;
}

.wm-contact-copy h2 {
  color: var(--wm-white);
}

.wm-contact-copy > p {
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.62);
}

.wm-contact-direct {
  display: grid;
  margin-top: 38px;
  gap: 11px;
}

.wm-contact-direct > a {
  display: flex;
  align-items: center;
  width: fit-content;
  gap: 13px;
}

.wm-contact-direct > a > span {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: #a9c8f9;
}

.wm-contact-direct small,
.wm-contact-direct strong {
  display: block;
  line-height: 1.35;
}

.wm-contact-direct small {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.72rem;
}

.wm-contact-direct strong {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.94rem;
}

.wm-contact-card {
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--wm-radius-lg);
  background: var(--wm-white);
  box-shadow: var(--wm-shadow-lg);
  color: var(--wm-ink);
}

.wm-contact-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 20px;
}

.wm-contact-card-head span {
  color: var(--wm-red-600);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.wm-contact-card-head h3 {
  margin: 5px 0 0;
  color: var(--wm-navy-900);
  font-size: 1.6rem;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.wm-contact-card-head .wm-contact-step {
  color: #9aa7b8;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  letter-spacing: 0;
}

.wm-contact-form {
  display: grid;
  gap: 17px;
}

.wm-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.wm-contact-form label:not(.wm-consent) {
  display: grid;
  gap: 7px;
  color: #344159;
  font-size: 0.78rem;
  font-weight: 720;
}

.wm-contact-form label > span[aria-hidden="true"] {
  color: var(--wm-red-600);
}

.wm-contact-form input:not([type="checkbox"]),
.wm-contact-form textarea,
.wm-contact-form select {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid #dbe2eb;
  border-radius: 10px;
  outline: 0;
  background: #f9fbfd;
  color: var(--wm-navy-900);
  font-size: 0.92rem;
  font-weight: 500;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.wm-contact-form textarea {
  min-height: 112px;
  resize: vertical;
}

.wm-contact-form input:focus,
.wm-contact-form textarea:focus,
.wm-contact-form select:focus {
  border-color: var(--wm-blue-500);
  background: var(--wm-white);
  box-shadow: 0 0 0 4px rgba(50, 102, 174, 0.1);
}

.wm-contact-form ::placeholder {
  color: #a5afbd;
}

.wm-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--wm-muted);
  font-size: 0.74rem;
  font-weight: 500;
  line-height: 1.5;
  cursor: pointer;
}

.wm-consent input {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin: 2px 0 0;
  accent-color: var(--wm-red-600);
}

.wm-btn--submit {
  width: 100%;
  min-height: 55px;
  margin-top: 2px;
  border: 0;
}

.wm-form-footnote {
  margin: -7px 0 0;
  color: #8a96a7;
  font-size: 0.72rem;
  text-align: center;
}

.wm-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.wm-form-notice {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 14px 16px;
  border-radius: 11px;
  gap: 10px;
  font-size: 0.84rem;
}

.wm-form-notice--success {
  background: #eaf9f2;
  color: #176745;
}

.wm-form-notice--error {
  background: #fff0f0;
  color: #8d1f23;
}

.wm-form-notice svg {
  margin-top: 2px;
}

.wm-form-notice strong,
.wm-form-notice p {
  display: block;
  margin: 0;
}

.wm-form-notice p {
  margin-top: 2px;
  opacity: 0.8;
}

/* Footer */
.wm-site-footer {
  padding: 76px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--wm-navy-950);
  color: var(--wm-white);
}

.wm-footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.65fr 0.8fr 1fr;
  gap: 58px;
}

.wm-footer-brand > p {
  max-width: 290px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.47);
  font-size: 0.91rem;
  line-height: 1.7;
}

.wm-socials {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
  gap: 8px;
}

.wm-socials a {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
}

.wm-socials a:hover {
  color: var(--wm-white);
}

.wm-footer-column h2 {
  margin: 0 0 20px;
  color: var(--wm-white);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.wm-footer-links,
.wm-footer-column .wm-menu,
.wm-footer-contact {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 11px;
  list-style: none;
}

.wm-footer-links a,
.wm-footer-column .wm-menu a,
.wm-footer-contact,
.wm-footer-contact a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

.wm-footer-column .wm-menu a {
  padding: 0;
}

.wm-footer-links a:hover,
.wm-footer-column .wm-menu a:hover,
.wm-footer-contact a:hover {
  color: var(--wm-white);
}

.wm-footer-cta {
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--wm-radius);
  background: rgba(255, 255, 255, 0.035);
}

.wm-footer-kicker {
  margin: 0;
  color: var(--wm-white) !important;
  font-size: 1.08rem !important;
  font-weight: 750;
}

.wm-footer-cta > p {
  margin: 7px 0 18px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.83rem;
  line-height: 1.55;
}

.wm-footer-cta .wm-btn {
  min-height: 42px;
  padding: 10px 15px;
  font-size: 0.78rem;
}

.wm-footer-widgets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  margin-top: 50px;
  padding-top: 34px;
  gap: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.wm-footer-widgets .wm-widget {
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.48);
}

.wm-footer-widgets .wm-widget-title,
.wm-footer-widgets a {
  color: var(--wm-white);
}

.wm-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 60px;
  padding-top: 24px;
  gap: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.wm-footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.34);
  font-size: 0.72rem;
}

.wm-footer-bottom a {
  color: rgba(255, 255, 255, 0.68);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.wm-footer-bottom a:hover {
  color: var(--wm-white);
}

.wm-footer-separator {
  margin-inline: 7px;
}

.wm-whatsapp-float {
  position: fixed;
  z-index: 900;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: #22ad67;
  color: var(--wm-white);
  box-shadow: 0 17px 38px rgba(11, 79, 47, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wm-whatsapp-float:hover {
  box-shadow: 0 20px 44px rgba(11, 79, 47, 0.38);
  transform: translateY(-3px) scale(1.03);
}

.wm-whatsapp-float svg {
  width: 26px;
  height: 26px;
}

/* Blog and inner templates */
.wm-inner-hero {
  position: relative;
  padding: 180px 0 84px;
  background: var(--wm-navy-900);
  color: var(--wm-white);
  overflow: hidden;
}

.wm-inner-hero::after {
  position: absolute;
  right: -160px;
  bottom: -250px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  content: "";
}

.wm-inner-hero h1 {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0;
  color: var(--wm-white);
  font-size: clamp(2.8rem, 5vw, 5rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.wm-inner-hero p {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 21px 0 0;
  color: rgba(255, 255, 255, 0.59);
  font-size: 1.05rem;
}

.wm-content-area {
  min-height: 45vh;
  padding: 88px 0 110px;
}

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

.wm-post-card {
  overflow: hidden;
  border: 1px solid var(--wm-line);
  border-radius: var(--wm-radius);
  background: var(--wm-white);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.wm-post-card:hover {
  box-shadow: var(--wm-shadow);
  transform: translateY(-5px);
}

.wm-post-card-thumb {
  display: block;
  aspect-ratio: 16 / 10;
  background: var(--wm-cloud);
  overflow: hidden;
}

.wm-post-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.wm-post-card:hover .wm-post-card-thumb img {
  transform: scale(1.04);
}

.wm-post-card-body {
  padding: 25px;
}

.wm-post-meta {
  color: var(--wm-red-600);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.wm-post-card h2 {
  margin: 12px 0 10px;
  color: var(--wm-navy-900);
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  line-height: 1.25;
}

.wm-post-card p {
  margin: 0;
  color: var(--wm-muted);
  font-size: 0.92rem;
}

.wm-entry-content {
  color: #344159;
  font-size: 1.05rem;
}

.wm-entry-content > * {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}

.wm-entry-content > .alignwide {
  max-width: 1180px;
}

.wm-entry-content > .alignfull {
  max-width: none;
}

.wm-entry-content--full > * {
  max-width: 1180px;
}

.wm-entry-content h2,
.wm-entry-content h3,
.wm-entry-content h4 {
  margin-top: 2em;
  color: var(--wm-navy-900);
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.wm-entry-content a {
  color: var(--wm-blue-600);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.wm-entry-content img {
  border-radius: var(--wm-radius);
}

.wm-entry-content blockquote {
  padding: 20px 26px;
  border-left: 4px solid var(--wm-red-600);
  background: var(--wm-cloud);
}

/* Libro de Reclamaciones */
.wm-claims-section {
  background:
    linear-gradient(135deg, rgba(32, 62, 112, 0.055), transparent 42%),
    var(--wm-cloud);
}

.wm-claims-layout {
  max-width: 960px;
}

.wm-claims-intro {
  margin-bottom: 28px;
}

.wm-claims-intro > * {
  max-width: none;
}

.wm-claims-card {
  padding: clamp(24px, 5vw, 52px);
  border: 1px solid var(--wm-line);
  border-radius: var(--wm-radius-lg);
  background: var(--wm-white);
  box-shadow: var(--wm-shadow);
}

.wm-claims-card :where(input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]), select, textarea) {
  width: 100%;
  max-width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 9px;
}

.wm-claims-card :where(button, input[type="submit"]) {
  min-height: 46px;
  border: 0;
  border-radius: 9px;
  background: var(--wm-red-600);
  color: var(--wm-white);
  cursor: pointer;
}

.wm-shortcode-warning {
  padding: 22px 24px;
  border: 1px solid #f0c8ca;
  border-left: 4px solid var(--wm-red-600);
  border-radius: var(--wm-radius-sm);
  background: #fff5f5;
  color: #7b2528;
}

.wm-shortcode-warning strong,
.wm-shortcode-warning p {
  display: block;
  margin: 0;
}

.wm-shortcode-warning p {
  margin-top: 6px;
  color: #7f4a4c;
  font-size: 0.9rem;
}

.wm-pagination {
  margin-top: 48px;
}

.wm-pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.wm-pagination .page-numbers {
  display: grid;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  place-items: center;
  border: 1px solid var(--wm-line);
  border-radius: 9px;
  color: var(--wm-navy-900);
}

.wm-pagination .current,
.wm-pagination a:hover {
  border-color: var(--wm-navy-900);
  background: var(--wm-navy-900);
  color: var(--wm-white);
}

.wm-empty-state {
  padding: 64px;
  border: 1px solid var(--wm-line);
  border-radius: var(--wm-radius);
  background: var(--wm-cloud);
  text-align: center;
}

.wm-empty-state h2 {
  margin: 0;
  color: var(--wm-navy-900);
}

.wm-empty-state p {
  margin: 12px 0 24px;
  color: var(--wm-muted);
}

.wm-search-form {
  display: flex;
  max-width: 560px;
  margin: 24px auto 0;
  gap: 9px;
}

.wm-search-form input {
  min-width: 0;
  flex: 1;
  min-height: 50px;
  padding: 10px 14px;
  border: 1px solid var(--wm-line);
  border-radius: 10px;
}

.wm-search-form button {
  border: 0;
}

.wm-page-added-content {
  padding-top: 80px;
  border-top: 1px solid var(--wm-line);
}

.wm-page-added-content:empty {
  display: none;
}

/* Contenido libre para Gutenberg y constructores visuales */
.wm-builder-content {
  width: 100%;
  min-height: 55vh;
  padding-top: 82px;
}

.wm-builder-content > .elementor,
.wm-builder-content > .wp-block-group.alignfull,
.wm-builder-content > .wp-block-cover.alignfull {
  width: 100%;
}

.wm-builder-content::after,
.wm-builder-canvas-content::after {
  display: table;
  clear: both;
  content: "";
}

body.wm-builder-home-active:not(.wm-builder-header-overlay) .wm-site-header {
  border-color: rgba(255, 255, 255, 0.09);
  background: rgba(5, 13, 25, 0.96);
}

body.wm-builder-header-overlay .wm-builder-home-content {
  padding-top: 0;
}

.wm-canvas-page,
.wm-canvas-page .wm-builder-canvas-content {
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

.wm-content-with-sidebar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: start;
  gap: 58px;
}

.wm-content-with-sidebar .wm-entry-content > * {
  max-width: none;
  margin-right: 0;
  margin-left: 0;
}

.wm-page-sidebar {
  display: grid;
  gap: 18px;
}

.wm-widget {
  padding: 23px;
  border: 1px solid var(--wm-line);
  border-radius: 14px;
  background: var(--wm-cloud);
  color: var(--wm-muted);
}

.wm-widget-title {
  margin: 0 0 13px;
  color: var(--wm-navy-900);
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.wm-widget ul {
  margin: 0;
  padding-left: 20px;
}

.wm-widget a {
  color: var(--wm-blue-700);
}

/* Patrón de portada editable con bloques nativos */
.wm-block-hero,
.wm-block-section {
  margin-block: 0;
}

.wm-block-hero {
  position: relative;
  padding: clamp(88px, 10vw, 138px) 24px;
  background:
    radial-gradient(circle at 82% 16%, rgba(50, 102, 174, 0.28), transparent 32%),
    linear-gradient(135deg, var(--wm-navy-950), var(--wm-navy-800));
  color: var(--wm-white);
  overflow: hidden;
}

.wm-block-hero::after {
  position: absolute;
  top: -180px;
  right: -150px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.wm-block-hero-columns {
  position: relative;
  z-index: 1;
  gap: clamp(42px, 7vw, 92px);
}

.wm-block-kicker {
  margin: 0 0 18px;
  color: var(--wm-red-500);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.wm-block-hero h1 {
  max-width: 720px;
  margin: 0;
  color: var(--wm-white);
  font-size: clamp(3rem, 5.6vw, 5.6rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.99;
}

.wm-block-lead {
  max-width: 640px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 1.12rem;
  line-height: 1.72;
}

.wm-block-actions {
  margin-top: 32px;
}

.wm-block-actions .wp-block-button__link,
.wm-block-contact .wp-block-button__link {
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 999px;
  background: var(--wm-red-600);
  color: var(--wm-white);
  font-weight: 750;
}

.wm-block-actions .is-style-outline .wp-block-button__link,
.wm-block-contact .is-style-outline .wp-block-button__link {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: var(--wm-white);
}

.wm-block-hero-card {
  padding: 31px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  background: rgba(11, 27, 49, 0.78);
  box-shadow: var(--wm-shadow-lg);
}

.wm-block-card-label {
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.wm-block-hero-card h3 {
  margin: 6px 0 24px;
  color: var(--wm-white);
  font-size: 1.5rem;
}

.wm-block-progress {
  width: 64% !important;
  height: 5px;
  margin: 0 0 23px !important;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--wm-blue-500), var(--wm-red-500));
}

.wm-block-status {
  margin-top: 9px;
  padding: 11px 14px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.035);
}

.wm-block-status.is-current {
  border: 1px solid rgba(50, 102, 174, 0.24);
  background: rgba(32, 62, 112, 0.24);
}

.wm-block-status p,
.wm-block-insight {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.84rem;
}

.wm-block-status small,
.wm-block-insight small {
  color: rgba(255, 255, 255, 0.42);
}

.wm-block-insight {
  margin-top: 18px;
  padding: 14px;
  border: 1px solid rgba(195, 45, 49, 0.24);
  border-radius: 12px;
  background: rgba(195, 45, 49, 0.1);
}

.wm-block-section {
  padding: clamp(78px, 9vw, 118px) 24px;
}

.wm-block-section > h2,
.wm-block-process > h2,
.wm-block-contact h2 {
  color: var(--wm-navy-900);
  font-size: clamp(2.2rem, 4.5vw, 4.1rem);
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.wm-block-section-lead {
  max-width: 680px;
  margin: 20px auto 50px;
  color: var(--wm-muted);
  font-size: 1.05rem;
}

.wm-block-services {
  background: var(--wm-cloud);
}

.wm-block-service-grid {
  align-items: stretch !important;
  margin-top: 20px;
  gap: 18px;
}

.wm-block-service-grid > .wp-block-column {
  display: flex;
}

.wm-block-service-card {
  width: 100%;
  min-height: 210px;
  padding: 27px;
  border: 1px solid var(--wm-line);
  border-radius: 18px;
  background: var(--wm-white);
}

.wm-block-service-card h3 {
  margin: 0 0 13px;
  color: var(--wm-navy-900);
  font-size: 1.3rem;
}

.wm-block-service-card p {
  color: var(--wm-muted);
}

.wm-block-service-card.is-dark {
  border-color: var(--wm-navy-900);
  background: var(--wm-navy-900);
}

.wm-block-service-card.is-dark h3 {
  color: var(--wm-white);
}

.wm-block-service-card.is-dark p {
  color: rgba(255, 255, 255, 0.6);
}

.wm-block-process {
  background: var(--wm-white);
}

.wm-block-process > h2 {
  max-width: 850px;
}

.wm-block-process-grid {
  margin-top: 56px;
  gap: 26px;
}

.wm-block-process-grid h3 {
  color: var(--wm-blue-700);
  font-size: 1.15rem;
}

.wm-block-process-grid p {
  color: var(--wm-muted);
}

.wm-block-contact {
  background: var(--wm-navy-900);
  color: var(--wm-white);
}

.wm-block-contact h2 {
  margin-top: 0;
  color: var(--wm-white);
}

.wm-block-contact .wm-block-section-lead {
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  color: rgba(255, 255, 255, 0.62);
}

.wm-block-contact .wp-block-buttons {
  gap: 12px;
}

@media (max-width: 781px) {
  .wm-block-hero-columns {
    gap: 54px;
  }

  .wm-block-hero h1 {
    font-size: clamp(2.8rem, 13vw, 4.4rem);
  }

  .wm-block-service-card {
    min-height: 0;
  }
}

.wm-comments {
  margin-bottom: 100px;
  padding-top: 42px;
  border-top: 1px solid var(--wm-line);
}

.wm-comments h2,
.wm-comments h3 {
  color: var(--wm-navy-900);
}

.wm-comments .comment-list {
  display: grid;
  margin: 28px 0 42px;
  padding: 0;
  gap: 16px;
  list-style: none;
}

.wm-comments .comment-body {
  padding: 22px;
  border: 1px solid var(--wm-line);
  border-radius: 13px;
}

.wm-comments input:not([type="checkbox"]),
.wm-comments textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--wm-line);
  border-radius: 9px;
}

.wm-comments .submit {
  padding: 12px 20px;
  border: 0;
  border-radius: 999px;
  background: var(--wm-red-600);
  color: var(--wm-white);
  font-weight: 750;
  cursor: pointer;
}

.wm-404 {
  display: grid;
  min-height: 100vh;
  padding: 140px 24px 80px;
  place-items: center;
  background: var(--wm-navy-900);
  color: var(--wm-white);
  text-align: center;
}

.wm-404-symbol {
  width: 150px;
  margin: 0 auto 24px;
  opacity: 0.85;
}

.wm-404 strong {
  display: block;
  color: rgba(255, 255, 255, 0.17);
  font-size: clamp(6rem, 18vw, 13rem);
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.wm-404 h1 {
  margin: 22px 0 10px;
  color: var(--wm-white);
  font-size: clamp(2rem, 5vw, 3.8rem);
}

.wm-404 p {
  max-width: 540px;
  margin: 0 auto 26px;
  color: rgba(255, 255, 255, 0.6);
}

/* Reveal animation */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.75, 0.25, 1);
  transition-delay: var(--wm-reveal-delay, 0ms);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1180px) {
  .wm-primary-nav {
    gap: 20px;
  }

  .wm-menu,
  .wm-primary-nav ul {
    gap: 19px;
  }

  .wm-menu a {
    font-size: 0.84rem;
  }

  .wm-hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(410px, 0.82fr);
    gap: 52px;
  }

  .wm-floating-card--top {
    right: -15px;
  }

  .wm-floating-card--bottom {
    left: -22px;
  }

  .wm-audience-layout,
  .wm-faq-layout {
    gap: 62px;
  }

  .wm-contact-layout {
    grid-template-columns: minmax(0, 0.72fr) minmax(500px, 1fr);
    gap: 55px;
  }

  .wm-footer-grid {
    grid-template-columns: 1.2fr 0.65fr 0.9fr;
  }

  .wm-footer-cta {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1024px) {
  .wm-section {
    padding: 94px 0;
  }

  .wm-menu-toggle {
    display: flex;
    margin-left: auto;
  }

  .wm-primary-nav {
    position: fixed;
    top: 82px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    padding: 38px 24px 30px;
    flex-direction: column;
    align-items: stretch;
    background: rgba(5, 13, 25, 0.98);
    opacity: 0;
    overflow-y: auto;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .admin-bar .wm-primary-nav {
    top: 114px;
  }

  .wm-primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .wm-primary-nav .wm-menu,
  .wm-primary-nav > ul {
    display: grid;
    align-items: stretch;
    gap: 0;
  }

  .wm-primary-nav .wm-menu > li,
  .wm-primary-nav > ul > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .wm-primary-nav .wm-menu a,
  .wm-primary-nav > ul a {
    display: flex;
    min-height: 57px;
    align-items: center;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.1rem;
  }

  .wm-primary-nav .wm-menu a::after,
  .wm-primary-nav > ul a::after {
    display: none;
  }

  .wm-primary-nav .wm-btn {
    margin-top: 13px;
  }

  .wm-menu .sub-menu {
    position: static;
    display: grid;
    padding: 0 0 10px 18px;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .wm-hero {
    padding-top: 146px;
  }

  .wm-hero-layout {
    grid-template-columns: 1fr;
    gap: 68px;
  }

  .wm-hero-copy {
    max-width: 760px;
  }

  .wm-hero-console {
    width: min(100%, 640px);
    margin: 0 auto;
  }

  .wm-capability-strip {
    margin-top: 74px;
  }

  .wm-section-heading--split {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 24px;
  }

  .wm-section-heading--split > p {
    max-width: 680px;
  }

  .wm-problem-grid,
  .wm-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .wm-audience-layout,
  .wm-ai-layout,
  .wm-faq-layout,
  .wm-contact-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .wm-audience-intro,
  .wm-faq-intro {
    position: static;
    max-width: 760px;
  }

  .wm-audience-tool,
  .wm-faq-list,
  .wm-contact-card {
    width: min(100%, 720px);
  }

  .wm-process-grid,
  .wm-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .wm-process-line {
    display: none;
  }

  .wm-value-card:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--wm-line);
  }

  .wm-value-card:nth-child(4) {
    border-top: 1px solid var(--wm-line);
  }

  .wm-ai-visual {
    width: min(100%, 620px);
    min-height: 500px;
    order: 2;
  }

  .wm-ai-copy {
    max-width: 740px;
  }

  .wm-contact-copy {
    max-width: 680px;
  }

  .wm-contact-card {
    justify-self: start;
  }

  .wm-post-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .wm-content-with-sidebar {
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 36px;
  }
}

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

  .admin-bar .wm-primary-nav {
    top: 128px;
  }
}

@media (max-width: 760px) {
  .wm-container,
  .wm-content-narrow {
    width: min(calc(100% - 36px), var(--wm-container));
  }

  .wm-section {
    padding: 78px 0;
  }

  .wm-header-inner {
    min-height: 74px;
  }

  .wm-primary-nav {
    top: 74px;
  }

  .admin-bar .wm-primary-nav {
    top: 120px;
  }

  .wm-default-logo img,
  .custom-logo {
    max-width: 185px;
    height: 32px;
  }

  .wm-section-heading {
    margin-bottom: 40px;
  }

  .wm-section-heading h2,
  .wm-audience-intro h2,
  .wm-ai-copy h2,
  .wm-faq-intro h2,
  .wm-contact-copy h2 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .wm-hero {
    min-height: 0;
    padding-top: 128px;
  }

  .wm-hero h1 {
    font-size: clamp(2.85rem, 13vw, 4.4rem);
  }

  .wm-hero-lead {
    font-size: 1.05rem;
  }

  .wm-hero-actions {
    display: grid;
  }

  .wm-hero-actions .wm-btn {
    width: 100%;
  }

  .wm-hero-console::before,
  .wm-floating-card {
    display: none;
  }

  .wm-console-body {
    padding: 21px;
  }

  .wm-project-heading {
    align-items: flex-start;
  }

  .wm-project-heading h2 {
    font-size: 1.12rem;
  }

  .wm-capability-strip {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 26px 0 30px;
    margin-top: 62px;
    gap: 12px 20px;
  }

  .wm-capability-strip span {
    gap: 0;
    font-size: 0.67rem;
  }

  .wm-capability-strip span:not(:last-child)::after {
    display: none;
  }

  .wm-problem-grid,
  .wm-services-grid,
  .wm-process-grid,
  .wm-values-grid,
  .wm-post-grid {
    grid-template-columns: 1fr;
  }

  .wm-problem-card {
    min-height: 285px;
  }

  .wm-service-card {
    min-height: 280px;
  }

  .wm-tabs {
    grid-template-columns: 1fr;
  }

  .wm-tab {
    min-height: 45px;
  }

  .wm-tab-panel {
    min-height: 0;
    padding: 32px 24px 36px;
  }

  .wm-tab-panel > div:first-child {
    display: block;
  }

  .wm-tab-panel h3 {
    margin-top: 17px;
  }

  .wm-process-grid {
    gap: 46px;
  }

  .wm-process-step {
    padding: 0 0 0 66px;
  }

  .wm-process-number {
    position: absolute;
    top: 0;
    left: 0;
  }

  .wm-process-step h3 {
    margin: 0 0 8px;
  }

  .wm-ai-visual {
    min-height: 380px;
  }

  .wm-ai-orbit--one {
    width: 245px;
    height: 245px;
  }

  .wm-ai-orbit--two {
    width: 340px;
    height: 340px;
  }

  .wm-ai-core {
    width: 140px;
    height: 140px;
  }

  .wm-ai-core img {
    width: 86px;
  }

  .wm-ai-node--one {
    top: 45px;
    left: 3px;
  }

  .wm-ai-node--two {
    top: 92px;
    right: -3px;
  }

  .wm-ai-node--three {
    right: 15px;
    bottom: 35px;
  }

  .wm-value-card,
  .wm-value-card + .wm-value-card,
  .wm-value-card:nth-child(3),
  .wm-value-card:nth-child(4) {
    min-height: 0;
    border-top: 1px solid var(--wm-line);
    border-left: 0;
  }

  .wm-value-card:first-child {
    border-top: 0;
  }

  .wm-contact-card {
    padding: 28px 22px;
  }

  .wm-form-row {
    grid-template-columns: 1fr;
  }

  .wm-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 44px 28px;
  }

  .wm-footer-brand,
  .wm-footer-cta {
    grid-column: 1 / -1;
  }

  .wm-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .wm-inner-hero {
    padding: 145px 0 68px;
  }

  .wm-content-area {
    padding: 68px 0 86px;
  }

  .wm-builder-content {
    padding-top: 74px;
  }

  body.wm-builder-header-overlay .wm-builder-home-content {
    padding-top: 0;
  }

  .wm-content-with-sidebar {
    grid-template-columns: 1fr;
  }

  .wm-empty-state {
    padding: 42px 22px;
  }
}

@media (max-width: 480px) {
  .wm-container,
  .wm-content-narrow {
    width: min(calc(100% - 28px), var(--wm-container));
  }

  .wm-menu-toggle-label {
    display: none;
  }

  .wm-hero h1 {
    font-size: 2.72rem;
  }

  .wm-project-heading .wm-ai-chip {
    display: none;
  }

  .wm-console-body {
    padding: 18px 15px;
  }

  .wm-ai-visual {
    min-height: 340px;
    transform: scale(0.9);
    transform-origin: center;
  }

  .wm-ai-orbit--two {
    width: 320px;
    height: 320px;
  }

  .wm-ai-node {
    padding: 8px 12px;
    font-size: 0.7rem;
  }

  .wm-footer-grid {
    grid-template-columns: 1fr;
  }

  .wm-footer-brand,
  .wm-footer-cta {
    grid-column: auto;
  }

  .wm-whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }
}

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

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

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .wm-site-header,
  .wm-whatsapp-float,
  .wm-site-footer,
  .wm-hero-actions,
  .wm-contact-section {
    display: none !important;
  }

  .wm-hero,
  .wm-inner-hero,
  .wm-process-section {
    min-height: 0;
    padding: 30px 0;
    background: #fff !important;
    color: #000 !important;
  }

  .wm-hero h1,
  .wm-inner-hero h1,
  .wm-process-section h2,
  .wm-process-step h3 {
    color: #000 !important;
  }
}
