:root {
  --forest-950: #07130d;
  --forest-900: #0f2418;
  --forest-800: #193923;
  --forest-700: #245333;
  --leaf: #84b86f;
  --mint: #dff4df;
  --orange: #f27c38;
  --orange-dark: #ca5d22;
  --cream: #f7f3e8;
  --paper: #fffdf7;
  --ink: #172019;
  --muted: #5f6d61;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 22px 60px rgba(4, 15, 8, 0.28);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 64px);
  background: rgba(7, 19, 13, 0.86);
  color: white;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--forest-950);
  background: linear-gradient(135deg, var(--leaf), var(--orange));
  border-radius: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
}

.nav-links a:hover,
.nav-menu-button:hover {
  color: white;
}

.menu-wrap {
  position: relative;
}

.nav-menu-button {
  padding: 0;
  color: rgba(255, 255, 255, 0.78);
  background: transparent;
  border: 0;
  font: inherit;
  cursor: pointer;
}

.product-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  display: none;
  min-width: 260px;
  padding: 10px;
  transform: translateX(-50%);
  background: rgba(7, 19, 13, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.menu-wrap:hover .product-menu,
.menu-wrap.open .product-menu {
  display: grid;
}

.product-menu button {
  width: 100%;
  padding: 12px 14px;
  color: white;
  text-align: left;
  background: transparent;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
}

.product-menu button:hover {
  background: rgba(255, 255, 255, 0.1);
}

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

.language-picker {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
}

.language-picker select {
  max-width: 128px;
  color: white;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  padding: 8px 10px;
}

.language-picker option {
  color: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 800;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

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

.button-primary,
.product-button {
  color: white;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  box-shadow: 0 16px 36px rgba(242, 124, 56, 0.25);
}

.button-secondary {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.button-small {
  min-height: 38px;
  padding: 9px 14px;
  color: var(--forest-950);
  background: var(--leaf);
}

.hero {
  position: relative;
  min-height: 640px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  align-items: center;
  gap: clamp(24px, 4vw, 54px);
  padding: clamp(30px, 4vw, 56px) clamp(18px, 5vw, 80px);
  color: white;
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(7, 19, 13, 0.96) 0%, rgba(15, 36, 24, 0.9) 44%, rgba(25, 57, 35, 0.68) 100%),
    url("assets/flytrap-solar.jpg") center / cover;
}

.compact-hero {
  min-height: 640px;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(247, 243, 232, 0), var(--cream));
  pointer-events: none;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.58);
}

.hero-subtitle {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-metrics {
  display: grid;
  max-width: 650px;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 34px;
}

.hero-metrics div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.hero-metrics strong {
  display: block;
  color: var(--leaf);
  font-size: 20px;
}

.hero-metrics span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
}

.hero-visual {
  min-height: 430px;
}

.hero-showcase {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.72fr;
  gap: 14px;
  align-items: stretch;
}

.hero-showcase article {
  display: grid;
  align-content: space-between;
  min-height: 360px;
  padding: 14px;
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-showcase article + article {
  margin-top: 48px;
}

.hero-showcase span {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  color: var(--forest-950);
  background: var(--mint);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.hero-showcase img {
  width: 100%;
  height: 285px;
  object-fit: contain;
}

.hero-showcase article:first-child img {
  object-position: center 38%;
}

.hero-product {
  position: absolute;
  object-fit: contain;
  background: var(--paper);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-product-a {
  top: 4%;
  right: 2%;
  width: min(42vw, 390px);
  padding: 24px;
}

.hero-product-b {
  left: 0;
  bottom: 8%;
  width: min(42vw, 440px);
  padding: 18px;
}

.hero-badge {
  position: absolute;
  right: 2%;
  bottom: 4%;
  width: 250px;
  padding: 18px;
  color: var(--forest-950);
  background: var(--leaf);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-badge span {
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-badge strong {
  font-size: 22px;
  line-height: 1.1;
}

.trust-strip,
.products-section,
.catalog-band,
.reviews-section,
.quote-section {
  padding-left: clamp(18px, 5vw, 80px);
  padding-right: clamp(18px, 5vw, 80px);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: -36px;
  position: relative;
  z-index: 3;
}

.trust-strip article {
  padding: 20px;
  color: white;
  background: var(--forest-900);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(7, 19, 13, 0.2);
}

.trust-strip h2 {
  margin: 12px 0 8px;
  font-size: 22px;
}

.trust-strip p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: rgba(132, 184, 111, 0.14);
  border-radius: 8px;
}

.products-section {
  padding-top: 54px;
  padding-bottom: 52px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading h2,
.catalog-band h2,
.reviews-section h2,
.quote-section h2 {
  margin: 0;
  color: var(--forest-950);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.product-grid,
.product-line-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
}

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

.product-card,
.product-line-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid #e3ddcf;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(27, 32, 25, 0.08);
}

.product-card.featured,
.product-line-card.featured {
  border-color: rgba(242, 124, 56, 0.4);
  box-shadow: 0 24px 54px rgba(242, 124, 56, 0.14);
}

.line-media {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(110px, 0.56fr);
  gap: 12px;
  align-items: center;
  height: 300px;
  padding: 18px;
  background: linear-gradient(180deg, #fff, #f6f4ee);
  border-bottom: 1px solid #eee6d8;
}

.line-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.flytrap-line-media img:first-child {
  object-position: center 36%;
  transform: translateY(-8px);
}

.flytrap-line-media img:last-child {
  transform: translateY(-4px);
}

.swatter-line-media img:last-child {
  transform: scale(0.92);
}

.product-image {
  height: 270px;
  display: grid;
  place-items: center;
  padding: 20px;
  background: linear-gradient(180deg, #fff, #f6f4ee);
  border-bottom: 1px solid #eee6d8;
  overflow: hidden;
}

.product-image-contain img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-image-flytrap img {
  width: 82%;
  height: 82%;
  object-fit: contain;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.category {
  margin: 0 0 8px;
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-card h3,
.product-line-card h3 {
  margin: 0;
  color: var(--forest-950);
  font-size: 24px;
  line-height: 1.15;
}

.variant-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 4px;
}

.sample-tag,
.detail-sample-ribbon {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 8px;
  padding: 8px 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), #f6a04f);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(242, 124, 56, 0.22);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.sample-tag::before,
.detail-sample-ribbon::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.18);
}

.sample-tag {
  margin-top: 10px;
}

.sample-policy-card {
  margin-top: 22px;
  padding: 16px 18px;
  color: var(--forest-950);
  background: linear-gradient(135deg, rgba(242, 124, 56, 0.14), rgba(132, 184, 111, 0.16));
  border: 1px solid rgba(242, 124, 56, 0.28);
  border-radius: 8px;
}

.sample-policy-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--forest-950);
  font-size: 15px;
}

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

.variant-list span {
  padding: 6px 9px;
  color: var(--forest-800);
  background: #eef7e9;
  border: 1px solid #d8eacb;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.moq {
  margin: 12px 0 0;
  color: var(--forest-700);
  font-weight: 800;
}

.product-card ul {
  margin: 14px 0 18px;
  padding-left: 18px;
  color: var(--muted);
}

.product-card li + li {
  margin-top: 8px;
}

.product-button,
.detail-button {
  margin-top: auto;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: auto;
}

.product-action-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.7fr);
  gap: 18px 28px;
  align-items: center;
  margin-top: 28px;
  padding: 24px;
  color: white;
  background: linear-gradient(135deg, var(--forest-900), var(--forest-700));
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(7, 19, 13, 0.16);
}

.product-action-panel h3 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.08;
}

.product-hero-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.product-action-panel .button-secondary {
  color: var(--forest-950);
  background: var(--paper);
  border: 1px solid #e3ddcf;
}

.product-metrics {
  grid-column: 1 / -1;
  margin-top: 0;
}

.detail-button {
  color: var(--forest-950);
  border: 1px solid #d8ccb8;
  background: #fff8ea;
}

.catalog-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 34px;
  align-items: center;
  padding-top: 44px;
  padding-bottom: 44px;
  color: white;
  background: var(--forest-950);
}

.catalog-band p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.72);
}

.catalog-band h2 {
  color: white;
}

.mini-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.tier-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.tier-preview button {
  min-height: 138px;
  padding: 18px;
  color: var(--forest-950);
  text-align: left;
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  cursor: pointer;
}

.tier-preview button.recommended {
  background: var(--leaf);
}

.tier-preview span,
.tier-preview em {
  display: block;
  color: var(--forest-700);
  font-style: normal;
  font-weight: 800;
}

.tier-preview strong {
  display: block;
  margin: 8px 0;
  font-size: 28px;
}

.mini-gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  padding: 12px;
  background: white;
  border-radius: 8px;
}

.reviews-section {
  padding-top: 58px;
  padding-bottom: 58px;
}

.compact {
  max-width: 620px;
}

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

.review-card {
  padding: 22px;
  min-height: 260px;
  background: #fffaf0;
  border: 1px solid #e8deca;
  border-radius: 8px;
}

.review-source {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding: 7px 10px;
  color: var(--forest-950);
  background: #eef7e9;
  border: 1px solid #d8eacb;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.flag {
  font-size: 18px;
  line-height: 1;
}

.stars {
  color: var(--orange);
  font-size: 18px;
  letter-spacing: 0;
}

.review-card p {
  color: var(--forest-900);
}

.review-card strong,
.review-card span {
  display: block;
}

.review-card span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.quote-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-top: 44px;
  padding-bottom: 44px;
  color: white;
  background:
    linear-gradient(120deg, rgba(15, 36, 24, 0.92), rgba(36, 83, 51, 0.84)),
    url("assets/swatter-xh33-mint.png") right center / contain no-repeat;
}

.detail-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(7, 19, 13, 0.72);
  backdrop-filter: blur(12px);
}

.detail-overlay[hidden] {
  display: none;
}

.detail-panel {
  position: relative;
  width: min(1180px, 100%);
  max-height: min(860px, calc(100vh - 48px));
  overflow: auto;
  background: var(--paper);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.detail-close {
  position: sticky;
  top: 14px;
  left: calc(100% - 104px);
  z-index: 2;
  margin: 14px 14px 0 auto;
  display: block;
  padding: 10px 14px;
  color: white;
  background: var(--forest-900);
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 28px;
  align-items: center;
  padding: 4px 34px 28px;
}

.detail-hero h2 {
  margin: 0;
  color: var(--forest-950);
  font-size: clamp(30px, 5vw, 54px);
  line-height: 1.05;
}

.detail-hero p {
  color: var(--muted);
  font-size: 17px;
}

.detail-art {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 14px;
  background: linear-gradient(135deg, #f2f8ee, #fff8ea);
  border-radius: 8px;
}

.detail-series-art {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.detail-product-card {
  position: relative;
  display: grid;
  grid-template-rows: 170px auto;
  gap: 10px;
  padding: 12px;
  background: white;
  border: 1px solid #e8dfd2;
  border-radius: 8px;
}

.detail-product-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
  background: #fffdf7;
  border-radius: 6px;
}

.detail-product-card h3 {
  margin: 0 0 5px;
  color: var(--forest-950);
  font-size: 17px;
}

.detail-product-card strong {
  color: var(--forest-700);
  font-size: 14px;
}

.detail-product-card p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.42;
}

.detail-sample-ribbon {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 7px 10px;
  font-size: 11px;
  box-shadow: 0 8px 18px rgba(242, 124, 56, 0.18);
}

.detail-art > img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  padding: 10px;
  background: white;
  border-radius: 8px;
}

.detail-body {
  padding: 0 34px 34px;
}

.tier-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 8px;
  background: white;
}

.tier-table th {
  color: white;
  background: var(--forest-900);
}

.tier-table th,
.tier-table td {
  padding: 14px;
  border-bottom: 1px solid #e8dfd2;
  text-align: left;
  vertical-align: top;
}

.tier-table tr.recommended-row td {
  background: #f2fbec;
}

.badge {
  display: inline-flex;
  padding: 4px 8px;
  color: var(--forest-950);
  background: var(--leaf);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.detail-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 22px 0;
}

.detail-feature-grid article {
  padding: 18px;
  background: #fff8ea;
  border: 1px solid #e8dfd2;
  border-radius: 8px;
}

.detail-feature-grid h3 {
  margin: 0 0 8px;
  color: var(--forest-950);
}

.detail-feature-grid p {
  margin: 0;
  color: var(--muted);
}

.quote-section h2 {
  color: white;
}

.quote-section p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 80px);
  color: rgba(255, 255, 255, 0.72);
  background: var(--forest-950);
  border-top: 1px solid var(--line);
}

.site-footer span {
  color: white;
  font-size: 20px;
  font-weight: 900;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 12px 16px;
  color: white;
  background: #24c663;
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(36, 198, 99, 0.34);
}

.whatsapp-float span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: #24c663;
  background: white;
  border-radius: 50%;
}

@media (max-width: 1080px) {
  .site-header {
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
  }

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

  .hero-visual {
    min-height: 390px;
  }

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

  .hero-showcase {
    max-width: 720px;
  }

  .catalog-band {
    grid-template-columns: 1fr;
  }

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

  .product-hero-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .site-header {
    display: grid;
    grid-template-columns: 1fr;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
  }

  .header-actions {
    order: 2;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .button-small {
    width: 100%;
  }

  .language-picker span {
    display: none;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    gap: 16px;
    overflow: visible;
    padding-bottom: 2px;
  }

  .product-menu {
    left: 0;
    transform: none;
  }

  .hero {
    min-height: auto;
    max-width: 100vw;
    gap: 22px;
    padding: 30px 16px 42px;
    overflow: hidden;
  }

  .hero h1 {
    width: 100%;
    max-width: calc(100vw - 32px);
    font-size: 34px;
    word-break: normal;
    overflow-wrap: normal;
  }

  .hero-subtitle {
    max-width: 100%;
    margin-top: 16px;
    font-size: 17px;
  }

  .hero-actions,
  .quote-section {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-metrics,
  .trust-strip,
  .product-grid,
  .product-line-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-showcase {
    grid-template-columns: 1fr 0.78fr;
    gap: 10px;
  }

  .hero-showcase article {
    min-height: 230px;
    padding: 10px;
  }

  .hero-showcase article + article {
    margin-top: 34px;
  }

  .hero-showcase img {
    height: 170px;
  }

  .hero-showcase span {
    font-size: 11px;
  }

  .hero-badge {
    right: 0;
    bottom: -10px;
    width: 188px;
    padding: 13px;
  }

  .trust-strip {
    margin-top: 0;
    padding-top: 18px;
  }

  .products-section,
  .reviews-section {
    padding-top: 58px;
    padding-bottom: 54px;
  }

  .product-action-panel {
    padding: 20px;
  }

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

  .product-metrics {
    gap: 10px;
  }

  .product-image {
    height: 230px;
  }

  .line-media {
    height: 230px;
    grid-template-columns: minmax(0, 1fr) minmax(84px, 0.52fr);
    padding: 14px;
  }

  .mini-gallery {
    grid-template-columns: 1fr;
  }

  .tier-preview,
  .detail-hero,
  .detail-series-art,
  .detail-feature-grid {
    grid-template-columns: 1fr;
  }

  .detail-overlay {
    padding: 10px;
  }

  .detail-panel {
    max-height: calc(100vh - 20px);
  }

  .detail-hero,
  .detail-body {
    padding-left: 18px;
    padding-right: 18px;
  }

  .tier-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

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

  .whatsapp-float strong {
    display: none;
  }
}
