:root {
  --ink: #0d1b2a;
  --ink-2: #1b2d42;
  --muted: #5c6b7a;
  --line: #d9e2ec;
  --soft: #f4f7fa;
  --paper: #ffffff;
  --blue: #1769aa;
  --blue-dark: #0f3f68;
  --orange: #f58a1f;
  --orange-dark: #cf6d0d;
  --green: #1f8f5f;
  --shadow: 0 18px 45px rgba(13, 27, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  font-family: Arial, "Helvetica Neue", sans-serif;
  background: var(--paper);
  line-height: 1.58;
}

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

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

button,
input {
  font: inherit;
}

.jc-shell {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.jc-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 68px;
  display: grid;
  grid-template-columns: minmax(230px, 0.86fr) minmax(0, 1.14fr) auto;
  align-items: center;
  gap: 24px;
  padding: 10px clamp(22px, 3vw, 42px);
  background: #101c2b;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

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

.jc-brand > span:last-child {
  min-width: 0;
  max-width: 270px;
}

.jc-brand__mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(180deg, #1976bf, #0d4d87);
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-weight: 800;
}

.jc-brand strong,
.jc-brand em {
  display: block;
}

.jc-brand strong {
  font-size: 1rem;
  line-height: 1.2;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.jc-brand em {
  margin-top: 2px;
  color: #b7c7d8;
  font-size: 0.78rem;
  font-style: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.jc-nav {
  display: flex;
  justify-content: flex-end;
  gap: 6px;
  flex-wrap: nowrap;
  min-width: 0;
}

.jc-nav a {
  padding: 9px 8px;
  border-radius: 6px;
  color: #e6edf5;
  font-size: 0.86rem;
  font-weight: 700;
  white-space: nowrap;
}

.jc-nav a:hover,
.jc-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.1);
}

.jc-header__actions,
.jc-hero__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.jc-header__actions {
  flex-wrap: nowrap;
}

.jc-header__actions .jc-btn {
  min-height: 42px;
  padding: 10px 16px;
  white-space: nowrap;
}

.jc-hero__actions {
  flex-wrap: wrap;
}

.jc-lang {
  display: inline-flex;
  min-width: 46px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 7px;
  color: #fff;
  background: transparent;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.jc-lang-group {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.jc-lang-trigger {
  min-width: 94px;
  justify-content: space-between;
  gap: 10px;
  padding: 0 12px;
}

.jc-lang-caret {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  line-height: 1;
}

.jc-lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 80;
  display: none;
  min-width: 128px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #111e2e;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
}

.jc-lang-group.is-open .jc-lang-menu {
  display: grid;
  gap: 4px;
}

.jc-lang-menu__item {
  display: flex;
  width: 100%;
  min-height: 38px;
  align-items: center;
  justify-content: flex-start;
  border: 0;
  border-radius: 6px;
  padding: 8px 10px;
  color: #eaf2ff;
  background: transparent;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.jc-lang-menu__item:hover,
.jc-lang-menu__item:focus-visible,
.jc-lang-menu__item.is-active {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  outline: none;
}

.jc-btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 7px;
  padding: 12px 18px;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
}

.jc-btn--primary {
  color: #fff;
  background: var(--orange);
  box-shadow: 0 10px 28px rgba(245, 138, 31, 0.28);
}

.jc-btn--primary:hover,
.jc-btn--primary:focus-visible {
  background: var(--orange-dark);
}

.jc-btn--line {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
}

.jc-btn--light {
  color: var(--blue-dark);
  background: #fff;
  border-color: #fff;
}

.jc-btn--wide {
  width: 100%;
}

.jc-menu-toggle {
  display: none;
  width: 46px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 7px;
  background: transparent;
}

.jc-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
}

.jc-hero {
  color: #fff;
  background: linear-gradient(120deg, #0e1a28 0%, #18364f 58%, #215a80 100%);
  padding: 64px 0 58px;
}

.jc-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(560px, 1.22fr);
  gap: 52px;
  align-items: center;
}

.jc-eyebrow {
  display: inline-flex;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
}

.jc-hero .jc-eyebrow,
.jc-section--dark .jc-eyebrow {
  color: #8bc9ff;
}

.jc-hero h1,
.jc-section-head h2,
.jc-selection h2,
.jc-quote h2,
.jc-product-panel h2 {
  margin: 12px 0 16px;
  line-height: 1.08;
  letter-spacing: 0;
}

.jc-hero h1 {
  max-width: 600px;
  font-size: clamp(2.2rem, 3.55vw, 3.55rem);
  overflow-wrap: anywhere;
  word-break: normal;
}

.jc-hero p {
  max-width: 620px;
  color: #d9e7f5;
  font-size: 1.08rem;
}

.jc-hero__checks {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
  color: #ecf5ff;
}

.jc-hero__checks li {
  position: relative;
  padding-left: 22px;
}

.jc-hero__checks li::before {
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--orange);
}

.jc-hero__visual {
  position: relative;
  align-self: stretch;
  display: grid;
  align-items: center;
}

.jc-hero__visual img,
.jc-solution-layout > img,
.jc-product-panel img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.jc-hero__visual > img {
  aspect-ratio: 4 / 3;
  background: #17344c url("assets/optimized/new-premium-industrial-drying-equipment-hero.jpg") center / cover no-repeat;
}

.jc-hero-card {
  position: absolute;
  left: 20px;
  bottom: 20px;
  width: min(360px, calc(100% - 40px));
  padding: 16px;
  border-radius: 8px;
  background: rgba(13, 27, 42, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.jc-hero-card span,
.jc-hero-card small {
  display: block;
  color: #c8d8e8;
}

.jc-hero-card strong {
  display: block;
  margin: 4px 0;
  font-size: 1.22rem;
}

.jc-section {
  padding: 70px 0;
}

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

.jc-section--dark {
  color: #fff;
  background: #102033;
}

.jc-section--quote {
  background: linear-gradient(180deg, #f7fafc, #ffffff);
}

.jc-section-head {
  max-width: 880px;
  margin-bottom: 28px;
}

.jc-section-head h2,
.jc-selection h2,
.jc-quote h2,
.jc-product-panel h2 {
  font-size: clamp(1.72rem, 2.5vw, 2.65rem);
  line-height: 1.12;
}

.jc-section-head p,
.jc-product-panel p,
.jc-selection p,
.jc-quote p,
.jc-cards p,
.jc-pain-grid p,
.jc-solution-list p,
.jc-faq p {
  color: var(--muted);
}

.jc-section--dark p,
.jc-section--dark .jc-process span,
.jc-selection p {
  color: #cfdae6;
}

.jc-cards,
.jc-pain-grid {
  display: grid;
  gap: 16px;
}

.jc-cards--four {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.jc-photo-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.jc-photo-proof-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
  background: #eef3f8;
  box-shadow: 0 14px 34px rgba(13, 27, 42, 0.08);
}

.jc-equipment-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.jc-equipment-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
  background: #eef3f8;
  box-shadow: 0 14px 34px rgba(13, 27, 42, 0.08);
}

.jc-equipment-gallery img:first-child {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: 16 / 10;
}

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

.jc-series-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(13, 27, 42, 0.06);
}

.jc-series-card:hover,
.jc-series-card:focus-visible {
  border-color: rgba(20, 95, 153, 0.38);
  box-shadow: 0 18px 42px rgba(13, 27, 42, 0.1);
}

.jc-series-card--link {
  color: inherit;
  text-decoration: none;
}

.jc-series-card--link:focus-visible {
  outline: 3px solid rgba(27, 106, 183, 0.32);
  outline-offset: 3px;
}

.jc-series-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.jc-series-card h3 {
  margin: 6px 18px 0;
  font-size: 1.08rem;
}

.jc-series-card p {
  margin: 0 18px 18px;
  color: var(--muted);
}

.jc-card-link {
  margin: -6px 16px 18px;
  color: var(--blue);
  font-weight: 800;
}

.jc-company__grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: center;
}

.jc-company__media {
  position: relative;
}

.jc-company__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.jc-company__badge {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 4px;
  padding: 16px;
  color: #fff;
  background: rgba(13, 27, 42, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.jc-company__badge span {
  color: #d6e3ef;
}

.jc-company__content h2 {
  margin: 12px 0 16px;
  font-size: clamp(1.85rem, 3vw, 3rem);
  line-height: 1.08;
}

.jc-company__content p {
  color: var(--muted);
}

.jc-company__points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0 18px;
}

.jc-company__points article {
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.jc-company__points strong {
  color: var(--blue-dark);
}

.jc-company__points span,
.jc-company__note {
  color: var(--muted);
}

.jc-company__note {
  margin: 0;
  padding-left: 14px;
  border-left: 3px solid var(--orange);
}

.jc-series-product-grid,
.jc-wood-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.jc-series-product-grid article,
.jc-wood-product-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(13, 27, 42, 0.05);
}

.jc-series-product-grid article.is-clickable {
  cursor: pointer;
  transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}

.jc-series-product-grid article.is-clickable:hover,
.jc-series-product-grid article.is-clickable:focus-visible {
  outline: none;
  border-color: rgba(27, 106, 184, .55);
  box-shadow: 0 18px 44px rgba(15, 35, 55, .12);
  transform: translateY(-2px);
}

.jc-series-product-grid img,
.jc-wood-product-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.jc-series-product-grid h3,
.jc-wood-product-grid h3 {
  margin: 16px 16px 8px;
  font-size: 1.02rem;
}

.jc-series-product-grid p,
.jc-wood-product-grid p {
  margin: 0 16px 18px;
  color: var(--muted);
}

.jc-detail-link {
  display: inline-block;
  margin: -4px 16px 18px;
  color: var(--blue);
  font-weight: 800;
}

.jc-series-product-card {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

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

.jc-product-detail {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 22px;
}

.jc-product-detail-inline {
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.jc-product-detail__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 20, 34, .66);
}

.jc-product-detail__panel {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  max-height: calc(100vh - 44px);
  overflow: auto;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .28);
}

.jc-product-detail__close {
  position: sticky;
  top: 14px;
  float: right;
  z-index: 2;
  margin: 14px 14px 0 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 10px 14px;
  font-weight: 800;
  cursor: pointer;
}

.jc-product-detail__grid {
  display: grid;
  grid-template-columns: minmax(320px, 42%) 1fr;
  gap: 28px;
  padding: 30px;
}

.jc-product-detail__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}

.jc-product-detail__content h2 {
  margin: 10px 0 14px;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1.05;
}

.jc-product-detail__content p {
  color: var(--muted);
}

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

.jc-product-detail__actions .jc-btn--line {
  color: var(--blue-dark);
  background: #fff;
  border-color: #b9cbe3;
}

.jc-product-detail__actions .jc-btn--line:hover,
.jc-product-detail__actions .jc-btn--line:focus-visible {
  background: #f3f7fc;
  border-color: #8aa7ca;
}

.jc-product-detail__body {
  display: grid;
  gap: 22px;
  padding: 0 30px 30px;
}

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

.jc-product-detail__columns section {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: #f8fbff;
}

.jc-product-detail__columns h3 {
  margin: 0 0 10px;
  font-size: 1rem;
}

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

.jc-product-detail__note {
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
}

.jc-cards article,
.jc-pain-grid article,
.jc-solution-list article,
.jc-faq details,
.jc-form,
.jc-table-wrap {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(13, 27, 42, 0.045);
}

.jc-cards article,
.jc-pain-grid article,
.jc-solution-list article {
  padding: 22px;
}

.jc-cards h3,
.jc-pain-grid strong,
.jc-solution-list h3 {
  display: block;
  margin: 0 0 10px;
  font-size: 1.08rem;
}

.jc-pain-grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.jc-pain-grid strong {
  color: var(--blue-dark);
}

.jc-solution-layout,
.jc-product-panel,
.jc-quote,
.jc-selection {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.98fr);
  gap: 32px;
  align-items: center;
}

.jc-solution-list {
  display: grid;
  gap: 16px;
}

.jc-check-grid,
.jc-process {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.jc-check-grid span,
.jc-process span {
  display: block;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.jc-product-panel {
  align-items: stretch;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.jc-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.jc-keywords span {
  padding: 8px 12px;
  border-radius: 6px;
  color: var(--blue-dark);
  background: #eaf4ff;
  font-size: 0.92rem;
  font-weight: 800;
}

.jc-table-wrap {
  overflow: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  width: 230px;
  color: var(--blue-dark);
  background: #f8fbfe;
}

tr:last-child th,
tr:last-child td {
  border-bottom: 0;
}

.jc-faq {
  display: grid;
  gap: 12px;
}

.jc-faq details {
  padding: 18px 20px;
}

.jc-faq summary {
  cursor: pointer;
  font-weight: 900;
}

.jc-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.jc-form label {
  display: grid;
  gap: 7px;
  color: var(--ink-2);
  font-weight: 800;
}

.jc-form input {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fff;
}

.jc-form input:focus {
  outline: 2px solid rgba(23, 105, 170, 0.2);
  border-color: var(--blue);
}

.jc-form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.jc-footer {
  padding: 34px 0;
  color: #cbd8e5;
  background: #0c1724;
}

.jc-footer__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
}

.jc-footer strong {
  display: block;
  color: #fff;
}

.jc-footer p {
  max-width: 660px;
  margin: 8px 0 0;
}

.jc-footer a {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-weight: 800;
}

.jc-whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 8px;
  color: #fff;
  background: var(--green);
  box-shadow: 0 14px 36px rgba(31, 143, 95, 0.3);
  font-weight: 900;
}

@media (max-width: 1080px) {
  .jc-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 12px;
  }

  .jc-brand {
    order: 1;
  }

  .jc-header__actions {
    order: 2;
    display: flex;
    justify-self: end;
  }

  .jc-header__actions .jc-btn {
    display: none;
  }

  .jc-menu-toggle {
    order: 3;
    display: block;
    justify-self: end;
  }

  .jc-nav {
    display: none;
  }

  .jc-nav.is-open {
    order: 4;
    grid-column: 1 / -1;
    display: grid;
    justify-content: stretch;
    gap: 4px;
    padding-top: 10px;
  }

  .jc-nav.is-open a {
    background: rgba(255, 255, 255, 0.08);
  }

  .jc-hero__grid,
  .jc-company__grid,
  .jc-solution-layout,
  .jc-product-panel,
  .jc-quote,
  .jc-selection {
    grid-template-columns: 1fr;
  }

  .jc-cards--four,
  .jc-pain-grid,
  .jc-photo-proof-grid,
  .jc-equipment-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .jc-equipment-gallery img:first-child {
    grid-column: span 2;
    grid-row: span 1;
  }

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

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

  .jc-company__points {
    grid-template-columns: 1fr;
  }

  .jc-company__content {
    order: -1;
  }
}

@media (max-width: 640px) {
  .jc-shell {
    width: min(100% - 28px, 1200px);
  }

  .jc-header {
    grid-template-columns: minmax(0, 1fr) 42px 76px;
    padding: 10px 14px;
    gap: 8px;
  }

  .jc-brand__mark {
    width: 42px;
    height: 42px;
  }

  .jc-brand strong {
    font-size: 0.9rem;
  }

  .jc-brand {
    overflow: hidden;
  }

  .jc-brand > span:last-child {
    width: min(132px, calc(100vw - 198px));
    max-width: min(132px, calc(100vw - 198px));
  }

  .jc-lang-trigger {
    min-width: 76px;
    height: 42px;
    padding: 0 10px;
  }

  .jc-lang-menu {
    right: 0;
  }

  .jc-menu-toggle {
    order: 2;
    width: 42px;
    height: 42px;
    padding: 0;
  }

  .jc-header__actions {
    order: 3;
  }

  .jc-brand em {
    display: none;
  }

  .jc-hero {
    padding: 38px 0 42px;
  }

  .jc-hero h1 {
    font-size: 1.62rem;
    line-height: 1.16;
    word-break: break-word;
  }

  .jc-hero p,
  .jc-hero__checks li {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .jc-section {
    padding: 48px 0;
  }

  .jc-hero__actions,
  .jc-header__actions {
    align-items: stretch;
  }

  .jc-btn {
    width: 100%;
  }

  .jc-cards--four,
  .jc-pain-grid,
  .jc-company__points,
  .jc-photo-proof-grid,
  .jc-series-grid,
  .jc-series-product-grid,
  .jc-wood-product-grid,
  .jc-check-grid,
  .jc-process,
  .jc-footer__grid {
    grid-template-columns: 1fr;
  }

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

  .jc-equipment-gallery img:first-child {
    grid-column: span 2;
  }

  .jc-hero-card {
    position: static;
    width: auto;
    margin-top: 14px;
  }

  .jc-product-panel {
    padding: 18px;
  }

  .jc-whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-height: 46px;
    padding: 0 14px;
    font-size: 0.92rem;
  }

  .jc-company__badge {
    position: static;
    margin-top: 12px;
    color: var(--ink);
    background: #fff;
    border-color: var(--line);
  }

  .jc-company__badge span {
    color: var(--muted);
  }

  .jc-product-detail {
    padding: 10px;
    align-items: stretch;
  }

  .jc-product-detail__panel {
    max-height: calc(100vh - 20px);
  }

  .jc-product-detail__grid,
  .jc-product-detail__columns {
    grid-template-columns: 1fr;
  }

  .jc-product-detail__grid,
  .jc-product-detail__body {
    padding: 18px;
  }

  .jc-product-detail__actions .jc-btn {
    width: 100%;
  }

  th,
  td {
    display: block;
    width: 100%;
  }

  .jc-whatsapp-float {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .jc-footer {
    padding-bottom: 86px;
  }
}
