:root {
  --paper: #fafaf8;
  --white: #fff;
  --ink: #171717;
  --graphite: #242424;
  --black: #0f0f10;
  --orange: #ff6a00;
  --orange-dark: #e95e00;
  --muted: #656565;
  --line: #e7e7e2;
  --soft: #f1f1ed;
  --shadow: 0 22px 70px rgb(18 18 18 / 13%);
  --container: 1320px;
}

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

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow-x: hidden;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

::selection {
  background: rgb(255 106 0 / 22%);
}

:focus-visible {
  outline: 3px solid rgb(255 106 0 / 40%);
  outline-offset: 4px;
}

.skip {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  transform: translateY(-160%);
  border-radius: 6px;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
}

.skip:focus {
  transform: none;
}

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

.section {
  padding: 110px 0;
}

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

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

.section.dark {
  background: var(--black);
  color: #fff;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 17px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 38px;
  height: 2px;
  background: currentColor;
  content: "";
}

.title {
  margin: 0;
  font-size: clamp(32px, 3.2vw, 50px);
  font-weight: 800;
  letter-spacing: -0.052em;
  line-height: 1.02;
}

.muted {
  color: var(--muted);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.42fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 54px;
}

.section-head > p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.dark .section-head > p {
  color: rgb(255 255 255 / 58%);
}

.btns {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.btn {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border: 1px solid transparent;
  border-radius: 7px;
  padding: 13px 23px;
  font-size: 14px;
  font-weight: 800;
  transition: 0.18s ease;
}

.btn::after {
  font-size: 19px;
  line-height: 1;
  content: "→";
  transition: transform 0.18s ease;
}

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

.btn:hover::after {
  transform: translateX(4px);
}

.btn.primary {
  background: var(--orange);
  color: #fff;
}

.btn.primary:hover {
  background: var(--orange-dark);
  box-shadow: 0 14px 30px rgb(233 94 0 / 24%);
}

.btn.outline {
  border-color: rgb(23 23 23 / 55%);
}

.btn.outline:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.btn.light {
  background: #fff;
  color: var(--ink);
}

.icon {
  display: inline-flex;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
}

.icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
}

/* Header */
.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  height: 104px;
  border-bottom: 1px solid transparent;
  background: rgb(250 250 248 / 94%);
  backdrop-filter: blur(16px);
  transition: 0.22s ease;
}

.site-header.scrolled {
  height: 82px;
  border-color: var(--line);
  background: rgb(255 255 255 / 96%);
  box-shadow: 0 10px 30px rgb(18 18 18 / 5%);
}

.header-inner {
  display: grid;
  height: 100%;
  grid-template-columns: 295px 1fr auto;
  align-items: center;
  gap: 34px;
}

.brand {
  display: flex;
  width: 272px;
  height: 72px;
  align-items: center;
  overflow: hidden;
}

.brand img {
  width: 100%;
  height: auto;
  max-height: 72px;
  object-fit: contain;
  object-position: left center;
}

.nav {
  justify-self: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-link,
.nav-trigger {
  position: relative;
  display: inline-flex;
  min-height: 43px;
  align-items: center;
  gap: 7px;
  border: 0;
  background: transparent;
  font-size: 15px;
  font-weight: 700;
}

.nav-link::after,
.nav-trigger::after {
  position: absolute;
  right: 50%;
  bottom: 2px;
  left: 50%;
  height: 2px;
  background: var(--orange);
  content: "";
  transition: 0.18s ease;
}

.nav-link:hover::after,
.nav-link.active::after,
.nav-trigger:hover::after,
.nav-trigger.active::after {
  right: 0;
  left: 0;
}

.nav-trigger .caret {
  width: 13px;
  height: 13px;
  transition: transform 0.18s ease;
}

.nav-item:hover .caret,
.nav-item.open .caret {
  transform: rotate(180deg);
}

.mega {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  width: min(820px, calc(100vw - 70px));
  padding: 14px;
  transform: translate(-50%, 12px);
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: 0.18s ease;
}

.mega::before {
  position: absolute;
  top: -23px;
  left: 0;
  width: 100%;
  height: 24px;
  content: "";
}

.nav-item:hover .mega,
.nav-item:focus-within .mega,
.nav-item.open .mega {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}

.mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.mega-link {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 13px;
  border-radius: 9px;
  padding: 12px;
  transition: 0.18s ease;
}

.mega-link:hover,
.mega-link.active {
  transform: translateX(3px);
  background: var(--soft);
}

.mega-link .icon {
  width: 42px;
  height: 42px;
  border: 1px solid rgb(255 106 0 / 22%);
  border-radius: 8px;
  background: rgb(255 106 0 / 7%);
  color: var(--orange);
  padding: 10px;
}

.mega-link strong,
.mega-link small {
  display: block;
}

.mega-link strong {
  font-size: 13px;
}

.mega-link small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  content: "";
  transition: 0.18s ease;
}

.menu-toggle.active::before {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span {
  opacity: 0;
}

.menu-toggle.active::after {
  transform: translateY(-7px) rotate(-45deg);
}

/* Heroes */
.hero,
.inner-hero {
  border-bottom: 1px solid var(--line);
}

.hero-grid,
.inner-grid {
  display: grid;
  min-height: 560px;
  grid-template-columns: minmax(0, 1fr) minmax(500px, 1.08fr);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  max-width: 680px;
  flex-direction: column;
  justify-content: center;
  padding: 74px 60px 78px 0;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(46px, 3.9vw, 64px);
  font-weight: 800;
  letter-spacing: -0.058em;
  line-height: 1;
}

.hero-copy > p {
  max-width: 585px;
  margin: 28px 0 38px;
  color: var(--muted);
  font-size: 18px;
}

.crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.crumb a:hover {
  color: var(--orange);
}

.hero-visual {
  position: relative;
  min-height: 560px;
  margin-right: calc((100vw - min(calc(100vw - 120px), var(--container))) / -2);
  overflow: hidden;
  background: var(--black);
  border-top-left-radius: 28px;
  border-bottom-left-radius: 210px;
  box-shadow: 0 24px 70px rgb(18 18 18 / 14%);
  -webkit-clip-path: none;
  clip-path: none;
}

.mosaic {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
  background: #fff;
}

.mosaic a,
.mosaic figure {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: var(--graphite);
}

.mosaic > :first-child {
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 0;
  width: 61%;
  clip-path: polygon(0 0, 100% 0, 92% 60%, 69% 100%, 0 100%);
}

.mosaic > :nth-child(2) {
  z-index: 2;
  top: 0;
  right: 0;
  width: 44%;
  height: 60%;
  clip-path: polygon(11.5% 0, 100% 0, 100% 100%, 0 100%);
}

.mosaic > :nth-child(3) {
  z-index: 3;
  bottom: 0;
  left: 42%;
  width: 42%;
  height: 40%;
  clip-path: polygon(33.333% 0, 100% 0, 80.952% 100%, 0 100%);
}

.mosaic > :nth-child(4) {
  z-index: 4;
  right: 0;
  bottom: 0;
  width: 24%;
  height: 40%;
  clip-path: polygon(33.333% 0, 100% 0, 100% 100%, 0 100%);
}

.mosaic img,
.hero-photo {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.mosaic img {
  min-height: 0;
}

.mosaic span {
  display: none;
}

.mosaic-lines {
  position: absolute;
  z-index: 20;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.mosaic-lines path {
  fill: none;
  stroke: #fff;
  stroke-linecap: square;
  stroke-linejoin: round;
  stroke-width: 4px;
  vector-effect: non-scaling-stroke;
}

.ribbon {
  display: none;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
}

.hero-tags li {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  padding: 7px 11px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.rail-wrap {
  border-top: 1px solid var(--line);
}

.rail {
  display: grid;
  min-height: 88px;
  grid-template-columns: repeat(4, minmax(230px, 1fr));
  overflow-x: auto;
}

.rail a {
  display: flex;
  min-width: 240px;
  align-items: center;
  gap: 14px;
  border-right: 1px solid var(--line);
  padding: 20px 28px;
  font-size: 14px;
  font-weight: 700;
  transition: 0.18s ease;
}

.rail a:first-child {
  border-left: 1px solid var(--line);
}

.rail a:hover {
  background: #fff;
  color: var(--orange);
}

.rail .icon {
  color: var(--orange);
}

/* Content */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 28px;
  row-gap: 36px;
}

.product-card {
  grid-column: auto;
  overflow: hidden;
  border: 2px solid #e2e2dc;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 38px rgb(18 18 18 / 9%);
  transition: 0.25s ease;
}

.product-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.card-media {
  position: relative;
  display: block;
  height: 210px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--graphite);
}

.product-card .card-media {
  height: auto;
  aspect-ratio: 1 / 1;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.num {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: rgb(15 15 16 / 86%);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}

.card-body {
  padding: 23px 23px 26px;
}

.card-body h3 {
  margin: 0 0 11px;
  font-size: 20px;
  letter-spacing: -0.035em;
}

.card-body p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 14px;
}

.product-card .card-body p {
  display: -webkit-box;
  min-height: 44px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.more {
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.more::after {
  margin-left: 8px;
  color: var(--orange);
  content: "→";
}

.product-card .more {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid #d9d9d3;
  border-radius: 6px;
  padding: 8px 13px;
  background: #fff;
}

.product-card .more:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.process {
  overflow: hidden;
  border-radius: 30px;
  background: var(--black);
  color: #fff;
}

.process-top {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
}

.process-copy {
  padding: 72px 62px;
}

.process-copy p:not(.eyebrow) {
  margin: 24px 0 32px;
  color: rgb(255 255 255 / 62%);
}

.process-images {
  display: grid;
  min-height: 410px;
  max-height: 410px;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}

.process-images img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgb(255 255 255 / 12%);
}

.step {
  border-right: 1px solid rgb(255 255 255 / 12%);
  padding: 32px 35px;
}

.step:last-child {
  border: 0;
}

.step b {
  color: var(--orange);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.step h3 {
  margin: 18px 0 8px;
}

.step p {
  margin: 0;
  color: rgb(255 255 255 / 56%);
  font-size: 13px;
}

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: var(--line);
}

.feature {
  min-height: 255px;
  background: #fff;
  padding: 34px 29px;
}

.feature .icon {
  width: 46px;
  height: 46px;
  margin-bottom: 26px;
  color: var(--orange);
}

.feature h3 {
  margin: 0 0 10px;
}

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

.intro {
  display: grid;
  grid-template-columns: minmax(310px, 0.85fr) minmax(0, 1.15fr);
  gap: 70px;
  align-items: center;
}

.intro-title {
  position: sticky;
  top: 115px;
}

.intro-title .title {
  max-width: 520px;
  font-size: clamp(34px, 3vw, 48px);
}

.product-family .section-head {
  max-width: 900px;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 17px;
  margin-bottom: 46px;
}

.product-family .section-head > p {
  max-width: 680px;
}

.product-family .section-summary {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.product-family .inner-hero + .section {
  padding: 78px 0;
  background: #ecece7;
}

.rich p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 17px;
}

.rich strong {
  color: var(--ink);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 35px;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: var(--line);
}

.stat {
  background: #fff;
  padding: 20px;
}

.stat strong {
  display: block;
  color: var(--orange);
  font-size: 25px;
}

.stat span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.variant-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 58px;
  row-gap: 60px;
}

.variant-grid > .variant:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  width: calc((100% - 58px) / 2);
  justify-self: center;
}

.variant {
  overflow: hidden;
  border: 2px solid #e2e2dc;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 38px rgb(18 18 18 / 9%);
  transition: 0.24s ease;
}

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

.variant .card-media {
  height: 305px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tags li {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  padding: 6px 9px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.specs {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  overflow: hidden;
  border-radius: 30px;
  background: var(--black);
  color: #fff;
}

.spec-intro {
  display: flex;
  min-height: 560px;
  flex-direction: column;
  justify-content: space-between;
  padding: 60px;
}

.spec-intro p:not(.eyebrow) {
  color: rgb(255 255 255 / 60%);
}

.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgb(255 255 255 / 12%);
}

.spec {
  background: #19191a;
  padding: 50px 42px;
}

.spec .icon {
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  color: var(--orange);
}

.spec ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.spec li {
  margin: 7px 0;
  color: rgb(255 255 255 / 60%);
  font-size: 13px;
}

.spec li::before {
  margin-right: 9px;
  color: var(--orange);
  content: "•";
}

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

.value {
  min-height: 330px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  padding: 40px 36px;
}

.value b {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgb(255 106 0 / 28%);
  border-radius: 50%;
  color: var(--orange);
  font-size: 12px;
}

.value h3 {
  margin: 58px 0 12px;
  font-size: 24px;
}

.value p {
  color: var(--muted);
  font-size: 13px;
}

.segments {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid rgb(255 255 255 / 12%);
}

.segment {
  display: flex;
  min-height: 155px;
  align-items: center;
  gap: 17px;
  border-right: 1px solid rgb(255 255 255 / 12%);
  padding: 28px;
}

.segment:last-child {
  border: 0;
}

.segment .icon {
  width: 44px;
  height: 44px;
  color: var(--orange);
}

.segment span {
  display: block;
  color: rgb(255 255 255 / 52%);
  font-size: 11px;
}

/* Contact and CTA */
.contact {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 12px 34px rgb(18 18 18 / 8%);
}

.contact-info {
  display: flex;
  min-height: 690px;
  flex-direction: column;
  justify-content: space-between;
  background: var(--black);
  color: #fff;
  padding: 56px 50px;
}

.contact-info h2 {
  margin: 0;
  font-size: 47px;
  letter-spacing: -0.05em;
  line-height: 1.04;
}

.contact-info > div > p:not(.eyebrow) {
  color: rgb(255 255 255 / 60%);
}

.contact-list {
  display: grid;
  gap: 19px;
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-list .icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 8px;
  color: var(--orange);
  padding: 9px;
}

.contact-list small {
  display: block;
  color: rgb(255 255 255 / 44%);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-list a,
.contact-list span {
  font-size: 13px;
  font-weight: 700;
}

.contact-form {
  padding: 58px;
}

.contact-form h2 {
  margin: 0;
  font-size: 34px;
}

.contact-form > p {
  color: var(--muted);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 21px;
  margin-top: 34px;
}

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

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

.field label {
  font-size: 11px;
  font-weight: 800;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 13px 14px;
}

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

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--orange);
  outline: 0;
  box-shadow: 0 0 0 4px rgb(255 106 0 / 9%);
}

.consent {
  display: flex;
  gap: 9px;
  margin: 21px 0;
  color: var(--muted);
  font-size: 10px;
}

.consent input {
  accent-color: var(--orange);
}

.cta {
  display: grid;
  min-height: 390px;
  grid-template-columns: 1fr 0.45fr;
  align-items: center;
  gap: 70px;
  overflow: hidden;
  border-radius: 30px;
  background: var(--orange);
  color: #fff;
  padding: 66px 72px;
}

.cta h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 67px);
  letter-spacing: -0.055em;
  line-height: 1;
}

.cta p {
  color: rgb(255 255 255 / 82%);
}

.cta-actions {
  display: grid;
  gap: 12px;
}

/* Footer */
.footer {
  background: var(--black);
  color: #fff;
  padding-top: 72px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.7fr 0.85fr 1fr;
  gap: 58px;
  padding-bottom: 58px;
}

.footer-brand img {
  width: 260px;
  height: auto;
  max-height: 88px;
  object-fit: contain;
  object-position: left center;
  border-radius: 4px;
  background: #fff;
}

.footer-brand p {
  max-width: 360px;
  color: rgb(255 255 255 / 50%);
  font-size: 14px;
}

.footer h3 {
  margin: 0 0 20px;
  color: rgb(255 255 255 / 40%);
  font-size: 12px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer li,
.footer a {
  color: rgb(255 255 255 / 70%);
  font-size: 14px;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.instagram-icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.instagram-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

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

.footer-bottom {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgb(255 255 255 / 10%);
  color: rgb(255 255 255 / 38%);
  font-size: 13px;
}

.footer-privacy {
  color: rgb(255 255 255 / 55%) !important;
  text-decoration: underline;
  text-decoration-color: rgb(255 106 0 / 55%);
  text-underline-offset: 4px;
}

.footer-privacy:hover {
  color: var(--orange) !important;
}

.whatsapp {
  position: fixed;
  z-index: 700;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 3px solid #fff;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 16px 35px rgb(15 15 16 / 24%);
}

.whatsapp .icon {
  width: 28px;
  height: 28px;
}

.cookies {
  position: fixed;
  z-index: 1200;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: none;
  max-width: 760px;
  margin-inline: auto;
  align-items: center;
  gap: 20px;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 12px;
  background: rgb(15 15 16 / 96%);
  color: #fff;
  padding: 16px 18px;
  box-shadow: var(--shadow);
}

.cookies.show {
  display: flex;
}

.cookies p {
  margin: 0;
  color: rgb(255 255 255 / 66%);
  font-size: 12px;
  line-height: 1.55;
}

.cookies a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookies button {
  flex: 0 0 auto;
  border: 0;
  border-radius: 6px;
  background: var(--orange);
  color: #fff;
  padding: 9px 12px;
  font-size: 12px;
  font-weight: 800;
}

.privacy-content {
  max-width: 850px;
}

.privacy-content h2 {
  margin: 42px 0 10px;
  color: var(--ink);
  font-size: clamp(22px, 2.2vw, 30px);
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.privacy-content p {
  margin: 0 0 18px;
}

.privacy-modal {
  position: fixed;
  z-index: 1600;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgb(15 15 16 / 74%);
  backdrop-filter: blur(5px);
}

.privacy-modal[hidden] {
  display: none;
}

.privacy-modal-card {
  position: relative;
  width: min(680px, 100%);
  max-height: min(760px, calc(100vh - 48px));
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  color: var(--ink);
  padding: clamp(28px, 5vw, 50px);
  box-shadow: 0 30px 90px rgb(0 0 0 / 30%);
}

.privacy-modal-card h2 {
  margin: 0 44px 16px 0;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.privacy-modal-card h3 {
  margin: 25px 0 7px;
  font-size: 17px;
}

.privacy-modal-card p,
.privacy-modal-card li {
  color: var(--muted);
  font-size: 14px;
}

.privacy-modal-card ul {
  margin: 0;
  padding-left: 20px;
}

.privacy-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.privacy-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--soft);
  color: var(--ink);
  font-size: 25px;
  line-height: 1;
}

body.privacy-open {
  overflow: hidden;
}

.reveal {
  transform: translateY(18px);
  opacity: 0;
  transition: 0.65s cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

@media (max-width: 1120px) {
  .container {
    width: min(calc(100% - 54px), var(--container));
  }

  .header-inner {
    grid-template-columns: 225px 1fr auto;
    gap: 22px;
  }

  .brand {
    width: 218px;
    height: 60px;
  }

  .brand img {
    max-height: 60px;
  }

  .nav-list {
    gap: 25px;
  }

  .hero-grid,
  .inner-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 800px;
    padding: 82px 0 62px;
  }

  .hero-visual {
    min-height: 440px;
    margin-right: 0;
    border-radius: 24px;
    box-shadow: 0 18px 45px rgb(18 18 18 / 12%);
    -webkit-clip-path: none;
    clip-path: none;
  }

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

  .product-card {
    grid-column: auto;
  }

  .process-top,
  .specs {
    grid-template-columns: 1fr;
  }

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

  .intro {
    gap: 65px;
  }

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

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

@media (max-width: 900px) {
  .site-header,
  .site-header.scrolled {
    height: 78px;
    max-width: 100%;
    backdrop-filter: none;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: block;
  }

  .header-inner > .btn {
    display: none;
  }

  .nav {
    position: fixed;
    top: 78px;
    right: 0;
    bottom: auto;
    left: 0;
    width: 100%;
    max-width: 100%;
    max-height: calc(100dvh - 78px);
    transform: translateY(-10px);
    background: #fff;
    padding: 18px 20px 24px;
    opacity: 0;
    overflow-x: hidden;
    overflow-y: auto;
    pointer-events: none;
    scrollbar-width: none;
    transition: 0.22s ease;
    visibility: hidden;
  }

  .nav.open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav-list {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .nav-link,
  .nav-trigger {
    width: 100%;
    min-height: 54px;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    font-size: 18px;
  }

  .nav-link::after,
  .nav-trigger::after {
    display: none;
  }

  .mega {
    position: static;
    width: 100%;
    max-height: 0;
    padding: 0;
    transform: none;
    border: 0;
    box-shadow: none;
    opacity: 1;
    overflow: hidden;
    pointer-events: auto;
    transition: max-height 0.28s ease;
  }

  .nav-item:hover .mega {
    transform: none;
  }

  .nav-item.open .mega {
    max-height: 720px;
  }

  .mega-grid {
    grid-template-columns: 1fr;
    padding: 6px 0 12px;
  }

  .mega-link {
    min-height: 48px;
    padding: 6px 9px;
  }

  .section {
    padding: 82px 0;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 23px;
  }

  .intro {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .intro-title {
    position: static;
  }

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

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

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

  .contact-info {
    min-height: auto;
  }

  .cta {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .brand {
    width: 190px;
    height: 54px;
  }

  .brand img {
    max-height: 54px;
  }

  .section {
    padding: 50px 0;
  }

  .section-head {
    gap: 16px;
    margin-bottom: 34px;
  }

  .product-family .inner-hero + .section {
    padding: 50px 0;
  }

  .title {
    font-size: clamp(35px, 12vw, 50px);
  }

  .hero-copy {
    padding: 64px 0 48px;
  }

  .hero-copy h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .hero-copy > p {
    font-size: 16px;
  }

  .btns {
    display: grid;
  }

  .btns .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 320px;
    border-radius: 18px;
    -webkit-clip-path: none;
    clip-path: none;
  }

  .mosaic img,
  .hero-photo {
    min-height: 320px;
  }

  .ribbon {
    display: none;
  }

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

  .product-card,
  .product-card:nth-child(1),
  .product-card:nth-child(2) {
    grid-column: auto;
  }

  .product-card .card-body {
    padding: 18px 16px 20px;
  }

  .product-card .card-body h3 {
    font-size: 16px;
    line-height: 1.25;
  }

  .product-card .card-body p {
    display: block;
    min-height: 0;
    overflow: visible;
    font-size: 12px;
    line-height: 1.55;
    -webkit-line-clamp: unset;
  }

  .product-card .more {
    width: 100%;
    justify-content: center;
    font-size: 10px;
  }

  .process {
    border-radius: 18px;
  }

  .process-copy,
  .spec-intro {
    padding: 42px 27px;
  }

  .process-images {
    min-height: 310px;
    grid-template-columns: 1fr;
    clip-path: none;
  }

  .process-images img:last-child {
    display: none;
  }

  .steps,
  .variant-grid,
  .values,
  .segments {
    grid-template-columns: 1fr;
  }

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

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

  .variant-grid,
  .values {
    gap: 24px;
  }

  .variant-grid > .variant:last-child:nth-child(odd) {
    grid-column: auto;
    width: 100%;
  }

  .step,
  .segment {
    border-right: 0;
    border-bottom: 1px solid rgb(255 255 255 / 12%);
  }

  .variant .card-media {
    height: 245px;
  }

  .specs,
  .contact,
  .cta {
    border-radius: 18px;
  }

  .spec-intro {
    min-height: auto;
    align-items: center;
    text-align: center;
  }

  .spec {
    padding: 27px 18px;
    text-align: center;
  }

  .spec .icon {
    margin: 0 auto 15px;
  }

  .spec ul {
    display: inline-block;
    text-align: left;
  }

  .feature {
    min-height: auto;
    padding: 26px 18px;
    text-align: center;
  }

  .feature .icon {
    margin: 0 auto 14px;
  }

  .feature h3 {
    font-size: 16px;
  }

  .step {
    padding: 24px 20px;
    text-align: center;
  }

  .step h3 {
    margin: 11px 0 6px;
  }

  .value {
    min-height: auto;
    padding: 26px 22px;
    text-align: center;
  }

  .value b {
    margin-inline: auto;
  }

  .value h3 {
    margin: 18px 0 8px;
  }

  .segment {
    min-height: auto;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    padding: 22px 14px;
    text-align: center;
  }

  .stat {
    padding: 16px 8px;
    text-align: center;
  }

  .process-copy {
    padding: 38px 24px;
    text-align: center;
  }

  .contact-info,
  .contact-form {
    padding: 40px 27px;
  }

  .contact-info h2 {
    font-size: 39px;
  }

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

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

  .cta {
    padding: 48px 27px;
  }

  .cta h2 {
    font-size: 42px;
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding-block: 18px;
  }

  .cookies {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: auto;
    max-width: none;
    margin: 0;
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
    padding: 14px;
    overflow-wrap: anywhere;
  }

  .cookies button {
    width: 100%;
    max-width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

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