/* ==========================================================================
   VELTORRA — service page components (sp-*)
   Shared library for all service sub-pages.
   Every block ships a dark and a light tone; pages alternate them.
   ========================================================================== */

/* Hero ------------------------------------------------------------------- */

.sp-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  min-height: clamp(560px, 78vh, 780px);
  padding: calc(var(--header-h) + 150px) var(--page-x) clamp(56px, 7vw, 92px);
  color: #e9e4da;
  background-color: #0d0e0c;
  background-size: cover;
  background-position: center right;
  overflow: hidden;
}

.sp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(10, 11, 9, .82), rgba(10, 11, 9, 0) 32%),
    linear-gradient(100deg, rgba(10, 11, 9, .92) 0%, rgba(10, 11, 9, .72) 34%, rgba(10, 11, 9, .12) 62%, rgba(10, 11, 9, 0) 78%),
    linear-gradient(0deg, rgba(10, 11, 9, .88), rgba(10, 11, 9, 0) 46%);
}

.sp-hero__copy {
  max-width: 780px;
}

.sp-crumbs {
  margin: 0 0 22px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #9d968a;
}

.sp-crumbs a {
  color: #9d968a;
  text-decoration: none;
  transition: color .2s ease;
}

.sp-crumbs a:hover {
  color: #d69a5c;
}

.sp-crumbs span {
  color: #c08a46;
}

.sp-crumbs i {
  font-style: normal;
  margin: 0 10px;
  color: rgba(193, 123, 60, .55);
}

.sp-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: #c08a46;
}

.sp-hero__eyebrow::after {
  content: "";
  width: 54px;
  height: 1px;
  background: linear-gradient(90deg, rgba(193, 123, 60, .9), transparent);
}

.sp-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(38px, 4.5vw, 66px);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -.02em;
  color: #efe8da;
  text-wrap: balance;
}

.sp-hero__lead {
  margin: 22px 0 0;
  max-width: 620px;
  font-size: 15.5px;
  font-weight: 300;
  line-height: 1.75;
  color: #b9b2a4;
}

.sp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

/* Section shell ---------------------------------------------------------- */

.sp {
  position: relative;
  isolation: isolate;
  padding: clamp(56px, 6vw, 92px) var(--page-x);
}

.sp--dark {
  color: #e9e4da;
  background:
    radial-gradient(1100px 500px at 88% -10%, rgba(193, 123, 60, .07), transparent 60%),
    linear-gradient(180deg, #101110, #0c0d0b);
  border-bottom: 1px solid rgba(193, 123, 60, .18);
}

.sp--light {
  color: #1b1a16;
  background:
    radial-gradient(1000px 460px at 10% 0%, rgba(255, 255, 255, .8), transparent 55%),
    linear-gradient(180deg, #f3ecdd, #ece4d3);
  border-bottom: 1px solid rgba(20, 19, 16, .12);
}

.sp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: #c08a46;
}

.sp-eyebrow::after {
  content: "";
  width: 54px;
  height: 1px;
  background: linear-gradient(90deg, rgba(193, 123, 60, .8), transparent);
}

.sp--light .sp-eyebrow {
  color: #a2601f;
}

.sp-h2 {
  margin: 0;
  max-width: 900px;
  font-family: var(--font-display);
  font-size: clamp(30px, 3.4vw, 50px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: #efe8da;
  text-wrap: balance;
}

.sp--light .sp-h2 {
  color: #17150f;
}

.sp-lead {
  margin: 18px 0 0;
  max-width: 720px;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: #a8a296;
}

.sp--light .sp-lead {
  color: #4c463a;
  font-weight: 400;
}

/* Facts row -------------------------------------------------------------- */

.sp-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: clamp(34px, 3.8vw, 54px);
}

.sp-fact {
  position: relative;
  padding: 26px 26px 24px;
  border: 1px solid rgba(193, 123, 60, .26);
  background: linear-gradient(160deg, rgba(193, 123, 60, .07), transparent 55%);
}

.sp-fact::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 22px;
  height: 22px;
  border-top: 1px solid rgba(193, 123, 60, .85);
  border-left: 1px solid rgba(193, 123, 60, .85);
}

.sp--light .sp-fact {
  border-color: rgba(20, 19, 16, .18);
  background: rgba(255, 255, 255, .45);
}

.sp-fact b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(30px, 2.6vw, 40px);
  font-weight: 400;
  letter-spacing: -.02em;
  color: #d69a5c;
}

.sp--light .sp-fact b {
  color: #a2601f;
}

.sp-fact span {
  display: block;
  margin-top: 8px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #e9e4da;
}

.sp--light .sp-fact span {
  color: #17150f;
}

.sp-fact p {
  margin: 8px 0 0;
  font-size: 12.5px;
  font-weight: 300;
  line-height: 1.6;
  color: #9d968a;
}

.sp--light .sp-fact p {
  color: #6b6353;
}

/* Benefits ledger -------------------------------------------------------- */

.sp-bens {
  margin-top: clamp(34px, 3.8vw, 54px);
  border-top: 1px solid rgba(193, 123, 60, .3);
}

.sp--light .sp-bens {
  border-top-color: rgba(20, 19, 16, .2);
}

.sp-ben {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 26px;
  align-items: baseline;
  padding: 26px 4px;
  border-bottom: 1px solid rgba(193, 123, 60, .18);
}

.sp--light .sp-ben {
  border-bottom-color: rgba(20, 19, 16, .14);
}

.sp-ben__num {
  font-family: var(--font-display);
  font-size: 30px;
  color: rgba(214, 154, 92, .75);
}

.sp--light .sp-ben__num {
  color: rgba(162, 96, 31, .8);
}

.sp-ben h3 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: clamp(21px, 2vw, 26px);
  font-weight: 400;
  letter-spacing: -.01em;
  color: #efe8da;
}

.sp--light .sp-ben h3 {
  color: #17150f;
}

.sp-ben p {
  margin: 0;
  max-width: 640px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: #a8a296;
}

.sp--light .sp-ben p {
  color: #55503f;
  font-weight: 400;
}

.sp-ben__tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #c08a46;
  white-space: nowrap;
}

.sp--light .sp-ben__tag {
  color: #a2601f;
}

/* Process steps ---------------------------------------------------------- */

.sp-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: clamp(34px, 3.8vw, 54px);
  counter-reset: spstep;
}

.sp-step {
  position: relative;
  padding: 28px 26px 26px;
  border: 1px solid rgba(193, 123, 60, .26);
  background: linear-gradient(180deg, rgba(193, 123, 60, .06), transparent 45%);
}

.sp--light .sp-step {
  border-color: rgba(20, 19, 16, .18);
  background: rgba(255, 255, 255, .42);
}

.sp-step::after {
  counter-increment: spstep;
  content: "0" counter(spstep);
  position: absolute;
  top: 20px;
  right: 22px;
  font-family: var(--font-display);
  font-size: 26px;
  color: rgba(214, 154, 92, .55);
}

.sp--light .sp-step::after {
  color: rgba(162, 96, 31, .5);
}

.sp-step h3 {
  margin: 0 0 10px;
  padding-right: 46px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #d69a5c;
}

.sp--light .sp-step h3 {
  color: #a2601f;
}

.sp-step p {
  margin: 0;
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.7;
  color: #a8a296;
}

.sp--light .sp-step p {
  color: #55503f;
  font-weight: 400;
}

/* Price panel ------------------------------------------------------------ */

.sp-price__panel {
  display: grid;
  grid-template-columns: minmax(300px, 420px) 1fr;
  gap: clamp(30px, 4vw, 70px);
  margin-top: clamp(34px, 3.8vw, 54px);
  padding: clamp(30px, 3.4vw, 48px);
  border: 1px solid rgba(193, 123, 60, .32);
  background: linear-gradient(150deg, rgba(193, 123, 60, .09), transparent 50%);
}

.sp--light .sp-price__panel {
  border-color: rgba(20, 19, 16, .2);
  background: rgba(255, 255, 255, .5);
}

.sp-price__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(52px, 5.4vw, 82px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.02em;
  color: #d69a5c;
}

.sp--light .sp-price__num {
  color: #a2601f;
}

.sp-price__num small {
  font-size: .42em;
  letter-spacing: 0;
  color: inherit;
}

.sp-price__from {
  display: block;
  margin-bottom: 10px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: #c08a46;
}

.sp--light .sp-price__from {
  color: #a2601f;
}

.sp-price__note {
  margin: 18px 0 0;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: #9d968a;
}

.sp--light .sp-price__note {
  color: #6b6353;
  font-weight: 400;
}

.sp-price__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 26px;
}

.sp-price__all {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #c08a46;
  text-decoration: none;
  border-bottom: 1px solid rgba(193, 123, 60, .5);
  padding-bottom: 3px;
  transition: color .2s ease, border-color .2s ease;
}

.sp-price__all:hover {
  color: #d69a5c;
  border-color: #d69a5c;
}

.sp--light .sp-price__all {
  color: #a2601f;
  border-color: rgba(162, 96, 31, .5);
}

.sp-price__list {
  margin: 0;
  padding: 0;
  list-style: none;
  align-self: center;
}

.sp-price__list li {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(193, 123, 60, .16);
  font-size: 14px;
  font-weight: 300;
  color: #b9b2a4;
}

.sp--light .sp-price__list li {
  border-bottom-color: rgba(20, 19, 16, .12);
  color: #4c463a;
  font-weight: 400;
}

.sp-price__list li:last-child {
  border-bottom: 0;
}

.sp-price__list li::before {
  content: "";
  flex: 0 0 auto;
  width: 18px;
  height: 1px;
  background: rgba(193, 123, 60, .8);
  transform: translateY(-4px);
}

/* Signs checklist -------------------------------------------------------- */

.sp-signs__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 clamp(30px, 4vw, 70px);
  margin-top: clamp(30px, 3.4vw, 48px);
}

.sp-sign {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 17px 4px;
  border-bottom: 1px solid rgba(193, 123, 60, .18);
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.6;
  color: #b9b2a4;
}

.sp--light .sp-sign {
  border-bottom-color: rgba(20, 19, 16, .14);
  color: #3f3a2e;
  font-weight: 400;
}

.sp-sign::before {
  content: "✓";
  flex: 0 0 auto;
  font-size: 12px;
  color: #c08a46;
}

.sp--light .sp-sign::before {
  color: #a2601f;
}

/* Comparison ------------------------------------------------------------- */

.sp-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: clamp(34px, 3.8vw, 54px);
}

.sp-compare__col {
  padding: clamp(26px, 2.6vw, 38px);
  border: 1px solid rgba(193, 123, 60, .3);
  background: linear-gradient(170deg, rgba(193, 123, 60, .08), transparent 55%);
}

.sp-compare__col--muted {
  border-color: rgba(157, 150, 138, .28);
  background: transparent;
}

.sp--light .sp-compare__col {
  border-color: rgba(162, 96, 31, .4);
  background: rgba(255, 255, 255, .5);
}

.sp--light .sp-compare__col--muted {
  border-color: rgba(20, 19, 16, .18);
  background: transparent;
}

.sp-compare__col h3 {
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(193, 123, 60, .3);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #d69a5c;
}

.sp-compare__col--muted h3 {
  color: #9d968a;
  border-bottom-color: rgba(157, 150, 138, .3);
}

.sp--light .sp-compare__col h3 {
  color: #a2601f;
  border-bottom-color: rgba(162, 96, 31, .3);
}

.sp--light .sp-compare__col--muted h3 {
  color: #6b6353;
  border-bottom-color: rgba(20, 19, 16, .18);
}

.sp-compare__col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sp-compare__col li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(193, 123, 60, .14);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
  color: #b9b2a4;
}

.sp-compare__col--muted li {
  border-bottom-color: rgba(157, 150, 138, .18);
  color: #8f8a7e;
}

.sp--light .sp-compare__col li {
  border-bottom-color: rgba(20, 19, 16, .1);
  color: #3f3a2e;
  font-weight: 400;
}

.sp--light .sp-compare__col--muted li {
  color: #6b6353;
}

.sp-compare__col li:last-child {
  border-bottom: 0;
}

/* Cities / GEO ----------------------------------------------------------- */

.sp-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(28px, 3vw, 42px);
}

.sp-city {
  padding: 11px 22px;
  border: 1px solid rgba(193, 123, 60, .32);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #d0c9bb;
}

.sp--light .sp-city {
  border-color: rgba(20, 19, 16, .22);
  color: #3f3a2e;
  background: rgba(255, 255, 255, .4);
}

/* Related services ------------------------------------------------------- */

.sp-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: clamp(30px, 3.4vw, 48px);
}

.sp-rel {
  position: relative;
  display: block;
  padding: 28px 56px 26px 26px;
  border: 1px solid rgba(193, 123, 60, .28);
  text-decoration: none;
  background: linear-gradient(160deg, rgba(193, 123, 60, .06), transparent 50%);
  transition: border-color .25s ease, background .25s ease;
}

.sp-rel:hover {
  border-color: rgba(214, 154, 92, .7);
  background: linear-gradient(160deg, rgba(193, 123, 60, .14), transparent 60%);
}

.sp--light .sp-rel {
  border-color: rgba(20, 19, 16, .2);
  background: rgba(255, 255, 255, .45);
}

.sp--light .sp-rel:hover {
  border-color: rgba(162, 96, 31, .7);
}

.sp-rel h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -.01em;
  color: #efe8da;
}

.sp--light .sp-rel h3 {
  color: #17150f;
}

.sp-rel p {
  margin: 0;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.65;
  color: #a8a296;
}

.sp--light .sp-rel p {
  color: #55503f;
  font-weight: 400;
}

.sp-rel::after {
  content: "↗";
  position: absolute;
  top: 22px;
  right: 22px;
  font-size: 15px;
  color: #c08a46;
  transition: transform .25s ease;
}

.sp-rel:hover::after {
  transform: translate(3px, -3px);
}

/* Standard (brand proof) ------------------------------------------------- */

.sp-standard__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: clamp(30px, 3.4vw, 48px);
}

.sp-std {
  padding: 26px 24px;
  border-top: 1px solid rgba(193, 123, 60, .7);
  background: linear-gradient(180deg, rgba(193, 123, 60, .07), transparent 60%);
}

.sp--light .sp-std {
  border-top-color: rgba(162, 96, 31, .75);
  background: rgba(255, 255, 255, .4);
}

.sp-std b {
  display: block;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #d69a5c;
}

.sp--light .sp-std b {
  color: #a2601f;
}

.sp-std p {
  margin: 0;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: #a8a296;
}

.sp--light .sp-std p {
  color: #55503f;
  font-weight: 400;
}

/* FAQ -------------------------------------------------------------------- */

.sp-faq__list {
  margin-top: clamp(30px, 3.4vw, 48px);
  border-top: 1px solid rgba(193, 123, 60, .3);
}

.sp--light .sp-faq__list {
  border-top-color: rgba(20, 19, 16, .2);
}

.sp-faq__item {
  border-bottom: 1px solid rgba(193, 123, 60, .18);
}

.sp--light .sp-faq__item {
  border-bottom-color: rgba(20, 19, 16, .14);
}

.sp-faq__item summary {
  position: relative;
  display: block;
  padding: 22px 56px 22px 4px;
  font-family: var(--font-display);
  font-size: clamp(19px, 1.9vw, 24px);
  font-weight: 400;
  letter-spacing: -.01em;
  color: #efe8da;
  cursor: pointer;
  list-style: none;
  transition: color .2s ease;
}

.sp--light .sp-faq__item summary {
  color: #17150f;
}

.sp-faq__item summary::-webkit-details-marker {
  display: none;
}

.sp-faq__item summary:hover {
  color: #d69a5c;
}

.sp--light .sp-faq__item summary:hover {
  color: #a2601f;
}

.sp-faq__item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 300;
  color: #c08a46;
}

.sp-faq__item[open] summary::after {
  content: "−";
}

.sp-faq__item p {
  margin: 0;
  padding: 0 8% 24px 4px;
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.8;
  color: #a8a296;
}

.sp--light .sp-faq__item p {
  color: #4c463a;
  font-weight: 400;
}

/* Final band ------------------------------------------------------------- */

.sp-band {
  padding: clamp(64px, 7vw, 110px) var(--page-x);
  text-align: center;
  color: #e9e4da;
  background:
    radial-gradient(900px 420px at 50% 120%, rgba(193, 123, 60, .16), transparent 65%),
    linear-gradient(180deg, #0e0f0d, #0a0b09);
}

.sp-band h2 {
  margin: 0 auto;
  max-width: 820px;
  font-family: var(--font-display);
  font-size: clamp(32px, 3.8vw, 56px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.02em;
  color: #efe8da;
  text-wrap: balance;
}

.sp-band p {
  margin: 20px auto 0;
  max-width: 560px;
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.75;
  color: #a8a296;
}

.sp-band__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
}

/* Services directory (hub page) ------------------------------------------ */

.sp-dir {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: clamp(34px, 3.8vw, 54px);
}

.sp-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 26px 26px 22px;
  border: 1px solid rgba(193, 123, 60, .28);
  text-decoration: none;
  background: linear-gradient(165deg, rgba(193, 123, 60, .07), transparent 52%);
  transition: border-color .25s ease, background .25s ease, transform .25s ease;
}

.sp-card:hover {
  border-color: rgba(214, 154, 92, .75);
  background: linear-gradient(165deg, rgba(193, 123, 60, .15), transparent 62%);
  transform: translateY(-2px);
}

.sp--light .sp-card {
  border-color: rgba(20, 19, 16, .2);
  background: rgba(255, 255, 255, .45);
}

.sp--light .sp-card:hover {
  border-color: rgba(162, 96, 31, .7);
}

.sp-card__num {
  font-family: var(--font-display);
  font-size: 24px;
  color: rgba(214, 154, 92, .6);
}

.sp--light .sp-card__num {
  color: rgba(162, 96, 31, .55);
}

.sp-card h3 {
  margin: 10px 0 8px;
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 400;
  letter-spacing: -.01em;
  line-height: 1.15;
  color: #efe8da;
}

.sp--light .sp-card h3 {
  color: #17150f;
}

.sp-card > p {
  margin: 0 0 20px;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.65;
  color: #a8a296;
}

.sp--light .sp-card > p {
  color: #55503f;
  font-weight: 400;
}

.sp-card__foot {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(193, 123, 60, .2);
}

.sp--light .sp-card__foot {
  border-top-color: rgba(20, 19, 16, .14);
}

.sp-card__price {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #c08a46;
}

.sp--light .sp-card__price {
  color: #a2601f;
}

.sp-card__price b {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 400;
  letter-spacing: 0;
  color: #d69a5c;
}

.sp--light .sp-card__price b {
  color: #a2601f;
}

.sp-card__foot i {
  font-style: normal;
  font-size: 15px;
  color: #c08a46;
  transition: transform .25s ease;
}

.sp-card:hover .sp-card__foot i {
  transform: translate(3px, -3px);
}

/* Responsive ------------------------------------------------------------- */

@media (max-width: 1100px) {
  .sp-facts { grid-template-columns: 1fr 1fr; }
  .sp-steps { grid-template-columns: 1fr 1fr; }
  .sp-standard__grid { grid-template-columns: 1fr 1fr; }
  .sp-related__grid { grid-template-columns: 1fr 1fr; }
  .sp-dir { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .sp-price__panel { grid-template-columns: 1fr; }
  .sp-signs__grid { grid-template-columns: 1fr; }
  .sp-compare { grid-template-columns: 1fr; }
  .sp-hero { background-position: center; }
}

@media (max-width: 640px) {
  .sp-facts { grid-template-columns: 1fr; }
  .sp-steps { grid-template-columns: 1fr; }
  .sp-standard__grid { grid-template-columns: 1fr; }
  .sp-related__grid { grid-template-columns: 1fr; }
  .sp-dir { grid-template-columns: 1fr; }
  .sp-ben { grid-template-columns: 54px 1fr; }
  .sp-ben__tag { display: none; }
  .sp-ben__num { font-size: 24px; }
}
