/*
 * PuertoWeb Design System v1.0
 * Scope: HTML blocks embedded in WordPress/Divi.
 * Convention: every public class uses the pw- prefix to avoid Divi collisions.
 * Fonts are deliberately system-first; load Manrope separately only if approved.
 */

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../fonts/manrope-latin-variable.woff2") format("woff2");
}

:root {
  --pw-ink: #2f3640;
  --pw-ink-2: #20262e;
  --pw-coral: #ef7743;
  --pw-coral-700: #b74620;
  --pw-sea: #147a83;
  --pw-sea-700: #0d5961;
  --pw-sea-soft: #e2f2f2;
  --pw-sand: #f7f5f1;
  --pw-surface: #ffffff;
  --pw-text: #343c46;
  --pw-muted: #5e6873;
  --pw-line: #d9e0e4;
  --pw-success: #267a5b;
  --pw-danger: #a53b32;
  --pw-shadow-sm: 0 8px 24px rgba(47, 54, 64, 0.08);
  --pw-shadow-md: 0 20px 56px rgba(47, 54, 64, 0.13);
  --pw-shadow-focus: 0 0 0 4px rgba(239, 119, 67, 0.28);
  --pw-radius-sm: 10px;
  --pw-radius-md: 18px;
  --pw-radius-lg: 28px;
  --pw-font-sans: "Manrope", "Avenir Next", "Segoe UI", Arial, sans-serif;
  --pw-font-display: "Manrope", "Avenir Next", "Segoe UI", Arial, sans-serif;
  --pw-container: 1180px;
  --pw-gutter: clamp(18px, 4vw, 44px);
  --pw-section-space: clamp(72px, 7.2vw, 104px);
  --pw-transition: 180ms ease;
}

.pw-page,
.pw-site-header,
.pw-site-footer {
  color: var(--pw-text);
  font-family: var(--pw-font-sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.pw-page,
.pw-page *,
.pw-page *::before,
.pw-page *::after,
.pw-site-header *,
.pw-site-header *::before,
.pw-site-header *::after,
.pw-site-footer *,
.pw-site-footer *::before,
.pw-site-footer *::after {
  box-sizing: border-box;
}

.pw-page {
  background: var(--pw-surface);
  overflow-x: clip;
}

.pw-page :where(h1, h2, h3, h4, p, ul, ol, blockquote, figure) {
  margin-top: 0;
}

.pw-page :where(h1, h2, h3, h4) {
  color: var(--pw-ink);
  font-family: var(--pw-font-display);
  font-weight: 760;
  letter-spacing: -0.035em;
  line-height: 1.08;
  text-wrap: balance;
}

.pw-page :where(p, li) {
  text-wrap: pretty;
}

.pw-page :where(img, svg, video) {
  display: block;
  max-width: 100%;
  height: auto;
}

.pw-logo--inverse {
  filter: brightness(0) invert(1);
}

.pw-page :where(a) {
  color: var(--pw-sea-700);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.pw-page :where(a, button, input, textarea, select, summary):focus-visible,
.pw-site-header :where(a, button):focus-visible,
.pw-site-footer :where(a, button):focus-visible {
  border-radius: 4px;
  outline: 3px solid #fff;
  outline-offset: 2px;
  box-shadow: 0 0 0 6px var(--pw-coral-700);
}

.pw-page [id] {
  scroll-margin-top: 104px;
}

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

.pw-full-bleed {
  position: relative;
  left: 50%;
  width: 100vw;
  max-width: 100vw;
  margin-left: -50vw;
  overflow-x: clip;
}

.et_pb_code_inner > .pw-page,
.et_pb_text_inner > .pw-page {
  width: 100%;
  max-width: none;
}

.pw-sr-only {
  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;
}

.pw-skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--pw-ink);
  color: #fff !important;
  transform: translateY(-150%);
  transition: transform var(--pw-transition);
}

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

/* Global header */
.pw-site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(47, 54, 64, 0.1);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.pw-nav {
  position: relative;
  display: grid;
  grid-template-columns: minmax(170px, 1fr) auto auto;
  gap: clamp(18px, 3vw, 40px);
  align-items: center;
  min-height: 78px;
}

.pw-nav__brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  text-decoration: none !important;
}

.pw-nav__brand img,
.pw-nav__brand svg {
  width: clamp(166px, 16vw, 208px);
  height: auto;
}

.pw-nav__menu {
  display: flex;
  gap: clamp(18px, 2.5vw, 34px);
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pw-nav-toggle {
  display: none;
}

.pw-nav__item {
  position: relative;
}

.pw-nav__parent {
  display: flex;
  align-items: center;
}

.pw-nav__menu > .pw-nav__item > a,
.pw-nav__parent > a,
.pw-nav__section {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--pw-ink) !important;
  font-size: 15px;
  font-weight: 720;
  text-decoration: none !important;
}

.pw-nav__section {
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  font-family: inherit;
  cursor: pointer;
}

.pw-nav__menu > .pw-nav__item > a::after,
.pw-nav__parent > a::after,
.pw-nav__section::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 2px;
  background: var(--pw-coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--pw-transition);
}

.pw-nav__menu > .pw-nav__item > a:hover::after,
.pw-nav__menu > .pw-nav__item > a[aria-current="page"]::after,
.pw-nav__parent > a:hover::after,
.pw-nav__parent > a[aria-current="page"]::after,
.pw-nav__item.is-active > .pw-nav__parent > a::after,
.pw-nav__item.is-active .pw-nav__section::after {
  transform: scaleX(1);
}

.pw-submenu-toggle:not(.pw-nav__section) {
  display: inline-grid;
  width: 34px;
  min-width: 34px;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  place-items: center;
  cursor: pointer;
}

.pw-submenu-toggle > span[aria-hidden="true"] {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform var(--pw-transition);
}

.pw-nav__item.is-open .pw-submenu-toggle > span[aria-hidden="true"],
.pw-submenu-toggle[aria-expanded="true"] > span[aria-hidden="true"] {
  transform: translateY(2px) rotate(225deg);
}

.pw-nav__item--voice > a {
  min-height: 40px !important;
  padding: 0 15px;
  border: 1px solid rgba(239, 119, 67, 0.34);
  border-radius: 999px;
  background: rgba(239, 119, 67, 0.08);
  color: var(--pw-coral-700) !important;
}

.pw-nav__item--voice > a::after {
  content: none !important;
}

.pw-nav__item--voice > a:hover,
.pw-nav__item--voice > a[aria-current="page"] {
  border-color: var(--pw-coral);
  background: var(--pw-coral);
  color: #fff !important;
}

.pw-submenu {
  position: absolute;
  top: calc(100% + 12px);
  left: -18px;
  z-index: 20;
  width: 310px;
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(47, 54, 64, 0.11);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--pw-shadow-md);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity var(--pw-transition), visibility var(--pw-transition), transform var(--pw-transition);
}

.pw-submenu--right {
  right: -18px;
  left: auto;
}

.pw-nav__item--has-submenu:hover > .pw-submenu,
.pw-nav__item--has-submenu:focus-within > .pw-submenu,
.pw-nav__item--has-submenu.is-open > .pw-submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.pw-submenu::before {
  content: "";
  position: absolute;
  top: -13px;
  right: 0;
  left: 0;
  height: 13px;
}

.pw-submenu a {
  display: block;
  padding: 11px 12px;
  border-radius: 10px;
  color: var(--pw-ink) !important;
  line-height: 1.3;
  text-decoration: none !important;
}

.pw-submenu a::after {
  content: none !important;
}

.pw-submenu a:hover,
.pw-submenu a[aria-current="page"] {
  background: var(--pw-sea-soft);
}

.pw-submenu strong,
.pw-submenu span {
  display: block;
}

.pw-submenu strong {
  font-size: 14px;
  font-weight: 780;
}

.pw-submenu span {
  margin-top: 3px;
  color: var(--pw-muted);
  font-size: 12px;
  font-weight: 560;
}

/* Buttons */
.pw-button,
.pw-button:visited {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 22px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-family: var(--pw-font-sans);
  font-size: 15px;
  font-weight: 780;
  letter-spacing: 0;
  line-height: 1.2;
  text-align: center;
  text-decoration: none !important;
  cursor: pointer;
  transition: color var(--pw-transition), background var(--pw-transition), border-color var(--pw-transition), transform var(--pw-transition), box-shadow var(--pw-transition);
}

.pw-page .pw-button::after,
.pw-site-header .pw-button::after,
.pw-site-footer .pw-button::after {
  content: none !important;
}

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

.pw-button--primary,
.pw-button--primary:visited {
  background: var(--pw-ink);
  color: #fff !important;
  box-shadow: 0 10px 26px rgba(47, 54, 64, 0.2);
}

.pw-button--primary:hover {
  background: var(--pw-ink-2);
  color: #fff !important;
  box-shadow: 0 15px 32px rgba(47, 54, 64, 0.24);
}

.pw-button--coral,
.pw-button--coral:visited {
  background: var(--pw-coral-700);
  color: #fff !important;
  box-shadow: 0 10px 26px rgba(183, 70, 32, 0.22);
}

.pw-button--coral:hover {
  background: #9f3818;
  color: #fff !important;
}

.pw-button--secondary,
.pw-button--secondary:visited {
  border-color: var(--pw-sea);
  background: transparent;
  color: var(--pw-sea-700) !important;
}

.pw-button--secondary:hover {
  background: var(--pw-sea-soft);
  color: var(--pw-sea-700) !important;
}

.pw-button--light,
.pw-button--light:visited {
  background: #fff;
  color: var(--pw-ink) !important;
}

.pw-button--light:hover {
  background: var(--pw-sand);
  color: var(--pw-ink) !important;
}

.pw-button--sm {
  min-height: 44px;
  padding: 10px 18px;
  font-size: 14px;
}

.pw-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* Sections and typography */
.pw-section {
  padding-block: var(--pw-section-space);
  background: var(--pw-surface);
}

.pw-section--sand {
  background: var(--pw-sand);
}

.pw-section--sea-soft {
  background: var(--pw-sea-soft);
}

.pw-section--dark {
  background: var(--pw-ink);
  color: #eaf0f2;
}

.pw-section--dark :where(h1, h2, h3, h4) {
  color: #fff;
}

.pw-eyebrow {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 18px;
  color: var(--pw-sea-700);
  font-size: 13px;
  font-weight: 820;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.pw-eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  border-radius: 99px;
  background: var(--pw-coral);
}

.pw-section--dark .pw-eyebrow {
  color: #9ddbdd;
}

.pw-title {
  max-width: 880px;
  margin-bottom: 22px;
  font-size: clamp(36px, 5vw, 64px);
}

.pw-title--sm {
  font-size: clamp(30px, 4vw, 48px);
}

.pw-lead {
  max-width: 760px;
  margin-bottom: 34px;
  color: var(--pw-muted);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.65;
}

.pw-section--dark .pw-lead {
  color: #cbd7db;
}

/* Hero and voice visual */
.pw-hero {
  position: relative;
  min-height: min(760px, calc(100svh - 78px));
  padding-block: clamp(56px, 7vw, 96px);
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 18%, rgba(20, 122, 131, 0.38), transparent 31%),
    radial-gradient(circle at 68% 88%, rgba(239, 119, 67, 0.2), transparent 28%),
    linear-gradient(135deg, #2f3640 0%, #20262e 100%);
  color: #fff;
  isolation: isolate;
}

.pw-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 62%, #000 100%);
}

.pw-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
  gap: clamp(44px, 7vw, 92px);
  align-items: center;
}

.pw-hero .pw-eyebrow {
  color: #a9e0e2;
}

.pw-hero h1 {
  max-width: 790px;
  margin-bottom: 24px;
  color: #fff;
  font-size: clamp(42px, 5.4vw, 68px);
  letter-spacing: -0.052em;
}

.pw-hero figure.pw-voice-console > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  object-fit: cover;
  object-position: 65% center;
}

.pw-hero__lead {
  max-width: 680px;
  margin-bottom: 34px;
  color: #dbe4e7;
  font-size: clamp(18px, 2.1vw, 22px);
  line-height: 1.6;
}

.pw-hero__note {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 20px 0 0;
  color: #bfcdd1;
  font-size: 14px;
}

.pw-hero__note::before {
  content: "";
  flex: 0 0 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pw-coral);
}

.pw-voice-console {
  position: relative;
  padding: clamp(24px, 4vw, 36px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--pw-radius-lg);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.pw-voice-console::after {
  content: "";
  position: absolute;
  right: -65px;
  bottom: -65px;
  width: 180px;
  height: 180px;
  border: 38px solid rgba(239, 119, 67, 0.16);
  border-radius: 50%;
}

.pw-voice-console__top {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.pw-status {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: #d8eeef;
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.04em;
}

.pw-status::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #4bd1a0;
  box-shadow: 0 0 0 5px rgba(75, 209, 160, 0.14);
}

.pw-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #c5d5d9;
  font-size: 12px;
  font-weight: 700;
}

.pw-wave {
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
  min-height: 118px;
  margin-bottom: 28px;
}

.pw-wave span {
  width: 6px;
  height: var(--pw-wave-height, 38px);
  border-radius: 99px;
  background: linear-gradient(180deg, #75d6d9, var(--pw-coral));
  transform-origin: center;
  animation: pw-wave 1.5s ease-in-out infinite alternate;
  animation-delay: var(--pw-wave-delay, 0ms);
}

@keyframes pw-wave {
  from { transform: scaleY(0.55); opacity: 0.7; }
  to { transform: scaleY(1); opacity: 1; }
}

.pw-voice-console__summary {
  position: relative;
  z-index: 1;
  padding: 18px;
  border-radius: var(--pw-radius-sm);
  background: rgba(32, 38, 46, 0.62);
}

.pw-voice-console__summary strong {
  display: block;
  margin-bottom: 5px;
  color: #fff;
  font-size: 15px;
}

.pw-voice-console__summary p {
  margin: 0;
  color: #c7d5d9;
  font-size: 14px;
  line-height: 1.55;
}

/* Grids, cards and icons */
.pw-grid {
  display: grid;
  gap: clamp(18px, 3vw, 30px);
}

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

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

.pw-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: clamp(26px, 4vw, 38px);
  border: 1px solid var(--pw-line);
  border-radius: var(--pw-radius-md);
  background: var(--pw-surface);
  box-shadow: var(--pw-shadow-sm);
  transition: transform var(--pw-transition), border-color var(--pw-transition), box-shadow var(--pw-transition);
}

.pw-card:hover {
  border-color: rgba(20, 122, 131, 0.36);
  box-shadow: var(--pw-shadow-md);
  transform: translateY(-5px);
}

.pw-card--web {
  border-top: 5px solid var(--pw-coral);
}

.pw-card--voice {
  border-top: 5px solid var(--pw-sea);
}

.pw-icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  border-radius: 15px;
  background: var(--pw-sand);
  color: var(--pw-ink);
}

.pw-card--web .pw-icon {
  background: #fff0e9;
  color: var(--pw-coral-700);
}

.pw-card--voice .pw-icon {
  background: var(--pw-sea-soft);
  color: var(--pw-sea-700);
}

.pw-icon svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
}

.pw-card h3 {
  margin-bottom: 12px;
  font-size: clamp(24px, 2.4vw, 31px);
}

.pw-card p {
  margin-bottom: 22px;
  color: var(--pw-muted);
}

.pw-card address {
  color: var(--pw-muted);
  font-style: normal;
  line-height: 1.7;
}

.pw-card dl {
  margin: 0;
}

.pw-card dt {
  color: var(--pw-ink);
  font-weight: 760;
}

.pw-card dd {
  margin: 0 0 10px;
  color: var(--pw-muted);
}

.pw-card__link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  width: fit-content;
  margin-top: auto;
  color: var(--pw-sea-700) !important;
  font-weight: 800;
  text-decoration: none !important;
}

.pw-card__link::after {
  content: "→";
  transition: transform var(--pw-transition);
}

.pw-card__link:hover::after {
  transform: translateX(4px);
}

.pw-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.pw-tag-list li {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--pw-sand);
  color: var(--pw-muted);
  font-size: 12px;
  font-weight: 720;
}

/* Flow and process */
.pw-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  counter-reset: pw-flow;
}

.pw-flow__step {
  position: relative;
  padding: 28px 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--pw-radius-sm);
  background: rgba(255, 255, 255, 0.055);
  counter-increment: pw-flow;
}

.pw-flow__step::before {
  content: "0" counter(pw-flow);
  display: block;
  margin-bottom: 20px;
  color: #8fd1d4;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.pw-flow__step h3 {
  margin-bottom: 10px;
  color: #fff;
  font-size: 21px;
}

.pw-flow__step p {
  margin: 0;
  color: #c7d4d8;
  font-size: 15px;
}

/* Proof, cases and quotes */
.pw-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--pw-line);
  border-radius: var(--pw-radius-md);
  background: var(--pw-line);
}

.pw-stat {
  padding: clamp(24px, 4vw, 36px);
  background: #fff;
}

.pw-stat strong {
  display: block;
  margin-bottom: 8px;
  color: var(--pw-ink);
  font-family: var(--pw-font-display);
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1;
}

.pw-stat span {
  color: var(--pw-muted);
  font-size: 14px;
}

.pw-case {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  overflow: hidden;
  border: 1px solid var(--pw-line);
  border-radius: var(--pw-radius-lg);
  background: #fff;
  box-shadow: var(--pw-shadow-sm);
}

.pw-case__media {
  min-height: 380px;
  background: var(--pw-sand) center / cover no-repeat;
}

.pw-map-frame {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 450px;
  border: 0;
}

.pw-case__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 6vw, 66px);
}

.pw-case__body h3 {
  margin-bottom: 16px;
  font-size: clamp(28px, 3.4vw, 43px);
}

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

.pw-quote {
  margin: 0;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--pw-line);
  border-radius: var(--pw-radius-md);
  background: #fff;
  box-shadow: var(--pw-shadow-sm);
}

.pw-quote::before {
  content: "“";
  display: block;
  height: 40px;
  color: var(--pw-coral);
  font-family: Georgia, serif;
  font-size: 72px;
  line-height: 0.9;
}

.pw-quote p {
  margin-bottom: 22px;
  color: var(--pw-ink);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.pw-quote footer {
  color: var(--pw-muted);
  font-size: 14px;
}

.pw-quote footer strong {
  color: var(--pw-ink);
}

/* Comparison table */
.pw-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--pw-line);
  border-radius: var(--pw-radius-md);
  background: #fff;
  box-shadow: var(--pw-shadow-sm);
}

.pw-table-wrap:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
  box-shadow: 0 0 0 6px var(--pw-coral-700);
}

.pw-scroll-hint {
  display: none;
  margin-bottom: 12px;
  color: var(--pw-muted);
  font-size: 14px;
}

.pw-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

.pw-table th,
.pw-table td {
  padding: 20px 24px;
  border-bottom: 1px solid var(--pw-line);
  text-align: left;
  vertical-align: top;
}

.pw-table th {
  background: var(--pw-sand);
  color: var(--pw-ink);
  font-size: 14px;
  font-weight: 820;
}

.pw-table td {
  color: var(--pw-muted);
}

.pw-table tbody tr:last-child td {
  border-bottom: 0;
}

/* FAQ */
.pw-faq {
  display: grid;
  gap: 12px;
  max-width: 920px;
}

.pw-faq details {
  padding-inline: 22px;
  border: 1px solid var(--pw-line);
  border-radius: var(--pw-radius-sm);
  background: #fff;
}

.pw-faq summary {
  position: relative;
  padding: 22px 44px 22px 0;
  color: var(--pw-ink);
  font-family: var(--pw-font-display);
  font-size: 18px;
  font-weight: 760;
  line-height: 1.35;
  list-style: none;
  cursor: pointer;
}

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

.pw-faq summary::after {
  content: "+";
  position: absolute;
  top: 14px;
  right: 0;
  color: var(--pw-sea);
  font-size: 30px;
  font-weight: 500;
}

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

.pw-faq details p {
  margin: 0;
  padding: 0 0 22px;
  color: var(--pw-muted);
}

/* Forms */
.pw-form {
  display: grid;
  gap: 18px;
}

.pw-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

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

.pw-field label {
  color: var(--pw-ink);
  font-size: 14px;
  font-weight: 760;
}

.pw-field :where(input, textarea, select) {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid #b9c4ca;
  border-radius: 9px;
  background: #fff;
  color: var(--pw-ink);
  font: inherit;
}

.pw-field textarea {
  min-height: 130px;
  resize: vertical;
}

.pw-field :where(input, textarea, select):focus {
  border-color: var(--pw-sea);
  outline: 3px solid #fff;
  outline-offset: 2px;
  box-shadow: 0 0 0 6px var(--pw-coral-700);
}

.pw-form__note {
  margin: 0;
  color: var(--pw-muted);
  font-size: 13px;
}

/* Final CTA */
.pw-cta {
  position: relative;
  padding: clamp(42px, 7vw, 78px);
  overflow: hidden;
  border-radius: var(--pw-radius-lg);
  background:
    radial-gradient(circle at 85% 10%, rgba(20, 122, 131, 0.48), transparent 30%),
    linear-gradient(135deg, var(--pw-ink), var(--pw-ink-2));
  color: #fff;
}

.pw-cta::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -90px;
  width: 260px;
  height: 260px;
  border: 48px solid rgba(239, 119, 67, 0.18);
  border-radius: 50%;
}

.pw-cta__content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.pw-cta h2 {
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(34px, 5vw, 58px);
}

.pw-cta p {
  margin-bottom: 28px;
  color: #cedadd;
  font-size: 19px;
}

/* Global footer */
.pw-site-footer {
  padding-top: clamp(58px, 7vw, 88px);
  background: var(--pw-ink-2);
  color: #c7d0d4;
}

.pw-footer__intro {
  display: grid;
  grid-template-columns: minmax(184px, 0.65fr) minmax(280px, 1.35fr);
  gap: clamp(28px, 6vw, 96px);
  align-items: end;
  margin-bottom: clamp(38px, 5vw, 58px);
  padding-bottom: clamp(32px, 4vw, 46px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.pw-footer__intro img { width: min(220px, 100%); }
.pw-footer__intro p { max-width: 660px; margin: 0; color: #eef3f4; font-size: clamp(18px, 2.2vw, 27px); line-height: 1.4; }

.pw-footer__grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.5fr) repeat(3, minmax(150px, 1fr));
  gap: clamp(32px, 5vw, 72px);
  padding-bottom: clamp(48px, 7vw, 74px);
}

.pw-footer__brand img,
.pw-footer__brand svg {
  width: min(220px, 100%);
  margin-bottom: 22px;
}

.pw-footer__brand p {
  max-width: 340px;
  margin: 0 0 22px;
  color: #c7d0d4;
}

.pw-footer__title {
  margin: 0 0 18px;
  color: #fff;
  font-size: 14px;
  font-weight: 820;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.pw-footer__links {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pw-site-footer a {
  color: #d4dcdf !important;
  text-decoration: none !important;
}

.pw-site-footer a:hover {
  color: #fff !important;
  text-decoration: underline !important;
  text-underline-offset: 3px;
}

.pw-footer__bottom {
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
  padding-block: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: #aeb9bd;
  font-size: 13px;
}

.pw-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Editorial layouts and visual library */
.pw-section--compact { padding-block: clamp(32px, 4vw, 48px); }
.pw-hero--service { min-height: min(760px, 86vh); }
.pw-hero__price { display: inline-flex; flex-wrap: wrap; gap: 6px; align-items: baseline; margin: 4px 0 24px; color: rgba(255,255,255,.82); }
.pw-hero__price strong,
.pw-inline-price strong { display: flex; flex-wrap: wrap; gap: 3px 10px; align-items: baseline; }
.pw-hero__price strong { color: #fff; font-size: clamp(18px,2.2vw,26px); }
.pw-price-lock { white-space: nowrap; }
.pw-hero-visual { position: relative; margin: 0; border: 1px solid rgba(255,255,255,.18); border-radius: var(--pw-radius-lg); overflow: hidden; background: #102f35; box-shadow: 0 30px 72px rgba(9,28,33,.42); transform: rotate(1.1deg); }
.pw-hero-visual::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg,transparent 58%,rgba(20,32,39,.25)); }
.pw-hero-visual img { width: 100%; aspect-ratio: 3/2; object-fit: cover; }
.pw-hero-visual__note { position: absolute; z-index: 1; right: 20px; bottom: 20px; left: 20px; display: flex; gap: 14px; align-items: center; padding: 16px 18px; border: 1px solid rgba(255,255,255,.3); border-radius: 16px; color: #fff; background: rgba(24,39,46,.78); box-shadow: var(--pw-shadow-sm); backdrop-filter: blur(12px); }
.pw-hero-visual__note strong,.pw-hero-visual__note span { display: block; }
.pw-hero-visual__note span { font-size: 13px; line-height: 1.45; }
.pw-line-icon { width: 28px; height: 28px; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.pw-icon-sprite { position: absolute !important; width: 0 !important; height: 0 !important; overflow: hidden !important; pointer-events: none; }
.pw-feature-lines { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); overflow: hidden; border: 1px solid var(--pw-line); border-radius: 22px; background: linear-gradient(135deg,#fff 0%,#fbfcfc 100%); box-shadow: 0 18px 46px rgba(47,54,64,.07); }
.pw-feature-line { position: relative; display: grid; grid-template-columns: 52px 1fr; gap: 18px; align-items: center; padding: 28px clamp(22px,2.5vw,34px); }
.pw-feature-line > .pw-line-icon { grid-column: 1; grid-row: 1; }
.pw-feature-line > div { grid-column: 2; grid-row: 1; min-width: 0; }
.pw-feature-line > p:empty { display: none; }
.pw-feature-line + .pw-feature-line { border-left: 1px solid var(--pw-line); }
.pw-feature-line .pw-line-icon { width: 52px; height: 52px; padding: 12px; border-radius: 15px; color: var(--pw-coral-700); background: #fff0e9; }
.pw-feature-line__number { position: absolute; top: 12px; right: 14px; color: rgba(47,54,64,.2); font-size: 11px; font-weight: 850; letter-spacing: .12em; }
.pw-feature-line h2 { margin-bottom: 7px; font-size: 19px; }
.pw-feature-line p { margin: 0; color: var(--pw-muted); font-size: 14px; line-height: 1.5; }
.pw-editorial-split { display: grid; grid-template-columns: minmax(0,.9fr) minmax(360px,1.1fr); gap: clamp(42px,8vw,112px); align-items: center; }
.pw-icon-list { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--pw-line); }
.pw-icon-list li { display: grid; grid-template-columns: 32px 1fr; gap: 18px; align-items: start; padding: 22px 0; border-bottom: 1px solid var(--pw-line); }
.pw-icon-list .pw-line-icon { color: var(--pw-sea); }
.pw-dialogue { position: relative; display: grid; gap: 14px; padding: clamp(28px,4vw,48px); border: 1px solid rgba(20,122,131,.22); border-radius: var(--pw-radius-lg); background: var(--pw-surface); box-shadow: var(--pw-shadow-md); }
.pw-dialogue p { max-width: 88%; margin: 0; padding: 13px 16px; border-radius: 5px 16px 16px 16px; background: var(--pw-sea-soft); }
.pw-dialogue p:nth-of-type(even) { justify-self: end; border-radius: 16px 5px 16px 16px; background: #fff0e9; }
.pw-dialogue strong { display: block; margin-bottom: 4px; color: var(--pw-ink); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.pw-dialogue small { margin-top: 10px; color: var(--pw-muted); }
.pw-flow--icons .pw-flow__step .pw-line-icon { margin-bottom: 24px; color: #64d5d6; }
.pw-flow__step > span { display: block; margin-bottom: 10px; color: #64d5d6; font-size: 12px; font-weight: 800; letter-spacing: .12em; }
.pw-flow--icons .pw-flow__step::before { content: none; }
.pw-service-list { display: grid; gap: 0; border-top: 1px solid var(--pw-line); }
.pw-service-list > div { display: grid; grid-template-columns: 34px 1fr; gap: 18px; align-items: start; padding: 21px 0; border-bottom: 1px solid var(--pw-line); }
.pw-service-list .pw-line-icon { color: var(--pw-coral-700); }
.pw-service-list p,.pw-service-list strong,.pw-service-list span { display: block; margin: 0; }
.pw-service-list span { margin-top: 3px; color: var(--pw-muted); font-size: 14px; }
.pw-price-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 20px; margin-top: 48px; align-items: stretch; }
.pw-price-plan { display: flex; flex-direction: column; padding: clamp(26px,3vw,38px); border: 1px solid var(--pw-line); border-radius: var(--pw-radius-md); background: var(--pw-surface); box-shadow: var(--pw-shadow-sm); }
.pw-price-plan--featured { border: 2px solid var(--pw-sea); box-shadow: 0 24px 56px rgba(20,122,131,.17); transform: translateY(-10px); }
.pw-price-plan__label { margin-bottom: 14px; color: var(--pw-sea-700); font-size: 12px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.pw-price-plan h3 { min-height: 2.2em; margin-bottom: 18px; font-size: 22px; }
.pw-price { margin-bottom: 5px; }
.pw-price strong,.pw-price span { display: block; }
.pw-price strong { color: var(--pw-ink); font-size: clamp(34px,4vw,48px); letter-spacing: -.05em; line-height: 1; }
.pw-price span,.pw-price-alt { color: var(--pw-muted); font-size: 13px; }
.pw-price-alt { min-height: 3em; margin-bottom: 20px; }
.pw-price-meta { display: grid; gap: 0; margin: 0 0 22px; border-top: 1px solid var(--pw-line); }
.pw-price-meta div { display: flex; justify-content: space-between; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--pw-line); }
.pw-price-meta dt,.pw-price-meta dd { margin: 0; font-size: 13px; }
.pw-price-meta dd { color: var(--pw-ink); font-weight: 800; }
.pw-price-plan ul { flex: 1; margin: 0 0 26px; padding-left: 19px; }
.pw-price-plan li + li { margin-top: 7px; }
.pw-pricing-terms { margin-top: 30px; padding: 20px 24px; border-left: 4px solid var(--pw-coral); color: var(--pw-muted); background: rgba(255,255,255,.68); font-size: 13px; }
.pw-pricing-terms p { margin-bottom: 6px; }
.pw-pricing-terms p:last-child { margin-bottom: 0; }
.pw-text-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; }
.pw-text-link::after { content: "→"; transition: transform var(--pw-transition); }
.pw-text-link:hover::after { transform: translateX(4px); }

.pw-system-section {
  position: relative;
  overflow: hidden;
}

.pw-system-section::before {
  content: "";
  position: absolute;
  top: -180px;
  left: -140px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(20,122,131,.12);
  border-radius: 50%;
}

.pw-system-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px,.78fr) minmax(520px,1.22fr);
  gap: clamp(52px,8vw,116px);
  align-items: center;
}

.pw-system-copy {
  max-width: 540px;
}

.pw-system-copy .pw-title {
  max-width: 540px;
  font-size: clamp(42px,4.1vw,58px);
}

.pw-system-copy .pw-lead {
  max-width: 520px;
  margin-bottom: 28px;
  font-size: clamp(18px,1.5vw,21px);
  line-height: 1.65;
}

.pw-system-board {
  position: relative;
  padding: clamp(28px,3.5vw,46px);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 28px;
  color: #d9e6e8;
  background: radial-gradient(circle at 100% 0%,rgba(20,122,131,.44),transparent 38%),linear-gradient(145deg,#26313a,#17252c);
  box-shadow: 0 30px 72px rgba(27,39,47,.22);
}

.pw-system-board::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -110px;
  width: 260px;
  height: 260px;
  border: 46px solid rgba(239,119,67,.1);
  border-radius: 50%;
}

.pw-system-board__label {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 28px;
  color: #9ddbdd;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.pw-system-board__label::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pw-coral);
  box-shadow: 0 0 0 6px rgba(239,119,67,.12);
}

.pw-system-path {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.pw-system-path::before,
.pw-system-path::after {
  content: "";
  position: absolute;
  background: rgba(255,255,255,.12);
}

.pw-system-path::before { top: 50%; right: 0; left: 0; height: 1px; }
.pw-system-path::after { top: 0; bottom: 0; left: 50%; width: 1px; }

.pw-system-path li {
  position: relative;
  min-height: 188px;
  padding: 8px 30px 28px 0;
}

.pw-system-path li:nth-child(even) { padding-right: 0; padding-left: 30px; }
.pw-system-path li:nth-child(n+3) { padding-top: 30px; padding-bottom: 0; }

.pw-system-path__top {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}

.pw-system-path .pw-line-icon {
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 1px solid rgba(157,219,221,.28);
  border-radius: 13px;
  color: #9ddbdd;
  background: rgba(20,122,131,.18);
}

.pw-system-path__number {
  color: rgba(255,255,255,.42);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .12em;
}

.pw-system-path h3 {
  margin-bottom: 8px;
  color: #fff;
  font-size: 20px;
}

.pw-system-path p {
  margin: 0;
  color: #b9c9ce;
  font-size: 14px;
  line-height: 1.55;
}


/* Utilities */
.pw-stack > * + * {
  margin-top: var(--pw-stack-space, 18px);
}

.pw-cluster {
  display: flex;
  flex-wrap: wrap;
  gap: var(--pw-cluster-space, 12px);
  align-items: center;
}

.pw-text-center {
  text-align: center;
}

.pw-text-center :where(.pw-title, .pw-lead) {
  margin-inline: auto;
}

.pw-mb-0 { margin-bottom: 0 !important; }
.pw-mt-32 { margin-top: 32px !important; }
.pw-mt-48 { margin-top: 48px !important; }
.pw-mt-64 { margin-top: 64px !important; }

@media (max-width: 1080px) {
  .pw-system-layout {
    grid-template-columns: 1fr;
  }

  .pw-system-copy {
    max-width: 680px;
  }

  .pw-editorial-split {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .pw-price-grid {
    grid-template-columns: 1fr;
    max-width: 720px;
    margin-inline: auto;
  }

  .pw-price-plan--featured {
    transform: none;
  }

  .pw-hero__grid,
  .pw-case {
    grid-template-columns: 1fr;
  }

  .pw-hero {
    min-height: auto;
  }

  .pw-hero__copy {
    max-width: 760px;
  }

  .pw-voice-console {
    max-width: 660px;
  }

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

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

  .pw-case__media {
    min-height: 340px;
  }

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

@media (max-width: 920px) {
  .pw-nav {
    grid-template-columns: minmax(150px, 1fr) auto auto;
    gap: 12px;
  }

  .pw-nav-toggle {
    position: relative;
    display: inline-grid;
    grid-column: 3;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--pw-line);
    border-radius: 50%;
    background: #fff;
    place-items: center;
    cursor: pointer;
  }

  .pw-nav-toggle__icon,
  .pw-nav-toggle__icon::before,
  .pw-nav-toggle__icon::after {
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: var(--pw-ink);
    transition: transform var(--pw-transition), opacity var(--pw-transition);
  }

  .pw-nav-toggle__icon {
    position: relative;
  }

  .pw-nav-toggle__icon::before,
  .pw-nav-toggle__icon::after {
    content: "";
    position: absolute;
    left: 0;
  }

  .pw-nav-toggle__icon::before { top: -6px; }
  .pw-nav-toggle__icon::after { top: 6px; }

  .pw-nav-toggle[aria-expanded="true"] .pw-nav-toggle__icon {
    background: transparent;
  }

  .pw-nav-toggle[aria-expanded="true"] .pw-nav-toggle__icon::before {
    top: 0;
    transform: rotate(45deg);
  }

  .pw-nav-toggle[aria-expanded="true"] .pw-nav-toggle__icon::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .pw-nav > .pw-button {
    grid-column: 2;
    grid-row: 1;
  }

  .pw-nav > nav {
    position: absolute;
    top: calc(100% - 1px);
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100vh - 88px);
    padding: 10px 16px 18px;
    overflow-y: auto;
    border: 1px solid var(--pw-line);
    border-top: 0;
    border-radius: 0 0 18px 18px;
    background: rgba(255, 255, 255, 0.99);
    box-shadow: var(--pw-shadow-md);
  }

  .pw-nav > nav.is-open {
    display: block;
  }

  .pw-nav__menu {
    display: block;
  }

  .pw-nav__item {
    border-bottom: 1px solid var(--pw-line);
  }

  .pw-nav__item:last-child {
    border-bottom: 0;
  }

  .pw-nav__parent {
    justify-content: space-between;
  }

  .pw-nav__menu > .pw-nav__item > a,
  .pw-nav__parent > a,
  .pw-nav__section {
    width: 100%;
    min-height: 54px;
  }

  .pw-nav__parent > a {
    flex: 1;
  }

  .pw-nav__section {
    justify-content: space-between;
  }

  .pw-nav__menu > .pw-nav__item > a::after,
  .pw-nav__parent > a::after,
  .pw-nav__section::after {
    content: none;
  }

  .pw-nav__item--voice {
    padding-block: 8px;
  }

  .pw-nav__item--voice > a {
    justify-content: center;
  }

  .pw-submenu {
    position: static;
    display: none;
    width: auto;
    padding: 0 0 10px 14px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .pw-nav__item--has-submenu:hover > .pw-submenu,
  .pw-nav__item--has-submenu:focus-within > .pw-submenu {
    display: none;
  }

  .pw-nav__item--has-submenu.is-open > .pw-submenu {
    display: block;
  }

  .pw-submenu::before {
    content: none;
  }
}

@media (max-width: 680px) {
  .pw-system-path {
    grid-template-columns: 1fr;
  }

  .pw-system-path::before,
  .pw-system-path::after {
    display: none;
  }

  .pw-system-path li,
  .pw-system-path li:nth-child(even),
  .pw-system-path li:nth-child(n+3) {
    min-height: auto;
    padding: 22px 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }

  .pw-system-path li:last-child {
    border-bottom: 0;
  }

  .pw-feature-lines {
    grid-template-columns: 1fr;
  }

  .pw-feature-line + .pw-feature-line {
    border-top: 1px solid var(--pw-line);
    border-left: 0;
  }

  .pw-hero-visual {
    transform: none;
  }

  .pw-hero-visual__note {
    position: relative;
    inset: auto;
    border: 0;
    border-radius: 0;
  }

  .pw-dialogue p {
    max-width: 96%;
  }

  :root {
    --pw-section-space: 68px;
  }

  .pw-nav {
    min-height: 70px;
  }

  .pw-nav__brand img,
  .pw-nav__brand svg {
    width: 158px;
  }

  .pw-nav > .pw-button {
    min-height: 42px;
    padding: 9px 15px;
    font-size: 13px;
  }

  .pw-hero {
    padding-block: 70px;
  }

  .pw-hero h1 {
    font-size: clamp(38px, 10.8vw, 46px);
  }

  .pw-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .pw-actions .pw-button {
    width: 100%;
  }

  .pw-scroll-hint {
    display: block;
  }

  .pw-grid--2,
  .pw-grid--3,
  .pw-flow,
  .pw-stat-grid,
  .pw-form__grid,
  .pw-footer__grid {
    grid-template-columns: 1fr;
  }

  .pw-stat-grid {
    gap: 1px;
  }

  .pw-case__media {
    min-height: 260px;
  }

  .pw-cta {
    padding: 38px 24px;
  }

  .pw-footer__grid {
    gap: 34px;
  }

  .pw-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pw-page *,
  .pw-page *::before,
  .pw-page *::after,
  .pw-site-header *,
  .pw-site-header *::before,
  .pw-site-header *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .pw-site-header,
  .pw-site-footer,
  .pw-actions,
  .pw-voice-console {
    display: none !important;
  }

  .pw-page {
    color: #000;
    background: #fff;
  }

  .pw-section,
  .pw-hero {
    padding-block: 32px;
    background: #fff !important;
    color: #000 !important;
  }

  .pw-page :where(h1, h2, h3, h4, p) {
    color: #000 !important;
  }
}

/* Connected ecosystem hero — identity direction v2. */
.pw-hero--ecosystem {
  min-height: min(760px, calc(100svh - 78px));
  background:
    radial-gradient(circle at 76% 24%, rgba(54, 197, 240, 0.13), transparent 31%),
    radial-gradient(circle at 28% 84%, rgba(239, 119, 67, 0.1), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f5f8fa 100%);
  color: var(--pw-ink);
}
.pw-hero--ecosystem::before {
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(38, 51, 66, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(38, 51, 66, 0.055) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 76% 50%, #000 0%, transparent 66%);
}
.pw-hero--ecosystem .pw-hero__grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1.08fr);
  gap: clamp(36px, 5vw, 72px);
}
.pw-hero--ecosystem .pw-eyebrow { color: var(--pw-sea-700); }
.pw-hero--ecosystem h1 {
  max-width: 680px;
  color: var(--pw-ink);
  font-size: clamp(46px, 5.3vw, 70px);
}
.pw-hero--ecosystem .pw-hero__lead { color: var(--pw-muted); }
.pw-hero--ecosystem .pw-hero__note { color: var(--pw-muted); }
.pw-hero--ecosystem .pw-button--secondary { background: rgba(255,255,255,.84); }

.pw-ecosystem {
  position: relative;
  min-width: 0;
}
.pw-ecosystem__scene {
  position: relative;
  width: min(100%, 620px);
  min-height: 560px;
  margin-inline: auto;
  isolation: isolate;
}
.pw-ecosystem__scene::before {
  content: "";
  position: absolute;
  inset: 62px 34px 58px;
  z-index: -2;
  border: 1px solid rgba(54,197,240,.22);
  border-radius: 48% 52% 44% 56% / 56% 42% 58% 44%;
  background:
    radial-gradient(circle at center, rgba(54,197,240,.18), rgba(255,255,255,.58) 42%, transparent 72%);
  filter: drop-shadow(0 30px 54px rgba(38,51,66,.1));
}
.pw-ecosystem__connections {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.pw-ecosystem__connections path {
  fill: none;
  stroke: url("#pw-ecosystem-line");
  stroke: var(--pw-sea);
  stroke-width: 2;
  stroke-dasharray: 7 8;
  opacity: .5;
  animation: pw-flow-line 16s linear infinite;
}
.pw-ecosystem__connections circle {
  fill: var(--pw-coral);
  stroke: #fff;
  stroke-width: 4;
  filter: drop-shadow(0 2px 7px rgba(239,119,67,.45));
}
@keyframes pw-flow-line { to { stroke-dashoffset: -120; } }

.pw-ecosystem__hub {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 156px;
  height: 156px;
  padding: 27px 16px 20px;
  border: 10px solid rgba(255,255,255,.88);
  border-radius: 50%;
  color: #fff;
  background: radial-gradient(circle at 38% 32%, #197f91, #263342 68%);
  box-shadow: 0 24px 56px rgba(38,51,66,.28), 0 0 0 1px rgba(54,197,240,.34);
  text-align: center;
  transform: translate(-50%, -50%);
  place-items: center;
}
.pw-ecosystem__hub .pw-line-icon {
  width: 38px;
  height: 38px;
  color: #5bd6f5;
  stroke-width: 1.8;
}
.pw-ecosystem__hub strong {
  display: block;
  margin-top: 2px;
  font-size: 15px;
}
.pw-ecosystem__hub small {
  display: block;
  color: #cde7ee;
  font-size: 10px;
  line-height: 1.35;
}
.pw-ecosystem__pulse {
  position: absolute;
  inset: -16px;
  z-index: -1;
  border: 1px solid rgba(54,197,240,.44);
  border-radius: 50%;
  animation: pw-hub-pulse 2.8s ease-out infinite;
}
@keyframes pw-hub-pulse {
  0% { opacity: .75; transform: scale(.88); }
  72%,100% { opacity: 0; transform: scale(1.2); }
}

.pw-ecosystem__module {
  position: absolute;
  display: grid;
  grid-template-columns: 42px minmax(0,1fr) auto;
  gap: 12px;
  align-items: center;
  width: 218px;
  min-height: 80px;
  padding: 14px;
  border: 1px solid rgba(38,51,66,.11);
  border-radius: 16px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 16px 38px rgba(38,51,66,.12);
  backdrop-filter: blur(14px);
  transition: transform var(--pw-transition), box-shadow var(--pw-transition);
}
.pw-ecosystem__module:hover {
  z-index: 3;
  box-shadow: 0 22px 46px rgba(38,51,66,.17);
  transform: translateY(-4px);
}
.pw-ecosystem__module p,
.pw-ecosystem__module small,
.pw-ecosystem__module strong { display: block; margin: 0; }
.pw-ecosystem__module small {
  margin-bottom: 3px;
  color: var(--pw-muted);
  font-size: 11px;
  line-height: 1.25;
}
.pw-ecosystem__module strong {
  color: var(--pw-ink);
  font-size: 13px;
  line-height: 1.25;
}
.pw-ecosystem__icon {
  display: grid;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  color: var(--pw-sea);
  background: var(--pw-sea-soft);
  place-items: center;
}
.pw-ecosystem__icon .pw-line-icon { width: 22px; height: 22px; }
.pw-ecosystem__module--call { top: 68px; left: 0; }
.pw-ecosystem__module--web { top: 48px; right: 0; }
.pw-ecosystem__module--team { bottom: 68px; left: 8px; }
.pw-ecosystem__module--summary { right: 0; bottom: 48px; width: 244px; }
.pw-ecosystem__status {
  padding: 4px 7px;
  border-radius: 999px;
  color: #267a5b;
  background: #e5f5ee;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}
.pw-ecosystem__metric,
.pw-ecosystem__check {
  display: grid;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #fff;
  background: var(--pw-coral);
  font-size: 12px;
  font-weight: 800;
  place-items: center;
}
.pw-ecosystem__check { background: var(--pw-success); }
.pw-ecosystem__browser {
  display: grid;
  grid-template-columns: repeat(3,4px);
  gap: 3px;
  align-content: start;
  width: 42px;
  height: 42px;
  padding: 9px 7px;
  border-radius: 10px;
  background: var(--pw-ink);
}
.pw-ecosystem__browser::after {
  content: "";
  grid-column: 1 / -1;
  width: 28px;
  height: 15px;
  margin-top: 4px;
  border-radius: 3px;
  background: linear-gradient(135deg, rgba(54,197,240,.9), rgba(239,119,67,.86));
}
.pw-ecosystem__browser i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #fff;
  opacity: .8;
}
.pw-ecosystem__caption {
  position: absolute;
  bottom: 0;
  left: 50%;
  display: flex;
  gap: 9px;
  align-items: center;
  color: var(--pw-muted);
  font-size: 12px;
  font-weight: 720;
  white-space: nowrap;
  transform: translateX(-50%);
}
.pw-ecosystem__caption span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pw-coral);
  box-shadow: 0 0 0 5px rgba(239,119,67,.12);
}

@media (max-width: 1080px) {
  .pw-hero--ecosystem .pw-hero__grid { grid-template-columns: 1fr; }
  .pw-hero--ecosystem .pw-hero__copy { max-width: 790px; }
  .pw-ecosystem { width: min(100%, 720px); margin-inline: auto; }
}
@media (max-width: 680px) {
  .pw-hero--ecosystem { padding-top: 56px; }
  .pw-hero--ecosystem h1 { font-size: clamp(40px, 12vw, 52px); }
  .pw-ecosystem__scene { min-height: 480px; }
  .pw-ecosystem__scene::before { inset: 60px 4px; }
  .pw-ecosystem__hub { width: 132px; height: 132px; padding: 22px 12px 16px; border-width: 8px; }
  .pw-ecosystem__hub .pw-line-icon { width: 30px; height: 30px; }
  .pw-ecosystem__module { width: 174px; min-height: 70px; grid-template-columns: 34px minmax(0,1fr) auto; gap: 8px; padding: 10px; }
  .pw-ecosystem__icon,
  .pw-ecosystem__browser { width: 34px; height: 34px; }
  .pw-ecosystem__browser { padding: 7px 5px; }
  .pw-ecosystem__browser::after { width: 24px; height: 11px; }
  .pw-ecosystem__module strong { font-size: 11px; }
  .pw-ecosystem__module small { font-size: 9px; }
  .pw-ecosystem__module--call { top: 28px; left: 0; }
  .pw-ecosystem__module--web { top: 104px; right: 0; }
  .pw-ecosystem__module--team { bottom: 100px; left: 0; }
  .pw-ecosystem__module--summary { right: 0; bottom: 26px; width: 194px; }
  .pw-ecosystem__status { display: none; }
  .pw-ecosystem__caption { font-size: 10px; }
}

/* Three-pillar positioning and software components v0.5. */
.pw-concept-visual {
  position: relative;
  margin: 42px 0 0;
  overflow: hidden;
  border: 1px solid var(--pw-line);
  border-radius: var(--pw-radius-lg);
  background: #eef6ff;
  box-shadow: 0 28px 72px rgba(38, 51, 66, 0.12);
}
.pw-concept-visual img { display: block; width: 100%; height: auto; }
.pw-concept-visual figcaption { position: absolute; right: 24px; bottom: 22px; left: 24px; width: fit-content; max-width: calc(100% - 48px); padding: 12px 16px; border: 1px solid rgba(255,255,255,.78); border-radius: 999px; color: var(--pw-ink); background: rgba(255,255,255,.82); box-shadow: var(--pw-shadow-sm); font-size: 13px; font-weight: 720; backdrop-filter: blur(12px); }
.pw-pillar-nav { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); border-right: 1px solid var(--pw-line); border-bottom: 1px solid var(--pw-line); border-left: 1px solid var(--pw-line); }
.pw-pillar-nav a { display: grid; gap: 5px; padding: 24px 28px; color: var(--pw-ink)!important; text-decoration: none!important; }
.pw-pillar-nav a + a { border-left: 1px solid var(--pw-line); }
.pw-pillar-nav span { color: var(--pw-coral-700); font-size: 11px; font-weight: 820; letter-spacing: .12em; text-transform: uppercase; }
.pw-pillar-nav strong { font-size: 19px; }
.pw-pillar-nav small { color: var(--pw-muted); font-size: 13px; }
.pw-pillar-nav a:hover { background: var(--pw-sea-soft); }
.pw-hero-visual--system { transform: none; background: #eef6ff; }

.pw-software-showcase { display: grid; grid-template-columns: minmax(0,.82fr) minmax(480px,1.18fr); gap: clamp(42px,7vw,96px); align-items: center; }
.pw-product-visual { margin: 0; overflow: hidden; border: 1px solid var(--pw-line); border-radius: var(--pw-radius-lg); background: #eef6ff; box-shadow: 0 28px 72px rgba(38,51,66,.13); }
.pw-product-visual img { display: block; width: 100%; height: auto; }
.pw-product-visual figcaption { padding: 14px 18px; border-top: 1px solid var(--pw-line); color: var(--pw-muted); background: #fff; font-size: 12px; }
.pw-live-flow { display: grid; gap: 0; margin: 32px 0 0; padding: 0; border-top: 1px solid var(--pw-line); list-style: none; }
.pw-live-flow li { position: relative; display: grid; grid-template-columns: 36px minmax(0,1fr); column-gap: 14px; padding: 17px 0 17px 18px; border-bottom: 1px solid var(--pw-line); }
.pw-live-flow li::before { content: ""; position: absolute; top: 25px; left: 0; width: 7px; height: 7px; border-radius: 50%; background: var(--pw-coral); box-shadow: 0 0 0 0 rgba(239,119,67,.28); animation: pw-status-pulse 3.2s ease-out infinite; animation-delay: calc(var(--pw-step, 0) * .55s); }
.pw-live-flow li:nth-child(2) { --pw-step: 1; }
.pw-live-flow li:nth-child(3) { --pw-step: 2; }
.pw-live-flow li:nth-child(4) { --pw-step: 3; }
.pw-live-flow span { grid-row: 1 / 3; color: var(--pw-sea-700); font-size: 11px; font-weight: 820; letter-spacing: .1em; }
.pw-live-flow strong,.pw-live-flow small { display: block; }
.pw-live-flow small { margin-top: 3px; color: var(--pw-muted); }
@keyframes pw-status-pulse { 0%,42% { box-shadow: 0 0 0 0 rgba(239,119,67,.3); } 66%,100% { box-shadow: 0 0 0 9px rgba(239,119,67,0); } }

.pw-motion-ready .pw-reveal { opacity: 0; transform: translateY(24px); transition: opacity .72s ease, transform .72s cubic-bezier(.2,.7,.2,1); }
.pw-motion-ready .pw-reveal.is-visible { opacity: 1; transform: none; }

.pw-pillar-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  margin-top: 44px;
  border-top: 1px solid var(--pw-line);
  border-bottom: 1px solid var(--pw-line);
}
.pw-pillar {
  position: relative;
  padding: clamp(28px,4vw,44px);
}
.pw-pillar + .pw-pillar { border-left: 1px solid var(--pw-line); }
.pw-pillar__top { display:flex; align-items:center; justify-content:space-between; margin-bottom:28px; color:var(--pw-sea-700); }
.pw-pillar__top > span { font-size:12px; font-weight:820; letter-spacing:.12em; text-transform:uppercase; }
.pw-pillar__top .pw-line-icon { width:30px; height:30px; color:var(--pw-coral-700); }
.pw-pillar h3 { margin-bottom:14px; font-size:clamp(22px,2.4vw,30px); }
.pw-pillar p { margin-bottom:24px; color:var(--pw-muted); }

.pw-capability-grid {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:0;
  margin:0;
  padding:0;
  border-top:1px solid var(--pw-line);
  list-style:none;
}
.pw-capability-grid li {
  display:grid;
  grid-template-columns:28px 1fr;
  gap:13px;
  align-items:center;
  min-height:72px;
  padding:15px 16px;
  border-bottom:1px solid var(--pw-line);
  color:var(--pw-ink);
  font-weight:700;
}
.pw-capability-grid li:nth-child(odd) { border-right:1px solid var(--pw-line); }
.pw-capability-grid .pw-line-icon { width:24px; height:24px; color:var(--pw-coral-700); }
.pw-capability-grid--wide { grid-template-columns:repeat(2,minmax(0,1fr)); margin-top:42px; }

.pw-sector-grid {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:1px;
  margin-top:42px;
  overflow:hidden;
  border:1px solid var(--pw-line);
  border-radius:var(--pw-radius-md);
  background:var(--pw-line);
}
.pw-sector-grid article { padding:clamp(26px,4vw,40px); background:var(--pw-surface); }
.pw-sector-grid article > span { display:block; margin-bottom:20px; color:var(--pw-coral-700); font-size:12px; font-weight:820; letter-spacing:.12em; }
.pw-sector-grid h3 { margin-bottom:12px; font-size:clamp(20px,2.2vw,27px); }
.pw-sector-grid p { margin-bottom:10px; color:var(--pw-muted); }
.pw-sector-grid small { color:var(--pw-sea-700); font-size:12px; font-weight:700; }
.pw-section--sea-soft .pw-sector-grid article { background:rgba(255,255,255,.76); }

.pw-demo-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:1px; margin-top:40px; overflow:hidden; border:1px solid var(--pw-line); border-radius:var(--pw-radius-md); background:var(--pw-line); }
.pw-demo-grid article { padding:clamp(24px,3vw,34px); background:var(--pw-surface); }
.pw-demo-grid .pw-line-icon { width:30px; height:30px; margin-bottom:22px; color:var(--pw-coral-700); }
.pw-demo-grid h3 { margin-bottom:10px; font-size:24px; }
.pw-demo-grid p { color:var(--pw-muted); }
.pw-demo-grid strong { color:var(--pw-sea-700); font-size:13px; }

.pw-software-console {
  position:relative;
  padding:18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.2);
  border-radius:var(--pw-radius-lg);
  background:rgba(255,255,255,.1);
  box-shadow:0 30px 72px rgba(9,28,33,.35);
  backdrop-filter:blur(18px);
}
.pw-software-console__bar { display:flex; gap:7px; align-items:center; padding:0 2px 16px; border-bottom:1px solid rgba(255,255,255,.15); color:#fff; }
.pw-software-console__bar > span { width:7px; height:7px; border-radius:50%; background:var(--pw-coral); }
.pw-software-console__bar > span:nth-child(2) { background:#e4b84b; }
.pw-software-console__bar > span:nth-child(3) { background:#4bd1a0; }
.pw-software-console__bar strong { margin-left:auto; font-size:12px; }
.pw-software-console__stats { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:10px; margin-block:18px; }
.pw-software-console__stats > div { padding:16px; border:1px solid rgba(255,255,255,.14); border-radius:12px; background:rgba(20,32,39,.34); }
.pw-software-console__stats small,.pw-software-console__stats span,.pw-software-console__stats strong { display:block; }
.pw-software-console__stats small { color:#a9c7ce; font-size:10px; }
.pw-software-console__stats strong { margin:5px 0; color:#fff; font-size:24px; }
.pw-software-console__stats span { color:#cbd7db; font-size:10px; }
.pw-software-console__flow { display:flex; gap:8px; align-items:center; justify-content:center; padding:16px 10px; border-radius:12px; color:#dce8eb; background:rgba(20,32,39,.45); }
.pw-software-console__flow span { display:flex; gap:6px; align-items:center; font-size:11px; font-weight:720; }
.pw-software-console__flow .pw-line-icon { width:18px; height:18px; color:#61d0eb; }
.pw-software-console__flow i { color:var(--pw-coral); font-style:normal; }
.pw-software-console__rows { margin-top:16px; }
.pw-software-console__rows p { display:grid; grid-template-columns:8px 1fr auto; gap:10px; align-items:center; margin:0; padding:13px 8px; border-bottom:1px solid rgba(255,255,255,.12); color:#e5edef; font-size:12px; }
.pw-software-console__rows p > span { width:8px; height:8px; border-radius:50%; background:#4bd1a0; }
.pw-software-console__rows small { color:#9fb4ba; }
.pw-software-console--compact .pw-service-list { margin-top:14px; border-color:rgba(255,255,255,.15); }
.pw-software-console--compact .pw-service-list > div { border-color:rgba(255,255,255,.15); }
.pw-software-console--compact .pw-service-list strong { color:#fff; }
.pw-software-console--compact .pw-service-list span { color:#cbd7db; }

.pw-principle { padding:clamp(36px,6vw,72px); border-left:6px solid var(--pw-coral); border-radius:0 var(--pw-radius-lg) var(--pw-radius-lg) 0; background:var(--pw-ink); box-shadow:var(--pw-shadow-md); }
.pw-principle h2 { max-width:980px; margin-bottom:24px; color:#fff; font-size:clamp(32px,4.5vw,56px); }
.pw-principle p { max-width:780px; margin:0; color:#cbd7db; font-size:clamp(17px,2vw,21px); }

.pw-flow--5 { grid-template-columns:repeat(5,minmax(0,1fr)); }
.pw-flow--5 .pw-flow__step { padding-inline:18px; }

.pw-complementary-list { margin-top:42px; border-top:1px solid var(--pw-line); }
.pw-complementary-list a { display:grid; grid-template-columns:34px 1fr auto; gap:18px; align-items:center; min-height:94px; padding:18px 6px; border-bottom:1px solid var(--pw-line); color:var(--pw-ink)!important; text-decoration:none!important; transition:padding var(--pw-transition),background var(--pw-transition); }
.pw-complementary-list a:hover { padding-inline:18px; background:var(--pw-sea-soft); }
.pw-complementary-list .pw-line-icon { width:28px; height:28px; color:var(--pw-coral-700); }
.pw-complementary-list strong,.pw-complementary-list small { display:block; }
.pw-complementary-list small { margin-top:4px; color:var(--pw-muted); font-size:13px; }
.pw-complementary-list b { color:var(--pw-sea-700); font-size:20px; }

.pw-ecosystem--complete .pw-ecosystem__scene { min-height:580px; }
.pw-ecosystem--complete .pw-ecosystem__module { width:208px; }
.pw-ecosystem--complete .pw-ecosystem__module--call { top:50px; left:0; }
.pw-ecosystem--complete .pw-ecosystem__module--web { top:32px; right:0; }
.pw-ecosystem--complete .pw-ecosystem__module--team { top:190px; bottom:auto; left:0; }
.pw-ecosystem--complete .pw-ecosystem__module--crm { top:178px; right:0; }
.pw-ecosystem--complete .pw-ecosystem__module--summary { bottom:64px; left:0; right:auto; width:230px; }
.pw-ecosystem--complete .pw-ecosystem__module--agenda { right:0; bottom:64px; }
.pw-ecosystem--complete .pw-ecosystem__caption { bottom:4px; }

@media (max-width:1080px) {
  .pw-software-showcase { grid-template-columns: 1fr; }
  .pw-flow--5 { grid-template-columns:repeat(3,minmax(0,1fr)); }
}
@media (max-width:760px) {
  .pw-pillar-nav { grid-template-columns: 1fr; }
  .pw-pillar-nav a + a { border-top: 1px solid var(--pw-line); border-left: 0; }
  .pw-concept-visual figcaption { position: static; max-width: none; border: 0; border-top: 1px solid var(--pw-line); border-radius: 0; background: #fff; }
  .pw-concept-visual img { aspect-ratio: 16/10; object-fit: cover; }
  .pw-footer__intro { grid-template-columns: 1fr; align-items: start; }
  .pw-pillar-grid,.pw-demo-grid,.pw-sector-grid { grid-template-columns:1fr; }
  .pw-pillar + .pw-pillar { border-top:1px solid var(--pw-line); border-left:0; }
  .pw-capability-grid,.pw-capability-grid--wide { grid-template-columns:1fr; }
  .pw-capability-grid li:nth-child(odd) { border-right:0; }
  .pw-flow--5 { grid-template-columns:1fr; }
  .pw-software-console__stats { grid-template-columns:1fr; }
  .pw-software-console__flow { flex-wrap:wrap; }
}
@media (prefers-reduced-motion: reduce) {
  .pw-live-flow li::before { animation: none; }
  .pw-motion-ready .pw-reveal { opacity: 1; transform: none; transition: none; }
}
@media (max-width:680px) {
  .pw-ecosystem--complete .pw-ecosystem__scene { min-height:720px; }
  .pw-ecosystem--complete .pw-ecosystem__hub { top:50%; }
  .pw-ecosystem--complete .pw-ecosystem__module { width:calc(50% - 5px); }
  .pw-ecosystem--complete .pw-ecosystem__module--call { top:20px; left:0; }
  .pw-ecosystem--complete .pw-ecosystem__module--web { top:20px; right:0; }
  .pw-ecosystem--complete .pw-ecosystem__module--team { top:122px; left:0; }
  .pw-ecosystem--complete .pw-ecosystem__module--crm { top:122px; right:0; }
  .pw-ecosystem--complete .pw-ecosystem__module--summary { bottom:38px; left:0; width:calc(50% - 5px); }
  .pw-ecosystem--complete .pw-ecosystem__module--agenda { right:0; bottom:38px; }
  .pw-ecosystem--complete .pw-ecosystem__caption { bottom:0; }
  .pw-ecosystem--complete .pw-ecosystem__module p { min-width:0; }
  .pw-ecosystem--complete .pw-ecosystem__module strong { overflow-wrap:anywhere; }
}

/* Immersive identity v3 — derived from the approved dark mockups. */
:root {
  --pw-night: #061525;
  --pw-night-2: #091d31;
  --pw-cyan: #39c8f2;
  --pw-container: 1320px;
}

.pw-site-header {
  border-bottom-color: rgba(6, 21, 37, .1);
  background: rgba(255, 255, 255, .96);
}

.pw-nav { min-height: 92px; }
.pw-nav__menu > .pw-nav__item > a,
.pw-nav__parent > a,
.pw-nav__section { font-size: 16px; font-weight: 760; }
.pw-nav > .pw-button { min-width: 134px; border-radius: 18px; }

.pw-page :where(h1, h2, h3, h4) { font-weight: 800; letter-spacing: -.042em; }
.pw-button { border-radius: 17px; font-weight: 760; }
.pw-button--coral,
.pw-button--coral:visited {
  background: linear-gradient(135deg, #f05b2d 0%, #ff783c 100%);
  box-shadow: 0 14px 34px rgba(239, 92, 43, .24);
}
.pw-button--coral:hover { background: linear-gradient(135deg, #df471d, #ef6530); transform: translateY(-2px); }

.pw-hero {
  background:
    radial-gradient(circle at 84% 34%, rgba(19, 132, 198, .23), transparent 33%),
    radial-gradient(circle at 63% 96%, rgba(239, 92, 43, .12), transparent 28%),
    linear-gradient(135deg, #06111f 0%, var(--pw-night) 52%, #08213a 100%);
}

.pw-hero::before {
  opacity: .18;
  background-size: 62px 62px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 48%, #000 100%);
}

.pw-hero--immersive {
  min-height: 700px;
  padding-block: clamp(54px, 5vw, 76px) 34px;
}

.pw-hero--immersive .pw-hero__grid {
  grid-template-columns: minmax(430px, .92fr) minmax(560px, 1.08fr);
  gap: 0;
  min-height: 586px;
}

.pw-hero--immersive .pw-hero__copy { position: relative; z-index: 2; max-width: 610px; }
.pw-hero--immersive h1 {
  max-width: 650px;
  margin-bottom: 26px;
  font-size: clamp(48px, 4.7vw, 72px);
  font-weight: 800;
  letter-spacing: -.058em;
  line-height: 1.12;
}
.pw-hero--immersive .pw-hero__lead { max-width: 590px; margin-bottom: 30px; color: #c7d4df; line-height: 1.55; }
.pw-hero--immersive .pw-eyebrow { color: #9fe6f7; letter-spacing: .15em; }
.pw-hero--immersive .pw-button { min-height: 60px; padding-inline: 30px; }
.pw-hero--immersive .pw-button--light,
.pw-hero--immersive .pw-button--light:visited {
  border: 1px solid rgba(255, 255, 255, .5);
  background: rgba(6, 21, 37, .35);
  color: #fff !important;
  backdrop-filter: blur(12px);
}
.pw-hero--immersive .pw-button--light:hover { border-color: #fff; background: rgba(255, 255, 255, .1); color: #fff !important; }

.pw-text-accent { position: relative; display: inline-block; color: #ff7540; }
.pw-text-accent::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -.06em;
  left: 0;
  height: 4px;
  border-radius: 99px;
  background: #ff7540;
  transform: rotate(-1.5deg);
}

.pw-hero-visual--integrated {
  z-index: 1;
  width: 136%;
  max-width: none;
  margin: 0 -18% 0 -25%;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
  animation: pw-hero-drift 8s ease-in-out infinite;
}
.pw-hero-visual--integrated::after { content: none; }
.pw-hero-visual--integrated img {
  width: 100%;
  aspect-ratio: 1536 / 961;
  object-fit: contain;
  filter: drop-shadow(0 30px 54px rgba(0, 0, 0, .24));
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 95%, transparent 100%);
}
@keyframes pw-hero-drift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

.pw-section--hero-band,
.pw-hero--immersive + .pw-section--compact {
  position: relative;
  z-index: 2;
  padding-block: 0 42px;
  background: var(--pw-night);
}
.pw-section--hero-band .pw-feature-lines,
.pw-hero--immersive + .pw-section--compact .pw-feature-lines {
  border-color: rgba(126, 201, 235, .22);
  background: rgba(11, 35, 57, .84);
  box-shadow: 0 22px 54px rgba(0, 0, 0, .22);
  backdrop-filter: blur(16px);
}
.pw-feature-lines--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.pw-section--hero-band .pw-feature-line,
.pw-hero--immersive + .pw-section--compact .pw-feature-line { grid-template-columns: 48px 1fr; gap: 16px; padding: 24px clamp(18px, 2vw, 28px); }
.pw-section--hero-band .pw-feature-line + .pw-feature-line,
.pw-hero--immersive + .pw-section--compact .pw-feature-line + .pw-feature-line { border-color: rgba(126, 201, 235, .18); }
.pw-section--hero-band .pw-feature-line .pw-line-icon,
.pw-hero--immersive + .pw-section--compact .pw-feature-line .pw-line-icon {
  width: 48px;
  height: 48px;
  padding: 11px;
  color: var(--pw-cyan);
  background: rgba(20, 119, 175, .14);
  box-shadow: inset 0 0 0 1px rgba(57, 200, 242, .28);
}
.pw-section--hero-band .pw-feature-line:nth-child(even) .pw-line-icon,
.pw-hero--immersive + .pw-section--compact .pw-feature-line:nth-child(even) .pw-line-icon { color: #ff7540; background: rgba(239, 92, 43, .12); box-shadow: inset 0 0 0 1px rgba(239, 92, 43, .3); }
.pw-section--hero-band .pw-feature-line h2,
.pw-hero--immersive + .pw-section--compact .pw-feature-line h2 { color: #fff; font-size: 16px; letter-spacing: -.025em; }
.pw-section--hero-band .pw-feature-line p,
.pw-hero--immersive + .pw-section--compact .pw-feature-line p { color: #b8c8d5; font-size: 13px; }
.pw-section--hero-band .pw-feature-line__number,
.pw-hero--immersive + .pw-section--compact .pw-feature-line__number { color: rgba(255, 255, 255, .22); }

/* The home ecosystem now shares the same dark identity. */
.pw-hero--ecosystem {
  background:
    radial-gradient(circle at 76% 35%, rgba(39, 167, 220, .2), transparent 34%),
    radial-gradient(circle at 28% 88%, rgba(239, 92, 43, .1), transparent 28%),
    linear-gradient(135deg, #06111f 0%, #07192a 100%);
  color: #fff;
}
.pw-hero--ecosystem::before { opacity: .16; background-image: linear-gradient(rgba(255,255,255,.08) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.08) 1px,transparent 1px); }
.pw-hero--ecosystem h1 { color: #fff; font-weight: 800; }
.pw-hero--ecosystem .pw-eyebrow { color: #9fe6f7; }
.pw-hero--ecosystem .pw-hero__lead { color: #c7d4df; }
.pw-hero--ecosystem .pw-hero__note { color: #aebfca; }
.pw-hero--ecosystem .pw-button--secondary { border-color: rgba(255,255,255,.5); background: rgba(6,21,37,.35); color: #fff !important; }
.pw-ecosystem__scene::before { background: radial-gradient(circle at center, rgba(54,197,240,.17), rgba(8,29,49,.36) 48%, transparent 72%); filter: drop-shadow(0 30px 54px rgba(0,0,0,.22)); }
.pw-ecosystem__module { border-color: rgba(126,201,235,.22); background: rgba(10,31,51,.9); box-shadow: 0 16px 38px rgba(0,0,0,.25); }
.pw-ecosystem__module small { color: #9eb2c1; }
.pw-ecosystem__module strong { color: #fff; }
.pw-ecosystem__caption { color: #aebfca; }

@media (max-width: 1180px) {
  .pw-hero--immersive .pw-hero__grid { grid-template-columns: minmax(390px, .92fr) minmax(500px, 1.08fr); }
  .pw-hero-visual--integrated { width: 128%; margin-right: -14%; margin-left: -20%; }
  .pw-feature-lines--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pw-feature-lines--4 .pw-feature-line:nth-child(3) { border-top: 1px solid rgba(126, 201, 235, .18); border-left: 0; }
  .pw-feature-lines--4 .pw-feature-line:nth-child(4) { border-top: 1px solid rgba(126, 201, 235, .18); }
}

@media (max-width: 1080px) {
  .pw-hero--immersive { padding-bottom: 24px; }
  .pw-hero--immersive .pw-hero__grid { grid-template-columns: 1fr; gap: 18px; }
  .pw-hero--immersive .pw-hero__copy { max-width: 760px; }
  .pw-hero-visual--integrated { width: 118%; margin: -4% -9% -2%; }
}

@media (max-width: 680px) {
  .pw-nav { grid-template-columns: minmax(116px, 1fr) auto auto; gap: 8px; min-height: 74px; }
  .pw-nav__brand img,
  .pw-nav__brand svg { width: 140px; }
  .pw-nav > .pw-button { min-width: 0; padding-inline: 12px; font-size: 12px; }
  .pw-hero--immersive { padding-block: 44px 16px; }
  .pw-hero--immersive .pw-hero__grid { min-height: auto; }
  .pw-hero--immersive h1 { font-size: clamp(37px, 10.5vw, 48px); line-height: 1.08; }
  .pw-hero--immersive .pw-hero__lead { font-size: 17px; }
  .pw-hero--immersive .pw-actions { align-items: stretch; }
  .pw-hero--immersive .pw-button { width: 100%; min-height: 56px; }
  .pw-hero-visual--integrated {
    width: 100%;
    margin: 12px 0 0;
    overflow: hidden;
  }
  .pw-hero-visual--integrated img {
    width: 100%;
    max-width: 100%;
    mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
  }
  .pw-section--hero-band,
  .pw-hero--immersive + .pw-section--compact { padding-bottom: 28px; }
  .pw-feature-lines--4 { grid-template-columns: 1fr; }
  .pw-feature-lines--4 .pw-feature-line + .pw-feature-line { border-top: 1px solid rgba(126, 201, 235, .18); border-left: 0; }
  .pw-section--hero-band .pw-feature-line,
  .pw-hero--immersive + .pw-section--compact .pw-feature-line {
    grid-template-columns: 48px minmax(0, 1fr);
    min-height: 108px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pw-hero-visual--integrated { animation: none; }
}

/* WordPress + Divi integration. Kept in the reversible plugin only. */
.pw-modern #top-header,
.pw-modern #main-header,
.pw-modern #main-footer,
.pw-modern .et-l--header,
.pw-modern .et-l--footer { display: none !important; }
.pw-modern #page-container { padding-top: 0 !important; margin-top: 0 !important; }
.pw-modern-content #main-content { padding: 0; background: var(--pw-surface); }
.pw-modern-content #main-content > .container { width: 100%; max-width: none; padding: 0; }
.pw-modern-content #main-content > .container::before { display: none !important; }
.pw-modern-content #left-area { float: none; width: 100%; padding: 0; }
.pw-modern-content #sidebar,
.pw-modern-content .entry-title,
.pw-modern-content .post-meta { display: none !important; }
.pw-modern-content .entry-content,
.pw-modern-content #left-area > article { margin: 0; padding: 0; }
.pw-modern .pw-site-header { top: 0; }
.pw-modern.admin-bar .pw-site-header { top: 32px; }
.pw-site-footer address { margin: 0 0 18px; font-style: normal; }
.pw-map-frame { display: block; width: 100%; height: 100%; min-height: 450px; border: 0; }
.pw-site-footer :where(ul, p) { margin-top: 0; }
.pw-footer__legal { margin: 0; padding: 0; list-style: none; }
@media (max-width: 782px) { .pw-modern.admin-bar .pw-site-header { top: 46px; } }

/* Contact form, real cases and WhatsApp — v0.7.0 */
.pw-contact-hero{position:relative;overflow:hidden;padding:clamp(64px,8vw,112px) 0;color:#fff;background:radial-gradient(circle at 84% 16%,rgba(41,171,221,.2),transparent 34%),radial-gradient(circle at 12% 82%,rgba(239,92,43,.14),transparent 28%),linear-gradient(135deg,#071421 0%,#0a2030 55%,#071522 100%)}
.pw-contact-hero::before{position:absolute;inset:0;content:"";pointer-events:none;opacity:.16;background-image:linear-gradient(rgba(255,255,255,.08) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.08) 1px,transparent 1px);background-size:48px 48px;mask-image:linear-gradient(90deg,#000,transparent 72%)}
.pw-contact-hero__grid{position:relative;display:grid;grid-template-columns:minmax(0,.84fr) minmax(460px,1.16fr);gap:clamp(44px,7vw,104px);align-items:center}
.pw-contact-hero__copy{max-width:620px}
.pw-contact-hero .pw-eyebrow{color:#9fe6f7}
.pw-contact-hero h1{margin:0 0 24px;color:#fff;font-size:clamp(44px,5.3vw,76px);line-height:1.03;letter-spacing:-.055em}
.pw-contact-hero .pw-hero__lead{max-width:580px;color:#c8d7e2}
.pw-contact-hero__direct{display:grid;gap:12px;margin-top:34px}
.pw-contact-hero__direct a{display:grid;gap:3px;padding:17px 19px;border:1px solid rgba(155,211,235,.2);border-radius:16px;color:#fff;background:rgba(9,31,46,.52);text-decoration:none;transition:border-color .2s ease,background .2s ease,transform .2s ease}
.pw-contact-hero__direct a:hover{border-color:rgba(255,117,64,.55);background:rgba(14,42,59,.78);transform:translateY(-2px)}
.pw-contact-hero__direct strong{font-size:18px}
.pw-contact-hero__direct span{color:#aebfcb;font-size:13px;line-height:1.5}
.pw-contact-form{position:relative;display:grid;gap:18px;padding:clamp(24px,3vw,40px);border:1px solid rgba(255,255,255,.78);border-radius:28px;color:var(--pw-ink);background:rgba(250,253,255,.96);box-shadow:0 34px 90px rgba(0,8,18,.36)}
.pw-contact-form::before{position:absolute;top:-1px;right:34px;left:34px;height:3px;content:"";border-radius:0 0 8px 8px;background:linear-gradient(90deg,transparent,#ef5c2b,#29abdd,transparent)}
.pw-contact-form__heading{display:grid;gap:2px;margin-bottom:2px}
.pw-contact-form__heading>span{color:var(--pw-sea-700);font-size:12px;font-weight:800;letter-spacing:.11em;text-transform:uppercase}
.pw-contact-form__heading>strong{color:var(--pw-ink);font-size:clamp(21px,2vw,28px);letter-spacing:-.03em}
.pw-contact-form .pw-form__grid{gap:14px}
.pw-contact-form .pw-field{display:grid;gap:8px;margin:0}
.pw-contact-form .pw-field>span{color:#203946;font-size:13px;font-weight:750}
.pw-contact-form .pw-field small{color:var(--pw-muted);font-weight:600}
.pw-contact-form .pw-field :where(input,select,textarea){width:100%;margin:0;border:1px solid #c9d8df;border-radius:12px;color:#122733;background:#fff;box-shadow:none}
.pw-contact-form .pw-field :where(input,select){min-height:50px;padding:11px 13px}
.pw-contact-form .pw-field textarea{min-height:138px;padding:13px;resize:vertical}
.pw-contact-form .pw-field :where(input,select,textarea):focus{border-color:#168bb7;outline:3px solid rgba(41,171,221,.16)}
.pw-contact-form__security{display:grid;grid-template-columns:minmax(150px,.42fr) minmax(0,1fr);gap:16px;align-items:end;padding:14px 16px;border:1px solid #d8e3e8;border-radius:14px;background:#f1f7f9}
.pw-contact-form__security .pw-field input{max-width:160px}
.pw-contact-form__security>p{margin:0 0 8px;color:#607681;font-size:12px;line-height:1.5}
.pw-consent{display:grid;grid-template-columns:20px 1fr;gap:10px;align-items:start;color:#48606b;font-size:12px;line-height:1.55}
.pw-consent input{width:18px;height:18px;margin:1px 0 0;accent-color:#d94c22}
.pw-consent a{color:var(--pw-sea-700);font-weight:750}
.pw-contact-form__submit{width:100%;min-height:56px}
.pw-contact-form__note{margin:-6px 0 0;color:#71848d;font-size:11px;text-align:center}
.pw-form-honeypot{position:absolute!important;left:-10000px!important;width:1px!important;height:1px!important;overflow:hidden!important}
.pw-form-status{margin:0;padding:12px 14px;border-radius:12px;font-size:13px;font-weight:700}
.pw-form-status.is-success{color:#0d6b45;background:#e7f7ef}
.pw-form-status.is-error{color:#9b351c;background:#fff0ea}
.pw-section--proof{color:#fff;background:radial-gradient(circle at 76% 10%,rgba(41,171,221,.13),transparent 30%),linear-gradient(150deg,#081623,#0a2230)}
.pw-section--proof .pw-eyebrow{color:#9fe6f7}
.pw-section--proof .pw-title{max-width:860px;color:#fff}
.pw-section--proof>.pw-container>.pw-lead{max-width:800px;color:#b9c9d4}
.pw-client-cases{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;margin-top:clamp(34px,5vw,56px)}
.pw-client-case{overflow:hidden;border:1px solid rgba(152,203,226,.18);border-radius:22px;background:rgba(8,29,43,.72);box-shadow:0 22px 48px rgba(0,7,15,.2);transition:border-color .25s ease,transform .25s ease}
.pw-client-case:hover{border-color:rgba(255,117,64,.46);transform:translateY(-4px)}
.pw-client-case figure{display:grid;min-height:190px;margin:0;padding:26px;place-items:center;background:radial-gradient(circle at 50% 55%,rgba(58,174,222,.13),transparent 48%),#f6f9fb}
.pw-client-case figure img{width:auto;max-width:min(100%,250px);max-height:142px;object-fit:contain}
.pw-client-case>div{padding:24px}
.pw-client-case>div>span{display:block;margin-bottom:8px;color:#81d7ee;font-size:11px;font-weight:800;letter-spacing:.1em;text-transform:uppercase}
.pw-client-case h3{margin:0 0 10px;color:#fff;font-size:23px;letter-spacing:-.025em}
.pw-client-case p{margin:0;color:#b8c8d3;font-size:14px;line-height:1.65}
.pw-case-note{display:grid;grid-template-columns:42px 1fr;gap:14px;align-items:center;margin-top:22px;padding:17px 19px;border:1px solid rgba(152,203,226,.16);border-radius:16px;background:rgba(7,23,35,.54)}
.pw-case-note .pw-line-icon{width:42px;height:42px;padding:9px;border-radius:12px;color:#ff8759;background:rgba(239,92,43,.12)}
.pw-case-note p{margin:0;color:#aebfca;font-size:13px;line-height:1.55}
.pw-case-note strong{color:#fff}
.pw-whatsapp{position:fixed;z-index:9998;right:max(20px,env(safe-area-inset-right));bottom:max(20px,env(safe-area-inset-bottom));display:flex;gap:10px;align-items:center;color:#fff!important;text-decoration:none!important}
.pw-whatsapp__label{padding:10px 14px;border:1px solid rgba(255,255,255,.18);border-radius:999px;color:#fff;background:#10212a;box-shadow:0 12px 30px rgba(0,0,0,.18);font-size:13px;font-weight:800;opacity:0;transform:translateX(8px);transition:opacity .2s ease,transform .2s ease}
.pw-whatsapp:hover .pw-whatsapp__label,.pw-whatsapp:focus-visible .pw-whatsapp__label{opacity:1;transform:translateX(0)}
.pw-whatsapp__button{position:relative;display:grid;width:58px;height:58px;border:2px solid rgba(255,255,255,.94);border-radius:50%;place-items:center;background:#25d366;box-shadow:0 14px 34px rgba(2,53,25,.32)}
.pw-whatsapp__button::before{position:absolute;inset:-7px;content:"";border:2px solid rgba(37,211,102,.42);border-radius:inherit;animation:pw-whatsapp-pulse 2.2s ease-out infinite}
.pw-whatsapp svg{position:relative;width:30px;height:30px;fill:currentColor}
@keyframes pw-whatsapp-pulse{0%{opacity:.75;transform:scale(.86)}70%,100%{opacity:0;transform:scale(1.22)}}
@media(max-width:980px){.pw-contact-hero__grid{grid-template-columns:1fr}.pw-contact-hero__copy{max-width:760px}.pw-client-cases{grid-template-columns:1fr 1fr}.pw-client-case:last-child{grid-column:1/-1}}
@media(max-width:640px){.pw-contact-hero{padding:46px 0 54px}.pw-contact-hero h1{font-size:clamp(39px,12vw,52px)}.pw-contact-form{gap:16px;padding:22px 18px;border-radius:22px}.pw-contact-form .pw-form__grid,.pw-contact-form__security{grid-template-columns:1fr}.pw-contact-form__security .pw-field input{max-width:none}.pw-client-cases{grid-template-columns:1fr}.pw-client-case:last-child{grid-column:auto}.pw-client-case figure{min-height:160px}.pw-whatsapp{right:max(14px,env(safe-area-inset-right));bottom:max(14px,env(safe-area-inset-bottom))}.pw-whatsapp__label{display:none}.pw-whatsapp__button{width:54px;height:54px}}
@media(prefers-reduced-motion:reduce){.pw-whatsapp__button::before{animation:none}.pw-client-case,.pw-contact-hero__direct a{transition:none}}

.pw-client-marks{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px;margin:36px 0 22px}
.pw-client-marks>div{display:grid;min-height:190px;padding:24px;border:1px solid var(--pw-line);border-radius:20px;place-items:center;background:#fff;box-shadow:var(--pw-shadow-sm)}
.pw-client-marks img{width:auto;max-width:min(100%,230px);max-height:112px;object-fit:contain}
.pw-client-marks span{align-self:end;color:var(--pw-muted);font-size:12px;font-weight:750;text-align:center}
@media(max-width:680px){.pw-client-marks{grid-template-columns:1fr}.pw-client-marks>div{min-height:160px}}
