/**
 * GW Fitness Kupchino — native site chrome + homepage
 * Matches production gwkupchino.ru (Arial, white/black chrome; red only in promo banner).
 */

:root {
  --gwk-bg: #ffffff;
  --gwk-bg-soft: #f5f5f5;
  --gwk-bg-mute: #ebebeb;
  --gwk-ink: #111111;
  --gwk-ink-soft: #262626;
  --gwk-muted: #666666;
  --gwk-line: #e8e8e8;
  --gwk-accent: #c42a45;
  --gwk-accent-hover: #a82239;
  --gwk-dark: #111111;
  --gwk-header-bar: #393939;
  --gwk-font: Arial, Helvetica, sans-serif;
  --gwk-max: 1200px;
  --gwk-pad: 20px;
  --gwk-header-h: 88px;
}

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

html {
  scroll-behavior: smooth;
}

body.gwk-site {
  margin: 0;
  min-height: 100vh;
  background: var(--gwk-bg);
  color: var(--gwk-ink);
  font-family: var(--gwk-font);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* Do not target Tilda Zero header imgs — max-width/height:auto breaks artboards. */
body.gwk-site .gwk-site-main img,
body.gwk-site .gwk-site-footer img,
body.gwk-site:not(.gwk-site--tilda-header) img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Override global img height:auto so covers fill their boxes. */
body.gwk-site .gwk-hero__poster,
body.gwk-site .gwk-feature__card img,
body.gwk-site .gwk-cat__media img,
body.gwk-site .gwk-family__media img,
body.gwk-site .gwk-perks-panel__bg img,
body.gwk-site .gwk-trainers__media img,
body.gwk-site .gwk-trainer-page__portrait img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  display: block;
}

body.gwk-site .gwk-trainers__media img,
body.gwk-site .gwk-trainer-page__portrait img {
  object-position: top center;
}

body.gwk-site a {
  color: inherit;
  text-decoration: none;
}

/* Anchors inherit ink — force white on dark CTAs (higher specificity than body a). */
body.gwk-site a.gwk-site-btn--primary,
body.gwk-site a.gwk-site-btn--primary:hover,
body.gwk-site a.gwk-site-btn--primary:focus,
body.gwk-site a.gwk-site-btn--contact,
body.gwk-site a.gwk-site-btn--contact:hover,
body.gwk-site a.gwk-site-btn--contact:focus,
body.gwk-site a.gwk-home-offers__cta,
body.gwk-site a.gwk-home-offers__cta:hover,
body.gwk-site .gwk-lead-form__submit,
body.gwk-site button.gwk-site-btn--primary,
body.gwk-site button.gwk-site-btn--contact {
  color: #ffffff !important;
}

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

.gwk-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100001;
  padding: 12px 16px;
  background: #fff;
  color: #111;
}

.gwk-skip:focus {
  left: 12px;
  top: 12px;
}

/* Tilda production header on native homepage (parity with inner pages).
   Keep overrides minimal — position/z-index/box-sizing on #t-header broke
   Zero Fixed (header flashed then disappeared on desktop). */
body.gwk-site--tilda-header {
  margin: 0;
}
body.gwk-site--tilda-header #t-header img,
body.gwk-site--tilda-header #rec838050119 img {
  max-width: none !important;
  max-height: none !important;
}
body.gwk-site--tilda-header #t-header a {
  text-decoration: none;
}

/*
 * Fixed chrome = promo strip (~50px) + white bar (70/56/46px).
 * Tilda spacer only covers the white bar, so native hero needs extra top
 * offset while the promo record is visible.
 */
body.gwk-site--tilda-header:not(.gwk-promo-banner-hidden) .gwk-hero {
  padding-top: 90px;
}
@media screen and (max-width: 1199px) {
  body.gwk-site--tilda-header:not(.gwk-promo-banner-hidden) .gwk-hero {
    padding-top: 96px;
  }
}
@media screen and (max-width: 959px) {
  body.gwk-site--tilda-header:not(.gwk-promo-banner-hidden) .gwk-hero {
    padding-top: 100px;
  }
}
@media screen and (max-width: 479px) {
  body.gwk-site--tilda-header:not(.gwk-promo-banner-hidden) .gwk-hero {
    padding-top: 92px;
  }
}

/* ── Site header (white, production chrome) ───────────── */

.gwk-site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: #fff;
  color: var(--gwk-ink-soft);
  border-bottom: 1px solid var(--gwk-line);
}

.gwk-site-header__inner {
  max-width: var(--gwk-max);
  margin: 0 auto;
  padding: 12px var(--gwk-pad);
  min-height: var(--gwk-header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px 24px;
}

.gwk-site-header__brand-block {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.gwk-site-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  color: var(--gwk-ink-soft);
}

.gwk-site-brand__logo {
  width: 68px;
  height: 40px;
  object-fit: contain;
}

.gwk-site-brand__text {
  display: none;
}

.gwk-site-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.gwk-site-meta__phone {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--gwk-ink);
  white-space: nowrap;
}

.gwk-site-meta__phone:hover {
  color: #141414;
  text-decoration: underline;
}

.gwk-site-meta__addr {
  font-size: 12px;
  line-height: 1.2;
  color: var(--gwk-muted);
}

.gwk-site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 16px;
}

.gwk-site-nav a {
  font-size: 13px;
  font-weight: 400;
  color: var(--gwk-ink-soft);
  white-space: nowrap;
}

.gwk-site-nav a:hover {
  color: #141414;
  text-decoration: underline;
}

.gwk-site-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.gwk-site-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 40px;
  padding: 0 16px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease, opacity 0.15s ease;
}

.gwk-site-btn--offers {
  background: #efefef;
  color: #141414;
  min-width: 0;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  gap: 6px;
}

.gwk-site-btn--offers:hover {
  background: #e0e0e0;
  color: #141414;
}

.gwk-site-btn--offers .gwk-site-btn__fire {
  font-size: 14px;
  line-height: 1;
}

.gwk-site-btn--contact {
  background: var(--gwk-dark);
  color: #ffffff !important;
  min-width: 150px;
  border-radius: 14px;
  text-align: center;
}

.gwk-site-btn--contact:hover {
  background: #262626;
  color: #fff;
}

.gwk-site-btn--primary {
  background-image: linear-gradient(
    0.401turn,
    rgba(38, 38, 38, 1) 0%,
    rgba(38, 38, 38, 1) 41%,
    rgba(74, 74, 74, 1) 59%,
    rgba(38, 38, 38, 1) 77%,
    rgba(38, 38, 38, 1) 100%
  );
  background-color: #262626;
  color: #ffffff !important;
  min-height: 72px;
  min-width: 280px;
  padding: 0 32px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 22px;
  box-shadow: 9px 12px 10px 0 rgba(0, 0, 0, 0.1);
  text-align: center;
}

.gwk-site-btn--primary:hover {
  background-image: linear-gradient(
    0.401turn,
    rgba(29, 29, 29, 1) 0%,
    rgba(29, 29, 29, 1) 41%,
    rgba(61, 60, 60, 1) 59%,
    rgba(29, 29, 29, 1) 77%,
    rgba(29, 29, 29, 1) 100%
  );
  color: #fff;
}

.gwk-site-btn--primary-sm {
  min-height: 54px;
  min-width: 240px;
  font-size: 16px;
  border-radius: 16px;
}

.gwk-site-btn--soft {
  background: var(--gwk-bg-soft);
  color: var(--gwk-ink-soft);
  min-height: 44px;
  padding: 0 20px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 600;
}

.gwk-site-btn--soft:hover {
  background: #e0e0e0;
}

.gwk-site-btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.55);
  min-height: 54px;
  padding: 0 24px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 16px;
}

.gwk-site-btn--ghost:hover {
  background: #fff;
  color: var(--gwk-ink);
}

.gwk-nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: #111;
  cursor: pointer;
  padding: 10px;
  margin-left: auto;
  align-items: center;
  justify-content: center;
}

.gwk-nav-toggle__icon {
  display: flex;
  line-height: 0;
}

.gwk-nav-toggle__icon svg {
  display: block;
}

/* Fullscreen mobile menu — visual parity with prod Tilda/NOLIM panel. */
.gwk-mnav {
  display: none;
}

.gwk-mnav[hidden] {
  display: none !important;
}

body.gwk-mnav-open {
  overflow: hidden;
}

body.gwk-mnav-open .gwk-mnav {
  display: block;
  position: fixed;
  inset: 0;
  z-index: 100010;
}

.gwk-mnav__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  margin: 0;
  background: rgba(15, 15, 15, 0.8);
  cursor: pointer;
}

.gwk-mnav__panel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  padding: 20px 16px 28px;
  background: #fff;
  color: #262626;
  font-family: Arial, Helvetica, sans-serif;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.gwk-mnav__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 40px;
  margin-bottom: 17px;
}

.gwk-mnav__logo {
  display: inline-flex;
  line-height: 0;
}

.gwk-mnav__logo img {
  display: block;
  width: 64px;
  height: auto;
}

.gwk-mnav__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-right: -8px;
  border: 0;
  background: transparent;
  color: #111;
  cursor: pointer;
  padding: 0;
}

.gwk-mnav__close svg {
  display: block;
  width: 22px;
  height: 22px;
}

.gwk-mnav__nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 0 0 28px;
}

.gwk-mnav__nav a {
  color: #262626 !important;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.35;
  text-decoration: none !important;
}

.gwk-mnav__nav a:hover {
  opacity: 0.7;
}

.gwk-mnav__offers {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  background: #ebebeb;
  color: #000 !important;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none !important;
}

.gwk-mnav__fire {
  font-size: 17px;
  line-height: 1;
}

.gwk-mnav__bottom {
  margin-top: 36px;
  padding-top: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.gwk-mnav__taxi {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 18px 0 12px;
  border-radius: 8px;
  background: #393939;
  color: #fff !important;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none !important;
}

.gwk-mnav__taxi img {
  display: block;
  width: 24px;
  height: 24px;
}

.gwk-mnav__phone {
  color: #262626 !important;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none !important;
}

.gwk-mnav__addr {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0;
  color: #262626;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
}

.gwk-mnav__addr svg {
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Main / shared layout ─────────────────────────────── */

.gwk-site-main {
  display: block;
}

.gwk-wrap {
  max-width: var(--gwk-max);
  margin: 0 auto;
  padding: 0 var(--gwk-pad);
}

.gwk-section {
  padding: 64px 0;
}

.gwk-section--tight {
  padding: 48px 0;
}

.gwk-section--mute {
  background: var(--gwk-bg-soft);
}

.gwk-section__eyebrow {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gwk-muted);
  letter-spacing: 0.02em;
}

.gwk-section__title {
  margin: 0 0 12px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--gwk-ink-soft);
}

.gwk-section__title--lg {
  font-size: 50px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
}

.gwk-section__lead {
  margin: 0 0 28px;
  max-width: 560px;
  font-size: 16px;
  color: var(--gwk-muted);
}

.gwk-section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.gwk-section__head .gwk-section__title {
  margin-bottom: 0;
}

.gwk-wrap--narrow {
  max-width: 720px;
}

/* ── Hero (white, Tilda rec836881428 ~1029px) ─────────── */

.gwk-hero {
  position: relative;
  background: #fff;
  color: var(--gwk-ink-soft);
  padding: 40px 0 56px;
  overflow: hidden;
}

.gwk-hero__copy {
  max-width: var(--gwk-max);
  margin: 0 auto;
  padding: 0 var(--gwk-pad);
  text-align: center;
}

/* Visual display line (not a heading) — fidelity vs old Tilda H1 look */
.gwk-hero__title {
  margin: 0 auto 8px;
  max-width: 936px;
  font-size: 50px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
  color: #262626;
}

/* SEO H1 — brand + home intents (Купчино / метро), secondary to display */
.gwk-hero__h1 {
  margin: 0 auto 10px;
  max-width: 720px;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;
  color: #262626;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.gwk-hero__geo {
  margin: 0 auto 20px;
  max-width: 560px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  color: #666;
}

.gwk-hero__subtitle {
  margin: 0 auto 20px;
  max-width: 301px;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
  color: #262626;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.gwk-hero__actions {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.gwk-hero__collage {
  max-width: 1194px;
  margin: 0 auto;
  padding: 0 var(--gwk-pad);
}

.gwk-hero__media {
  position: relative;
  width: 100%;
  aspect-ratio: 1194 / 621;
  overflow: hidden;
  border-radius: 27px;
  background: #7a1538;
}

.gwk-hero__poster,
.gwk-hero__video-host,
.gwk-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.gwk-hero__poster {
  object-fit: cover;
  object-position: center;
  z-index: 2;
  opacity: 1;
  transition: opacity 0.55s ease;
  pointer-events: none;
  max-width: none;
  height: 100%;
}

.gwk-hero__video-host {
  z-index: 1;
  background: #7a1538;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.55s ease;
  pointer-events: none;
}

.gwk-hero__video {
  z-index: 1;
  background: #7a1538;
  pointer-events: none;
}

.gwk-hero__media.is-ready .gwk-hero__video-host {
  opacity: 1;
}

.gwk-hero__media.is-ready .gwk-hero__poster {
  opacity: 0;
}

/* ── Intro / stats (rec836892433) ─────────────────────── */

.gwk-intro {
  background: #fff;
  padding: 24px 0 40px;
}

.gwk-intro__title {
  margin: 0 0 16px;
  font-size: 50px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #262626;
  text-align: left;
  max-width: none;
  white-space: normal;
}

.gwk-intro__lead {
  margin: 0 0 36px;
  max-width: 920px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: #404040;
}

.gwk-intro__lead a {
  color: #d32a47;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.gwk-seo-archive-lead {
  margin: -18px 0 36px;
  max-width: 820px;
  font-size: 18px;
  line-height: 1.55;
  color: #333;
}

.gwk-categories .gwk-seo-archive-lead {
  margin: -24px auto 36px;
  text-align: center;
}

.gwk-seo-archive-lead--panel {
  margin: 0 auto 28px;
  text-align: center;
  max-width: 760px;
}

.gwk-seo-archive-lead--category {
  margin: 0 0 18px;
  font-size: 17px;
}

.gwk-seo-archive-lead a,
.gwk-cards-band__lead a {
  color: #d32a47;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.gwk-family__lead a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.gwk-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.gwk-stats__item {
  text-align: left;
  padding: 0;
}

.gwk-stats__value {
  display: block;
  margin-bottom: 10px;
  font-size: 44px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
  color: #262626;
}

.gwk-stats__value sup {
  font-size: 0.55em;
  vertical-align: super;
}

.gwk-stats__label {
  display: block;
  max-width: 16ch;
  font-size: 16px;
  line-height: 1.5;
  color: #262626;
}

/* ── Features horizontal strip (rec836894102) ─────────── */

.gwk-features-band {
  background: #fff;
  padding: 8px 0 48px;
}

.gwk-features-scroller {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0 0 12px;
  cursor: grab;
  touch-action: pan-x;
}

.gwk-features-scroller::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.gwk-features-scroller.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.gwk-features-scroller.is-dragging * {
  pointer-events: none;
  user-select: none;
}

.gwk-features {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0 max(20px, calc((100% - 1200px) / 2 + 20px));
  width: max-content;
  min-width: 100%;
}

.gwk-feature {
  width: min(740px, 82vw);
  flex: 0 0 auto;
}

.gwk-feature__card {
  position: relative;
  width: 100%;
  aspect-ratio: 740 / 506;
  overflow: hidden;
  border-radius: 27px;
  background: #f0f0f0;
}

.gwk-feature__card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gwk-feature__caption {
  position: absolute;
  left: 29px;
  right: 29px;
  bottom: 22px;
  max-width: 454px;
  padding: 16px 24px;
  background: #fff;
  border-radius: 14px;
}

.gwk-feature__title {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.25;
  color: #000;
}

.gwk-feature__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: #000;
}

/* Scroll arrows under features / categories (rec836909194 / 836944629) */
.gwk-scroll-arrows {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  padding-bottom: 8px;
}

.gwk-scroll-arrows__btn {
  appearance: none;
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  cursor: pointer;
  line-height: 0;
  border-radius: 50%;
}

.gwk-scroll-arrows__btn img {
  width: 56px;
  height: 56px;
  display: block;
}

.gwk-scroll-arrows__btn:hover {
  opacity: 0.85;
}

.gwk-scroll-arrows__btn:focus-visible {
  outline: 2px solid #141414;
  outline-offset: 3px;
}

/* ── Perks panel (rec836923033) ───────────────────────── */

.gwk-perks-band {
  background: #fff;
  padding: 24px 0 56px;
}

.gwk-perks-panel {
  position: relative;
  border-radius: 40px;
  background: #f9f9f9;
  overflow: hidden;
  padding: 90px 50px 55px;
  min-height: 597px;
}

.gwk-perks-panel__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.28;
  pointer-events: none;
}

.gwk-perks-panel__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gwk-perks-panel__head {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 48px;
}

.gwk-perks-panel__love {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 0 16px;
  font-size: 50px;
  font-weight: 800;
  line-height: 1.2;
  color: #262626;
}

.gwk-heart {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  transform: translateY(2px);
}

.gwk-perks-panel__for {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
  color: #262626;
}

.gwk-perks {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.gwk-perk {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 34px 28px;
  background: #fff;
  border-radius: 27px;
  min-height: 250px;
}

.gwk-perk__icon {
  display: block;
  width: 84px;
  height: 105px;
  margin-bottom: 8px;
}

.gwk-perk__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gwk-perk__title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  color: #262626;
}

.gwk-perk__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: #262626;
}

/* ── Categories (rec836933839 + 836944284) ────────────── */

.gwk-cats-band {
  background: #fff;
  padding: 24px 0 56px;
}

.gwk-cats-band__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.gwk-cats-band__title {
  margin: 0;
  font-size: 50px;
  font-weight: 800;
  line-height: 1.2;
  color: #262626;
}

.gwk-cats-scroller {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 8px;
  cursor: grab;
  touch-action: pan-x;
}

.gwk-cats-scroller::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.gwk-cats-scroller.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.gwk-cats-scroller.is-dragging * {
  pointer-events: none;
  user-select: none;
}

.gwk-cats {
  display: flex;
  gap: 25px;
  list-style: none;
  margin: 0;
  padding: 0 max(20px, calc((100% - 1200px) / 2 + 20px));
  width: max-content;
}

.gwk-cat {
  position: relative;
  display: block;
  width: min(320px, 70vw);
  flex: 0 0 auto;
  color: inherit;
  overflow: hidden;
  border-radius: 19px;
  background: #f0f0f0;
}

.gwk-cat__media {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 385 / 425;
  overflow: hidden;
}

.gwk-cat__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.gwk-cat:hover .gwk-cat__media img {
  transform: scale(1.04);
}

.gwk-cat__pill {
  position: absolute;
  left: 48px;
  bottom: 24px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 4px 14px;
  background: #fff;
  border-radius: 7px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.35;
  color: #262626;
  white-space: nowrap;
}

/* ── Cards / tariffs (rec836945800 + 836950954) ───────── */

.gwk-cards-band {
  background: #fff;
  padding: 32px 0 64px;
}

.gwk-cards-band__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 20px 64px;
  align-items: center;
  margin-bottom: 36px;
}

.gwk-cards-band__title {
  margin: 0;
  font-size: 50px;
  font-weight: 800;
  line-height: 1.12;
  text-align: left;
  color: #262626;
  max-width: none;
  letter-spacing: -0.02em;
}

.gwk-cards-band__lead {
  margin: 0;
  max-width: 18em;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.35;
  text-align: left;
  color: #262626;
  justify-self: end;
  align-self: center;
}

.gwk-cards-band__lead-u {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}

/* Marquiz Inline host — widget injects iframe (desktop) / button (mobile). */
.gwk-marquiz {
  margin: 8px 0 40px;
  min-height: 56px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.gwk-marquiz [data-marquiz-id] {
  width: 100%;
  max-width: 1040px;
  display: flex;
  justify-content: center;
}

.gwk-cards-panel {
  background: #f9f9f9;
  border-radius: 40px;
  padding: 48px 28px 40px;
}

.gwk-cards-panel__title {
  margin: 0 0 36px;
  font-size: 50px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  color: #262626;
}

.gwk-tariffs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.gwk-tariff {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 34px 27px 24px;
  background: #fff;
  border-radius: 30px;
  /* Equal height via grid stretch — no fixed min-height (it inflated space above CTA). */
  height: 100%;
}

.gwk-tariff__name {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  color: #262626;
}

.gwk-tariff__box {
  margin: 0;
  padding: 20px 20px 18px;
  list-style: none;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.35;
  color: #262626;
}

.gwk-tariff__box--cream {
  background: #fcecd3;
}

.gwk-tariff__box--peach {
  background: #fff7eb;
}

.gwk-tariff__box li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.gwk-tariff__box li + li {
  margin-top: 12px;
}

.gwk-tariff__dash {
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  position: relative;
}

.gwk-tariff__dash::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 7px;
  width: 12px;
  height: 2px;
  background: #262626;
}

.gwk-tariff__extra-title {
  display: block !important;
  margin-bottom: 4px;
  font-size: 13px;
  font-weight: 600;
}

.gwk-tariff__bonus {
  margin: 2px 0 0;
  min-height: 18px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  color: #262626;
}

.gwk-tariff__bonus--spacer {
  visibility: hidden;
}

.gwk-tariff .gwk-site-btn--contact {
  align-self: stretch;
  width: 100%;
  margin-top: auto;
  padding-top: 4px;
  min-height: 59px;
  border-radius: 14px;
  font-size: 16px;
  text-align: center;
  color: #ffffff !important;
}

/* ── Family band (rec836949289) ───────────────────────── */

.gwk-family-band {
  background: #fff;
  padding: 48px 0 56px;
}

.gwk-family__title {
  margin: 0 auto 16px;
  max-width: none;
  font-size: 50px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-align: center;
  color: #262626;
  white-space: normal;
}

.gwk-family__lead {
  margin: 0 auto 32px;
  max-width: 720px;
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
  color: #404040;
}

.gwk-family__media {
  overflow: hidden;
  border-radius: 40px;
  background: #f0f0f0;
  aspect-ratio: 1200 / 660;
}

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

/* ── Home FAQ (GEO facts) ─────────────────────────────── */

.gwk-faq-band {
  background: #fff;
  padding: 8px 0 56px;
}

.gwk-faq-panel {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(180deg, #f7f6f4 0%, #ffffff 45%, #f0efed 100%);
  box-shadow: 0 18px 48px rgba(38, 38, 38, 0.08);
  padding: 36px 36px 28px;
}

.gwk-faq-panel__head {
  margin-bottom: 22px;
}

.gwk-faq-panel__eyebrow {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8a8a8a;
}

.gwk-faq-band__title {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #262626;
  text-align: left;
}

.gwk-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(38, 38, 38, 0.08);
}

.gwk-faq-item {
  border-bottom: 1px solid rgba(38, 38, 38, 0.08);
  background: transparent;
  padding: 0;
  transition: background 0.2s ease;
}

.gwk-faq-item[open] {
  background: rgba(255, 255, 255, 0.72);
}

.gwk-faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  list-style: none;
  padding: 18px 4px 18px 0;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  color: #262626;
  transition: color 0.2s ease;
}

.gwk-faq-item__q::-webkit-details-marker,
.gwk-faq-item__q::marker {
  display: none;
  content: "";
}

.gwk-faq-item__q-text {
  flex: 1 1 auto;
  min-width: 0;
}

.gwk-faq-item__icon {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(38, 38, 38, 0.16);
  box-shadow: 0 4px 12px rgba(38, 38, 38, 0.06);
  position: relative;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.gwk-faq-item__icon::before,
.gwk-faq-item__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: #141414;
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.gwk-faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.gwk-faq-item[open] .gwk-faq-item__icon {
  background: #141414;
  border-color: #141414;
}

.gwk-faq-item[open] .gwk-faq-item__icon::before,
.gwk-faq-item[open] .gwk-faq-item__icon::after {
  background: #fff;
}

.gwk-faq-item[open] .gwk-faq-item__icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0.2);
}

.gwk-faq-item__q:hover {
  color: #141414;
}

.gwk-faq-item__q:hover .gwk-faq-item__icon {
  border-color: #141414;
  transform: scale(1.04);
}

.gwk-faq-item__body {
  padding: 0 48px 18px 0;
  animation: gwk-faq-in 0.22s ease;
}

.gwk-faq-item__a {
  margin: 0;
  max-width: 640px;
  font-size: 16px;
  line-height: 1.55;
  color: #555;
}

@keyframes gwk-faq-in {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 720px) {
  .gwk-faq-panel {
    border-radius: 22px;
    padding: 26px 18px 18px;
  }

  .gwk-faq-item__q {
    font-size: 16px;
    padding: 16px 0;
  }

  .gwk-faq-item__icon {
    width: 32px;
    height: 32px;
  }

  .gwk-faq-item__body {
    padding-right: 0;
  }
}

.gwk-section--form {
  background: #fff;
  padding: 56px 0;
  scroll-margin-top: calc(var(--gwk-header-h) + 16px);
}

.gwk-section--form .gwk-lead-rec {
  padding: 0;
  background: transparent;
}

.gwk-wrap--narrow {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 var(--gwk-pad);
}

/* ── Contacts split: card + map ───────────────────────── */

.gwk-contacts-band {
  position: relative;
  background: linear-gradient(180deg, #f7f6f4 0%, #efeeeb 100%);
  padding: 72px 0;
  overflow: hidden;
}

.gwk-contacts-band__grid {
  display: grid;
  grid-template-columns: minmax(300px, 440px) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
}

.gwk-contacts-band__map {
  position: relative;
  min-height: 560px;
  border-radius: 24px;
  overflow: hidden;
  background: #d9d7d3;
  box-shadow: 0 18px 48px rgba(38, 38, 38, 0.08);
}

.gwk-contacts-band__map iframe {
  width: 100%;
  height: 100%;
  min-height: 560px;
  border: 0;
  display: block;
}

.gwk-contacts-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 24px;
  padding: 40px 36px 32px;
  box-shadow: 0 18px 48px rgba(38, 38, 38, 0.08);
}

.gwk-contacts-card__eyebrow {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a8a8a;
  line-height: 1.2;
}

.gwk-contacts-card__title {
  margin: 0 0 28px;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #141414;
}

.gwk-contacts-facts {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.gwk-contacts-facts__row dt {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a8a8a;
  line-height: 1.2;
}

.gwk-contacts-facts__row dd {
  margin: 0;
  font-size: 16px;
  line-height: 1.45;
  color: #141414;
}

.gwk-contacts-facts__row dd a {
  font-weight: 700;
  color: #141414;
}

.gwk-contacts-facts__row dd a:hover {
  color: #141414;
  text-decoration: underline;
}

.gwk-contacts-card__actions {
  margin-top: auto;
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gwk-contacts-card__btn {
  width: 100%;
  min-height: 54px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
}

.gwk-contacts-card__btn--primary {
  background: #141414;
  color: #ffffff !important;
}

.gwk-contacts-card__btn--primary:hover {
  background: #262626;
  color: #ffffff !important;
}

.gwk-contacts-card__btn--ghost {
  background: #ffffff;
  color: #141414 !important;
  border: 1px solid #d4d4d4;
}

.gwk-contacts-card__btn--ghost:hover {
  background: #f7f7f7;
  color: #141414 !important;
  border-color: #bdbdbd;
}

body.gwk-site a.gwk-contacts-card__btn--primary,
body.gwk-site a.gwk-contacts-card__btn--primary:hover,
body.gwk-site a.gwk-contacts-card__btn--primary:focus {
  color: #ffffff !important;
}

/* ── Footer (white, prod rec836999187) ────────────────── */

.gwk-site-footer {
  background: #ffffff;
  color: #262626;
  padding: 36px 0 28px;
  border-top: 1px solid #efefef;
}

.gwk-site-footer a {
  color: #262626;
}

.gwk-site-footer a:hover {
  color: #141414;
  text-decoration: underline;
}

.gwk-site-footer__bar {
  max-width: var(--gwk-max);
  margin: 0 auto;
  padding: 0 var(--gwk-pad) 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
}

.gwk-site-footer__brand {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 20px;
}

.gwk-site-footer .gwk-site-brand {
  color: #262626;
  margin: 0;
}

.gwk-site-footer__tag {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: #262626;
}

.gwk-site-footer__bar-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 14px;
}

.gwk-site-footer__phone {
  font-size: 16px;
  font-weight: 700;
  color: #262626;
  text-decoration: none;
}

.gwk-site-btn--taxi {
  background: #2b2b2b;
  color: #ffffff !important;
  min-width: 0;
  border-radius: 10px;
  gap: 8px;
  padding: 0 14px;
}

.gwk-site-btn--taxi:hover {
  background: #111;
  color: #ffffff !important;
}

.gwk-site-btn--taxi img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.gwk-site-footer__grid {
  max-width: var(--gwk-max);
  margin: 0 auto;
  padding: 28px var(--gwk-pad);
  display: grid;
  grid-template-columns: 1.35fr 0.9fr 0.9fr 0.9fr 1.1fr;
  gap: 24px 20px;
  border-top: 1px solid #efefef;
  border-bottom: 1px solid #efefef;
}

.gwk-site-footer__label {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 600;
  color: #8a8a8a;
}

.gwk-site-footer__col--contacts .gwk-site-footer__label {
  margin-top: 16px;
}

.gwk-site-footer__col--contacts .gwk-site-footer__label:first-child {
  margin-top: 0;
}

.gwk-site-footer__text {
  margin: 0 0 4px;
  font-size: 14px;
  line-height: 1.45;
  color: #262626;
}

.gwk-site-footer__text--ico {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.gwk-site-footer__text--ico svg {
  flex: 0 0 auto;
  margin-top: 2px;
}

.gwk-site-footer__social {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.gwk-site-footer__soc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #141414;
}

.gwk-site-footer__soc:hover {
  background: #262626;
}

.gwk-site-footer__nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

.gwk-site-footer__nav li + li {
  margin-top: 8px;
}

.gwk-site-footer__nav a {
  font-size: 14px;
  line-height: 1.35;
}

.gwk-site-footer__legal {
  max-width: var(--gwk-max);
  margin: 0 auto;
  padding: 28px var(--gwk-pad) 0;
  display: grid;
  grid-template-columns: 1.1fr 1.3fr 1.4fr auto;
  gap: 24px 28px;
  align-items: start;
}

.gwk-site-footer__legal-entity,
.gwk-site-footer__legal-addr {
  font-size: 12px;
  line-height: 1.5;
  color: #6b6b6b;
}

.gwk-site-footer__legal-entity p,
.gwk-site-footer__legal-addr p {
  margin: 0 0 4px;
}

.gwk-site-footer__docs {
  list-style: none;
  margin: 0;
  padding: 0;
}

.gwk-site-footer__docs li + li {
  margin-top: 7px;
}

.gwk-site-footer__docs a {
  font-size: 13px;
  color: #4a4a4a;
}

.gwk-site-footer__copy {
  font-size: 13px;
  color: #8a8a8a;
  white-space: nowrap;
  justify-self: end;
}

/* Homepage offers reuse gwk-home-offers classes from PHP helper —
   ensure spacing when embedded without mirror wrapper. */
.gwk-home-offers {
  box-sizing: border-box;
  width: 100%;
  max-width: var(--gwk-max);
  margin: 0 auto;
  padding: 48px var(--gwk-pad) 56px;
  background: #fff;
  font-family: var(--gwk-font);
  color: #111;
}

.gwk-home-offers__title {
  margin: 0 0 28px;
  text-align: center;
  font-size: 50px;
  font-weight: 800;
  line-height: 1.2;
  color: #262626;
  white-space: nowrap;
}

.gwk-home-offers__fire {
  display: inline;
  font-size: 0.85em;
  line-height: 1;
  margin-left: 0.2em;
}

.gwk-home-offers__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px 18px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: stretch;
}

.gwk-home-offers__card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  min-height: 0;
  transition: opacity 0.15s ease;
}

.gwk-home-offers__card:hover {
  opacity: 0.92;
}

.gwk-home-offers__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #f0f0f0;
  border-radius: 20px;
  line-height: 0;
}

body.gwk-site .gwk-home-offers__media img,
.gwk-home-offers__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: center;
  display: block;
}

.gwk-home-offers__card--visual .gwk-home-offers__media {
  background: #f0f0f0;
}

.gwk-home-offers__media--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #262626 0%, #141414 100%);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  line-height: 1.25;
}

.gwk-home-offers__body {
  padding: 12px 2px 0;
}

.gwk-home-offers__card--visual .gwk-home-offers__body {
  display: none;
}

.gwk-home-offers__name {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
}

.gwk-home-offers__price {
  margin: 6px 0 0;
  font-size: 15px;
  font-weight: 500;
  color: #141414;
}

.gwk-home-offers__price-old {
  margin-right: 8px;
  color: #999;
  text-decoration: line-through;
  font-weight: 400;
}

.gwk-home-offers__cta-wrap {
  margin-top: 36px;
  text-align: center;
}

.gwk-home-offers__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 237px;
  min-height: 54px;
  padding: 14px 28px;
  background: #111;
  color: #fff !important;
  text-decoration: none !important;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  border-radius: 40px;
  transition: background 0.15s ease;
}

.gwk-home-offers__cta:hover {
  background: #262626;
}

/* ── Responsive ───────────────────────────────────────── */

@media screen and (max-width: 1100px) {
  .gwk-site-nav {
    gap: 6px 12px;
  }

  .gwk-hero__title,
  .gwk-intro__title,
  .gwk-cards-band__title,
  .gwk-cards-panel__title,
  .gwk-cats-band__title,
  .gwk-family__title,
  .gwk-perks-panel__love {
    font-size: 36px;
  }

  .gwk-cards-band__lead,
  .gwk-perks-panel__for {
    font-size: 18px;
  }

  .gwk-cards-band__intro {
    grid-template-columns: 1fr;
  }

  .gwk-cards-band__lead {
    justify-self: start;
  }

  .gwk-contacts-band {
    padding: 48px 0;
  }

  .gwk-contacts-band__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gwk-contacts-band__map,
  .gwk-contacts-band__map iframe {
    min-height: 360px;
  }

  .gwk-site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .gwk-site-footer__legal {
    grid-template-columns: 1fr 1fr;
  }

  .gwk-site-footer__bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .gwk-family__title {
    font-size: 36px;
    white-space: nowrap;
  }
}

@media screen and (max-width: 640px) {
  .gwk-site-header {
    position: sticky;
    top: 0;
    z-index: 900;
  }

  .gwk-site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    min-height: 52px;
    padding: 6px 12px;
  }

  .gwk-site-header__brand-block {
    flex: 0 0 auto;
  }

  /* Prod wordmark ~50–60px wide; fills bar without huge empty padding. */
  .gwk-site-brand__logo {
    width: 58px;
    height: auto;
  }

  .gwk-site-meta {
    display: none;
  }

  .gwk-site-nav {
    display: none;
  }

  .gwk-site-header__actions {
    flex: 1 1 auto;
    justify-content: flex-end;
    gap: 8px;
  }

  .gwk-nav-toggle {
    display: inline-flex;
    width: 36px;
    height: 36px;
    margin-left: 0;
    padding: 6px;
  }

  .gwk-site-header__actions .gwk-site-btn--offers {
    display: none;
  }

  .gwk-site-header__actions .gwk-site-btn--contact {
    display: inline-flex;
    min-width: 0;
    min-height: 28px;
    padding: 0 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
  }
}

@media screen and (max-width: 959px) {
  .gwk-site-header {
    position: sticky;
    top: 0;
    z-index: 900;
  }

  .gwk-site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 56px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .gwk-site-brand__logo {
    width: 64px;
    height: auto;
  }

  .gwk-site-nav {
    display: none;
  }

  .gwk-site-header__actions {
    flex: 1 1 auto;
    justify-content: flex-end;
  }

  .gwk-nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 0;
  }

  .gwk-site-header__actions .gwk-site-btn--offers {
    display: none;
  }

  .gwk-site-header__actions .gwk-site-btn--contact {
    display: inline-flex;
  }

  .gwk-hero {
    padding: 48px 0 32px;
  }

  .gwk-hero__title {
    font-size: 28px;
    max-width: none;
  }

  .gwk-hero__h1 {
    font-size: 18px;
    max-width: none;
  }

  .gwk-hero__geo {
    font-size: 14px;
  }

  .gwk-hero__subtitle {
    font-size: 18px;
  }

  .gwk-hero__media {
    border-radius: 16px;
  }

  .gwk-intro__title,
  .gwk-cards-band__title,
  .gwk-cards-panel__title,
  .gwk-cats-band__title,
  .gwk-family__title {
    font-size: 28px;
  }

  .gwk-intro__title {
    white-space: normal;
  }

  .gwk-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gwk-stats__value {
    font-size: 32px;
  }

  .gwk-feature {
    width: min(420px, 82vw);
  }

  .gwk-feature__card {
    border-radius: 16px;
  }

  .gwk-feature__caption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 12px 14px;
  }

  .gwk-feature__title {
    font-size: 14px;
  }

  .gwk-feature__text {
    font-size: 12px;
  }

  .gwk-perks {
    grid-template-columns: 1fr;
  }

  .gwk-perks-panel {
    border-radius: 24px;
    padding: 40px 16px 28px;
    min-height: 0;
  }

  .gwk-perks-panel__love {
    font-size: 26px;
  }

  .gwk-cats-band__title {
    font-size: 28px;
  }

  .gwk-cat {
    width: min(260px, 72vw);
  }

  .gwk-cat__pill {
    left: 20px;
    bottom: 16px;
    font-size: 16px;
  }

  .gwk-cards-panel {
    border-radius: 24px;
    padding: 28px 16px 24px;
  }

  .gwk-tariffs,
  .gwk-home-offers__grid {
    grid-template-columns: 1fr 1fr;
  }

  .gwk-tariff {
    min-height: 0;
  }

  .gwk-family__media {
    border-radius: 24px;
  }

  .gwk-home-offers__title {
    font-size: 26px;
    white-space: normal;
  }

  .gwk-site-btn--primary {
    min-height: 54px;
    min-width: 220px;
    font-size: 14px;
    border-radius: 16px;
  }

  .gwk-scroll-arrows__btn img {
    width: 48px;
    height: 48px;
  }

  .gwk-contacts-band {
    padding: 36px 0;
  }

  .gwk-contacts-card {
    padding: 28px 22px 24px;
  }

  .gwk-contacts-card__title {
    margin-bottom: 22px;
  }

  .gwk-contacts-band__map,
  .gwk-contacts-band__map iframe {
    min-height: 300px;
  }

  .gwk-site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 559px) {
  .gwk-site-meta__phone {
    font-size: 14px;
  }

  .gwk-site-meta__addr {
    display: none;
  }

  .gwk-site-header__actions .gwk-site-btn--contact {
    min-width: 0;
    padding: 0 12px;
    font-size: 12px;
  }

  .gwk-hero__actions {
    margin-bottom: 24px;
  }

  .gwk-hero__title {
    font-size: 26px;
  }

  .gwk-stats,
  .gwk-tariffs,
  .gwk-home-offers__grid,
  .gwk-site-footer__grid,
  .gwk-site-footer__legal {
    grid-template-columns: 1fr;
  }

  .gwk-site-footer__brand {
    flex-direction: column;
    align-items: flex-start;
  }

  .gwk-site-footer__copy {
    justify-self: start;
  }

  .gwk-family__title {
    font-size: 22px;
    white-space: nowrap;
    letter-spacing: -0.03em;
  }

  .gwk-cards-band__lead {
    font-size: 16px;
  }

  .gwk-section {
    padding: 40px 0;
  }

  .gwk-cat {
    width: min(220px, 78vw);
  }

  .gwk-heart {
    width: 20px;
    height: 20px;
  }
}
