:root {
  --bg: #eeeeef;
  --card: #ffffff;
  --text: #111318;
  --muted: #68707d;
  --line: #dfe2e8;
  --blue: #447ff6;
  --blue-dark: #245ed8;
  --blue-soft: #edf3ff;
  --shadow: 0 18px 45px rgba(26, 31, 45, 0.08);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --header-h: 82px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  min-width: 320px;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at 85% 0%, rgba(68, 127, 246, 0.08), transparent 28%),
    var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

#assortment,
#delivery,
#steps,
#advantages,
#reviews,
#faq,
#request {
  scroll-margin-top: 110px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(238, 238, 239, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(20, 24, 32, 0.07);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.brand span {
  display: grid;
  gap: 2px;
}

.brand b {
  font-size: 19px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.brand small {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.nav-menu {
  display: flex;
  justify-content: center;
  gap: 24px;
  align-items: center;
}

.nav-menu a {
  color: #3f4652;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-menu a:hover {
  color: var(--blue-dark);
}

.header-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--card);
  border: 1px solid var(--line);
  color: var(--blue-dark);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(26, 31, 45, 0.04);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--card);
  padding: 10px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  border-radius: 99px;
  margin: 6px 0;
  background: var(--text);
}

.hero-section {
  padding: 18px 0 34px;
}

.hero-shell {
  min-height: calc(100svh - var(--header-h) - 52px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(410px, 1.08fr);
  align-items: center;
  gap: 18px;
  padding: clamp(26px, 4vw, 44px);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.94), rgba(250,251,253,0.88)),
    var(--card);
  border: 1px solid rgba(200, 205, 216, 0.72);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.hero-shell::before {
  content: "СВОИ ЛЮДИ";
  position: absolute;
  right: 22px;
  bottom: -5px;
  font-size: clamp(72px, 13vw, 190px);
  line-height: 0.8;
  font-weight: 900;
  letter-spacing: -0.09em;
  color: rgba(24, 30, 44, 0.035);
  pointer-events: none;
  white-space: nowrap;
}

.kicker {
  margin-bottom: 14px;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  max-width: 680px;
  font-size: clamp(44px, 6.2vw, 78px);
  line-height: 0.95;
  letter-spacing: -0.08em;
}

.hero-lead {
  max-width: 630px;
  margin-top: 22px;
  font-size: clamp(18px, 2vw, 22px);
  color: #273140;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 16px;
  padding: 14px 22px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #5a96ff, var(--blue));
  box-shadow: 0 16px 30px rgba(68, 127, 246, 0.24);
}

.btn-secondary {
  color: var(--text);
  background: var(--card);
  border: 1px solid var(--line);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.hero-facts div {
  padding: 15px;
  border-radius: 18px;
  background: rgba(255,255,255,0.8);
  border: 1px solid #e7e9ef;
}

.hero-facts b,
.hero-facts span {
  display: block;
}

.hero-facts b {
  font-size: 17px;
  letter-spacing: -0.04em;
}

.hero-facts span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}

.hero-visual {
  min-height: clamp(330px, 52vh, 520px);
  position: relative;
  z-index: 2;
}

.visual-orbit {
  position: absolute;
  border-radius: 50%;
  background: #e7edf6;
}

.orbit-one {
  width: min(86%, 520px);
  aspect-ratio: 1;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.orbit-two {
  width: 230px;
  aspect-ratio: 1;
  left: 4%;
  bottom: 8%;
  background: rgba(68, 127, 246, 0.08);
}

.hero-container-img {
  position: absolute;
  width: min(94%, 640px);
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-7deg);
  filter: drop-shadow(0 32px 28px rgba(26, 31, 45, 0.16));
  animation: containerFloat 5.5s ease-in-out infinite;
}

.floating-badge {
  position: absolute;
  z-index: 3;
  box-shadow: 0 16px 32px rgba(68, 127, 246, 0.23);
}

.badge-main {
  left: 12%;
  top: 38%;
  width: 150px;
  height: 150px;
  display: grid;
  place-items: center;
  padding: 18px;
  text-align: center;
  color: #fff;
  border-radius: 50%;
  background: linear-gradient(180deg, #6aa2ff, var(--blue));
}

.badge-main span,
.badge-main b,
.badge-main small {
  display: block;
}

.badge-main b {
  font-size: 27px;
  line-height: 1;
  letter-spacing: -0.05em;
}

.badge-small {
  right: 12%;
  bottom: 12%;
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--blue-dark);
  background: rgba(255,255,255,0.88);
  border: 1px solid #e1e6f0;
  font-size: 13px;
  font-weight: 900;
}

@keyframes containerFloat {
  0%, 100% { transform: translateY(-50%) rotate(-7deg); }
  50% { transform: translateY(calc(-50% - 12px)) rotate(-6deg); }
}

.section {
  padding: 64px 0;
}

.section-head {
  max-width: 780px;
  margin-bottom: 30px;
}

.section-head.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2,
.delivery-copy h2,
.request-copy h2 {
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1;
  letter-spacing: -0.07em;
}

.section-head p:not(.kicker),
.delivery-copy p,
.request-copy p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 17px;
}

.assortment-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 16px;
}

.assortment-tile {
  min-height: 315px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  border: 1px solid #e4e7ee;
  border-radius: var(--radius-lg);
  background: var(--card);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.tile-large {
  grid-row: span 2;
}

.tile-visual {
  height: 150px;
  margin-bottom: 18px;
  border-radius: var(--radius-md);
  background: #f5f7fb;
  border: 1px solid #ebedf3;
  overflow: hidden;
  position: relative;
}

.osb-visual {
  height: 270px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.16), transparent),
    url('assets/osb-texture.jpg') center/cover;
}

.sheet-visual::before,
.sheet-visual::after,
.boards-visual::before,
.boards-visual::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 85px;
  border-radius: 14px;
  border: 2px solid #b9c1cf;
  background: linear-gradient(135deg, #fff, #e9edf4);
  box-shadow: 0 16px 28px rgba(50, 58, 78, 0.08);
}

.sheet-visual::before { left: 22px; top: 30px; transform: rotate(-8deg); }
.sheet-visual::after { right: 18px; bottom: 25px; transform: rotate(9deg); }
.boards-visual::before { left: 38px; top: 32px; transform: skewX(-12deg) rotate(-8deg); }
.boards-visual::after { right: 22px; bottom: 25px; transform: skewX(-12deg) rotate(9deg); }

.screws-visual {
  background: #1c2230;
}

.screws-visual::before,
.screws-visual::after {
  content: "";
  position: absolute;
  width: 155px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #fff, #8d96a5 65%, #fff 68%);
}

.screws-visual::before { left: 28px; top: 48px; transform: rotate(18deg); }
.screws-visual::after { right: 28px; bottom: 48px; transform: rotate(-22deg); }

.tile-text span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--blue-dark);
  background: var(--blue-soft);
  font-weight: 900;
}

.tile-text h3 {
  margin-top: 16px;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -0.06em;
}

.tile-text p {
  margin-top: 10px;
  color: var(--muted);
}

.tile-text b {
  display: block;
  margin-top: 18px;
  font-size: 16px;
}

.tile-accent {
  min-height: 315px;
  grid-column: span 2;
  color: #fff;
  background: linear-gradient(135deg, #4b86fa, #235bd1);
}

.tile-accent .tile-text {
  position: relative;
  z-index: 2;
  max-width: 460px;
}

.tile-accent .tile-text span {
  color: #fff;
  background: rgba(255,255,255,0.17);
}

.tile-accent .tile-text p,
.tile-accent .tile-text a {
  color: rgba(255,255,255,0.82);
}

.tile-accent a {
  display: inline-flex;
  margin-top: 18px;
  font-weight: 900;
  text-decoration: none;
}

.tile-accent img {
  position: absolute;
  right: -30px;
  bottom: -42px;
  width: 390px;
  opacity: 0.55;
  transform: rotate(-8deg);
}

.delivery-panel,
.request-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  gap: 24px;
  align-items: center;
  padding: clamp(24px, 4vw, 46px);
  border-radius: var(--radius-xl);
  background: var(--card);
  border: 1px solid #e4e7ee;
  box-shadow: var(--shadow);
}

.delivery-copy p {
  max-width: 720px;
}

.delivery-art {
  min-height: 280px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #f4f7fc, #e9eff8);
  overflow: hidden;
}

.delivery-art img {
  width: min(100%, 380px);
  filter: drop-shadow(0 24px 22px rgba(26, 31, 45, 0.15));
  animation: containerLift 6s ease-in-out infinite;
}

@keyframes containerLift {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-10px) rotate(-4deg); }
}

.delivery-details,
.advantages-grid,
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.detail-card,
.advantage-card,
.review-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--card);
  border: 1px solid #e4e7ee;
  box-shadow: var(--shadow);
}

.detail-card span,
.advantage-card span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--blue-dark);
  background: var(--blue-soft);
  border-radius: 50%;
  font-weight: 900;
}

.detail-card h3,
.advantage-card h3 {
  margin-top: 18px;
  font-size: 23px;
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.detail-card p,
.advantage-card p {
  margin-top: 10px;
  color: var(--muted);
}

.steps-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 16px;
  border-radius: var(--radius-xl);
  background: var(--card);
  border: 1px solid #e4e7ee;
  box-shadow: var(--shadow);
}

.steps-track article {
  min-height: 230px;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: #f7f8fb;
  border: 1px solid #ecedf3;
}

.steps-track article:last-child {
  color: #fff;
  background: linear-gradient(135deg, #4b86fa, #235bd1);
}

.steps-track b {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--blue-dark);
  background: #fff;
  font-weight: 900;
}

.steps-track h3 {
  margin-top: 20px;
  font-size: 23px;
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.steps-track p {
  margin-top: 10px;
  color: var(--muted);
}

.steps-track article:last-child p {
  color: rgba(255,255,255,0.78);
}

.advantages-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 28px;
  align-items: start;
}

.advantages-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 0;
}

.reviews-grid {
  grid-template-columns: repeat(3, 1fr);
}

.review-card {
  min-height: 245px;
  position: relative;
}

.quote-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--blue-dark);
  background: var(--blue-soft);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.review-card p {
  margin-top: 18px;
  color: #3d4552;
  font-size: 17px;
}

.review-card b,
.review-card span {
  display: block;
}

.review-card b {
  margin-top: 22px;
}

.review-card span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 28px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border-radius: var(--radius-md);
  border: 1px solid #e4e7ee;
  background: var(--card);
  box-shadow: 0 12px 28px rgba(26,31,45,0.04);
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  font-size: 17px;
  font-weight: 900;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--blue-dark);
  font-size: 22px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  padding: 0 20px 20px;
  color: var(--muted);
}

.request-form {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: #f6f8fb;
  border: 1px solid #e4e7ee;
}

.request-form label {
  display: grid;
  gap: 8px;
  color: #596171;
  font-size: 13px;
  font-weight: 900;
}

.request-form input,
.request-form textarea {
  width: 100%;
  border: 1px solid #d8dde8;
  border-radius: 14px;
  padding: 14px 15px;
  background: var(--card);
  color: var(--text);
  outline: 0;
  resize: vertical;
  font: inherit;
}

.request-form input:focus,
.request-form textarea:focus {
  border-color: rgba(68, 127, 246, 0.8);
}

.form-note {
  color: #8a92a0;
  font-size: 12px;
}

.site-footer {
  padding: 26px 0 36px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding-top: 22px;
  border-top: 1px solid rgba(20,24,32,0.12);
}

.footer-note {
  color: var(--muted);
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  :root { --header-h: 76px; }

  .header-inner {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .nav-menu {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(var(--header-h) + 8px);
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255,255,255,0.97);
    box-shadow: var(--shadow);
  }

  body.menu-open .nav-menu {
    display: flex;
  }

  .nav-menu a {
    padding: 12px;
    border-radius: 14px;
    background: #f7f8fb;
  }

  .header-cta {
    grid-column: 1 / -1;
    width: fit-content;
  }

  .hero-shell,
  .delivery-panel,
  .request-shell,
  .advantages-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .hero-shell {
    min-height: auto;
  }

  .hero-visual {
    min-height: 410px;
  }

  .assortment-grid,
  .delivery-details,
  .steps-track {
    grid-template-columns: repeat(2, 1fr);
  }

  .tile-large,
  .tile-accent {
    grid-row: auto;
    grid-column: auto;
  }

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

@media (max-width: 760px) {
  html { scroll-padding-top: 96px; }
  #assortment,
  #delivery,
  #steps,
  #advantages,
  #reviews,
  #faq,
  #request { scroll-margin-top: 96px; }

  .container {
    width: min(100% - 24px, 1200px);
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .brand small {
    display: none;
  }

  .hero-section {
    padding-top: 12px;
  }

  .hero-shell {
    padding: 22px;
    border-radius: 24px;
  }

  .hero-content h1 {
    font-size: clamp(38px, 13vw, 60px);
  }

  .hero-lead {
    font-size: 18px;
  }

  .hero-actions .btn,
  .request-form .btn {
    width: 100%;
  }

  .hero-facts,
  .assortment-grid,
  .delivery-details,
  .steps-track,
  .advantages-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 280px;
  }

  .orbit-one {
    width: 92%;
    right: 0;
  }

  .orbit-two {
    width: 140px;
    left: 0;
  }

  .hero-container-img {
    width: 100%;
    right: -8px;
  }

  .badge-main {
    left: 6px;
    top: 34%;
    width: 112px;
    height: 112px;
    padding: 12px;
  }

  .badge-main b {
    font-size: 22px;
  }

  .badge-small {
    display: none;
  }

  .section {
    padding: 44px 0;
  }

  .section-head h2,
  .delivery-copy h2,
  .request-copy h2 {
    font-size: 34px;
  }

  .osb-visual {
    height: 190px;
  }

  .tile-accent img {
    width: 260px;
    opacity: 0.28;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-height: 760px) and (min-width: 1101px) {
  .hero-shell {
    padding: 24px 34px;
    min-height: calc(100svh - var(--header-h) - 34px);
  }

  .hero-content h1 {
    font-size: clamp(42px, 5.2vw, 68px);
  }

  .hero-lead {
    margin-top: 16px;
    font-size: 18px;
  }

  .hero-actions,
  .hero-facts {
    margin-top: 18px;
  }

  .hero-visual {
    min-height: 390px;
  }

  .badge-main {
    width: 132px;
    height: 132px;
  }
}

/* Финальные правки: согласованный логотип, подвал, политика */
.brand img {
  width: 172px;
  height: auto;
  max-height: 58px;
  border: 0;
  border-radius: 0;
  object-fit: contain;
}

.brand span {
  display: none;
}

.form-note a {
  color: var(--blue-dark);
  font-weight: 900;
}

.site-footer {
  margin-top: 30px;
  padding: 42px 0 26px;
  background: #111723;
  color: #fff;
}

.footer-inner.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr .75fr .9fr 1fr;
  align-items: start;
  gap: 28px;
  padding-top: 0;
  border-top: 0;
}

.footer-column {
  display: grid;
  gap: 10px;
}

.footer-about p {
  max-width: 380px;
  color: rgba(255,255,255,.64);
  margin-top: 6px;
}

.footer-column h3 {
  font-size: 15px;
  margin-bottom: 5px;
}

.footer-column a,
.footer-column span {
  color: rgba(255,255,255,.68);
  text-decoration: none;
  font-size: 14px;
}

.footer-column a:hover,
.footer-bottom a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.52);
  font-size: 13px;
}

.footer-bottom a {
  color: rgba(255,255,255,.62);
  text-decoration: none;
}



/* Упрощённая шапка страницы политики */
.policy-header-inner {
  grid-template-columns: auto auto;
  justify-content: space-between;
}

.policy-back-link {
  grid-column: auto;
  white-space: nowrap;
}

@media (max-width: 680px) {
  .policy-header-inner {
    width: min(1200px, calc(100% - 28px));
    gap: 14px;
  }

  .policy-page .brand {
    min-width: 0;
  }

  .policy-page .brand span {
    display: none;
  }

  .policy-page .brand img {
    width: 52px;
    height: 52px;
    max-height: 52px;
  }

  .policy-back-link {
    padding: 9px 13px;
    font-size: 13px;
  }
}

.policy-page {
  background: var(--bg);
}

.policy-main {
  padding: 36px 0 60px;
}

.policy-card {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 48px);
  border-radius: var(--radius-xl);
  background: var(--card);
  border: 1px solid #e4e7ee;
  box-shadow: var(--shadow);
}

.policy-card h1 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  letter-spacing: -0.06em;
  margin-bottom: 18px;
}

.policy-card h2 {
  margin-top: 28px;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.policy-card p,
.policy-card li {
  color: var(--muted);
}

.policy-card p {
  margin-top: 12px;
}

.policy-card ul {
  margin-top: 12px;
  padding-left: 22px;
}

.policy-card li + li {
  margin-top: 7px;
}

@media (max-width: 1100px) {
  .footer-inner.footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .brand img {
    width: 142px;
    max-height: 48px;
  }

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

  .footer-bottom {
    flex-direction: column;
  }
}


/* Подвал страницы политики в стиле основного сайта */
.policy-main-footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 48px 0;
  border-top: 1px solid #1e293b;
  margin-top: 0;
}

.policy-footer-container {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
}

.policy-footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.policy-footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.policy-footer-logo {
  height: 40px;
  width: auto;
  max-width: 220px;
  margin-bottom: 16px;
  opacity: .8;
  transition: opacity .2s ease;
}

.policy-footer-logo:hover {
  opacity: 1;
}

.policy-footer-brand p,
.policy-footer-city {
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

.policy-footer-contacts {
  text-align: center;
}

.policy-footer-title {
  color: #fff;
  font-weight: 700;
  margin: 0 0 8px;
}

.policy-footer-phone {
  display: block;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  text-decoration: none;
  margin-bottom: 4px;
  transition: color .2s ease;
}

.policy-footer-phone:hover {
  color: #2563eb;
}

.policy-footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid #1e293b;
  color: #94a3b8;
  font-size: 14px;
  text-align: center;
}

.policy-footer-bottom p {
  margin: 0;
}

.policy-footer-bottom a {
  color: #94a3b8;
  text-decoration: none;
  transition: color .2s ease;
}

.policy-footer-bottom a:hover {
  color: #fff;
}

.phone-copy-hint {
  display: block;
  margin-top: 2px;
  color: #22c55e;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  opacity: 0;
  transition: opacity .2s ease;
}

.phone-copy-hint.is-visible {
  opacity: 1;
}

.header-phone-wrap {
  position: relative;
}

.header-phone-wrap .phone-copy-hint {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 2px;
  white-space: nowrap;
  pointer-events: none;
}

@media (min-width: 768px) {
  .policy-footer-top {
    flex-direction: row;
  }

  .policy-footer-brand {
    align-items: flex-start;
    text-align: left;
  }

  .policy-footer-bottom {
    flex-direction: row;
    text-align: left;
  }
}
