:root {
  color-scheme: light;
  --bg: #ffffff;
  --text: #0a0f1a;
  --muted: #5b6678;
  --line: rgba(17, 24, 39, 0.12);
  --card: rgba(255, 255, 255, 0.8);
  --card-strong: rgba(255, 255, 255, 0.92);

  --blue-900: #0b2a5b;
  --blue-700: #124ea6;
  --blue-600: #1a66d6;
  --gray-50: #f6f7fb;
  --gray-100: #eff2f7;

  --shadow-sm: 0 8px 20px rgba(11, 42, 91, 0.09);
  --shadow-md: 0 18px 42px rgba(11, 42, 91, 0.14);

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;

  --container: 1120px;
  --pad: 20px;
  --focus: 0 0 0 3px rgba(26, 102, 214, 0.25);

  --step--1: clamp(0.9rem, 0.82rem + 0.2vw, 0.98rem);
  --step-0: clamp(1rem, 0.92rem + 0.3vw, 1.1rem);
  --step-1: clamp(1.25rem, 1.05rem + 0.8vw, 1.6rem);
  --step-2: clamp(1.6rem, 1.3rem + 1.2vw, 2.1rem);
  --step-3: clamp(2.05rem, 1.55rem + 2.0vw, 2.9rem);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: radial-gradient(900px 500px at 20% -10%, rgba(26, 102, 214, 0.12), transparent 60%),
    radial-gradient(700px 420px at 85% 10%, rgba(11, 42, 91, 0.1), transparent 55%), var(--bg);
  color: var(--text);
  font-family: "Roboto", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, "Apple Color Emoji",
    "Segoe UI Emoji";
  font-size: var(--step-0);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

a:hover {
  text-decoration: none;
}

.i {
  flex: 0 0 auto;
  display: inline-block;
}

.i--sm {
  width: 18px;
  height: 18px;
}

:focus-visible {
  outline: none;
  box-shadow: var(--focus);
  border-radius: 10px;
}

.container {
  width: min(var(--container), calc(100% - (var(--pad) * 2)));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--bg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transform: translateY(-130%);
  transition: transform 180ms ease;
  z-index: 1000;
}

.skip-link:focus {
  transform: translateY(0);
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid var(--line);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 160px;
}

.brand__mark {
  border-radius: 12px;
}

.brand__name {
  font-weight: 700;
  letter-spacing: 0.2px;
}

.nav {
  display: none;
  gap: 14px;
}

.nav__link {
  position: relative;
  color: var(--muted);
  font-weight: 500;
  font-size: var(--step--1);
  padding: 10px 10px;
  border-radius: 12px;
  transition: color 160ms ease, background 160ms ease;
}

.nav__link:hover {
  color: var(--text);
  background: rgba(17, 24, 39, 0.04);
}

.header__actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.header__phone {
  display: none;
  font-weight: 700;
  color: var(--blue-900);
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(11, 42, 91, 0.18);
  background: rgba(255, 255, 255, 0.65);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.header__phone:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.lang {
  display: inline-flex;
  padding: 4px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.65);
}

.lang__btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 8px 10px;
  border-radius: 12px;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease;
}

.lang__btn[aria-pressed="true"] {
  background: rgba(26, 102, 214, 0.12);
  color: var(--blue-900);
}

.burger {
  appearance: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.65);
  border-radius: 14px;
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.burger:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.burger__lines {
  width: 18px;
  height: 12px;
  position: relative;
}

.burger__lines::before,
.burger__lines::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--blue-900);
  border-radius: 2px;
  transition: transform 160ms ease, top 160ms ease, opacity 160ms ease;
}

.burger__lines::before {
  top: 2px;
}

.burger__lines::after {
  top: 8px;
}

.burger[data-open="true"] .burger__lines::before {
  top: 5px;
  transform: rotate(45deg);
}

.burger[data-open="true"] .burger__lines::after {
  top: 5px;
  transform: rotate(-45deg);
}

.mobile-menu {
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
}

.mobile-menu__inner {
  width: min(var(--container), calc(100% - (var(--pad) * 2)));
  margin: 0 auto;
  padding: 12px 0 16px;
  display: grid;
  gap: 8px;
}

.mobile-menu__link {
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  font-weight: 700;
  color: var(--text);
}

.hero {
  padding: 54px 0 20px;
}

.hero--bg {
  position: relative;
  overflow: hidden;
}

.hero--bg::before {
  content: "";
  position: absolute;
  inset: -12% -8%;
  background-image: url("/assets/hero-bg.svg");
  background-size: cover;
  background-position: center;
  opacity: 0.75;
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.03);
  will-change: transform;
  pointer-events: none;
}

.hero--bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 520px at 20% 10%, rgba(255, 255, 255, 0.62), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.92));
  pointer-events: none;
}

.hero__inner {
  display: grid;
  gap: 22px;
  align-items: center;
}

.hero__content {
  max-width: 650px;
}

.hero__content,
.hero__panel {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: var(--step--1);
  color: var(--blue-900);
  font-weight: 700;
  letter-spacing: 0.2px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(26, 102, 214, 0.1);
  border: 1px solid rgba(26, 102, 214, 0.2);
}

.h1 {
  margin: 14px 0 10px;
  font-size: var(--step-3);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.lead {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: var(--step-1);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin: 14px 0 22px;
}

.btn {
  appearance: none;
  border: 1px solid transparent;
  border-radius: 16px;
  padding: 12px 14px;
  font-weight: 700;
  font-size: 0.98rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease,
    color 160ms ease;
}

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

.btn--sm {
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 0.92rem;
}

.btn--primary {
  background: linear-gradient(135deg, var(--blue-900), var(--blue-600));
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(11, 42, 91, 0.18);
  color: var(--blue-900);
}

.btn--ghost:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

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

.trust__item {
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  padding: 12px 12px;
}

.trust__kpi {
  font-weight: 900;
  color: var(--blue-900);
  letter-spacing: -0.01em;
  font-size: 1.1rem;
}

.trust__label {
  color: var(--muted);
  font-size: 0.88rem;
}

.hero__panel {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(11, 42, 91, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.9));
  box-shadow: var(--shadow-md);
  overflow: hidden;
  min-height: 260px;
}

.panel-card {
  position: relative;
  padding: 22px;
  z-index: 1;
}

.panel-card__title {
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--blue-900);
}

.panel-card__text {
  margin-top: 10px;
  color: var(--muted);
}

.panel-card__chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.chip {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(11, 42, 91, 0.14);
  background: rgba(255, 255, 255, 0.6);
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--blue-900);
}

.panel-glow {
  position: absolute;
  inset: -40% -25% auto auto;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle at 30% 30%, rgba(26, 102, 214, 0.34), transparent 55%),
    radial-gradient(circle at 60% 60%, rgba(11, 42, 91, 0.22), transparent 52%);
  filter: blur(8px);
  transform: rotate(15deg);
  opacity: 0.9;
}

.section {
  padding: 46px 0;
}

.section--muted {
  background: linear-gradient(180deg, rgba(246, 247, 251, 0.25), rgba(246, 247, 251, 0.75));
  border-top: 1px solid rgba(17, 24, 39, 0.06);
  border-bottom: 1px solid rgba(17, 24, 39, 0.06);
}

.section--bg {
  position: relative;
  overflow: hidden;
}

.section--bg::before {
  content: "";
  position: absolute;
  inset: -18% -10%;
  background-image: url("/assets/about-bg.svg");
  background-size: cover;
  background-position: center;
  opacity: 0.55;
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.02);
  will-change: transform;
  pointer-events: none;
}

.section--bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(246, 247, 251, 0.72), rgba(246, 247, 251, 0.92));
  pointer-events: none;
}

#about.section--bg::before {
  background-image: url("https://images.unsplash.com/photo-1760940340180-2820345c2a40?ixlib=rb-4.1.0&auto=format&fit=crop&w=1600&q=60");
  opacity: 0.85;
}

#about.section--bg::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.58));
}

#about.section--bg .h2 {
  color: #fff;
}

#about.section--bg .subhead {
  color: rgba(255, 255, 255, 0.82);
}

#about.section--bg .note {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
}

.section--bg > .container {
  position: relative;
  z-index: 1;
}

.section__head {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
  max-width: 780px;
}

.h2 {
  margin: 0;
  font-size: var(--step-2);
  line-height: 1.15;
  letter-spacing: -0.015em;
}

.subhead {
  margin: 0;
  color: var(--muted);
  font-size: var(--step-0);
}

.h3 {
  margin: 0;
  font-size: var(--step-1);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.text {
  margin: 10px 0 0;
  color: var(--muted);
}

.cards {
  display: grid;
  gap: 14px;
}

.card {
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: var(--radius-md);
  padding: 18px;
  box-shadow: var(--shadow-sm);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(11, 42, 91, 0.22);
}

.card__media {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(11, 42, 91, 0.14);
  background: rgba(255, 255, 255, 0.6);
  height: 150px;
  margin-bottom: 12px;
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--blue-900);
  border: 1px solid rgba(11, 42, 91, 0.14);
  background: rgba(26, 102, 214, 0.09);
  margin-bottom: 12px;
}

.list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  display: grid;
  gap: 8px;
}

.list li {
  margin: 0;
  position: relative;
  padding-left: 26px;
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25em;
  width: 16px;
  height: 16px;
  background: var(--blue-700);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6.5 12.5 10.5 16.5 17.5 8.5' stroke='%23000' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6.5 12.5 10.5 16.5 17.5 8.5' stroke='%23000' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
  border-radius: 6px;
}

.about-grid {
  display: grid;
  gap: 14px;
  margin-top: 12px;
}

.about-card {
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: var(--card-strong);
  box-shadow: var(--shadow-sm);
}

.note {
  margin-top: 14px;
  padding: 16px 16px;
  border-radius: 18px;
  border: 1px solid rgba(26, 102, 214, 0.18);
  background: rgba(26, 102, 214, 0.08);
  color: var(--blue-900);
  font-weight: 500;
}

.contacts {
  display: grid;
  gap: 16px;
  align-items: start;
}

.contact-cards {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}

.contact-card {
  display: grid;
  gap: 6px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-sm);
}

.contact-card__k {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.contact-card__v a {
  color: var(--blue-900);
  font-weight: 700;
}

.form {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
  padding: 16px;
}

.form__row {
  display: grid;
  gap: 12px;
}

.field {
  display: grid;
  gap: 8px;
}

.field__label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--blue-900);
}

.field__control {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(17, 24, 39, 0.14);
  background: rgba(246, 247, 251, 0.7);
  padding: 12px 12px;
  font: inherit;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.field__control:focus {
  outline: none;
  border-color: rgba(26, 102, 214, 0.4);
  box-shadow: var(--focus);
  background: rgba(255, 255, 255, 0.92);
}

.field__control[aria-invalid="true"] {
  border-color: rgba(220, 38, 38, 0.55);
}

.form__footer {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.fineprint {
  margin: 0;
  font-size: 0.86rem;
  color: var(--muted);
}

.form__status {
  margin-top: 12px;
  min-height: 22px;
  font-size: 0.92rem;
  font-weight: 500;
}

.map {
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  min-height: 360px;
  background: linear-gradient(180deg, rgba(246, 247, 251, 0.65), rgba(255, 255, 255, 0.95));
  overflow: hidden;
}

.map iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}

.map__fallback {
  padding: 14px;
  color: var(--muted);
}

.contact-reqs {
  margin-top: 12px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(17, 24, 39, 0.12);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-sm);
  padding: 14px;
}

.contact-reqs__h {
  font-weight: 700;
  color: var(--blue-900);
  margin-bottom: 10px;
}

.contact-reqs__grid {
  display: grid;
  gap: 10px;
}

.req--compact {
  padding: 10px 12px;
  border-radius: 16px;
}

.footer {
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.75);
  padding: 26px 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.brand--footer .brand__name {
  font-size: 1.05rem;
}

.footer__left {
  display: grid;
  gap: 10px;
}

.footer__mini {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--muted);
  font-weight: 500;
}

.dot {
  opacity: 0.6;
}

.footer__right {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-weight: 500;
}

.footer__top {
  display: grid;
  gap: 14px;
}

.footer__col {
  border-radius: 22px;
  border: 1px solid rgba(17, 24, 39, 0.12);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-sm);
  padding: 16px;
}

.footer__h {
  font-weight: 700;
  color: var(--blue-900);
  letter-spacing: 0.01em;
  margin-bottom: 10px;
}

.footer__tagline {
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 400;
}

.footer__contacts {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.footer__contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(17, 24, 39, 0.12);
  background: rgba(255, 255, 255, 0.65);
  color: var(--blue-900);
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.footer__contact:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(11, 42, 91, 0.22);
}

.footer__nav {
  display: grid;
  gap: 8px;
}

.footer__nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(17, 24, 39, 0.12);
  background: rgba(255, 255, 255, 0.65);
  color: var(--text);
  font-weight: 500;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.footer__nav-link:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(11, 42, 91, 0.22);
}

.footer__meta {
  display: grid;
  gap: 10px;
}

.footer__meta-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(17, 24, 39, 0.12);
  background: rgba(255, 255, 255, 0.65);
  color: var(--muted);
  font-weight: 500;
}

.footer__meta-row[href] {
  color: var(--blue-900);
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.footer__meta-row[href]:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(11, 42, 91, 0.22);
}

.footer__reqs-wrap {
  border-radius: 22px;
  border: 1px solid rgba(17, 24, 39, 0.12);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-sm);
  padding: 16px;
}

.footer__reqs {
  display: grid;
  gap: 10px;
}

.req {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
}

.req__k {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 92px;
}

.req__v {
  color: var(--text);
  font-weight: 500;
  text-align: right;
  word-break: break-word;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-weight: 500;
  border-top: 1px solid rgba(17, 24, 39, 0.08);
  padding-top: 14px;
}

.to-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(17, 24, 39, 0.12);
  background: rgba(255, 255, 255, 0.65);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.to-top:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.cookie {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px;
  z-index: 90;
}

.cookie__inner {
  width: min(var(--container), calc(100% - (var(--pad) * 2)));
  margin: 0 auto;
  border-radius: 22px;
  border: 1px solid rgba(17, 24, 39, 0.12);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-md);
  padding: 14px;
  display: grid;
  gap: 12px;
}

.cookie__text {
  color: var(--muted);
  font-weight: 500;
}

.chaty {
  position: fixed;
  right: 50px;
  bottom: 50px;
  z-index: 95;
  pointer-events: none;
}

.chaty-widget {
  pointer-events: auto;
  display: grid;
  justify-items: end;
}

.chaty-channels {
  display: grid;
  justify-items: end;
  gap: 10px;
}

.chaty-channel-list {
  display: grid;
  gap: 10px;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
  will-change: transform, opacity;
}

.chaty[data-open="true"] .chaty-channel-list {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.chaty-cta-button {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  position: relative;
}

.chaty-cta-button::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  border: 1px solid rgba(26, 102, 214, 0.28);
  opacity: 0.55;
  animation: chatyPulse 1.9s ease-in-out infinite;
}

.chaty[data-open="true"] .chaty-cta-button::after {
  opacity: 0;
  animation: none;
}

@keyframes chatyPulse {
  0% {
    transform: scale(0.98);
    opacity: 0.55;
  }
  60% {
    transform: scale(1.08);
    opacity: 0.18;
  }
  100% {
    transform: scale(0.98);
    opacity: 0.55;
  }
}

.chaty-svg {
  display: grid;
  place-items: center;
  border-radius: 999px;
  overflow: hidden;
}

.chaty-channel-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.chaty-channel-btn .chaty-svg {
  width: 52px;
  height: 52px;
  color: #fff;
  box-shadow: var(--shadow-md);
}

.chaty-wa .chaty-svg {
  background: #25d366;
}

.chaty-phone .chaty-svg {
  background: var(--blue-700);
}

.chaty-mail .chaty-svg {
  background: #111827;
}

.chaty-tooltip .on-hover-text {
  position: absolute;
  right: 64px;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  color: #333;
  border-radius: 12px;
  padding: 7px 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
  font-weight: 500;
}

.chaty-tooltip:hover .on-hover-text {
  opacity: 1;
  transform: translateY(-50%) translateX(-2px);
}

@media (prefers-reduced-motion: reduce) {
  .chaty-cta-button::after {
    animation: none;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 520ms cubic-bezier(0.2, 0.9, 0.2, 1), transform 520ms cubic-bezier(0.2, 0.9, 0.2, 1);
  will-change: transform, opacity;
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    transition: none;
  }

  .btn,
  .card,
  .burger,
  .header__phone,
  .to-top {
    transition: none;
  }
}

@media (min-width: 768px) {
  .nav {
    display: inline-flex;
  }

  .burger {
    display: none;
  }

  .header__phone {
    display: inline-flex;
  }

  .hero__inner {
    grid-template-columns: 1.25fr 0.85fr;
    gap: 18px;
  }

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

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

  .contacts {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 16px;
  }

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

  .map iframe {
    height: 420px;
  }

  .contact-reqs__grid {
    grid-template-columns: 1fr;
  }

  .cookie__inner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (min-width: 1200px) {
  .hero {
    padding: 70px 0 26px;
  }

  .section {
    padding: 58px 0;
  }
}
