:root {
  --pc-ink: #15161b;
  --pc-muted: #687287;
  --pc-line: #dfe3ea;
  --pc-soft: #f4f6f9;
  --pc-white: #fff;
  --pc-pink: #e40064;
  --pc-pink-dark: #bd0053;
  --pc-green: #0d914d;
  --pc-dark: #0d1118;
  --pc-radius: 22px;
  --pc-shadow: 0 18px 48px rgba(21, 22, 27, .09);
  --pc-max: 1320px;
  --pilot-hero-height: clamp(500px, calc(100svh - 203px), 620px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--pc-ink);
  background: var(--pc-white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, summary, a { -webkit-tap-highlight-color: transparent; }
.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  color: #fff;
  background: var(--pc-dark);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }
:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 3px solid rgba(228, 0, 100, .42);
  outline-offset: 3px;
}
.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;
}

.pilot-bar {
  background: #251a45;
  color: #fff;
  font-size: .86rem;
}
.pilot-bar__inner {
  width: min(var(--pc-max), calc(100% - 40px));
  min-height: 38px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.pilot-bar strong { color: #ff7eb7; }
.pilot-bar nav { display: flex; align-items: center; gap: 18px; }
.pilot-bar a:hover, .pilot-bar a[aria-current="page"] { color: #ff7eb7; }

.pc-header {
  position: relative;
  z-index: 30;
  border-bottom: 1px solid #e7e9ee;
  background: rgba(255,255,255,.98);
}
.pc-header__inner {
  width: min(1420px, calc(100% - 40px));
  min-height: 86px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
}
.pc-logo img { width: 58px; height: 65px; object-fit: contain; }
.pc-nav { display: flex; justify-content: center; align-items: center; gap: clamp(16px, 2.2vw, 38px); }
.pc-nav a {
  padding: 12px 3px;
  color: #22232a;
  font-weight: 750;
  font-size: .93rem;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
}
.pc-nav a:hover { color: var(--pc-pink); }
.pc-nav a[aria-current="page"] { color: var(--pc-pink); border-color: var(--pc-pink); }
.pc-assist {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 999px;
  color: #fff;
  background: var(--pc-green);
  box-shadow: 0 10px 24px rgba(13,145,77,.2);
  font-size: .9rem;
  font-weight: 800;
  white-space: nowrap;
}
.pc-menu { display: none; }

.shell { width: min(var(--pc-max), calc(100% - 48px)); margin: 0 auto; }
.section { padding: 82px 0; }
.section--soft { background: var(--pc-soft); }
.section--dark { color: #fff; background: var(--pc-dark); }
.eyebrow {
  margin: 0 0 10px;
  color: var(--pc-pink);
  font-weight: 850;
  font-size: .78rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.05; letter-spacing: -.035em; }
h1 { margin-bottom: 22px; font-size: clamp(2.8rem, 5.4vw, 5.8rem); }
h2 { margin-bottom: 16px; font-size: clamp(2rem, 3.5vw, 3.75rem); }
h3 { margin-bottom: 10px; font-size: 1.28rem; }
.lead { max-width: 700px; color: var(--pc-muted); font-size: clamp(1.08rem, 1.5vw, 1.35rem); line-height: 1.55; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 34px; }
.section-head > div { max-width: 760px; }
.section-head > p { max-width: 480px; margin-bottom: 5px; color: var(--pc-muted); }

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 26px;
  border: 1px solid var(--pc-pink);
  border-radius: 999px;
  color: #fff;
  background: var(--pc-pink);
  font-weight: 850;
  font-size: .92rem;
  cursor: pointer;
}
.btn:hover { background: var(--pc-pink-dark); border-color: var(--pc-pink-dark); }
.btn--secondary { color: var(--pc-ink); background: #fff; border-color: #b9c0cb; }
.btn--secondary:hover { color: var(--pc-pink); background: #fff; border-color: var(--pc-pink); }
.btn--dark { color: #fff; background: var(--pc-dark); border-color: var(--pc-dark); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; }

.hero { min-height: var(--pilot-hero-height); overflow: hidden; background: var(--pc-dark); color: #fff; }
.hero__grid { min-height: var(--pilot-hero-height); display: grid; grid-template-columns: minmax(0, 1fr) minmax(500px, 1fr); }
.hero__copy { align-self: center; padding: 42px clamp(28px, 4vw, 58px) 42px max(24px, calc((100vw - var(--pc-max))/2)); }
.hero__copy h1 { font-size: clamp(3rem, 4.7vw, 5rem); }
.hero__copy h1 em { color: var(--pc-pink); font-style: normal; }
.hero__copy .lead { color: #d7dbe3; }
.hero__media { position: relative; min-height: 500px; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__note {
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 13px;
  background: rgba(8,11,16,.84);
  backdrop-filter: blur(10px);
  font-size: .9rem;
  font-weight: 700;
}

.trust-line { border-bottom: 1px solid var(--pc-line); background: #fff; }
.trust-line__inner {
  min-height: 78px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.trust-line img { width: 31px; height: 31px; }
.trust-line__brand { font-size: 1.28rem; font-weight: 800; }
.trust-line__score { font-size: 1.65rem; }
.trust-line__stars { color: #ffb400; letter-spacing: .08em; }
.trust-line__count { padding-left: 20px; border-left: 1px solid var(--pc-line); color: var(--pc-muted); }
.trust-line__count b { color: var(--pc-ink); }

.assurance-strip { border-bottom: 1px solid var(--pc-line); background: #fff; }
.assurance-strip__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.assurance-strip__item { min-height: 70px; padding: 14px 24px; display: flex; flex-direction: column; justify-content: center; text-align: center; }
.assurance-strip__item + .assurance-strip__item { border-left: 1px solid var(--pc-line); }
.assurance-strip__item strong { color: var(--pc-pink); font-size: .9rem; }
.assurance-strip__item span { color: var(--pc-muted); font-size: .86rem; }

.family-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.family-card {
  min-height: 290px;
  display: grid;
  grid-template-columns: minmax(230px, .92fr) minmax(0, 1.08fr);
  overflow: hidden;
  border: 1px solid var(--pc-line);
  border-radius: var(--pc-radius);
  background: #fff;
  transition: transform .2s ease, box-shadow .2s ease;
}
.family-card:hover { transform: translateY(-3px); box-shadow: var(--pc-shadow); }
.family-card img { width: 100%; height: 100%; object-fit: cover; }
.family-card__copy { padding: 30px; display: flex; flex-direction: column; justify-content: center; }
.family-card__number { color: var(--pc-pink); font-size: .8rem; font-weight: 850; letter-spacing: .08em; }
.family-card p { color: var(--pc-muted); }
.text-link { margin-top: auto; color: var(--pc-pink); font-weight: 850; font-size: .86rem; text-transform: uppercase; }

.split-proof { display: grid; grid-template-columns: 1.08fr .92fr; overflow: hidden; border-radius: var(--pc-radius); background: var(--pc-dark); color: #fff; }
.split-proof img { width: 100%; height: 100%; min-height: 540px; object-fit: cover; }
.split-proof__copy { padding: clamp(36px, 5vw, 72px); align-self: center; }
.split-proof__copy p { color: #c5cad4; }
.proof-list { padding: 0; margin: 28px 0; list-style: none; border-top: 1px solid #303640; }
.proof-list li { padding: 18px 0; border-bottom: 1px solid #303640; }
.proof-list strong { display: block; color: #fff; }

.category-hero { min-height: var(--pilot-hero-height); padding: 50px 0; color: #fff; background: var(--pc-dark); }
.category-hero__grid { display: grid; grid-template-columns: minmax(0, .88fr) minmax(480px, 1.12fr); align-items: center; gap: clamp(42px, 6vw, 90px); }
.category-hero h1 { font-size: clamp(3rem, 5.7vw, 5.7rem); }
.category-hero .breadcrumb { color: #aeb7c6; }
.category-hero .lead { color: #d7dbe3; }
.category-hero__media { height: calc(var(--pilot-hero-height) - 100px); overflow: hidden; border-radius: var(--pc-radius); box-shadow: var(--pc-shadow); }
.category-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.category-hero .actions { margin-top: 30px; }

.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.product-card { overflow: hidden; border: 1px solid var(--pc-line); border-radius: 18px; background: #fff; }
.product-card__image { aspect-ratio: 1.42; overflow: hidden; background: #e9edf3; }
.product-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .25s ease; }
.product-card:hover .product-card__image img { transform: scale(1.025); }
.product-card__body { min-height: 245px; display: flex; flex-direction: column; padding: 24px; }
.product-card__body p { color: var(--pc-muted); }
.product-card__meta { color: var(--pc-pink); font-size: .76rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.product-card__price { margin: auto 0 16px; font-size: 1.05rem; font-weight: 850; }
.product-card__price small { color: var(--pc-muted); font-weight: 500; }
body[data-family="imprenta"] .product-card__price small { display: block; margin-top: 3px; }

.guide-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; counter-reset: guide; }
.guide-card { padding: 28px; border: 1px solid var(--pc-line); border-radius: 18px; background: #fff; }
.guide-card::before { counter-increment: guide; content: "0" counter(guide); display: block; margin-bottom: 26px; color: var(--pc-pink); font-weight: 850; }
.guide-card p { color: var(--pc-muted); }

.solution-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
.solution-card { overflow: hidden; border-radius: 18px; background: #fff; border: 1px solid var(--pc-line); }
.solution-card img { width: 100%; aspect-ratio: 1.35; object-fit: cover; }
.solution-card__body { padding: 24px; }
.solution-card p { color: var(--pc-muted); }

/* Familia presupuesto: medios continuos y tarjetas preparadas para conversión. */
.lead-family-page .category-hero__media {
  max-height: none;
  aspect-ratio: auto;
}
.lead-family-page .solution-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.lead-family-page .solution-card {
  width: 100%;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  justify-self: center;
}
.lead-family-page .solution-card__media {
  height: auto;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-bottom: 1px solid var(--pc-line);
  background: #e6e9ee;
}
.lead-family-page .solution-card__media img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
}
.lead-family-page .solution-card__photo {
  display: block;
  background-repeat: no-repeat;
  background-color: #e6e9ee;
}
.lead-family-page .solution-card__photo--grid {
  background-image: url('/assets/img/rotulacion/previa-grid-v84.webp');
  background-size: 300% auto;
}
.lead-family-page .solution-card__photo--special {
  background-image: url('/assets/img/rotulacion/previa-especiales-v84.webp');
  background-size: 300% auto;
}
.lead-family-page .solution-card__photo--g1 { background-position: 0 5.56%; }
.lead-family-page .solution-card__photo--g2 { background-position: 50% 5.56%; }
.lead-family-page .solution-card__photo--g3 { background-position: 100% 5.56%; }
.lead-family-page .solution-card__photo--g4 { background-position: 0 50%; }
.lead-family-page .solution-card__photo--g5 { background-position: 50% 50%; }
.lead-family-page .solution-card__photo--g6 { background-position: 100% 50%; }
.lead-family-page .solution-card__photo--g7 { background-position: 0 94.44%; }
.lead-family-page .solution-card__photo--g8 { background-position: 50% 94.44%; }
.lead-family-page .solution-card__photo--g9 { background-position: 100% 94.44%; }
.lead-family-page .solution-card__photo--s1 { background-position: 0 50%; }
.lead-family-page .solution-card__photo--s2 { background-position: 50% 50%; }
.lead-family-page .solution-card__photo--s3 { background-position: 100% 50%; }
.lead-family-page .solution-card__body {
  min-height: 220px;
  display: flex;
  flex: 1;
  flex-direction: column;
}
.lead-family-page .split-proof img {
  min-height: 0;
}
.lead-family-page .solution-card .text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 8px 0;
}
.lead-family-page .pc-assist { background: #08763d; }
.form-required-note { margin: 0 0 2px; color: var(--pc-muted); font-size: .86rem; }
.required { color: #8b173f; font-size: .78rem; font-weight: 700; }
.attachment-note { padding: 15px 16px; border: 1px solid #cfd6e0; border-radius: 11px; background: #f7f8fa; }
.attachment-note strong { display: block; font-size: .9rem; }
.attachment-note p { margin: 4px 0 0; color: var(--pc-muted); font-size: .84rem; }
.privacy-check a { color: var(--pc-pink-dark); font-weight: 750; text-decoration: underline; text-underline-offset: 2px; }
.closing-reviews { padding: 18px; border: 1px solid var(--pc-line); border-radius: 13px; background: #fff; }
.closing-reviews__head { display: flex; align-items: end; justify-content: space-between; gap: 18px; margin-bottom: 13px; }
.closing-reviews__head .eyebrow { display: block; margin-bottom: 3px; font-size: .68rem; }
.closing-reviews__head h3 { margin: 0; font-size: 1.08rem; line-height: 1.2; }
.closing-reviews__head a { color: var(--pc-pink-dark); font-size: .76rem; font-weight: 800; white-space: nowrap; }
.closing-reviews__grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 10px; }
.closing-review { min-width: 0; margin: 0; padding: 13px; border: 1px solid var(--pc-line); border-radius: 10px; background: var(--pc-soft); }
.closing-review__source { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.closing-review__source img { width: 20px; height: 20px; }
.closing-review .review-stars { font-size: .69rem; white-space: nowrap; }
.closing-review p { margin: 10px 0 11px; color: #344054; font-size: .75rem; line-height: 1.48; }
.closing-review footer { color: var(--pc-muted); font-size: .67rem; line-height: 1.35; }
.closing-review cite { color: var(--pc-ink); font-style: normal; font-weight: 800; }

.brief { display: grid; grid-template-columns: .72fr 1.28fr; gap: 38px; padding: clamp(30px, 4vw, 58px); border-radius: var(--pc-radius); background: #fff; box-shadow: var(--pc-shadow); }
.brief__intro p { color: var(--pc-muted); }
.brief__steps { display: grid; gap: 14px; margin: 28px 0 0; padding: 0; list-style: none; }
.brief__steps li { display: grid; grid-template-columns: 34px 1fr; align-items: start; gap: 12px; }
.brief__steps li > span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--pc-pink); font-weight: 850; }
.brief__steps strong, .brief__steps small { display: block; }
.brief__steps small { margin-top: 2px; color: var(--pc-muted); line-height: 1.4; }
.home-closing { background: #fff; }
.home-closing__panel { display: grid; grid-template-columns: minmax(0, 1.22fr) minmax(300px, .78fr); align-items: center; gap: clamp(34px, 5vw, 72px); padding: clamp(38px, 6vw, 78px); border-radius: var(--pc-radius); color: #fff; background: radial-gradient(circle at 92% 14%, rgba(228,0,100,.27), transparent 32%), var(--pc-dark); }
.home-closing__copy h2 { max-width: 12em; margin-bottom: 20px; font-size: clamp(2.15rem, 3.75vw, 3.45rem); }
.home-closing__copy > p:last-child { max-width: 610px; margin-bottom: 0; color: #b8c0cc; }
.home-closing__actions { display: grid; gap: 11px; }
.home-closing__actions .btn { width: 100%; padding-inline: 18px; font-size: .78rem; }
.home-closing__secondary { color: #fff; background: transparent; border-color: rgba(255,255,255,.46); }
.home-closing__secondary:hover { color: #fff; background: rgba(255,255,255,.09); border-color: #fff; }
.home-closing__maps { min-height: 44px; display: flex; align-items: center; justify-content: center; margin-top: 2px; color: #c7ced9; font-size: .78rem; font-weight: 750; text-align: center; text-decoration: underline; text-underline-offset: 4px; }
.home-closing__maps:hover { color: #fff; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); column-gap: 18px; row-gap: 17px; }
.field { display: flex; align-content: flex-start; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-weight: 750; font-size: .9rem; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid #bfc6d2;
  border-radius: 11px;
  color: var(--pc-ink);
  background: #fff;
  font: inherit;
}
.field textarea { min-height: 108px; resize: vertical; }
.field small { color: var(--pc-muted); }
.field input[type="file"] { padding: 10px; }
.field input[type="file"]::file-selector-button {
  min-height: 34px;
  margin-right: 12px;
  padding: 0 13px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: var(--pc-dark);
  font-weight: 750;
  cursor: pointer;
}
.contact-choice { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.contact-choice label {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  border: 1px solid var(--pc-line);
  border-radius: 10px;
  font-size: .88rem;
  font-weight: 700;
}
.privacy-check { display: flex; align-items: flex-start; gap: 10px; color: var(--pc-muted); font-size: .86rem; }
.privacy-check input { width: 18px; height: 18px; flex: 0 0 auto; margin-top: 2px; }
.form-status {
  grid-column: 1 / -1;
  margin: 0;
  padding: 13px 15px;
  border: 1px solid #9ed6ba;
  border-radius: 10px;
  color: #09683a;
  background: #edf9f3;
  font-weight: 700;
}
.form-actions { grid-column: 1/-1; display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: 6px; padding-top: 18px; border-top: 1px solid var(--pc-line); }
.form-actions strong { display: block; margin-bottom: 4px; }
.form-actions p { margin: 0; color: var(--pc-muted); font-size: .82rem; }
.form-actions__buttons { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; }
.form-actions__buttons .btn { width: 100%; min-height: 52px; padding-inline: 16px; }
.form-actions__buttons .btn--whatsapp { display: inline-flex; align-items: center; justify-content: center; gap: 9px; background: #08763d; }
.form-actions__buttons .btn--whatsapp svg { width: 18px; height: 18px; flex: 0 0 auto; fill: currentColor; }

.config-page { background: var(--pc-soft); }
.product-landing { min-height: var(--pilot-hero-height); padding: 32px 0; color: #fff; background: var(--pc-dark); }
.product-landing__grid { display: grid; grid-template-columns: minmax(0, .82fr) minmax(520px, 1.18fr); align-items: center; gap: clamp(40px, 6vw, 86px); }
.product-landing__copy h1 { max-width: 650px; font-size: clamp(3.1rem, 4.6vw, 4.9rem); }
.product-landing .breadcrumb { color: #aeb7c6; }
.product-landing__copy .lead { max-width: 610px; color: #d7dbe3; }
.product-landing .product-promises { color: #d7dbe3; }
.review-stars { color: #f5a900; letter-spacing: .05em; }
.product-promises { display: grid; gap: 7px; margin: 0 0 22px; padding: 0; list-style: none; color: #3d4554; }
.product-promises li::before { content: "✓"; margin-right: 9px; color: var(--pc-green); font-weight: 900; }
.product-gallery__main { height: calc(var(--pilot-hero-height) - 152px); overflow: hidden; border: 1px solid var(--pc-line); border-radius: 20px; background: #f2f4f7; }
.product-gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.product-gallery__thumbs { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; margin-top: 10px; }
.product-gallery__thumbs button { height: 78px; overflow: hidden; padding: 0; border: 2px solid transparent; border-radius: 11px; background: #eef1f5; cursor: pointer; }
.product-gallery__thumbs button.is-selected { border-color: var(--pc-pink); }
.product-gallery__thumbs img { width: 100%; height: 100%; object-fit: cover; }
.configurator-zone { padding: 74px 0 82px; background: var(--pc-soft); scroll-margin-top: 20px; }
.config-zone-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 30px; }
.config-zone-head h2 { margin-bottom: 0; }
.config-zone-head > p { max-width: 420px; margin: 0 0 5px; color: var(--pc-muted); }
.config-top { padding: 42px 0 24px; }
.breadcrumb { margin-bottom: 18px; color: var(--pc-muted); font-size: .9rem; }
.breadcrumb a:hover { color: var(--pc-pink); }
.config-intro { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 28px; }
.config-intro h1 { margin-bottom: 10px; font-size: clamp(2.6rem, 4.6vw, 4.8rem); }
.config-intro .lead { margin: 0; }
.config-progress { display: flex; gap: 8px; }
.config-progress span { width: 42px; height: 6px; border-radius: 99px; background: #d8dce4; }
.config-progress span:first-child { background: var(--pc-pink); }
.config-layout { display: grid; grid-template-columns: minmax(0, 1fr) 380px; align-items: start; gap: 24px; }
.config-main { display: grid; gap: 18px; }
.config-media { display: grid; grid-template-columns: 1.15fr .85fr; gap: 12px; }
.config-media img { width: 100%; height: 260px; object-fit: contain; border-radius: 16px; background: #fff; }
.config-media img:nth-child(2) { height: 260px; }
.step { min-inline-size: 0; margin: 0; padding: 26px; border: 1px solid var(--pc-line); border-radius: 18px; background: #fff; }
.step__head { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 20px; }
.step__number { width: 34px; height: 34px; display: grid; place-items: center; flex: 0 0 34px; border-radius: 50%; color: #fff; background: var(--pc-pink); font-size: .78rem; font-weight: 850; }
.step h2 { margin: 0; font-size: 1.35rem; letter-spacing: -.02em; }
.step__help { margin: 5px 0 0; color: var(--pc-muted); font-size: .9rem; }
.choices { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 10px; }
.choice { position: relative; }
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice label { min-height: 78px; display: grid; place-items: center; padding: 12px; border: 1px solid #ccd2dc; border-radius: 12px; text-align: center; cursor: pointer; }
.choice input:checked + label { border: 2px solid var(--pc-pink); background: #fff2f7; box-shadow: 0 0 0 3px rgba(228,0,100,.08); }
.choice input:focus-visible + label { outline: 3px solid rgba(228, 0, 100, .4); outline-offset: 3px; }
.choice.is-disabled label { opacity: .5; cursor: not-allowed; }
.choice label strong { display: block; }
.choice label small { display: block; color: var(--pc-muted); font-size: .75rem; line-height: 1.35; }
.choices--shape { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.choices--quantity { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.choices--quantity label { min-height: 104px; align-content: center; gap: 2px; }
.choices--quantity label > span { color: var(--pc-pink); font-size: .9rem; font-weight: 850; }
.choices--quantity label > small { font-size: .75rem; }
.option-price-note { margin: 12px 0 0; color: var(--pc-muted); font-size: .78rem; }
.choice--shape label { min-height: 118px; align-content: center; gap: 11px; }
.shape-sample { display: block; width: 45px; height: 45px; border: 2px solid #747d8e; background: #fff; }
.shape-sample--round { border-radius: 50%; }
.shape-sample--square { border-radius: 4px; }
.shape-sample--rectangle { width: 62px; height: 40px; border-radius: 4px; }
.shape-sample--oval { width: 62px; height: 40px; border-radius: 50%; }
.shape-sample--custom {
  width: 50px;
  height: 50px;
  border: 0;
  clip-path: polygon(48% 0, 62% 16%, 86% 12%, 81% 37%, 100% 52%, 78% 66%, 71% 94%, 48% 81%, 24% 100%, 19% 74%, 0 59%, 16% 40%, 8% 17%, 34% 21%);
  background: #747d8e;
  box-shadow: inset 0 0 0 8px #fff;
  transform: rotate(-5deg);
}
.choice--shape label small { max-width: 150px; color: var(--pc-muted); font-size: .72rem; line-height: 1.35; }
.review-proof { display: inline-flex; align-items: center; gap: 10px; color: var(--pc-ink); }
.review-proof img { width: 26px; height: 26px; }
.review-proof strong { font-size: 1.12rem; }
.review-proof > span:last-child { color: var(--pc-muted); }
.visual-choices { display: grid; gap: 12px; }
.visual-choices--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.visual-choices--two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.choice--visual label { min-height: 0; display: block; padding: 0; overflow: hidden; text-align: left; }
.material-image, .presentation-image { position: relative; width: 100%; display: block; overflow: hidden; background: #eef1f4; }
.material-image { aspect-ratio: 3 / 2; background: #fff; }
.presentation-image { height: 176px; }
.material-image img, .presentation-image img { position: absolute; max-width: none; }
.material-image img { inset: 0; width: 100%; height: 100%; object-fit: contain; }
.choice--visual label > span:last-child { display: block; padding: 14px 15px 16px; }
.choice--visual label small { display: block; margin-top: 5px; color: var(--pc-muted); line-height: 1.4; }
.visual-choice__price { display: block; margin-top: 12px; color: var(--pc-pink); font-size: 1.05rem; }
.option-supplement { display: block; margin-top: 8px; color: var(--pc-pink); font-size: .9rem; }
.presentation-image--sheet img { top: 50%; left: 0; width: 154%; height: auto; transform: translateY(-50%); }
.presentation-image--single img { top: -117%; right: 0; width: 285%; height: auto; }
.presentation-warning { margin: 12px 0 0; color: #7a4c00; font-size: .88rem; font-weight: 650; }
.dimensions { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.config-summary { position: sticky; top: 12px; min-width: 0; max-height: none; overflow: visible; border-radius: 20px; background: #fff; box-shadow: var(--pc-shadow); }
.config-summary__total { padding: 18px 20px; color: #fff; background: #211321; }
.config-summary__total small { display: block; color: #cfc5cf; font-weight: 700; }
.config-summary__total strong { display: block; font-size: 2.25rem; line-height: 1.08; }
.config-summary__total span { color: #cfc5cf; font-size: .86rem; }
.config-summary__tax { display: block; margin-top: 5px; }
.config-summary__total--closing { margin-bottom: 10px; border-radius: 14px; }
.config-summary__total--unit > strong { color: #fff; }
.config-summary__group-total { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 10px; padding-top: 9px; border-top: 1px solid rgba(255,255,255,.2); color: #fff !important; }
.config-summary__group-total b { font-size: .82rem; }
.config-summary__group-total em { color: #fff; font-size: 1rem; font-style: normal; font-weight: 850; }
.config-summary__included { display: block; margin-top: 7px; color: #fff !important; font-size: .78rem !important; font-weight: 800; }
.summary-lines { margin: 0; padding: 12px 20px 4px; }
.summary-lines div { min-width: 0; display: flex; justify-content: space-between; gap: 14px; padding: 6px 0; border-bottom: 1px solid var(--pc-line); font-size: .82rem; line-height: 1.25; }
.summary-lines dt { color: var(--pc-muted); }
.summary-lines dd { min-width: 0; margin: 0; overflow-wrap: anywhere; text-align: right; font-weight: 750; }
.summary-lines__price-start { margin-top: 4px; border-top: 2px solid var(--pc-line); }
.summary-lines__subtotal dt, .summary-lines__subtotal dd { color: var(--pc-ink); font-weight: 850; }
.shipping-progress { margin: 8px 20px 0; padding: 10px 12px; border-radius: 12px; color: #14633d; background: #e8f6ef; }
.shipping-progress p { margin: 0; font-size: .82rem; font-weight: 800; }
.shipping-progress small { display: block; margin-top: 4px; font-size: .72rem; }
.shipping-progress__track { height: 5px; margin-top: 6px; overflow: hidden; border-radius: 99px; background: rgba(13,145,77,.18); }
.shipping-progress__track span { display: block; width: 100%; height: 100%; border-radius: inherit; background: var(--pc-green); transition: width .2s ease; }
.config-summary__action { padding: 10px 20px 16px; }
.config-summary__action .btn { width: 100%; }
.config-summary__action p { margin: 7px 0 0; color: var(--pc-muted); font-size: .75rem; text-align: center; }
.config-summary__action p a { color: var(--pc-pink); font-weight: 750; }
.cart-file-note { font-weight: 650; }
.config-summary__action .cart-feedback { padding: 8px 10px; border-radius: 9px; color: #14633d; background: #e8f6ef; font-weight: 800; }
.summary-reassurance { display: grid; gap: 3px; margin: 9px 0 0; padding: 0; list-style: none; color: #4f596c; font-size: .72rem; }
.summary-reassurance li::before { content: "✓"; margin-right: 4px; color: var(--pc-green); font-weight: 900; }
.summary-help { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--pc-line); }
.summary-help > strong, .summary-help > span { display: block; }
.summary-help > strong { font-size: .84rem; }
.summary-help > span { margin-top: 2px; color: var(--pc-muted); font-size: .75rem; }
.whatsapp-link { display: flex; min-height: 42px; align-items: center; justify-content: center; gap: 8px; margin-top: 10px; padding: 8px 12px; border: 1px solid #8fc5aa; border-radius: 999px; color: #0a7640; background: #fff; font-size: .78rem; font-weight: 850; text-align: center; }
.whatsapp-link:hover { color: #fff; background: var(--pc-green); border-color: var(--pc-green); }
.whatsapp-link svg, .btn--whatsapp svg { width: 17px; height: 17px; flex: 0 0 17px; fill: currentColor; }
.btn:disabled { border-color: #aeb5c0; color: #fff; background: #aeb5c0; cursor: not-allowed; }
.file-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.file-options label { align-content: center; gap: 5px; }
.file-options label small { font-size: .875rem; }
.file-review-callout { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 18px; margin-bottom: 14px; padding: 18px; border-radius: 14px; background: #edf8f2; }
.file-review-callout p { margin: 3px 0 0; color: #4f596c; font-size: .875rem; }
.file-review-callout .whatsapp-link { min-width: 225px; margin: 0; background: #fff; }
.file-review-callout .whatsapp-link:hover { background: var(--pc-green); }
.file-options--status label { min-height: 118px; }
.file-adjustments { display: flex; align-items: center; gap: 10px; margin: 0 0 14px; padding: 10px 12px; border: 1px solid #cfe7da; border-radius: 10px; color: #345746; background: #f7fcf9; font-size: .875rem; }
.file-adjustments strong { flex: 0 0 auto; color: var(--pc-green); }
.file-delivery { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--pc-line); }
.file-delivery h3 { margin-bottom: 12px; font-size: 1rem; }
.file-options--delivery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.file-options--delivery label { min-height: 92px; }
.mobile-config-bar { display: none; }

.purchase-care { padding: 34px 0; border-top: 1px solid var(--pc-line); border-bottom: 1px solid var(--pc-line); background: #f7f8fa; }
.purchase-care__grid { display: grid; grid-template-columns: 1.2fr .85fr .95fr; align-items: center; gap: 12px; }
.purchase-care h2 { max-width: 410px; margin: 0; font-size: clamp(1.8rem, 2.7vw, 2.8rem); }
.purchase-care article { align-self: stretch; padding: 18px; border: 1px solid #d9dee7; border-radius: 14px; background: #fff; }
.purchase-care article span { display: block; margin-bottom: 5px; font-size: .72rem; font-weight: 850; text-transform: uppercase; }
.purchase-care article p { margin: 0; color: #4f596c; font-size: .82rem; line-height: 1.45; }
.purchase-care__actions { display: grid; gap: 8px; }
.purchase-care__actions .btn { min-width: 210px; min-height: 46px; padding-inline: 18px; font-size: .76rem; }
.btn--whatsapp { color: #fff; background: var(--pc-green); border-color: var(--pc-green); }
.btn--whatsapp:hover { background: #08763d; border-color: #08763d; }
.review-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.review-grid blockquote { margin: 0; padding: 27px; border: 1px solid var(--pc-line); border-radius: 17px; background: #fff; }
.review-grid blockquote p { min-height: 78px; margin: 11px 0 18px; }
.review-grid blockquote footer { color: var(--pc-muted); font-size: .88rem; font-weight: 750; }

.faq-list { max-width: 900px; margin: 0 auto; }
.faq-list details { padding: 20px 0; border-bottom: 1px solid var(--pc-line); }
.faq-list summary { cursor: pointer; font-weight: 800; }
.faq-list p { margin: 12px 0 0; color: var(--pc-muted); }

.pc-footer { padding: 40px 0; color: #c6cbd4; background: #090c11; }
.pc-footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.pc-footer strong { color: #fff; }
.pc-footer__address { display: inline-block; margin-top: 6px; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.pc-footer--compact nav { display: flex; flex-wrap: wrap; gap: 20px; }
.pc-footer--full { padding: 54px 0 24px; }
.pc-footer__grid { display: grid; grid-template-columns: minmax(230px, 1.25fr) repeat(2, minmax(190px, 1fr)); gap: clamp(34px, 5vw, 84px); align-items: start; }
.pc-footer__brand { max-width: 290px; }
.pc-footer__logo { display: inline-flex; margin-bottom: 16px; }
.pc-footer__logo img { width: auto; height: 68px; object-fit: contain; }
.pc-footer__brand .pc-footer__address { margin-top: 0; color: #c6cbd4; line-height: 1.65; text-decoration: none; }
.pc-footer__brand .pc-footer__address strong { display: inline-block; margin-top: 3px; font-size: .9rem; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.pc-footer__heading { margin: 0 0 14px; color: #fff; font-size: .82rem; letter-spacing: .11em; text-transform: uppercase; }
.pc-footer__list { margin: 0; padding: 0; list-style: none; }
.pc-footer__list li + li { margin-top: 3px; }
.pc-footer__list a { display: inline-flex; align-items: center; min-height: 34px; line-height: 1.35; }
.pc-footer__bottom { display: flex; justify-content: space-between; gap: 24px; margin-top: 38px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.14); color: #9ea6b3; font-size: .84rem; }
.pc-footer a:hover { color: #fff; }

@media (max-width: 820px) {
  .pc-footer__grid { grid-template-columns: 1fr 1fr; }
  .pc-footer__brand { grid-column: 1 / -1; max-width: none; }
  .home-closing__panel { grid-template-columns: 1fr; }
  .home-closing__copy h2 { max-width: 14em; }
}

.pilot-hub { min-height: 100vh; background: var(--pc-soft); }
.pilot-hub__hero { padding: 84px 0 48px; }
.pilot-hub__hero h1 { max-width: 980px; }
.pilot-hub__grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; padding-bottom: 90px; }
.pilot-hub__card { display: flex; flex-direction: column; min-height: 300px; padding: 34px; border: 1px solid var(--pc-line); border-radius: var(--pc-radius); background: #fff; }
.pilot-hub__card span { color: var(--pc-pink); font-weight: 850; }
.pilot-hub__card p { color: var(--pc-muted); }
.pilot-hub__card .btn { align-self: flex-start; margin-top: auto; }
.pilot-hub__card .text-link { align-self: flex-start; margin-top: 14px; }

@media (min-width: 901px) and (max-height: 820px) {
  .config-summary { position: static; }
}

@media (max-width: 1120px) {
  .pc-header__inner { grid-template-columns: 84px 1fr auto; gap: 16px; }
  .pc-nav { gap: 15px; }
  .pc-nav a { font-size: .84rem; }
  .pc-assist { padding: 0 17px; }
  .family-card { grid-template-columns: 1fr; }
  .family-card img { height: 220px; }
  .product-grid, .solution-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .config-layout { grid-template-columns: minmax(0,1fr) 340px; }
  .product-landing__grid { grid-template-columns: minmax(0, .9fr) minmax(460px, 1.1fr); gap: 40px; }
  .choices--shape { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .choices--quantity { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .pilot-bar nav { display: none; }
  .pc-header__inner { min-height: 72px; grid-template-columns: 1fr auto; }
  .pc-logo img { width: 48px; height: 54px; }
  .pc-nav, .pc-header > .pc-header__inner > .pc-assist { display: none; }
  .pc-menu { display: block; position: relative; }
  .pc-menu summary { padding: 10px 16px; border: 1px solid var(--pc-line); border-radius: 999px; font-weight: 800; cursor: pointer; }
  .pc-menu__panel { position: absolute; right: 0; top: 48px; width: min(310px, calc(100vw - 32px)); display: grid; padding: 12px; border: 1px solid var(--pc-line); border-radius: 14px; background: #fff; box-shadow: var(--pc-shadow); }
  .pc-menu__panel a { padding: 12px; border-radius: 9px; font-weight: 700; }
  .pc-menu__panel a[aria-current="page"] { color: var(--pc-pink); background: #fff2f7; }
  .hero__grid, .category-hero__grid, .split-proof, .brief { grid-template-columns: 1fr; }
  .hero, .category-hero, .product-landing { min-height: 0; }
  .hero__grid { min-height: auto; }
  .hero__copy { padding: 56px max(24px, calc((100vw - var(--pc-max))/2)) 48px; }
  .hero__media { min-height: 460px; }
  .category-hero__media { height: 430px; }
  .product-gallery__main { height: 430px; }
  .product-gallery__thumbs button { height: auto; aspect-ratio: 1.35; }
  .split-proof img { min-height: 430px; }
  .lead-family-page .split-proof img {
    width: 100%;
    height: clamp(240px, 44vw, 360px);
    min-height: 0;
    aspect-ratio: auto;
  }
  .lead-family-page .solution-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .family-grid, .pilot-hub__grid { grid-template-columns: 1fr; }
  .config-layout { grid-template-columns: 1fr; }
  .config-summary { position: static; max-height: none; overflow: visible; }
  .purchase-care__grid { grid-template-columns: 1fr 1fr; }
  .purchase-care__grid > div:first-child { grid-column: 1 / -1; }
  .purchase-care__actions { grid-column: 1 / -1; grid-template-columns: repeat(2, minmax(0,1fr)); }
  .config-media { grid-template-columns: 1fr 1fr; }
  .product-landing__grid { grid-template-columns: 1fr; }
  .product-gallery__main { height: 430px; }
  .closing-reviews__grid { grid-template-columns: 1fr; }
  .closing-review:nth-child(n+2) { display: none; }
}

@media (max-width: 1100px) {
  .lead-family-page .brief { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .lead-family-page .solution-grid {
    max-width: 440px;
    grid-template-columns: 1fr;
    margin-inline: auto;
  }
}

@media (max-width: 640px) {
  .shell, .pilot-bar__inner { width: min(100% - 28px, var(--pc-max)); }
  .section { padding: 58px 0; }
  h1 { font-size: clamp(2.55rem, 13vw, 4rem); }
  h2 { font-size: clamp(1.85rem, 9vw, 2.75rem); }
  .section-head, .config-intro, .config-zone-head, .pc-footer__inner { display: block; }
  .section-head > p { margin-top: 14px; }
  .hero__copy { padding: 48px 20px 42px; }
  .hero__media { min-height: 360px; }
  .hero__note { right: 14px; bottom: 14px; left: 14px; }
  .trust-line__inner { min-height: 78px; gap: 10px; font-size: .83rem; }
  .trust-line__brand { font-size: 1rem; }
  .trust-line__score { font-size: 1.3rem; }
  .trust-line__stars { display: none; }
  .trust-line__count { padding-left: 10px; }
  .assurance-strip__grid { grid-template-columns: 1fr; }
  .assurance-strip__item { min-height: 0; padding: 12px 8px; }
  .assurance-strip__item + .assurance-strip__item { border-left: 0; border-top: 1px solid var(--pc-line); }
  .family-card { min-height: 0; }
  .family-card img { height: 205px; }
  .family-card__copy { padding: 24px; }
  .category-hero { padding-top: 42px; }
  .category-hero__media { height: 310px; }
  .lead-family-page .solution-card__body { min-height: 0; }
  .product-grid, .solution-grid, .guide-grid { grid-template-columns: 1fr; }
  .product-card__body { min-height: 220px; }
  .brief { padding: 24px; }
  .home-closing { padding-block: 42px; }
  .home-closing__panel { gap: 28px; padding: 34px 24px; }
  .home-closing__copy h2 { font-size: clamp(2rem, 9.5vw, 2.75rem); }
  .form-grid, .dimensions { grid-template-columns: 1fr; }
  .closing-reviews { padding: 15px; }
  .closing-reviews__head { display: grid; align-items: start; gap: 8px; }
  .closing-reviews__head a { white-space: normal; }
  .contact-choice { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .form-actions { grid-column: auto; grid-template-columns: 1fr; }
  .form-actions__buttons { grid-template-columns: 1fr; }
  .form-actions .btn { width: 100%; }
  .config-top { padding-top: 28px; }
  .config-intro h1 { font-size: 2.75rem; }
  .config-progress { margin-top: 18px; }
  .config-media { grid-template-columns: 1.25fr .75fr; }
  .config-media img { height: 190px; }
  .config-media img:nth-child(2) { height: 190px; }
  .step { padding: 20px; }
  .choices { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .choices--shape { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .choices--quantity { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .choice--shape:last-child { grid-column: 1 / -1; }
  .choice--shape label { min-height: 105px; }
  .visual-choices--three, .visual-choices--two { grid-template-columns: 1fr; }
  .choice--visual label { display: grid; grid-template-columns: 118px 1fr; align-items: stretch; }
  .presentation-image { height: 122px; }
  .visual-choices--three .choice--visual label { display: block; }
  .presentation-image--sheet img { width: auto; height: 175%; }
  .presentation-image--single img { top: -30px; width: 285%; }
  .choice--visual label > span:last-child { align-self: center; }
  .file-options { grid-template-columns: 1fr; }
  .file-review-callout { grid-template-columns: 1fr; }
  .file-review-callout .whatsapp-link { min-width: 0; }
  .file-adjustments { align-items: flex-start; flex-direction: column; }
  .file-options--delivery { grid-template-columns: 1fr; }
  .summary-lines { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 14px; padding: 12px 16px 4px; }
  .summary-lines div { display: block; padding: 7px 0; }
  .summary-lines dt { font-size: .7rem; }
  .summary-lines dd { margin-top: 2px; text-align: left; }
  .summary-lines div:nth-child(n+8) { grid-column: 1 / -1; display: flex; }
  .summary-lines div:nth-child(n+8) dd { margin-top: 0; text-align: right; }
  .config-summary__total strong { font-size: 2rem; }
  .shipping-progress { margin-right: 16px; margin-left: 16px; }
  .config-summary__action { padding-right: 16px; padding-left: 16px; }
  .purchase-care { padding: 44px 0; }
  .purchase-care__grid { grid-template-columns: 1fr; }
  .purchase-care__grid > div:first-child, .purchase-care__actions { grid-column: auto; }
  .purchase-care article { padding: 16px; }
  .purchase-care__actions { grid-template-columns: 1fr; }
  .purchase-care__actions .btn { width: 100%; }
  .config-page { padding-bottom: 82px; }
  .mobile-config-bar {
    position: fixed;
    z-index: 50;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-top: 1px solid #343943;
    color: #fff;
    background: rgba(13,17,24,.97);
    box-shadow: 0 -10px 30px rgba(0,0,0,.18);
  }
  .mobile-config-bar small { display: block; color: #bfc5cf; }
  .mobile-config-bar strong { display: block; font-size: 1.22rem; }
  .mobile-config-bar .mobile-group-total { display: block; margin-top: 2px; color: #bfc5cf; font-size: .7rem; }
  .mobile-config-bar .mobile-group-total b { font-weight: 750; }
  .mobile-config-bar .mobile-group-total em { color: #fff; font-style: normal; font-weight: 800; }
  .mobile-config-bar .btn { min-height: 46px; padding: 0 17px; font-size: .78rem; }
  .pilot-hub__hero { padding-top: 58px; }
  .pilot-hub__card { min-height: 260px; padding: 26px; }
  .pc-footer--compact nav { margin-top: 18px; }
  .pc-footer--full { padding-top: 44px; }
  .pc-footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .pc-footer__brand { grid-column: auto; }
  .pc-footer__list a { min-height: 44px; }
  .pc-footer__bottom { display: grid; gap: 7px; margin-top: 30px; }
  .summary-help { display: none; }
  .product-landing { padding-top: 28px; padding-bottom: 48px; }
  .product-landing__copy h1 { font-size: clamp(2.7rem, 13vw, 4rem); }
  .product-gallery__main { height: 285px; }
  .product-gallery__thumbs { gap: 6px; }
  .configurator-zone { padding: 54px 0 62px; }
  .config-zone-head > p { margin-top: 12px; }
  .review-grid { grid-template-columns: 1fr; }
  .review-grid blockquote p { min-height: 0; }
}
