:root {
  --ink: #111b22;
  --ink-soft: #34434d;
  --night: #0a141b;
  --night-soft: #10232d;
  --paper: #f5f4f0;
  --white: #ffffff;
  --line: #dce1e2;
  --blue: #326c7a;
  --blue-deep: #245560;
  --blue-pale: #e4eef0;
  --ember: #e76e2f;
  --ember-dark: #c95620;
  --green: #25a45a;
  --shadow-sm: 0 12px 30px rgba(11, 26, 34, 0.08);
  --shadow-lg: 0 28px 70px rgba(4, 16, 22, 0.18);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --shell: min(1180px, calc(100% - 40px));
  --header-height: 82px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Aptos, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

:focus-visible {
  outline: 3px solid rgba(231, 110, 47, 0.65);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--white);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

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

.section {
  padding-block: 110px;
}

.section--compact {
  padding-block: 76px;
}

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

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

.section--blue-pale {
  background: var(--blue-pale);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.section--night .eyebrow,
.hero .eyebrow,
.cta-band .eyebrow {
  color: #85c4d0;
}

.display-title,
.page-hero h1,
.product-detail h1,
.empty-state h1 {
  margin: 0;
  font-size: clamp(2.7rem, 6vw, 5.5rem);
  font-weight: 780;
  letter-spacing: -0.055em;
  line-height: 0.97;
}

.section-title {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 3.9rem);
  font-weight: 760;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.section-intro {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.section--night .section-intro {
  color: #b8c7ce;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 48px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  color: var(--blue-deep);
  font-weight: 750;
}

.text-link::after {
  content: "→";
  font-size: 1.3em;
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translateX(5px);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 750;
  line-height: 1;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

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

.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button--primary {
  color: var(--white);
  background: var(--ember);
  box-shadow: 0 12px 30px rgba(231, 110, 47, 0.24);
}

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

.button--light {
  color: var(--night);
  background: var(--white);
}

.button--outline {
  border-color: #bfcbce;
  background: transparent;
}

.button--outline:hover {
  border-color: var(--blue);
  background: var(--white);
}

.button--dark {
  color: var(--white);
  background: var(--night);
}

.button--dark:hover {
  background: var(--blue-deep);
}

.button--whatsapp {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 12px 28px rgba(37, 164, 90, 0.22);
}

.button--whatsapp:hover {
  background: #17894a;
}

.button--small {
  min-height: 43px;
  padding: 10px 17px;
  font-size: 0.9rem;
}

.button--icon {
  width: 43px;
  padding-inline: 0;
  color: var(--green);
  border-color: #b8d9c5;
  background: #eff9f3;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(10, 20, 27, 0.88);
  backdrop-filter: blur(16px);
  transition: background-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(10, 20, 27, 0.97);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.15);
}

.site-header__inner {
  width: var(--shell);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.brand__mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 14px;
  color: var(--white);
  background: var(--blue);
}

.brand__mark svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.brand__text {
  display: grid;
  gap: 1px;
  line-height: 1;
}

.brand__text strong {
  font-size: 1rem;
  letter-spacing: 0.04em;
}

.brand__text span {
  color: #9fb1b9;
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav > a:not(.button) {
  padding: 10px 14px;
  border-radius: 999px;
  color: #d6e0e4;
  font-size: 0.92rem;
  font-weight: 650;
  transition: color 180ms ease, background-color 180ms ease;
}

.site-nav > a:not(.button):hover,
.site-nav > a[aria-current="page"]:not(.button) {
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
}

.site-nav .button {
  min-height: 43px;
  margin-left: 8px;
  padding: 10px 18px;
  font-size: 0.88rem;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 0;
  border-radius: 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle::before,
.menu-toggle::after {
  transform: none;
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  color: var(--white);
  background: var(--night);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 17, 23, 0.98) 0%, rgba(7, 17, 23, 0.92) 42%, rgba(7, 17, 23, 0.28) 76%, rgba(7, 17, 23, 0.58) 100%),
    url("brand/hero.jpg") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  right: -12vw;
  bottom: -38vw;
  width: 70vw;
  height: 70vw;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 10vw rgba(255, 255, 255, 0.02), 0 0 0 22vw rgba(255, 255, 255, 0.02);
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: var(--shell);
  min-height: 820px;
  margin-inline: auto;
  padding-top: calc(var(--header-height) + 100px);
  padding-bottom: 80px;
  display: flex;
  align-items: center;
}

.hero__content {
  max-width: 760px;
}

.hero .display-title {
  max-width: 760px;
  font-size: clamp(3.2rem, 7.2vw, 6.7rem);
}

.hero__lead {
  max-width: 650px;
  margin: 28px 0 0;
  color: #c1d0d6;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 36px;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  margin-top: 46px;
  color: #d7e2e6;
  font-size: 0.92rem;
}

.hero__meta span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.hero__meta span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ember);
  box-shadow: 0 0 0 5px rgba(231, 110, 47, 0.14);
}

.trust-strip {
  position: relative;
  z-index: 4;
  width: var(--shell);
  margin: -52px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.trust-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 15px;
  padding: 28px 24px;
  align-items: center;
}

.trust-item + .trust-item {
  border-left: 1px solid var(--line);
}

.trust-item__icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 16px;
  color: var(--blue-deep);
  background: var(--blue-pale);
}

.trust-item__icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.trust-item strong,
.trust-item > div > span {
  display: block;
}

.trust-item strong {
  margin-bottom: 2px;
  line-height: 1.2;
}

.trust-item > div > span {
  color: #64737b;
  font-size: 0.82rem;
  line-height: 1.35;
}

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

.category-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(50, 108, 122, 0.12);
  border-radius: var(--radius-md);
  color: var(--white);
  background: var(--night-soft);
  isolation: isolate;
}

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

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

.category-card::before,
.category-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  transition: transform 360ms ease;
}

.category-card::before {
  right: -90px;
  bottom: -120px;
  width: 290px;
  height: 290px;
  background: var(--blue);
  opacity: 0.48;
}

.category-card::after {
  right: 70px;
  bottom: 55px;
  width: 110px;
  height: 110px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.category-card:hover::before {
  transform: scale(1.14);
}

.category-card__index {
  color: #8ca5af;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.category-card h3 {
  max-width: 380px;
  margin: 100px 0 10px;
  font-size: clamp(1.55rem, 3vw, 2.6rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.category-card p {
  max-width: 390px;
  margin: 0;
  color: #adbec5;
}

.category-card .text-link {
  margin-top: 22px;
  color: var(--white);
}

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

.product-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(11, 26, 34, 0.02);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.product-card:hover {
  transform: translateY(-7px);
  border-color: #c2d0d4;
  box-shadow: var(--shadow-sm);
}

.product-card__image {
  position: relative;
  display: block;
  height: 320px;
  overflow: hidden;
  background: #ececeb;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

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

.product-card__category {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  color: var(--night);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 5px 15px rgba(7, 17, 23, 0.08);
  backdrop-filter: blur(10px);
  font-size: 0.72rem;
  font-weight: 800;
}

.product-card__body {
  padding: 23px;
}

.product-card__heading {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: start;
}

.product-card__model {
  margin: 0 0 5px;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.product-card h3 {
  margin: 0;
  font-size: 1.17rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.product-card__price {
  margin: 0;
  font-size: 1.14rem;
  font-weight: 820;
  white-space: nowrap;
}

.product-card__description {
  display: -webkit-box;
  overflow: hidden;
  min-height: 4.9em;
  margin: 17px 0 0;
  color: #5b6a72;
  font-size: 0.9rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.shipping-note {
  margin: 8px 0 0;
  color: #738087;
  font-size: 0.75rem;
  font-weight: 650;
}

.product-card__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 20px;
}

.shipping-banner {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 38px 42px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: var(--blue-deep);
  box-shadow: var(--shadow-lg);
}

.shipping-banner__icon {
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
}

.shipping-banner__icon svg {
  width: 46px;
  height: 46px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.shipping-banner h2 {
  margin: 0 0 7px;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.shipping-banner p {
  max-width: 640px;
  margin: 0;
  color: #c9dce1;
}

.about-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.95fr);
  gap: 80px;
  align-items: center;
}

.about-panel {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: url("brand/hero.jpg") center / cover no-repeat;
  box-shadow: var(--shadow-lg);
}

.about-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(6, 17, 23, 0.82));
}

.about-panel__badge {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 24px;
  left: 24px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 20px;
  color: var(--white);
  background: rgba(7, 17, 23, 0.48);
  backdrop-filter: blur(16px);
}

.about-panel__badge strong,
.about-panel__badge span {
  display: block;
}

.about-panel__badge strong {
  font-size: 1.25rem;
}

.about-panel__badge span {
  margin-top: 4px;
  color: #c7d5da;
}

.about-copy .section-title {
  max-width: 620px;
}

.about-copy > p:not(.eyebrow) {
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.value-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.value-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  font-weight: 700;
}

.value-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ember);
}

.about-copy .button {
  margin-top: 34px;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding-block: 90px;
  color: var(--white);
  background: var(--night);
}

.cta-band::before {
  content: "";
  position: absolute;
  top: -170px;
  right: -80px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--blue);
  filter: blur(0);
  opacity: 0.2;
}

.cta-band__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.cta-band h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.cta-band p:not(.eyebrow) {
  max-width: 650px;
  margin: 20px 0 0;
  color: #b7c8cf;
}

.cta-band__actions {
  display: grid;
  flex: 0 0 auto;
  gap: 12px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-height) + 100px) 0 95px;
  color: var(--white);
  background: var(--night);
}

.page-hero::after {
  content: "";
  position: absolute;
  top: -300px;
  right: -240px;
  width: 700px;
  height: 700px;
  border: 120px solid rgba(50, 108, 122, 0.24);
  border-radius: 50%;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 900px;
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 26px 0 0;
  color: #bccbd1;
  font-size: 1.12rem;
}

.catalog-toolbar {
  position: sticky;
  z-index: 20;
  top: var(--header-height);
  padding-block: 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(245, 244, 240, 0.94);
  backdrop-filter: blur(16px);
}

.catalog-toolbar__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.search-field {
  position: relative;
  width: min(420px, 100%);
}

.search-field svg {
  position: absolute;
  top: 50%;
  left: 18px;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #758189;
  stroke-width: 1.8;
  transform: translateY(-50%);
}

.search-field input {
  width: 100%;
  min-height: 50px;
  padding: 12px 18px 12px 48px;
  border: 1px solid #cfd7d9;
  border-radius: 999px;
  background: var(--white);
}

.search-field input:focus {
  border-color: var(--blue);
  outline: none;
  box-shadow: 0 0 0 4px rgba(50, 108, 122, 0.12);
}

.product-count {
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 750;
  white-space: nowrap;
}

.filter-row {
  display: flex;
  gap: 9px;
  overflow-x: auto;
  margin-top: 14px;
  padding-bottom: 2px;
  scrollbar-width: none;
}

.filter-row::-webkit-scrollbar {
  display: none;
}

.filter-button {
  flex: 0 0 auto;
  padding: 9px 15px;
  border: 1px solid #cfd7d9;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 720;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.filter-button:hover,
.filter-button.is-active {
  color: var(--white);
  border-color: var(--blue-deep);
  background: var(--blue-deep);
}

.catalog-grid-wrap {
  padding-block: 62px 110px;
}

.catalog-empty {
  padding: 70px 24px;
  border: 1px dashed #bcc8ca;
  border-radius: var(--radius-md);
  text-align: center;
}

.catalog-empty h2 {
  margin: 0 0 8px;
}

.catalog-empty p {
  margin: 0;
  color: var(--ink-soft);
}

.product-page {
  padding: calc(var(--header-height) + 58px) 0 110px;
  background: var(--white);
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  gap: 70px;
  align-items: start;
}

.product-detail__visual {
  position: sticky;
  top: calc(var(--header-height) + 30px);
}

.product-detail__image-frame {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #ececeb;
  box-shadow: var(--shadow-sm);
}

.product-detail__image-frame img {
  width: 100%;
  max-height: 720px;
  aspect-ratio: 0.88;
  object-fit: cover;
}

.image-caption {
  margin: 12px 4px 0;
  color: #7a858b;
  font-size: 0.75rem;
}

.product-detail__content {
  padding-top: 18px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 58px;
  color: #6b787f;
  font-size: 0.78rem;
}

.breadcrumb a:hover {
  color: var(--blue);
}

.product-detail h1 {
  font-size: clamp(2.5rem, 5vw, 4.8rem);
}

.product-detail__model {
  margin: 16px 0 0;
  color: var(--blue);
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.product-detail__price {
  margin: 30px 0 0;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 820;
  letter-spacing: -0.04em;
}

.product-detail__shipping {
  display: inline-block;
  margin: 10px 0 0;
  padding: 8px 12px;
  border-radius: 9px;
  color: #6d4a26;
  background: #fff0df;
  font-size: 0.82rem;
  font-weight: 650;
}

.product-detail__description {
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

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

.feature-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-weight: 650;
}

.feature-list li span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-size: 0.75rem;
}

.product-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.product-assurance {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.product-assurance div {
  display: grid;
  gap: 3px;
}

.product-assurance strong {
  font-size: 0.9rem;
}

.product-assurance span {
  color: #6d7980;
  font-size: 0.8rem;
}

.related-products {
  padding-block: 100px;
  background: var(--paper);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
  gap: 90px;
  align-items: start;
}

.story-stat {
  position: sticky;
  top: calc(var(--header-height) + 40px);
  padding: 40px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: var(--blue-deep);
}

.story-stat strong,
.story-stat span {
  display: block;
}

.story-stat strong {
  font-size: clamp(4rem, 8vw, 7rem);
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.story-stat span {
  max-width: 270px;
  margin-top: 22px;
  color: #c4d9de;
}

.story-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.7rem);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.story-copy p {
  margin: 25px 0 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

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

.value-card {
  min-height: 240px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
}

.value-card__number {
  color: #7299a3;
  font-size: 0.8rem;
  font-weight: 800;
}

.value-card h3 {
  margin: 75px 0 8px;
  font-size: 1.4rem;
}

.value-card p {
  margin: 0;
  color: #aebfc5;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(440px, 1.15fr);
  gap: 70px;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.contact-item {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 16px;
  align-items: center;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  transition: border-color 180ms ease, transform 180ms ease;
}

.contact-item:hover {
  transform: translateX(4px);
  border-color: #aabec3;
}

.contact-item__icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 15px;
  color: var(--blue-deep);
  background: var(--blue-pale);
}

.contact-item__icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.contact-item strong,
.contact-item span {
  display: block;
}

.contact-item strong {
  font-size: 0.86rem;
}

.contact-item span {
  margin-top: 2px;
  color: #69767d;
  font-size: 0.88rem;
}

.contact-form {
  padding: 40px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: var(--night);
  box-shadow: var(--shadow-lg);
}

.contact-form h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  letter-spacing: -0.04em;
}

.contact-form > p {
  margin: 12px 0 28px;
  color: #b3c4cb;
}

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

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

.form-field label {
  color: #dae3e6;
  font-size: 0.8rem;
  font-weight: 720;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid #344650;
  border-radius: 12px;
  color: var(--white);
  background: #111f27;
}

.form-field input {
  min-height: 52px;
  padding: 12px 15px;
}

.form-field textarea {
  min-height: 150px;
  padding: 14px 15px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: #6ea4b0;
  outline: none;
  box-shadow: 0 0 0 4px rgba(110, 164, 176, 0.15);
}

.contact-form .button {
  width: 100%;
  margin-top: 6px;
}

.form-note {
  margin: 14px 0 0 !important;
  color: #83969e !important;
  font-size: 0.75rem;
  text-align: center;
}

.map-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.map-card h2 {
  margin: 0 0 7px;
  font-size: 1.6rem;
}

.map-card p {
  margin: 0;
  color: var(--ink-soft);
}

.empty-state {
  padding-block: 120px;
  text-align: center;
}

.empty-state p:not(.eyebrow) {
  max-width: 600px;
  margin: 24px auto 30px;
  color: var(--ink-soft);
}

.site-footer {
  color: var(--white);
  background: #071016;
}

.site-footer__main {
  display: grid;
  grid-template-columns: 1.25fr 0.7fr 1fr;
  gap: 70px;
  padding-block: 76px 56px;
}

.footer-brand p {
  max-width: 420px;
  margin: 23px 0 0;
  color: #9eb0b8;
}

.footer-column h2 {
  margin: 0 0 20px;
  color: #748b95;
  font-size: 0.75rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 11px;
}

.footer-links a {
  color: #c2d0d5;
  font-size: 0.92rem;
  transition: color 180ms ease;
}

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

.footer-contact {
  display: grid;
  gap: 14px;
  color: #c2d0d5;
  font-size: 0.9rem;
}

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

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #7e929b;
  font-size: 0.76rem;
}

.whatsapp-float {
  position: fixed;
  z-index: 60;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 3px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  box-shadow: 0 15px 35px rgba(7, 22, 14, 0.25);
  transition: transform 180ms ease, background-color 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03);
  background: #17894a;
}

.whatsapp-float svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

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

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

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

@media (max-width: 1020px) {
  :root {
    --header-height: 74px;
  }

  .menu-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    width: 100%;
    height: calc(100dvh - var(--header-height));
    display: grid;
    align-content: start;
    gap: 4px;
    padding: 30px 20px;
    overflow-y: auto;
    color: var(--white);
    background: #071016;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.28);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 220ms ease, visibility 220ms ease;
  }

  .site-nav.is-open {
    transform: translateX(0);
    visibility: visible;
  }

  body.menu-open .site-header {
    background: #071016;
    backdrop-filter: none;
  }

  .site-nav > a:not(.button) {
    padding: 16px;
    border-radius: 12px;
    font-size: 1.05rem;
  }

  .site-nav .button {
    width: 100%;
    min-height: 52px;
    margin: 16px 0 0;
  }

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

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

  .trust-item:nth-child(4) {
    border-top: 1px solid var(--line);
  }

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

  .shipping-banner {
    grid-template-columns: 90px 1fr;
  }

  .shipping-banner .button {
    grid-column: 2;
    justify-self: start;
  }

  .about-split,
  .product-detail,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .about-panel {
    min-height: 500px;
  }

  .about-copy {
    max-width: 780px;
  }

  .product-detail__visual,
  .story-stat {
    position: static;
  }

  .product-detail__image-frame img {
    aspect-ratio: 1.15;
  }

  .story-grid {
    grid-template-columns: 0.65fr 1fr;
    gap: 50px;
  }

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

  .contact-layout {
    gap: 42px;
  }
}

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

  .section {
    padding-block: 76px;
  }

  .section--compact {
    padding-block: 58px;
  }

  .brand__text span {
    display: none;
  }

  .hero,
  .hero__inner {
    min-height: 760px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(7, 17, 23, 0.73) 0%, rgba(7, 17, 23, 0.95) 58%, rgba(7, 17, 23, 1) 100%),
      url("brand/hero.jpg") 58% center / cover no-repeat;
  }

  .hero__inner {
    align-items: end;
    padding-top: calc(var(--header-height) + 72px);
    padding-bottom: 110px;
  }

  .hero .display-title {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .hero__lead {
    font-size: 1rem;
  }

  .hero__actions {
    display: grid;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__meta {
    display: grid;
    gap: 10px;
  }

  .trust-strip {
    margin-top: -46px;
    grid-template-columns: 1fr;
  }

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

  .trust-item {
    padding: 21px;
  }

  .section-heading {
    display: grid;
    margin-bottom: 34px;
  }

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

  .category-card:nth-child(n) {
    grid-column: 1;
  }

  .category-card {
    min-height: 300px;
  }

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

  .product-card__image {
    height: min(98vw, 410px);
  }

  .shipping-banner {
    grid-template-columns: 1fr;
    padding: 30px 26px;
  }

  .shipping-banner__icon {
    width: 76px;
    height: 76px;
  }

  .shipping-banner .button {
    grid-column: 1;
    width: 100%;
  }

  .about-split {
    gap: 46px;
  }

  .about-panel {
    min-height: 430px;
  }

  .value-list {
    grid-template-columns: 1fr;
  }

  .cta-band__inner {
    display: grid;
    gap: 36px;
  }

  .cta-band__actions {
    width: 100%;
  }

  .page-hero {
    padding-top: calc(var(--header-height) + 72px);
    padding-bottom: 70px;
  }

  .page-hero h1 {
    font-size: clamp(2.7rem, 13vw, 4.7rem);
  }

  .catalog-toolbar {
    top: var(--header-height);
  }

  .catalog-toolbar__top {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .search-field {
    width: 100%;
  }

  .catalog-grid-wrap {
    padding-block: 42px 78px;
  }

  .product-page {
    padding-top: calc(var(--header-height) + 28px);
  }

  .product-detail {
    gap: 35px;
  }

  .product-detail__image-frame img {
    max-height: none;
    aspect-ratio: 0.9;
  }

  .breadcrumb {
    margin-bottom: 38px;
  }

  .product-detail__actions,
  .product-detail__actions .button {
    width: 100%;
  }

  .product-assurance {
    grid-template-columns: 1fr;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .story-stat {
    padding: 30px;
  }

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

  .value-card {
    min-height: 210px;
  }

  .contact-layout {
    gap: 34px;
  }

  .contact-form {
    padding: 28px 22px;
  }

  .map-card {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .map-card .button {
    width: 100%;
  }

  .site-footer__main {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-block: 60px 44px;
  }

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

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