:root {
  --bg-page: #f3f5f8;
  --bg-surface: #ffffff;
  --bg-soft: #eef2f6;
  --ink-main: #1a2a3d;
  --ink-muted: #4e6077;
  --brand: #0b67c1;
  --brand-dark: #08509a;
  --line: #d6dee8;
  --line-strong: #c4d0de;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--ink-main);
  background: var(--bg-page);
  line-height: 1.5;
}

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

h1,
h2,
h3 {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.015em;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding-left: 1.08rem;
}

.container {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 4.4rem 0;
}

.section-eyebrow {
  margin: 0 0 0.7rem;
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
}

.section-head {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1.35rem;
}

.section-head h2 {
  font-size: clamp(1.55rem, 2.25vw, 2.05rem);
  line-height: 1.2;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  background: rgba(243, 245, 248, 0.9);
}

.header-row {
  min-height: 84px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.95rem;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
}

.brand-text {
  display: grid;
  gap: 0.1rem;
}

.brand-text strong {
  font-size: 0.98rem;
}

.brand-text small {
  font-size: 0.74rem;
  color: var(--ink-muted);
}

.site-nav {
  display: inline-flex;
  justify-self: center;
  align-items: center;
  gap: 0.5rem;
}

.site-nav a {
  padding: 0.45rem 0.75rem;
  border-radius: 8px;
  font-size: 0.93rem;
  color: var(--ink-muted);
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--brand);
  background: #e8eff8;
  outline: none;
}

.header-contacts {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 0.9rem;
}

.header-phones {
  display: grid;
  justify-items: end;
  gap: 0.2rem;
}

.header-phones a {
  font-size: 0.88rem;
  color: var(--brand-dark);
  font-weight: 700;
}

.header-cart {
  position: relative;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  border: 1px solid #c4d5e8;
  background: #ffffff;
  color: var(--brand-dark);
}

.header-cart svg {
  width: 19px;
  height: 19px;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.hero {
  padding: 3.4rem 0 3.2rem;
  background: linear-gradient(112deg, #edf3fa 0%, #f3f5f8 45%, #f6f3ec 100%);
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 2rem;
  align-items: start;
}

.hero-main h1 {
  margin-top: 0.8rem;
  font-size: clamp(1.8rem, 2.4vw, 2.4rem);
  line-height: 1.08;
  max-width: 100%;
}

.hero-tag {
  display: inline-block;
  padding: 0.3rem 0.65rem;
  border: 1px solid #bed2ec;
  border-radius: 999px;
  color: var(--brand-dark);
  font-size: 0.8rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.56);
}

.hero-lead {
  margin-top: 1rem;
  max-width: 62ch;
  color: var(--ink-muted);
}

.offer-banner {
  margin-top: 1.15rem;
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  background: #fff;
  border: 1px solid var(--line-strong);
  border-left: 4px solid var(--brand);
  border-radius: 6px;
  padding: 0.78rem 0.86rem;
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-actions {
  margin-top: 1.1rem;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.hero-note {
  margin-top: 1.1rem;
  max-width: 66ch;
  font-size: 0.9rem;
  color: var(--ink-muted);
}

.hero-side {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.75rem;
}

.hero-stock-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  border: 1px solid #d1dbe7;
}

.hero-side-meta {
  margin-top: 0.65rem;
  padding: 0.35rem 0.25rem 0.2rem;
  display: grid;
  gap: 0.3rem;
}

.hero-side-meta p {
  font-size: 0.98rem;
  color: var(--ink-main);
  font-weight: 700;
}

.hero-side-meta small {
  color: var(--ink-muted);
  font-size: 0.86rem;
}

.btn {
  min-height: 44px;
  padding: 0.74rem 1.18rem;
  border-radius: 8px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.93rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  color: #fff;
  background: var(--brand);
}

.btn-primary:hover {
  background: #0a5bab;
}

.btn-outline {
  background: #fff;
  color: var(--brand-dark);
  border-color: #bcd0e7;
}

.btn-outline:hover {
  border-color: #95b6d9;
  background: #f4f9ff;
}

.btn:disabled {
  opacity: 0.78;
  cursor: not-allowed;
}

.btn.is-loading {
  position: relative;
}

.btn.is-loading::after {
  content: "";
  width: 14px;
  height: 14px;
  margin-left: 0.5rem;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-top-color: #ffffff;
  animation: button-spin 0.7s linear infinite;
}

.btn-outline.is-loading::after {
  border-color: rgba(11, 103, 193, 0.35);
  border-top-color: var(--brand-dark);
}

.btn-light.is-loading::after {
  border-color: rgba(11, 103, 193, 0.3);
  border-top-color: var(--brand-dark);
}

.products {
  background: var(--bg-surface);
}

.products-layout {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 1rem;
  align-items: start;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.product-item {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1rem;
  background: #fff;
  display: grid;
  gap: 0.6rem;
}

.product-item h3 {
  font-size: 1rem;
}

.product-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.product-item p,
.product-item li {
  color: var(--ink-muted);
  font-size: 0.89rem;
}

.product-feature {
  border: 1px solid #9fc3e8;
  border-radius: 12px;
  padding: 1rem;
  background: linear-gradient(180deg, #fafdff 0%, #eef6ff 100%);
  display: grid;
  gap: 0.65rem;
  box-shadow: 0 14px 30px rgba(11, 103, 193, 0.12);
}

.feature-badge {
  margin: 0;
  display: inline-flex;
  width: fit-content;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  border: 1px solid #b7d3ef;
  background: #ffffff;
  color: var(--brand-dark);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.product-feature h3 {
  font-size: 1.24rem;
  line-height: 1.15;
}

.product-feature p,
.product-feature li {
  color: #39536f;
  font-size: 0.91rem;
}

.product-feature ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.48rem;
}

.product-feature li {
  position: relative;
  padding-left: 1.1rem;
}

.product-feature li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
}

.feature-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;

  margin-top: 20px;
}

.text-link {
  color: var(--brand);
  font-size: 0.9rem;
  font-weight: 700;
}

.value-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.05rem;
}

.value-row article {
  border-top: 3px solid var(--brand);
  padding-top: 0.7rem;
}

.value-row h3 {
  font-size: 1.02rem;
}

.value-row p {
  margin-top: 0.35rem;
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.logistics {
  background: linear-gradient(180deg, #eef3f8 0%, #f4f7fb 100%);
}

.logistics-panel {
  border-radius: 14px;
  background: transparent;
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: 0.9rem;
}

.logistics-column {
  padding: 1.2rem;
  border: 1px solid #d4deea;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 26px rgba(29, 58, 96, 0.07);
}

.logistics-column h2 {
  font-size: 1.34rem;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.logistics-column ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.logistics-column li {
  position: relative;
  padding-left: 1.1rem;
}

.logistics-column li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
}

.logistics-column li,
.logistics-column a {
  color: var(--ink-muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.logistics-btn {
  margin-top: 0.15rem;
  margin-left: auto;
  display: inline-flex;
  min-height: 46px;
  padding-inline: 1.2rem;
  box-shadow: 0 12px 24px rgba(11, 103, 193, 0.25);
}

.contacts-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}

.contacts-list li {
  position: relative;
  padding-left: 1.1rem;
}

.contacts-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
}

.contacts-list a {
  color: var(--ink-muted);
}

.worktime-block {
  margin-top: 1rem;
}

.worktime-block h3 {
  font-size: 0.92rem;
  margin-bottom: 0.35rem;
  color: var(--ink-main);
}

.worktime-block p {
  font-size: 0.92rem;
  color: var(--ink-muted);
  margin-top: 0.2rem;
}

.logistics-column .text-link {
  font-size: 0.92rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq {
  background: var(--bg-surface);
}

.faq-stack {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.faq-row {
  border-bottom: 1px solid var(--line);
  padding: 0.82rem 0;
}

.faq-row:last-child {
  border-bottom: none;
}

.faq-row summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-row summary::-webkit-details-marker {
  display: none;
}

.faq-row summary::after {
  content: "+";
  color: var(--brand);
  font-size: 1.1rem;
  line-height: 1;
}

.faq-row[open] summary::after {
  content: "-";
}

.faq-row p {
  margin-top: 0.45rem;
  color: var(--ink-muted);
  font-size: 0.9rem;
  max-width: 72ch;
}

.faq-row a {
  color: var(--brand);
}

.cta {
  padding-top: 3.4rem;
}

.cta-box {
  border-radius: 10px;
  background: linear-gradient(132deg, #0b67c1 0%, #0b5caf 58%, #0f6ecf 100%);
  color: #fff;
  padding: 1.4rem;
  display: grid;
  grid-template-columns: 1.35fr auto;
  align-items: end;
  gap: 1rem;
}

.cta-box .section-eyebrow {
  color: #d0e9ff;
}

.cta-box h2 {
  margin-top: 0.45rem;
  font-size: clamp(1.3rem, 1.85vw, 1.68rem);
  line-height: 1.2;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

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

.btn-light:hover {
  background: #eaf2fb;
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.site-footer {
  margin-top: 2.4rem;
  padding: 2.1rem 0;
  background: #0e223d;
  color: #d6e3f5;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1rem;
}

.site-footer h2,
.site-footer h3 {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
}

.site-footer h2 {
  font-size: 1.12rem;
}

.site-footer h3 {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: #c2d4eb;
  font-size: 0.87rem;
}

.site-footer ul {
  display: grid;
  gap: 0.35rem;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
}

.modal.is-open {
  display: block;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 26, 44, 0.62);
}

.modal-dialog {
  position: relative;
  width: min(560px, calc(100% - 1.2rem));
  margin: 6vh auto 0;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 1.2rem;
}

.modal-close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink-main);
  width: 30px;
  height: 30px;
  border-radius: 6px;
  font-size: 1.1rem;
  cursor: pointer;
}

.modal-dialog h2 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.modal-dialog p {
  color: var(--ink-muted);
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
}

form {
  display: grid;
  gap: 0.7rem;
}

label {
  display: grid;
  gap: 0.35rem;
  font-weight: 700;
  font-size: 0.9rem;
}

input,
textarea {
  border-radius: 8px;
  border: 1px solid #cdd9e7;
  background: #fff;
  color: var(--ink-main);
  padding: 0.7rem 0.75rem;
  font: inherit;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(11, 103, 193, 0.2);
  border-color: #99b8d9;
}

.consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 0.55rem;
}

.consent input {
  margin-top: 0.12rem;
}

.consent span,
.consent a {
  font-size: 0.83rem;
  color: var(--ink-muted);
  font-weight: 600;
}

.consent a {
  color: var(--brand);
  text-decoration: underline;
}

.form-note {
  min-height: 1.3em;
  margin: 0;
  color: var(--brand-dark);
  font-size: 0.86rem;
  font-weight: 700;
}

form.is-submitting [data-form-content] {
  opacity: 0.76;
}

.form-result {
  margin: 0;
  padding: 0.85rem 0.95rem;
  border-radius: 8px;
  border: 1px solid transparent;
  font-size: 0.88rem;
  line-height: 1.45;
}

.form-result[hidden] {
  display: none;
}

.form-result.is-success {
  background: #ecf8ef;
  border-color: #b9dfc1;
  color: #1f6630;
}

.form-result.is-error {
  background: #fff3f3;
  border-color: #f1c2c2;
  color: #9a2b2b;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  animation: rise 0.55s ease forwards;
}

.delay-1 {
  animation-delay: 0.08s;
}

.delay-2 {
  animation-delay: 0.16s;
}

.delay-3 {
  animation-delay: 0.24s;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes button-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1080px) {
  .header-row {
    min-height: 0;
    padding: 0.75rem 0;
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 0.75rem;
  }

  .site-nav {
    justify-self: start;
    flex-wrap: wrap;
  }

  .header-contacts {
    justify-self: start;
  }

  .header-phones {
    justify-items: start;
  }

  .hero-layout,
  .logistics-panel,
  .cta-box,
  .products-layout {
    grid-template-columns: 1fr;
  }

  .products-grid,
  .value-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .site-header {
    backdrop-filter: blur(6px);
  }

  .header-row {
    padding: 0.65rem 0;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-areas:
      "brand cart phones"
      "nav nav nav";
    align-items: center;
    gap: 0.5rem 0.35rem;
  }

  .brand {
    grid-area: brand;
    width: fit-content;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    font-size: 0.88rem;
  }

  .brand-text {
    display: none;
  }

  .site-nav {
    grid-area: nav;
    justify-self: center;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.2rem;
    padding-bottom: 0.1rem;
  }

  .site-nav a {
    padding: 0.36rem 0.2rem;
    font-size: 0.86rem;
    text-align: center;
    white-space: nowrap;
  }

  .header-contacts {
    display: contents;
  }

  .header-cart {
    grid-area: cart;
    justify-self: center;
    width: 36px;
    height: 36px;
  }

  .header-phones {
    grid-area: phones;
    justify-self: end;
    justify-items: end;
    gap: 0.12rem;
  }

  .header-phones a {
    font-size: 0.8rem;
    line-height: 1.15;
    white-space: nowrap;
  }

  .section {
    padding: 3.2rem 0;
  }

  .hero {
    padding: 2.4rem 0;
  }

  .hero-main h1 {
    font-size: clamp(1.7rem, 8.2vw, 2.2rem);
  }

  .products-grid,
  .value-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }
}

@media (max-width: 390px) {
  .header-row {
    gap: 0.45rem 0.2rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    font-size: 0.82rem;
  }

  .header-cart {
    width: 34px;
    height: 34px;
  }

  .header-phones a {
    font-size: 0.76rem;
  }

  .site-nav a {
    font-size: 0.8rem;
    padding: 0.34rem 0.1rem;
  }
}

.site-nav a.active {
  color: var(--brand);
  background: #e8eff8;
}

.catalog-hero {
  background: linear-gradient(112deg, #edf3fa 0%, #f3f5f8 45%, #f6f3ec 100%);
}

.catalog-hero-compact {
  padding: 1.6rem 0 1.1rem;
}

.catalog-hero-box {
  width: 100%;
  background: linear-gradient(132deg, #0b67c1 0%, #0b5caf 58%, #0f6ecf 100%);
  border: 1px solid #0a5aa9;
  border-radius: 12px;
  padding: 1rem 1.2rem;
  text-align: center;
  color: #fff;
}

.catalog-hero-box h1 {
  font-size: clamp(1.3rem, 2vw, 1.9rem);
  line-height: 1.15;
  margin-bottom: 0.4rem;
}

.catalog-hero-box p {
  color: #deedff;
  max-width: 85ch;
  margin: 0 auto;
  font-size: 16px;
}

.catalog-hero-kicker {
  display: inline-flex;
  margin-bottom: 0.45rem;
  padding: 0.28rem 0.62rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.catalog-hero-btn {
  margin: 0.7rem auto 0;
  min-height: 40px;
  background: #fff;
  color: var(--brand-dark);
}

.catalog-hero-btn:hover {
  background: #eaf2fb;
}

.cart-page {
  background:
    radial-gradient(45% 25% at 7% 0%, rgba(11, 103, 193, 0.11), transparent 70%),
    radial-gradient(30% 22% at 95% 8%, rgba(242, 177, 67, 0.12), transparent 70%),
    #f4f7fb;
}

.cart-page .section {
  padding: 1.9rem 0;
}

.cart-hero {
  padding-top: 1.5rem;
  padding-bottom: 1rem;
}

.cart-hero-box {
  border: 1px solid #b9d5f4;
  border-radius: 14px;
  background: linear-gradient(135deg, #0b67c1 0%, #0a5caf 55%, #0f76d7 100%);
  color: #fff;
  padding: 1.1rem 1.2rem;
  box-shadow: 0 18px 38px rgba(11, 103, 193, 0.2);
}

.cart-hero-box .section-eyebrow {
  color: #d7ebff;
}

.cart-hero-box h1 {
  font-size: clamp(1.3rem, 2vw, 1.95rem);
  margin-bottom: 0.45rem;
  line-height: 1.15;
}

.cart-hero-box p {
  color: #e4f0ff;
}

.cart-panel,
.cart-summary,
.cart-form-card {
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(24, 56, 95, 0.1);
}

.cart-panel {
  padding: 1rem;
}

.cart-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.cart-panel-head h2,
.cart-summary h2,
.cart-form-card h2 {
  font-size: 1.22rem;
}

.cart-table-wrap {
  overflow-x: auto;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

.cart-table th,
.cart-table td {
  padding: 0.62rem 0.5rem;
  border-bottom: 1px solid #dfe6f0;
  vertical-align: middle;
}

.cart-table th {
  text-align: left;
  color: #51657f;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.cart-name {
  font-weight: 700;
  color: #1a2a3d;
  max-width: 320px;
}

.cart-unit,
.cart-line-total {
  color: #2b4667;
  font-weight: 700;
  white-space: nowrap;
}

.cart-qty-control {
  min-width: 128px;
}

.cart-remove {
  border: 1px solid #c6d5e6;
  background: #fff;
  color: #476386;
  border-radius: 8px;
  min-height: 36px;
  padding: 0.25rem 0.6rem;
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
}

.cart-remove:hover {
  background: #f3f8ff;
  border-color: #a9c3df;
}

.cart-empty {
  text-align: center;
  color: var(--ink-muted);
  padding: 1rem 0.5rem;
}

.cart-summary {
  padding: 1rem;
  border: 1px solid #d5e0ec;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding: 0.52rem 0;
  border-bottom: 1px solid #e4ebf4;
  color: #4a607a;
}

.summary-row strong {
  color: #142a43;
}

.summary-row.total {
  margin-top: 0.1rem;
  font-size: 1.05rem;
  font-weight: 800;
}

.summary-note {
  margin-top: 0.8rem;
  margin-bottom: 0.8rem;
  font-size: 0.87rem;
  color: var(--ink-muted);
}

.cart-summary .btn {
  width: 100%;
}

.cart-checkout {
  padding-top: 0.5rem;
}

.cart-checkout-layout {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 0.9rem;
  align-items: start;
}

.cart-form-card {
  padding: 1rem;
}

.cart-form-lead {
  color: var(--ink-muted);
  margin-bottom: 0.7rem;
}

.cart-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.cart-form-address {
  grid-column: 1 / -1;
}

@media (max-width: 1080px) {
  .cart-checkout-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .cart-page .section {
    padding: 1.4rem 0;
  }

  .cart-hero {
    padding-top: 1.2rem;
  }

  .cart-panel,
  .cart-summary,
  .cart-form-card {
    border-radius: 12px;
    padding: 0.85rem;
  }

  .cart-panel-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .cart-form-grid {
    grid-template-columns: 1fr;
  }

  .cart-form-address {
    grid-column: auto;
  }
}

.catalog-categories {
  background: var(--bg-surface);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.category-card {
  text-align: left;
  border: 1px solid #d6e0ec;
  border-radius: 10px;
  background: #fff;
  padding: 0.85rem 0.8rem;
  display: grid;
  gap: 0.35rem;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.category-card strong {
  font-size: 0.9rem;
}

.category-card span {
  color: var(--ink-muted);
  font-size: 0.81rem;
  line-height: 1.35;
}

.category-card:hover {
  border-color: #b8cde5;
  transform: translateY(-1px);
}

.category-card.is-active {
  background: #ebf4ff;
  border-color: #a8c7ea;
}

.catalog-products {
  background: #f6f9fd;
}

.catalog-products-combined {
  padding-top: 1.6rem;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.catalog-card {
  border: 1px solid #d4deea;
  border-radius: 10px;
  background: #fff;
  padding: 0.9rem;
  display: grid;
  gap: 0.6rem;
}

.catalog-card.is-hidden {
  display: none;
}

.catalog-card h3 {
  font-size: 1rem;
  line-height: 1.25;
}

.catalog-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #d6e0ec;
}

.catalog-desc {
  color: var(--ink-muted);
  font-size: 0.89rem;
}

.catalog-price {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.price-current {
  color: var(--brand-dark);
  font-size: 1.06rem;
  font-weight: 800;
}

.price-old {
  color: #8b9ab0;
  text-decoration: line-through;
  font-size: 0.9rem;
}

.catalog-buy-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.55rem;
  align-items: center;
}

.qty-control {
  border: 1px solid #cad8e8;
  border-radius: 8px;
  background: #f8fbff;
  display: inline-grid;
  grid-template-columns: 36px 1fr 36px;
  align-items: center;
  min-height: 42px;
}

.qty-control button {
  border: none;
  background: transparent;
  color: var(--brand-dark);
  height: 100%;
  font-size: 1.12rem;
  font-weight: 700;
  cursor: pointer;
}

.qty-control button:hover {
  background: #edf4fd;
}

.qty-control span {
  text-align: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink-main);
}

.catalog-total {
  margin-top: 0.15rem;
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.catalog-total strong {
  color: var(--ink-main);
}

.catalog-card-title-link {
  color: inherit;
}

.catalog-card-title-link:hover {
  color: var(--brand-dark);
}

.catalog-card-image-link {
  display: block;
}

.catalog-card-image-link:focus-visible,
.catalog-card-title-link:focus-visible {
  outline: 2px solid #9fc3e8;
  outline-offset: 2px;
  border-radius: 6px;
}

.product-page .section {
  padding: 2.4rem 0;
}

.product-breadcrumb {
  margin-bottom: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  color: var(--ink-muted);
  font-size: 0.84rem;
}

.product-breadcrumb a {
  color: var(--brand-dark);
  font-weight: 700;
}

.product-layout {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 0.9rem;
  align-items: start;
}

.product-main,
.product-offer,
.product-description-card,
.product-request-card {
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(24, 56, 95, 0.1);
  border: 1px solid #d5e0ec;
}

.product-main {
  padding: 1rem;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 1.1fr;
  gap: 0.9rem;
}

.product-main-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #d6e0ec;
}

.product-main-info h1 {
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.15;
  margin-bottom: 0.45rem;
}

.product-short {
  color: var(--ink-muted);
  margin-bottom: 0.75rem;
}

.product-meta-list {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}

.product-meta-list div {
  background: #f5f8fc;
  border: 1px solid #dbe6f2;
  border-radius: 10px;
  padding: 0.48rem 0.58rem;
}

.product-meta-list dt {
  margin: 0;
  font-size: 0.74rem;
  color: #5f7390;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: 800;
}

.product-meta-list dd {
  margin: 0.1rem 0 0;
  color: #1a2a3d;
  font-weight: 700;
  font-size: 0.9rem;
}

.product-price-block {
  margin-top: 0.9rem;
  padding-top: 0.85rem;
  border-top: 1px solid #e2eaf3;
}

.product-buy-row {
  margin-top: 0.45rem;
}

.product-offer {
  padding: 1rem;
  background: linear-gradient(170deg, #f6fbff 0%, #edf5ff 100%);
}

.product-offer h2 {
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}

.product-offer p {
  color: #3b5573;
  margin-bottom: 0.7rem;
}

.product-offer ul {
  list-style: none;
  padding: 0;
  margin: 0 0 0.9rem;
  display: grid;
  gap: 0.42rem;
}

.product-offer li {
  position: relative;
  padding-left: 1rem;
  color: #2f4a68;
  font-size: 0.9rem;
}

.product-offer li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
}

.product-offer .btn {
  width: 100%;
}

.product-description-card {
  margin-top: 0.9rem;
  padding: 1rem;
}

.product-description-card h2 {
  margin-bottom: 0.45rem;
  font-size: 1.22rem;
}

.product-description-card p {
  color: var(--ink-muted);
}

.product-request {
  padding-top: 0.6rem;
}

.product-request-card {
  padding: 1rem;
}

.product-request-card h2 {
  margin-bottom: 0.3rem;
  font-size: 1.22rem;
}

.product-request-card > p {
  color: var(--ink-muted);
  margin-bottom: 0.75rem;
}

.product-request-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.product-request-comment {
  grid-column: 1 / -1;
}

.product-related {
  padding-top: 0.6rem;
}

.product-related .section-head {
  margin-bottom: 0.95rem;
}

.product-related .section-head p {
  color: var(--ink-muted);
}

.product-related-link {
  margin-top: 0.2rem;
  display: inline-flex;
}

@media (max-width: 1080px) {
  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .product-layout {
    grid-template-columns: 1fr;
  }

  .product-main {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {

  .catalog-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .catalog-buy-row {
    grid-template-columns: 1fr;
  }

  .catalog-hero-compact {
    padding-top: 1rem;
  }

  .product-page .section {
    padding: 1.6rem 0;
  }

  .product-request-grid,
  .product-meta-list {
    grid-template-columns: 1fr;
  }
}

.delivery-hero {
  background: linear-gradient(112deg, #edf3fa 0%, #f3f5f8 45%, #f6f3ec 100%);
  padding-top: 2rem;
  padding-bottom: 1.4rem;
}

.delivery-page .section {
  padding: 2.4rem 0;
}

.delivery-page .cta {
  padding-top: 2rem;
}

.delivery-hero-box {
  border: 1px solid #d4deea;
  border-radius: 12px;
  background: #fff;
  padding: 1.1rem 1.2rem;
}

.delivery-hero-box h1 {
  font-size: clamp(1.35rem, 2vw, 1.95rem);
  margin-bottom: 0.55rem;
}

.delivery-hero-box p {
  color: var(--ink-muted);
  margin-bottom: 0.9rem;
}

.delivery-facts {
  margin-top: 0.7rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
}

.delivery-fact {
  border: 1px solid #d4deea;
  border-radius: 10px;
  background: #fff;
  padding: 0.65rem 0.75rem;
  display: grid;
  gap: 0.15rem;
}

.delivery-fact strong {
  font-size: 0.98rem;
}

.delivery-fact span {
  color: var(--ink-muted);
  font-size: 0.82rem;
}

.delivery-grid,
.delivery-geo-grid,
.contacts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

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

.methods-row {
  margin-top: 0.8rem;
}

.delivery-card,
.contacts-card {
  border: 1px solid #d4deea;
  border-radius: 12px;
  background: #fff;
  padding: 1rem;
}

.delivery-card h2,
.contacts-card h2 {
  font-size: 1.12rem;
  margin-bottom: 0.6rem;
}

.delivery-card h3 {
  font-size: 1rem;
  margin-bottom: 0.45rem;
}

.delivery-card ul,
.contacts-card ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.52rem;
}

.delivery-card li,
.contacts-card li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.delivery-card li::before,
.contacts-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
}

.contacts-card a,
.delivery-card a {
  color: var(--brand-dark);
}

.contacts-hero {
  background: linear-gradient(112deg, #edf3fa 0%, #f3f5f8 45%, #f6f3ec 100%);
  padding-top: 2rem;
  padding-bottom: 1.2rem;
}

.contacts-hero-box {
  border: 1px solid #d4deea;
  border-radius: 12px;
  background: #fff;
  padding: 1rem 1.1rem;
}

.contacts-hero-box h1 {
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  margin-bottom: 0.5rem;
}

.contacts-hero-box p {
  color: var(--ink-muted);
}

.contacts-form-lead {
  color: var(--ink-muted);
  margin-bottom: 0.7rem;
  font-size: 0.9rem;
}

.contacts-map-box {
  border: 1px solid #d4deea;
  border-radius: 12px;
  background: #fff;
  padding: 1rem;
}

.map-head h2 {
  font-size: 1.12rem;
}

.map-placeholder {
  margin-top: 0.75rem;
  min-height: 280px;
  border-radius: 10px;
  border: 1px dashed #afc6df;
  background: linear-gradient(180deg, #eef5fd, #e4eefb);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1.2rem;
}

.map-placeholder p {
  font-size: 1rem;
  font-weight: 700;
}

.map-placeholder small {
  color: var(--ink-muted);
  max-width: 72ch;
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  min-height: 220px;
  border: 0;
  border-radius: 10px;
  display: block;
}

@media (max-width: 1080px) {

  .delivery-grid,
  .delivery-geo-grid,
  .contacts-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 700px) {
  .delivery-page .section {
    padding: 1.8rem 0;
  }

  .delivery-facts {
    grid-template-columns: 1fr;
  }
}

/* Delivery page visual refresh */
.delivery-page {
  background:
    radial-gradient(55% 35% at 5% 0%, rgba(11, 103, 193, 0.12), transparent 70%),
    radial-gradient(35% 22% at 95% 12%, rgba(242, 177, 67, 0.15), transparent 70%),
    #f4f7fb;
}

.delivery-page .section {
  padding: 2rem 0;
}

.delivery-page .delivery-hero {
  padding-top: 1.4rem;
  padding-bottom: 0.9rem;
  background: transparent;
}

.delivery-page .delivery-hero-layout {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 0.9rem;
  align-items: stretch;
}

.delivery-page .delivery-hero-box {
  border: 1px solid #b9d5f4;
  border-radius: 16px;
  background: linear-gradient(135deg, #0b67c1 0%, #0a5caf 55%, #0f76d7 100%);
  color: #fff;
  padding: 1.15rem 1.2rem;
  box-shadow: 0 18px 40px rgba(11, 103, 193, 0.23);
}

.delivery-page .delivery-hero-box .section-eyebrow {
  color: #d5ebff;
}

.delivery-page .delivery-hero-box h1 {
  color: #fff;
  font-size: clamp(1.45rem, 2.2vw, 2.1rem);
  line-height: 1.12;
  margin-bottom: 0.55rem;
}

.delivery-page .delivery-hero-box p {
  color: #e0efff;
  max-width: 60ch;
}

.delivery-page .delivery-hero-box .btn-primary {
  margin-top: 0.9rem;
  background: #fff;
  color: var(--brand-dark);
  box-shadow: none;
}

.delivery-page .delivery-hero-box .btn-primary:hover {
  background: #edf5ff;
}

.delivery-page .delivery-visual {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #c9d9ec;
  background: #fff;
  display: grid;
  grid-template-rows: 1fr auto;
}

.delivery-page .delivery-visual img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.delivery-page .delivery-visual-note {
  padding: 0.75rem 0.85rem 0.85rem;
  background: #ffffff;
  display: grid;
  gap: 0.22rem;
}

.delivery-page .delivery-visual-note strong {
  font-size: 0.97rem;
}

.delivery-page .delivery-visual-note span {
  color: var(--ink-muted);
  font-size: 0.86rem;
}

.delivery-page .delivery-facts {
  margin-top: 0.65rem;
  gap: 0.65rem;
}

.delivery-page .delivery-fact {
  border: 1px solid #cbddef;
  border-radius: 14px;
  background: #ffffff;
  padding: 0.72rem 0.8rem;
}

.delivery-page .delivery-fact strong {
  color: var(--brand-dark);
}

.delivery-page .delivery-card,
.delivery-page .contacts-card {
  border: none;
  border-radius: 14px;
  padding: 1rem;
  background: #fff;
  box-shadow: 0 14px 34px rgba(24, 56, 95, 0.1);
}

.delivery-page .delivery-card h2,
.delivery-page .delivery-card h3 {
  color: #102b4b;
}

.delivery-page .delivery-card ul {
  gap: 0.6rem;
}

.delivery-page .delivery-card li {
  padding-left: 1.25rem;
  color: #3f5572;
}

.delivery-page .delivery-card li::before {
  width: 8px;
  height: 8px;
  top: 0.45rem;
  background: linear-gradient(135deg, #0b67c1, #0d7ae0);
}

.delivery-page .delivery-terms .delivery-card:first-child {
  background: linear-gradient(180deg, #ffffff, #f6fbff);
}

.delivery-page .delivery-terms .delivery-card:last-child {
  background: linear-gradient(180deg, #ffffff, #f7f9ff);
}

.delivery-page .methods-row .delivery-card:first-child {
  border-left: 4px solid #0b67c1;
}

.delivery-page .methods-row .delivery-card:last-child {
  border-left: 4px solid #f2b143;
}

.delivery-page .delivery-geo .section-head {
  margin-bottom: 0.9rem;
}

.delivery-page .delivery-geo-lead {
  margin-top: 0.2rem;
  color: var(--ink-muted);
  max-width: 74ch;
}

.delivery-page .delivery-geo-grid .delivery-card:nth-child(1) {
  background: linear-gradient(180deg, #ffffff, #f4faff);
}

.delivery-page .delivery-geo-grid .delivery-card:nth-child(2) {
  background: linear-gradient(180deg, #ffffff, #f6f8ff);
}

.delivery-page .delivery-geo-grid .delivery-card:nth-child(3) {
  background: linear-gradient(180deg, #ffffff, #fff8ef);
}

@media (max-width: 1080px) {
  .delivery-page .delivery-hero-layout {
    grid-template-columns: 1fr;
  }

  .delivery-page .delivery-visual img {
    min-height: 200px;
  }
}

@media (max-width: 700px) {
  .delivery-page .section {
    padding: 1.4rem 0;
  }

  .delivery-page .delivery-hero-box,
  .delivery-page .delivery-card {
    border-radius: 12px;
  }
}

/* Contacts page visual refresh */
.contacts-page {
  background:
    radial-gradient(50% 30% at 8% 0%, rgba(11, 103, 193, 0.1), transparent 70%),
    radial-gradient(35% 25% at 96% 8%, rgba(242, 177, 67, 0.12), transparent 70%),
    #f4f7fb;
}

.contacts-page .section {
  padding: 1.9rem 0;
}

.contacts-page .contacts-hero {
  background: transparent;
  padding-top: 1.4rem;
  padding-bottom: 0.8rem;
}

.contacts-page .contacts-hero-layout {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 0.85rem;
  align-items: stretch;
}

.contacts-page .contacts-hero-box {
  border: 1px solid #b9d5f4;
  border-radius: 16px;
  background: linear-gradient(135deg, #0b67c1 0%, #0a5caf 55%, #0f76d7 100%);
  color: #fff;
  padding: 1.05rem 1.15rem;
  box-shadow: 0 18px 40px rgba(11, 103, 193, 0.2);
}

.contacts-page .contacts-hero-box .section-eyebrow {
  color: #d4eaff;
}

.contacts-page .contacts-hero-box h1 {
  color: #fff;
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.12;
  margin-bottom: 0.45rem;
}

.contacts-page .contacts-hero-box p {
  color: #e0efff;
}

.contacts-page .contacts-quick {
  border: 1px solid #c9d9ec;
  border-radius: 16px;
  background: #fff;
  padding: 0.9rem 1rem;
  display: grid;
  gap: 0.32rem;
}

.contacts-page .contacts-quick h3 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.contacts-page .contacts-quick a {
  color: var(--brand-dark);
  font-weight: 700;
}

.contacts-page .contacts-quick p {
  margin-top: 0.25rem;
  color: var(--ink-muted);
  font-size: 0.88rem;
}

.contacts-page .contacts-grid {
  grid-template-columns: 1fr;
  align-items: start;
  gap: 0.85rem;
}

.contacts-page .contacts-card {
  border: none;
  border-radius: 14px;
  background: #fff;
  padding: 1rem;
  box-shadow: 0 14px 34px rgba(24, 56, 95, 0.1);
}

.contacts-page .contacts-card h2 {
  color: #102b4b;
}

.contacts-page .contacts-card ul {
  gap: 0.6rem;
}

.contacts-page .contacts-card li {
  color: #3f5572;
}

.contacts-page .contacts-links-row {
  margin-top: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.contacts-page .contacts-links-row .btn {
  min-height: 40px;
}

.contacts-page .contacts-map {
  padding-top: 1.2rem;
}

.contacts-page .contacts-map-box {
  border: none;
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(24, 56, 95, 0.1);
}

.contacts-page .contacts-card .contacts-map-box {
  border: none;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  padding: 0;
}

.contacts-page .map-placeholder {
  min-height: 220px;
  border-radius: 12px;
  border: 1px dashed #9ec0e3;
  background: linear-gradient(180deg, #ecf5ff, #deebfb);
}

.contacts-page .contacts-find {
  padding-top: 0.8rem;
}

.contacts-find-title {
  font-size: clamp(1.2rem, 1.9vw, 1.6rem);
  margin: 0;
}

.contacts-page .map-edge {
  margin-top: 0.55rem;
  min-height: 360px;
  border: none;
  background: transparent;
  padding: 0;
  border-radius: 0;
}

.contacts-page .map-edge iframe {
  min-height: 360px;
  border-radius: 12px;
}

html body main>section.cat-header-block {
  padding-bottom: 10px;
  padding-top: 20px;
}

@media (max-width: 1080px) {
  .contacts-page .contacts-hero-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .contacts-page .section {
    padding: 1.4rem 0;
  }
}
