:root {
  --ink: #062b3b;
  --ink-2: #0b4053;
  --orange: #ff6b19;
  --orange-dark: #e4530d;
  --aqua: #18b7cc;
  --aqua-soft: #e8f8fa;
  --paper: #ffffff;
  --mist: #f3f7f8;
  --line: #d9e4e8;
  --text: #183842;
  --muted: #657d85;
  --shadow: 0 24px 70px rgba(6, 43, 59, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: Inter, Manrope, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.topbar { background: var(--ink); color: rgba(255,255,255,.84); font-size: .875rem; }
.topbar__inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.topbar__items { display: flex; align-items: center; gap: 26px; }
.topbar__item { display: inline-flex; align-items: center; gap: 8px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: #62da87; box-shadow: 0 0 0 4px rgba(98,218,135,.12); }
.header { position: sticky; top: 0; z-index: 30; background: rgba(255,255,255,.96); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(217,228,232,.9); }
.header__inner { min-height: 82px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 38px; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--ink); }
.brand__mark { width: 42px; height: 42px; display: grid; place-items: center; color: #fff; background: var(--orange); border-radius: 13px 13px 13px 4px; box-shadow: 0 10px 25px rgba(255,107,25,.24); }
.brand__name { display: block; font-size: 1.15rem; font-weight: 900; letter-spacing: -.025em; line-height: 1.1; }
.brand__name span { color: var(--orange); }
.brand__caption { display: block; margin-top: 2px; color: var(--muted); font-size: .68rem; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.nav { display: flex; justify-content: center; gap: clamp(18px,2.2vw,32px); font-size: .92rem; font-weight: 760; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--orange); }
.header__contact { display: flex; align-items: center; gap: 16px; }
.phone { text-align: right; white-space: nowrap; }
.phone small { display: block; color: var(--muted); font-size: .72rem; }
.phone strong { display: block; color: var(--ink); font-size: 1.08rem; line-height: 1.2; }
.btn { min-height: 50px; padding: 0 22px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; border: 0; border-radius: 12px; font-weight: 850; transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn--primary { color: #fff; background: var(--orange); box-shadow: 0 12px 30px rgba(255,107,25,.27); }
.btn--primary:hover { background: var(--orange-dark); }
.btn--dark { color: #fff; background: var(--ink); }
.btn--outline { color: var(--ink); background: #fff; border: 1px solid var(--line); }

.breadcrumbs { padding: 20px 0; color: var(--muted); font-size: .82rem; }
.breadcrumbs ol { margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 7px; list-style: none; }
.breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: 7px; color: #b3c1c5; }
.breadcrumbs a:hover { color: var(--orange); }

.service-hero { padding: 24px 0 64px; background: radial-gradient(circle at 0 0, rgba(24,183,204,.14), transparent 34%), linear-gradient(180deg,#f7fbfc 0%,#fff 100%); }
.service-hero__grid { display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: 50px; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 17px; color: var(--ink-2); font-size: .78rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 28px; height: 3px; border-radius: 3px; background: var(--orange); }
h1,h2,h3,p { margin-top: 0; }
h1 { margin-bottom: 21px; color: var(--ink); font-size: clamp(2.5rem,4.5vw,4.25rem); line-height: 1.01; letter-spacing: -.052em; }
h2 { color: var(--ink); font-size: clamp(1.75rem,3vw,2.65rem); line-height: 1.12; letter-spacing: -.038em; }
h3 { color: var(--ink); line-height: 1.2; }
.service-hero__lead { max-width: 620px; margin-bottom: 25px; color: #49646d; font-size: 1.1rem; }
.service-hero__facts { margin: 0 0 28px; padding: 0; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 11px 20px; list-style: none; }
.service-hero__facts li { display: flex; align-items: center; gap: 9px; color: var(--ink); font-weight: 720; }
.check { width: 23px; height: 23px; flex: 0 0 auto; display: grid; place-items: center; color: #fff; background: var(--aqua); border-radius: 50%; font-size: .76rem; }
.service-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.service-hero__visual { position: relative; }
.service-hero__visual img { width: 100%; height: 440px; object-fit: cover; border-radius: 28px 28px 6px 28px; box-shadow: var(--shadow); }
.service-hero__price { position: absolute; left: -22px; bottom: 26px; min-width: 190px; padding: 17px 19px; color: #fff; background: var(--ink); border-left: 5px solid var(--orange); border-radius: 13px; box-shadow: 0 18px 38px rgba(6,43,59,.28); }
.service-hero__price small { display: block; color: rgba(255,255,255,.68); font-size: .75rem; }
.service-hero__price strong { display: block; margin-top: 2px; font-size: 1.25rem; }

.trust-strip { margin-top: -1px; background: var(--ink); color: #fff; }
.trust-strip__grid { display: grid; grid-template-columns: repeat(4,1fr); }
.trust-strip__item { padding: 22px 25px; border-right: 1px solid rgba(255,255,255,.13); }
.trust-strip__item:last-child { border: 0; }
.trust-strip__item strong { display: block; margin-bottom: 2px; font-size: 1.05rem; }
.trust-strip__item span { color: rgba(255,255,255,.62); font-size: .8rem; }

.content-wrap { padding: 84px 0; }
.content-layout { display: grid; grid-template-columns: minmax(0,1fr) 330px; gap: 56px; align-items: start; }
.article { max-width: 760px; }
.article__intro { margin-bottom: 36px; font-size: 1.08rem; color: #405d66; }
.article section { padding: 34px 0; border-top: 1px solid var(--line); }
.article section:first-of-type { border-top: 0; padding-top: 0; }
.article p { margin-bottom: 17px; }
.article ul { margin: 18px 0 0; padding: 0; display: grid; gap: 11px; list-style: none; }
.article li { position: relative; padding-left: 27px; }
.article li::before { content: ""; position: absolute; left: 0; top: .6em; width: 10px; height: 10px; border: 3px solid var(--aqua); border-radius: 50%; }
.notice { margin: 22px 0 4px; padding: 19px 21px; background: var(--aqua-soft); border-left: 4px solid var(--aqua); border-radius: 10px; }
.notice strong { color: var(--ink); }
.side-card { position: sticky; top: 108px; overflow: hidden; padding: 29px; color: #fff; background: var(--ink); border-radius: 20px; box-shadow: var(--shadow); }
.side-card::after { content: ""; position: absolute; right: -90px; bottom: -110px; width: 210px; height: 210px; border: 46px solid rgba(24,183,204,.14); border-radius: 50%; }
.side-card > * { position: relative; z-index: 1; }
.side-card__label { color: var(--aqua); font-size: .76rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.side-card h2 { margin: 13px 0 10px; color: #fff; font-size: 1.55rem; }
.side-card p { color: rgba(255,255,255,.66); font-size: .9rem; }
.side-card__phone { display: block; margin: 20px 0 16px; color: #fff; font-size: 1.45rem; font-weight: 900; }
.side-card .btn { width: 100%; }
.side-card__note { display: block; margin-top: 12px; color: rgba(255,255,255,.48); font-size: .72rem; text-align: center; }

.process { padding: 84px 0; background: var(--mist); }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 28px; margin-bottom: 36px; }
.section-head h2 { max-width: 710px; margin-bottom: 0; }
.section-head p { max-width: 430px; margin-bottom: 2px; color: var(--muted); }
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 15px; }
.step { min-height: 180px; padding: 24px; background: #fff; border: 1px solid var(--line); border-radius: 17px; }
.step__num { width: 36px; height: 36px; display: grid; place-items: center; margin-bottom: 25px; color: #fff; background: var(--orange); border-radius: 11px; font-size: .82rem; font-weight: 900; }
.step strong { display: block; margin-bottom: 8px; color: var(--ink); }
.step p { margin: 0; color: var(--muted); font-size: .86rem; }

.related { padding: 84px 0; }
.related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.related-card { min-height: 190px; padding: 24px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 17px; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.related-card:hover { transform: translateY(-4px); border-color: var(--aqua); box-shadow: 0 18px 42px rgba(6,43,59,.09); }
.related-card span { color: var(--orange); font-size: .76rem; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; }
.related-card h3 { margin: 20px 0 9px; font-size: 1.15rem; }
.related-card p { margin: 0; color: var(--muted); font-size: .86rem; }
.related-card b { margin-top: auto; padding-top: 18px; color: var(--ink); font-size: .84rem; }

.faq { padding: 84px 0; background: #f8fbfc; }
.faq-list { display: grid; gap: 12px; }
.faq-item { padding: 21px 23px; background: #fff; border: 1px solid var(--line); border-radius: 15px; }
.faq-item h3 { margin-bottom: 9px; font-size: 1.03rem; }
.faq-item p { margin: 0; color: var(--muted); }

.final-cta { padding: 68px 0; color: #fff; background: linear-gradient(135deg,#082d3d,#0a4054); }
.final-cta__grid { display: grid; grid-template-columns: 1fr auto; gap: 45px; align-items: center; }
.final-cta h2 { margin-bottom: 10px; color: #fff; }
.final-cta p { max-width: 700px; margin: 0; color: rgba(255,255,255,.67); }
.final-cta__actions { display: flex; gap: 10px; }

.footer { padding: 35px 0; color: rgba(255,255,255,.58); background: #041e29; font-size: .82rem; }
.footer__grid { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 36px; }
.footer__links { display: flex; gap: 18px; }
.footer a { color: rgba(255,255,255,.82); }
.mobile-call { display: none; }

@media (max-width: 1060px) {
  .header__inner { grid-template-columns: 1fr auto; gap: 22px; }
  .nav { display: none; }
  .service-hero__grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .content-layout { grid-template-columns: minmax(0,1fr) 290px; gap: 36px; }
  .steps { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 780px) {
  .container { width: min(100% - 28px,640px); }
  .topbar__items .topbar__item:nth-child(n+2) { display: none; }
  .topbar__inner { min-height: 34px; }
  .header__inner { min-height: 68px; }
  .header__contact .btn { display: none; }
  .phone small, .brand__caption { display: none; }
  .phone strong { font-size: .95rem; }
  .service-hero { padding-top: 8px; }
  .service-hero__grid, .content-layout, .final-cta__grid { grid-template-columns: 1fr; }
  .service-hero__visual img { height: 360px; border-radius: 22px; }
  .service-hero__price { left: 14px; bottom: 14px; }
  .trust-strip__grid { grid-template-columns: repeat(2,1fr); }
  .trust-strip__item { border-bottom: 1px solid rgba(255,255,255,.13); }
  .content-wrap, .process, .related, .faq { padding: 68px 0; }
  .side-card { position: relative; top: 0; }
  .section-head { display: block; }
  .section-head h2 { margin-bottom: 12px; }
  .related-grid { grid-template-columns: 1fr; }
  .final-cta__actions { flex-direction: column; }
  .footer__grid { grid-template-columns: 1fr; gap: 18px; }
  .mobile-call { position: fixed; left: 14px; right: 14px; bottom: 12px; z-index: 50; min-height: 54px; display: flex; align-items: center; justify-content: center; gap: 9px; color: #fff; background: var(--orange); border-radius: 14px; font-weight: 900; box-shadow: 0 14px 32px rgba(6,43,59,.28); }
  body { padding-bottom: 76px; }
}

@media (max-width: 520px) {
  h1 { font-size: 2.55rem; }
  .service-hero__facts, .steps { grid-template-columns: 1fr; }
  .service-hero__actions .btn { width: 100%; }
  .trust-strip__item { padding: 18px 15px; }
  .service-hero__visual img { height: 300px; }
}
