@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Playfair+Display:ital,wght@1,600&display=swap");

:root {
  --ink: #07101c;
  --ink-2: #0b1727;
  --paper: #f4f6f8;
  --paper-2: #eef2f5;
  --white: #fff;
  --red: #ef3249;
  --red-dark: #c71931;
  --blue: #1788f7;
  --blue-bright: #35a9ff;
  --green: #18b968;
  --gold: #c89742;
  --muted: #667384;
  --line: rgba(7, 16, 28, 0.12);
  --shadow: 0 26px 76px rgba(7, 16, 28, 0.16);
  --shadow-soft: 0 14px 40px rgba(7, 16, 28, 0.1);
  --radius: 28px;
  --container: min(1180px, calc(100% - 40px));
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 18%, rgba(23, 136, 247, .065), transparent 28%),
    radial-gradient(circle at 92% 76%, rgba(239, 50, 73, .045), transparent 30%),
    linear-gradient(180deg, #f7f9fa 0%, #eef2f5 100%);
  background-attachment: fixed;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.assistant-open {
  overflow: hidden;
}

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

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

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

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

button {
  color: inherit;
}

::selection {
  color: var(--white);
  background: var(--red);
}

:focus-visible {
  outline: 3px solid rgba(23, 136, 247, .58);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 15px;
  border-radius: 12px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
  transition: transform .2s ease;
}

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding: clamp(72px, 9vw, 132px) 0;
}

.section-tight {
  padding: clamp(54px, 7vw, 96px) 0;
}

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

.section-white {
  background: rgba(255, 255, 255, .92);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--red);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .04em;
}

.eyebrow::before {
  width: 22px;
  height: 2px;
  content: "";
  border-radius: 999px;
  background: currentColor;
}

.eyebrow-light {
  color: #ff8189;
}

.display,
.section-title,
.page-title {
  margin: 0;
  font-weight: 800;
  letter-spacing: -.055em;
  line-height: .98;
}

.display {
  max-width: 900px;
  font-size: clamp(3.1rem, 8vw, 7.3rem);
}

.page-title {
  max-width: 940px;
  font-size: clamp(3.2rem, 7.6vw, 7.4rem);
}

.section-title {
  max-width: 780px;
  font-size: clamp(2.35rem, 5.3vw, 5.1rem);
}

.display em,
.page-title em,
.section-title em {
  color: var(--red);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  letter-spacing: -.04em;
}

.section-dark .display em,
.section-dark .page-title em,
.section-dark .section-title em,
.dark-hero .page-title em {
  color: #ff6c77;
}

.lead {
  max-width: 680px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.8vw, 1.28rem);
  line-height: 1.7;
}

.section-dark .lead,
.dark-hero .lead {
  color: rgba(255, 255, 255, .7);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: clamp(38px, 6vw, 72px);
}

.section-head .lead {
  max-width: 430px;
  margin: 0;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 15px;
  cursor: pointer;
  font-size: .93rem;
  font-weight: 800;
  line-height: 1.2;
  transition: transform .3s var(--ease), background .3s ease, border-color .3s ease, box-shadow .3s ease;
}

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

.button svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.button-primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 13px 28px rgba(239, 50, 73, .25);
}

.button-primary:hover {
  background: var(--red-dark);
}

.button-secondary {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, .74);
}

.button-secondary:hover {
  border-color: rgba(16, 28, 44, .28);
  background: var(--white);
}

.section-dark .button-secondary,
.dark-hero .button-secondary {
  border-color: rgba(255, 255, 255, .25);
  color: var(--white);
  background: rgba(255, 255, 255, .07);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-weight: 800;
}

.text-link svg {
  width: 18px;
  height: 18px;
  transition: transform .25s var(--ease);
}

.text-link:hover svg {
  transform: translate(3px, -3px);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  padding: 16px 0;
  transition: padding .3s ease, background .3s ease, box-shadow .3s ease;
}

.site-header.is-scrolled,
body:not(.page-home) .site-header {
  padding: 10px 0;
  background: rgba(244, 246, 248, .92);
  box-shadow: 0 1px 0 rgba(7, 16, 28, .09), 0 14px 38px rgba(7, 16, 28, .06);
  backdrop-filter: blur(18px);
}

body.page-home .site-header:not(.is-scrolled) .brand-copy strong,
body.page-home .site-header:not(.is-scrolled) .main-nav a {
  color: var(--white);
}

body.page-home .site-header:not(.is-scrolled) .brand-copy small {
  color: rgba(255, 255, 255, .58);
}

body.page-home .site-header:not(.is-scrolled) .main-nav a:hover,
body.page-home .site-header:not(.is-scrolled) .main-nav a[aria-current="page"] {
  background: rgba(255, 255, 255, .12);
}

body.page-home .site-header:not(.is-scrolled) .header-call,
body.page-home .site-header:not(.is-scrolled) .menu-toggle {
  border-color: rgba(255, 255, 255, .2);
  color: var(--white);
  background: rgba(255, 255, 255, .08);
}

body.page-home .site-header:not(.is-scrolled) .menu-toggle span {
  background: var(--white);
}

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

.brand {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 11px;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: -.025em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: .65rem;
  font-weight: 700;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 5px;
}

.main-nav a {
  padding: 10px 11px;
  border-radius: 10px;
  color: #435165;
  font-size: .78rem;
  font-weight: 700;
  transition: color .2s ease, background .2s ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--ink);
  background: rgba(7, 16, 28, .07);
}

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

.header-call {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 255, 255, .58);
}

.header-call svg {
  width: 20px;
  height: 20px;
}

.header-cta {
  min-height: 44px;
  padding: 11px 15px;
  border-radius: 13px;
  color: var(--white);
  background: var(--red);
  font-size: .76rem;
  font-weight: 800;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 255, 255, .74);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 4px;
  background: var(--ink);
  transition: transform .25s ease, opacity .2s ease;
}

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

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

/* Home */
.home-hero {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  color: var(--white);
  background: #0a1724;
}

.home-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 17, 28, .96) 0%, rgba(7, 17, 28, .84) 42%, rgba(7, 17, 28, .18) 72%, rgba(7, 17, 28, .4) 100%),
    linear-gradient(0deg, rgba(7, 17, 28, .55), transparent 45%);
}

.hero-media,
.hero-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media video {
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 780px;
  flex-direction: column;
  justify-content: center;
  padding: 150px 0 96px;
}

.hero-kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  color: rgba(255, 255, 255, .83);
  background: rgba(255, 255, 255, .08);
  font-size: .78rem;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.hero-kicker i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #63d29f;
  box-shadow: 0 0 0 5px rgba(99, 210, 159, .13);
}

.home-hero .display {
  max-width: 790px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -.065em;
}

.home-hero .display em {
  color: #ff6c77;
  font-family: inherit;
  font-style: normal;
  font-weight: 800;
  letter-spacing: inherit;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .home-hero .display em {
    background: linear-gradient(90deg, #f8fbff 0%, #d9ecff 16%, #83c3ff 42%, #b49dde 66%, #ff6473 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

.home-hero .lead {
  max-width: 620px;
  color: rgba(255, 255, 255, .76);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 25px;
  margin-top: 42px;
  color: rgba(255, 255, 255, .7);
  font-size: .78rem;
  font-weight: 700;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-proof svg {
  width: 17px;
  height: 17px;
  color: #64cf9e;
}

.hero-side-note {
  position: absolute;
  z-index: 3;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 52px;
  display: flex;
  width: 280px;
  align-items: center;
  gap: 15px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 20px;
  color: rgba(255, 255, 255, .78);
  background: rgba(7, 17, 28, .55);
  font-size: .76rem;
  backdrop-filter: blur(14px);
}

.hero-side-note strong {
  display: block;
  margin-bottom: 2px;
  color: var(--white);
  font-size: .85rem;
}

.hero-side-note svg {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  color: #ff777f;
}

.gateway-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.gateway-card {
  position: relative;
  min-height: 315px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s ease;
}

.gateway-card:hover {
  z-index: 2;
  border-color: transparent;
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}

.gateway-card:nth-child(1),
.gateway-card:nth-child(4) {
  grid-column: span 7;
}

.gateway-card:nth-child(2),
.gateway-card:nth-child(3) {
  grid-column: span 5;
}

.gateway-card .card-number {
  color: var(--red);
  font-size: .75rem;
  font-weight: 800;
}

.gateway-card h3 {
  max-width: 370px;
  margin: 84px 0 14px;
  font-size: clamp(1.65rem, 3vw, 2.65rem);
  letter-spacing: -.045em;
  line-height: 1.05;
}

.gateway-card p {
  max-width: 460px;
  margin: 0;
  color: var(--muted);
  font-size: .91rem;
}

.gateway-card .card-arrow {
  position: absolute;
  top: 25px;
  right: 25px;
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: background .25s ease, color .25s ease, transform .35s var(--ease);
}

.gateway-card:hover .card-arrow {
  color: var(--white);
  background: var(--red);
  transform: rotate(45deg);
}

.gateway-card .card-arrow svg {
  width: 19px;
  height: 19px;
}

.gateway-card.feature-red {
  color: var(--white);
  border-color: transparent;
  background: var(--red);
}

.gateway-card.feature-red p,
.gateway-card.feature-red .card-number {
  color: rgba(255, 255, 255, .75);
}

.gateway-card.feature-red .card-arrow {
  border-color: rgba(255, 255, 255, .24);
}

.gateway-card.feature-blue {
  color: var(--white);
  border-color: transparent;
  background: var(--blue);
}

.gateway-card.feature-blue p,
.gateway-card.feature-blue .card-number {
  color: rgba(255, 255, 255, .75);
}

.gateway-card.feature-blue .card-arrow {
  border-color: rgba(255, 255, 255, .24);
}

.gateway-card.gateway-outlet {
  min-height: 265px;
  grid-column: 1 / -1;
  color: var(--white);
  border-color: transparent;
  background:
    radial-gradient(circle at 87% 18%, rgba(239, 50, 73, .5), transparent 27%),
    radial-gradient(circle at 10% 100%, rgba(23, 136, 247, .22), transparent 34%),
    linear-gradient(135deg, #07101c, #122b45);
}

.gateway-card.gateway-outlet h3 {
  max-width: 620px;
  margin-top: 58px;
}

.gateway-card.gateway-outlet p,
.gateway-card.gateway-outlet .card-number {
  color: rgba(255, 255, 255, .74);
}

.gateway-card.gateway-outlet .card-arrow {
  border-color: rgba(255, 255, 255, .25);
}

.signature-grid {
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: 18px;
}

.signature-card {
  position: relative;
  min-height: 530px;
  overflow: hidden;
  border-radius: 34px;
}

.signature-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}

.signature-card:hover img {
  transform: scale(1.035);
}

.signature-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 34px;
  color: var(--white);
  background: linear-gradient(180deg, transparent 25%, rgba(7, 17, 28, .86) 100%);
}

.signature-overlay span {
  width: fit-content;
  margin-bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .13);
  font-size: .72rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.signature-overlay h3 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -.05em;
  line-height: 1;
}

.signature-overlay p {
  max-width: 500px;
  margin: 0;
  color: rgba(255, 255, 255, .72);
}

.signature-fire {
  background: #07101c;
}

.signature-fire::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background: linear-gradient(135deg, rgba(239, 50, 73, .12), transparent 45%);
}

.signature-water::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background: linear-gradient(135deg, transparent 35%, rgba(23, 136, 247, .14));
}

/* Connected products */
.connected-products {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 7vw, 98px) 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(239, 50, 73, .08), transparent 24%),
    radial-gradient(circle at 92% 82%, rgba(23, 136, 247, .11), transparent 25%),
    linear-gradient(180deg, #f7f9fa, #eef2f5);
}

.connected-products .section-head {
  max-width: 1140px;
  margin-right: auto;
  margin-bottom: clamp(32px, 4vw, 48px);
  margin-left: auto;
}

.connected-products::before {
  display: none;
}

.connected-showcase {
  position: relative;
  display: grid;
  max-width: 1140px;
  gap: 18px;
  margin: 0 auto;
}

.connected-card {
  display: grid;
  min-height: 470px;
  overflow: hidden;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 30px;
  color: var(--white);
  background: #07101c;
  box-shadow: 0 20px 54px rgba(16, 28, 44, .14);
  contain: layout paint;
}

.connected-winet {
  background:
    radial-gradient(circle at 90% 15%, rgba(53, 169, 255, .3), transparent 31%),
    linear-gradient(135deg, #07101c, #0d2840);
}

.connected-cold {
  background:
    radial-gradient(circle at 5% 90%, rgba(23, 136, 247, .24), transparent 32%),
    linear-gradient(135deg, #07101c, #0b2135);
}

.connected-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 4.4vw, 54px);
}

.connected-brand {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 24px;
}

.connected-brand-mark,
.connected-brand img {
  display: grid;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  place-items: center;
  border-radius: 16px;
}

.connected-brand-mark {
  color: var(--white);
  background: linear-gradient(145deg, var(--red), var(--red-dark));
  box-shadow: 0 12px 28px rgba(239, 50, 73, .25);
  font-size: 1.3rem;
  font-weight: 900;
}

.connected-brand img {
  object-fit: cover;
  background: #000;
}

.connected-brand span:last-child {
  display: grid;
  gap: 1px;
}

.connected-brand small {
  color: rgba(255, 255, 255, .57);
  font-size: .7rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.connected-brand strong {
  font-size: 1.22rem;
  letter-spacing: -.025em;
}

.connected-copy h3 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(2.05rem, 3.2vw, 3.35rem);
  letter-spacing: -.06em;
  line-height: .98;
}

.connected-copy > p {
  max-width: 600px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .67);
}

.connected-list {
  display: grid;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.connected-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, .82);
  font-size: .88rem;
}

.connected-list li::before {
  position: absolute;
  top: .36em;
  left: 2px;
  width: 10px;
  height: 10px;
  content: "";
  border: 3px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  background: var(--blue-bright);
  box-shadow: 0 0 0 4px rgba(53, 169, 255, .1);
}

.connected-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 28px;
}

.connected-link {
  color: var(--white);
}

.connected-link:hover {
  color: var(--blue-bright);
}

.connected-media {
  position: relative;
  min-height: 470px;
  overflow: hidden;
}

.winet-media {
  isolation: isolate;
  background: #0a1825;
}

.winet-lifestyle {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 18% center;
  filter: saturate(.9) contrast(1.04);
}

.winet-media::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, rgba(7, 16, 28, .18), rgba(7, 16, 28, .04) 45%, rgba(7, 16, 28, .54));
}

.winet-media-tag {
  position: absolute;
  z-index: 3;
  top: 20px;
  left: 20px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  color: var(--white);
  background: rgba(7, 16, 28, .82);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .02em;
}

.winet-kit-card {
  position: absolute;
  z-index: 3;
  right: 20px;
  top: 28px;
  bottom: auto;
  width: min(38%, 188px);
  padding: 6px;
  border: 1px solid rgba(101, 190, 255, .3);
  border-radius: 21px;
  color: var(--white);
  background: linear-gradient(145deg, rgba(12, 29, 47, .94), rgba(5, 14, 25, .92));
  box-shadow: 0 18px 40px rgba(0, 0, 0, .28), 0 0 24px rgba(53, 169, 255, .08);
  backdrop-filter: blur(10px);
}

.winet-kit-card span {
  display: block;
  padding: 3px 4px 8px;
  color: rgba(255, 255, 255, .92);
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .02em;
}

.winet-kit-card img {
  display: block;
  width: 100%;
  height: 410px;
  border-radius: 14px;
  object-fit: cover;
  object-position: center top;
  background: linear-gradient(180deg, #fbfcfd, #eef3f8);
}

.cold-media::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, rgba(7, 16, 28, .42), transparent 28%), linear-gradient(0deg, rgba(7, 16, 28, .42), transparent 35%);
}

.cold-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .8s var(--ease);
}

.connected-card:hover .cold-media > img {
  transform: scale(1.025);
}

.cold-media-tag {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  color: var(--white);
  background: rgba(7, 16, 28, .72);
  font-size: .72rem;
  font-weight: 750;
}

.cold-media-tag svg {
  width: 15px;
  height: 15px;
  color: var(--blue-bright);
}

.product-legal {
  max-width: 920px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: .75rem;
  text-align: center;
}

.service-card.service-smart {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: var(--white);
  border-color: transparent;
  background: #07101c;
}

.service-card.service-winet {
  background: linear-gradient(145deg, #07101c, #12314b);
}

.service-card.service-cold {
  background: linear-gradient(145deg, #091826, #126aa8);
}

.service-smart::after {
  position: absolute;
  top: -90px;
  right: -90px;
  width: 220px;
  height: 220px;
  content: "";
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  box-shadow: inset 0 0 0 42px rgba(255, 255, 255, .025), inset 0 0 0 84px rgba(255, 255, 255, .02);
}

.service-smart .service-icon {
  position: relative;
  z-index: 1;
  color: var(--white);
  background: rgba(255, 255, 255, .11);
}

.service-smart h2 {
  position: relative;
  z-index: 1;
  margin-top: 42px;
}

.service-card.service-smart p {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, .68);
}

.service-card-link {
  position: relative;
  z-index: 1;
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  padding-top: 22px;
  color: var(--white);
  font-size: .82rem;
  font-weight: 760;
}

.service-card-link svg {
  width: 16px;
  height: 16px;
}

.service-card-link:hover {
  color: var(--blue-bright);
}

.brand-ribbon {
  overflow: hidden;
  padding: 32px 0 38px;
  border-block: 0;
  background: var(--white);
}

.brand-marquee {
  display: grid;
  width: 100%;
  gap: 15px;
  padding: 10px 0;
  transform: rotate(-1.3deg) scale(1.035);
}

.brand-row {
  display: flex;
  width: max-content;
  gap: 15px;
  will-change: transform;
}

.brand-row-left {
  animation: brand-scroll-left 40s linear infinite;
}

.brand-row-right {
  animation: brand-scroll-right 43s linear infinite;
}

.brand-marquee:hover .brand-row {
  animation-play-state: paused;
}

.brand-item {
  position: relative;
  display: flex;
  width: 220px;
  height: 108px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  padding: 22px 30px;
  border: 1px solid #dfe3e8;
  border-radius: 21px;
  background: #f6f7f8;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .88);
  transition: transform .28s var(--ease), background .28s ease, box-shadow .28s ease;
}

.brand-item img {
  width: 100%;
  height: 54px;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transition: transform .25s ease;
}

.brand-qualifier {
  position: absolute;
  top: 9px;
  right: 9px;
  display: inline-grid;
  min-width: 34px;
  min-height: 24px;
  place-items: center;
  padding: 3px 8px;
  border: 1px solid rgba(7, 16, 28, .12);
  border-radius: 999px;
  color: #fff;
  background: #07101c;
  box-shadow: 0 5px 14px rgba(7, 16, 28, .18);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .06em;
  line-height: 1;
}

.brand-item:hover {
  background: #f0f2f4;
  box-shadow: 0 14px 30px rgba(16, 28, 44, .1), inset 0 1px 0 rgba(255, 255, 255, .9);
  transform: translateY(-4px);
}

.brand-item:hover img {
  transform: scale(1.04);
}

.brand-fallback {
  display: none;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -.025em;
  text-align: center;
  text-transform: uppercase;
}

.brand-item.is-fallback .brand-fallback,
.logo-card.is-fallback .brand-fallback {
  display: block;
}

.brand-item.is-fallback img,
.logo-card.is-fallback img {
  display: none;
}

@keyframes brand-scroll-left {
  to { transform: translateX(-50%); }
}

@keyframes brand-scroll-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.location-teaser {
  display: grid;
  overflow: hidden;
  grid-template-columns: .88fr 1.12fr;
  border-radius: 34px;
  color: var(--white);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.location-copy {
  display: flex;
  min-height: 470px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 6vw, 72px);
}

.location-copy h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4.8vw, 4.6rem);
  letter-spacing: -.055em;
  line-height: 1;
}

.location-copy p {
  max-width: 450px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .68);
}

.location-art {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 20%, rgba(255, 107, 116, .68), transparent 23%),
    linear-gradient(135deg, #0a2742, #1788f7 58%, #07101c);
}

.location-art::before,
.location-art::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 50%;
}

.location-art::before {
  width: 440px;
  height: 440px;
  right: -90px;
  bottom: -80px;
  box-shadow: 0 0 0 80px rgba(255, 255, 255, .04), 0 0 0 160px rgba(255, 255, 255, .025);
}

.location-art::after {
  width: 170px;
  height: 170px;
  top: 80px;
  left: 110px;
}

.map-pin-art {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  border: 12px solid rgba(255, 255, 255, .25);
  border-radius: 50% 50% 50% 8px;
  color: var(--white);
  background: var(--red);
  box-shadow: 0 25px 55px rgba(6, 16, 28, .35);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.map-pin-art svg {
  width: 28px;
  height: 28px;
  transform: rotate(45deg);
}

.map-label-art {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 28px;
  max-width: 260px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 17px;
  background: rgba(7, 24, 38, .66);
  backdrop-filter: blur(12px);
}

.map-label-art strong,
.map-label-art small {
  display: block;
}

.map-label-art small {
  margin-top: 4px;
  color: rgba(255, 255, 255, .68);
}

/* Inner page heroes */
.page-hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  padding: 168px 0 90px;
}

.page-hero::before {
  position: absolute;
  width: min(52vw, 740px);
  height: min(52vw, 740px);
  content: "";
  border: 1px solid rgba(16, 28, 44, .08);
  border-radius: 50%;
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero .lead {
  max-width: 690px;
}

.page-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 42px;
}

.page-hero-meta span {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, .45);
  font-size: .76rem;
  font-weight: 700;
}

.services-hero {
  background:
    radial-gradient(circle at 86% 18%, rgba(239, 50, 73, .1), transparent 25%),
    linear-gradient(120deg, #f7f9fa 0 63%, #e9eef2 63%);
}

.services-hero::before {
  top: -130px;
  right: -100px;
  box-shadow: inset 0 0 0 110px rgba(239, 50, 73, .055), inset 0 0 0 220px rgba(239, 50, 73, .04);
}

.brands-hero {
  color: var(--white);
  background:
    radial-gradient(circle at 85% 10%, rgba(23, 136, 247, .38), transparent 28%),
    radial-gradient(circle at 10% 90%, rgba(239, 50, 73, .13), transparent 30%),
    linear-gradient(135deg, #07101c, #102a43);
}

.brands-hero::before {
  right: -80px;
  bottom: -210px;
  border-color: rgba(255, 255, 255, .09);
  box-shadow: inset 0 0 0 110px rgba(255, 255, 255, .025), inset 0 0 0 220px rgba(255, 255, 255, .02);
}

.brands-hero .page-hero-meta span,
.method-hero .page-hero-meta span {
  border-color: rgba(255, 255, 255, .17);
  color: rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .05);
}

.method-hero {
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(13, 27, 42, .97), rgba(15, 33, 51, .68)),
    url("hero-fire-poster.webp") center/cover;
}

.method-hero::before {
  right: -140px;
  bottom: -230px;
  border-color: rgba(255, 255, 255, .08);
}

.areas-hero {
  background:
    radial-gradient(circle at 80% 20%, rgba(23, 136, 247, .2), transparent 26%),
    linear-gradient(135deg, #eef4f7, #f7f9fa 58%);
}

.areas-hero::before {
  top: 40px;
  right: -140px;
  border-color: rgba(24, 102, 154, .15);
  box-shadow: inset 0 0 0 100px rgba(24, 102, 154, .03), inset 0 0 0 200px rgba(24, 102, 154, .025);
}

.contact-hero {
  color: var(--white);
  background:
    radial-gradient(circle at 82% 16%, rgba(239, 50, 73, .48), transparent 26%),
    linear-gradient(135deg, #07101c, #122b45);
}

.contact-hero::before {
  right: -140px;
  bottom: -220px;
  border-color: rgba(255, 255, 255, .08);
  box-shadow: inset 0 0 0 110px rgba(255, 255, 255, .025), inset 0 0 0 220px rgba(255, 255, 255, .02);
}

.contact-hero .page-hero-meta span {
  border-color: rgba(255, 255, 255, .32);
  color: #fff;
  background: rgba(255, 255, 255, .14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12);
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
}

.service-card {
  min-height: 330px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: var(--white);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .25s ease;
}

.service-card:hover {
  border-color: rgba(211, 51, 63, .28);
  box-shadow: var(--shadow-soft);
  transform: translateY(-6px);
}

.service-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 16px;
  color: var(--red);
  background: rgba(211, 51, 63, .09);
}

.service-icon svg {
  width: 25px;
  height: 25px;
}

.service-card h2,
.service-card h3 {
  margin: 66px 0 12px;
  font-size: 1.35rem;
  letter-spacing: -.035em;
  line-height: 1.15;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
}

.project-network {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: 17px;
  margin-top: 17px;
}

.preliminary-study,
.professional-collaboration {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  padding: clamp(34px, 5vw, 58px);
  border-radius: 30px;
}

.preliminary-study {
  isolation: isolate;
  color: var(--white);
  background:
    radial-gradient(circle at 86% 8%, rgba(255, 100, 115, .38), transparent 32%),
    radial-gradient(circle at 5% 100%, rgba(76, 171, 255, .26), transparent 35%),
    linear-gradient(145deg, #081524, #122d49 70%, #3b1c2b);
  box-shadow: 0 28px 66px rgba(7, 16, 28, .2);
}

.preliminary-study::after {
  position: absolute;
  z-index: -1;
  right: -120px;
  bottom: -190px;
  width: 420px;
  height: 420px;
  content: "";
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
  box-shadow: inset 0 0 0 90px rgba(255, 255, 255, .025), inset 0 0 0 180px rgba(255, 255, 255, .018);
}

.preliminary-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.preliminary-topline .eyebrow {
  margin-bottom: 0;
}

.free-label {
  display: inline-flex;
  min-height: 35px;
  align-items: center;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 999px;
  color: var(--white);
  background: rgba(239, 50, 73, .82);
  box-shadow: 0 10px 28px rgba(239, 50, 73, .24);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.project-network h2 {
  margin: 74px 0 18px;
  font-size: clamp(2.2rem, 4.2vw, 4.15rem);
  letter-spacing: -.055em;
  line-height: .98;
}

.preliminary-study h2 em {
  color: #ff7c87;
  font-style: normal;
}

.project-network article > p:not(.eyebrow) {
  max-width: 650px;
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
}

.preliminary-study > p {
  color: rgba(255, 255, 255, .72);
}

.preliminary-study .button {
  margin-top: 30px;
}

.professional-collaboration {
  border: 1px solid rgba(58, 137, 207, .16);
  background:
    radial-gradient(circle at 90% 4%, rgba(111, 184, 255, .18), transparent 34%),
    linear-gradient(145deg, #fff, #eef6fd);
  box-shadow: 0 24px 58px rgba(16, 28, 44, .08);
}

.professional-collaboration h2 {
  margin-top: 58px;
  color: var(--ink);
}

.professional-collaboration > p:not(.eyebrow) {
  color: var(--muted);
}

.professional-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.professional-list li {
  padding: 9px 12px;
  border: 1px solid rgba(45, 128, 200, .17);
  border-radius: 999px;
  color: #24496a;
  background: rgba(255, 255, 255, .7);
  font-size: .76rem;
  font-weight: 800;
}

.service-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.service-band-copy,
.service-band-visual {
  min-height: 500px;
  border-radius: 30px;
}

.service-band-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 6vw, 70px);
  color: var(--white);
  background: var(--ink);
}

.service-band-copy h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4.4vw, 4.3rem);
  letter-spacing: -.055em;
  line-height: 1;
}

.service-band-copy p {
  color: rgba(255, 255, 255, .7);
}

.service-band-visual {
  overflow: hidden;
}

.service-band-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.signature-card.signature-treatment img {
  object-position: center;
}

.water-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 10px;
  overflow: hidden;
  border: 1px solid rgba(23, 136, 247, .14);
  border-radius: 30px;
  background: var(--white);
  box-shadow: 0 24px 58px rgba(16, 28, 44, .08);
}

.water-showcase-alt {
  grid-template-columns: 1fr;
}

.water-showcase-copy {
  order: 1;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  grid-template-areas:
    "kicker kicker"
    "title intro"
    "title list"
    "actions list";
  column-gap: clamp(32px, 5vw, 72px);
  row-gap: 14px;
  align-items: start;
  min-height: 0;
  padding: clamp(32px, 4.5vw, 56px);
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 88% 10%, rgba(76, 171, 255, .18), transparent 34%),
    linear-gradient(145deg, #fff, #eef6fd);
  box-shadow: none;
}

.water-kicker {
  grid-area: kicker;
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  color: #24496a;
  background: rgba(23, 136, 247, .1);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.water-showcase-copy h3 {
  grid-area: title;
  align-self: start;
  margin: 12px 0 0;
  font-size: clamp(2.15rem, 4.2vw, 3.65rem);
  letter-spacing: -.05em;
  line-height: 1.02;
}

.water-showcase-copy > p {
  grid-area: intro;
  max-width: 680px;
  margin: 12px 0 0;
  color: var(--muted);
}

.water-list {
  grid-area: list;
  display: grid;
  gap: 10px;
  align-self: start;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.water-list li {
  position: relative;
  padding-left: 26px;
  color: #24496a;
  font-weight: 600;
}

.water-list li::before {
  position: absolute;
  left: 0;
  top: .45em;
  width: 10px;
  height: 10px;
  content: "";
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), #71bfff);
  box-shadow: 0 0 0 5px rgba(23, 136, 247, .1);
}

.water-showcase-copy .button-row {
  grid-area: actions;
  align-self: end;
  margin-top: 18px;
}

.water-showcase-media {
  position: relative;
  order: 2;
  min-height: 0;
  overflow: hidden;
  border-radius: 0;
  background: #07101c;
  box-shadow: none;
}

.water-showcase-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(7, 16, 28, .03), rgba(7, 16, 28, .24));
  pointer-events: none;
}

.water-showcase-media video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 848 / 480;
  object-fit: contain;
  background: #07101c;
}

.water-media-badge {
  position: absolute;
  z-index: 2;
  left: 22px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  color: var(--white);
  background: rgba(7, 16, 28, .42);
  backdrop-filter: blur(12px);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .03em;
}

.water-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.water-product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .25s ease;
}

.water-product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(23, 136, 247, .22);
  box-shadow: var(--shadow);
}

.water-product-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  background: #f7fafc;
}

.water-product-copy {
  padding: 24px 24px 26px;
}

.water-product-copy span {
  color: var(--blue);
  font-size: .75rem;
  font-weight: 850;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.water-product-copy h3 {
  margin: 10px 0 10px;
  font-size: 1.35rem;
  letter-spacing: -.03em;
  line-height: 1.12;
}

.water-product-copy p {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
}

/* Brands */
.brand-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.brand-feature {
  position: relative;
  isolation: isolate;
  min-height: 460px;
  overflow: hidden;
  padding: 34px;
  border-radius: 30px;
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 26px 65px rgba(7, 16, 28, .2);
}

.brand-feature::before,
.brand-feature::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.brand-feature::before {
  z-index: -1;
  width: 360px;
  height: 360px;
  top: -190px;
  right: -120px;
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 50%;
  box-shadow: 0 0 0 65px rgba(255, 255, 255, .035), 0 0 0 130px rgba(255, 255, 255, .025);
}

.brand-feature::after {
  z-index: -1;
  inset: 0;
  opacity: .16;
  background-image:
    linear-gradient(rgba(255, 255, 255, .16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .16) 1px, transparent 1px);
  background-size: 42px 42px;
  -webkit-mask-image: linear-gradient(135deg, transparent 25%, #000 100%);
  mask-image: linear-gradient(135deg, transparent 25%, #000 100%);
}

.brand-feature-red {
  background:
    radial-gradient(circle at 12% 110%, rgba(255, 142, 82, .42), transparent 38%),
    linear-gradient(145deg, #c71931, #ef3249);
}

.brand-feature-blue {
  background:
    radial-gradient(circle at 12% 110%, rgba(79, 193, 255, .38), transparent 38%),
    linear-gradient(145deg, #0865c2, #1788f7);
}

.brand-feature-stage {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 388px;
  flex-direction: column;
  padding-bottom: 74px;
  transition: opacity .2s ease, transform .3s var(--ease);
}

.brand-feature.is-switching .brand-feature-stage {
  opacity: 0;
  transform: translateY(13px);
}

.brand-feature-category {
  width: fit-content;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  color: rgba(255, 255, 255, .82);
  background: rgba(255, 255, 255, .1);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .045em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.feature-mark-wrap {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  width: 142px;
  height: 82px;
  place-items: center;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 18px;
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 16px 38px rgba(7, 16, 28, .16);
}

.feature-mark-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.feature-mark-wrap .brand-qualifier {
  top: -8px;
  right: -8px;
  border-color: rgba(255, 255, 255, .72);
  background: #ef3249;
}

.logo-darken {
  filter: brightness(0) saturate(100%);
}

.logo-thermital-red,
.brand-item img.logo-thermital-red,
.logo-card img.logo-thermital-red,
.feature-mark-wrap img.logo-thermital-red,
.logo-palazzetti-red,
.brand-item img.logo-palazzetti-red,
.logo-card img.logo-palazzetti-red,
.feature-mark-wrap img.logo-palazzetti-red {
  filter: brightness(0) saturate(100%) invert(27%) sepia(91%) saturate(2945%) hue-rotate(337deg) brightness(101%) contrast(88%);
}

.brand-feature h3 {
  margin: auto 0 12px;
  font-size: clamp(2.3rem, 4.4vw, 4.25rem);
  letter-spacing: -.055em;
  line-height: 1;
}

.brand-feature p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, .8);
}

.brand-feature p strong {
  color: var(--white);
  font-weight: 800;
}

.brand-feature-footer {
  position: absolute;
  z-index: 3;
  right: 34px;
  bottom: 28px;
  left: 34px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-feature-count {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, .72);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.brand-feature-progress {
  height: 2px;
  flex: 1;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, .24);
}

.brand-feature-progress i {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: left;
}

.brand-feature.is-cycling .brand-feature-progress i {
  animation: feature-progress var(--feature-cycle, 4400ms) linear forwards;
}

.brand-feature.is-paused .brand-feature-progress i {
  animation-play-state: paused;
}

.brand-feature-controls {
  display: flex;
  flex: 0 0 auto;
  gap: 6px;
}

.brand-feature-controls button {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .23);
  border-radius: 10px;
  color: var(--white);
  background: rgba(255, 255, 255, .09);
  cursor: pointer;
  font-size: .9rem;
  font-weight: 800;
  transition: background .2s ease, transform .2s ease;
}

.brand-feature-controls button:hover {
  background: rgba(255, 255, 255, .19);
  transform: translateY(-2px);
}

@keyframes feature-progress {
  to { transform: scaleX(1); }
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.logo-card {
  position: relative;
  display: flex;
  min-height: 150px;
  align-items: center;
  justify-content: center;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .2s ease;
}

.logo-card:hover {
  border-color: rgba(24, 102, 154, .3);
  box-shadow: var(--shadow-soft);
  transform: translateY(-5px);
}

.logo-card img {
  width: 100%;
  height: 72px;
  object-fit: contain;
}

.logos-note {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: .78rem;
  text-align: center;
}

/* Method */
.process-list {
  counter-reset: method;
}

.process-step {
  display: grid;
  grid-template-columns: 150px 1fr 280px;
  gap: 34px;
  align-items: start;
  padding: 34px 0;
  border-top: 1px solid var(--line);
  counter-increment: method;
}

.process-step:last-child {
  border-bottom: 1px solid var(--line);
}

.process-step::before {
  content: "0" counter(method);
  color: var(--red);
  font-size: .84rem;
  font-weight: 800;
}

.process-step h2,
.process-step h3 {
  margin: 0;
  font-size: clamp(1.65rem, 3.3vw, 3rem);
  letter-spacing: -.045em;
  line-height: 1.08;
}

.process-step p {
  margin: 4px 0 0;
  color: var(--muted);
}

.prep-panel {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  overflow: hidden;
  border-radius: 32px;
  color: var(--white);
  background: var(--ink);
}

.prep-heading {
  padding: clamp(36px, 6vw, 74px);
  background: var(--red);
}

.prep-heading h2 {
  margin: 0;
  font-size: clamp(2.3rem, 4.6vw, 4.7rem);
  letter-spacing: -.055em;
  line-height: .98;
}

.prep-list {
  display: grid;
  align-content: center;
  gap: 0;
  padding: clamp(30px, 5vw, 62px);
}

.prep-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .78);
}

.prep-item:last-child {
  border: 0;
}

.prep-item span {
  display: grid;
  width: 31px;
  height: 31px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, .1);
  font-size: .74rem;
  font-weight: 800;
}

/* Areas / Map */
.map-shell {
  position: relative;
  overflow: hidden;
  border: 10px solid var(--white);
  border-radius: 32px;
  background: var(--paper-2);
  box-shadow: var(--shadow);
}

.map-shell iframe {
  display: block;
  width: 100%;
  height: min(68vh, 650px);
  min-height: 470px;
  border: 0;
  filter: saturate(.82) contrast(1.02);
}

.map-card {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  width: min(340px, calc(100% - 48px));
  padding: 23px;
  border: 1px solid rgba(16, 28, 44, .1);
  border-radius: 21px;
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(15px);
}

.map-card strong {
  display: block;
  margin-bottom: 5px;
  font-size: 1.05rem;
}

.map-card p {
  margin: 0 0 17px;
  color: var(--muted);
  font-size: .84rem;
}

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

.area-card {
  min-height: 340px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
}

.area-card .area-number {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-weight: 800;
}

.area-card h2,
.area-card h3 {
  margin: 92px 0 12px;
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  letter-spacing: -.045em;
  line-height: 1;
}

.area-card p {
  margin: 0;
  color: var(--muted);
}

/* Contacts */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.contact-card {
  display: flex;
  min-height: 290px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: var(--white);
}

.contact-card-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 15px;
  color: var(--red);
  background: rgba(211, 51, 63, .09);
}

.contact-card-icon svg {
  width: 24px;
  height: 24px;
}

.contact-card h2,
.contact-card h3 {
  margin: 55px 0 8px;
  font-size: 1.35rem;
  letter-spacing: -.035em;
}

.contact-card p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: .87rem;
}

.contact-card .text-link {
  margin-top: auto;
  overflow-wrap: anywhere;
}

.request-panel {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  overflow: hidden;
  border-radius: 32px;
  color: var(--white);
  background: var(--ink);
}

.request-copy {
  padding: clamp(36px, 6vw, 70px);
  background:
    radial-gradient(circle at 95% 5%, rgba(255, 255, 255, .12), transparent 25%),
    var(--red);
}

.request-copy h2 {
  margin: 0;
  font-size: clamp(2.3rem, 4.5vw, 4.6rem);
  letter-spacing: -.055em;
  line-height: 1;
}

.request-copy p {
  color: rgba(255, 255, 255, .76);
}

.request-form {
  display: grid;
  gap: 16px;
  padding: clamp(32px, 5vw, 62px);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: rgba(255, 255, 255, .72);
  font-size: .76rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 13px;
  outline: none;
  color: var(--white);
  background: rgba(255, 255, 255, .06);
  transition: border-color .2s ease, background .2s ease;
}

.field input,
.field select {
  min-height: 49px;
  padding: 11px 13px;
}

.field textarea {
  min-height: 112px;
  padding: 13px;
  resize: vertical;
}

.field select option {
  color: var(--ink);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(255, 255, 255, .5);
  background: rgba(255, 255, 255, .09);
}

.form-note {
  margin: 0;
  color: rgba(255, 255, 255, .52);
  font-size: .7rem;
}

/* Simple / privacy / 404 */
.simple-hero {
  padding: 180px 0 80px;
}

.simple-hero h1 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.5rem);
  letter-spacing: -.055em;
  line-height: 1;
}

.prose {
  max-width: 840px;
}

.prose h2 {
  margin: 42px 0 12px;
  font-size: 1.45rem;
  letter-spacing: -.03em;
}

.prose p,
.prose li {
  color: var(--muted);
}

.not-found {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 40px 0;
  text-align: center;
}

.not-found-mark {
  color: var(--red);
  font-size: clamp(7rem, 24vw, 17rem);
  font-weight: 800;
  letter-spacing: -.09em;
  line-height: .8;
}

.not-found h1 {
  margin: 30px 0 0;
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: -.045em;
}

/* CTA and footer */
.global-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(68px, 9vw, 120px) 0;
  color: var(--white);
  background: var(--red);
}

.global-cta::after {
  position: absolute;
  width: 520px;
  height: 520px;
  right: -160px;
  bottom: -340px;
  content: "";
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  box-shadow: 0 0 0 85px rgba(255, 255, 255, .035), 0 0 0 170px rgba(255, 255, 255, .025);
}

.global-cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
}

.global-cta h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.5rem, 6.2vw, 6rem);
  letter-spacing: -.06em;
  line-height: .97;
}

.global-cta .button-secondary {
  flex: 0 0 auto;
  border-color: rgba(255, 255, 255, .32);
  color: var(--white);
  background: rgba(255, 255, 255, .1);
}

.site-footer {
  padding: 66px 0 30px;
  color: rgba(255, 255, 255, .72);
  background: #091522;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr 1fr;
  gap: 42px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--white);
}

.footer-brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.footer-brand strong,
.footer-brand small {
  display: block;
}

.footer-brand small {
  color: rgba(255, 255, 255, .52);
  font-size: .68rem;
}

.footer-intro {
  max-width: 330px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, .52);
  font-size: .8rem;
}

.footer-column h3 {
  margin: 0 0 15px;
  color: var(--white);
  font-size: .76rem;
}

.footer-column a,
.footer-column span {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, .56);
  font-size: .76rem;
  transition: color .2s ease;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 55px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .42);
  font-size: .68rem;
}

/* Floating assistant */
.assistant-launcher {
  position: fixed;
  z-index: 150;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  color: var(--white);
  background: var(--red);
  box-shadow: 0 15px 38px rgba(168, 31, 45, .4);
  transition: transform .3s var(--ease), box-shadow .3s ease;
}

.assistant-launcher::before {
  position: absolute;
  inset: -7px;
  content: "";
  border: 1px solid rgba(211, 51, 63, .38);
  border-radius: inherit;
  animation: assistant-pulse 2.5s ease-out infinite;
}

.assistant-launcher:hover {
  box-shadow: 0 19px 42px rgba(168, 31, 45, .47);
  transform: translateY(-4px) scale(1.03);
}

.assistant-launcher svg {
  width: 29px;
  height: 29px;
}

.assistant-label {
  position: absolute;
  right: 74px;
  width: max-content;
  padding: 8px 11px;
  border-radius: 10px;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  font-size: .72rem;
  font-weight: 800;
}

@keyframes assistant-pulse {
  0% { opacity: .8; transform: scale(.85); }
  75%, 100% { opacity: 0; transform: scale(1.3); }
}

.assistant-backdrop {
  position: fixed;
  z-index: 190;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  background: rgba(5, 13, 22, .48);
  backdrop-filter: blur(4px);
  transition: opacity .3s ease, visibility .3s ease;
}

.assistant-panel {
  position: fixed;
  z-index: 200;
  right: 18px;
  bottom: 18px;
  display: flex;
  width: min(430px, calc(100vw - 36px));
  height: min(720px, calc(100vh - 36px));
  overflow: hidden;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 27px;
  visibility: hidden;
  opacity: 0;
  background: var(--white);
  box-shadow: 0 35px 90px rgba(5, 13, 22, .4);
  transform: translateY(24px) scale(.96);
  transform-origin: right bottom;
  transition: transform .38s var(--ease), opacity .28s ease, visibility .38s ease;
}

.assistant-open .assistant-backdrop,
.assistant-open .assistant-panel {
  visibility: visible;
  opacity: 1;
}

.assistant-open .assistant-panel {
  transform: translateY(0) scale(1);
}

.assistant-head {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 14px 16px;
  color: var(--white);
  background: var(--ink);
}

.assistant-id {
  display: flex;
  align-items: center;
  gap: 11px;
}

.assistant-avatar {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  color: var(--white);
  background: var(--red);
}

.assistant-avatar svg {
  width: 22px;
  height: 22px;
}

.assistant-id strong,
.assistant-id small {
  display: block;
}

.assistant-id strong {
  font-size: .84rem;
}

.assistant-id small {
  color: rgba(255, 255, 255, .58);
  font-size: .65rem;
}

.assistant-close {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 12px;
  cursor: pointer;
  color: var(--white);
  background: rgba(255, 255, 255, .06);
}

.assistant-close svg {
  width: 20px;
  height: 20px;
}

.assistant-body {
  position: relative;
  display: grid;
  min-height: 0;
  flex: 1;
  place-items: center;
  background: #f4f5f6;
}

.assistant-frame {
  display: none;
  width: 100%;
  height: 100%;
  border: 0;
  background: var(--white);
}

.assistant-frame.is-ready {
  display: block;
}

.assistant-empty {
  max-width: 310px;
  padding: 34px 22px;
  text-align: center;
}

.assistant-empty svg {
  width: 48px;
  height: 48px;
  margin: 0 auto 17px;
  color: var(--red);
}

.assistant-empty h2 {
  margin: 0 0 9px;
  font-size: 1.3rem;
  letter-spacing: -.035em;
}

.assistant-empty p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: .82rem;
}

.assistant-foot {
  display: none;
  padding: 9px 15px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: var(--white);
  font-size: .66rem;
  text-align: center;
}

.assistant-foot.is-visible {
  display: block;
}

/* Reveal / Apple-like motion */
.reveal {
  opacity: 0;
  filter: blur(5px);
  transform: translate3d(0, 18px, 0) scale(.993);
  transform-origin: 50% 60%;
  transition:
    opacity .55s var(--ease) var(--reveal-delay, 0ms),
    filter .6s var(--ease) var(--reveal-delay, 0ms),
    transform .6s var(--ease) var(--reveal-delay, 0ms);
  will-change: opacity, filter, transform;
}

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

/* Header enters softly on every page. */
.site-header {
  animation: apple-header-in .45s var(--ease) both;
}

@keyframes apple-header-in {
  from {
    opacity: 0;
    filter: blur(4px);
    transform: translate3d(0, -8px, 0);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0);
  }
}

/* Home hero: content builds progressively instead of appearing all at once. */
body.motion-ready .home-hero .hero-kicker,
body.motion-ready .home-hero .display,
body.motion-ready .home-hero .lead,
body.motion-ready .home-hero .button-row,
body.motion-ready .home-hero .hero-proof,
body.motion-ready .home-hero .hero-side-note {
  opacity: 0;
  animation: apple-hero-in .6s var(--ease) forwards;
}

body.motion-ready .home-hero .hero-kicker { animation-delay: .03s; }
body.motion-ready .home-hero .display { animation-delay: .08s; }
body.motion-ready .home-hero .lead { animation-delay: .13s; }
body.motion-ready .home-hero .button-row { animation-delay: .18s; }
body.motion-ready .home-hero .hero-proof { animation-delay: .22s; }
body.motion-ready .home-hero .hero-side-note { animation-delay: .26s; }

@keyframes apple-hero-in {
  from {
    opacity: 0;
    filter: blur(6px);
    transform: translate3d(0, 14px, 0) scale(.993);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) scale(1);
  }
}

/* Very subtle scroll depth on large visual elements. */
.apple-parallax {
  --parallax-y: 0px;
  transform: translate3d(0, var(--parallax-y), 0) scale(1.015);
  will-change: transform;
}

.signature-card:hover img.apple-parallax {
  transform: translate3d(0, var(--parallax-y), 0) scale(1.025);
}

.water-product-card img.apple-parallax,
.service-band-visual img.apple-parallax,
.connected-media img.apple-parallax {
  transform: translate3d(0, var(--parallax-y), 0) scale(1.015);
}

/* Internal pages enter with the same soft, progressive rhythm. */
body.motion-ready .page-hero-content > *,
body.motion-ready .simple-hero .container > * {
  opacity: 0;
  animation: apple-hero-in .55s var(--ease) forwards;
}

body.motion-ready .page-hero-content > *:nth-child(1),
body.motion-ready .simple-hero .container > *:nth-child(1) { animation-delay: .03s; }
body.motion-ready .page-hero-content > *:nth-child(2),
body.motion-ready .simple-hero .container > *:nth-child(2) { animation-delay: .08s; }
body.motion-ready .page-hero-content > *:nth-child(3),
body.motion-ready .simple-hero .container > *:nth-child(3) { animation-delay: .13s; }
body.motion-ready .page-hero-content > *:nth-child(4),
body.motion-ready .simple-hero .container > *:nth-child(4) { animation-delay: .18s; }
body.motion-ready .page-hero-content > *:nth-child(n+5),
body.motion-ready .simple-hero .container > *:nth-child(n+5) { animation-delay: .22s; }

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

  .reveal {
    opacity: 1;
    filter: none;
    transform: none;
  }

  .site-header,
  body.motion-ready .home-hero .hero-kicker,
  body.motion-ready .home-hero .display,
  body.motion-ready .home-hero .lead,
  body.motion-ready .home-hero .button-row,
  body.motion-ready .home-hero .hero-proof,
  body.motion-ready .home-hero .hero-side-note,
  body.motion-ready .page-hero-content > *,
  body.motion-ready .simple-hero .container > * {
    opacity: 1;
    filter: none;
    animation: none !important;
    transform: none;
  }

  .apple-parallax,
  .signature-card:hover img.apple-parallax,
  .water-product-card img.apple-parallax,
  .service-band-visual img.apple-parallax,
  .connected-media img.apple-parallax {
    transform: none !important;
  }
}

@media (max-width: 1050px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(420px, 100%);
    height: 100dvh;
    padding: 100px 28px 36px;
    flex-direction: column;
    align-items: stretch;
    gap: 5px;
    visibility: hidden;
    opacity: 0;
    background: var(--paper);
    box-shadow: -20px 0 60px rgba(16, 28, 44, .16);
    transform: translateX(100%);
    transition: transform .35s var(--ease), opacity .25s ease, visibility .35s ease;
  }

  .main-nav a {
    padding: 15px 13px;
    color: var(--ink);
    font-size: 1rem;
  }

  body.page-home.menu-open .site-header:not(.is-scrolled) .main-nav a {
    color: var(--ink);
  }

  body.page-home.menu-open .site-header:not(.is-scrolled) .main-nav a:hover,
  body.page-home.menu-open .site-header:not(.is-scrolled) .main-nav a[aria-current="page"] {
    background: rgba(16, 28, 44, .07);
  }

  .menu-open .main-nav {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: block;
  }

  .header-cta {
    display: none;
  }

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

  .connected-card {
    min-height: 440px;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  }

  .connected-copy {
    padding: 38px;
  }

  .connected-media {
    min-height: 440px;
  }

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

  .process-step {
    grid-template-columns: 90px 1fr;
  }

  .process-step p {
    grid-column: 2;
  }

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

  .footer-grid > :first-child {
    grid-column: 1 / -1;
  }
}

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

  .reveal {
    filter: blur(3px);
    transform: translate3d(0, 12px, 0) scale(.996);
    transition-duration: .45s;
  }

  .apple-parallax,
  .signature-card:hover img.apple-parallax,
  .water-product-card img.apple-parallax,
  .service-band-visual img.apple-parallax,
  .connected-media img.apple-parallax {
    transform: none;
  }

  .section-head,
  .global-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-hero,
  .hero-content {
    min-height: 720px;
  }

  .hero-content {
    padding-top: 125px;
  }

  .home-hero::after {
    background: linear-gradient(90deg, rgba(7, 17, 28, .94), rgba(7, 17, 28, .63)), linear-gradient(0deg, rgba(7, 17, 28, .7), transparent);
  }

  .hero-side-note {
    display: none;
  }

  .gateway-card,
  .gateway-card:nth-child(n) {
    min-height: 285px;
    grid-column: 1 / -1;
  }

  .gateway-card h3 {
    margin-top: 70px;
  }

  .signature-grid,
  .connected-card,
  .location-teaser,
  .service-band,
  .brand-feature-grid,
  .prep-panel,
  .area-grid,
  .request-panel {
    grid-template-columns: 1fr;
  }

  .signature-card {
    min-height: 460px;
  }

  .connected-card {
    min-height: 0;
    grid-template-columns: 1fr;
    border-radius: 27px;
  }

  .connected-copy {
    padding: 34px 28px 32px;
  }

  .connected-brand {
    margin-bottom: 22px;
  }

  .connected-copy h3 {
    font-size: clamp(2.2rem, 10vw, 3.15rem);
  }

  .connected-media {
    min-height: 320px;
  }

  .winet-lifestyle {
    object-position: 16% center;
  }

  .winet-kit-card {
    top: 22px;
    right: 18px;
    bottom: auto;
    width: min(46%, 198px);
  }

  .brand-ribbon {
    padding: 24px 0 30px;
  }

  .brand-marquee {
    gap: 11px;
    transform: rotate(-1deg) scale(1.025);
  }

  .brand-row {
    gap: 11px;
  }

  .brand-item {
    width: 180px;
    height: 88px;
    padding: 18px 23px;
    border-radius: 18px;
  }

  .brand-item img {
    height: 46px;
  }

  .location-copy,
  .location-art {
    min-height: 400px;
  }

  .page-hero {
    min-height: 610px;
    padding-top: 140px;
  }

  .services-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .project-network {
    grid-template-columns: 1fr;
  }

  .preliminary-study,
  .professional-collaboration {
    min-height: 0;
    padding: 34px 28px;
  }

  .project-network h2 {
    margin-top: 50px;
  }

  .professional-collaboration h2 {
    margin-top: 44px;
  }

  .service-card,
  .contact-card {
    min-height: 275px;
  }

  .service-card h2,
  .service-card h3,
  .contact-card h2,
  .contact-card h3 {
    margin-top: 45px;
  }

  .service-band-copy,
  .service-band-visual {
    min-height: 430px;
  }

  .water-showcase,
  .water-showcase-alt,
  .water-product-grid,
  .water-product-grid-detail {
    grid-template-columns: 1fr;
  }

  .water-showcase-copy {
    grid-template-columns: 1fr;
    grid-template-areas:
      "kicker"
      "title"
      "intro"
      "list"
      "actions";
    padding: 30px 24px 32px;
  }

  .water-showcase-copy h3,
  .water-showcase-copy > p {
    margin-top: 8px;
  }

  .water-showcase-copy .button-row {
    margin-top: 12px;
  }

  .water-showcase-media {
    min-height: 0;
  }

  .water-showcase-media video {
    width: 100%;
    height: auto;
    aspect-ratio: 848 / 480;
    object-fit: contain;
  }

  .water-product-card img {
    height: 220px;
  }

  .brand-feature {
    min-height: 440px;
    padding: 27px;
  }

  .brand-feature-stage {
    min-height: 386px;
    padding-bottom: 78px;
  }

  .feature-mark-wrap {
    width: 122px;
    height: 72px;
    padding: 13px 15px;
  }

  .brand-feature h3 {
    font-size: clamp(2.45rem, 12vw, 3.65rem);
  }

  .brand-feature-footer {
    right: 27px;
    bottom: 23px;
    left: 27px;
  }

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

  .logo-card {
    min-height: 125px;
  }

  .process-step {
    grid-template-columns: 55px 1fr;
    gap: 18px;
  }

  .map-shell {
    border-width: 6px;
  }

  .map-shell iframe {
    min-height: 620px;
  }

  .map-card {
    right: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
  }

  .field-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-grid > :first-child {
    grid-column: 1 / -1;
  }

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

  .assistant-label {
    display: none;
  }
}

@media (max-width: 480px) {
  .brand-copy small {
    display: block;
    margin-top: 3px;
    font-size: .58rem;
    line-height: 1.15;
  }

  .header-call {
    display: none;
  }

  .display,
  .page-title {
    font-size: clamp(2.75rem, 15vw, 4.25rem);
  }

  .section-title {
    font-size: clamp(2.25rem, 12vw, 3.3rem);
  }

  .button {
    width: 100%;
  }

  .hero-proof {
    align-items: flex-start;
    flex-direction: column;
  }

  .logo-grid {
    grid-template-columns: 1fr 1fr;
    gap: 9px;
  }

  .brand-feature-category {
    max-width: 128px;
    font-size: .62rem;
    line-height: 1.25;
  }

  .connected-copy {
    padding: 34px 22px 30px;
  }

  .connected-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .connected-media {
    min-height: 285px;
  }

  .winet-media-tag {
    top: 14px;
    left: 14px;
  }

  .winet-kit-card {
    right: 12px;
    top: 16px;
    bottom: auto;
    width: min(46%, 158px);
    padding: 6px;
    border-radius: 17px;
  }

  .winet-kit-card span {
    padding: 3px 4px 6px;
    font-size: .64rem;
  }

  .winet-kit-card img {
    border-radius: 11px;
  }

  .cold-media-tag {
    right: 14px;
    bottom: 14px;
  }

  .brand-feature-progress {
    display: none;
  }

  .brand-feature-footer {
    justify-content: space-between;
  }

  .logo-card {
    min-height: 110px;
    padding: 18px;
  }

  .logo-card img {
    height: 58px;
  }

  .process-step {
    grid-template-columns: 1fr;
  }

  .process-step p {
    grid-column: 1;
  }

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

  .assistant-launcher {
    right: 15px;
    bottom: 15px;
    width: 58px;
    height: 58px;
  }

  .assistant-panel {
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100dvh;
    border-radius: 0;
  }
}


/* Contact recapiti V10 */
.contact-phone-links {
  display: grid;
  gap: 8px;
  margin-top: auto;
}
.contact-phone-links .text-link { margin-top: 0; }
.contact-call-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}
@media (max-width: 760px) {
  .contact-call-actions {
    width: 100%;
    justify-content: flex-start;
  }
}


/* V11 · trattamento acque e header */
.water-showcase.water-showcase-text-only,
.water-showcase-alt.water-showcase-text-only {
  grid-template-columns: 1fr;
}

.water-showcase-text-only .water-showcase-copy {
  min-height: 0;
  width: 100%;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  grid-template-areas:
    "kicker kicker"
    "title list"
    "intro list"
    "actions list";
}

.water-product-grid,
.water-product-grid-detail {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.water-product-card img {
  height: 215px;
  object-position: center;
}

@media (max-width: 1050px) {
  .water-product-grid,
  .water-product-grid-detail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .water-showcase-text-only .water-showcase-copy {
    grid-template-columns: 1fr;
    grid-template-areas:
      "kicker"
      "title"
      "intro"
      "list"
      "actions";
  }

  .water-product-grid,
  .water-product-grid-detail {
    grid-template-columns: 1fr;
  }

  .water-product-card img {
    height: 235px;
  }
}

/* WiNet tall phone-like frame refinement */
@media (max-width: 1050px) {
  .winet-kit-card { top: 22px; width: min(39%, 178px); }
  .winet-kit-card img { height: 360px; }
}
@media (max-width: 480px) {
  .winet-kit-card { top: 14px; width: min(40%, 148px); }
  .winet-kit-card img { height: 318px; }
}
