:root {
  color-scheme: dark;
  --header-height: 64px;
  --header-bg: rgba(23, 24, 25, 0.78);
  --accent: #95c11f;
  --text: rgba(255, 255, 255, 0.86);
  --text-hover: var(--accent);
}

* { box-sizing: border-box; }

::selection {
  color: #10130a;
  background: var(--accent);
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: #f5f5f7;
  background: #090a0a;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.legal-page { color: #1b1c1d; background: #f5f5f7; }
.legal-main { width: min(1240px, calc(100% - 64px)); margin: 0 auto; padding: 150px 0 110px; }
.legal-hero { max-width: 900px; margin-bottom: 70px; }
.legal-hero h1 { margin: 10px 0 18px; font-size: clamp(54px, 7vw, 104px); line-height: .94; letter-spacing: -.065em; }
.legal-hero > p:not(.section-label) { max-width: 760px; margin: 0 0 22px; color: #6f7175; font-size: clamp(18px, 2vw, 26px); line-height: 1.45; }
.legal-hero time { color: #8a8c90; font-size: 13px; }
.legal-layout { display: grid; grid-template-columns: 230px minmax(0, 1fr); align-items: start; gap: 64px; }
.legal-toc { position: sticky; top: 96px; display: grid; gap: 4px; padding: 22px; border: 1px solid #e2e3e5; border-radius: 22px; background: #fff; }
.legal-toc strong { margin: 0 10px 10px; font-size: 13px; }
.legal-toc a { padding: 9px 10px; border-radius: 9px; color: #73757a; font-size: 12px; text-decoration: none; }
.legal-toc a:hover,.legal-toc a:focus-visible { color: #315f22; background: #f0f6e7; }
.legal-content { min-width: 0; padding: 20px 54px; border-radius: 32px; background: #fff; box-shadow: 0 18px 60px rgba(28,31,35,.06); }
.legal-content section { padding: 44px 0; scroll-margin-top: 94px; }
.legal-content section + section { border-top: 1px solid #ececef; }
.legal-content h2 { margin: 0 0 20px; color: #1b1c1d; font-size: clamp(27px, 3vw, 40px); letter-spacing: -.04em; }
.legal-content p,.legal-content li { color: #5e6064; font-size: 16px; line-height: 1.75; }
.legal-content p { margin: 0 0 15px; }
.legal-content ul { display: grid; gap: 9px; margin: 0 0 20px; padding-left: 23px; }
.legal-content a { color: #3e812b; font-weight: 650; }
.legal-table { display: grid; margin: 24px 0; overflow: hidden; border: 1px solid #e2e3e5; border-radius: 18px; }
.legal-table [role="row"] { display: grid; grid-template-columns: .7fr 1.3fr; }
.legal-table [role="row"] + [role="row"] { border-top: 1px solid #e2e3e5; }
.legal-table span,.legal-table strong { padding: 16px 18px; color: #5e6064; font-size: 13px; line-height: 1.55; }
.legal-table strong { color: #1b1c1d; background: #f4f5f6; }
.legal-table :is(span,strong) + :is(span,strong) { border-left: 1px solid #e2e3e5; }
.legal-cookie-button { min-height: 48px; margin: 8px 0 20px; padding: 0 20px; border: 0; border-radius: 12px; color: #fff; background: #234f78; font: inherit; font-size: 14px; font-weight: 700; cursor: pointer; }
.legal-cookie-button:hover { background: #173b5e; }
.cookie-banner { position: fixed; right: 24px; bottom: 24px; z-index: 1000; width: min(560px, calc(100% - 48px)); display: grid; gap: 18px; padding: 24px; border: 1px solid rgba(0,0,0,.1); border-radius: 22px; color: #1b1c1d; background: rgba(255,255,255,.97); box-shadow: 0 24px 70px rgba(0,0,0,.22); backdrop-filter: blur(18px); }
.cookie-banner strong { display: block; margin-bottom: 7px; font-size: 18px; }
.cookie-banner p { margin: 0 0 8px; color: #686a6e; font-size: 13px; line-height: 1.55; }
.cookie-banner a { color: #315f22; font-size: 12px; font-weight: 700; }
.cookie-banner__actions { display: flex; justify-content: flex-end; gap: 9px; }
.cookie-banner button { min-height: 42px; padding: 0 15px; border: 1px solid #d9dade; border-radius: 11px; color: #34363a; background: #fff; font: inherit; font-size: 12px; font-weight: 700; cursor: pointer; }
.cookie-banner .cookie-banner__accept { border-color: #234f78; color: #fff; background: #234f78; }

@media (max-width: 800px) {
  .legal-main { width: min(100% - 32px, 720px); padding-top: 115px; }
  .legal-layout { grid-template-columns: 1fr; gap: 24px; }
  .legal-toc { position: static; grid-template-columns: 1fr 1fr; }
  .legal-toc strong { grid-column: 1 / -1; }
  .legal-content { padding: 8px 24px; border-radius: 24px; }
  .legal-table [role="row"] { grid-template-columns: 1fr; }
  .legal-table :is(span,strong) + :is(span,strong) { border-top: 1px solid #e2e3e5; border-left: 0; }
}

@media (max-width: 520px) {
  .legal-hero { margin-bottom: 42px; }
  .legal-toc { grid-template-columns: 1fr; }
  .legal-toc strong { grid-column: auto; }
  .cookie-banner { right: 12px; bottom: 12px; width: calc(100% - 24px); padding: 19px; }
  .cookie-banner__actions { display: grid; }
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  background: var(--header-bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  transition: background-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(20, 21, 22, 0.67);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.16);
}

.nav {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  width: min(980px, calc(100% - 160px));
  height: 100%;
  margin: 0 auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__links--left { justify-content: flex-end; }
.nav__links--right { justify-content: flex-start; }

.nav a {
  justify-self: center;
  color: var(--text);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: color 160ms ease, opacity 160ms ease;
}

.nav__links a:hover,
.nav__links a:focus-visible { color: var(--text-hover); }

.nav a[aria-current="page"] { color: var(--accent); }

.nav a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 6px;
  border-radius: 2px;
}

.brand {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  height: 44px;
}

.brand img {
  display: block;
  width: auto;
  max-width: 158.4px;
  height: 40.8px;
  object-fit: contain;
}

.brand img[hidden] { display: none; }

.brand__fallback {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.language {
  position: fixed;
  right: max(24px, calc((100vw - 1280px) / 2));
  top: calc(var(--header-height) / 2);
  transform: translateY(-50%);
}

.language summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 54px;
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.78);
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  outline: none;
  font: 500 11px/1 -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
  cursor: pointer;
  transition: color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
  list-style: none;
}

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

.language summary::after {
  content: "";
  width: 5px;
  height: 5px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 160ms ease;
}

.language[open] summary::after { transform: translateY(1px) rotate(225deg); }

.language summary:hover {
  color: var(--accent);
  border-color: rgba(149, 193, 31, 0.65);
}

.language summary:focus-visible {
  color: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(149, 193, 31, 0.2);
}

.language__menu {
  position: absolute;
  top: calc(100% + 9px);
  right: 0;
  display: grid;
  width: 76px;
  padding: 6px;
  background: rgba(38, 41, 39, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.38);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.language__menu button {
  position: relative;
  padding: 9px 8px;
  color: rgba(255, 255, 255, 0.78);
  background: transparent;
  border: 0;
  border-radius: 10px;
  font: 600 13px/1 -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
  cursor: pointer;
}

.language__menu button:hover,
.language__menu button:focus-visible {
  color: #10130a;
  background: var(--accent);
  outline: none;
}

.language__menu button[aria-checked="true"] { color: var(--accent); }

.language__menu button[aria-checked="true"]::before {
  content: "✓";
  position: absolute;
  left: 7px;
}

.language__menu button[aria-checked="true"]:hover,
.language__menu button[aria-checked="true"]:focus-visible { color: #10130a; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.mobile-nav { display: none; }
.mobile-only { display: none; }

.demo-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  min-height: 100vh;
  overflow: hidden;
  padding: calc(var(--header-height) + 40px) 24px 40px;
  background: linear-gradient(145deg, #151d1a, #080909 72%);
}

.demo-hero::before,
.demo-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.demo-hero::before {
  top: -15%;
  left: 50%;
  width: min(68vw, 900px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(68, 119, 98, 0.38) 0%, rgba(46, 87, 70, 0.2) 36%, transparent 70%);
  filter: blur(20px);
  transform: translateX(-50%);
  animation: hero-circle-breathe 18s ease-in-out infinite alternate;
}

.demo-hero::after {
  inset: 0;
  background:
    radial-gradient(circle 80px at 26% 27%, rgba(149, 193, 31, 0.055), transparent 72%),
    radial-gradient(circle 125px at 77% 23%, rgba(93, 139, 119, 0.06), transparent 72%),
    radial-gradient(circle 55px at 71% 72%, rgba(149, 193, 31, 0.04), transparent 72%);
  opacity: 0.6;
  animation: hero-circles-shimmer 22s ease-in-out infinite alternate;
}

.demo-hero p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(40px, 7vw, 88px);
  font-weight: 600;
  letter-spacing: -0.055em;
}

.animated-word {
  display: inline-block;
  color: transparent;
  background-image: linear-gradient(
    90deg,
    var(--accent) 0%,
    var(--accent) 38%,
    #b4d65d 46%,
    rgba(245, 245, 247, 0.96) 60%,
    #f5f5f7 100%
  );
  background-position: 100% 50%;
  background-size: 250% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: word-color-sweep 4.2s cubic-bezier(0.55, 0, 0.22, 1) 0.5s forwards;
  will-change: background-position;
}

@keyframes word-color-sweep {
  from { background-position: 100% 50%; }
  to { background-position: 0 50%; }
}

.categories {
  padding: clamp(12px, 1.6vw, 24px);
  color: #151515;
  background: #fff;
}

.categories__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 1.3vw, 20px);
  max-width: 1800px;
  margin: 0 auto;
}

.category-card {
  position: relative;
  isolation: isolate;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background-color: #f1f1ef;
  background-position: center;
  background-size: cover;
  border-radius: clamp(14px, 1.3vw, 22px);
}

.category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(248, 248, 246, 0.97) 0%, rgba(248, 248, 246, 0.83) 29%, rgba(248, 248, 246, 0) 58%);
}

.category-card__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 46%;
  height: 100%;
  padding: clamp(24px, 3.1vw, 58px);
}

.category-card h2 {
  margin: 0;
  font-size: clamp(24px, 2.15vw, 42px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.category-card p {
  margin: clamp(12px, 1.2vw, 22px) 0 0;
  color: rgba(21, 21, 21, 0.68);
  font-size: clamp(12px, 0.94vw, 17px);
  line-height: 1.35;
}

.category-card strong {
  margin-top: auto;
  color: #3c8a28;
  font-size: clamp(17px, 1.35vw, 25px);
  font-weight: 600;
  letter-spacing: -0.025em;
}

.category-card strong::before {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  margin-bottom: clamp(8px, 0.8vw, 14px);
  background: var(--accent);
}

.category-card a {
  margin-top: clamp(8px, 0.65vw, 12px);
  color: inherit;
  font-size: clamp(12px, 0.84vw, 15px);
  font-weight: 500;
  text-decoration: none;
}

.category-card a span {
  display: inline-block;
  margin-left: 3px;
  font-size: 1.35em;
  line-height: 0;
  transition: transform 180ms ease;
}

.category-card a:hover,
.category-card a:focus-visible { color: #3c8a28; outline: none; }
.category-card a:hover span,
.category-card a:focus-visible span { transform: translateX(4px); }

.category-card--dark { color: #f5f5f7; }
.category-card--dark::before { background: linear-gradient(90deg, rgba(5, 6, 6, 0.98) 0%, rgba(5, 6, 6, 0.78) 31%, transparent 60%); }
.category-card--dark p { color: rgba(255, 255, 255, 0.65); }

.category-card--suits { background-image: url("../images/categories/suits.webp"); }
.category-card--dresses { background-image: url("../images/categories/dresses.webp"); }
.category-card--coats { background-image: url("../images/categories/coats.webp"); }
.category-card--shirts { background-image: url("../images/categories/shirts.webp"); }
.category-card--bedding { background-image: url("../images/categories/bedding.webp"); }
.category-card--rugs { background-image: url("../images/categories/rugs.webp"); }
.category-card--wet-cleaning { background-image: url("../images/categories/wet-cleaning.webp"); }
.category-card--delivery { background-image: url("../images/categories/delivery.webp"); }

.homepage-latest {
  padding: 0 clamp(18px, 3vw, 48px) clamp(64px, 8vw, 120px);
  color: #171819;
  background: #f5f5f7;
}

.homepage-latest[hidden] { display: none; }

.homepage-latest__inner {
  width: min(1320px, 100%);
  margin-inline: auto;
}

.homepage-latest__bar {
  position: relative;
  left: 50%;
  display: grid;
  place-items: center;
  width: 100vw;
  min-height: clamp(120px, 12vw, 180px);
  margin-bottom: clamp(24px, 3vw, 38px);
  margin-left: -50vw;
  padding: clamp(28px, 4vw, 54px) clamp(24px, 3vw, 42px);
  color: #f5f5f7;
  background: #171819;
  text-align: center;
}

.homepage-latest__bar h2 {
  margin: 0;
  font-size: clamp(23px, 2.6vw, 38px);
  font-weight: 650;
  line-height: 1.05;
  letter-spacing: -.04em;
  text-align: center;
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: #171819;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer__inner {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(52px, 6vw, 86px) 0 24px;
}

.footer__contacts {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1.2fr 1.35fr;
  gap: clamp(28px, 4vw, 72px);
  padding-bottom: clamp(42px, 5vw, 68px);
}

.footer-contact {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.footer-contact svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  color: var(--accent);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-contact p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.footer-contact strong {
  color: rgba(255, 255, 255, 0.94);
  font-weight: 600;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
  transition: color 160ms ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--accent);
  outline: none;
}

.footer__legal-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 12px;
}

.footer__legal-links span { color: rgba(255, 255, 255, 0.22); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
}

.footer__bottom p { margin: 0; }

.assortment-page {
  color: #171819;
  background: #f5f5f7;
}

.price-list {
  min-height: 100vh;
  padding: calc(var(--header-height) + clamp(52px, 7vw, 100px)) clamp(18px, 3vw, 48px) clamp(72px, 8vw, 120px);
}

.price-hero,
.services,
.services-empty {
  width: min(1320px, 100%);
  margin-inline: auto;
}

.price-hero {
  margin-bottom: clamp(48px, 6vw, 78px);
  text-align: center;
}

.price-hero__eyebrow {
  margin: 0 0 10px;
  color: #3c8a28;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-hero h1 {
  margin: 0;
  color: #111;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.price-hero > p:not(.price-hero__eyebrow):not(.search-summary) {
  margin: 18px 0 32px;
  color: rgba(23, 24, 25, 0.58);
  font-size: clamp(17px, 1.5vw, 21px);
}

.service-search {
  position: relative;
  display: flex;
  align-items: center;
  width: min(640px, 100%);
  margin: 0 auto;
  color: rgba(23, 24, 25, 0.42);
}

.service-search svg {
  position: absolute;
  left: 20px;
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.service-search input {
  width: 100%;
  height: 58px;
  padding: 0 54px;
  color: #171819;
  background: #fff;
  border: 1px solid rgba(23, 24, 25, 0.1);
  border-radius: 999px;
  outline: none;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.055);
  font: 400 16px/1 -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.service-search input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(149, 193, 31, 0.14), 0 10px 34px rgba(0, 0, 0, 0.07);
}

.service-search button {
  position: absolute;
  right: 13px;
  width: 34px;
  height: 34px;
  color: rgba(23, 24, 25, 0.55);
  background: rgba(23, 24, 25, 0.06);
  border: 0;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
}

.service-search button:hover,
.service-search button:focus-visible { color: #10130a; background: var(--accent); outline: none; }

.search-summary {
  min-height: 18px;
  margin: 13px 0 0;
  color: rgba(23, 24, 25, 0.42);
  font-size: 12px;
}

.service-group + .service-group { margin-top: clamp(50px, 6vw, 82px); }

.service-group > h2 {
  margin: 0 0 20px;
  color: #171819;
  font-size: clamp(22px, 2.3vw, 32px);
  letter-spacing: -0.04em;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.service-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 3 / 2;
  padding: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(23, 24, 25, 0.07);
  border-radius: 18px;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.025);
  transition: transform 220ms cubic-bezier(0.2, 0.7, 0.2, 1), background-color 260ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.service-card:hover {
  z-index: 1;
  transform: translateY(-4px) scale(1.012);
  background-color: #f7faef;
  border-color: rgba(149, 193, 31, 0.34);
  box-shadow: 0 14px 32px rgba(21, 30, 17, 0.1);
}

.service-card__text {
  width: 100%;
  min-width: 0;
  text-align: center;
}

.service-card h3 {
  margin: 0 0 7px;
  color: #171819;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.25;
}

.service-card strong {
  color: #3c8a28;
  font-size: 17px;
  font-weight: 600;
}

.currency-unit {
  display: inline-block;
  margin-left: 0.22em;
  font-size: 0.7em;
  font-weight: inherit;
  letter-spacing: 0;
  line-height: 1;
  vertical-align: 0.08em;
}

.service-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 4px 7px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  background: #1d1d1f;
}

.service-badge--new { color: #10130a; background: var(--accent); }
.service-badge--promo { color: #fff; background: #3c8a28; }

.services-empty {
  padding: 80px 20px;
  color: rgba(23, 24, 25, 0.48);
  text-align: center;
  font-size: 18px;
}

.guide-page {
  color: #171819;
  background: #f5f5f7;
}

.guide {
  min-height: 100vh;
  padding: calc(var(--header-height) + clamp(54px, 7vw, 100px)) clamp(18px, 3vw, 48px) clamp(80px, 9vw, 132px);
}

.guide__header,
.guide__layout {
  width: min(1320px, 100%);
  margin-inline: auto;
}

.guide__header {
  margin-bottom: clamp(54px, 7vw, 90px);
  text-align: center;
}

.guide__header h1 {
  margin: 0;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.guide__header p {
  margin: 22px 0 0;
  color: rgba(23, 24, 25, 0.56);
  font-size: clamp(16px, 1.5vw, 21px);
}

.guide__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: clamp(42px, 6vw, 88px);
}

.articles-column > h2,
.latest-column > h2 {
  margin: 0 0 24px;
  font-size: 22px;
  letter-spacing: -0.035em;
}

.articles-list { display: grid; gap: 18px; }

.article-search {
  position: relative;
  display: flex;
  align-items: center;
  width: min(680px, 100%);
  margin: 0 auto;
  color: rgba(23, 24, 25, 0.42);
}

.article-search svg {
  position: absolute;
  left: 20px;
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.article-search input {
  width: 100%;
  height: 58px;
  padding: 0 54px;
  color: #171819;
  background: #fff;
  border: 1px solid rgba(23, 24, 25, 0.1);
  border-radius: 999px;
  outline: none;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.055);
  font: 400 16px/1 -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.article-search input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(149, 193, 31, 0.14), 0 10px 34px rgba(0, 0, 0, 0.07);
}

.article-search button {
  position: absolute;
  right: 13px;
  width: 34px;
  height: 34px;
  color: rgba(23, 24, 25, 0.55);
  background: rgba(23, 24, 25, 0.06);
  border: 0;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
}

.article-search button:hover,
.article-search button:focus-visible { color: #10130a; background: var(--accent); outline: none; }

.article-search__summary {
  min-height: 18px;
  margin: 12px 0 24px;
  color: rgba(23, 24, 25, 0.42);
  text-align: center;
  font-size: 12px;
}

.article-card {
  display: grid;
  grid-template-columns: minmax(210px, 35%) minmax(0, 1fr);
  min-height: 260px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(23, 24, 25, 0.07);
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.025);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.article-card:hover {
  transform: translateY(-3px);
  border-color: rgba(149, 193, 31, 0.3);
  box-shadow: 0 14px 34px rgba(21, 30, 17, 0.08);
}

.article-card__image {
  display: block;
  min-height: 100%;
  overflow: hidden;
  background: #e8e9e6;
}

.article-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.article-card:hover .article-card__image img { transform: scale(1.035); }

.article-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(22px, 2.5vw, 36px);
}

.article-card time {
  color: #548036;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.025em;
}

.article-card h3 {
  margin: 10px 0 0;
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.article-card h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 160ms ease;
}

.article-card h3 a:hover,
.article-card h3 a:focus-visible { color: #3c8a28; outline: none; }

.article-card p {
  margin: 13px 0 0;
  color: rgba(23, 24, 25, 0.58);
  font-size: 14px;
  line-height: 1.5;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

.article-card__more {
  align-self: flex-start;
  margin-top: 18px;
  color: #3c8a28;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.article-card__more span {
  display: inline-block;
  margin-left: 3px;
  font-size: 1.3em;
  line-height: 0;
  transition: transform 160ms ease;
}

.article-card__more:hover,
.article-card__more:focus-visible { color: #2e6d1d; outline: none; }
.article-card__more:hover span,
.article-card__more:focus-visible span { transform: translateX(4px); }

.load-more {
  display: block;
  min-width: 190px;
  margin: 34px auto 0;
  padding: 14px 24px;
  color: #17200b;
  background: var(--accent);
  border: 0;
  border-radius: 999px;
  font: 600 14px/1 -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.load-more:hover,
.load-more:focus-visible {
  transform: translateY(-2px);
  background: #a6d027;
  box-shadow: 0 10px 24px rgba(88, 116, 18, 0.2);
  outline: none;
}

.articles-error { color: rgba(23, 24, 25, 0.58); }

.article-page { color: #171819; background: #f5f5f7; }

.article-view {
  min-height: 100vh;
  padding: calc(var(--header-height) + clamp(44px, 6vw, 88px)) 20px clamp(80px, 9vw, 132px);
}

.article-content {
  width: min(980px, 100%);
  margin: 0 auto;
}

.article-content__back {
  display: inline-block;
  margin-bottom: clamp(38px, 5vw, 66px);
  color: #3c8a28;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.article-content header { width: min(820px, 100%); margin: 0 auto; text-align: center; }
.article-content time { color: #548036; font-size: 12px; font-weight: 600; }

.article-content h1 {
  margin: 16px 0 0;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.article-content__lead {
  margin: 24px auto 0;
  color: rgba(23, 24, 25, 0.58);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
}

.article-content__hero {
  display: block;
  width: 100%;
  height: min(calc((100vw - 40px) / 3), 327px);
  margin: clamp(44px, 6vw, 74px) 0;
  object-fit: cover;
  border-radius: clamp(18px, 2vw, 28px);
}

.article-content__copy { width: min(720px, 100%); margin: 0 auto; }
.article-content__copy p { margin: 0 0 24px; color: rgba(23, 24, 25, 0.72); font-size: 18px; line-height: 1.75; }
.article-content__inline-image { margin: 42px 0; }
.article-content__inline-image img { width: 100%; display: block; border-radius: 18px; }
.article-content__copy h2 { margin: 52px 0 18px; font-size: clamp(28px, 3vw, 38px); letter-spacing: -0.045em; }

.article-content__tip {
  margin-top: 48px;
  padding: 28px;
  background: rgba(149, 193, 31, 0.11);
  border-left: 3px solid var(--accent);
  border-radius: 0 18px 18px 0;
}

.article-content__tip strong { display: block; margin-bottom: 8px; color: #3c8a28; }
.article-content__tip p { margin: 0; font-size: 16px; }
.article-content--error { padding: 80px 0; text-align: center; }

.contact-page { color: #171819; background: #f5f5f7; }
.contact-main { padding: calc(var(--header-height) + clamp(50px, 7vw, 100px)) clamp(18px, 3vw, 48px) clamp(80px, 8vw, 120px); }
.contact-main > section { width: min(1320px, 100%); margin-inline: auto; }
.section-label { margin: 0 0 12px; color: #4d7d30; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }

.contact-hero { display: flex; align-items: flex-end; justify-content: space-between; gap: 50px; padding-bottom: clamp(60px, 8vw, 110px); }
.contact-hero h1 { margin: 0; font-size: clamp(58px, 9vw, 126px); line-height: .88; letter-spacing: -.075em; }
.contact-hero > div:first-child p { max-width: 590px; margin: 30px 0 0; color: rgba(23,24,25,.56); font-size: clamp(18px, 2vw, 26px); line-height: 1.4; }
.contact-hero__quick { display: grid; flex: 0 0 auto; gap: 10px; }
.contact-hero__quick a { min-width: 310px; padding: 21px 24px; color: #fff; background: #171819; border: 0; border-radius: 16px; box-shadow: 0 12px 30px rgba(0,0,0,.1); text-decoration: none; transition: transform 180ms ease, background-color 180ms ease; }
.contact-hero__quick a:hover { transform: translateX(-4px); background: #253017; }
.contact-hero__quick span { display: block; margin-bottom: 8px; color: var(--accent); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; }
.contact-hero__quick strong { font-size: 18px; line-height: 1.25; }

.contact-map-section { display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(390px, .82fr); overflow: hidden; background: #fff; border-radius: 28px; box-shadow: 0 20px 70px rgba(0,0,0,.07); }
.contact-map-card { position: relative; min-height: 610px; overflow: hidden; background: #dce2d8; }
.contact-map-card iframe { width: 100%; height: 100%; border: 0; filter: saturate(.75) contrast(.94); }
.map-pin-card { position: absolute; left: 24px; bottom: 24px; display: flex; align-items: flex-start; gap: 12px; padding: 17px 20px; background: rgba(23,24,25,.9); border: 1px solid rgba(255,255,255,.15); border-radius: 16px; color: #fff; backdrop-filter: blur(18px); }
.map-pin-card__dot { width: 11px; height: 11px; margin-top: 5px; background: var(--accent); border-radius: 50%; box-shadow: 0 0 0 6px rgba(149,193,31,.16); }
.map-pin-card p { margin: 0; font-size: 13px; line-height: 1.55; }
.location-panel { padding: clamp(36px, 5vw, 72px); }
.location-panel h2,.info-card h2,.company-intro h2,.career-copy h2,.form-copy h2 { margin: 0; font-size: clamp(32px, 3.5vw, 52px); line-height: 1; letter-spacing: -.055em; }
.location-panel > p:not(.section-label):not(.location-panel__lead) { margin: 22px 0 0; color: rgba(23,24,25,.58); font-size: 17px; line-height: 1.6; }
/* Contact location lead: reduced by 50%, release 20260825-4-font-half. */
.location-panel > p.location-panel__lead { margin: 0; max-width: 880px; color: #000; font-size: clamp(18px, 2.1vw, 32px); font-weight: 700; line-height: 1.12; letter-spacing: -.035em; }
.location-panel__nowrap { white-space: nowrap; }
.location-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.contact-button { display: inline-flex; align-items: center; justify-content: center; padding: 13px 20px; color: #171819; background: #eef0eb; border: 0; border-radius: 999px; font: 600 13px/1 -apple-system,BlinkMacSystemFont,"SF Pro Text",sans-serif; text-decoration: none; cursor: pointer; transition: transform 180ms ease, background-color 180ms ease; }
.contact-button:hover,.contact-button:focus-visible { transform: translateY(-2px); background: #e1e8d5; outline: none; }
.contact-button--primary { color: #17200b; background: var(--accent); }
.contact-button--primary:hover { background: #a6d027; }
.travel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 42px; }
.travel-grid article { padding: 20px; background: #f5f5f7; border-radius: 16px; }
.travel-grid svg,.payment-visuals svg { width: 28px; height: 28px; fill: none; stroke: #4d7d30; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.travel-grid h3 { margin: 14px 0 7px; font-size: 15px; }
.travel-grid p { margin: 0; color: rgba(23,24,25,.54); font-size: 12px; line-height: 1.5; }

.contact-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: clamp(80px, 10vw, 150px) !important; }
.info-card { min-height: 450px; padding: clamp(34px, 5vw, 66px); border-radius: 28px; }
.info-card--hours { color: #fff; background: #171819; }
.info-card--hours .section-label { color: var(--accent); }
.info-card dl { margin: 48px 0 0; }
.info-card dl div { display: flex; justify-content: space-between; gap: 20px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.info-card dt { color: rgba(255,255,255,.55); }
.info-card dd { margin: 0; font-weight: 600; }
.info-card--payment { background: #e8efd9; }
.payment-visuals { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 48px; }
.payment-visuals span { display: flex; align-items: center; gap: 14px; padding: 18px; background: rgba(255,255,255,.67); border-radius: 16px; font-size: 14px; font-weight: 600; }
.verification-note { margin: 22px 0 0; color: rgba(23,24,25,.48); font-size: 11px; line-height: 1.5; }

.company-section { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(50px, 8vw, 120px); margin-top: clamp(80px, 10vw, 150px) !important; }
.company-intro { position: sticky; top: calc(var(--header-height) + 32px); align-self: start; }
.company-intro > p:last-child { margin: 24px 0 0; color: rgba(23,24,25,.58); line-height: 1.6; }
.company-data { align-self: start; margin: 0; background: #fff; border-radius: 24px; overflow: hidden; }
.company-data div { display: grid; grid-template-columns: 190px 1fr; align-items: center; gap: 28px; min-height: 0; padding: 13px 34px; }
.company-data div:first-child { padding-top: 24px; }
.company-data div:last-child { padding-bottom: 24px; }
.company-data div:last-child { border: 0; }
.company-data dt { color: rgba(23,24,25,.46); font-size: 12px; }
.company-data dd { margin: 0; font-size: 14px; font-weight: 600; }
.company-data dd a { color: #3c8a28; text-decoration: none; }
.company-data dd a:hover,.company-data dd a:focus-visible { color: #2e6d1d; outline: none; }
.bank-name { display: block; margin-bottom: 5px; color: rgba(23,24,25,.46); font-size: 11px; font-weight: 500; }

.career-section { position: relative; display: grid; grid-template-columns: 1fr 1fr; min-height: 520px; margin-top: clamp(80px, 10vw, 150px) !important; overflow: hidden; color: #fff; background: #111312; border-radius: 28px; }
.career-art { position: relative; min-height: 420px; background: radial-gradient(circle at 45% 45%,rgba(149,193,31,.2),transparent 42%); }
.career-art span { position: absolute; border: 1px solid rgba(149,193,31,.3); border-radius: 50%; animation: career-orbit 12s ease-in-out infinite alternate; }
.career-art span:nth-child(1){width:280px;height:280px;left:13%;top:20%;}.career-art span:nth-child(2){width:170px;height:170px;left:44%;top:7%;animation-delay:-4s}.career-art span:nth-child(3){width:95px;height:95px;left:57%;top:58%;animation-delay:-8s}
@keyframes career-orbit { to { transform: translate3d(12px,-16px,0) scale(1.06); border-color: rgba(149,193,31,.55); } }
.career-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(40px, 6vw, 82px); }
.career-copy .section-label { color: var(--accent); }
.career-copy > p:not(.section-label) { margin: 24px 0 30px; color: rgba(255,255,255,.62); line-height: 1.65; }
.career-copy button.contact-button { font: inherit; cursor: pointer; }
.career-modal { width: min(680px, calc(100% - 32px)); max-height: calc(100dvh - 32px); padding: 0; overflow: auto; border: 0; border-radius: 24px; color: #171819; background: transparent; box-shadow: 0 30px 90px rgba(0,0,0,.28); }
.career-modal::backdrop { background: rgba(8,10,10,.62); backdrop-filter: blur(7px); }
.career-modal__panel { position: relative; padding: clamp(26px,5vw,48px); background: #f7f7f8; }
.career-modal__panel > h2 { margin: 8px 0 10px; font-size: clamp(30px,5vw,48px); letter-spacing: -.045em; }
.career-modal__panel > p:not(.section-label) { margin: 0 0 26px; color: rgba(23,24,25,.58); }
.career-modal__close { position: absolute; top: 18px; right: 18px; width: 42px; height: 42px; display: grid; place-items: center; padding: 0; border: 0; border-radius: 12px; color: #173b5e; background: rgba(23,59,94,.08); cursor: pointer; }
.career-modal__close svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }
.career-application-form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.career-application-form label { display: grid; gap: 7px; color: rgba(23,24,25,.58); font-size: 12px; font-weight: 600; }
.career-application-form label > span { font-weight: 450; }
.career-application-form input,.career-application-form textarea { width: 100%; padding: 13px 15px; border: 1px solid rgba(23,24,25,.12); border-radius: 12px; color: #171819; background: #fff; font: inherit; }
.career-application-form textarea,.career-application-form label:nth-child(n+4),.career-application-form > button,.career-application-form > .form-status { grid-column: 1 / -1; }
.career-application-form input[type="file"] { padding: 9px; }
.career-application-form__consent { display: flex !important; grid-column: 1 / -1; align-items: flex-start; }
.career-application-form__consent input { width: 18px; height: 18px; margin: 0; }
.form-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; pointer-events: none !important; }
.form-status:empty { display: none; }
.form-status:not(:empty) { min-height: 58px; display: flex; align-items: center; gap: 12px; margin: 4px 0 0; padding: 14px 17px; border: 1px solid transparent; border-radius: 14px; font-size: 13px; font-weight: 600; line-height: 1.45; animation: form-status-in .22s ease-out; }
.form-status:not(:empty)::before { width: 26px; height: 26px; flex: 0 0 26px; display: grid; place-items: center; border-radius: 50%; font-size: 15px; font-weight: 800; }
.form-status__text { flex: 1; }
.form-status__close { width: 32px; height: 32px; flex: 0 0 32px; display: grid; place-items: center; padding: 0; border: 0; border-radius: 9px; color: currentColor; background: rgba(255,255,255,.58); font: 500 23px/1 -apple-system,BlinkMacSystemFont,"SF Pro Text",sans-serif; cursor: pointer; transition: background .18s ease,transform .18s ease; }
.form-status__close:hover { background: rgba(255,255,255,.92); transform: scale(1.05); }
.form-status__close:focus-visible { outline: 2px solid currentColor; outline-offset: 2px; }
.form-status--success { color: #285d20; border-color: rgba(60,138,40,.18) !important; background: #edf8e9; box-shadow: 0 10px 28px rgba(60,138,40,.1); }
.form-status--success::before { content: "✓"; color: #fff; background: #3c8a28; }
.form-status--error { color: #9e2922; border-color: rgba(197,43,36,.16) !important; background: #fff0ef; }
.form-status--error::before { content: "!"; color: #fff; background: #c52b24; }
.form-status--sending { color: #173b5e; border-color: rgba(23,59,94,.14) !important; background: #eef4f9; }
.form-status--sending::before { content: ""; width: 14px !important; height: 14px !important; margin: 4px; border: 2px solid rgba(23,59,94,.22); border-top-color: #173b5e; background: transparent; animation: form-status-spin .7s linear infinite; }
@keyframes form-status-in { from { opacity: 0; transform: translateY(-5px); } }
@keyframes form-status-spin { to { transform: rotate(360deg); } }
@media (max-width: 620px) { .career-application-form { grid-template-columns: 1fr; }.career-application-form > label { grid-column: 1; }.career-modal__panel { padding-top: 58px; } }

.contact-form-section { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(50px, 8vw, 120px); margin-top: clamp(80px, 10vw, 150px) !important; }
.form-copy > p:not(.section-label) { margin: 24px 0 0; color: rgba(23,24,25,.58); line-height: 1.6; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; padding: clamp(28px, 4vw, 54px); background: #fff; border-radius: 24px; }
.contact-form label { display: grid; gap: 8px; color: rgba(23,24,25,.66); font-size: 12px; font-weight: 600; }.contact-form label > span { font-weight: 400; }.contact-form input,.contact-form select,.contact-form textarea { width: 100%; padding: 13px 14px; color: #171819; background: #f5f5f7; border: 1px solid transparent; border-radius: 11px; outline: none; font: 400 14px/1.4 -apple-system,BlinkMacSystemFont,"SF Pro Text",sans-serif; }.contact-form input:focus,.contact-form select:focus,.contact-form textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(149,193,31,.13); }.contact-form__message,.contact-form__consent,.contact-form .contact-button,.form-status { grid-column: 1 / -1; }.contact-form textarea { resize: vertical; }.contact-form__consent { display: flex !important; grid-template-columns: 18px 1fr; align-items: start; }.contact-form__consent input { width: 17px; height: 17px; accent-color: var(--accent); }.contact-form .contact-button { justify-self: start; }.form-status { margin: 0; color: #4d7d30; font-size: 12px; line-height: 1.5; }

@keyframes hero-circle-breathe {
  0% { opacity: 0.76; transform: translate3d(-50%, -6px, 0) scale(0.97); filter: blur(24px) brightness(0.94); }
  50% { opacity: 0.9; transform: translate3d(-49%, 5px, 0) scale(1.015); filter: blur(19px) brightness(1.04); }
  100% { opacity: 0.8; transform: translate3d(-51%, 12px, 0) scale(1.035); filter: blur(22px) brightness(0.98); }
}

@keyframes hero-circles-shimmer {
  0% { opacity: 0.38; transform: translate3d(-5px, 3px, 0) scale(0.995); }
  50% { opacity: 0.64; transform: translate3d(4px, -4px, 0) scale(1.008); }
  100% { opacity: 0.46; transform: translate3d(7px, 5px, 0) scale(1.015); }
}

@media (max-width: 1100px) {
  .service-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .contact-hero { align-items: flex-start; flex-direction: column; }
  .contact-hero__quick { width: 100%; grid-template-columns: 1fr 1fr; }
  .contact-hero__quick a { min-width: 0; }
  .contact-map-section { grid-template-columns: 1fr; }
  .contact-map-card { min-height: 430px; }
  .contact-info-grid,.company-section,.career-section,.contact-form-section { grid-template-columns: 1fr; }
  .company-intro { position: static; }
  .career-art { min-height: 300px; }
}

@media (max-width: 820px) {
  :root { --header-height: 58px; }
  .nav,
  .nav__links { gap: 18px; }
  .nav { width: calc(100% - 104px); }
  .nav a { font-size: 11px; }
  .brand img { max-width: 108px; height: 33.6px; }
  .language { right: 12px; }
  .service-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .guide__layout { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .categories { padding: 10px; }
  .categories__grid { grid-template-columns: 1fr; gap: 10px; }
  .category-card { border-radius: 14px; }
  .category-card__content { width: 54%; padding: clamp(18px, 6vw, 28px); }
  .category-card h2 { font-size: clamp(21px, 6.4vw, 29px); }
  .category-card p { font-size: clamp(10px, 3vw, 13px); }
  .category-card strong { font-size: clamp(15px, 4.5vw, 20px); }
  .category-card a { font-size: clamp(10px, 3.1vw, 13px); }

  .footer__inner { width: calc(100% - 40px); padding-top: 48px; }
  .footer__contacts { grid-template-columns: 1fr; gap: 28px; padding-bottom: 42px; }
  .footer-contact p { font-size: 13px; }
  .footer__legal-links { justify-content: flex-start; flex-direction: column; gap: 12px; }
  .footer__legal-links span { display: none; }
  .footer__bottom { align-items: flex-start; flex-direction: column; gap: 10px; line-height: 1.5; }
}

@media (max-width: 620px) {
  .nav { display: none; }

  .mobile-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    padding: 0 18px;
  }

  .mobile-nav__brand {
    position: relative;
    z-index: 2;
    display: block;
    height: 17px;
  }

  .mobile-nav__brand img {
    display: block;
    width: auto;
    height: 17px;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    width: 42px;
    height: 42px;
    padding: 0;
    color: #fff;
    background: transparent;
    border: 0;
    cursor: pointer;
  }

  .menu-toggle span {
    position: absolute;
    left: 9px;
    width: 24px;
    height: 1.5px;
    background: currentColor;
    border-radius: 2px;
    transition: top 280ms ease, transform 280ms ease, color 180ms ease;
  }

  .menu-toggle span:first-child { top: 16px; }
  .menu-toggle span:last-child { top: 25px; }
  .menu-toggle:hover,
  .menu-toggle:focus-visible { color: var(--accent); outline: none; }
  .menu-toggle[aria-expanded="true"] span:first-child { top: 21px; transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { top: 21px; transform: rotate(-45deg); }

  .mobile-menu {
    position: absolute;
    z-index: 1;
    top: 100%;
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    height: calc(100dvh - var(--header-height));
    padding: clamp(38px, 8vh, 72px) 26px 32px;
    overflow-y: auto;
    background: #0d0f0e;
    -webkit-backdrop-filter: saturate(160%) blur(24px);
    backdrop-filter: saturate(160%) blur(24px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 260ms ease, visibility 260ms ease, transform 260ms ease;
  }

  .mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mobile-menu__links {
    display: grid;
    gap: 8px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .mobile-menu__links a {
    padding: 6px 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(30px, 9vw, 42px);
    font-weight: 600;
    letter-spacing: -0.045em;
    text-decoration: none;
    transition: color 180ms ease, transform 180ms ease;
  }

  .mobile-menu__links a:hover,
  .mobile-menu__links a:focus-visible {
    color: var(--accent);
    outline: none;
    transform: translateX(5px);
  }

  .mobile-languages {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding-top: 27px;
  }

  .mobile-languages button {
    min-width: 44px;
    min-height: 34px;
    padding: 6px 0;
    color: rgba(255, 255, 255, 0.52);
    background: none;
    border: 0;
    border-radius: 0;
    text-align: left;
    font: 650 16px/1.35 -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
    letter-spacing: .04em;
    cursor: pointer;
    transition: color 180ms ease, transform 180ms ease;
  }

  .mobile-languages button:hover,
  .mobile-languages button:focus-visible,
  .mobile-languages button[aria-pressed="true"] {
    color: var(--accent);
    outline: none;
  }

  .mobile-languages button:hover,
  .mobile-languages button:focus-visible {
    transform: translateX(3px);
  }

  body.menu-open { overflow: hidden; }

  .mobile-only { display: block; }

  .price-list { padding-inline: 12px; }
  .price-hero { margin-bottom: 42px; }
  .price-hero h1 { font-size: 43px; }
  .service-search input { height: 54px; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
  .service-card { padding: 12px; border-radius: 15px; }
  .service-group > h2 { margin-left: 4px; }

  .guide { padding-inline: 12px; }
  .guide__header { margin-bottom: 46px; }
  .guide__header h1 { font-size: 52px; }
  .article-card { grid-template-columns: 1fr; }
  .article-card__image { aspect-ratio: 3 / 2; }
  .article-card__body { padding: 22px; }
  .article-card h3 { font-size: 23px; }

  .contact-main { padding-inline: 10px; }
  .contact-hero { padding-inline: 10px; }
  .contact-hero h1 { font-size: 55px; }
  .contact-hero__quick { grid-template-columns: 1fr; }
  .contact-map-section,.info-card,.career-section { border-radius: 20px; }
  .contact-map-card { min-height: 360px; }
  .map-pin-card { right: 14px; left: 14px; bottom: 14px; }
  .location-panel { padding: 30px 22px; }
  .travel-grid,.contact-info-grid,.payment-visuals { grid-template-columns: 1fr; }
  .company-section,.contact-form-section { padding-inline: 8px; }
  .company-data div { grid-template-columns: 1fr; gap: 4px; padding: 13px 24px; }
  .company-data div:first-child { padding-top: 22px; }
  .company-data div:last-child { padding-bottom: 22px; }
  .career-copy { padding: 34px 24px 44px; }
  .contact-form { grid-template-columns: 1fr; padding: 24px 18px; }
  .contact-form label { grid-column: 1; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
  .demo-hero::before,
  .demo-hero::after,
  .animated-word { animation: none; }

  .animated-word { background-position: 0 50%; }
}
