.acrylic-main {
  --acrylic-black: #141213;
  --acrylic-frost: #edf0f1;
  overflow: hidden;
  background: var(--paper);
}

.acrylic-hero {
  display: grid;
  min-height: min(790px, calc(100svh - 78px));
  background: var(--acrylic-black);
  color: var(--paper);
  grid-template-columns: minmax(470px, 0.9fr) minmax(0, 1.1fr);
}

.acrylic-hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  padding: clamp(72px, 8vw, 132px) clamp(36px, 6vw, 104px) clamp(58px, 7vw, 100px);
  justify-content: center;
  flex-direction: column;
  background:
    linear-gradient(135deg, rgb(255 255 255 / 3.5%) 1px, transparent 1px) 0 0 / 32px 32px,
    radial-gradient(circle at 82% 27%, rgb(206 15 61 / 18%), transparent 29%);
}

.acrylic-hero-copy::after {
  position: absolute;
  right: -1px;
  bottom: 0;
  width: 1px;
  height: 74%;
  background: linear-gradient(transparent, var(--brand-red) 38%, rgb(206 15 61 / 10%));
  content: "";
}

@media (min-width: 821px) {
  .acrylic-hero-copy > * {
    position: relative;
    top: -30px;
  }
}

.acrylic-eyebrow,
.acrylic-section-heading > p:first-child,
.acrylic-config-heading > p:first-child,
.acrylic-application-card div > p,
.acrylic-material-card > p:first-child {
  margin: 0;
  color: var(--brand-red);
  font-family: var(--headline);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.acrylic-hero h1 {
  max-width: 740px;
  margin: 25px 0 0;
  font-family: var(--primary-title);
  font-size: clamp(58px, 6.2vw, 108px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.acrylic-hero h1 > span {
  display: block;
}

.acrylic-hero h1 em {
  color: var(--brand-red);
  font-style: normal;
}

.acrylic-hero-lead {
  max-width: 610px;
  margin: 30px 0 0;
  color: rgb(255 255 255 / 68%);
  font-size: 15px;
  line-height: 1.7;
}

.acrylic-hero-actions {
  display: flex;
  margin-top: 38px;
  align-items: center;
  gap: 12px;
}

.acrylic-button {
  display: inline-flex;
  min-height: 54px;
  padding: 0 52px;
  align-items: center;
  justify-content: center;
  gap: 17px;
  border: 1px solid rgb(255 255 255 / 24%);
  border-radius: 14px;
  font-family: var(--headline);
  font-size: 12px;
  font-weight: 600;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.acrylic-button-primary {
  border-color: var(--brand-red);
  background: var(--brand-red);
  color: var(--paper);
}

.acrylic-button-primary:hover {
  border-color: #e31549;
  background: #e31549;
}

.acrylic-button-secondary:hover {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--brand-charcoal);
}

.acrylic-button svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.acrylic-hero-facts {
  display: grid;
  max-width: 640px;
  margin: 58px 0 0;
  padding: 23px 0 0;
  border-top: 1px solid rgb(255 255 255 / 14%);
  list-style: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.acrylic-hero-facts li {
  display: grid;
  padding: 0 19px;
  border-left: 1px solid rgb(255 255 255 / 14%);
  gap: 5px;
}

.acrylic-hero-facts li:first-child {
  padding-left: 0;
  border-left: 0;
}

.acrylic-hero-facts strong {
  font-family: var(--headline);
  font-size: 13px;
}

.acrylic-hero-facts span {
  color: rgb(255 255 255 / 48%);
  font-size: 10px;
}

.acrylic-hero-media {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #050505;
}

.acrylic-hero-media::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgb(20 18 19 / 50%), transparent 31%),
    linear-gradient(0deg, rgb(0 0 0 / 35%), transparent 38%);
  content: "";
  pointer-events: none;
}

.acrylic-hero-media::after {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 14%;
  width: 2px;
  height: 100%;
  background: linear-gradient(transparent 9%, rgb(206 15 61 / 0%) 9%, var(--brand-red) 48%, transparent 88%);
  box-shadow: 0 0 22px rgb(206 15 61 / 55%);
  content: "";
  opacity: 0.58;
  animation: acrylic-laser-scan 7s ease-in-out infinite alternate;
}

@keyframes acrylic-laser-scan {
  from { transform: translateX(-34vw); }
  to { transform: translateX(8vw); }
}

.acrylic-hero-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.acrylic-hero-index {
  position: absolute;
  z-index: 3;
  right: clamp(24px, 4vw, 64px);
  bottom: clamp(28px, 4vw, 58px);
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgb(255 255 255 / 70%);
  font-family: var(--headline);
  font-size: 9px;
  letter-spacing: 0.16em;
}

.acrylic-hero-index i {
  width: 44px;
  height: 1px;
  background: var(--brand-red);
}

.acrylic-ticker {
  display: flex;
  min-height: 72px;
  padding: 0 var(--page-gutter);
  align-items: center;
  justify-content: center;
  gap: 22px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  font-family: var(--headline);
}

.acrylic-ticker > strong {
  flex: 0 0 auto;
  color: var(--brand-red);
  font-size: 10px;
  letter-spacing: 0.18em;
}

.acrylic-ticker > i {
  width: 1px;
  height: 20px;
  flex: 0 0 auto;
  background: var(--brand-silver);
}

.acrylic-ticker-window {
  min-width: 0;
  overflow: hidden;
}

.acrylic-ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 26px;
  color: var(--brand-charcoal);
  font-size: 15px;
  font-weight: 500;
  animation: acrylic-ticker 18s linear infinite;
}

.acrylic-ticker-track b {
  color: var(--brand-red);
}

@keyframes acrylic-ticker {
  to { transform: translateX(-50%); }
}

.acrylic-applications {
  position: relative;
  padding: clamp(92px, 10vw, 160px) var(--page-gutter) clamp(100px, 11vw, 180px);
  background:
    linear-gradient(rgb(35 31 32 / 3%) 1px, transparent 1px) 0 0 / 36px 36px,
    linear-gradient(90deg, rgb(35 31 32 / 3%) 1px, transparent 1px) 0 0 / 36px 36px,
    var(--paper);
}

.acrylic-applications::after {
  position: absolute;
  z-index: 0;
  top: 0;
  right: -9vw;
  width: 30vw;
  height: 100%;
  background: linear-gradient(115deg, transparent 0 34%, rgb(206 15 61 / 6%) 34% 47%, transparent 47%);
  content: "";
  pointer-events: none;
}

.acrylic-applications > * {
  position: relative;
  z-index: 1;
}

.acrylic-section-heading {
  display: grid;
  max-width: 1500px;
  margin: 0 auto clamp(54px, 6vw, 92px);
  align-items: end;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.5fr);
  gap: 34px 72px;
}

.acrylic-section-heading > p:first-child {
  grid-column: 1 / -1;
}

.acrylic-section-heading h2,
.acrylic-config-heading h2 {
  margin: 0;
  font-family: var(--primary-title);
  font-size: clamp(48px, 6.2vw, 92px);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: -0.042em;
}

.acrylic-section-heading h2 > span {
  display: block;
}

.acrylic-section-heading h2 em {
  color: var(--brand-red);
  font-style: normal;
}

.acrylic-section-heading > p:last-child,
.acrylic-config-heading > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.3;
}

.acrylic-application-grid {
  display: grid;
  max-width: 1500px;
  margin: 0 auto;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
  grid-template-rows: auto auto;
  gap: 22px;
}

.acrylic-application-card {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  border-radius: 20px;
  background: var(--acrylic-black);
}

.acrylic-application-card-featured {
  grid-row: 1 / 3;
}

.acrylic-application-card-process {
  min-height: 360px;
}

.acrylic-application-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgb(0 0 0 / 88%), transparent 61%);
  content: "";
}

.acrylic-application-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.acrylic-application-card:hover img {
  transform: scale(1.025);
}

.acrylic-application-card div {
  position: absolute;
  z-index: 2;
  right: clamp(24px, 4vw, 56px);
  bottom: clamp(28px, 4vw, 56px);
  left: clamp(24px, 4vw, 56px);
}

.acrylic-application-card div > p {
  margin-bottom: 14px;
}

.acrylic-application-card h3,
.acrylic-material-card h3 {
  max-width: 650px;
  margin: 0;
  color: var(--paper);
  font-family: var(--primary-title);
  font-size: clamp(36px, 4vw, 65px);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.acrylic-application-card div > span {
  display: block;
  max-width: 550px;
  margin-top: 14px;
  color: rgb(255 255 255 / 66%);
  font-size: 13px;
  line-height: 1.55;
}

.acrylic-material-card {
  display: flex;
  min-height: 330px;
  padding: clamp(34px, 4vw, 62px);
  justify-content: center;
  flex-direction: column;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgb(255 255 255 / 4%) 1px, transparent 1px) 0 0 / 24px 24px,
    var(--acrylic-black);
  color: var(--paper);
}

.acrylic-material-card > p:first-child {
  margin-bottom: 16px;
}

.acrylic-material-card h3 {
  font-size: clamp(34px, 3.5vw, 54px);
}

.acrylic-material-card > p:nth-child(3) {
  max-width: 640px;
  margin: 18px 0 0;
  color: rgb(255 255 255 / 59%);
  font-size: 13px;
  line-height: 1.6;
}

.acrylic-material-card ul {
  display: grid;
  margin: 31px 0 0;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.acrylic-material-card li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgb(255 255 255 / 72%);
  font-size: 10px;
}

.acrylic-material-card li i {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  border: 1px solid rgb(255 255 255 / 40%);
  border-radius: 50%;
}

.acrylic-material-card .is-clear { background: linear-gradient(135deg, transparent 45%, #bfc8cc 46% 54%, transparent 55%); }
.acrylic-material-card .is-white { background: #fff; }
.acrylic-material-card .is-black { background: #050505; }
.acrylic-material-card .is-mirror { background: linear-gradient(135deg, #fff, #879198 48%, #fff 51%, #89939a); }

.acrylic-main .dtf-product-shell {
  position: relative;
  width: 100%;
  max-width: none;
  padding: clamp(40px, 5vw, 72px) var(--page-gutter) clamp(100px, 11vw, 170px);
  overflow: hidden;
  background:
    linear-gradient(rgb(35 31 32 / 3%) 1px, transparent 1px) 0 0 / 36px 36px,
    linear-gradient(90deg, rgb(35 31 32 / 3%) 1px, transparent 1px) 0 0 / 36px 36px,
    var(--paper);
}

.acrylic-main .dtf-product-shell::before {
  position: absolute;
  z-index: 0;
  top: 0;
  right: -9vw;
  width: 30vw;
  height: 100%;
  background: linear-gradient(115deg, transparent 0 34%, rgb(206 15 61 / 6%) 34% 47%, transparent 47%);
  content: "";
  pointer-events: none;
}

.acrylic-main .dtf-product-shell > * {
  position: relative;
  z-index: 1;
}

.acrylic-config-heading {
  display: grid;
  max-width: 1500px;
  margin: 0 auto clamp(46px, 5vw, 76px);
  align-items: end;
  grid-template-columns: minmax(0, 1.25fr) minmax(290px, 0.5fr);
  gap: 25px 70px;
}

.acrylic-config-heading > p:first-child {
  grid-column: 1 / -1;
}

.acrylic-config-heading h2 {
  color: var(--brand-charcoal);
}

.acrylic-product {
  max-width: 1500px;
  margin: 0 auto;
  border: 1px solid rgb(35 31 32 / 10%);
  border-radius: 22px;
  background: rgb(255 255 255 / 96%);
  box-shadow: none;
}

.acrylic-product .dtf-configurator h1 {
  line-height: 1.02;
}

.acrylic-product-form-only {
  grid-template-columns: minmax(0, 1fr);
  max-width: 1200px;
}

.acrylic-legacy-form {
  display: none !important;
}

.acrylic-quote-form {
  display: grid;
  margin-top: 34px;
  gap: 28px;
}

.acrylic-quote-form fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.acrylic-quote-form legend,
.acrylic-quote-field > span {
  display: block;
  margin-bottom: 12px;
  color: var(--brand-charcoal);
  font-family: var(--headline);
  font-size: 12px;
  font-weight: 600;
}

.acrylic-quote-options {
  display: grid;
  gap: 9px;
}

.acrylic-quote-options-two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.acrylic-quote-options-three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.acrylic-quote-options-four { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.acrylic-quote-options label {
  position: relative;
  cursor: pointer;
}

.acrylic-quote-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.acrylic-quote-options label > span {
  display: flex;
  min-height: 48px;
  padding: 0 12px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(35 31 32 / 18%);
  border-radius: 12px;
  background: var(--paper);
  color: var(--brand-charcoal);
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.acrylic-quote-options input:checked + span {
  border-color: var(--brand-charcoal);
  background: var(--brand-charcoal);
  color: var(--paper);
}

.acrylic-quote-options input:focus-visible + span {
  outline: 2px solid var(--brand-red);
  outline-offset: 2px;
}

.acrylic-quote-finishes label > span {
  justify-content: flex-start;
  gap: 9px;
}

.acrylic-quote-finishes label > span::before {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  border: 1px solid var(--brand-silver);
  border-radius: 50%;
  background: var(--quote-swatch, transparent);
  box-shadow: inset 0 0 0 2px var(--paper);
  content: "";
}

.acrylic-quote-finishes [data-tone="clear"] { --quote-swatch: linear-gradient(135deg, #fff 0 46%, #dce5e9 47% 53%, #fff 54%); }
.acrylic-quote-finishes [data-tone="white"] { --quote-swatch: #fff; }
.acrylic-quote-finishes [data-tone="black"] { --quote-swatch: #231f20; }
.acrylic-quote-finishes [data-tone="mirror"] { --quote-swatch: linear-gradient(135deg, #f5f7f8, #8e989f 50%, #fff 52%, #aab2b7); }

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

.acrylic-quote-field-full {
  grid-column: 1 / -1;
}

.acrylic-quote-field input,
.acrylic-quote-field textarea {
  width: 100%;
  border: 1px solid rgb(35 31 32 / 18%);
  border-radius: 12px;
  background: #fff;
  color: var(--brand-charcoal);
  font: inherit;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.acrylic-quote-field input {
  min-height: 52px;
  padding: 0 15px;
}

.acrylic-quote-field textarea {
  min-height: 130px;
  padding: 15px;
  resize: vertical;
}

.acrylic-quote-field input:focus,
.acrylic-quote-field textarea:focus {
  border-color: var(--brand-red);
  box-shadow: 0 0 0 3px rgb(206 15 61 / 10%);
}

.acrylic-quote-field input::placeholder,
.acrylic-quote-field textarea::placeholder {
  color: #8a8f92;
}

.acrylic-quote-upload {
  display: flex;
  min-height: 154px;
  padding: 25px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px dashed rgb(35 31 32 / 30%);
  border-radius: 14px;
  background: #fafafa;
  cursor: pointer;
  text-align: center;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.acrylic-quote-upload:hover,
.acrylic-quote-upload:focus-visible,
.acrylic-quote-upload.is-dragging,
.acrylic-quote-upload.has-file {
  border-color: var(--brand-red);
  background: rgb(206 15 61 / 4%);
  outline: none;
}

.acrylic-quote-upload.has-file {
  border-style: solid;
}

.acrylic-quote-upload.has-file small {
  color: var(--brand-red);
  font-size: 13px;
  font-weight: 600;
}

.acrylic-quote-upload input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.acrylic-quote-upload svg {
  width: 28px;
  margin-bottom: 14px;
  fill: none;
  stroke: var(--brand-red);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.acrylic-quote-upload strong {
  font-size: 12px;
  font-weight: 600;
}

.acrylic-quote-upload small {
  max-width: 460px;
  margin-top: 8px;
  color: #6f7477;
  font-size: 10px;
  line-height: 1.45;
}

.acrylic-quote-submit {
  display: inline-flex;
  min-height: 56px;
  padding: 0 24px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid var(--brand-red);
  border-radius: 14px;
  background: var(--brand-red);
  color: var(--paper);
  font-family: var(--headline);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 180ms ease, transform 180ms ease;
}

.acrylic-quote-submit:hover {
  background: #e31549;
  transform: translateY(-2px);
}

.acrylic-quote-submit svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.acrylic-quote-status {
  min-height: 18px;
  margin: -14px 0 0;
  color: var(--brand-red);
  font-size: 15px;
  font-weight: 600;
  text-align: center;
}

.acrylic-main .dtf-benefits {
  max-width: 1500px;
  margin: clamp(54px, 6vw, 86px) auto 0;
  background: rgb(255 255 255 / 76%);
}

[data-acrylic-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

.acrylic-page .dtf-main {
  background: var(--paper);
}

.acrylic-gallery-main {
  background: #111;
}

.acrylic-gallery-main:hover > img {
  transform: scale(1.025);
}

.acrylic-process-label {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 10px 14px;
  border: 1px solid rgb(255 255 255 / 22%);
  border-radius: 999px;
  background: rgb(35 31 32 / 78%);
  color: var(--paper);
  font-family: var(--headline);
  font-size: 11px;
  letter-spacing: 0.08em;
  -webkit-backdrop-filter: blur(9px);
  backdrop-filter: blur(9px);
}

.acrylic-thumbnails img {
  object-position: center;
}

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

.acrylic-spec-card {
  margin-top: 22px;
  padding: 25px 26px 27px;
  border-left: 3px solid var(--brand-red);
  background: var(--brand-charcoal);
  color: var(--paper);
}

.acrylic-spec-card span {
  display: block;
  color: var(--brand-silver);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.acrylic-spec-card strong {
  display: block;
  margin-top: 14px;
  font-family: var(--headline);
  font-size: clamp(22px, 2.2vw, 31px);
  font-weight: 600;
  line-height: 1;
}

.acrylic-spec-card p {
  max-width: 500px;
  margin: 12px 0 0;
  color: rgb(255 255 255 / 70%);
  font-size: 12px;
  line-height: 1.6;
}

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

.acrylic-swatch-grid .dtf-choice span {
  width: 100%;
  justify-content: flex-start;
  gap: 9px;
}

.acrylic-swatch-grid .dtf-choice span::before {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  border: 1px solid var(--brand-silver);
  border-radius: 50%;
  background: var(--swatch, transparent);
  box-shadow: inset 0 0 0 2px var(--paper);
  content: "";
}

.acrylic-choice[data-tone="clear"] { --swatch: linear-gradient(135deg, #fff 0 46%, #dce5e9 47% 53%, #fff 54%); }
.acrylic-choice[data-tone="white"] { --swatch: #fff; }
.acrylic-choice[data-tone="black"] { --swatch: #231f20; }
.acrylic-choice[data-tone="mirror"] { --swatch: linear-gradient(135deg, #f5f7f8, #8e989f 50%, #fff 52%, #aab2b7); }

.acrylic-swatch-grid .dtf-choice input:checked + span::before {
  border-color: rgb(255 255 255 / 65%);
  box-shadow: inset 0 0 0 2px var(--brand-charcoal);
}

@media (max-width: 1080px) {
  .acrylic-hero {
    grid-template-columns: minmax(420px, 0.9fr) minmax(0, 1.1fr);
  }

  .acrylic-hero-copy {
    padding-inline: 46px;
  }

  .acrylic-application-grid {
    grid-template-columns: 1fr 1fr;
  }

  .acrylic-application-card-featured {
    grid-column: 1 / -1;
    grid-row: auto;
  }
}

@media (max-width: 820px) {
  .acrylic-hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .acrylic-hero-copy {
    min-height: 610px;
    padding: 96px var(--page-gutter) 70px;
    justify-content: flex-start;
    background-image:
      linear-gradient(180deg, rgb(10 9 10 / 90%), rgb(10 9 10 / 98%) 82%),
      url("assets/PORTADA-ACRILICOS.webp?v=20260812-01");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }

  .acrylic-hero-media {
    display: none;
  }

  .acrylic-hero-copy::after {
    right: auto;
    bottom: -1px;
    left: 0;
    width: 74%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--brand-red) 38%, rgb(206 15 61 / 10%));
  }

  .acrylic-hero-media {
    min-height: 620px;
  }

  .acrylic-section-heading,
  .acrylic-config-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .acrylic-section-heading > p:first-child,
  .acrylic-config-heading > p:first-child {
    grid-column: auto;
  }

  .acrylic-section-heading > p:last-child,
  .acrylic-config-heading > p:last-child {
    max-width: 600px;
  }

  .acrylic-application-grid {
    grid-template-columns: 1fr;
  }

  .acrylic-application-card-featured {
    grid-column: auto;
  }

  .acrylic-application-card,
  .acrylic-application-card-process {
    min-height: 520px;
  }
}

@media (max-width: 480px) {
  .acrylic-hero-copy {
    min-height: 555px;
    padding: 84px 22px 52px;
  }

  .acrylic-hero h1 {
    margin-top: 16px;
    font-size: clamp(28px, 9.6vw, 36px);
    line-height: 1.08;
    text-align: center;
  }

  .acrylic-hero-lead {
    margin-top: 24px;
    font-size: 13px;
    line-height: 1.52;
    text-align: center;
  }

  .acrylic-hero-actions {
    margin-top: 68px;
    align-items: stretch;
    flex-direction: column;
  }

  .acrylic-button {
    width: 100%;
  }

  .acrylic-hero-facts {
    margin-top: 38px;
    padding-top: 18px;
  }

  .acrylic-hero-facts li {
    padding: 0 8px;
  }

  .acrylic-hero-facts strong {
    font-size: 11px;
  }

  .acrylic-hero-facts span {
    font-size: 8px;
    line-height: 1.35;
  }

  .acrylic-hero-media {
    display: none;
  }

  .acrylic-ticker {
    min-height: 64px;
    padding-inline: 18px;
    gap: 14px;
  }

  .acrylic-ticker-track {
    gap: 17px;
    font-size: 14px;
    animation-duration: 12s;
  }

  .acrylic-applications {
    padding: 80px 16px 94px;
  }

  .acrylic-section-heading {
    margin-bottom: 40px;
  }

  .acrylic-section-heading h2,
  .acrylic-config-heading h2 {
    font-size: clamp(42px, 12vw, 52px);
    line-height: 0.98;
  }

  .acrylic-section-heading > p:last-child,
  .acrylic-config-heading > p:last-child {
    font-size: 14px;
    line-height: 1.5;
  }

  .acrylic-application-grid {
    gap: 14px;
  }

  .acrylic-application-card,
  .acrylic-application-card-process {
    min-height: 440px;
    border-radius: 16px;
  }

  .acrylic-application-card h3 {
    font-size: 38px;
  }

  .acrylic-application-card div > span {
    font-size: 12px;
  }

  .acrylic-material-card {
    min-height: 420px;
    padding: 32px 24px;
    border-radius: 16px;
  }

  .acrylic-material-card h3 {
    font-size: 40px;
  }

  .acrylic-material-card ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px 10px;
  }

  .acrylic-main .dtf-product-shell {
    padding: 40px 14px 92px;
  }

  .acrylic-config-heading {
    padding-inline: 8px;
    margin-bottom: 36px;
  }

  .acrylic-product {
    border-radius: 16px;
  }

  .acrylic-quote-form {
    margin-top: 30px;
    gap: 25px;
  }

  .acrylic-quote-options-three,
  .acrylic-quote-grid {
    grid-template-columns: 1fr;
  }

  .acrylic-quote-options-four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .acrylic-quote-field-full {
    grid-column: auto;
  }

  .acrylic-quote-upload {
    min-height: 145px;
    padding: 22px 16px;
  }

  .acrylic-main .dtf-benefits {
    background: rgb(255 255 255 / 76%);
  }

  .acrylic-process-label {
    left: 14px;
    bottom: 14px;
  }

  .acrylic-spec-card {
    padding: 22px;
  }

  .acrylic-spec-card strong {
    font-size: clamp(16px, 4.6vw, 22px);
    white-space: nowrap;
  }

  .acrylic-swatch-grid {
    grid-template-columns: 1fr;
  }

  #acrylic-product-title + .dtf-lead {
    line-height: 1.3;
  }
}

@media (prefers-reduced-motion: reduce) {
  .acrylic-hero-media::after,
  .acrylic-ticker-track {
    animation: none;
  }

  [data-acrylic-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .acrylic-gallery-main > img {
    transition: none;
  }
}
