@font-face {
  font-family: "Font Awesome 6 Pro";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url("icons/webfonts/fa-solid-900.woff2") format("woff2"), url("icons/webfonts/fa-solid-900.ttf") format("truetype");
}

:root {
  --ink: #0b1726;
  --ink-2: #17304d;
  --muted: #5b6d82;
  --line: rgba(18, 71, 139, 0.14);
  --line-strong: rgba(18, 97, 201, 0.3);
  --blue: #0b63f6;
  --blue-2: #00a8ff;
  --cyan: #65d6ff;
  --white: #ffffff;
  --mist: #f4f8fc;
  --panel: rgba(255, 255, 255, 0.82);
  --panel-strong: rgba(255, 255, 255, 0.96);
  --shadow: 0 24px 70px rgba(13, 42, 83, 0.14);
  --radius: 8px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --canvas-a: rgba(13, 99, 246, 0.3);
  --canvas-b: rgba(0, 168, 255, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100svh;
  margin: 0;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--mist);
  font-family: var(--font);
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(13, 99, 246, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(13, 99, 246, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.92), transparent 78%);
}

main {
  flex: 1 0 auto;
}

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

button {
  font: inherit;
}

img {
  max-width: 100%;
  -webkit-user-drag: none;
  user-select: none;
}

.ambient-canvas {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.8;
}

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

.topbar {
  position: relative;
  z-index: 42;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
}

.topbar-inner {
  min-height: 38px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  color: var(--muted);
  font-size: 0.82rem;
}

.topbar-links,
.topbar .contact-chip {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.contact-chip,
.detail-lock {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
  user-select: none;
}

.protected-image {
  min-width: 82px;
  min-height: 20px;
  display: inline-flex;
  align-items: center;
  color: currentColor;
  font-weight: 720;
  line-height: 1.35;
  -webkit-user-drag: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(22px);
  transition: top 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.site-header:has(.site-nav.is-open) {
  z-index: 75;
}

.site-header.is-scrolled {
  top: 10px;
  border-bottom-color: transparent;
  background: transparent;
}

.header-inner {
  min-height: 76px;
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
  transition: min-height 0.2s ease, padding 0.2s ease, border 0.2s ease, border-radius 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.site-header.is-scrolled .header-inner {
  min-height: 64px;
  margin-block: 10px;
  padding-inline: 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
}

.brand-symbol {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(13, 99, 246, 0.24);
  border-radius: 8px;
  color: var(--blue);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(220, 238, 255, 0.78)),
    #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 14px 34px rgba(13, 99, 246, 0.14);
  font-weight: 950;
  font-size: 1.45rem;
  line-height: 1;
}

.brand-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.brand-mark {
  color: var(--ink);
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.brand-line {
  max-width: 360px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.25;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
}

.site-nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 13px;
  color: var(--ink-2);
  font-size: 0.9rem;
  transition: color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.site-nav a:hover {
  color: var(--blue);
  background: rgba(13, 99, 246, 0.08);
  box-shadow: inset 0 0 0 1px rgba(13, 99, 246, 0.12);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.82rem;
}

.language-menu {
  position: relative;
  flex: 0 0 auto;
}

.language-menu__button {
  height: 40px;
  min-width: 94px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 11px 0 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.language-menu__button:hover,
.language-menu.is-open .language-menu__button {
  border-color: var(--line-strong);
  background: #fff;
  box-shadow: 0 14px 28px rgba(13, 99, 246, 0.12);
}

.language-code {
  min-width: 24px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 820;
  text-align: left;
}

.language-chevron {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  opacity: 0.65;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.18s ease;
}

.language-menu.is-open .language-chevron {
  transform: translateY(2px) rotate(225deg);
}

.language-menu__list {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  z-index: 80;
  min-width: 158px;
  display: grid;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(-6px) scale(0.98);
  transform-origin: top right;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.language-menu.is-open .language-menu__list {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.language-menu__list button {
  min-height: 36px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 0;
  border-radius: 6px;
  padding: 0 10px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.language-menu__list button:hover,
.language-menu__list button.is-active {
  color: var(--blue);
  background: rgba(13, 99, 246, 0.08);
}

.flag {
  width: 19px;
  height: 13px;
  flex: 0 0 19px;
  border-radius: 2px;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
}

.flag-de {
  background-image: url("/assets/flags/de.svg");
}

.flag-fr {
  background-image: url("/assets/flags/fr.svg");
}

.flag-es {
  background-image: url("/assets/flags/es.svg");
}

.flag-en {
  background-image: url("/assets/flags/en.svg");
}

.flag-en::before,
.flag-en::after {
  display: none;
}

.mobile-lang,
.nav-toggle {
  display: none;
}

.nav-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.8);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.legal-card h1 {
  margin: 0;
  color: var(--ink);
  max-width: 100%;
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.eyebrow {
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 860;
  line-height: 1.35;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  flex: 0 0 34px;
  background: currentColor;
}

.icon {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(13, 99, 246, 0.16);
  border-radius: 8px;
  color: var(--blue);
  background: rgba(13, 99, 246, 0.07);
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  font-style: normal;
  line-height: 1;
}

.icon::before {
  display: block;
  font-size: 1rem;
}

.icon.mail::before { content: "\f0e0"; }
.icon.phone::before { content: "\f095"; }
.icon.clock::before { content: "\f017"; }
.icon.map::before { content: "\f3c5"; }
.icon.home::before { content: "\f015"; }
.icon.code::before { content: "\f121"; }
.icon.cloud::before { content: "\f0c2"; }
.icon.consult::before { content: "\f0b1"; }
.icon.network::before { content: "\f6ff"; }
.icon.layers::before { content: "\f5fd"; }
.icon.automation::before { content: "\f085"; }
.icon.shield::before { content: "\f3ed"; }
.icon.chart::before { content: "\f201"; }
.icon.database::before { content: "\f1c0"; }
.icon.globe::before { content: "\f0ac"; }
.icon.arrow::before { content: "\f061"; }

.contact-tile,
.legal-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 250, 255, 0.78)),
    var(--panel);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
  overflow: hidden;
}

.contact-tile::before,
.legal-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent, rgba(13, 99, 246, 0.12), transparent);
  opacity: 0;
  transform: translateX(calc(var(--x, 50%) - 50%));
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.contact-tile:hover::before,
.legal-card:hover::before {
  opacity: 1;
}

.contact-tile {
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.contact-tile:hover {
  transform: translateY(-5px);
  border-color: var(--line-strong);
  box-shadow: 0 18px 48px rgba(13, 42, 83, 0.12);
  background: var(--panel-strong);
}

.contact-tile strong {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 1.32rem;
  line-height: 1.2;
}

.contact-tile p,
.legal-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.contact-tile {
  min-height: 68px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 12px;
  color: var(--ink);
}

.contact-tile .protected-image {
  min-width: 0;
  color: var(--ink);
  font-weight: 780;
}

.site-footer {
  flex: 0 0 auto;
  border-top: 1px solid var(--line);
  padding: 28px 0;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.76);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  font-size: 0.9rem;
}

.footer-copy {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  align-items: center;
  margin: 0;
}

.footer-brand {
  color: var(--ink);
  font-weight: 800;
  transition: color 0.18s ease;
}

.footer-links {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-links a + a {
  border-left: 1px solid var(--line-strong);
  padding-left: 12px;
}

.footer-brand:hover,
.footer-links a:hover {
  color: var(--blue);
}

.cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 62;
  width: min(560px, calc(100% - 40px));
  border: 1px solid rgba(18, 215, 255, 0.36);
  border-radius: 8px;
  padding: 22px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(10, 27, 76, 0.97), rgba(1, 0, 73, 0.96)),
    rgba(1, 0, 73, 0.96);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.42), inset 0 0 0 1px rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(18px);
  transform: translateY(16px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.cookie-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-banner h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 1.28rem;
  line-height: 1.25;
}

.cookie-banner p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.cookie-actions {
  display: grid;
  grid-template-columns: 1.05fr 1fr 0.88fr;
  gap: 8px;
}

.cookie-actions button,
.cookie-actions a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(18, 215, 255, 0.36);
  border-radius: 8px;
  padding: 10px 12px;
  color: #fff;
  background: linear-gradient(135deg, #1168f6, #12d7ff);
  font-weight: 780;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.16);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.cookie-actions button:hover,
.cookie-actions a:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.52);
}

.cookie-actions .secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.065);
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.52s ease, transform 0.52s ease;
}

.ready .reveal {
  opacity: 0;
  transform: translateY(18px);
}

.ready .reveal.in-view,
.ready .wexrowe-hero .reveal {
  opacity: 1;
  transform: none;
}

.booting [data-i18n],
.booting .skeletonable,
.booting .language-code,
.booting .language-menu__button .flag,
.booting .wexrowe-service-visual,
.booting .wexrowe-cap-icon,
.booting .wexrowe-model-card .icon,
.booting .wexrowe-logo,
.booting .wexrowe-brand-name,
.booting .wexrowe-hero h1,
.booting .wexrowe-hero-contact,
.booting .brand-symbol {
  color: transparent !important;
  border-radius: 6px;
  background: linear-gradient(100deg, rgba(13, 99, 246, 0.06), rgba(13, 99, 246, 0.14), rgba(13, 99, 246, 0.06));
  background-size: 220% 100%;
  animation: skeleton 1.1s infinite;
}

.booting .theme-wexrowe [data-i18n],
.booting .theme-wexrowe .skeletonable,
.booting .theme-wexrowe .language-code,
.booting .theme-wexrowe .language-menu__button .flag,
.booting .theme-wexrowe .wexrowe-service-visual,
.booting .theme-wexrowe .wexrowe-cap-icon,
.booting .theme-wexrowe .wexrowe-model-card .icon,
.booting .theme-wexrowe .wexrowe-logo,
.booting .theme-wexrowe .wexrowe-brand-name,
.booting .theme-wexrowe .wexrowe-hero h1,
.booting .theme-wexrowe .wexrowe-hero-contact {
  background: linear-gradient(100deg, rgba(18, 215, 255, 0.08), rgba(255, 255, 255, 0.14), rgba(18, 215, 255, 0.08));
  background-size: 220% 100%;
}

.booting .language-menu__button .flag {
  background-image: none !important;
  box-shadow: none;
}

.booting img.wexrowe-service-visual,
.booting img.wexrowe-cap-icon {
  opacity: 0.35;
}

@keyframes skeleton {
  from { background-position: 220% 0; }
  to { background-position: -220% 0; }
}

.theme-grid {
  background:
    linear-gradient(180deg, #f9fcff 0%, #eef6ff 48%, #ffffff 100%);
}

.legal-main {
  padding: clamp(42px, 6vw, 70px) 0 clamp(70px, 8vw, 112px);
}

.legal-shell {
  max-width: 900px;
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.legal-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 15px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.76);
}

.legal-nav .icon {
  width: 18px;
  height: 18px;
  border: 0;
  background: transparent;
}

.legal-stack {
  display: grid;
  gap: 16px;
}

.legal-card {
  padding: 26px;
}

.legal-card h1 {
  margin-bottom: 16px;
  font-size: clamp(2.45rem, 7vw, 4rem);
}

.legal-card h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 2rem;
  line-height: 1.16;
}

.legal-detail-grid {
  display: grid;
  gap: 12px;
}

.legal-detail-grid .contact-tile {
  background: rgba(255, 255, 255, 0.72);
}

@media (max-width: 1040px) {
  .site-nav + .header-actions .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 116px;
    z-index: 74;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border-radius: 8px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    justify-content: center;
  }

}

@media (max-width: 760px) {
  .container {
    width: min(1180px, calc(100% - 28px));
  }

  .topbar-inner {
    min-height: 50px;
    justify-content: center;
    font-size: 0.76rem;
  }

  .topbar .contact-chip:last-child {
    display: none;
  }

  .topbar-links {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .contact-chip {
    min-width: 0;
    gap: 5px;
  }

  .topbar .icon {
    width: 22px;
    height: 22px;
  }

  .topbar .protected-image {
    min-width: 0;
    font-size: 0.7rem;
    font-weight: 760;
  }

  .site-header.is-scrolled {
    top: 8px;
  }

  .site-header.is-scrolled .header-inner {
    border-radius: 8px;
  }

  .header-inner {
    min-height: 70px;
    gap: 10px;
    position: relative;
  }

  .brand-line,
  .language-wrap > span {
    display: none;
  }

  .brand-mark {
    font-size: 1.28rem;
  }

  .brand-symbol {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .header-actions .language-wrap {
    display: none;
  }

  .mobile-lang {
    display: flex;
    justify-content: center;
    padding-top: 6px;
  }

  .mobile-lang > span {
    display: none;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    overflow: visible;
    background: rgba(255, 255, 255, 0.98);
  }

  .site-nav a {
    min-height: 44px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-main {
    padding-top: 34px;
  }

  .legal-card {
    padding: 26px;
  }

  .legal-card h1 {
    font-size: clamp(2.28rem, 11vw, 3rem);
    line-height: 1.06;
  }

  .legal-card h2 {
    font-size: clamp(1.42rem, 7vw, 2rem);
    overflow-wrap: anywhere;
  }

  .cookie-banner {
    right: 20px;
    left: 20px;
    bottom: 62px;
    width: auto;
    max-height: calc(100svh - 78px);
    overflow-y: auto;
    padding: 16px;
  }

  .cookie-banner p {
    font-size: 0.92rem;
    line-height: 1.55;
  }

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

@media (max-width: 360px) {
  .topbar-links {
    grid-template-columns: 1fr;
  }

}

.theme-wexrowe {
  --wexrowe-dark: #010049;
  --wexrowe-deep: #061846;
  --wexrowe-blue: #157aa6;
  --wexrowe-light: #12d7ff;
  --wexrowe-line: rgba(255, 255, 255, 0.16);
  --canvas-a: rgba(18, 215, 255, 0.42);
  --canvas-b: rgba(255, 255, 255, 0.12);
  color: #fff;
  background: var(--wexrowe-dark);
}

.theme-wexrowe::before,
.theme-wexrowe::after {
  content: none;
}

.theme-wexrowe .ambient-canvas {
  opacity: 0.38;
}

.wexrowe-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 70;
  color: #fff;
  transition: background 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

.wexrowe-nav.is-scrolled {
  background: rgba(2, 18, 75, 0.82);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.wexrowe-nav-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 0;
  transition: min-height 0.24s ease;
}

.wexrowe-nav.is-scrolled .wexrowe-nav-inner {
  min-height: 74px;
}

.wexrowe-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 1.24rem;
  font-weight: 850;
  text-transform: uppercase;
  transform-origin: left center;
  backface-visibility: hidden;
  transform: translateZ(0);
  will-change: transform;
  transition: transform 0.08s ease-out, filter 0.08s ease-out;
}

.wexrowe-brand:hover {
  transform: translateZ(0) scale(1.035);
  filter: drop-shadow(0 12px 28px rgba(18, 215, 255, 0.2));
}

.wexrowe-logo {
  position: relative;
  isolation: isolate;
  width: 38px;
  height: 38px;
  display: block;
  border: 1px solid rgba(114, 235, 255, 0.46);
  border-radius: 10px;
  background: linear-gradient(145deg, #149ce0 0%, #0c61b8 48%, #07145f 100%);
  box-shadow: inset 0 1px 18px rgba(255, 255, 255, 0.22), 0 0 0 5px rgba(18, 215, 255, 0.06), 0 18px 42px rgba(0, 0, 0, 0.24);
  overflow: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.wexrowe-logo::before {
  content: none;
}

.wexrowe-logo::after {
  content: "W";
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.28rem;
  font-weight: 950;
  line-height: 1;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.46), 0 4px 18px rgba(0, 0, 0, 0.28);
}

@keyframes logo-shine {
  0%, 42%, 100% { transform: translateX(-120%); }
  64% { transform: translateX(120%); }
}

.wexrowe-brand-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.wexrowe-brand-name {
  color: #fff;
  font-size: 1.16rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

.wexrowe-brand-line {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.58rem;
  font-weight: 740;
  line-height: 1.1;
  letter-spacing: 0;
}

.wexrowe-menu {
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
}

.wexrowe-menu a {
  position: relative;
  z-index: 0;
  isolation: isolate;
  min-height: 92px;
  border-radius: 0;
  padding: 0 28px;
  color: rgba(255, 255, 255, 0.98) !important;
  font-size: 0.78rem;
  font-weight: 760;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.62);
  text-transform: uppercase;
  -webkit-text-stroke: 0.2px rgba(255, 255, 255, 0.18);
}

.wexrowe-menu a::before {
  content: "";
  position: absolute;
  inset: 0;
  height: auto;
  background: rgba(255, 255, 255, 0);
  z-index: -1;
  transition: background 0.22s ease;
}

.wexrowe-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--wexrowe-light);
  z-index: -1;
  transform: scaleX(0);
  transition: transform 0.22s ease;
}

.wexrowe-menu a:hover {
  color: #fff;
  background: transparent;
}

.wexrowe-menu a:hover::before {
  background: rgba(255, 255, 255, 0.12);
}

.wexrowe-menu a:hover::after {
  transform: scaleX(1);
}

.wexrowe-menu a:first-child::before {
  background: rgba(255, 255, 255, 0.12);
}

.wexrowe-menu a:first-child::after {
  transform: scaleX(1);
}

.wexrowe-nav-side {
  display: flex;
  align-items: center;
  gap: 18px;
}

.theme-wexrowe .language-wrap {
  color: #fff !important;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.38);
}

.theme-wexrowe .language-wrap > span,
.theme-wexrowe .mobile-lang > span {
  display: none;
}

.theme-wexrowe .language-menu__button {
  min-height: 40px;
  border-color: rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.theme-wexrowe .language-menu.is-open .language-menu__button,
.theme-wexrowe .language-menu__button:hover,
.theme-wexrowe .language-menu__button:focus,
.theme-wexrowe .language-menu__button:focus-visible {
  border-color: rgba(18, 215, 255, 0.58);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 0 1px rgba(18, 215, 255, 0.12), 0 10px 28px rgba(0, 0, 0, 0.18);
  outline: none;
}

.theme-wexrowe .language-menu__button .flag,
.theme-wexrowe .language-menu__list .flag {
  display: inline-block;
  flex: 0 0 auto;
}

.theme-wexrowe .flag {
  width: 22px;
  height: 15px;
  flex-basis: 22px;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.theme-wexrowe .language-code {
  color: #fff;
}

.theme-wexrowe .language-menu__list {
  border-color: rgba(255, 255, 255, 0.12);
  background: #0a1b4c;
}

.theme-wexrowe .language-menu__list button {
  color: rgba(255, 255, 255, 0.72);
}

.theme-wexrowe .language-menu__list button:hover,
.theme-wexrowe .language-menu__list button.is-active {
  color: #fff;
  background: rgba(18, 215, 255, 0.12);
}

.wexrowe-quote,
.wexrowe-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 9px;
  padding: 11px 18px;
  color: #fff;
  background: transparent;
  font-size: 0.92rem;
  font-weight: 720;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
}

.wexrowe-quote {
  min-height: 40px;
  color: #fff !important;
  font-size: 0.78rem;
  font-weight: 800;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.58);
  -webkit-text-stroke: 0.2px rgba(255, 255, 255, 0.16);
}

.wexrowe-quote:hover,
.wexrowe-button:hover {
  transform: translateY(-2px);
  border-color: var(--wexrowe-light);
  background: var(--wexrowe-dark);
  color: #fff;
}

.wexrowe-button.ghost:hover {
  background: var(--wexrowe-dark);
  color: #fff;
}

.wexrowe-contact-actions .wexrowe-button.ghost:hover {
  transform: translateY(-2px);
  border-color: var(--wexrowe-light);
  background: var(--wexrowe-dark);
  color: #fff;
}

.wexrowe-hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 0;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(88px, 11svh, 118px) 0 clamp(28px, 6svh, 58px);
  background:
    radial-gradient(circle at 50% 36%, rgba(45, 220, 255, 0.26), transparent 34rem),
    radial-gradient(circle at 12% 22%, rgba(255, 255, 255, 0.11), transparent 28rem),
    linear-gradient(to top, #062063 -36%, #157aa6 42%, #0b367d 100%);
}

.wexrowe-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.78) 24%, rgba(0, 0, 0, 0.54) 78%, transparent);
}

.wexrowe-hero-content {
  position: relative;
  z-index: 4;
  max-width: 980px;
  margin-inline: auto;
  padding-top: clamp(0px, 2svh, 28px);
  text-align: center;
}

.wexrowe-kicker {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.12rem;
  font-weight: 320;
  text-transform: uppercase;
}

.wexrowe-hero h1 {
  width: max-content;
  max-width: none;
  display: inline-block;
  margin: 0;
  padding-left: 0;
  color: #fff;
  font-size: clamp(3.6rem, 8.8vw, 7.45rem);
  line-height: 0.98;
  letter-spacing: clamp(12px, 4.7vw, 64px);
  text-align: center;
  text-transform: uppercase;
}

.wexrowe-subtitle {
  margin: 14px 0 0;
  color: #fff;
  font-size: clamp(1.4rem, 3.4vw, 2.65rem);
  line-height: 1.18;
  font-weight: 300;
  text-transform: uppercase;
}

.wexrowe-subtitle strong {
  font-weight: 850;
}

.wexrowe-hero-contact {
  position: relative;
  width: 74px;
  height: 74px;
  display: inline-grid;
  place-items: center;
  margin-top: clamp(26px, 5svh, 42px);
  border: 0;
  border-radius: 50%;
  padding: 0;
  color: #fff;
  background: var(--wexrowe-light);
  box-shadow: 0 0 0 22px rgba(18, 215, 255, 0.18), 0 0 0 48px rgba(18, 215, 255, 0.09);
  animation: wexrowePulse 2.2s ease-in-out infinite;
  cursor: pointer;
  transition: background 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.wexrowe-hero-contact:hover {
  transform: translateY(-2px);
  background: #22dfff;
  box-shadow: 0 0 0 17px rgba(18, 215, 255, 0.26), 0 0 0 58px rgba(18, 215, 255, 0.08), 0 18px 58px rgba(18, 215, 255, 0.28);
}

.wexrowe-hero-contact .icon {
  width: auto;
  height: auto;
  border: 0;
  color: #fff;
  background: transparent;
  font-size: 2.14rem;
}

@keyframes wexrowePulse {
  0%, 100% { box-shadow: 0 0 0 22px rgba(18, 215, 255, 0.18), 0 0 0 48px rgba(18, 215, 255, 0.09); }
  50% { box-shadow: 0 0 0 12px rgba(18, 215, 255, 0.3), 0 0 0 66px rgba(18, 215, 255, 0.045); }
}

.wexrowe-hero h2 {
  max-width: 880px;
  margin: clamp(26px, 5svh, 42px) auto 0;
  color: #fff;
  font-size: clamp(1.35rem, 2.15vw, 2rem);
  line-height: 1.55;
  font-weight: 680;
}

.wexrowe-hero-copy {
  max-width: 820px;
  margin: 14px auto 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.03rem;
  line-height: 1.8;
}

.wexrowe-hero .wexrowe-button {
  margin-top: clamp(18px, 3.6svh, 28px);
}

.wexrowe-hero-network {
  position: absolute;
  left: 50%;
  top: -420px;
  z-index: 1;
  width: max(1680px, 106vw);
  min-width: 1680px;
  max-width: none;
  height: auto;
  pointer-events: none;
  opacity: 0.9;
  mix-blend-mode: normal;
  filter: saturate(1.18) contrast(1.18) brightness(1.04);
  -webkit-mask-image: radial-gradient(ellipse at 50% 56%, #000 0 54%, rgba(0, 0, 0, 0.82) 66%, transparent 84%);
  mask-image: radial-gradient(ellipse at 50% 56%, #000 0 54%, rgba(0, 0, 0, 0.82) 66%, transparent 84%);
  transform-origin: 50% 50%;
  animation: wexroweHeroNetworkWave 2.1s ease-in-out infinite alternate both;
}

@keyframes wexroweHeroNetworkWave {
  0% {
    transform: translateX(-50%) translateY(0) rotate(1deg) scale(1.02);
  }
  100% {
    transform: translateX(-50%) translateY(8px) rotate(-1deg) scale(1.025);
  }
}

.wexrowe-wave {
  position: absolute;
  left: -6%;
  right: -6%;
  bottom: -10%;
  z-index: 2;
  height: 44%;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(255, 255, 255, 0.2), transparent 54%),
    repeating-radial-gradient(ellipse at 50% 100%, rgba(255, 255, 255, 0.12) 0 2px, transparent 2px 34px);
  opacity: 0.12;
  transform: rotate(-2deg);
  animation: wexroweWave 6s ease-in-out infinite alternate;
}

@keyframes wexroweWave {
  from { transform: translateY(0) rotate(-2deg); }
  to { transform: translateY(18px) rotate(1deg); }
}

@media (max-height: 760px) and (min-width: 761px) {
  .wexrowe-hero {
    padding: 80px 0 24px;
  }

  .wexrowe-hero-content {
    padding-top: 0;
  }

  .wexrowe-kicker {
    margin-bottom: 10px;
    font-size: 0.94rem;
  }

  .wexrowe-hero h1 {
    font-size: clamp(4.4rem, 7vw, 5.9rem);
    line-height: 0.92;
  }

  .wexrowe-subtitle {
    margin-top: 10px;
    font-size: clamp(1.18rem, 2.6vw, 2.05rem);
    line-height: 1.08;
  }

  .wexrowe-hero-contact {
    width: 64px;
    height: 64px;
    margin-top: 24px;
    box-shadow: 0 0 0 16px rgba(18, 215, 255, 0.18), 0 0 0 38px rgba(18, 215, 255, 0.08);
  }

  .wexrowe-hero-contact .icon {
    font-size: 1.86rem;
  }

  .wexrowe-hero h2 {
    margin-top: 24px;
    font-size: clamp(1.12rem, 1.6vw, 1.45rem);
    line-height: 1.25;
  }

  .wexrowe-hero-copy {
    margin-top: 9px;
    font-size: 0.94rem;
    line-height: 1.35;
  }

  .wexrowe-hero .wexrowe-button {
    min-height: 40px;
    margin-top: 16px;
    padding: 9px 16px;
  }
}

.wexrowe-dark-section,
.wexrowe-choose,
.wexrowe-models,
.wexrowe-contact {
  position: relative;
  overflow: hidden;
  padding: clamp(82px, 9vw, 132px) 0;
}

.wexrowe-dark-section {
  background:
    radial-gradient(circle at 50% 10%, rgba(18, 215, 255, 0.16), transparent 28rem),
    linear-gradient(180deg, #010049 0%, #061846 100%);
  background-attachment: fixed;
}

.wexrowe-dark-section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(1120px, 90vw);
  height: 260px;
  pointer-events: none;
  opacity: 0.22;
  background:
    radial-gradient(circle, rgba(36, 225, 255, 0.74) 0 1.2px, transparent 1.8px);
  background-size: 12px 12px;
  mask-image: radial-gradient(ellipse at 50% 50%, #000 0 34%, rgba(0, 0, 0, 0.6) 54%, transparent 78%);
  transform: translate(-50%, -45%) rotate(-2deg);
}

.wexrowe-section-head {
  text-align: center;
}

.wexrowe-section-head h2 {
  margin: 0 0 70px;
  color: #fff;
  font-size: clamp(2.4rem, 5.5vw, 4.8rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 18px;
  text-transform: uppercase;
}

.wexrowe-services-slider {
  width: min(1180px, 100%);
  margin-inline: auto;
}

.wexrowe-services-viewport {
  overflow: hidden;
  border-block: 0;
}

.wexrowe-service-track {
  --active: 0;
  --per-view: 3;
  --slide-basis: 33.333%;
  display: flex;
  transition: transform 0.86s cubic-bezier(0.19, 1, 0.22, 1);
}

.wexrowe-service-card {
  position: relative;
  min-height: 390px;
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  padding: 44px clamp(22px, 3vw, 52px);
  text-align: center;
  background: transparent;
}

.wexrowe-service-slide {
  flex: 0 0 var(--slide-basis);
}

.wexrowe-service-visual {
  width: 104px;
  height: 104px;
  object-fit: contain;
  background: transparent;
}

.wexrowe-service-card h3,
.wexrowe-why-copy h3,
.wexrowe-model-card h3 {
  margin: 0;
  color: #fff;
  font-size: 1.35rem;
  line-height: 1.25;
}

.wexrowe-service-card p,
.wexrowe-why-copy p,
.wexrowe-model-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
}

.wexrowe-service-card,
.wexrowe-model-card {
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease, box-shadow 0.24s ease;
}

.wexrowe-service-card:hover {
  border-color: rgba(18, 215, 255, 0.46);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: inset 0 0 0 1px rgba(18, 215, 255, 0.12), 0 28px 90px rgba(0, 0, 0, 0.16);
}

.wexrowe-model-card:hover {
  border-color: rgba(18, 215, 255, 0.46);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: inset 0 0 0 1px rgba(18, 215, 255, 0.12), 0 28px 90px rgba(0, 0, 0, 0.2);
  transform: translateY(-22px);
}

.ready .wexrowe-model-card.reveal.in-view:hover {
  transform: translateY(-22px);
}

.wexrowe-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}

.wexrowe-tags span {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 4px;
  padding: 6px 10px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(43, 62, 180, 0.38);
  font-size: 0.72rem;
  font-weight: 760;
}

.wexrowe-slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 44px;
}

.wexrowe-slider-controls button {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: #fff;
  background: transparent;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.wexrowe-slider-controls button:first-child .icon {
  transform: rotate(180deg);
}

.wexrowe-slider-controls button:hover {
  border-color: var(--wexrowe-light);
  background: rgba(18, 215, 255, 0.1);
  transform: translateY(-2px);
}

.wexrowe-slider-controls .icon {
  width: auto;
  height: auto;
  border: 0;
  color: currentColor;
  background: transparent;
}

.wexrowe-slider-dots {
  display: flex;
  gap: 14px;
}

.wexrowe-slider-dots button {
  position: relative;
  width: 13px;
  height: 13px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  padding: 0;
  background: transparent;
}

.wexrowe-slider-dots button.is-active::before {
  content: "";
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
}

.wexrowe-slider-dots button.is-active {
  border-color: var(--wexrowe-light);
  background: var(--wexrowe-light);
  box-shadow: 0 0 18px rgba(18, 215, 255, 0.48);
}

.wexrowe-choose {
  border-top: 1px solid var(--wexrowe-line);
  background: #010049;
}

.wexrowe-choose-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
  gap: clamp(36px, 7vw, 90px);
  align-items: center;
}

.wexrowe-circles {
  position: relative;
  min-height: 450px;
  display: grid;
  place-items: center;
}

.wexrowe-circles svg {
  width: min(550px, 100%);
  height: auto;
  aspect-ratio: 1;
  overflow: visible;
  background: transparent;
}

.wexrowe-wave-path {
  fill: none;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wexrowe-wave-w {
  fill: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 78px;
  font-weight: 900;
  letter-spacing: 1px;
  text-anchor: middle;
  dominant-baseline: middle;
}

.wexrowe-upper {
  margin-bottom: 54px !important;
  font-size: 1.05rem;
  text-transform: uppercase;
}

.wexrowe-why-copy ul {
  display: grid;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.wexrowe-why-copy li {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 26px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 10px;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.wexrowe-cap-icon {
  width: 108px;
  height: 108px;
  display: block;
  transition: transform 0.22s ease, filter 0.22s ease;
}

.wexrowe-why-copy li:hover {
  transform: translateY(-8px);
  border-color: rgba(18, 215, 255, 0.25);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.18);
}

.wexrowe-why-copy li:focus-within {
  transform: translateY(-8px);
  border-color: rgba(18, 215, 255, 0.25);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.18);
}

.wexrowe-why-copy li:hover .wexrowe-cap-icon {
  transform: scale(1.06);
  filter: drop-shadow(0 0 18px rgba(18, 215, 255, 0.24));
}

.wexrowe-numbers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  width: min(960px, 100%);
  margin: 80px auto 0;
}

.wexrowe-numbers div {
  display: flex;
  gap: 20px;
  align-items: center;
  color: rgba(255, 255, 255, 0.72);
  text-transform: uppercase;
}

.wexrowe-numbers strong {
  min-width: 84px;
  color: #fff;
  font-size: 2.6rem;
  font-weight: 350;
  text-align: center;
}

.wexrowe-models {
  border-top: 1px solid var(--wexrowe-line);
  background: linear-gradient(180deg, #010049 0%, #157aa6 100%);
}

.wexrowe-model-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: min(1020px, 100%);
  margin-inline: auto;
}

.wexrowe-model-card {
  position: relative;
  min-height: 350px;
  padding: 68px 42px 52px;
  border: 1px solid rgba(18, 215, 255, 0.28);
  color: #fff;
  text-align: center;
  background: rgba(255, 255, 255, 0.045);
}

.wexrowe-model-card .icon {
  width: 124px;
  height: 124px;
  margin-bottom: 24px;
  color: var(--wexrowe-light);
  background: rgba(18, 215, 255, 0.08);
  font-size: 2.74rem;
}

.wexrowe-model-card .icon::before {
  font-size: 2.68rem;
}

.wexrowe-model-card p {
  margin-top: 18px;
}

.wexrowe-model-card a {
  display: inline-flex;
  margin-top: 34px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 8px;
  padding: 10px 16px;
  color: #fff;
  font-weight: 760;
  transition: border-color 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

.wexrowe-model-card a:hover {
  border-color: var(--wexrowe-light);
  background: rgba(18, 215, 255, 0.13);
  transform: translateY(-2px);
}

.wexrowe-contact {
  --mx: 52%;
  --my: 54%;
  min-height: 600px;
  border-top: 1px solid var(--wexrowe-line);
  background: #010049;
}

.wexrowe-contact-grid {
  width: min(720px, 100%);
  display: grid;
  gap: 14px;
  margin: 0 auto;
  text-align: left;
  perspective: 1200px;
}

.wexrowe-contact-card {
  --x: 50%;
  --y: 50%;
  --card-accent: #12d7ff;
  position: relative;
  isolation: isolate;
  min-height: 96px;
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(18, 215, 255, 0.22);
  border-radius: 8px;
  padding: 17px 24px 17px 18px;
  color: #fff;
  background:
    linear-gradient(110deg, rgba(20, 156, 224, 0.16), rgba(1, 0, 73, 0.68) 48%, rgba(18, 215, 255, 0.08)),
    rgba(1, 0, 73, 0.58);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035), 0 28px 80px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  transform: translateZ(0);
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease, box-shadow 0.24s ease;
}

.wexrowe-contact-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  background:
    radial-gradient(circle at var(--x) var(--y), rgba(18, 215, 255, 0.26), transparent 32%),
    linear-gradient(90deg, var(--card-accent), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.16));
  opacity: 0.48;
  transition: opacity 0.24s ease;
}

.wexrowe-contact-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 3px;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(180deg, transparent, var(--card-accent), transparent);
  box-shadow: 0 0 24px var(--card-accent);
}

.wexrowe-contact-card:hover {
  border-color: rgba(18, 215, 255, 0.58);
  background:
    linear-gradient(110deg, rgba(20, 156, 224, 0.24), rgba(1, 0, 73, 0.72) 48%, rgba(18, 215, 255, 0.13)),
    rgba(1, 0, 73, 0.68);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.055), 0 32px 90px rgba(0, 0, 0, 0.22), 0 0 42px rgba(18, 215, 255, 0.13);
  transform: translateY(-3px) rotateX(1.2deg);
}

.wexrowe-contact-card:hover::before {
  opacity: 0.86;
}

.wexrowe-contact-card--mail {
  --card-accent: #5ab7ff;
}

.wexrowe-contact-card--web {
  --card-accent: #8cf3ff;
}

.wexrowe-contact-card__icon {
  position: relative;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(18, 215, 255, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(18, 215, 255, 0.16), rgba(15, 40, 140, 0.38)),
    rgba(1, 0, 73, 0.52);
  box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.05), 0 0 34px rgba(18, 215, 255, 0.08);
}

.wexrowe-contact-card__icon::before,
.wexrowe-contact-card__icon::after {
  content: "";
  position: absolute;
  border-color: var(--card-accent);
  opacity: 0.8;
}

.wexrowe-contact-card__icon::before {
  top: -1px;
  right: -1px;
  width: 16px;
  height: 16px;
  border-top: 2px solid;
  border-right: 2px solid;
}

.wexrowe-contact-card__icon::after {
  left: -1px;
  bottom: -1px;
  width: 16px;
  height: 16px;
  border-left: 2px solid;
  border-bottom: 2px solid;
}

.wexrowe-contact-card__icon .icon {
  width: auto;
  height: auto;
  border: 0;
  color: var(--card-accent);
  background: transparent;
  font-size: 1.38rem;
  filter: drop-shadow(0 0 14px rgba(18, 215, 255, 0.48));
}

.wexrowe-contact-card__content {
  min-width: 0;
  display: grid;
  gap: 7px;
}

.wexrowe-contact-card__label {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 2.6px;
  line-height: 1.1;
  text-transform: uppercase;
}

.wexrowe-contact-card .protected-image {
  color: #fff;
  font-size: clamp(1.08rem, 2.2vw, 1.36rem);
  font-weight: 860;
  line-height: 1.15;
  text-shadow: 0 0 28px rgba(18, 215, 255, 0.2);
}

.wexrowe-contact-grid .detail-lock {
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
}

.wexrowe-contact-grid .address .protected-image {
  font-size: 1rem;
}

.wexrowe-contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 46px;
}

.wexrowe-contact-mesh {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  opacity: 0.92;
  mix-blend-mode: screen;
}

.wexrowe-contact > .container {
  position: relative;
  z-index: 2;
}

.wexrowe-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.68);
  background: #010049;
  padding: 28px 0;
}

.wexrowe-footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  font-size: 0.92rem;
}

.wexrowe-footer p {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0;
}

.wexrowe-footer a {
  display: inline-flex;
  color: #fff;
  font-weight: 740;
  transform-origin: center;
  transition: color 0.2s ease;
}

.wexrowe-footer a:hover {
  color: var(--wexrowe-light);
}

.wexrowe-footer-inner div {
  display: flex;
  gap: 0;
  align-items: center;
}

.wexrowe-footer-inner div a + a {
  border-left: 1px solid rgba(255, 255, 255, 0.24);
  margin-left: 14px;
  padding-left: 14px;
}

@media (max-width: 1040px) {
  .theme-wexrowe .wexrowe-nav-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    gap: 12px;
  }

  .theme-wexrowe .nav-toggle {
    display: block;
    width: 44px;
    height: 44px;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
  }

  .theme-wexrowe .wexrowe-menu {
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(1, 0, 73, 0.98);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  }

  .theme-wexrowe .wexrowe-menu.is-open {
    display: flex;
  }

  .theme-wexrowe .wexrowe-menu a {
    min-height: 46px;
    justify-content: center;
  }

  .theme-wexrowe .wexrowe-nav-side {
    display: none;
  }

  .theme-wexrowe .mobile-lang {
    display: flex;
    justify-content: center;
    padding-top: 8px;
  }

  .wexrowe-choose-grid,
  .wexrowe-model-grid,
  .wexrowe-numbers {
    grid-template-columns: 1fr;
  }

  .wexrowe-service-card {
    border-right: 0;
  }

}

@media (max-width: 760px) {
  body.theme-wexrowe {
    overflow-x: clip;
  }

  .theme-wexrowe .container {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
  }

  .wexrowe-hero-content {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .wexrowe-nav-inner {
    min-height: 74px;
  }

  .wexrowe-brand {
    font-size: 1rem;
    gap: 9px;
  }

  .wexrowe-logo {
    width: 34px;
    height: 34px;
  }

  .wexrowe-logo::after {
    font-size: 1.08rem;
  }

  .wexrowe-brand-name {
    font-size: 0.98rem;
  }

  .wexrowe-brand-line {
    display: block;
    font-size: 0.48rem;
  }

  .wexrowe-hero {
    height: 100vh;
    height: 100svh;
    min-height: 0;
    align-items: center;
    padding: 78px 0 22px;
  }

  .wexrowe-hero-content {
    padding-top: 0;
  }

  .wexrowe-hero-network {
    top: 172px;
    bottom: auto;
    min-width: 760px;
    width: 760px;
    opacity: 0.9;
  }

  .wexrowe-kicker {
    margin-bottom: 10px;
    font-size: 0.82rem;
  }

  .wexrowe-hero h1 {
    padding-left: 0;
    font-size: clamp(2.32rem, 12vw, 2.88rem);
    line-height: 0.94;
    letter-spacing: 7px;
  }

  .wexrowe-subtitle {
    max-width: 100%;
    margin-inline: auto;
    margin-top: 10px;
    font-size: clamp(0.96rem, 4.4vw, 1.08rem);
    line-height: 1.22;
    overflow-wrap: anywhere;
  }

  .wexrowe-hero-contact {
    width: 64px;
    height: 64px;
    margin-top: 26px;
    box-shadow: 0 0 0 16px rgba(18, 215, 255, 0.18), 0 0 0 34px rgba(18, 215, 255, 0.08);
  }

  .wexrowe-hero-contact .icon {
    font-size: 1.82rem;
  }

  .wexrowe-hero h2 {
    width: min(330px, 100%);
    max-width: calc(100vw - 40px);
    margin-inline: auto;
    margin-top: 26px;
    font-size: clamp(0.98rem, 4.3vw, 1.12rem);
    line-height: 1.26;
    overflow-wrap: anywhere;
  }

  .wexrowe-hero-copy {
    width: min(330px, 100%);
    max-width: calc(100vw - 40px);
    margin-inline: auto;
    margin-top: 10px;
    font-size: 0.9rem;
    line-height: 1.35;
    overflow-wrap: anywhere;
  }

  .wexrowe-hero .wexrowe-button {
    min-height: 40px;
    margin-top: 18px;
    padding: 9px 16px;
  }

  .wexrowe-section-head h2 {
    margin-bottom: 42px;
    font-size: 2.2rem;
    letter-spacing: 6px;
  }

  .wexrowe-service-card,
  .wexrowe-model-card {
    min-height: auto;
    padding: 32px 18px;
  }

  .wexrowe-circles {
    min-height: 290px;
  }

  .wexrowe-circles svg {
    width: min(340px, 100%);
  }

  .wexrowe-why-copy li {
    grid-template-columns: 76px minmax(0, 1fr);
  }

  .wexrowe-cap-icon {
    width: 76px;
    height: 76px;
  }

  .wexrowe-model-card .icon {
    width: 98px;
    height: 98px;
    font-size: 2.2rem;
  }

  .wexrowe-model-card .icon::before {
    font-size: 2.14rem;
  }

  .wexrowe-numbers div {
    align-items: flex-start;
  }

  .wexrowe-footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .wexrowe-contact-grid {
    gap: 12px;
  }

  .wexrowe-contact-card {
    min-height: 88px;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 14px;
    padding: 14px 15px 14px 13px;
  }

  .wexrowe-contact-card__icon {
    width: 52px;
    height: 52px;
  }

  .wexrowe-contact-card__icon .icon {
    font-size: 1.18rem;
  }

  .wexrowe-contact-card__label {
    font-size: 0.63rem;
    letter-spacing: 1.7px;
  }

  .wexrowe-contact-card .protected-image {
    font-size: clamp(0.96rem, 4.3vw, 1.08rem);
  }
}
