:root {
  --navy: #06194a;
  --navy-2: #082a66;
  --blue: #075ee8;
  --blue-2: #0a7bdc;
  --cyan: #25c7e8;
  --gold: #f4b84a;
  --ink: #101a38;
  --muted: #62708a;
  --line: #dbe8f8;
  --soft: #f4f8ff;
  --white: #ffffff;
  --shadow: 0 22px 50px rgba(6, 25, 74, .11);
  --shadow-sm: 0 12px 28px rgba(6, 25, 74, .08);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  font-family: "Segoe UI", Arial, sans-serif;
  background: #f7fbff;
}

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

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

picture {
  display: block;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .9);
  border-bottom: 1px solid rgba(219, 232, 248, .9);
  box-shadow: 0 8px 22px rgba(6, 25, 74, .06);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  box-shadow: 0 14px 34px rgba(6, 25, 74, .11);
}

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

.brand {
  display: flex;
  align-items: center;
  min-width: 260px;
  overflow: visible;
}

.brand img {
  width: 224px;
  height: auto;
  max-width: none;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 18px;
  color: #34415d;
  font-size: 13.2px;
  font-weight: 650;
}

.nav a {
  position: relative;
  padding: 10px 0;
  white-space: nowrap;
}

.nav a::after {
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 0;
  height: 2px;
  content: "";
  background: var(--blue);
  transition: width .24s ease;
}

.nav a:hover::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 850;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
}

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

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), #004cc2);
  box-shadow: 0 12px 24px rgba(7, 94, 232, .24);
}

.btn-primary:hover {
  box-shadow: 0 18px 34px rgba(7, 94, 232, .3);
}

.btn-secondary,
.btn-light {
  color: var(--blue);
  background: var(--white);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 10px;
  background: #eaf3ff;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy);
  transition: transform .2s ease;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0;
}

.section-panel {
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 72% 36%, rgba(7, 94, 232, .07), transparent 34%),
    radial-gradient(circle at 12% 68%, rgba(37, 199, 232, .06), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
}

.hero {
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: 48px;
  align-items: center;
  min-height: 560px;
  padding: 42px 0 28px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.eyebrow.center {
  display: block;
  text-align: center;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  color: var(--navy);
  font-size: clamp(40px, 5vw, 68px);
  line-height: .98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.12;
}

h3 {
  color: var(--navy);
  font-size: 20px;
  line-height: 1.22;
}

.lead {
  max-width: 600px;
  color: #42506c;
  font-size: 18px;
  line-height: 1.65;
}

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

.hero-media {
  position: relative;
  min-height: 430px;
  border-radius: 30px 30px 30px 92px;
  overflow: hidden;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-media::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(255,255,255,.18), transparent 34%);
  z-index: 1;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center right;
  transform: scale(1.02);
  animation: heroZoom 9s ease-in-out infinite alternate;
}

.floating-card {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 7px;
  padding: 16px 18px;
  border: 1px solid rgba(219, 232, 248, .9);
  border-radius: 14px;
  background: rgba(255,255,255,.88);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
  animation: floatCard 4.8s ease-in-out infinite;
}

.result-card {
  min-width: 245px;
}

.floating-card strong {
  color: var(--navy);
}

.floating-card span {
  color: #52627d;
  font-size: 13px;
}

.report-card span::before {
  margin-right: 6px;
  content: "✓";
  color: var(--blue);
  font-weight: 900;
}

.report-card {
  top: 70px;
  right: 44px;
}

.result-card {
  left: 34px;
  bottom: 34px;
  animation-delay: -2.2s;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 14px 0 24px;
}

.trust-strip span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.85);
  color: #34415d;
  font-size: 14px;
  font-weight: 750;
  box-shadow: 0 8px 20px rgba(6, 25, 74, .05);
}

.trust-strip span::before {
  content: "✓";
  color: var(--blue);
  font-weight: 900;
}

.section-head {
  max-width: 780px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-head p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card,
.price-card,
.step,
.why-card,
.faq-item,
.contact-card,
.messengers,
.contact-list,
.contact-hub,
.question-card {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.92);
  box-shadow: 0 10px 24px rgba(6, 25, 74, .06);
}

.service-card {
  min-height: 214px;
  padding: 24px;
  border-radius: 12px;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(7, 94, 232, .32);
  box-shadow: var(--shadow);
}

.icon,
.price-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 16px;
  border-radius: 13px;
  color: var(--white);
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  font-size: 13px;
  font-weight: 950;
}

.service-card h3 {
  margin-bottom: 10px;
}

.service-card p,
.price-card p,
.step p,
.why-card p,
.contact-card p,
.contact-hub p,
.question-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.pricing-band {
  padding: 74px 0 82px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(37, 199, 232, .15), transparent 36%),
    linear-gradient(135deg, #06194a 0%, #075ee8 100%);
}

.section-head.light h2,
.section-head.light p {
  color: var(--white);
}

.section-head.light .eyebrow {
  color: #b8dcff;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: 24px;
  border-radius: 14px;
  overflow: hidden;
  transition: transform .24s ease, box-shadow .24s ease;
}

.price-card::after {
  position: absolute;
  inset: auto -40px -48px auto;
  width: 120px;
  height: 120px;
  content: "";
  border: 1px solid rgba(7, 94, 232, .12);
  transform: rotate(18deg);
}

.price-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 52px rgba(0, 0, 0, .18);
}

.price-card strong {
  display: block;
  margin-top: auto;
  padding-top: 18px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.35;
}

.price-card ul {
  display: grid;
  gap: 8px;
  margin: 0 0 22px;
  padding: 0;
  color: #45546f;
  line-height: 1.45;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 22px;
}

.price-card li::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "✓";
  color: var(--blue);
  font-weight: 900;
}

.process-section {
  width: 100%;
  max-width: none;
  padding-right: max(16px, calc((100% - 1180px) / 2));
  padding-left: max(16px, calc((100% - 1180px) / 2));
  background:
    radial-gradient(circle at 22% 20%, rgba(7, 94, 232, .055), transparent 30%),
    radial-gradient(circle at 82% 86%, rgba(37, 199, 232, .055), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1180px;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
}

.step {
  position: relative;
  min-height: 250px;
  padding: 26px 22px;
  border-radius: 18px;
  text-align: center;
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.step:hover {
  transform: translateY(-5px);
  border-color: rgba(7, 94, 232, .28);
  box-shadow: 0 22px 52px rgba(6, 25, 74, .12);
}

.step:not(:last-child)::after {
  position: absolute;
  top: 62px;
  right: -22px;
  width: 26px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--line), var(--blue));
}

.step-icon {
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  width: 78px;
  height: 78px;
  margin: 0 auto 18px;
  border: 1px solid #cfe1ff;
  border-radius: 18px;
  color: var(--blue);
  background: linear-gradient(180deg, #ffffff, #eef6ff);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.75), 0 14px 32px rgba(6,25,74,.08);
}

.step-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-icon b {
  margin-top: 2px;
  font-size: 14px;
  font-weight: 950;
  line-height: 1;
}

.about-section {
  width: 100%;
  max-width: none;
  padding-right: max(16px, calc((100% - 1180px) / 2));
  padding-left: max(16px, calc((100% - 1180px) / 2));
  background:
    radial-gradient(circle at 76% 18%, rgba(7, 94, 232, .055), transparent 30%),
    radial-gradient(circle at 18% 86%, rgba(37, 199, 232, .055), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.about-section .section-head {
  max-width: 790px;
  margin-inline: auto;
}

.about-section .section-head p:not(.eyebrow) {
  color: #5b6882;
}

.why-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
}

.why-card {
  min-height: 236px;
  padding: 28px 22px;
  border-radius: 18px;
  text-align: center;
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.why-card:hover {
  transform: translateY(-5px);
  border-color: rgba(7, 94, 232, .28);
  box-shadow: 0 22px 52px rgba(6, 25, 74, .12);
}

.why-card span {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin: 0 auto 18px;
  border: 1px solid #cfe1ff;
  border-radius: 15px;
  color: var(--blue);
  background: linear-gradient(180deg, #ffffff, #eef6ff);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.75), 0 10px 24px rgba(7, 94, 232, .08);
}

.why-card span svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faq-section {
  width: 100%;
  max-width: none;
  padding-right: max(16px, calc((100% - 1180px) / 2));
  padding-left: max(16px, calc((100% - 1180px) / 2));
  background:
    radial-gradient(circle at 12% 18%, rgba(11, 100, 231, .08), transparent 34%),
    radial-gradient(circle at 86% 12%, rgba(37, 199, 232, .08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.faq-section .section-head {
  margin-bottom: 34px;
}

.faq-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 34px;
  align-items: start;
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
}

.faq-visual {
  position: relative;
  align-self: start;
  aspect-ratio: 1 / 1.03;
  border: 1px solid #d7e7ff;
  border-radius: 28px;
  overflow: hidden;
  background: #f5faff;
  box-shadow: 0 22px 60px rgba(6, 25, 74, .1);
}

.faq-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.018);
  transform-origin: center center;
}

.faq-content {
  min-width: 0;
}

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

.faq-item {
  border-radius: 14px;
  overflow: hidden;
  transition: height .32s ease, border-color .22s ease, box-shadow .22s ease, transform .22s ease;
  will-change: height;
}

.faq-item:hover {
  transform: translateY(-2px);
  border-color: rgba(7, 94, 232, .24);
  box-shadow: 0 16px 34px rgba(6, 25, 74, .08);
}

.faq-item summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  outline: none;
  padding: 18px 56px 18px 22px;
  color: var(--navy);
  font-weight: 850;
  line-height: 1.35;
}

.faq-item:focus-within {
  border-color: rgba(7, 94, 232, .36);
  box-shadow: 0 16px 34px rgba(6, 25, 74, .08), 0 0 0 3px rgba(7, 94, 232, .08);
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 22px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--blue);
  background: #edf5ff;
  transform: translateY(-50%);
  transition: transform .22s ease, background .22s ease;
}

.faq-item[open] summary::after {
  content: "−";
  background: #e3f2ff;
  transform: translateY(-50%) rotate(180deg);
}

.faq-item p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
  line-height: 1.65;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity .26s ease, transform .26s ease;
}

.faq-item[open] p {
  opacity: 1;
  transform: translateY(0);
}

.contact-section {
  width: 100%;
  max-width: none;
  padding-right: max(16px, calc((100% - 1180px) / 2));
  padding-left: max(16px, calc((100% - 1180px) / 2));
  background:
    radial-gradient(circle at 18% 18%, rgba(7, 94, 232, .06), transparent 32%),
    radial-gradient(circle at 82% 84%, rgba(37, 199, 232, .08), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 28px;
  align-items: stretch;
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
}

.contact-list {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 32px;
  border-radius: 22px;
}

.contact-panel-head h3,
.contact-hub h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 28px;
}

.contact-panel-head p {
  margin: 0 0 8px;
  color: var(--muted);
  line-height: 1.55;
}

.contact-card,
.messengers {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 20px 22px;
  border-radius: 15px;
  background: #ffffff;
  box-shadow: none;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.contact-card:hover,
.messengers a:hover {
  transform: translateY(-2px);
  border-color: rgba(7, 94, 232, .28);
  box-shadow: 0 14px 30px rgba(6, 25, 74, .08);
}

.contact-card span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border-radius: 12px;
  color: var(--blue);
  background: linear-gradient(180deg, #ffffff, #edf6ff);
  border: 1px solid #cfe1ff;
  font-weight: 900;
}

.contact-card span svg,
.messengers a svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-card strong,
.messengers strong {
  display: block;
  margin-bottom: 4px;
  color: var(--blue);
}

.messengers {
  display: grid;
  align-items: start;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  padding: 8px 0 0;
}

.messengers div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.messengers a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 15px;
  border: 1px solid #cfe1ff;
  border-radius: 999px;
  color: var(--blue);
  background: #edf5ff;
  font-weight: 800;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease;
}

.messengers a:hover {
  border-color: rgba(7, 94, 232, .28);
  background: #e7f1ff;
}

.messengers a svg {
  color: var(--messenger-color, var(--blue));
}

.messengers a .viber-icon {
  fill: none;
  stroke: none;
}

.messengers a .viber-icon path:first-child {
  fill: #7360f2;
}

.messengers a .viber-icon path:not(:first-child) {
  fill: none;
  stroke: #ffffff;
  stroke-width: 1.7;
}

.messenger-viber {
  --messenger-color: #7360f2;
}

.messenger-telegram {
  --messenger-color: #229ed9;
}

.messenger-whatsapp {
  --messenger-color: #25d366;
}

.contact-hub {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 38px 42px;
  border-radius: 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 82%, rgba(37,199,232,.16), transparent 32%),
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(240,247,255,.96));
}

.contact-hub::after {
  position: absolute;
  right: -72px;
  bottom: -82px;
  width: 260px;
  height: 260px;
  content: "";
  border-radius: 50%;
  border: 2px solid rgba(7, 94, 232, .08);
}

.contact-hub-text {
  position: relative;
  z-index: 1;
}

.contact-hub-text .eyebrow {
  margin-bottom: 10px;
}

.contact-hub-text p:not(.eyebrow) {
  max-width: 540px;
}

.contact-hub-body {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 34px;
  align-items: center;
  margin: 30px 0 28px;
}

.contact-illustration {
  display: grid;
  place-items: center;
  min-height: 172px;
  border: 1px solid #cfe1ff;
  border-radius: 20px;
  background: #f2f8ff;
}

.contact-illustration svg {
  width: 220px;
  height: 162px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-benefits {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-benefits li {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--navy);
  font-size: 17px;
  font-weight: 850;
}

.contact-benefits span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--blue);
  background: #edf5ff;
}

.contact-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
}

.contact-actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.contact-actions .btn svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer {
  padding: 30px 0 24px;
  color: #c6d4ea;
  background: #071834;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(230px, 1.2fr) minmax(360px, 1.4fr) minmax(230px, .9fr);
  gap: 26px;
  align-items: center;
}

.footer img {
  width: 154px;
  height: auto;
  display: block;
  border-radius: 4px;
}

.footer p {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.5;
  color: #b8c8df;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 20px;
}

.footer a {
  display: inline-flex;
  align-items: center;
  color: #c6d4ea;
  font-weight: 750;
  transition: color .2s ease;
}

.footer a:hover {
  color: var(--white);
}

.footer-contacts {
  display: grid;
  justify-items: end;
  gap: 8px;
}

.footer-contacts a:first-child {
  color: var(--white);
  font-size: 18px;
  font-weight: 900;
}

.footer-bottom {
  grid-column: 1 / -1;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.12);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
  transition-delay: var(--delay, 0ms);
}

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

@keyframes heroZoom {
  from { transform: scale(1.02); }
  to { transform: scale(1.07); }
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 1080px) {
  .header-inner {
    grid-template-columns: auto auto;
  }

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

  .nav {
    display: none;
  }

  .nav.is-open {
    display: grid;
    grid-column: 1 / -1;
    gap: 6px;
    padding: 0 0 14px;
  }

  .nav.is-open a {
    padding: 13px 14px;
    border-radius: 10px;
    background: #edf5ff;
  }

  .hero-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .price-grid,
  .steps,
  .why-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .step:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .header-inner {
    min-height: 68px;
  }

  .brand img {
    width: 142px;
  }

  .section {
    padding: 52px 0;
  }

  .hero-grid {
    gap: 28px;
    min-height: auto;
    padding: 38px 0 18px;
  }

  h1 {
    font-size: 40px;
  }

  .lead {
    font-size: 16px;
  }

  .hero-actions,
  .trust-strip,
  .service-grid,
  .price-grid,
  .steps,
  .why-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    justify-items: center;
    text-align: center;
  }

  .footer-brand {
    display: grid;
    justify-items: center;
  }

  .footer img {
    margin-right: auto;
    margin-left: auto;
  }

  .footer-nav {
    max-width: 360px;
  }

  .footer-contacts {
    justify-items: center;
  }

  .hero-actions {
    display: grid;
  }

  .hero-media {
    min-height: 330px;
    border-radius: 18px 18px 18px 46px;
  }

  .hero-media img {
    min-height: 330px;
  }

  .floating-card {
    padding: 12px 14px;
  }

  .report-card {
    top: 16px;
    right: 16px;
  }

  .result-card {
    left: 16px;
    bottom: 16px;
  }

  .service-card,
  .price-card {
    min-height: auto;
  }

  .process-section,
  .about-section {
    padding-right: 20px;
    padding-left: 20px;
  }

  .process-section .section-head,
  .about-section .section-head {
    max-width: 100%;
  }

  .steps,
  .why-row {
    gap: 16px;
    width: 100%;
    max-width: 420px;
  }

  .step,
  .why-card {
    min-height: auto;
    padding: 24px 18px;
    border-radius: 16px;
  }

  .step-icon {
    width: 68px;
    height: 68px;
    margin-bottom: 16px;
    border-radius: 16px;
  }

  .why-card span {
    width: 58px;
    height: 58px;
    margin-bottom: 16px;
  }

  .faq-visual {
    aspect-ratio: 1 / 1;
    border-radius: 20px;
  }

  .faq-content h2 {
    font-size: 34px;
  }

  .contact-list,
  .contact-hub {
    padding: 24px;
  }

  .messengers {
    justify-items: center;
    text-align: center;
  }

  .messengers div {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 250px);
    justify-items: stretch;
  }

  .messengers a {
    width: 100%;
    justify-content: center;
  }

  .contact-hub-body {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .contact-actions {
    display: grid;
  }

  .contact-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .contact-hub::after {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* Updated services and pricing section */
.pricing-band {
  position: relative;
  padding: 78px 0 76px;
  color: var(--ink);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 30%, rgba(7, 94, 232, .045), transparent 44%),
    radial-gradient(circle at 0% 72%, rgba(231, 242, 255, .7), transparent 34%),
    radial-gradient(circle at 100% 72%, rgba(231, 242, 255, .6), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 58%, #ffffff 100%);
}

.pricing-band::before,
.pricing-band::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.pricing-band::before {
  left: -26px;
  top: 18px;
  width: 230px;
  height: 300px;
  border: 2px solid rgba(7, 94, 232, .07);
  border-radius: 18px;
  background:
    linear-gradient(rgba(7,94,232,.09) 0 0) 52px 68px / 106px 3px no-repeat,
    linear-gradient(rgba(7,94,232,.06) 0 0) 52px 101px / 92px 3px no-repeat,
    linear-gradient(rgba(7,94,232,.06) 0 0) 52px 133px / 118px 3px no-repeat,
    linear-gradient(90deg, rgba(7,94,232,.08) 0 18px, transparent 18px 33px, rgba(7,94,232,.08) 33px 56px, transparent 56px 72px, rgba(7,94,232,.08) 72px 102px) 52px 202px / 102px 54px no-repeat;
  opacity: .58;
  transform: rotate(-12deg);
}

.pricing-band::after {
  right: -30px;
  bottom: -24px;
  width: 210px;
  height: 280px;
  background:
    linear-gradient(rgba(7,94,232,.075) 0 0) 42px 34px / 104px 44px no-repeat,
    linear-gradient(90deg, rgba(7,94,232,.08) 0 23px, transparent 23px 39px, rgba(7,94,232,.08) 39px 62px, transparent 62px 78px, rgba(7,94,232,.08) 78px 101px) 42px 112px / 101px 110px no-repeat;
  border: 2px solid rgba(7, 94, 232, .065);
  border-radius: 22px;
  opacity: .55;
  transform: rotate(14deg);
}

.pricing-head {
  position: relative;
  z-index: 1;
}

.pricing-head h2 {
  font-size: clamp(32px, 3.3vw, 48px);
}

.pricing-head p:not(.eyebrow) {
  max-width: 720px;
  margin: 0 auto;
  color: #5b6882;
}

.service-price-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.service-price-card {
  min-height: 410px;
  padding: 22px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 16px 42px rgba(6, 25, 74, .08);
}

.service-price-card::after {
  display: none;
}

.service-price-card:hover {
  transform: translateY(-6px);
  border-color: rgba(7, 94, 232, .3);
  box-shadow: 0 24px 58px rgba(6, 25, 74, .13);
}

.service-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--blue);
  background: linear-gradient(180deg, #ffffff, #f1f7ff);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.7), 0 10px 24px rgba(6,25,74,.07);
}

.service-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-icon-text {
  color: var(--blue);
  font-size: 18px;
  line-height: .9;
  font-weight: 950;
}

.service-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 11px;
  border: 1px solid #cfe1ff;
  border-radius: 8px;
  color: var(--blue);
  background: #edf5ff;
  font-size: 13px;
  font-weight: 900;
}

.service-tag-cyan {
  border-color: #bdeef7;
  color: #0277a8;
  background: #e8fbff;
}

.service-tag-green {
  border-color: #bdeee5;
  color: #00877a;
  background: #e8fffb;
}

.service-price-card h3 {
  min-height: 48px;
  margin-bottom: 16px;
  font-size: 20px;
}

.service-price-card ul {
  gap: 9px;
  margin-bottom: 18px;
  color: #344866;
  font-size: 15px;
}

.service-price-card li::before {
  content: "✓";
  color: var(--blue);
}

.price-box {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: center;
  align-items: end;
  column-gap: 6px;
  row-gap: 6px;
  width: 100%;
  margin-top: auto;
  min-height: 86px;
  padding: 15px 10px 12px;
  border: 1px solid #cfe1ff;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255,255,255,.86), rgba(240,247,255,.92));
  cursor: pointer;
  font: inherit;
  text-align: center;
  transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}

.price-box:hover,
.price-box:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(7, 94, 232, .42);
  background: linear-gradient(180deg, #ffffff, #eaf4ff);
  box-shadow: 0 12px 28px rgba(7, 94, 232, .12);
  outline: none;
}

.price-box strong {
  display: inline;
  margin: 0;
  padding: 0;
  color: var(--blue);
  font-size: 27px;
  line-height: 1;
  white-space: nowrap;
}

.price-box strong::before {
  content: "від ";
  font-size: 14px;
  font-weight: 900;
}

.price-box span {
  color: var(--blue);
  font-size: 14px;
  line-height: 1.1;
  text-align: left;
  white-space: nowrap;
}

.price-box em {
  grid-column: 1 / -1;
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  font-style: normal;
}

.price-box em::after {
  content: "→";
  font-size: 20px;
  line-height: 1;
  transition: transform .2s ease;
}

.price-box:hover em::after,
.price-box:focus-visible em::after {
  transform: translateX(4px);
}

.pricing-note {
  position: relative;
  z-index: 1;
  margin: 28px 0 0;
  color: #5b6882;
  text-align: center;
  font-size: 16px;
}

.pricing-note::before {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  margin-right: 10px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  content: "✓";
  color: var(--blue);
  font-weight: 900;
}

.additional-section {
  position: relative;
  width: 100%;
  max-width: none;
  padding-right: max(16px, calc((100% - 1180px) / 2));
  padding-left: max(16px, calc((100% - 1180px) / 2));
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 36%, rgba(7, 94, 232, .07), transparent 34%),
    radial-gradient(circle at 12% 68%, rgba(37, 199, 232, .06), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
}

.additional-section::before {
  display: none;
}

.additional-section .section-head {
  max-width: 760px;
  margin-inline: auto;
}

.additional-section .section-head p:not(.eyebrow) {
  color: #5b6882;
}

.additional-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
}

.additional-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: start;
  min-height: 210px;
  padding: 22px;
  border: 1px solid #d9e7fb;
  border-radius: 16px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 16px 38px rgba(6, 25, 74, .07);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.additional-card:hover {
  transform: translateY(-5px);
  border-color: rgba(7, 94, 232, .28);
  box-shadow: 0 22px 52px rgba(6, 25, 74, .12);
}

.additional-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid #cfe1ff;
  border-radius: 15px;
  color: var(--blue);
  background: linear-gradient(180deg, #ffffff, #eef6ff);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.75), 0 10px 24px rgba(7, 94, 232, .08);
}

.additional-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.additional-card h3 {
  margin: 2px 0 8px;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.2;
}

.additional-card p {
  margin: 0;
  color: #53627d;
  font-size: 15px;
  line-height: 1.55;
}

.additional-card strong {
  grid-column: 1 / -1;
  align-self: end;
  justify-self: stretch;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 58px;
  margin-top: 4px;
  padding: 0 18px;
  border: 1px solid #cfe1ff;
  border-radius: 10px;
  color: var(--blue);
  background: linear-gradient(180deg, rgba(255,255,255,.86), rgba(240,247,255,.92));
  font-size: 20px;
  font-weight: 950;
  line-height: 1;
  text-align: center;
  box-shadow: 0 10px 22px rgba(7, 94, 232, .06);
  transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}

.additional-card:hover strong {
  transform: translateY(-2px);
  border-color: rgba(7, 94, 232, .42);
  background: linear-gradient(180deg, #ffffff, #eaf4ff);
  box-shadow: 0 12px 28px rgba(7, 94, 232, .12);
}

.floating-contact-button {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, .58);
  border-radius: 50%;
  color: #ffffff;
  background: rgba(7, 94, 232, .56);
  box-shadow: 0 14px 30px rgba(6, 25, 74, .16);
  backdrop-filter: blur(12px);
  cursor: pointer;
  transition: transform .22s ease, opacity .22s ease, background .22s ease, box-shadow .22s ease;
}

.scroll-top-button {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, .64);
  border-radius: 50%;
  color: var(--blue);
  background: rgba(255, 255, 255, .68);
  box-shadow: 0 14px 30px rgba(6, 25, 74, .14);
  backdrop-filter: blur(12px);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: transform .22s ease, opacity .22s ease, background .22s ease, box-shadow .22s ease;
}

.floating-contact-button:hover {
  transform: translateY(-2px);
  background: rgba(7, 94, 232, .82);
  box-shadow: 0 20px 44px rgba(6, 25, 74, .26);
}

.scroll-top-button.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top-button:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 18px 38px rgba(6, 25, 74, .2);
}

.floating-contact-button svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.scroll-top-button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.modal-open .floating-contact-button,
body.modal-open .scroll-top-button {
  opacity: 0;
  pointer-events: none;
}

.service-modal,
.consultation-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.service-modal.is-open,
.consultation-modal.is-open {
  display: flex;
}

.service-modal-backdrop,
.consultation-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 25, 74, .58);
  backdrop-filter: blur(10px);
}

.service-modal-dialog {
  position: relative;
  width: min(760px, 100%);
  max-height: min(86vh, 820px);
  overflow: auto;
  padding: 34px;
  border: 1px solid rgba(219, 232, 248, .95);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(7, 94, 232, .06), transparent 45%),
    #ffffff;
  box-shadow: 0 30px 90px rgba(6, 25, 74, .28);
  animation: modalIn .22s ease;
}

.consultation-modal-dialog {
  position: relative;
  width: min(580px, 100%);
  max-height: min(86vh, 760px);
  overflow: auto;
  padding: 34px;
  border: 1px solid rgba(219, 232, 248, .95);
  border-radius: 20px;
  background:
    radial-gradient(circle at 92% 12%, rgba(37, 199, 232, .12), transparent 30%),
    linear-gradient(135deg, rgba(7, 94, 232, .06), transparent 46%),
    #ffffff;
  box-shadow: 0 30px 90px rgba(6, 25, 74, .28);
  animation: modalIn .22s ease;
}

.service-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--navy);
  background: #f3f8ff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.modal-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--blue);
  background: #edf5ff;
  font-size: 13px;
  font-weight: 900;
}

.service-modal-dialog h2 {
  max-width: 620px;
  margin-bottom: 12px;
  font-size: clamp(28px, 3vw, 38px);
}

.modal-description {
  color: #4d5e7a;
  font-size: 17px;
  line-height: 1.6;
}

.modal-columns {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 22px;
  margin-top: 24px;
}

.modal-columns h3 {
  margin-bottom: 12px;
  font-size: 17px;
}

.modal-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.modal-list li {
  position: relative;
  padding-left: 24px;
  color: #344866;
  line-height: 1.45;
}

.modal-list li::before {
  position: absolute;
  left: 0;
  content: "✓";
  color: var(--blue);
  font-weight: 900;
}

.modal-side {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f6faff;
}

.modal-price {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
}

.modal-price span {
  display: block;
  padding: 11px 12px;
  border: 1px solid #cfe1ff;
  border-radius: 10px;
  color: var(--blue);
  background: #ffffff;
  font-weight: 900;
}

.modal-side p {
  color: #5b6882;
  line-height: 1.55;
}

.modal-contact-panel {
  display: grid;
  gap: 12px;
  margin-top: 22px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f7fbff;
}

.modal-phone-link {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  padding: 13px 14px;
  border: 1px solid #cfe1ff;
  border-radius: 12px;
  color: var(--ink);
  background: #ffffff;
}

.modal-phone-link span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border: 1px solid #cfe1ff;
  border-radius: 12px;
  color: var(--blue);
  background: linear-gradient(180deg, #ffffff, #edf6ff);
}

.modal-phone-link svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.modal-phone-link strong {
  display: block;
  margin-bottom: 2px;
  color: var(--blue);
  text-align: center;
}

.modal-phone-link p {
  margin: 0;
  color: var(--navy);
  font-weight: 900;
  text-align: center;
}

.modal-messenger-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.modal-messenger-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 9px 12px;
  border: 1px solid #cfe1ff;
  border-radius: 999px;
  color: var(--blue);
  background: #edf5ff;
  font-weight: 850;
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.modal-messenger-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(7, 94, 232, .28);
  background: #e7f1ff;
}

.modal-messenger-links a svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  color: var(--messenger-color, var(--blue));
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.modal-messenger-links a .viber-icon {
  fill: none;
  stroke: none;
}

.modal-messenger-links a .viber-icon path:first-child {
  fill: #7360f2;
}

.modal-messenger-links a .viber-icon path:not(:first-child) {
  fill: none;
  stroke: #ffffff;
  stroke-width: 1.7;
}

.service-close-full {
  width: 100%;
  margin-top: 16px;
  color: var(--blue);
  background: #ffffff;
  box-shadow: none;
}

.consultation-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.consultation-row {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.86);
}

.consultation-row span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border: 1px solid #cfe1ff;
  border-radius: 12px;
  color: var(--blue);
  background: linear-gradient(180deg, #ffffff, #edf6ff);
}

.consultation-row svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.consultation-row strong,
.consultation-messengers strong {
  display: block;
  margin-bottom: 4px;
  color: var(--blue);
}

.consultation-row p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.consultation-messengers {
  margin-top: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f7fbff;
}

.consultation-messengers div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.consultation-messengers a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 9px 15px;
  border: 1px solid #cfe1ff;
  border-radius: 999px;
  color: var(--blue);
  background: #edf5ff;
  font-weight: 850;
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.consultation-messengers a svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  color: var(--messenger-color, var(--blue));
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.consultation-messengers a .viber-icon {
  fill: none;
  stroke: none;
}

.consultation-messengers a .viber-icon path:first-child {
  fill: #7360f2;
}

.consultation-messengers a .viber-icon path:not(:first-child) {
  fill: none;
  stroke: #ffffff;
  stroke-width: 1.7;
}

.consultation-messengers a:hover {
  transform: translateY(-2px);
  border-color: rgba(7, 94, 232, .28);
  background: #e7f1ff;
}

.consultation-close-full {
  width: 100%;
  margin-top: 22px;
  color: var(--blue);
  background: #ffffff;
  box-shadow: none;
}

body.modal-open {
  overflow: hidden;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

@media (max-width: 680px) {
  .floating-contact-button {
    left: 18px;
    bottom: 18px;
    width: 48px;
    height: 48px;
  }

  .scroll-top-button {
    right: 18px;
    bottom: 18px;
    width: 46px;
    height: 46px;
  }

  .pricing-band {
    padding: 56px 0;
  }

  .service-price-grid,
  .additional-grid {
    grid-template-columns: 1fr;
  }

  .service-price-card {
    min-height: auto;
  }

  .service-price-card h3 {
    min-height: 0;
  }

  .additional-card {
    min-height: auto;
    padding: 18px;
  }

  .additional-card strong {
    justify-self: stretch;
    justify-content: center;
  }

  .service-modal,
  .consultation-modal {
    padding: 14px;
  }

  .service-modal-dialog,
  .consultation-modal-dialog {
    padding: 26px 18px 20px;
    border-radius: 16px;
  }

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

  .modal-messenger-links {
    grid-template-columns: 1fr;
  }

  .consultation-messengers div {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  .process-section,
  .about-section {
    padding-right: 24px;
    padding-left: 24px;
  }

  .steps,
  .why-row {
    max-width: 360px;
  }

  .step,
  .why-card {
    padding-right: 16px;
    padding-left: 16px;
  }
}
