/* Pragmat Service — service + parts shop */
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 700;
  font-display: optional;
  src: url("../fonts/manrope-cyrillic-700.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 700;
  font-display: optional;
  src: url("../fonts/manrope-latin-700.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 800;
  font-display: optional;
  src: url("../fonts/manrope-cyrillic-800.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 800;
  font-display: optional;
  src: url("../fonts/manrope-latin-800.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Unbounded";
  font-style: normal;
  font-weight: 700;
  font-display: optional;
  src: url("../fonts/unbounded-cyrillic-700.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Unbounded";
  font-style: normal;
  font-weight: 700;
  font-display: optional;
  src: url("../fonts/unbounded-latin-700.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink: #14181f;
  --ink-2: #1e2630;
  --mist: #f7f5f1;
  --wash: #efebe4;
  --white: #ffffff;
  --accent: #e07a1f;
  --accent-h: #f08a2e;
  --accent-soft: rgba(224, 122, 31, 0.14);
  --muted: #4a5560;
  --line: #e2dbd1;
  --ok: #1a7f4b;
  --err: #b42318;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 12px 32px rgba(20, 24, 31, 0.08);
  --font: "Manrope", "Segoe UI", sans-serif;
  --display: "Unbounded", "Manrope", sans-serif;
  --wrap: 1180px;
  --pad: 24px;
  --header-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.55;
  color: var(--ink);
  background: var(--mist);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--accent); }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: max(var(--pad), env(safe-area-inset-left)) max(var(--pad), env(safe-area-inset-right));
}

/* Header */
.top {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(247, 245, 241, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.top__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  min-width: 0;
}
.logo__mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--accent-h), var(--accent));
  box-shadow: 0 8px 18px rgba(224, 122, 31, 0.35);
  flex-shrink: 0;
}
.logo__title {
  display: block;
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.logo__sub {
  display: block;
  margin-top: 2px;
  font-size: 0.72rem;
  color: var(--muted);
}
.menu__list {
  display: flex;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu__list a {
  display: block;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
}
.menu__list a:hover { background: var(--accent-soft); color: var(--ink); }
.top__actions { display: flex; align-items: center; gap: 10px; }
.top__phone { font-weight: 800; white-space: nowrap; }
.top__cta { padding: 10px 16px; font-size: 0.85rem; }
.top__cart {
  position: relative;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--wash);
}
.top__cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  display: grid;
  place-items: center;
}
.burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: var(--wash);
  cursor: pointer;
  font-size: 1.2rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 22px;
  border: 0;
  border-radius: 12px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  transition: transform .15s, background .15s;
}
.btn:hover { transform: translateY(-1px); color: inherit; }
.btn--accent {
  background: linear-gradient(135deg, var(--accent-h), var(--accent));
  color: #fff;
  box-shadow: 0 10px 24px rgba(224, 122, 31, 0.28);
}
.btn--accent:hover { color: #fff; }
.btn--outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn--outline-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.75);
}
.btn--ghost {
  background: var(--white);
  border: 1.5px solid var(--line);
  color: var(--ink);
}
.btn--full { width: 100%; }

/* Hero */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: clip;
  color: #fff;
  content-visibility: visible;
  contain: layout style;
}
.hero__media {
  position: absolute;
  inset: 0;
  background: #1a222c linear-gradient(135deg, #1a222c 0%, #2a3542 55%, #3a2818 100%);
  contain: strict;
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 45% at 70% 15%, rgba(224,122,31,.32), transparent 65%);
  pointer-events: none;
}
.hero__shade {
  position: absolute;
  inset: 0;
  background: rgba(20, 24, 31, 0.28);
  pointer-events: none;
}
.hero__body {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: min(720px, 100%);
  margin-inline: auto;
  padding-block: 56px 64px;
  box-sizing: border-box;
  text-align: center;
}
.hero__eyebrow {
  margin: 0 0 14px;
  padding-top: 2px;
  font-size: 0.78rem;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffd7a8;
  font-weight: 800;
}
.hero__brand {
  margin: 0 0 16px;
  font-family: var(--display);
  font-size: clamp(2rem, 8vw, 4rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  text-wrap: balance;
  overflow-wrap: anywhere;
}
.hero__lead {
  margin: 0 auto 28px;
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.5;
  max-width: 34em;
  color: rgba(255,255,255,.92);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 100%;
  justify-content: center;
}
.hero__actions .btn {
  max-width: 100%;
  box-sizing: border-box;
}
.hero .btn--outline-light:hover {
  background: rgba(255,255,255,.1);
  color: #fff;
}

.seo-block {
  max-width: 760px;
}
.seo-block p {
  color: var(--muted);
  margin: 0 0 14px;
}
.seo-block__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.seo-block__list a {
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Sections */
.section {
  padding: 72px 0;
  content-visibility: auto;
  contain-intrinsic-size: 1px 720px;
}
.section--tint { background: var(--wash); }
.section--dark {
  background: linear-gradient(135deg, #171d26 0%, #243040 60%, #3a2818 100%);
  color: #fff;
}
.section__head { max-width: 560px; margin-bottom: 28px; }
.section__tag {
  margin: 0 0 10px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6b3a0a;
}
.section__tag--light { color: #ffd7a8; }
.section__title {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.section__title--light { color: #fff; }
.section__desc { margin: 0; color: var(--muted); }

.problems {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.problem {
  display: flex;
  align-items: center;
  min-height: 72px;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
  box-shadow: var(--shadow);
  transition: border-color .15s, transform .15s;
}
.problem:hover {
  border-color: var(--accent);
  color: var(--ink);
  transform: translateY(-2px);
}

.why {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.why__item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow);
}
.why__item h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 800;
}
.why__item p { margin: 0; color: var(--muted); font-size: 0.95rem; }

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: step;
}
.steps li {
  position: relative;
  padding-top: 48px;
}
.steps li::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 0;
  left: 0;
  font-family: var(--display);
  font-size: 1.6rem;
  color: #b8895a;
}
.steps strong { display: block; margin-bottom: 6px; font-size: 1.05rem; }
.steps span { color: var(--muted); font-size: 0.92rem; }

.shop-teaser {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}
.shop-teaser__text {
  margin: 0;
  max-width: 36em;
  color: rgba(255,255,255,.82);
}
.shop-teaser__actions { display: flex; flex-wrap: wrap; gap: 12px; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.stats div {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 18px;
  box-shadow: var(--shadow);
}
.stats strong {
  display: block;
  font-family: var(--display);
  font-size: 1.6rem;
  margin-bottom: 6px;
}
.stats span { color: var(--muted); font-size: 0.88rem; }

.contact {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: start;
}
.contact__form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
}
.contact__form h3 { margin: 0 0 16px; font-size: 1.15rem; }
.info-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.info-list li { margin-bottom: 10px; }
.info-list a { font-weight: 800; text-decoration: underline; text-underline-offset: 2px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.field { display: block; margin-bottom: 12px; }
.field span {
  display: block;
  margin-bottom: 6px;
  font-size: 0.78rem;
  font-weight: 800;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font: inherit;
  background: var(--mist);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--ink);
  background: #fff;
}
.hp { position: absolute; left: -9999px; opacity: 0; }
.form-msg { min-height: 1.2em; margin: 8px 0 0; font-size: 0.88rem; }
.form-msg.ok { color: var(--ok); }
.form-msg.err { color: var(--err); }
.form-note { margin: 10px 0 0; font-size: 0.82rem; color: var(--muted); }

/* Inner pages */
.page-hero {
  padding: 48px 0 28px;
  background: linear-gradient(180deg, #1a222c, #243040);
  color: #fff;
}
.page-hero__title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
}
.page-hero__lead { margin: 12px 0 0; color: rgba(255,255,255,.85); max-width: 36em; }
.content-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}
.entry > *:first-child { margin-top: 0; }
.entry a { color: #a85a12; text-decoration: underline; }
.page-cta { margin-top: 24px; }

/* Footer / modal / mob */
.foot {
  background: #14181f;
  color: rgba(255,255,255,.88);
  padding: 48px 0 28px;
}
.foot__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr;
  gap: 28px;
  margin-bottom: 28px;
}
.foot strong { display: block; color: #fff; margin-bottom: 8px; }
.foot a { color: #ffd7a8; }
.foot__menu { list-style: none; margin: 0; padding: 0; }
.foot__menu li { margin-bottom: 6px; }
.foot__copy {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 18px;
  font-size: 0.85rem;
  color: rgba(255,255,255,.7);
}

.mob-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
  justify-content: space-around;
}
.mob-bar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 64px;
  min-height: 48px;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--muted);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(20,24,31,.55);
}
.modal.is-open { display: flex; }
.modal__box {
  width: min(440px, 100%);
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  position: relative;
  box-shadow: var(--shadow);
}
.modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 8px;
  background: var(--wash);
  cursor: pointer;
  font-size: 1.2rem;
}
.modal__box h2 { margin: 0 0 16px; font-size: 1.25rem; }

/* WooCommerce light skin */
.shop-main { padding: 40px 0 72px; }

.shop-toolbar {
  display: grid;
  gap: 16px;
  margin-bottom: 28px;
}
.shop-search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: stretch;
}
.shop-search__input {
  width: 100%;
  min-height: 48px;
  padding: 12px 16px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: #fff;
  font: inherit;
  font-weight: 600;
  color: var(--ink);
}
.shop-search__input:focus {
  outline: 2px solid var(--accent-soft);
  border-color: var(--accent);
}
.shop-search__btn {
  min-width: 110px;
  white-space: nowrap;
}
.shop-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.shop-cats__chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 36px;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink-2);
  line-height: 1.2;
}
.shop-cats__chip:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.shop-cats__chip.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.shop-cats__chip.is-active:hover { color: #fff; }
.shop-cats__count {
  display: inline-grid;
  place-items: center;
  min-width: 1.4em;
  padding: 0 5px;
  border-radius: 999px;
  background: rgba(20, 24, 31, 0.08);
  font-size: 0.75rem;
  font-weight: 800;
}
.shop-cats__chip.is-active .shop-cats__count {
  background: rgba(255, 255, 255, 0.22);
}
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
  margin-bottom: 16px;
}
.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  clear: both;
}
.woocommerce ul.products li.product {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
  margin: 0 !important;
  width: auto !important;
  float: none !important;
  position: relative;
}
.woocommerce ul.products li.product a.woocommerce-LoopProduct-link {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  color: inherit;
}
.woocommerce ul.products li.product img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  background: var(--wash);
  border-radius: 10px;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
  margin: 0;
  padding: 0;
}
.woocommerce ul.products li.product .price {
  display: block;
  margin: 0;
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.3;
}
.woocommerce ul.products li.product .price del {
  opacity: 0.55;
  font-size: 0.9em;
  margin-right: 6px;
}
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product a.button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  width: 100%;
  margin: 4px 0 0 !important;
  padding: 12px 16px !important;
  float: none !important;
  position: static !important;
  clear: both;
}
.woocommerce a.button,
.woocommerce button.button {
  background: var(--accent) !important;
  color: #fff !important;
  border-radius: 10px !important;
  font-weight: 800 !important;
  border: 0 !important;
}
.woocommerce nav.woocommerce-pagination {
  margin: 8px 0 0;
  clear: both;
}
.woocommerce nav.woocommerce-pagination ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  border: 0;
}
.woocommerce nav.woocommerce-pagination ul li {
  margin: 0;
  border: 0;
  overflow: visible;
}
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  display: grid;
  place-items: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  font-weight: 800;
  line-height: 1;
}
.woocommerce nav.woocommerce-pagination ul li span.current {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.woocommerce nav.woocommerce-pagination ul li a:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.product-service-cta { margin-top: 14px; }

@media (max-width: 960px) {
  .menu { display: none; }
  .menu.is-open {
    display: block;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 12px var(--pad) 20px;
    box-shadow: var(--shadow);
  }
  .menu.is-open .menu__list { flex-direction: column; }
  .burger { display: grid; place-items: center; }
  .top__phone { display: none; }
  .problems { grid-template-columns: repeat(2, 1fr); }
  .why, .steps, .stats { grid-template-columns: 1fr 1fr; }
  .contact { grid-template-columns: 1fr; }
  .foot__grid { grid-template-columns: 1fr 1fr; }
  .woocommerce ul.products { grid-template-columns: 1fr 1fr; }
  .mob-bar { display: flex; }
  body { padding-bottom: 72px; }
}

@media (max-width: 560px) {
  :root { --header-h: 64px; --pad: 16px; }
  .logo__mark { width: 34px; height: 34px; border-radius: 10px; }
  .logo__title { font-size: 0.92rem; }
  .logo__sub { display: none; }
  .top__cta { padding: 9px 12px; font-size: 0.8rem; }
  .top__actions { gap: 8px; flex-shrink: 0; }
  .logo { gap: 8px; }
  .hero__body {
    padding-block: 40px 48px;
  }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
  .problems, .why, .steps, .stats, .foot__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .top__cart { display: none; }
  .shop-main { padding: 24px 0 56px; }
  .shop-search { grid-template-columns: 1fr; }
  .shop-search__btn { width: 100%; }
  .shop-cats {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }
  .shop-cats__chip { flex: 0 0 auto; }
  .woocommerce ul.products { grid-template-columns: 1fr; gap: 14px; }
  .woocommerce ul.products li.product { padding: 14px; }
  .woocommerce .woocommerce-products-header__title { font-size: 1.55rem; }
  .section { padding: 48px 0; }
}
