:root {
  --green: #83ae48;
  --green-strong: #74a13a;
  --green-soft: #e9f1df;
  --navy: #071f36;
  --navy-deep: #06192d;
  --ink: #101116;
  --muted: #707586;
  --muted-2: #9aa3b4;
  --line: #e5e8ee;
  --panel: #f6f8f9;
  --page-soft: #f7f9f6;
  --white: #fff;
  --radius: 8px;
  --shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body,
button,
input {
  font: inherit;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button {
  border: 0;
  cursor: pointer;
}

.shell {
  width: min(1440px, calc(100% - 48px));
  margin-inline: auto;
}

@media (min-width: 1920px) {
  .shell,
  .story-actions {
    width: min(75vw, 1920px);
  }
}

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

.site-header {
  position: relative;
  z-index: 20;
  background: var(--white);
}

.topbar {
  height: clamp(36px, 2.5vw, 64px);
  background: var(--navy);
  color: var(--white);
  font-size: clamp(12px, 0.7292vw, 18.6667px);
  line-height: 1;
}

.topbar__inner,
.topbar__message,
.topbar__tools,
.topbar__tool,
.language {
  display: flex;
  align-items: center;
}

.topbar__inner {
  height: 100%;
  justify-content: space-between;
}

.topbar__message,
.topbar__tools {
  gap: min(20px, 1.0417vw);
}

.topbar__rule {
  color: rgba(255, 255, 255, 0.5);
}

.topbar svg {
  width: clamp(14px, 0.9375vw, 24px);
  height: clamp(14px, 0.9375vw, 24px);
  margin-right: min(4px, 0.2083vw);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.language {
  gap: min(4px, 0.2083vw);
  padding: 0;
  background: transparent;
  color: inherit;
  text-transform: uppercase;
}

.language svg:last-child {
  width: clamp(12px, 0.7292vw, 18.6667px);
  height: clamp(12px, 0.7292vw, 18.6667px);
  margin: 0;
}

.navbar {
  height: clamp(72px, 5vw, 128px);
  background: var(--white);
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.12);
}

.navbar__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: min(28px, 1.4583vw);
}

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

.brand img {
  width: clamp(34px, 2.0833vw, 53.3333px);
  height: clamp(48px, 2.9167vw, 74.6667px);
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: min(12px, 0.625vw);
  flex: 0 0 auto;
  min-width: 0;
  margin-left: 0;
}

.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-links a {
  padding: min(4px, 0.2083vw) min(8px, 0.4167vw);
  color: var(--ink);
  font-size: clamp(13px, 0.8333vw, 21.3333px);
  font-weight: 500;
  line-height: 1.25;
  white-space: nowrap;
}

.nav-parent {
  display: inline-flex;
  align-items: center;
  gap: min(4px, 0.2083vw);
}

.nav-parent::after {
  content: "";
  width: min(6px, 0.3125vw);
  height: min(6px, 0.3125vw);
  margin-top: -2px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg);
}

.nav-submenu {
  position: absolute;
  top: calc(100% + min(18px, 0.9375vw));
  left: 50%;
  z-index: 30;
  min-width: min(172px, 8.9583vw);
  padding: min(8px, 0.4167vw);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.nav-submenu a {
  display: block;
  padding: min(10px, 0.5208vw) min(12px, 0.625vw);
  border-radius: 6px;
  font-size: clamp(12px, 0.7292vw, 14px);
}

.nav-submenu a:hover {
  background: #f1f5ec;
}

.nav-item--has-submenu:hover .nav-submenu,
.nav-item--has-submenu:focus-within .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--green);
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: min(12px, 0.625vw);
  flex: 0 0 auto;
}

.icon-button,
.menu-button {
  width: clamp(32px, 1.875vw, 48px);
  height: clamp(32px, 1.875vw, 48px);
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: transparent;
  color: #1e2630;
}

.icon-button:hover,
.menu-button:hover {
  background: #f1f5ec;
}

.icon-button svg,
.menu-button svg,
.button svg {
  width: clamp(18px, 1.0417vw, 26.6667px);
  height: clamp(18px, 1.0417vw, 26.6667px);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-button {
  display: none;
}

.whatsapp-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: min(6px, 0.3125vw);
  height: clamp(42px, 2.5vw, 64px);
  padding: 0 min(24px, 1.25vw);
  border-radius: 999px;
  background: linear-gradient(180deg, #60d669 0%, #1faf38 100%);
  color: var(--white);
  font-size: clamp(13px, 0.8333vw, 21.3333px);
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.navbar .whatsapp-pill {
  width: clamp(132px, 8.2292vw, 210.6667px);
  height: clamp(44px, 2.9167vw, 74.6667px);
  padding-inline: min(24px, 1.25vw);
  font-size: clamp(12px, 0.8333vw, 21.3333px);
}

.whatsapp-mark {
  width: clamp(20px, 1.25vw, 32px);
  height: clamp(20px, 1.25vw, 32px);
  display: block;
  flex: 0 0 auto;
  background: currentColor;
  font-size: 0;
  line-height: 0;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19.05 4.91A9.82 9.82 0 0 0 12.04 2C6.58 2 2.13 6.45 2.13 11.91c0 1.75.46 3.45 1.32 4.95L2.05 22l5.25-1.38a9.93 9.93 0 0 0 4.74 1.21h.01c5.46 0 9.91-4.45 9.91-9.91 0-2.65-1.03-5.14-2.91-7.01ZM12.04 20.15h-.01A8.22 8.22 0 0 1 7.85 19l-.3-.18-3.12.82.83-3.04-.2-.31a8.18 8.18 0 0 1-1.26-4.38c0-4.54 3.7-8.23 8.24-8.23 2.2 0 4.27.86 5.82 2.42a8.18 8.18 0 0 1 2.41 5.82c-.01 4.54-3.7 8.23-8.23 8.23Zm4.52-6.16c-.25-.12-1.47-.72-1.69-.81-.23-.08-.39-.12-.56.12-.16.25-.64.81-.78.97-.14.16-.29.18-.54.06-.25-.12-1.05-.39-2-1.23-.74-.66-1.24-1.47-1.38-1.72-.14-.25-.02-.38.11-.5.11-.11.25-.29.37-.43.12-.14.16-.25.25-.41.08-.16.04-.31-.02-.43-.06-.12-.56-1.34-.76-1.84-.2-.48-.4-.42-.56-.43h-.47c-.16 0-.43.06-.66.31-.23.25-.87.85-.87 2.07s.89 2.4 1.01 2.56c.12.16 1.75 2.67 4.24 3.74.59.26 1.05.41 1.41.52.59.19 1.13.16 1.56.1.48-.07 1.47-.6 1.68-1.18.21-.58.21-1.07.14-1.18-.07-.1-.23-.16-.48-.28Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19.05 4.91A9.82 9.82 0 0 0 12.04 2C6.58 2 2.13 6.45 2.13 11.91c0 1.75.46 3.45 1.32 4.95L2.05 22l5.25-1.38a9.93 9.93 0 0 0 4.74 1.21h.01c5.46 0 9.91-4.45 9.91-9.91 0-2.65-1.03-5.14-2.91-7.01ZM12.04 20.15h-.01A8.22 8.22 0 0 1 7.85 19l-.3-.18-3.12.82.83-3.04-.2-.31a8.18 8.18 0 0 1-1.26-4.38c0-4.54 3.7-8.23 8.24-8.23 2.2 0 4.27.86 5.82 2.42a8.18 8.18 0 0 1 2.41 5.82c-.01 4.54-3.7 8.23-8.23 8.23Zm4.52-6.16c-.25-.12-1.47-.72-1.69-.81-.23-.08-.39-.12-.56.12-.16.25-.64.81-.78.97-.14.16-.29.18-.54.06-.25-.12-1.05-.39-2-1.23-.74-.66-1.24-1.47-1.38-1.72-.14-.25-.02-.38.11-.5.11-.11.25-.29.37-.43.12-.14.16-.25.25-.41.08-.16.04-.31-.02-.43-.06-.12-.56-1.34-.76-1.84-.2-.48-.4-.42-.56-.43h-.47c-.16 0-.43.06-.66.31-.23.25-.87.85-.87 2.07s.89 2.4 1.01 2.56c.12.16 1.75 2.67 4.24 3.74.59.26 1.05.41 1.41.52.59.19 1.13.16 1.56.1.48-.07 1.47-.6 1.68-1.18.21-.58.21-1.07.14-1.18-.07-.1-.23-.16-.48-.28Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: min(10px, 0.5208vw);
  min-width: max-content;
  height: min(56px, 2.9167vw);
  padding: 0 min(28px, 1.4583vw);
  border-radius: 999px;
  font-size: clamp(13px, 0.8333vw, 16px);
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.button--primary {
  background: var(--green);
  color: var(--white);
}

.button--primary:hover {
  background: var(--green-strong);
}

.button--outline {
  border: 1px solid var(--green);
  background: transparent;
  color: var(--green);
}

.button--small {
  height: min(48px, 2.5vw);
  padding-inline: min(28px, 1.4583vw);
}

.button--details::after {
  margin-left: min(18px, 0.9375vw);
  content: "→";
  font-size: 1em;
  font-weight: 500;
  line-height: 1;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: min(6px, 0.3125vw);
  color: var(--green-strong);
  font-size: clamp(13px, 0.8333vw, 16px);
  font-weight: 500;
  white-space: nowrap;
}

.text-link::after {
  content: "→";
  font-size: 0.95em;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: min(8px, 0.4167vw);
  margin: 0;
  color: var(--green-strong);
  font-size: clamp(12px, 0.8333vw, 16px);
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow span {
  width: min(24px, 1.25vw);
  height: 2px;
  flex: 0 0 auto;
  background: currentColor;
}

.section {
  position: relative;
  padding: min(80px, 4.1667vw) 0;
}

.section-head {
  min-height: min(126px, 6.5625vw);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: min(48px, 2.5vw);
  margin-bottom: min(48px, 2.5vw);
}

.section-head > div {
  min-width: 0;
}

.section-head h2 {
  max-width: min(780px, 40.625vw);
  margin: min(14px, 0.7292vw) 0 min(14px, 0.7292vw);
  color: var(--ink);
  font-size: clamp(34px, 2.5vw, 48px);
  font-weight: 800;
  line-height: 1.08;
}

.section-head p:not(.eyebrow) {
  max-width: min(720px, 37.5vw);
  margin: 0;
  color: var(--muted);
  font-size: clamp(13px, 0.8333vw, 16px);
  line-height: 1.55;
}

.section-head .text-link {
  margin-top: min(70px, 3.6458vw);
}

.hero {
  position: relative;
  height: min(936px, 48.75vw);
  min-height: 0;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.hero__bg,
.hero::before,
.hero::after {
  position: absolute;
  inset: 0;
  content: "";
}

.hero__bg {
  z-index: 0;
  left: 0;
  right: 0;
  width: auto;
  background-image: url("assets/hero-bg.png?v=20260610h");
  background-position: calc(50% + 96px) center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: none;
}

@media (min-width: 768px) {
  .hero__bg {
    background-image: url("assets/hero-bg@2x.png?v=20260610h");
    background-image: image-set(
      url("assets/hero-bg@2x.webp?v=20260610h") type("image/webp") 1x,
      url("assets/hero-bg@2x.png?v=20260610h") type("image/png") 1x
    );
    background-size: calc(100% + 240px) auto;
  }
}

.hero::before {
  display: block;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(6, 25, 45, 0.86) 0%, rgba(6, 25, 45, 0.72) 27%, rgba(6, 25, 45, 0.38) 49%, rgba(6, 25, 45, 0.1) 70%, rgba(6, 25, 45, 0) 100%),
    linear-gradient(180deg, rgba(6, 25, 45, 0.04) 0%, rgba(6, 25, 45, 0.32) 100%);
}

.hero::after {
  display: block;
  z-index: 1;
  top: auto;
  height: 26%;
  background: linear-gradient(180deg, rgba(6, 25, 45, 0), rgba(6, 25, 45, 0.28));
}

.hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  width: min(1440px, 75vw);
}

.hero__copy {
  width: min(700px, 36.4583vw);
  padding-top: min(183px, 9.5313vw);
  transform: none;
}

@media (min-width: 1920px) {
  .hero__content {
    width: min(75vw, 1920px);
  }

  .hero__copy {
    transform: none;
  }
}

.hero__copy .eyebrow {
  gap: min(12px, 0.625vw);
  color: var(--green);
  font-size: min(18px, 0.9375vw);
  line-height: min(24px, 1.25vw);
  text-transform: none;
}

.hero__copy .eyebrow span {
  width: min(32px, 1.6667vw);
  height: min(2px, 0.1042vw);
}

.hero h1 {
  max-width: min(603px, 31.4063vw);
  margin: min(20px, 1.0417vw) 0 min(20px, 1.0417vw);
  color: var(--white);
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: min(60px, 3.125vw);
  font-weight: 700;
  line-height: min(64px, 3.3333vw);
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
  color: var(--green);
}

.hero__copy p:not(.eyebrow) {
  width: min(577px, 30.0521vw);
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: min(18px, 0.9375vw);
  line-height: min(24px, 1.25vw);
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: min(44px, 2.2917vw);
  margin-top: min(40px, 2.0833vw);
}

.hero__actions .button {
  height: min(56px, 2.9167vw);
  padding-inline: min(28px, 1.4583vw);
  font-size: min(18px, 0.9375vw);
  font-weight: 500;
}

.video-link {
  display: inline-flex;
  align-items: center;
  gap: min(12px, 0.625vw);
  color: var(--white);
  font-size: min(16px, 0.8333vw);
  font-weight: 500;
  white-space: nowrap;
}

.video-link span {
  width: min(40px, 2.0833vw);
  height: min(40px, 2.0833vw);
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
}

.video-link svg {
  width: 46%;
  height: 46%;
  fill: currentColor;
}

.hero-stats {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: min(84px, 4.375vw);
  width: 100vw;
  height: min(100px, 5.2083vw);
  transform: translateX(-50%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(4px);
}

.hero-stats div {
  position: absolute;
  top: min(20px, 1.0417vw);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 0;
  height: min(60px, 3.125vw);
  padding: 0;
  border-right: 0;
}

.hero-stats div:nth-child(1) {
  left: min(320px, 16.6667vw);
  width: min(136px, 7.0833vw);
}

.hero-stats div:nth-child(2) {
  left: min(676px, 35.2083vw);
  width: min(110px, 5.7292vw);
}

.hero-stats div:nth-child(3) {
  left: min(1007px, 52.4479vw);
  width: min(118px, 6.1458vw);
}

.hero-stats div:nth-child(4) {
  left: min(1345px, 70.0521vw);
  width: min(255px, 13.2813vw);
}

.hero-stats div:not(:first-child)::before {
  position: absolute;
  top: min(10px, 0.5208vw);
  left: max(-111px, -5.7813vw);
  width: 1px;
  height: min(40px, 2.0833vw);
  background: rgba(255, 255, 255, 0.18);
  content: "";
}

.hero-stats strong {
  color: var(--white);
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: min(36px, 1.875vw);
  font-weight: 700;
  line-height: min(40px, 2.0833vw);
}

.hero-stats span {
  margin-top: 0;
  color: #b7bdcd;
  font-size: min(16px, 0.8333vw);
  line-height: min(20px, 1.0417vw);
  white-space: nowrap;
}

.brand-strip {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 0;
  width: 100vw;
  height: min(84px, 4.375vw);
  background: rgba(0, 0, 0, 0.02);
  transform: translateX(-50%);
  backdrop-filter: blur(4px);
}

.brand-strip__inner {
  position: relative;
  width: 100%;
  max-width: none;
  height: 100%;
  margin: 0;
}

.brand-strip p {
  position: absolute;
  top: min(32px, 1.6667vw);
  left: min(320px, 16.6667vw);
  width: min(126px, 6.5625vw);
  height: min(20px, 1.0417vw);
  margin: 0;
  color: var(--white);
  font-size: min(14px, 0.7292vw);
  font-weight: 400;
  line-height: min(20px, 1.0417vw);
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-logos {
  position: absolute;
  top: min(22px, 1.1458vw);
  left: min(466px, 24.2708vw);
  width: min(1134px, 59.0625vw);
  height: min(40px, 2.0833vw);
  min-width: 0;
}

.brand-logos img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (min-width: 1920px) {
  .hero-stats {
    bottom: 4.375vw;
    height: 5.2083vw;
  }

  .hero-stats div {
    top: 1.0417vw;
    height: 3.125vw;
  }

  .hero-stats div:nth-child(1) {
    left: 16.6667vw;
    width: 7.0833vw;
  }

  .hero-stats div:nth-child(2) {
    left: 35.2083vw;
    width: 5.7292vw;
  }

  .hero-stats div:nth-child(3) {
    left: 52.4479vw;
    width: 6.1458vw;
  }

  .hero-stats div:nth-child(4) {
    left: 70.0521vw;
    width: 13.2813vw;
  }

  .hero-stats div:not(:first-child)::before {
    top: 0.5208vw;
    left: -5.7813vw;
    height: 2.0833vw;
  }

  .hero-stats strong {
    font-size: 1.875vw;
    line-height: 2.0833vw;
  }

  .hero-stats span {
    font-size: 0.8333vw;
    line-height: 1.0417vw;
  }

  .brand-strip {
    height: 4.375vw;
  }

  .brand-strip p {
    top: 1.6667vw;
    left: 16.6667vw;
    width: 6.5625vw;
    height: 1.0417vw;
    font-size: 0.7292vw;
    line-height: 1.0417vw;
  }

  .brand-logos {
    top: 1.1458vw;
    left: 24.2708vw;
    width: 59.0625vw;
    height: 2.0833vw;
  }
}

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

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: min(40px, 2.0833vw);
}

.category-card {
  height: min(280px, 14.5833vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  text-align: center;
}

.category-card:hover {
  border-color: rgba(131, 174, 72, 0.45);
  box-shadow: var(--shadow);
}

.category-icon {
  width: min(112px, 5.8333vw);
  height: min(112px, 5.8333vw);
  display: grid;
  place-items: center;
  margin-bottom: min(20px, 1.0417vw);
  border-radius: min(24px, 1.25vw);
  background: #e7efe0;
}

.category-icon img {
  width: min(72px, 3.75vw);
  height: auto;
  max-height: min(72px, 3.75vw);
  object-fit: contain;
}

.category-card strong {
  color: var(--ink);
  font-size: clamp(16px, 1.25vw, 24px);
  font-weight: 800;
  line-height: 1.25;
}

.category-card small {
  min-width: min(84px, 4.375vw);
  margin-top: min(14px, 0.7292vw);
  padding: min(7px, 0.3646vw) min(18px, 0.9375vw);
  border-radius: 999px;
  background: #edf1f5;
  color: #b5bfcd;
  font-size: clamp(12px, 0.8333vw, 16px);
  line-height: 1;
}

.products {
  background: var(--page-soft);
}

.products .section-head {
  min-height: min(126px, 6.5625vw);
  margin-bottom: min(24px, 1.25vw);
}

.filters {
  display: flex;
  align-items: center;
  gap: min(8px, 0.4167vw);
  height: min(44px, 2.2917vw);
  margin-bottom: min(40px, 2.0833vw);
}

.filters button {
  height: min(44px, 2.2917vw);
  padding: 0 min(30px, 1.5625vw);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: #aab3c4;
  font-size: clamp(11px, 0.7292vw, 14px);
  line-height: 1;
  white-space: nowrap;
}

.filters button.is-selected {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
  box-shadow: 0 8px 16px rgba(131, 174, 72, 0.24);
}

.product-layout {
  display: flex;
  align-items: stretch;
  gap: min(20px, 1.0417vw);
}

.product-main {
  flex: 0 0 min(480px, 25vw);
  height: min(528px, 27.5vw);
  overflow: hidden;
  border-radius: var(--radius);
  background: linear-gradient(145deg, #0a1324 0%, #111d28 48%, #0f251f 100%);
  color: var(--white);
}

.product-main__ribbon {
  height: min(60px, 3.125vw);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 min(20px, 1.0417vw);
  background: var(--green);
  color: var(--white);
}

.product-main__ribbon span {
  font-size: clamp(12px, 0.8333vw, 16px);
  font-weight: 800;
  line-height: 1;
}

.product-main__ribbon strong {
  display: flex;
  align-items: center;
  gap: min(5px, 0.2604vw);
  color: var(--white);
  font-size: clamp(11px, 0.7292vw, 14px);
  font-weight: 800;
  line-height: 1;
}

.product-main__ribbon strong span {
  padding: min(3px, 0.1563vw) min(5px, 0.2604vw);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.18);
  font-size: inherit;
}

.product-main__ribbon i {
  font-style: normal;
  opacity: 0.82;
}

.product-main__image {
  position: relative;
  height: min(256px, 13.3333vw);
  margin: min(20px, 1.0417vw) min(20px, 1.0417vw) 0;
  overflow: hidden;
  border-radius: 6px;
  background: #d9dee5;
}

.product-main__image > img:first-child,
.product-card__media > img:first-child,
.story-gallery img,
.proof-card__media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-main__image > img:first-child {
  object-position: 50% 50%;
}

.card-logo {
  position: absolute;
  top: min(15px, 0.7813vw);
  left: min(12px, 0.625vw);
  width: min(70px, 3.6458vw);
  height: min(21px, 1.0938vw);
  aspect-ratio: 70 / 21;
  object-fit: fill;
  opacity: 1;
  pointer-events: none;
}

.product-main .card-logo {
  top: min(14px, 0.7292vw);
  left: min(16px, 0.8333vw);
  width: min(76px, 3.9583vw);
  height: min(24px, 1.25vw);
  aspect-ratio: 76 / 24;
}

.product-main__body {
  padding: min(16px, 0.8333vw) min(20px, 1.0417vw);
}

.tags {
  display: flex;
  align-items: center;
  gap: min(8px, 0.4167vw);
  margin-bottom: min(10px, 0.5208vw);
}

.tags span {
  display: inline-flex;
  align-items: center;
  height: min(28px, 1.4583vw);
  padding: 0 min(12px, 0.625vw);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #dfe9cb;
  font-size: clamp(11px, 0.7292vw, 14px);
  font-weight: 700;
}

.tags span:first-child {
  background: var(--green);
  color: var(--white);
}

.product-main h3 {
  margin: 0 0 min(8px, 0.4167vw);
  color: var(--white);
  font-size: clamp(20px, 1.4583vw, 28px);
  font-weight: 800;
  line-height: 1.15;
}

.specs {
  display: flex;
  align-items: center;
  gap: min(12px, 0.625vw);
  margin: 0 0 min(10px, 0.5208vw);
  padding: 0;
  color: #c9d1dd;
}

.specs div {
  position: relative;
  display: flex;
}

.specs div + div {
  padding-left: min(12px, 0.625vw);
}

.specs div + div::before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: min(20px, 1.0417vw);
  background: rgba(255, 255, 255, 0.24);
  content: "";
  transform: translateY(-50%);
}

.specs dt {
  font-size: clamp(16px, 1.25vw, 24px);
  font-weight: 500;
  line-height: 1;
}

.product-main .price-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: min(20px, 1.0417vw);
}

.product-main .price-row > div {
  min-width: 0;
}

.product-main .price-row span {
  display: block;
  margin-bottom: min(4px, 0.2083vw);
  color: #aeb7c6;
  font-size: clamp(13px, 0.9375vw, 18px);
  font-weight: 600;
}

.product-main .price-row strong {
  display: block;
  max-width: none;
  color: var(--white);
  font-size: clamp(18px, 1.3021vw, 25px);
  font-weight: 800;
  line-height: 1.08;
  white-space: nowrap;
}

.product-side {
  flex: 1 1 auto;
  min-width: 0;
  display: grid;
  grid-template-rows: min(332px, 17.2917vw) min(176px, 9.1667vw);
  gap: min(20px, 1.0417vw);
}

.product-side__top,
.product-side__bottom {
  display: grid;
  min-width: 0;
  gap: min(16px, 0.8333vw);
}

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

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

.product-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.product-card__media {
  position: relative;
  height: min(166px, 8.6458vw);
  overflow: hidden;
  background: #dfe5ec;
}

.product-card__media > img:first-child {
  object-position: 50% 50%;
}

.product-card__body {
  display: flex;
  min-height: calc(100% - min(166px, 8.6458vw));
  flex-direction: column;
  padding: min(14px, 0.7292vw) min(16px, 0.8333vw);
}

.product-card h3 {
  margin: 0 0 min(8px, 0.4167vw);
  color: #07172b;
  font-size: clamp(13px, 0.9375vw, 18px);
  font-weight: 700;
  line-height: 1.2;
}

.product-card p {
  display: flex;
  flex-wrap: wrap;
  gap: min(10px, 0.5208vw);
  margin: 0 0 min(8px, 0.4167vw);
  color: #727a8d;
  font-size: clamp(10px, 0.7292vw, 14px);
  line-height: 1.2;
}

.product-card .price-row {
  display: grid;
  gap: min(9px, 0.4688vw);
  margin-top: auto;
}

.product-card .price-row span {
  color: var(--ink);
  font-size: clamp(12px, 0.8333vw, 16px);
  font-weight: 800;
  line-height: 1.1;
}

.product-card .price-row span::before {
  display: block;
  margin-bottom: min(4px, 0.2083vw);
  color: #8992a4;
  font-size: clamp(9px, 0.625vw, 12px);
  font-weight: 500;
  content: "Ref. Price";
}

.product-card .price-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: min(16px, 0.8333vw);
  height: min(36px, 1.875vw);
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font-size: clamp(10px, 0.7292vw, 14px);
  font-weight: 600;
  white-space: nowrap;
}

.product-card .price-row a::after {
  content: "→";
  font-size: 1em;
  font-weight: 500;
  line-height: 1;
}

.product-card--wide {
  display: grid;
  grid-template-columns: min(182px, 9.4792vw) minmax(0, 1fr);
}

.product-card--wide .product-card__media {
  height: 100%;
}

.product-card--wide .product-card__body {
  position: relative;
  min-height: 0;
  gap: 0;
  padding: min(12px, 0.625vw) min(16px, 0.8333vw) min(58px, 3.0208vw);
}

.product-card--wide h3 {
  margin-bottom: min(4px, 0.2083vw);
}

.product-card--wide p {
  margin-bottom: min(4px, 0.2083vw);
}

.product-card--wide .price-row {
  grid-template-columns: minmax(0, 1fr);
  gap: min(4px, 0.2083vw);
  margin-top: 0;
}

.product-card--wide .price-row a {
  position: absolute;
  left: min(16px, 0.8333vw);
  right: min(16px, 0.8333vw);
  bottom: min(16px, 0.8333vw);
  width: auto;
  height: min(36px, 1.875vw);
  min-width: 0;
  padding-inline: min(12px, 0.625vw);
  font-size: clamp(10px, 0.7292vw, 14px);
}

.product-card--wide .price-row a::after {
  margin-left: 0;
}

.product-card--wide .price-row span {
  overflow: visible;
  line-height: 1.2;
  white-space: nowrap;
}

.proof-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: min(20px, 1.0417vw);
  margin-top: min(40px, 2.0833vw);
}

.proof-metrics > div {
  min-height: min(80px, 4.1667vw);
  display: grid;
  grid-template-columns: min(48px, 2.5vw) minmax(0, 1fr);
  grid-template-rows: auto auto auto;
  column-gap: min(14px, 0.7292vw);
  align-content: center;
  padding: min(12px, 0.625vw) min(18px, 0.9375vw);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.metric-icon {
  grid-row: 1 / 4;
  width: min(48px, 2.5vw);
  height: min(48px, 2.5vw);
  display: grid;
  place-items: center;
  border-radius: min(9px, 0.4688vw);
  background: var(--green-soft);
  color: var(--green);
}

.metric-icon svg {
  width: 58%;
  height: 58%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.proof-metrics strong {
  color: var(--ink);
  font-size: clamp(14px, 0.9375vw, 18px);
  font-weight: 800;
  line-height: 1.05;
}

.proof-metrics span:not(.metric-icon) {
  color: #596274;
  font-size: clamp(10px, 0.7292vw, 14px);
  line-height: 1.1;
}

.proof-metrics small {
  color: #a6afbf;
  font-size: clamp(8px, 0.5208vw, 10px);
  line-height: 1.2;
}

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

.story__grid {
  display: grid;
  grid-template-columns: min(780px, 40.625vw) min(600px, 31.25vw);
  gap: min(60px, 3.125vw);
  align-items: start;
  margin-bottom: min(60px, 3.125vw);
}

.story-gallery {
  position: relative;
  height: min(696px, 36.25vw);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: min(25.4px, 1.3229vw);
}

.story-gallery img {
  overflow: hidden;
  border-radius: min(16px, 0.8333vw);
}

.story-gallery__tall {
  grid-row: 1 / 3;
}

.since-card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(160px, 8.3333vw);
  height: min(160px, 8.3333vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: min(4px, 0.2083vw) solid var(--white);
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  text-align: center;
  transform: translate(-50%, -50%);
  box-shadow: 0 14px 30px rgba(6, 25, 45, 0.18);
}

.since-card span {
  font-size: clamp(10px, 0.625vw, 12px);
  line-height: 1;
}

.since-card strong {
  margin: min(8px, 0.4167vw) 0;
  font-size: clamp(28px, 2.0833vw, 40px);
  font-weight: 800;
  line-height: 1;
}

.since-card small {
  max-width: 70%;
  font-size: clamp(10px, 0.7292vw, 14px);
  font-weight: 700;
  line-height: 1.2;
}

.story-copy {
  padding-top: min(56px, 2.9167vw);
}

.story-copy .eyebrow {
  margin-bottom: min(16px, 0.8333vw);
}

.story-copy h2 {
  margin: 0 0 min(16px, 0.8333vw);
  color: var(--ink);
  font-size: clamp(34px, 2.7083vw, 52px);
  font-weight: 800;
  line-height: 1.02;
}

.story-copy p {
  margin: 0 0 min(16px, 0.8333vw);
  color: var(--muted);
  font-size: clamp(13px, 0.8333vw, 16px);
  line-height: 1.45;
}

.story-copy .story-bold {
  color: var(--ink);
  font-weight: 800;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: min(14px, 0.7292vw);
  margin-top: min(32px, 1.6667vw);
  padding-top: min(44px, 2.2917vw);
}

.timeline::before {
  position: absolute;
  top: min(14px, 0.7292vw);
  left: 7%;
  right: 7%;
  height: 1px;
  background: #d8e7c4;
  content: "";
}

.timeline div {
  position: relative;
  text-align: center;
}

.timeline div::before {
  position: absolute;
  top: calc(min(44px, 2.2917vw) * -1 + min(4px, 0.2083vw));
  left: 50%;
  width: min(28px, 1.4583vw);
  height: min(28px, 1.4583vw);
  border: min(3px, 0.1563vw) solid var(--white);
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 1px var(--green);
  content: "";
  transform: translateX(-50%);
}

.timeline div:last-child::before {
  background: var(--navy);
  box-shadow: 0 0 0 1px var(--navy);
}

.timeline strong {
  display: block;
  color: var(--green);
  font-size: clamp(16px, 1.25vw, 24px);
  font-weight: 800;
  line-height: 1;
}

.timeline div:last-child strong {
  color: var(--navy);
}

.timeline span {
  display: block;
  margin-top: min(8px, 0.4167vw);
  color: #172033;
  font-size: clamp(9px, 0.625vw, 12px);
  line-height: 1.25;
}

.proof-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: min(24px, 1.25vw);
  margin-bottom: min(60px, 3.125vw);
}

.proof-card {
  min-height: min(517px, 26.9271vw);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.proof-card__media {
  position: relative;
  height: min(245px, 12.7604vw);
  overflow: hidden;
}

.proof-pill {
  position: absolute;
  top: min(12px, 0.625vw);
  left: min(12px, 0.625vw);
  display: inline-flex;
  align-items: center;
  max-width: calc(100% - min(24px, 1.25vw));
  min-height: min(28px, 1.4583vw);
  padding: min(7px, 0.3646vw) min(12px, 0.625vw);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #07172b;
  font-size: clamp(8px, 0.5208vw, 10px);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.proof-card__body {
  padding: min(24px, 1.25vw);
}

.proof-card h3 {
  margin: 0 0 min(12px, 0.625vw);
  color: var(--green-strong);
  font-size: clamp(11px, 0.8333vw, 16px);
  font-weight: 800;
  line-height: 1.2;
}

.proof-card .lead {
  margin: 0 0 min(18px, 0.9375vw);
  color: var(--ink);
  font-size: clamp(15px, 1.0417vw, 20px);
  font-weight: 800;
  line-height: 1.28;
}

.proof-card p:not(.lead) {
  margin: 0 0 min(22px, 1.1458vw);
  color: var(--muted);
  font-size: clamp(12px, 0.8333vw, 16px);
  line-height: 1.34;
}

.proof-card a {
  display: flex;
  align-items: center;
  gap: min(12px, 0.625vw);
  padding-top: min(14px, 0.7292vw);
  border-top: 1px solid var(--line);
  color: var(--green-strong);
  font-size: clamp(11px, 0.7292vw, 14px);
  font-weight: 600;
}

.proof-card a::after {
  content: "→";
}

.story-actions {
  width: min(1440px, calc(100% - 48px));
  display: flex;
  justify-content: center;
  gap: min(24px, 1.25vw);
  margin: 0 auto;
}

@media (min-width: 1920px) {
  .categories {
    padding: min(106.6667px, 4.1667vw) 0;
  }

  .categories .section-head {
    min-height: min(168px, 6.5625vw);
    gap: min(64px, 2.5vw);
    margin-bottom: min(64px, 2.5vw);
  }

  .categories .section-head h2 {
    max-width: min(1040px, 40.625vw);
    margin: min(18.6667px, 0.7292vw) 0;
    font-size: clamp(34px, 2.5vw, 64px);
  }

  .categories .section-head p:not(.eyebrow) {
    max-width: min(960px, 37.5vw);
    font-size: clamp(13px, 0.8333vw, 21.3333px);
  }

  .categories .section-head .text-link {
    margin-top: min(93.3333px, 3.6458vw);
  }

  .categories .text-link {
    gap: min(8px, 0.3125vw);
    font-size: clamp(13px, 0.8333vw, 21.3333px);
  }

  .categories .eyebrow {
    gap: min(10.6667px, 0.4167vw);
    font-size: clamp(12px, 0.8333vw, 21.3333px);
  }

  .categories .eyebrow span {
    width: min(32px, 1.25vw);
  }

  .category-grid {
    gap: min(53.3333px, 2.0833vw);
  }

  .category-card {
    height: min(373.3333px, 14.5833vw);
  }

  .category-icon {
    width: min(149.3333px, 5.8333vw);
    height: min(149.3333px, 5.8333vw);
    margin-bottom: min(26.6667px, 1.0417vw);
    border-radius: min(32px, 1.25vw);
  }

  .category-icon img {
    width: min(96px, 3.75vw);
    max-height: min(96px, 3.75vw);
  }

  .category-card strong {
    font-size: clamp(16px, 1.25vw, 32px);
  }

  .category-card small {
    min-width: min(112px, 4.375vw);
    margin-top: min(18.6667px, 0.7292vw);
    padding: min(9.3333px, 0.3646vw) min(24px, 0.9375vw);
    font-size: clamp(12px, 0.8333vw, 21.3333px);
  }

  .products .section-head {
    min-height: min(168px, 6.5625vw);
    margin-bottom: min(32px, 1.25vw);
  }

  .filters {
    gap: min(10.6667px, 0.4167vw);
    height: min(58.6667px, 2.2917vw);
    margin-bottom: min(53.3333px, 2.0833vw);
  }

  .filters button {
    height: min(58.6667px, 2.2917vw);
    padding-inline: min(40px, 1.5625vw);
    font-size: clamp(11px, 0.7292vw, 18.6667px);
  }

  .product-layout {
    gap: min(26.6667px, 1.0417vw);
  }

  .product-main {
    flex-basis: min(640px, 25vw);
    height: min(704px, 27.5vw);
  }

  .product-main__ribbon {
    height: min(80px, 3.125vw);
    padding-inline: min(26.6667px, 1.0417vw);
  }

  .product-main__ribbon span {
    font-size: clamp(12px, 0.8333vw, 21.3333px);
  }

  .product-main__ribbon strong {
    gap: min(6.6667px, 0.2604vw);
    font-size: clamp(11px, 0.7292vw, 18.6667px);
  }

  .product-main__image {
    height: min(341.3333px, 13.3333vw);
    margin: min(26.6667px, 1.0417vw) min(26.6667px, 1.0417vw) 0;
    border-radius: min(8px, 0.3125vw);
  }

  .product-main__body {
    padding: min(21.3333px, 0.8333vw) min(26.6667px, 1.0417vw);
  }

  .product-main h3 {
    margin-bottom: min(10.6667px, 0.4167vw);
    font-size: clamp(20px, 1.4583vw, 37.3333px);
  }

  .tags {
    gap: min(10.6667px, 0.4167vw);
    margin-bottom: min(13.3333px, 0.5208vw);
  }

  .tags span {
    height: min(37.3333px, 1.4583vw);
    padding-inline: min(16px, 0.625vw);
    font-size: clamp(11px, 0.7292vw, 18.6667px);
  }

  .specs {
    gap: min(16px, 0.625vw);
    margin-bottom: min(13.3333px, 0.5208vw);
  }

  .specs div + div {
    padding-left: min(16px, 0.625vw);
  }

  .specs div + div::before {
    height: min(26.6667px, 1.0417vw);
  }

  .specs dt {
    font-size: clamp(16px, 1.25vw, 32px);
  }

  .product-main .price-row {
    gap: min(26.6667px, 1.0417vw);
  }

  .product-main .price-row span {
    margin-bottom: min(5.3333px, 0.2083vw);
    font-size: clamp(13px, 0.9375vw, 24px);
  }

  .product-main .price-row strong {
    font-size: clamp(18px, 1.3021vw, 33.3333px);
  }

  .product-side {
    grid-template-rows: min(442.6667px, 17.2917vw) min(234.6667px, 9.1667vw);
    gap: min(26.6667px, 1.0417vw);
  }

  .product-side__top,
  .product-side__bottom {
    gap: min(21.3333px, 0.8333vw);
  }

  .product-card__media {
    height: min(221.3333px, 8.6458vw);
  }

  .product-card__body {
    min-height: calc(100% - min(221.3333px, 8.6458vw));
    padding: min(18.6667px, 0.7292vw) min(21.3333px, 0.8333vw);
  }

  .product-card h3 {
    margin-bottom: min(10.6667px, 0.4167vw);
    font-size: clamp(13px, 0.9375vw, 24px);
  }

  .product-card p {
    gap: min(13.3333px, 0.5208vw);
    margin-bottom: min(10.6667px, 0.4167vw);
    font-size: clamp(10px, 0.7292vw, 18.6667px);
  }

  .product-card .price-row {
    gap: min(12px, 0.4688vw);
  }

  .product-card .price-row span {
    font-size: clamp(12px, 0.8333vw, 21.3333px);
  }

  .product-card .price-row span::before {
    margin-bottom: min(5.3333px, 0.2083vw);
    font-size: clamp(9px, 0.625vw, 16px);
  }

  .product-card .price-row a {
    height: min(48px, 1.875vw);
    font-size: clamp(10px, 0.7292vw, 18.6667px);
  }

  .product-card .price-row a::after {
    margin-left: min(18.6667px, 0.7292vw);
  }

  .product-card--wide {
    grid-template-columns: min(242.6667px, 9.4792vw) minmax(0, 1fr);
  }

  .product-card--wide .product-card__body {
    padding: min(16px, 0.625vw) min(21.3333px, 0.8333vw) min(77.3333px, 3.0208vw);
  }

  .product-card--wide .price-row a {
    left: min(21.3333px, 0.8333vw);
    right: min(21.3333px, 0.8333vw);
    bottom: min(21.3333px, 0.8333vw);
    height: min(48px, 1.875vw);
    padding-inline: min(16px, 0.625vw);
  }

  .proof-metrics {
    gap: min(26.6667px, 1.0417vw);
    margin-top: min(53.3333px, 2.0833vw);
  }

  .proof-metrics > div {
    min-height: min(106.6667px, 4.1667vw);
    grid-template-columns: min(64px, 2.5vw) minmax(0, 1fr);
    column-gap: min(18.6667px, 0.7292vw);
    padding: min(16px, 0.625vw) min(24px, 0.9375vw);
  }

  .metric-icon {
    width: min(64px, 2.5vw);
    height: min(64px, 2.5vw);
    border-radius: min(12px, 0.4688vw);
  }

  .proof-metrics strong {
    font-size: clamp(14px, 0.9375vw, 24px);
  }

  .proof-metrics span {
    font-size: clamp(10px, 0.7292vw, 18.6667px);
  }

  .proof-metrics small {
    font-size: clamp(8px, 0.5208vw, 13.3333px);
  }

  .story__grid {
    grid-template-columns: min(1040px, 40.625vw) min(800px, 31.25vw);
    gap: min(80px, 3.125vw);
    margin-bottom: min(80px, 3.125vw);
  }

  .story-gallery {
    height: min(928px, 36.25vw);
    gap: min(33.8667px, 1.3229vw);
  }

  .story-gallery img {
    border-radius: min(21.3333px, 0.8333vw);
  }

  .since-card {
    width: min(213.3333px, 8.3333vw);
    height: min(213.3333px, 8.3333vw);
    border-width: min(5.3333px, 0.2083vw);
  }

  .since-card span {
    font-size: clamp(10px, 0.625vw, 16px);
  }

  .since-card strong {
    margin-block: min(10.6667px, 0.4167vw);
    font-size: clamp(28px, 2.0833vw, 53.3333px);
  }

  .since-card small {
    font-size: clamp(10px, 0.7292vw, 18.6667px);
  }

  .story-copy {
    padding-top: min(74.6667px, 2.9167vw);
  }

  .story-copy .eyebrow {
    margin-bottom: min(21.3333px, 0.8333vw);
  }

  .story-copy h2 {
    margin-bottom: min(21.3333px, 0.8333vw);
    font-size: clamp(34px, 2.7083vw, 69.3333px);
  }

  .story-copy p {
    margin-bottom: min(21.3333px, 0.8333vw);
    font-size: clamp(13px, 0.8333vw, 21.3333px);
  }

  .timeline {
    gap: min(18.6667px, 0.7292vw);
    margin-top: min(42.6667px, 1.6667vw);
    padding-top: min(58.6667px, 2.2917vw);
  }

  .timeline::before {
    top: min(18.6667px, 0.7292vw);
  }

  .timeline div::before {
    top: calc(min(58.6667px, 2.2917vw) * -1 + min(5.3333px, 0.2083vw));
    width: min(37.3333px, 1.4583vw);
    height: min(37.3333px, 1.4583vw);
    border-width: min(4px, 0.1563vw);
  }

  .timeline strong {
    font-size: clamp(16px, 1.25vw, 32px);
  }

  .timeline span {
    margin-top: min(10.6667px, 0.4167vw);
    font-size: clamp(9px, 0.625vw, 16px);
  }

  .proof-cards {
    gap: min(32px, 1.25vw);
    margin-bottom: min(80px, 3.125vw);
  }

  .proof-card {
    min-height: min(689.3333px, 26.9271vw);
  }

  .proof-card__media {
    height: min(326.6667px, 12.7604vw);
  }

  .proof-pill {
    top: min(16px, 0.625vw);
    left: min(16px, 0.625vw);
    max-width: calc(100% - min(32px, 1.25vw));
    min-height: min(37.3333px, 1.4583vw);
    padding: min(9.3333px, 0.3646vw) min(16px, 0.625vw);
    font-size: clamp(8px, 0.5208vw, 13.3333px);
  }

  .proof-card__body {
    padding: min(32px, 1.25vw);
  }

  .proof-card h3 {
    margin-bottom: min(16px, 0.625vw);
    font-size: clamp(11px, 0.8333vw, 21.3333px);
  }

  .proof-card .lead {
    margin-bottom: min(24px, 0.9375vw);
    font-size: clamp(15px, 1.0417vw, 26.6667px);
  }

  .proof-card p:not(.lead) {
    margin-bottom: min(29.3333px, 1.1458vw);
    font-size: clamp(12px, 0.8333vw, 21.3333px);
  }

  .proof-card a {
    gap: min(16px, 0.625vw);
    padding-top: min(18.6667px, 0.7292vw);
    font-size: clamp(11px, 0.7292vw, 18.6667px);
  }

  .story-actions {
    gap: min(32px, 1.25vw);
  }
}

.inquiry {
  padding: min(80px, 4.1667vw) 0;
  background: var(--page-soft);
}

.inquiry__panel {
  min-height: min(424px, 22.0833vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: min(16px, 0.8333vw);
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 10% 55%, rgba(131, 174, 72, 0.14), transparent 28%),
    linear-gradient(112deg, #071f36 0%, #071b30 58%, #122b27 100%);
  background-size: min(128px, 6.6667vw) min(96px, 5vw), min(128px, 6.6667vw) min(96px, 5vw), auto, auto;
  color: var(--white);
  text-align: center;
}

.inquiry__panel h2 {
  margin: 0 0 min(18px, 0.9375vw);
  color: var(--white);
  font-size: clamp(40px, 3.3333vw, 64px);
  font-weight: 800;
  line-height: 1.03;
}

.inquiry__panel p {
  max-width: min(930px, 48.4375vw);
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(14px, 1.0417vw, 20px);
  line-height: 1.35;
}

.inquiry__actions {
  display: flex;
  justify-content: center;
  gap: min(24px, 1.25vw);
  margin-top: min(56px, 2.9167vw);
}

.site-footer {
  position: relative;
  min-height: min(568px, 29.5833vw);
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.site-footer__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(6, 25, 45, 0.86), rgba(6, 25, 45, 0.86)),
    url("assets/footer-bg.webp") center 48% / cover no-repeat;
}

.site-footer .shell {
  position: relative;
  z-index: 1;
  width: min(1280px, calc(100% - 48px));
}

@media (min-width: 1920px) {
  .site-footer .shell {
    width: min(66.6667vw, 1706px);
  }
}

.footer-newsletter {
  min-height: min(144px, 7.5vw);
  display: grid;
  grid-template-columns: minmax(0, 1fr) min(414px, 21.5625vw);
  align-items: center;
  gap: min(48px, 2.5vw);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-newsletter h2 {
  margin: 0 0 min(8px, 0.4167vw);
  font-size: clamp(16px, 1.1458vw, 22px);
  font-weight: 800;
  line-height: 1.1;
}

.footer-newsletter p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(12px, 0.8333vw, 16px);
  line-height: 1.35;
}

.subscribe-form {
  height: min(56px, 2.9167vw);
  display: grid;
  grid-template-columns: 1fr min(100px, 5.2083vw);
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.subscribe-form input,
.subscribe-form button {
  min-width: 0;
  border: 0;
}

.subscribe-form input {
  padding: 0 min(20px, 1.0417vw);
  background: transparent;
  color: var(--white);
  font-size: clamp(12px, 0.8333vw, 16px);
  outline: 0;
}

.subscribe-form input::placeholder {
  color: rgba(255, 255, 255, 0.88);
}

.subscribe-form button {
  background: var(--green);
  color: var(--white);
  font-size: clamp(12px, 0.8333vw, 16px);
  font-weight: 600;
}

.footer-main {
  min-height: min(328px, 17.0833vw);
  display: grid;
  grid-template-columns: min(330px, 17.1875vw) repeat(3, minmax(0, 1fr));
  gap: min(80px, 4.1667vw);
  padding: min(24px, 1.25vw) 0 min(32px, 1.6667vw);
}

.footer-brand img {
  width: min(52px, 2.7083vw);
  height: min(73px, 3.8021vw);
  object-fit: fill;
  margin-bottom: min(18px, 0.9375vw);
}

.footer-brand p,
.footer-brand address,
.footer-col a,
.footer-bottom,
.legal a {
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
  font-size: clamp(12px, 0.8333vw, 16px);
  line-height: 1.45;
}

.footer-brand p {
  margin: 0 0 min(24px, 1.25vw);
}

.footer-brand address {
  display: grid;
  gap: min(12px, 0.625vw);
}

.footer-brand address span,
.footer-brand address a {
  display: block;
}

.footer-col h3 {
  margin: 0 0 min(18px, 0.9375vw);
  color: var(--white);
  font-size: clamp(14px, 0.9375vw, 18px);
  font-weight: 800;
  line-height: 1.2;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: min(10px, 0.5208vw);
}

.footer-col a:hover,
.legal a:hover {
  color: var(--white);
}

.footer-bottom {
  min-height: min(96px, 5vw);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: min(32px, 1.6667vw);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
}

.socials,
.legal {
  display: flex;
  align-items: center;
}

.socials {
  gap: min(12px, 0.625vw);
}

.socials a {
  width: min(40px, 2.0833vw);
  height: min(40px, 2.0833vw);
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: clamp(12px, 0.8333vw, 16px);
  font-weight: 700;
}

.legal {
  justify-content: flex-end;
  gap: min(24px, 1.25vw);
}

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #60d669 0%, #1faf38 100%);
  color: var(--white);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.18);
}

.floating-whatsapp .whatsapp-mark {
  width: 30px;
  height: 30px;
}

@media (min-width: 1280px) and (max-width: 1919.98px) {
  .shell,
  .story-actions {
    width: min(1440px, calc(100% - clamp(192px, 20vw, 360px)));
  }

  .site-footer .shell {
    width: min(1280px, calc(100% - clamp(192px, 20vw, 360px)));
  }
}

@media (max-width: 1279.98px) {
  .shell,
  .story-actions {
    width: min(960px, calc(100% - 48px));
  }

  .topbar {
    display: none;
  }

  .navbar {
    height: 80px;
  }

  .brand img {
    width: 34px;
    height: 48px;
  }

  .nav-links {
    position: absolute;
    top: 80px;
    left: 24px;
    right: 24px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .nav-links a {
    padding: 14px 12px;
    font-size: 15px;
  }

  .nav-item {
    display: block;
  }

  .nav-parent {
    display: flex;
    justify-content: space-between;
  }

  .nav-parent::after {
    width: 7px;
    height: 7px;
    margin-top: 0;
  }

  .nav-submenu {
    position: static;
    min-width: 0;
    padding: 0 0 8px 16px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
  }

  .nav-submenu a {
    padding: 10px 12px;
    border-radius: 8px;
    color: var(--muted);
    font-size: 14px;
  }

  .nav-submenu a:hover {
    background: #f1f5ec;
    color: var(--green);
  }

  .icon-button {
    width: 36px;
    height: 36px;
  }

  .icon-button svg,
  .menu-button svg,
  .button svg {
    width: 20px;
    height: 20px;
  }

  .menu-button {
    width: 36px;
    height: 36px;
    display: grid;
  }

  .navbar .whatsapp-pill {
    width: auto;
    height: 36px;
    padding-inline: 14px;
    font-size: 13px;
  }

  .navbar .whatsapp-mark {
    width: 20px;
    height: 20px;
  }

  .hero {
    height: 720px;
    min-height: 0;
  }

  .hero__copy {
    width: min(560px, 60vw);
    padding-top: 100px;
  }

  .hero h1 {
    font-size: clamp(44px, 6vw, 58px);
  }

  .hero__copy p:not(.eyebrow) {
    width: min(520px, 64vw);
    font-size: 16px;
  }

  .button,
  .whatsapp-pill {
    height: 46px;
    padding-inline: 22px;
    font-size: 15px;
  }

  .video-link span {
    width: 38px;
    height: 38px;
  }

  .hero-stats {
    left: 50%;
    right: auto;
    width: min(960px, calc(100% - 48px));
    height: 104px;
    bottom: 72px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    transform: translateX(-50%);
    background: rgba(6, 25, 45, 0.18);
    backdrop-filter: blur(2px);
  }

  .hero-stats::before {
    display: none;
  }

  .hero-stats div {
    position: static;
    top: auto;
    left: auto;
    width: auto;
    justify-content: center;
    padding-inline: 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
  }

  .hero-stats div:nth-child(1),
  .hero-stats div:nth-child(2),
  .hero-stats div:nth-child(3),
  .hero-stats div:nth-child(4) {
    left: auto;
    width: auto;
  }

  .hero-stats div:last-child {
    border-right: 0;
  }

  .hero-stats strong {
    font-size: 28px;
    line-height: 1;
  }

  .hero-stats span {
    margin-top: 8px;
    font-size: 12px;
    white-space: normal;
  }

  .brand-strip {
    height: 72px;
  }

  .brand-strip__inner {
    position: static;
    display: flex;
    align-items: center;
    gap: 24px;
  }

  .brand-strip p {
    position: static;
    width: auto;
    height: auto;
    font-size: 12px;
    line-height: 1;
  }

  .brand-logos {
    position: static;
    flex: 1 1 auto;
    width: auto;
    height: 34px;
    overflow: hidden;
  }

  .brand-logos img {
    width: auto;
    max-width: none;
    height: 100%;
  }

  .section {
    padding: 64px 0;
  }

  .section-head {
    min-height: 0;
  }

  .section-head h2 {
    max-width: 680px;
    font-size: 38px;
  }

  .section-head p:not(.eyebrow) {
    max-width: 620px;
  }

  .category-card {
    height: 220px;
  }

  .category-icon {
    width: 72px;
    height: 72px;
    border-radius: 16px;
  }

  .category-icon img {
    width: 52px;
    height: auto;
    max-height: 52px;
  }

  .product-layout {
    flex-direction: column;
  }

  .product-main {
    flex-basis: auto;
    width: 100%;
    height: auto;
  }

  .product-main__ribbon {
    height: 58px;
    padding-inline: 22px;
  }

  .product-main__image {
    height: 360px;
    margin: 22px 22px 0;
  }

  .product-main .card-logo {
    top: 16px;
    left: 16px;
    width: 76px;
    height: 24px;
    aspect-ratio: 76 / 24;
  }

  .card-logo {
    top: 14px;
    left: 12px;
    width: 70px;
    height: 21px;
    aspect-ratio: 70 / 21;
  }

  .product-main__body {
    padding: 22px;
  }

  .product-main .price-row strong {
    max-width: none;
  }

  .product-side {
    grid-template-rows: auto auto;
  }

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

  .product-card__media {
    height: 190px;
  }

  .product-card__body {
    min-height: 170px;
    padding: 18px;
  }

  .product-card h3 {
    font-size: 17px;
  }

  .product-card p {
    font-size: 13px;
  }

  .product-card .price-row span {
    font-size: 15px;
  }

  .product-card .price-row a {
    height: 36px;
    font-size: 13px;
  }

  .product-card--wide {
    grid-template-columns: 182px minmax(0, 1fr);
  }

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

  .proof-metrics > div {
    min-height: 84px;
    grid-template-columns: 48px minmax(0, 1fr);
    column-gap: 14px;
    padding: 16px;
  }

  .metric-icon {
    width: 48px;
    height: 48px;
  }

  .story__grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .story-gallery {
    height: 620px;
  }

  .story-copy {
    padding-top: 0;
  }

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

  .proof-card {
    min-height: 470px;
  }

  .proof-card__media {
    height: 220px;
  }

  .footer-newsletter {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 36px 0;
  }

  .subscribe-form {
    width: min(480px, 100%);
    height: 52px;
    grid-template-columns: 1fr 120px;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px;
    padding: 42px 0;
  }

  .footer-brand img {
    width: 48px;
    height: 67px;
  }

  .footer-bottom {
    min-height: 120px;
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 18px;
    padding: 24px 0;
  }

  .legal {
    justify-content: flex-start;
  }
}

@media (max-width: 767.98px) {
  .shell,
  .story-actions,
  .site-footer .shell {
    width: calc(100% - 40px);
  }

  .navbar__inner {
    gap: 12px;
  }

  .nav-actions {
    gap: 8px;
  }

  .icon-button {
    display: none;
  }

  .navbar .icon-button {
    display: grid;
  }

  .navbar .whatsapp-pill {
    display: none;
  }

  .nav-links {
    left: 20px;
    right: 20px;
  }

  .hero {
    height: 732px;
  }

  .hero__bg {
    left: 0;
    right: 0;
    width: auto;
    overflow: hidden;
    transform: none;
    background: none;
  }

  .hero__bg::before,
  .hero__bg::after {
    position: absolute;
    content: "";
  }

  .hero__bg::before {
    left: -34.01%;
    top: -8.88%;
    width: 134.1%;
    height: 122.07%;
    background: url("assets/hero-bg-mobile-figma.png?v=20260610h") center / cover no-repeat;
  }

  .hero__bg::after {
    inset: 0;
    background: linear-gradient(171.3deg, rgba(6, 32, 59, 0.84) 35%, rgba(6, 32, 59, 0.64) 46.5%, rgba(6, 32, 59, 0.2) 62.3%);
  }

  .hero::before {
    display: none;
    background:
      linear-gradient(180deg, rgba(6, 25, 45, 0.78) 0%, rgba(6, 25, 45, 0.58) 36%, rgba(6, 25, 45, 0.18) 68%, rgba(6, 25, 45, 0.62) 100%),
      linear-gradient(90deg, rgba(6, 25, 45, 0.64), rgba(6, 25, 45, 0.12));
  }

  .hero::after {
    display: none;
  }

  .hero__copy {
    width: 100%;
    padding-top: 30px;
    transform: none;
  }

  .hero h1 {
    width: 335px;
    max-width: 100%;
    margin: 8px 0;
    font-size: 24px;
    line-height: 28px;
  }

  .hero__copy p:not(.eyebrow) {
    width: 335px;
    max-width: 100%;
    font-size: 14px;
    line-height: 20px;
  }

  .eyebrow {
    gap: 8px;
    font-size: 14px;
    line-height: 20px;
  }

  .hero__copy .eyebrow {
    gap: 12px;
    font-size: 14px;
    line-height: 20px;
  }

  .eyebrow span {
    width: 24px;
  }

  .hero__actions {
    gap: 18px;
    margin-top: 22px;
  }

  .button {
    height: 36px;
    padding-inline: 12px;
    font-size: 14px;
  }

  .hero__actions .button {
    height: 36px;
    padding-inline: 12px;
    font-size: 14px;
  }

  .button svg {
    width: 18px;
    height: 18px;
  }

  .video-link {
    gap: 10px;
    font-size: 14px;
  }

  .video-link span {
    width: 36px;
    height: 36px;
  }

  .hero-stats {
    left: 0;
    right: 0;
    bottom: 50px;
    width: auto;
    height: 64px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    transform: none;
    overflow: hidden;
  }

  .hero-stats div {
    position: static;
    height: auto;
    padding: 10px 12px 0;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom: 0;
  }

  .hero-stats div:not(:first-child)::before {
    display: none;
  }

  .hero-stats strong {
    font-size: 20px;
    line-height: 24px;
  }

  .hero-stats span {
    margin-top: 4px;
    overflow: hidden;
    font-size: 12px;
    line-height: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand-strip {
    height: 50px;
    overflow: hidden;
  }

  .brand-strip__inner {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
  }

  .brand-strip p {
    position: absolute;
    top: 19px;
    left: 12px;
    width: 108px;
    height: 12px;
    font-size: 12px;
    line-height: 12px;
  }

  .brand-logos {
    position: absolute;
    top: 15px;
    left: 144px;
    width: 1134px;
    height: 20px;
    overflow: hidden;
  }

  .brand-logos img {
    width: auto;
    max-width: none;
    height: 100%;
  }

  .section {
    padding: 20px 0;
  }

  .section-head {
    display: block;
    margin-bottom: 12px;
  }

  .section-head h2 {
    max-width: none;
    margin: 14px 0 12px;
    font-size: 36px;
    line-height: 1.04;
  }

  .section-head p:not(.eyebrow) {
    max-width: none;
    font-size: 14px;
    line-height: 1.45;
  }

  .section-head .text-link {
    height: 40px;
    margin-top: 8px;
    padding: 0 18px;
    border-radius: 999px;
    background: var(--green);
    color: var(--white);
    font-size: 13px;
  }

  .category-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .category-card {
    height: 234px;
  }

  .category-icon {
    width: 84px;
    height: 84px;
    margin-bottom: 16px;
    border-radius: 18px;
  }

  .category-icon img {
    width: 52px;
    height: auto;
    max-height: 52px;
  }

  .category-card strong {
    font-size: 20px;
  }

  .category-card small {
    margin-top: 14px;
    padding: 7px 16px;
    font-size: 14px;
  }

  .products {
    padding: 20px 0;
  }

  .products .section-head {
    min-height: 0;
    margin-bottom: 8px;
  }

  .products .section-head h2 {
    font-size: 36px;
  }

  .filters {
    height: 40px;
    gap: 8px;
    margin-bottom: 24px;
    overflow-x: auto;
    scrollbar-width: none;
  }

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

  .filters button {
    height: 40px;
    padding: 0 18px;
    font-size: 12px;
  }

  .product-layout {
    gap: 12px;
  }

  .product-main {
    height: 368.5px;
  }

  .product-main__ribbon {
    height: 42px;
    padding: 0 12px;
  }

  .product-main__ribbon span {
    font-size: 13px;
  }

  .product-main__ribbon strong {
    gap: 3px;
    font-size: 10px;
  }

  .product-main__ribbon strong span {
    padding: 2px 4px;
  }

  .product-main__image {
    height: 144px;
    margin: 12px 12px 0;
  }

  .product-main__body {
    padding: 12px;
  }

  .product-main .card-logo {
    width: 64px;
    height: 20px;
    aspect-ratio: 76 / 24;
    top: 8px;
    left: 8px;
  }

  .tags {
    gap: 8px;
    margin-bottom: 10px;
  }

  .tags span {
    height: 26px;
    padding: 0 12px;
    font-size: 12px;
  }

  .product-main h3 {
    margin-bottom: 10px;
    font-size: 21px;
    line-height: 1.15;
  }

  .specs {
    gap: 8px;
    margin-bottom: 13px;
  }

  .specs div + div {
    padding-left: 8px;
  }

  .specs dt {
    font-size: 14px;
  }

  .product-main .price-row {
    align-items: flex-end;
    gap: 8px;
  }

  .product-main .price-row span {
    margin-bottom: 4px;
    font-size: 12px;
  }

  .product-main .price-row strong {
    font-size: 18px;
    line-height: 1.08;
  }

  .product-main .button--small {
    height: 40px;
    min-width: 96px;
    padding-inline: 12px;
    font-size: 12px;
  }

  .product-side {
    display: block;
  }

  .product-side__top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .product-side__bottom {
    display: none;
  }

  .product-card {
    height: 332px;
  }

  .product-card__media {
    height: 166px;
  }

  .card-logo {
    width: 58px;
    height: 17px;
    aspect-ratio: 70 / 21;
    top: 8px;
    left: 8px;
  }

  .product-card__body {
    min-height: 166px;
    padding: 14px 16px;
  }

  .product-card h3 {
    margin-bottom: 8px;
    font-size: 18px;
  }

  .product-card p {
    gap: 12px;
    margin-bottom: 8px;
    font-size: 14px;
  }

  .product-card .price-row {
    gap: 8px;
  }

  .product-card .price-row span {
    font-size: 16px;
  }

  .product-card .price-row span::before {
    margin-bottom: 4px;
    font-size: 12px;
  }

  .product-card .price-row a {
    height: 36px;
    font-size: 13px;
  }

  .proof-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 12px;
  }

  .proof-metrics > div {
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 12px;
  }

  .metric-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
    border-radius: 8px;
  }

  .proof-metrics strong {
    font-size: 18px;
  }

  .proof-metrics span:not(.metric-icon) {
    margin-top: 3px;
    font-size: 12px;
  }

  .proof-metrics small {
    margin-top: 3px;
    font-size: 10px;
  }

  .story {
    padding: 20px 0 40px;
  }

  .story__grid {
    gap: 12px;
    margin-bottom: 12px;
  }

  .story-gallery {
    height: 298.923px;
    gap: 10.9px;
  }

  .story-gallery img {
    border-radius: 8px;
  }

  .since-card {
    width: 80px;
    height: 80px;
    border-width: 2px;
  }

  .since-card span {
    font-size: 9px;
  }

  .since-card strong {
    margin: 3px 0;
    font-size: 23px;
  }

  .since-card small {
    font-size: 8px;
  }

  .story-copy h2 {
    margin-bottom: 12px;
    font-size: 35px;
    line-height: 1.04;
  }

  .story-copy p {
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.42;
  }

  .timeline {
    gap: 8px;
    margin-top: 16px;
    padding-top: 34px;
  }

  .timeline::before {
    top: 12px;
    left: 8%;
    right: 8%;
  }

  .timeline div::before {
    top: -31px;
    width: 22px;
    height: 22px;
    border-width: 3px;
  }

  .timeline strong {
    font-size: 18px;
  }

  .timeline span {
    font-size: 9px;
    line-height: 1.2;
  }

  .proof-cards {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 22px;
  }

  .proof-card {
    min-height: 424px;
  }

  .proof-card__media {
    height: 178px;
  }

  .proof-card__body {
    padding: 16px;
  }

  .proof-card h3 {
    margin-bottom: 10px;
    font-size: 13px;
  }

  .proof-card .lead {
    margin-bottom: 12px;
    font-size: 17px;
  }

  .proof-card p:not(.lead) {
    margin-bottom: 16px;
    font-size: 13px;
  }

  .proof-card a {
    padding-top: 12px;
    font-size: 12px;
  }

  .proof-pill {
    top: 10px;
    left: 10px;
    min-height: 24px;
    padding: 6px 10px;
    font-size: 9px;
  }

  .story-actions {
    gap: 12px;
  }

  .inquiry {
    padding: 44px 0 56px;
  }

  .inquiry__panel {
    min-height: 212px;
    padding: 22px 16px;
    border-radius: 8px;
    background-size: 72px 56px, 72px 56px, auto, auto;
  }

  .inquiry__panel h2 {
    margin-bottom: 12px;
    font-size: 29px;
    line-height: 1.1;
  }

  .inquiry__panel p {
    max-width: none;
    font-size: 13px;
    line-height: 1.4;
  }

  .inquiry__actions {
    gap: 10px;
    margin-top: 18px;
  }

  .inquiry__actions .whatsapp-pill,
  .inquiry__actions .button {
    height: 40px;
    padding-inline: 14px;
    font-size: 12px;
  }

  .inquiry__actions .whatsapp-mark {
    width: 20px;
    height: 20px;
  }

  .site-footer {
    min-height: 1138px;
  }

  .footer-newsletter {
    min-height: 0;
    padding: 36px 0 28px;
    gap: 18px;
  }

  .footer-newsletter h2 {
    font-size: 22px;
  }

  .footer-newsletter p {
    font-size: 14px;
  }

  .subscribe-form {
    width: 100%;
    height: 48px;
    grid-template-columns: 1fr 104px;
  }

  .subscribe-form input {
    padding: 0 16px;
    font-size: 13px;
  }

  .subscribe-form button {
    font-size: 13px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 30px 0;
  }

  .footer-brand img {
    width: 52px;
    height: 73px;
  }

  .footer-brand p,
  .footer-brand address,
  .footer-col a,
  .footer-bottom,
  .legal a {
    font-size: 14px;
  }

  .footer-col {
    gap: 10px;
  }

  .footer-col h3 {
    margin-bottom: 4px;
    font-size: 16px;
  }

  .footer-bottom {
    gap: 18px;
    padding: 24px 0 32px;
  }

  .socials a {
    width: 36px;
    height: 36px;
    font-size: 13px;
  }

  .legal {
    flex-wrap: wrap;
    gap: 12px 20px;
  }

  .floating-whatsapp {
    right: 18px;
    bottom: 18px;
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 389.98px) {
  .section-head h2,
  .story-copy h2 {
    font-size: 34px;
  }

  .product-main h3 {
    font-size: 19px;
  }

  .product-main .button--small {
    padding-inline: 12px;
  }

  .inquiry__actions {
    flex-direction: column;
    align-items: center;
  }
}
