:root {
  --red: #e53935;
  --black: #111111;
  --white: #ffffff;
  --gray: #f3f4f6;
  --muted: #6b7280;
  --border: #e5e7eb;
  --shadow: 0 10px 24px rgba(17, 17, 17, 0.08);
  --radius: 16px;
  --radius-sm: 12px;
  --container: 1120px;
  --grid-gap: 24px;
  --focus: 0 0 0 3px rgba(229, 57, 53, 0.25);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto,
    Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
}
button,
input,
textarea {
  font: inherit;
}

/* --- Media images (photos) --- */
.media {
  width: 100%;
  display: block;
  border-radius: 18px;
  border: 1px solid rgba(229, 231, 235, 0.95);
  background: var(--gray);
  box-shadow: 0 12px 26px rgba(17, 17, 17, 0.1);
  object-fit: cover;
}
.media--hero {
  aspect-ratio: 16 / 10;
  margin: 12px 0 14px;
}
.media--product {
  aspect-ratio: 16 / 11;
  margin: 12px 0 10px;
}
.media--cardTop {
  margin-top: 0;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.8);
}
.header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand__logo {
  height: 60px;
  width: auto;
  display: block;
}
.brand__logo:focus-visible {
  outline: none;
  box-shadow: var(--focus);
  border-radius: 8px;
}
.brand__mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--red), #b91c1c);
  position: relative;
  box-shadow: 0 10px 24px rgba(229, 57, 53, 0.18);
}
.brand__mark:after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-left: none;
  transform: skewX(-16deg);
  opacity: 0.9;
}
.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand__name {
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 14px;
}
.brand__tag {
  font-size: 12px;
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: rgba(17, 17, 17, 0.85);
}
.nav a[aria-current="page"] {
  color: var(--black);
}
.nav a:hover {
  color: var(--black);
}

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

.menuBtn {
  display: none;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 12px;
  padding: 10px 12px;
}
.menuBtn:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 12px 16px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}
.btn--primary {
  background: var(--red);
  color: var(--white);
}
.btn--primary:hover {
  filter: brightness(0.95);
}
.btn--outline {
  background: transparent;
  color: var(--red);
  border-color: rgba(229, 57, 53, 0.5);
}
.btn--outline:hover {
  border-color: var(--red);
  background: rgba(229, 57, 53, 0.06);
}
.btn--ghost {
  background: transparent;
  color: var(--black);
  border-color: var(--border);
}
.btn--ghost:hover {
  background: rgba(17, 17, 17, 0.03);
}
.btn--sm {
  padding: 10px 14px;
  font-size: 14px;
}

/* Sections */
.section {
  position: relative;
  padding: 72px 0;
}
.section--gray {
  background: var(--gray);
}
.section--tight {
  padding: 54px 0;
}
.section__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}
.kicker {
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(17, 17, 17, 0.6);
}
.title {
  margin: 6px 0 0;
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  font-weight: 900;
}
.title .red {
  color: var(--red);
}
.subtitle {
  margin: 14px 0 0;
  color: rgba(17, 17, 17, 0.72);
  max-width: 72ch;
}

/* Home: About preview */
.aboutPreview__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--grid-gap);
  align-items: stretch;
}
.aboutPreview__list {
  margin: 16px 0 0;
  padding-left: 18px;
  color: rgba(17, 17, 17, 0.74);
  font-size: 14px;
}
.aboutPreview__list li {
  margin: 8px 0;
}
.aboutPreview__callout {
  margin: 16px 0 0;
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid rgba(229, 231, 235, 0.95);
  border-left: 4px solid var(--red);
  background: rgba(255, 255, 255, 0.86);
  color: rgba(17, 17, 17, 0.78);
  font-size: 14px;
}
.aboutPreview__aside {
  position: relative;
  border-radius: 28px;
  border: 1px solid rgba(229, 231, 235, 0.9);
  background: linear-gradient(180deg, rgba(243, 244, 246, 0.92), #fff);
  padding: 16px;
  overflow: hidden;
}
.aboutPreview__dot {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  opacity: 0.9;
}
.aboutPreview__img {
  border-radius: 20px;
  aspect-ratio: 16 / 10;
}
.aboutPreview__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}
.aboutStat {
  padding: 12px;
  border: 1px solid rgba(229, 231, 235, 0.95);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
}
.aboutStat__k {
  margin: 0;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  color: var(--red);
}
.aboutStat__v {
  margin: 6px 0 0;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 12px;
  color: rgba(17, 17, 17, 0.82);
}
.aboutPreview__cards {
  margin-top: 22px;
}

/* About: steps + CTA band */
.stepCard {
  overflow: hidden;
}
.stepNum {
  margin: 0 0 10px;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(229, 57, 53, 0.95);
}
/* Keep Process cards simple (same hover behavior as regular cards) */
.stepCard:before {
  background: transparent;
}

.ctaBand {
  position: relative;
  border-radius: 28px;
  border: 1px solid rgba(229, 231, 235, 0.95);
  background: linear-gradient(
      180deg,
      rgba(243, 244, 246, 0.92),
      rgba(255, 255, 255, 1)
    ),
    radial-gradient(circle at 20% 20%, rgba(229, 57, 53, 0.12), transparent 60%),
    radial-gradient(circle at 90% 80%, rgba(17, 17, 17, 0.06), transparent 55%);
  padding: 26px;
  overflow: hidden;
}
.ctaBand .dotGrid {
  top: 18px;
  right: 18px;
  width: 54px;
  height: 54px;
  opacity: 0.9;
}
.ctaBand .title {
  font-size: clamp(30px, 3.2vw, 44px);
}

/* About: pills + caption */
.aboutPills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.aboutMedia {
  padding: 18px;
}
.aboutMedia .media--hero {
  margin-top: 0;
}
.aboutCaption {
  margin: 12px 0 0;
  color: rgba(17, 17, 17, 0.72);
  font-size: 14px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  color: var(--red);
}

.grid {
  display: grid;
  gap: var(--grid-gap);
}
.grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* Cards */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 1px 0 rgba(17, 17, 17, 0.02);
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    border-color 0.18s ease;
  position: relative;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: rgba(229, 57, 53, 0.22);
}
.card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: transparent;
  border-radius: var(--radius) var(--radius) 0 0;
  transition: background 0.18s ease;
  z-index: 2;
}
.card:hover:before {
  background: var(--red);
}

/* About page: abstract card backgrounds (page-only, opt-in) */
.page--about .card > * {
  position: relative;
  z-index: 1;
}
.page--about .card.card--abstract:after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  z-index: 0;
  pointer-events: none;
  opacity: 0.52;
  background: radial-gradient(
      circle at 14% 18%,
      rgba(229, 57, 53, 0.12),
      transparent 52%
    ),
    radial-gradient(circle at 92% 78%, rgba(17, 17, 17, 0.06), transparent 56%),
    radial-gradient(circle at 38% 92%, rgba(229, 57, 53, 0.06), transparent 55%),
    radial-gradient(rgba(229, 57, 53, 0.06) 1px, transparent 1px);
  background-size: auto, auto, auto, 14px 14px;
  background-position: 0 0, 0 0, 0 0, 6px 8px;
  mix-blend-mode: normal;
}
/* Slight variation so grids feel “random” but consistent */
.page--about .grid > .card.card--abstract:nth-child(3n + 1):after {
  background-position: 0 0, 0 0, 0 0, 2px 10px;
  background-size: auto, auto, auto, 16px 16px;
}
.page--about .grid > .card.card--abstract:nth-child(3n + 2):after {
  background: radial-gradient(
      circle at 78% 22%,
      rgba(229, 57, 53, 0.12),
      transparent 52%
    ),
    radial-gradient(circle at 12% 86%, rgba(17, 17, 17, 0.06), transparent 56%),
    radial-gradient(circle at 92% 92%, rgba(229, 57, 53, 0.05), transparent 55%),
    radial-gradient(rgba(229, 57, 53, 0.05) 1px, transparent 1px);
  background-size: auto, auto, auto, 15px 15px;
  background-position: 0 0, 0 0, 0 0, 9px 6px;
  mix-blend-mode: normal;
  opacity: 0.5;
}
.page--about .grid > .card.card--abstract:nth-child(3n):after {
  background: radial-gradient(
      circle at 22% 26%,
      rgba(229, 57, 53, 0.1),
      transparent 55%
    ),
    radial-gradient(circle at 86% 72%, rgba(17, 17, 17, 0.06), transparent 58%),
    radial-gradient(rgba(229, 57, 53, 0.05) 1px, transparent 1px);
  background-size: auto, auto, 13px 13px;
  background-position: 0 0, 0 0, 7px 8px;
  mix-blend-mode: normal;
  opacity: 0.46;
}

/* Keep abstract backgrounds subtle on gray sections */
.page--about .section--gray .card.card--abstract:after {
  opacity: 0.42;
}

/* Contact page: modern minimalist layout + abstract styling */
.contactSection {
  overflow: hidden;
}
.contactSection__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(
      circle at 14% 18%,
      rgba(229, 57, 53, 0.1),
      transparent 52%
    ),
    radial-gradient(circle at 92% 78%, rgba(17, 17, 17, 0.05), transparent 58%),
    radial-gradient(circle at 34% 92%, rgba(229, 57, 53, 0.06), transparent 55%);
  filter: saturate(1.05);
}

/* Contact section “background objects” (like Values tabs) */
.contactSection:before {
  content: "";
  position: absolute;
  top: -90px;
  left: -120px;
  width: 210px;
  height: 280px;
  background: linear-gradient(
    135deg,
    rgba(229, 57, 53, 0.26),
    rgba(185, 28, 28, 0.22)
  );
  transform: rotate(-18deg);
  border-radius: 26px;
  opacity: 0.95;
  z-index: -1;
}
.contactSection__dotGrid {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 44px;
  height: 44px;
  opacity: 0.55;
  pointer-events: none;
}
.contactSection__corner {
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: 140px;
  height: 140px;
  opacity: 0.65;
  pointer-events: none;
}

.page--contact .card > :not(.dotGrid) {
  position: relative;
  z-index: 1;
}
.page--contact .card.card--abstract:after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
  background: radial-gradient(
      circle at 18% 16%,
      rgba(229, 57, 53, 0.12),
      transparent 55%
    ),
    radial-gradient(circle at 88% 74%, rgba(17, 17, 17, 0.06), transparent 60%),
    radial-gradient(rgba(229, 57, 53, 0.05) 1px, transparent 1px);
  background-size: auto, auto, 14px 14px;
  background-position: 0 0, 0 0, 7px 10px;
}

.page--contact .dotGrid {
  width: 40px;
  height: 40px;
  opacity: 0.22;
  z-index: 0;
  pointer-events: none;
  filter: saturate(1.05);
}

.contactHero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--grid-gap);
  align-items: start;
  margin-bottom: 22px;
}
.contactHero__copy .title {
  font-size: clamp(34px, 3.4vw, 44px);
}
.contactHero__aside {
  border-radius: 22px;
}

.contactActions {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 560px;
}
.contactAction {
  text-decoration: none;
  border-radius: 18px;
  border: 1px solid rgba(229, 231, 235, 0.95);
  background: rgba(255, 255, 255, 0.86);
  padding: 12px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    border-color 0.18s ease;
}
.contactAction:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(17, 17, 17, 0.08);
  border-color: rgba(229, 57, 53, 0.22);
}
.contactAction:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}
.contactAction__icon {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(229, 57, 53, 0.08);
  border: 1px solid rgba(229, 57, 53, 0.18);
  flex: 0 0 auto;
  color: var(--red);
}
.contactAction__icon svg {
  width: 20px;
  height: 20px;
  display: block;
}
.contactAction__text {
  display: flex;
  align-items: baseline;
  gap: 8px;
  min-width: 0;
  white-space: nowrap;
}
.contactAction__k {
  display: inline;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 11px;
  color: rgba(17, 17, 17, 0.58);
}
.contactAction__sep {
  color: rgba(17, 17, 17, 0.28);
  flex: 0 0 auto;
}
.contactAction__v {
  display: inline;
  font-weight: 900;
  letter-spacing: 0.02em;
  font-size: 12.5px;
  color: rgba(17, 17, 17, 0.86);
  overflow: hidden;
  text-overflow: ellipsis;
}

.contactLayout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: var(--grid-gap);
  align-items: start;
}
.contactPanel {
  border-radius: 24px;
}

/* Contact: redesigned details + form */
.contactDetails__head {
  margin-bottom: 14px;
}
.contactDetails__brand {
  margin: 10px 0 0;
  color: rgba(17, 17, 17, 0.72);
  font-size: 14px;
}

.contactMethods {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}
.contactMethod {
  text-decoration: none;
  border-radius: 18px;
  border: 1px solid rgba(229, 231, 235, 0.95);
  background: rgba(255, 255, 255, 0.86);
  padding: 12px 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    border-color 0.18s ease;
}
.contactMethod:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(17, 17, 17, 0.08);
  border-color: rgba(229, 57, 53, 0.22);
}
.contactMethod:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}
.contactMethod__icon {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(229, 57, 53, 0.08);
  border: 1px solid rgba(229, 57, 53, 0.18);
  flex: 0 0 auto;
  color: var(--red);
}
.contactMethod__icon svg {
  width: 20px;
  height: 20px;
  display: block;
}
.contactMethod__icon--wa {
  background: rgba(37, 211, 102, 0.1);
  border-color: rgba(37, 211, 102, 0.25);
  color: rgba(17, 17, 17, 0.85);
}
.contactMethod__icon--wa img {
  width: 24px;
  height: 24px;
  display: block;
  border-radius: 8px;
}
.contactMethod__text {
  min-width: 0;
  display: grid;
  gap: 4px;
}
.contactMethod__k {
  margin: 0;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  color: rgba(17, 17, 17, 0.58);
}
.contactMethod__v {
  margin: 0;
  font-weight: 800;
  font-size: 14px;
  color: rgba(17, 17, 17, 0.86);
  overflow: hidden;
  text-overflow: ellipsis;
}

.contactLocations {
  margin-top: 12px;
  display: grid;
  gap: 12px;
}
.contactLocation {
  border-radius: 18px;
  border: 1px solid rgba(229, 231, 235, 0.95);
  background: rgba(255, 255, 255, 0.82);
  padding: 12px 12px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.contactLocation__icon {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(229, 57, 53, 0.08);
  border: 1px solid rgba(229, 57, 53, 0.18);
  color: var(--red);
  flex: 0 0 auto;
}
.contactLocation__icon svg {
  width: 20px;
  height: 20px;
  display: block;
}
.contactLocation__body {
  min-width: 0;
}
.contactLocation__k {
  margin: 0;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  color: rgba(17, 17, 17, 0.78);
}
.contactLocation__v {
  margin: 8px 0 0;
  color: rgba(17, 17, 17, 0.72);
  font-size: 14px;
}

.form--contact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 14px;
}
.form--contact .field:nth-of-type(5) {
  grid-column: 1 / -1;
}
.form--contact button,
.form--contact .help {
  grid-column: 1 / -1;
}
.card__title {
  margin: 0 0 8px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 14px;
}
.card__text {
  margin: 0;
  color: rgba(17, 17, 17, 0.72);
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.78);
  background: rgba(255, 255, 255, 0.8);
}
.pill .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
}

/* Hint / note (legacy; kept for compatibility if referenced elsewhere) */
.hint {
  margin: 10px 0 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px dashed rgba(17, 17, 17, 0.18);
  background: rgba(255, 255, 255, 0.72);
  color: rgba(17, 17, 17, 0.72);
  font-size: 13px;
  line-height: 1.35;
}
.hint__icon {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  font-weight: 900;
  font-size: 12px;
  color: rgba(229, 57, 53, 0.95);
  background: rgba(229, 57, 53, 0.1);
  border: 1px solid rgba(229, 57, 53, 0.22);
  flex: 0 0 auto;
}
.hint__text {
  display: inline;
}

/* Hero */
.hero {
  padding: 84px 0 64px;
  overflow: hidden;
}
.hero--bg {
  position: relative;
}
.hero--bg:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.92),
      rgba(255, 255, 255, 0.7)
    ),
    linear-gradient(90deg, rgba(17, 17, 17, 0.22), rgba(17, 17, 17, 0)),
    url("assets/home.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: saturate(1.05) contrast(1.02);
  z-index: -1;
}
.hero__wrap {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: center;
}
.hero__headline {
  margin: 10px 0 0;
  font-size: 54px;
  line-height: 1.02;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  font-weight: 950;
}
.hero__sub {
  margin: 14px 0 0;
  color: var(--red);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 13px;
}
.hero__lead {
  margin: 18px 0 0;
  color: rgba(17, 17, 17, 0.74);
  max-width: 64ch;
}

/* Info box (modern note callout) */
.infoBox {
  margin: 16px 0 0;
  max-width: 66ch;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 14px;
  border-radius: 18px;
  border: 1px solid rgba(229, 231, 235, 0.92);
  border-left: 4px solid rgba(229, 57, 53, 0.85);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 28px rgba(17, 17, 17, 0.06);
}
.infoBox__icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  color: rgba(229, 57, 53, 0.95);
  background: rgba(229, 57, 53, 0.1);
  border: 1px solid rgba(229, 57, 53, 0.22);
  flex: 0 0 auto;
}
.infoBox__icon svg {
  width: 18px;
  height: 18px;
}
.infoBox__body {
  min-width: 0;
}
.infoBox__k {
  margin: 0;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  color: rgba(229, 57, 53, 0.95);
}
.infoBox__text {
  margin: 6px 0 0;
  color: rgba(17, 17, 17, 0.74);
  font-size: 14px;
  line-height: 1.55;
}
.infoBox__text strong {
  color: rgba(17, 17, 17, 0.9);
}
.infoBox--hero {
  margin-top: 18px;
}
.infoBox--products {
  margin-top: 12px;
  background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.86),
      rgba(255, 255, 255, 0.74)
    ),
    radial-gradient(circle at 16% 22%, rgba(229, 57, 53, 0.12), transparent 58%),
    radial-gradient(circle at 92% 82%, rgba(17, 17, 17, 0.06), transparent 55%);
}
.hero__actions {
  display: flex;
  gap: 12px;
  margin-top: 26px;
  flex-wrap: wrap;
}
.hero__panel {
  background: linear-gradient(
    180deg,
    rgba(243, 244, 246, 0.92),
    rgba(255, 255, 255, 1)
  );
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: 28px;
  padding: 22px;
  position: relative;
  min-height: 320px;
}
.hero__panel h3 {
  margin: 0;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 14px;
}
.hero__panel p {
  margin: 10px 0 0;
  color: rgba(17, 17, 17, 0.72);
  font-size: 14px;
}
.hero__panel ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: rgba(17, 17, 17, 0.74);
  font-size: 14px;
}
.heroStripe {
  position: absolute;
  top: -60px;
  left: -120px;
  width: 300px;
  height: 220px;
  background: linear-gradient(
    135deg,
    rgba(229, 57, 53, 0.96),
    rgba(185, 28, 28, 0.96)
  );
  transform: rotate(-18deg);
  border-radius: 24px;
  box-shadow: 0 24px 48px rgba(229, 57, 53, 0.18);
  z-index: -1;
}
.dotGrid {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 64px;
  height: 64px;
  opacity: 0.95;
}
.cornerAccent {
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: 130px;
  height: 130px;
  opacity: 0.9;
}

/* Section title ornament */
.titleRow {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.ornament {
  width: 28px;
  height: 28px;
  margin-top: 12px;
  flex: 0 0 auto;
}

/* Values honeycomb preview */
.honeycomb {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.hexCard {
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--white);
  padding: 18px;
  position: relative;
  overflow: hidden;
}
.hexCard--link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.hexCard--link:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}
.hexCard--link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: rgba(229, 57, 53, 0.22);
}
.hexCard--link {
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    border-color 0.18s ease;
}
.hexCard:before {
  content: "";
  position: absolute;
  inset: -20px;
  background: radial-gradient(
      circle at 20% 10%,
      rgba(229, 57, 53, 0.12),
      transparent 55%
    ),
    radial-gradient(circle at 90% 80%, rgba(17, 17, 17, 0.06), transparent 55%);
}
.hexCard > * {
  position: relative;
}
.hexCard h4 {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  font-weight: 900;
}
.hexCard p {
  margin: 8px 0 0;
  color: rgba(17, 17, 17, 0.72);
  font-size: 14px;
}

/* Products */
.productCard .meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 12px 0 12px;
}
.productsHelp {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(243, 244, 246, 0.92), #fff);
  padding: 18px;
}
.productsHelp .dotGrid {
  opacity: 0.6;
}
.productsHelp .eyebrow {
  margin: 0 0 10px;
}
.productsHelp__list {
  margin: 14px 0 0;
  padding-left: 18px;
  color: rgba(17, 17, 17, 0.74);
  font-size: 14px;
}
.productsHelp__list li {
  margin: 8px 0;
}
.productsHelp__actions {
  margin-top: 16px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.productsHelp .card__title {
  margin-bottom: 8px;
}
.productsHelp .card__text {
  font-size: 14px;
  margin: 0;
}
.specs {
  margin: 0;
  padding-left: 18px;
  color: rgba(17, 17, 17, 0.74);
  font-size: 14px;
}
.specs li {
  margin: 6px 0;
}
.divider {
  height: 1px;
  background: var(--border);
  margin: 18px 0;
}
.productActions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

/* Footer */
.footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.88);
  padding: 56px 0 40px;
}
.footer a {
  color: rgba(255, 255, 255, 0.92);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
}
.footer__title {
  margin: 0;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 14px;
  color: var(--white);
}
.footer__muted {
  color: rgba(255, 255, 255, 0.72);
  margin: 10px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 22px;
}
.footer__item p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.72);
}
.footer__bottom {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
}

/* Forms */
.form {
  display: grid;
  gap: 14px;
}
.field {
  display: grid;
  gap: 8px;
}
.field__error {
  margin: 0;
  font-size: 12px;
  font-weight: 750;
  color: rgba(229, 57, 53, 0.95);
}
.field.is-error input,
.field.is-error textarea {
  border-color: rgba(229, 57, 53, 0.55);
  box-shadow: 0 0 0 4px rgba(229, 57, 53, 0.12);
}
label {
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(17, 17, 17, 0.74);
}
input,
textarea {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--white);
}
textarea {
  min-height: 120px;
  resize: vertical;
}
input:focus-visible,
textarea:focus-visible {
  outline: none;
  box-shadow: var(--focus);
  border-color: rgba(229, 57, 53, 0.45);
}
.help {
  margin: 8px 0 0;
  color: rgba(17, 17, 17, 0.64);
  font-size: 14px;
}

/* Mobile nav */
.mobileNav {
  display: none;
  border-top: 1px solid rgba(229, 231, 235, 0.85);
}
.mobileNav__inner {
  padding: 10px 0 16px;
  display: grid;
  gap: 10px;
}
.mobileNav a {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
}
.mobileNav a:hover {
  background: rgba(17, 17, 17, 0.03);
}

/* Values page hex layout */
.hexOrbit {
  position: relative;
  min-height: 560px;
  background: linear-gradient(
    180deg,
    rgba(243, 244, 246, 0.92),
    rgba(255, 255, 255, 1)
  );
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: 28px;
  overflow: hidden;
}
.hexOrbit__dotGrid {
  position: absolute;
  top: 22px;
  left: 22px;
  width: 64px;
  height: 64px;
  opacity: 0.9;
}
.hexNode {
  position: absolute;
  width: min(260px, 44vw);
  text-align: center;
}
.hexNode__hex {
  width: 100%;
  aspect-ratio: 1 / 1.12;
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
  filter: drop-shadow(0 12px 26px rgba(17, 17, 17, 0.1));
}
.hexNode__title {
  margin: 0;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
}
.hexNode__text {
  margin: 8px auto 0;
  max-width: 38ch;
  color: rgba(17, 17, 17, 0.72);
  font-size: 14px;
}
.hexNode--center {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(280px, 50vw);
}
.hexNode--top {
  left: 50%;
  top: 10%;
  transform: translateX(-50%);
}
.hexNode--topRight {
  right: 8%;
  top: 24%;
}
.hexNode--bottomRight {
  right: 8%;
  bottom: 18%;
}
.hexNode--bottom {
  left: 50%;
  bottom: 6%;
  transform: translateX(-50%);
}
.hexNode--bottomLeft {
  left: 8%;
  bottom: 18%;
}
.hexNode--topLeft {
  left: 8%;
  top: 24%;
}

/* Values page (modern + photo-forward) */
.valuesIntro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: stretch;
}
.valuesIntro__panel {
  border-radius: 28px;
  border: 1px solid rgba(229, 231, 235, 0.9);
  background: linear-gradient(
    180deg,
    rgba(243, 244, 246, 0.92),
    rgba(255, 255, 255, 1)
  );
  padding: 22px;
  position: relative;
  overflow: hidden;
}
.valuesIntro__panel .dotGrid {
  top: 18px;
  right: 18px;
  width: 56px;
  height: 56px;
}
.valuesIntro__bullets {
  margin: 14px 0 0;
  padding-left: 18px;
  color: rgba(17, 17, 17, 0.74);
  font-size: 14px;
}

.valuesGallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--grid-gap);
  margin-top: 22px;
}
.valuesGallery .card {
  padding: 14px;
}
.valuesGallery__cap {
  margin: 10px 0 0;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  color: rgba(17, 17, 17, 0.66);
}

.valuesGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--grid-gap);
  margin-top: 26px;
}
.valueCard {
  padding: 22px;
}
.valueCard__img {
  margin: 12px 0 12px;
  aspect-ratio: 16 / 10;
  border-radius: 16px;
}
.valueCard__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.iconHex {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: rgba(229, 57, 53, 0.1);
  border: 1px solid rgba(229, 57, 53, 0.22);
  clip-path: polygon(
    25% 6.7%,
    75% 6.7%,
    100% 50%,
    75% 93.3%,
    25% 93.3%,
    0% 50%
  );
}
.iconHex svg {
  width: 20px;
  height: 20px;
  stroke: var(--red);
}
.valueCard__kicker {
  margin: 0;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  color: rgba(17, 17, 17, 0.58);
}
.valueCard__title {
  margin: 0;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 14px;
}
.valueCard__text {
  margin: 10px 0 0;
  color: rgba(17, 17, 17, 0.72);
  font-size: 14px;
}

/* Values page (v3: modern + unique layout) */
.valuesV3Hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--grid-gap);
  align-items: stretch;
}
.valuesV3Hero__copy {
  padding: 26px;
  border-radius: 28px;
  border: 1px solid rgba(229, 231, 235, 0.9);
  background: linear-gradient(
    180deg,
    rgba(243, 244, 246, 0.92),
    rgba(255, 255, 255, 1)
  );
  position: relative;
  overflow: hidden;
}
.valuesV3Hero__copy .dotGrid {
  top: 18px;
  right: 18px;
  width: 56px;
  height: 56px;
}
.valuesChips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.valuesCollage {
  position: relative;
  border-radius: 28px;
  border: 1px solid rgba(229, 231, 235, 0.9);
  background: linear-gradient(180deg, rgba(243, 244, 246, 0.92), #fff);
  padding: 16px;
  overflow: hidden;
}
.valuesCollage:before {
  content: "";
  position: absolute;
  top: -68px;
  left: -110px;
  width: 280px;
  height: 210px;
  background: linear-gradient(
    135deg,
    rgba(229, 57, 53, 0.96),
    rgba(185, 28, 28, 0.96)
  );
  transform: rotate(-18deg);
  border-radius: 22px;
  opacity: 0.95;
  box-shadow: 0 24px 48px rgba(229, 57, 53, 0.18);
}
.valuesCollage__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
}
.valuesCollage__big {
  grid-row: 1 / 3;
}
.valuesCollage__grid img {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  border: 1px solid rgba(229, 231, 235, 0.95);
  object-fit: cover;
}
.valuesCollage__badgeRow {
  position: relative;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.valuesBento {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--grid-gap);
  margin-top: 26px;
}
.valuesBentoCard {
  padding: 0;
  overflow: hidden;
}
.valuesBentoCard__inner {
  padding: 22px;
}
.valuesBentoCard__media {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-bottom: 1px solid var(--border);
  background: var(--gray);
  position: relative;
}
.valuesBentoCard__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.valuesBentoCard__media:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(17, 17, 17, 0),
    rgba(17, 17, 17, 0.18)
  );
}
.valuesBentoCard__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.valuesBentoCard__kicker {
  margin: 0;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  color: rgba(17, 17, 17, 0.58);
}
.valuesBentoCard__title {
  margin: 0;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 14px;
}
.valuesBentoCard__text {
  margin: 10px 0 0;
  color: rgba(17, 17, 17, 0.72);
  font-size: 14px;
}
.valuesBentoCard--feature {
  grid-column: span 7;
}
.valuesBentoCard--feature .valuesBentoCard__media {
  aspect-ratio: 16 / 8;
}
.valuesBentoCard--half {
  grid-column: span 5;
}
.valuesBentoCard--third {
  grid-column: span 4;
}

/* Values page (v4: circle/orbit layout) */
.valuesCircle {
  margin-top: 26px;
}
.valuesCircle__stage {
  position: relative;
  min-height: 760px;
  border-radius: 28px;
  border: 1px solid rgba(229, 231, 235, 0.9);
  background: linear-gradient(180deg, rgba(243, 244, 246, 0.92), #fff);
  overflow: hidden;
  padding: 34px;
}
.valuesCircle__stage:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 18% 12%,
      rgba(229, 57, 53, 0.1),
      transparent 55%
    ),
    radial-gradient(circle at 86% 82%, rgba(17, 17, 17, 0.06), transparent 55%);
}
.valuesCircle__ring {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(520px, 78vw);
  height: min(520px, 78vw);
  transform: translate(-50%, -50%);
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  box-shadow: inset 0 0 0 10px rgba(229, 57, 53, 0.02);
}
.valuesCircle__ring:after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 999px;
  border: 2px dashed rgba(229, 57, 53, 0.22);
  opacity: 0.55;
}
.valuesCircle__dotGrid {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 64px;
  height: 64px;
  opacity: 0.9;
}

.valuesCircle__center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: clamp(230px, 24vw, 300px);
  height: clamp(230px, 24vw, 300px);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(229, 231, 235, 0.95);
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 24px;
  z-index: 2;
}
.valuesCircle__mark {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--red), #b91c1c);
  position: relative;
  box-shadow: 0 16px 30px rgba(229, 57, 53, 0.18);
}
.valuesCircle__mark:after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-left: none;
  transform: skewX(-16deg);
  opacity: 0.95;
}
.valuesCircle__brand {
  margin: 14px 0 0;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 14px;
}
.valuesCircle__brand .red {
  color: var(--red);
}
.valuesCircle__blurb {
  margin: 10px 0 0;
  color: rgba(17, 17, 17, 0.72);
  font-size: 14px;
  max-width: 42ch;
}

.valuesCircle__list {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
  z-index: 3;
}
.valuesCircle__node {
  --a: 0deg;
  --r: clamp(150px, 22vw, 240px);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(var(--a)) translate(var(--r))
    rotate(calc(-1 * var(--a)));
  width: clamp(200px, 20vw, 240px);
}
.valuesCircle__node:nth-child(1) {
  --a: -90deg;
}
.valuesCircle__node:nth-child(2) {
  --a: -30deg;
}
.valuesCircle__node:nth-child(3) {
  --a: 30deg;
}
.valuesCircle__node:nth-child(4) {
  --a: 90deg;
}
.valuesCircle__node:nth-child(5) {
  --a: 150deg;
}
.valuesCircle__node:nth-child(6) {
  --a: 210deg;
}

.valuesCircleCard {
  padding: 18px;
  border-radius: 22px;
}
.valuesCircleCard__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.valuesCircleCard__thumb {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(229, 231, 235, 0.95);
  object-fit: cover;
  box-shadow: 0 10px 22px rgba(17, 17, 17, 0.1);
}
.valuesCircleCard__kicker {
  margin: 0;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  color: rgba(17, 17, 17, 0.58);
}
.valuesCircleCard__title {
  margin: 0;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 14px;
}
.valuesCircleCard__text {
  margin: 10px 0 0;
  color: rgba(17, 17, 17, 0.72);
  font-size: 14px;
}

/* Values page (tabs + media) */
.valuesTabs {
  position: relative;
  margin-top: 8px;
}
.valuesTabs__wrap {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  border-radius: 28px;
  border: 1px solid rgba(229, 231, 235, 0.9);
  background: linear-gradient(180deg, rgba(243, 244, 246, 0.92), #fff);
  overflow: hidden;
  padding: 22px;
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: var(--grid-gap);
  align-items: start;
}
.valuesTabs__dotGrid {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 44px;
  height: 44px;
  opacity: 0.9;
}
.valuesTabs__nav {
  display: grid;
  gap: 10px;
  margin-top: 48px;
}
.valuesTabs__tab {
  width: 100%;
  text-align: left;
  border-radius: 18px;
  border: 1px solid rgba(229, 231, 235, 0.95);
  background: rgba(255, 255, 255, 0.86);
  padding: 14px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    border-color 0.18s ease;
}
.valuesTabs__tab:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(17, 17, 17, 0.08);
  border-color: rgba(229, 57, 53, 0.22);
}
.valuesTabs__tab:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}
.valuesTabs__tab[aria-selected="true"] {
  border-color: rgba(229, 57, 53, 0.38);
  background: rgba(229, 57, 53, 0.04);
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.1);
}
.valuesTabs__tab[aria-selected="true"] .valuesTabs__num {
  background: var(--red);
  color: #fff;
  border-color: rgba(229, 57, 53, 0.55);
}
.valuesTabs__num {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 950;
  letter-spacing: 0.08em;
  font-size: 12px;
  border: 1px solid rgba(229, 231, 235, 0.95);
  background: #fff;
  color: rgba(17, 17, 17, 0.78);
  flex: 0 0 auto;
}
.valuesTabs__label {
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 13px;
  color: rgba(17, 17, 17, 0.85);
}
.valuesTabs__panels {
  position: relative;
  transition: height 320ms ease;
}
.valuesTabs__panel {
  border-radius: 24px;
  border: 1px solid rgba(229, 231, 235, 0.95);
  background: #fff;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.08);
  position: absolute;
  inset: 0;
  opacity: 1;
  transition: opacity 320ms ease;
  will-change: opacity;
}
.valuesTabs__panel.is-hidden {
  opacity: 0;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .valuesTabs__panels {
    transition: none;
  }
  .valuesTabs__panel {
    transition: none;
  }
}
.valuesTabs__media {
  position: relative;
  aspect-ratio: 16 / 8;
  background: var(--gray);
}
.valuesTabs:before {
  content: "";
  position: absolute;
  top: -70px;
  left: -90px;
  width: 150px;
  height: 220px;
  background: linear-gradient(
    135deg,
    rgba(229, 57, 53, 0.3),
    rgba(185, 28, 28, 0.3)
  );
  transform: rotate(-18deg);
  border-radius: 24px;
  opacity: 0.95;
}
.valuesTabs__media:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(17, 17, 17, 0),
    rgba(17, 17, 17, 0.18)
  );
}
.valuesTabs__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.valuesTabs__content {
  padding: 22px;
}

.valuesStrip {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--grid-gap);
}
.valuesStrip .card {
  padding: 14px;
}
.valuesStrip__title {
  margin: 10px 0 0;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  color: rgba(17, 17, 17, 0.66);
}
.valuesStrip__text {
  margin: 8px 0 0;
  color: rgba(17, 17, 17, 0.72);
  font-size: 14px;
}

/* Utility */
.srOnly {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Responsive */
@media (max-width: 980px) {
  .hero__wrap {
    grid-template-columns: 1fr;
  }
  .hero__panel {
    min-height: auto;
  }
  .hero--bg:before {
    background-position: center 30%;
  }
  .grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer__top {
    grid-template-columns: 1fr;
  }
  .hexOrbit {
    min-height: 820px;
  }
  .hexNode {
    width: min(280px, 70vw);
  }
  .hexNode--topRight {
    right: 50%;
    top: 28%;
    transform: translateX(50%);
  }
  .hexNode--bottomRight {
    right: 50%;
    bottom: 22%;
    transform: translateX(50%);
  }
  .hexNode--bottomLeft {
    left: 50%;
    bottom: 22%;
    transform: translateX(-50%);
  }
  .hexNode--topLeft {
    left: 50%;
    top: 28%;
    transform: translateX(-50%);
  }

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

  .valuesV3Hero {
    grid-template-columns: 1fr;
  }
  .valuesBento {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .valuesBentoCard--feature {
    grid-column: span 6;
  }
  .valuesBentoCard--half {
    grid-column: span 6;
  }
  .valuesBentoCard--third {
    grid-column: span 3;
  }
  .valuesStrip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .valuesCircle__stage {
    min-height: auto;
    padding: 22px;
  }
  .valuesCircle__ring {
    display: none;
  }
  .valuesCircle__center {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 100%;
    height: auto;
    border-radius: 28px;
    align-items: flex-start;
    text-align: left;
  }
  .valuesCircle__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--grid-gap);
    margin-top: 18px;
    height: auto;
  }
  .valuesCircle__node {
    position: static;
    transform: none;
    width: auto;
  }

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

  .contactHero {
    grid-template-columns: 1fr;
  }
  .contactLayout {
    grid-template-columns: 1fr;
  }
  .contactActions {
    grid-template-columns: 1fr;
  }
  .form--contact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .nav {
    display: none;
  }
  .menuBtn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }

  /* Header logo: prevent cramped mobile stretching */
  .brand__logo {
    height: 44px;
    max-width: min(210px, 56vw);
    width: auto;
    object-fit: contain;
  }
  .mobileNav[data-open="true"] {
    display: block;
  }
  .title {
    font-size: 32px;
  }
  .hero__headline {
    font-size: 44px;
  }
  .grid--2 {
    grid-template-columns: 1fr;
  }
  .grid--3 {
    grid-template-columns: 1fr;
  }
  .grid--4 {
    grid-template-columns: 1fr;
  }
  .honeycomb {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 56px 0;
  }

  .valuesGrid {
    grid-template-columns: 1fr;
  }
  .valuesGallery {
    grid-template-columns: 1fr;
  }

  .valuesBento {
    grid-template-columns: 1fr;
  }
  .valuesBentoCard--feature,
  .valuesBentoCard--half,
  .valuesBentoCard--third {
    grid-column: auto;
  }
  .valuesStrip {
    grid-template-columns: 1fr;
  }

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

  /* Values: make tabs horizontally scrollable on mobile only */
  .valuesTabs__nav {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
    padding-bottom: 6px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .valuesTabs__tab {
    min-width: 210px;
    scroll-snap-align: start;
    width: auto;
    flex: 0 0 auto;
  }

  .valuesTabs__media {
    aspect-ratio: 16 / 9;
  }

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

  /* Products: hide category cards section on mobile */
  .productsCats {
    display: none;
  }
}

/* WhatsApp floating widget */
.waFloat {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: grid;
  justify-items: end;
  gap: 10px;
  pointer-events: none;
}
.waFloat * {
  box-sizing: border-box;
}
.waFloat[data-visible="false"] {
  opacity: 0;
  transform: translateY(10px);
}
.waFloat[data-visible="true"] {
  opacity: 1;
  transform: translateY(0);
}
.waFloat {
  transition: opacity 220ms ease, transform 220ms ease;
}

.waFloat__btn {
  pointer-events: auto;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: transparent;
  color: inherit;
  box-shadow: 0 16px 34px rgba(17, 17, 17, 0.18);
  border: 0;
  text-decoration: none;
}
.waFloat__btn:hover {
  filter: brightness(0.98);
}
.waFloat__btn:focus-visible {
  outline: none;
  box-shadow: var(--focus), 0 16px 34px rgba(17, 17, 17, 0.18);
}
.waFloat__btn .waFloat__icon {
  width: 56px;
  height: 56px;
  display: block;
  border-radius: 16px;
}

.waFloat__bubble {
  pointer-events: auto;
  max-width: min(320px, calc(100vw - 36px));
  border-radius: 18px;
  border: 1px solid rgba(229, 231, 235, 0.95);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(160%) blur(10px);
  box-shadow: 0 16px 34px rgba(17, 17, 17, 0.14);
  padding: 12px 12px;
  position: relative;
  overflow: hidden;
}
.waFloat__bubble:before {
  content: "";
  position: absolute;
  inset: -20px;
  background: radial-gradient(
      circle at 18% 12%,
      rgba(229, 57, 53, 0.08),
      transparent 55%
    ),
    radial-gradient(circle at 88% 76%, rgba(17, 17, 17, 0.06), transparent 60%);
  opacity: 0.95;
}
.waFloat__bubble > * {
  position: relative;
  z-index: 1;
}
.waFloat__msg {
  margin: 0;
  padding-right: 34px;
  color: rgba(17, 17, 17, 0.78);
  font-size: 13px;
  line-height: 1.35;
}
.waFloat__close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 30px;
  height: 30px;
  border-radius: 12px;
  border: 1px solid rgba(229, 231, 235, 0.95);
  background: rgba(255, 255, 255, 0.9);
  color: rgba(17, 17, 17, 0.7);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 18px;
  line-height: 1;
}
.waFloat__close:hover {
  background: rgba(17, 17, 17, 0.03);
}
.waFloat__close:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

.waFloat__bubble.is-hidden {
  display: none;
}

@media (max-width: 760px) {
  .waFloat {
    right: 14px;
    bottom: 14px;
  }
  .waFloat__btn {
    width: 52px;
    height: 52px;
  }
  .waFloat__btn .waFloat__icon {
    width: 52px;
    height: 52px;
    border-radius: 15px;
  }
  .waFloat__msg {
    font-size: 12.5px;
  }
}
