@charset "UTF-8";
:root{
  --page-surface:#FFFFFF;
  --page-surface-muted:#F8FAFC;
  --page-border:rgba(15,23,42,.08);
  --page-shadow:0 12px 32px rgba(15,23,42,.06);
}

body,.wrapper{
  background:var(--page-surface);
}

.page_home,
.page_about,
.page_musor,
.page_equipment,
.service-page{
  background:linear-gradient(180deg,#ffffff 0%,#f8fafc 100%);
}

.page_privacy{
  background:var(--page-surface);
}

.page_home > section,
.page_about > section,
.page_musor > section,
.page_equipment > section,
.page_privacy > section,
.service-page > section{
  scroll-margin-top:7rem;
}

.page_privacy .hero_privacy{
  min-height:clamp(360px,48vh,520px);
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  overflow:hidden;
  background:#f8fafc;
}

.page_privacy .hero_privacy .container,
.page_privacy .hero_privacy .hero-content{
  position:relative;
  z-index:2;
}

.page_privacy .hero_privacy .hero-overlay,
.page_privacy .hero_privacy .hero-image{
  display:none;
}

.page_privacy .hero-title{
  max-width:18ch;
  margin:0 auto 1rem;
}

.page_privacy .hero-subtitle{
  max-width:52rem;
  margin:0 auto;
}

.privacy-badges{
  display:flex;
  flex-wrap:wrap;
  gap:.75rem;
  justify-content:center;
  margin-top:1.5rem;
}

.privacy-badge{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  padding:.7rem 1rem;
  border-radius:999px;
  background:rgba(255,255,255,.16);
  border:1px solid rgba(255,255,255,.28);
  backdrop-filter:blur(8px);
  color:#fff;
  font-weight:600;
  font-size:.95rem;
}

.page_privacy .privacy-wrapper{
  grid-template-columns:minmax(240px,300px) minmax(0,1fr);
  gap:2rem;
}

.page_privacy .privacy-nav,
.page_privacy .privacy-text{
  background:rgba(255,255,255,.96);
  border:1px solid var(--page-border);
  box-shadow:var(--page-shadow);
}

.page_privacy .privacy-nav{
  top:7.5rem;
}

.page_privacy .privacy-nav a:hover,
.page_privacy .privacy-nav a:focus-visible{
  background:rgba(37,99,235,.08);
  color:var(--primary);
  outline:none;
}

.page_privacy .privacy-text{
  border-radius:1rem;
  padding:clamp(1.25rem,2vw,2rem);
}

.page_privacy .privacy-section:last-child{
  margin-bottom:0;
}

.page_privacy .privacy-section h2{
  scroll-margin-top:8rem;
}

.page_privacy .privacy-table-container{
  border:1px solid var(--page-border);
}

@media (max-width: 1024px){
  .page_privacy .privacy-wrapper{
    grid-template-columns:1fr;
  }

  .page_privacy .privacy-nav{
    position:static;
    top:auto;
  }
}

@media (max-width: 768px){
  .page_privacy .hero_privacy{
    min-height:320px;
    padding-top:5.5rem;
  }

  .page_privacy .hero-title{
    max-width:none;
  }

  .page_privacy .privacy-text{
    padding:1rem;
  }

  .privacy-badge{
    width:100%;
    justify-content:center;
  }
}


.icon{
  display:inline-block;
  vertical-align:middle;
  flex-shrink:0;
}

.btn .icon,
.service-hero-phone .icon,
.service-contact-phone .icon,
.service-calc-button .icon,
.service-info-text .btn .icon,
.service-hero-cta .btn .icon{
  margin-right:.45rem;
}

.button-spinner,
.button-icon{
  display:inline-block;
  width:1rem;
  height:1rem;
  vertical-align:-0.125em;
  margin-right:.45rem;
}

.button-spinner{
  border:2px solid currentColor;
  border-right-color:transparent;
  border-radius:50%;
  animation:icon-spin .8s linear infinite;
}

.button-icon--play{
  width:0;
  height:0;
  border-top:.5rem solid transparent;
  border-bottom:.5rem solid transparent;
  border-left:.75rem solid currentColor;
}

@keyframes icon-spin{
  to{transform:rotate(360deg)}
}

.page_privacy .privacy-badge{
  background:#fff;
  border:1px solid rgba(15,23,42,.08);
  color:#0f172a;
  box-shadow:0 8px 24px rgba(15,23,42,.08);
}


.service-proof-section{
  padding:clamp(2.75rem,4vw,4.5rem) 0;
}

.service-proof-section .container{
  position:relative;
  background:linear-gradient(180deg,#ffffff 0%,#f8fbff 100%);
  border:1px solid rgba(148,163,184,.22);
  border-radius:1.75rem;
  box-shadow:0 18px 48px rgba(15,23,42,.08);
  padding:clamp(1.25rem,2.8vw,2.5rem);
  overflow:hidden;
}

.service-proof-section .container::before{
  content:"";
  position:absolute;
  inset:0 0 auto;
  height:5px;
  background:linear-gradient(90deg,#2563eb 0%,#60a5fa 50%,#bfdbfe 100%);
}

.service-proof-section__header{
  max-width:52rem;
  margin:0 auto 1.75rem;
  text-align:center;
}

.service-proof-section__eyebrow{
  display:inline-flex;
  align-items:center;
  gap:.45rem;
  margin-bottom:.9rem;
  padding:.42rem .78rem;
  border-radius:999px;
  background:#eff6ff;
  color:#1d4ed8;
  font-size:.85rem;
  font-weight:700;
  letter-spacing:.04em;
  text-transform:uppercase;
}

.service-proof-section h2{
  margin:0 0 .9rem;
  color:#0f172a;
  font-size:clamp(1.75rem,2.8vw,2.5rem);
  line-height:1.18;
  letter-spacing:-.02em;
}

.service-proof-section__lead,
.service-proof-section__note{
  max-width:48rem;
  margin-inline:auto;
}

.service-proof-section__lead{
  margin:0 auto;
  color:#475569;
  font-size:1.06rem;
  line-height:1.78;
}

.service-proof-section__grid{
  gap:1rem;
}

.service-proof-card{
  position:relative;
  height:100%;
  padding:1.35rem 1.25rem 1.2rem;
  background:#fff;
  border:1px solid rgba(148,163,184,.2);
  border-radius:1.25rem;
  box-shadow:0 12px 30px rgba(15,23,42,.06);
  transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease;
}

.service-proof-card::before{
  content:"";
  position:absolute;
  inset:0 auto 0 0;
  width:4px;
  border-radius:1.25rem 0 0 1.25rem;
  background:linear-gradient(180deg,#3b82f6 0%,#93c5fd 100%);
}

.service-proof-card:hover,
.service-proof-card:focus-within{
  transform:translateY(-4px);
  box-shadow:0 18px 36px rgba(15,23,42,.1);
  border-color:rgba(96,165,250,.45);
}

.service-proof-card__top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:.75rem;
  margin-bottom:1rem;
}

.service-proof-card__icon,
.service-proof-section .service-feature-icon{
  width:3rem;
  height:3rem;
  flex:0 0 3rem;
  display:grid;
  place-items:center;
  border-radius:1rem;
  background:linear-gradient(180deg,#eff6ff 0%,#dbeafe 100%);
  box-shadow:inset 0 0 0 1px rgba(96,165,250,.16);
  font-size:1.25rem;
  margin:0;
}

.service-proof-card__step{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:2.5rem;
  height:2.5rem;
  padding:0 .6rem;
  border-radius:.95rem;
  background:#f8fafc;
  border:1px solid rgba(148,163,184,.22);
  color:#64748b;
  font-size:.85rem;
  font-weight:800;
  letter-spacing:.08em;
}

.service-proof-section .service-feature-card h3,
.service-proof-card h3{
  margin:0 0 .65rem;
  color:#0f172a;
  font-size:1.2rem;
  line-height:1.35;
}

.service-proof-section .service-feature-card p,
.service-proof-card p{
  margin:0;
  color:#475569;
  font-size:1rem;
  line-height:1.72;
}

.service-proof-section__footer{
  max-width:48rem;
  margin:1.35rem auto 0;
  padding-top:1.1rem;
  border-top:1px solid rgba(226,232,240,.95);
  text-align:center;
}

.service-proof-section__note{
  margin:0;
  color:#475569;
  font-size:.98rem;
  line-height:1.72;
}

@media (max-width: 768px){
  .service-proof-section{
    padding:2rem 0;
  }

  .service-proof-section .container{
    border-radius:1.2rem;
    padding:1rem;
  }

  .service-proof-section__header{
    margin-bottom:1.25rem;
    text-align:left;
  }

  .service-proof-section__eyebrow{
    margin-bottom:.75rem;
    font-size:.74rem;
  }

  .service-proof-section h2{
    font-size:1.45rem;
    line-height:1.24;
  }

  .service-proof-section__lead,
  .service-proof-section__note{
    max-width:none;
    text-align:left;
    font-size:.96rem;
    line-height:1.65;
  }

  .service-proof-section__grid{
    gap:.8rem;
  }

  .service-proof-card{
    padding:1rem .95rem .95rem;
    border-radius:1rem;
  }

  .service-proof-card__top{
    margin-bottom:.8rem;
  }

  .service-proof-card__icon,
  .service-proof-section .service-feature-icon{
    width:2.6rem;
    height:2.6rem;
    flex-basis:2.6rem;
    border-radius:.85rem;
    font-size:1.1rem;
  }

  .service-proof-card__step{
    min-width:2.2rem;
    height:2.2rem;
    border-radius:.8rem;
    font-size:.78rem;
  }

  .service-proof-section .service-feature-card h3,
  .service-proof-card h3{
    font-size:1.08rem;
    margin-bottom:.5rem;
  }

  .service-proof-section .service-feature-card p,
  .service-proof-card p{
    font-size:.94rem;
    line-height:1.6;
  }

  .service-proof-section__footer{
    margin-top:1rem;
    padding-top:.9rem;
    text-align:left;
  }

  .page_privacy .privacy-content .container{
    padding-left:.75rem;
    padding-right:.75rem;
  }

  .page_privacy .privacy-text{
    padding:.9rem;
    font-size:.98rem;
  }

  .page_privacy .privacy-section h2{
    font-size:1.35rem;
    line-height:1.3;
  }

  .page_privacy .privacy-table{
    font-size:.86rem;
  }

  .page_privacy .privacy-table th,
  .page_privacy .privacy-table td{
    padding:.7rem;
  }
}

.page_privacy,
.page_privacy .privacy-content,
.page_privacy .container,
.page_privacy .privacy-wrapper,
.page_privacy .privacy-text{
  min-width:0;
}

.page_privacy .privacy-text,
.page_privacy .privacy-section,
.page_privacy .privacy-section p,
.page_privacy .privacy-section li,
.page_privacy .privacy-section a,
.page_privacy .privacy-section strong{
  overflow-wrap:anywhere;
  word-break:break-word;
}

.page_privacy .privacy-table{
  table-layout:fixed;
}

.page_privacy .privacy-table th,
.page_privacy .privacy-table td{
  word-break:break-word;
  overflow-wrap:anywhere;
}

@media (max-width: 768px){
  .service-proof-section .container{
    border-radius:1.1rem;
    padding:1rem;
  }

  .service-proof-section__lead,
  .service-proof-section__note{
    text-align:left;
    font-size:.98rem;
  }

  .service-proof-section .service-feature-icon{
    width:2.4rem;
    height:2.4rem;
    border-radius:.75rem;
  }

  .page_privacy .privacy-content .container{
    padding-left:.75rem;
    padding-right:.75rem;
  }

  .page_privacy .privacy-text{
    padding:.9rem;
    font-size:.98rem;
  }

  .page_privacy .privacy-section h2{
    font-size:1.35rem;
    line-height:1.3;
  }

  .page_privacy .privacy-table{
    font-size:.86rem;
  }

  .page_privacy .privacy-table th,
  .page_privacy .privacy-table td{
    padding:.7rem;
  }
}

/* ===== Локальный SEO-блок / список услуг по городу ===== */
.local-seo-block{
  padding: 28px 0 10px;
}

.local-seo-block__container{
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

.local-seo-block__content{
  position: relative;
  padding: 34px 30px 26px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  border: 1px solid rgba(25, 55, 109, 0.09);
  border-radius: 26px;
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.05);
  overflow: hidden;
}

.local-seo-block__content::before{
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, #2f6bff 0%, #4fa0ff 100%);
}

.local-seo-block__content::after{
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47,107,255,.08) 0%, rgba(47,107,255,0) 68%);
  pointer-events: none;
}

.local-seo-block__title{
  margin: 0 0 10px;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #10284a;
}

.local-seo-block__lead{
  margin: 0 0 18px;
  font-size: 1.125rem;
  line-height: 1.55;
  font-weight: 700;
  color: #183b6b;
}

.local-seo-block__content > p:not(.local-seo-block__lead){
  margin: 0 0 18px;
  max-width: 1220px;
  font-size: 1.02rem;
  line-height: 1.75;
  color: #23344d;
}

.local-seo-block__content > p:last-of-type{
  margin-bottom: 0;
}

.local-seo-block__links{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
  margin: 24px 0 0;
  padding: 22px 0 0;
  list-style: none;
  border-top: 1px solid rgba(22, 39, 67, 0.08);
}

.local-seo-block__links li{
  margin: 0;
}

.local-seo-block__links a{
  position: relative;
  display: flex;
  align-items: center;
  min-height: 76px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(25, 55, 109, 0.10);
  background: #fff;
  color: #132c4c;
  text-decoration: none;
  font-weight: 600;
  line-height: 1.45;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.035);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background-color .22s ease;
}

.local-seo-block__links a::after{
  content: "→";
  margin-left: auto;
  padding-left: 12px;
  font-size: 1rem;
  font-weight: 700;
  color: #2f6bff;
  transition: transform .22s ease;
}

.local-seo-block__links a:hover,
.local-seo-block__links a:focus-visible{
  border-color: rgba(47, 107, 255, 0.22);
  background: #f7faff;
  box-shadow: 0 12px 28px rgba(47, 107, 255, 0.10);
  transform: translateY(-2px);
}

.local-seo-block__links a:hover::after,
.local-seo-block__links a:focus-visible::after{
  transform: translateX(3px);
}

@media (max-width: 991.98px){
  .local-seo-block{
    padding: 24px 0 8px;
  }

  .local-seo-block__content{
    padding: 28px 22px 22px;
    border-radius: 22px;
  }

  .local-seo-block__title{
    font-size: 1.7rem;
  }

  .local-seo-block__lead{
    font-size: 1.05rem;
  }
}

@media (max-width: 767.98px){
  .local-seo-block__container{
    padding: 0 12px;
  }

  .local-seo-block__content{
    padding: 22px 16px 18px;
    border-radius: 18px;
  }

  .local-seo-block__content::before{
    width: 100%;
    height: 4px;
    inset: 0 0 auto 0;
  }

  .local-seo-block__content::after{
    top: -90px;
    right: -80px;
    width: 180px;
    height: 180px;
  }

  .local-seo-block__title{
    margin-bottom: 8px;
    font-size: 1.45rem;
    line-height: 1.25;
  }

  .local-seo-block__lead{
    margin-bottom: 14px;
    font-size: 1rem;
    line-height: 1.5;
  }

  .local-seo-block__content > p:not(.local-seo-block__lead){
    margin-bottom: 14px;
    font-size: .98rem;
    line-height: 1.65;
  }

  .local-seo-block__links{
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 18px;
    padding-top: 16px;
  }

  .local-seo-block__links a{
    min-height: 64px;
    padding: 14px 15px;
    border-radius: 15px;
    font-size: .98rem;
  }
}