@charset "UTF-8";
:root {
  --gm-dark: #0f1216;
  --gm-dark-96: rgba(15, 18, 22, 0.96);
  --gm-white: #ffffff;
  --gm-accent: #00A0E3;
  --gm-accent-hover: #008fcc;
  --gm-yellow: #FFED00;
  --gm-text: #1e2330;
  --gm-light-bg: #f5f4f0;
  --gm-text-muted: rgba(255, 255, 255, 0.58);
  --gm-dark-gradient: linear-gradient(155deg, rgba(53, 44, 28, 0.85) 0%, rgba(23, 58, 73, 0.9) 55%, rgba(19, 61, 110, 0.88) 100%);
  --gm-font-heading: 'Raleway', sans-serif;
  --gm-font-body: 'Inter', sans-serif;
  --gm-radius-btn: 40px;
  --gm-radius-card: 16px;
  --gm-ease-fast: 0.18s ease;
  --gm-ease-base: 0.30s ease;
  --gm-container: 1280px;
  --gm-gutter: 40px;
  --gm-header-h: 112px;
  --gm-header-h-mob: 68px;
}
@media (max-width: 860px) {
  :root {
    --gm-gutter: 20px;
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--gm-font-body);
  color: var(--gm-text);
  background: var(--gm-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button {
  cursor: pointer;
  font-family: inherit;
}

ul,
ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: calc(var(--gm-container) + var(--gm-gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gm-gutter);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  background: var(--gm-accent);
  color: var(--gm-white);
  font-family: var(--gm-font-body);
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  border-radius: var(--gm-radius-btn);
  border: none;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--gm-ease-fast), transform 0.15s ease;
  gap: 10px;
}
.btn-primary:hover {
  background: var(--gm-accent-hover);
}
.btn-primary:active {
  transform: scale(0.97);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 32px;
  background: transparent;
  color: var(--gm-white);
  font-family: var(--gm-font-body);
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  border-radius: var(--gm-radius-btn);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  transition: border-color var(--gm-ease-fast), background var(--gm-ease-fast), transform 0.15s ease;
}
.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.06);
}
.btn-secondary:active {
  transform: scale(0.97);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 32px;
  background: transparent;
  color: var(--gm-dark);
  font-family: var(--gm-font-body);
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  border-radius: var(--gm-radius-btn);
  border: 1.5px solid rgba(15, 18, 22, 0.3);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  transition: border-color var(--gm-ease-fast), background var(--gm-ease-fast), transform 0.15s ease;
}
.btn-outline:hover {
  border-color: var(--gm-dark);
  background: rgba(15, 18, 22, 0.05);
}
.btn-outline:active {
  transform: scale(0.97);
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 32px;
  background: var(--gm-dark);
  color: var(--gm-white);
  font-family: var(--gm-font-body);
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  border-radius: var(--gm-radius-btn);
  border: none;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--gm-ease-fast), transform 0.15s ease;
}
.btn-dark:hover {
  background: #1e2535;
}
.btn-dark:active {
  transform: scale(0.97);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: transform var(--gm-ease-base), background-color var(--gm-ease-base), backdrop-filter var(--gm-ease-base);
}
.site-header--scrolled {
  background-color: var(--gm-dark-96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.18);
}
.site-header--hidden {
  transform: translateY(-100%);
}

.page:not(.home) .site-header,
.page-template:not(.home) .site-header,
.error404 .site-header {
  background-color: var(--gm-dark-96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.18);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: 1fr 1fr;
  align-items: center;
  height: var(--gm-header-h);
  column-gap: 40px;
}
@media (max-width: 860px) {
  .header-inner {
    display: flex;
    height: var(--gm-header-h-mob);
    gap: 0;
  }
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  color: var(--gm-white);
  text-decoration: none;
}
@media (min-width: 861px) {
  .header-logo {
    grid-column: 1;
    grid-row: 1/3;
    align-self: center;
  }
}

.logo-img {
  flex-shrink: 0;
  object-fit: contain;
}
.logo-img--full {
  height: 90px;
  width: auto;
  max-width: 280px;
  display: block;
}
@media (max-width: 860px) {
  .logo-img--full {
    height: 55px;
    max-width: 200px;
  }
}
.logo-img--mobile {
  height: 55px;
  width: auto;
  display: none;
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
}
@media (min-width: 861px) {
  .header-nav {
    grid-column: 2;
    grid-row: 2;
    margin-bottom: 5px;
  }
}
@media (max-width: 860px) {
  .header-nav {
    display: none;
  }
}

.nav-more {
  position: relative;
  flex-shrink: 0;
  margin-left: 28px;
  align-items: center;
}

.nav-more-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  padding: 8px 6px;
  cursor: pointer;
  border-radius: 6px;
  transition: background var(--gm-ease-fast);
}
.nav-more-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.more-dot {
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
}

.nav-more-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 200px;
  background: #ffffff;
  border-radius: 16px;
  padding: 8px 0;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.16);
  z-index: 200;
}
.nav-more-dropdown.is-open {
  display: block;
}

.nav-more-dropdown-item {
  display: block;
  padding: 11px 20px;
  font-size: 15px;
  font-weight: 500;
  color: #1e2330;
  transition: background var(--gm-ease-fast);
  text-decoration: none;
}
.nav-more-dropdown-item:hover {
  background: #f3f5f7;
}

.nav-measuring .header-nav-list {
  visibility: hidden;
}

.header-nav-list {
  display: flex;
  align-items: center;
  gap: 28px;
}
@media (max-width: 1100px) {
  .header-nav-list {
    gap: 20px;
  }
}
.header-nav-list > li {
  position: relative;
}
.header-nav-list > li > a {
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.86);
  white-space: nowrap;
  transition: color var(--gm-ease-fast);
  padding: 4px 0;
}
@media (max-width: 1100px) {
  .header-nav-list > li > a {
    font-size: 14px;
  }
}
.header-nav-list > li > a:hover {
  color: var(--gm-white);
}
.header-nav-list > li.current-menu-item > a, .header-nav-list > li.current_page_item > a, .header-nav-list > li.current-page-ancestor > a {
  color: var(--gm-yellow);
}
.header-nav-list > li.current-menu-item > a::after, .header-nav-list > li.current_page_item > a::after, .header-nav-list > li.current-page-ancestor > a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gm-yellow);
  border-radius: 1px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: flex-end;
  flex-shrink: 0;
}
@media (min-width: 861px) {
  .header-actions {
    grid-column: 2;
    grid-row: 1;
    margin-left: 0;
    margin-top: 10px;
  }
}
@media (max-width: 1100px) {
  .header-actions {
    gap: 12px;
  }
}
@media (max-width: 860px) {
  .header-actions {
    display: none;
  }
}

.header-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  text-decoration: none;
}
@media (max-width: 980px) {
  .header-phone {
    display: none;
  }
}
.header-phone:hover .phone-number {
  color: var(--gm-accent);
}

.phone-number {
  font-weight: 700;
  font-size: 17px;
  color: var(--gm-white);
  line-height: 1.25;
  white-space: nowrap;
  transition: color var(--gm-ease-fast);
}

.phone-caption {
  display: none;
}

.header-messenger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--gm-white);
  transition: background var(--gm-ease-fast);
  flex-shrink: 0;
  text-decoration: none;
}
.header-messenger:hover {
  background: rgba(255, 255, 255, 0.2);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  background: var(--gm-white);
  color: var(--gm-dark);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  border-radius: var(--gm-radius-btn);
  border: none;
  white-space: nowrap;
  transition: background var(--gm-ease-fast), transform 0.15s ease;
  text-decoration: none;
}
@media (max-width: 980px) {
  .header-cta {
    font-size: 14px;
    padding: 11px 20px;
  }
}
.header-cta:hover {
  background: #eef0f2;
}
.header-cta:active {
  transform: scale(0.97);
}
.header-cta--compact {
  font-size: 13px;
  padding: 10px 16px;
}
@media (max-width: 860px) {
  .header-cta--compact {
    display: none;
  }
}

.header-mobile-actions {
  display: none;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  flex-shrink: 0;
}
@media (max-width: 860px) {
  .header-mobile-actions {
    display: flex;
  }
}

.header-burger {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 8px;
}
.header-burger.is-open .burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header-burger.is-open .burger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.header-burger.is-open .burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.burger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gm-white);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease, width 0.25s ease;
}

.admin-bar .site-header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}
.mobile-menu {
  position: fixed;
  inset: 0;
  background: #111418;
  z-index: 99;
  overflow-y: auto;
  overscroll-behavior: contain;
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.32s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.32s;
}
.mobile-menu.is-open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: calc(var(--gm-header-h-mob) + 24px) 30px 48px;
  gap: 44px;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
}
.mobile-nav-list > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mobile-nav-list > li > a {
  display: block;
  padding: 16px 0;
  font-family: var(--gm-font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--gm-white);
  transition: color var(--gm-ease-fast), padding-left var(--gm-ease-fast);
}
.mobile-nav-list > li > a:hover {
  color: var(--gm-accent);
  padding-left: 6px;
}
@media (max-width: 400px) {
  .mobile-nav-list > li > a {
    font-size: 18px;
  }
}
.mobile-nav-list > li.current-menu-item > a, .mobile-nav-list > li.current_page_item > a, .mobile-nav-list > li.current-page-ancestor > a {
  color: var(--gm-yellow);
}

.mobile-contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}

.mobile-phone {
  font-weight: 700;
  font-size: 22px;
  color: var(--gm-white);
  transition: color var(--gm-ease-fast);
  text-decoration: none;
}
.mobile-phone:hover {
  color: var(--gm-accent);
}

.mobile-phone-caption {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 6px;
}

.mobile-messenger-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 16px;
  margin-bottom: 6px;
  transition: color var(--gm-ease-fast);
  text-decoration: none;
}
.mobile-messenger-link:hover {
  color: var(--gm-white);
}

.btn-mobile-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 18px 24px;
  background: var(--gm-white);
  color: var(--gm-dark);
  font-weight: 600;
  font-size: 16px;
  border-radius: var(--gm-radius-btn);
  border: none;
  transition: background var(--gm-ease-fast), transform 0.15s ease;
  margin-top: 8px;
}
.btn-mobile-cta:hover {
  background: #eef0f2;
}
.btn-mobile-cta:active {
  transform: scale(0.97);
}

.admin-bar .mobile-menu {
  top: 32px;
}

@media screen and (max-width: 782px) {
  .admin-bar .mobile-menu {
    top: 46px;
  }
}
.site-footer {
  background: var(--gm-dark, #0f1216);
  color: #fff;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding-block: 64px;
}
@media (max-width: 980px) {
  .footer-main {
    flex-direction: column;
  }
}
@media (max-width: 860px) {
  .footer-main {
    padding-block: 48px;
  }
}

.footer-left {
  display: flex;
  align-items: flex-start;
  gap: 80px;
}
@media (max-width: 1100px) {
  .footer-left {
    gap: 48px;
  }
}
@media (max-width: 900px) {
  .footer-left {
    flex-wrap: wrap;
    gap: 40px;
  }
}
@media (max-width: 860px) {
  .footer-left {
    flex-direction: column;
    gap: 32px;
  }
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}

.footer-logo-img {
  display: block;
  max-width: 190px;
  height: auto;
}

.footer-logo-sub {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.35);
}

.footer-nav {
  display: flex;
  gap: 56px;
  align-items: flex-start;
}
@media (max-width: 860px) {
  .footer-nav {
    flex-direction: column;
    gap: 32px;
  }
}

.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav-heading {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #474747;
  margin-bottom: 4px;
}

.footer-nav-link {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  line-height: 1.4;
  transition: color 0.18s ease;
}
.footer-nav-link:hover {
  color: #fff;
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
  flex-shrink: 0;
}
@media (max-width: 980px) {
  .footer-contacts {
    align-items: flex-start;
  }
}

.footer-phone-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
}
@media (max-width: 980px) {
  .footer-phone-block {
    align-items: flex-start;
  }
}

.footer-phone {
  font-weight: 700;
  font-size: 22px;
  color: #fff;
  text-decoration: none;
  transition: color 0.18s ease;
}
.footer-phone:hover {
  color: var(--gm-accent);
}

.footer-phone-caption {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-email {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.18s ease;
}
.footer-email:hover {
  color: #fff;
}

.footer-socials {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
@media (max-width: 980px) {
  .footer-socials {
    align-items: flex-start;
  }
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.18s ease;
}
.footer-social svg {
  flex-shrink: 0;
}
.footer-social:hover {
  color: #fff;
}

.footer-address {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}
.footer-address svg {
  flex-shrink: 0;
  opacity: 0.6;
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 24px;
  padding-block: 22px;
}
@media (max-width: 900px) {
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-block: 20px;
  }
}

.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
@media (max-width: 860px) {
  .footer-bottom-links {
    gap: 12px;
    flex-direction: column;
  }
}

.footer-bottom-link {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.18s ease;
}
.footer-bottom-link:hover {
  color: rgba(255, 255, 255, 0.8);
}

.footer-developer {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.18s ease;
}
.footer-developer span {
  color: rgba(255, 255, 255, 0.45);
  font-weight: 600;
}
.footer-developer:hover {
  color: rgba(255, 255, 255, 0.6);
}
.footer-developer:hover span {
  color: rgba(255, 255, 255, 0.8);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 1000;
  max-width: 400px;
  background: var(--gm-white, #fff);
  color: var(--gm-text, #1e2330);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.16);
  transform: translateY(120%);
  opacity: 0;
  transition: transform var(--gm-ease-base), opacity var(--gm-ease-base);
  pointer-events: none;
}
.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
@media (max-width: 400px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
  }
}

.cookie-banner__inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px 22px;
}

.cookie-banner__text {
  margin: 0;
  font-family: var(--gm-font-body);
  font-size: 12px;
  line-height: 1.5;
  color: var(--gm-text, #1e2330);
}

.cookie-banner__link {
  color: var(--gm-accent, #00A0E3);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner__link:hover {
  color: var(--gm-accent-hover, #008fcc);
}

.cookie-banner__btn {
  align-self: flex-start;
  padding: 10px 24px;
  background: var(--gm-accent, #00A0E3);
  color: var(--gm-white, #fff);
  font-family: var(--gm-font-body);
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  border: none;
  border-radius: var(--gm-radius-btn, 40px);
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--gm-ease-fast), transform 0.15s ease;
}
.cookie-banner__btn:hover {
  background: var(--gm-accent-hover, #008fcc);
}
.cookie-banner__btn:active {
  transform: scale(0.97);
}

.gm-modal {
  display: flex;
  position: fixed;
  inset: 0;
  z-index: 9000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  visibility: hidden;
  pointer-events: none;
}
.gm-modal.is-open {
  visibility: visible;
  pointer-events: auto;
}

.gm-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(6, 8, 16, 0.78);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gm-modal.is-open .gm-modal-backdrop {
  opacity: 1;
}

.gm-modal-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 500px;
  opacity: 0;
  transform: translateY(24px) scale(0.97);
  transition: opacity 0.32s ease, transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.gm-modal.is-open .gm-modal-wrap {
  opacity: 1;
  transform: none;
}

.gm-modal-box {
  position: relative;
  background: #141820;
  border-radius: 12px;
  padding: 44px 48px;
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.07);
}
@media (max-width: 400px) {
  .gm-modal-box {
    padding: 36px 24px;
  }
}

.gm-modal-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 36px;
  height: 36px;
  background: var(--gm-accent);
  transform: rotate(45deg);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: filter 0.18s ease, transform 0.22s ease;
}
.gm-modal-close:hover {
  filter: brightness(1.18);
  transform: rotate(45deg) scale(1.12);
}
.gm-modal-close:focus-visible {
  outline: 2px solid var(--gm-white);
  outline-offset: 2px;
}
.gm-modal-close svg {
  transform: rotate(-45deg);
  color: #0a0d12;
  flex-shrink: 0;
}

.gm-form-header {
  margin-bottom: 20px;
}

.gm-form-title {
  font-family: var(--gm-font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--gm-white);
  line-height: 1.3;
  margin-bottom: 6px;
}

.gm-form-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
}

.gm-form-attached {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(91, 184, 201, 0.08);
  border: 1px solid rgba(91, 184, 201, 0.22);
  border-radius: 8px;
  padding: 9px 14px;
  margin-bottom: 22px;
  font-size: 13px;
  overflow: hidden;
}
.gm-form-attached svg {
  flex-shrink: 0;
  color: var(--gm-accent);
}

.gm-form-attached-label {
  color: rgba(255, 255, 255, 0.45);
  flex-shrink: 0;
}

.gm-form-attached-value {
  color: var(--gm-accent);
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gm-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gm-form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.gm-form-label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.015em;
}

.gm-required {
  color: var(--gm-accent);
  margin-left: 2px;
}

.gm-form-input,
.gm-select {
  width: 100%;
  height: 50px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  color: var(--gm-white);
  font-family: var(--gm-font-body);
  font-size: 15px;
  padding: 0 16px;
  outline: none;
  transition: border-color 0.18s ease, background 0.18s ease;
}
.gm-form-input::placeholder,
.gm-select::placeholder {
  color: rgba(255, 255, 255, 0.25);
}
.gm-form-input:focus,
.gm-select:focus {
  border-color: var(--gm-accent);
  background: rgba(91, 184, 201, 0.04);
}
.gm-form-input.has-error,
.gm-select.has-error {
  border-color: #e05252;
}

.gm-select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 42px;
}
.gm-select option {
  background: #1e2330;
  color: var(--gm-white);
}

.gm-select-wrap {
  position: relative;
}

.gm-select-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.35);
  pointer-events: none;
}

.gm-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}
.gm-checkbox.has-error .gm-checkbox-box {
  border-color: #e05252;
}

.gm-checkbox-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.gm-checkbox-input:checked + .gm-checkbox-box {
  background: var(--gm-accent);
  border-color: var(--gm-accent);
}
.gm-checkbox-input:checked + .gm-checkbox-box::after {
  opacity: 1;
}
.gm-checkbox-input:focus-visible + .gm-checkbox-box {
  outline: 2px solid var(--gm-accent);
  outline-offset: 2px;
}

.gm-checkbox-box {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  border-radius: 5px;
  background: transparent;
  transition: background 0.18s ease, border-color 0.18s ease;
  position: relative;
  margin-top: 1px;
}
.gm-checkbox-box::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 5px;
  width: 10px;
  height: 6px;
  border-left: 2px solid #0a0d12;
  border-bottom: 2px solid #0a0d12;
  transform: rotate(-45deg);
  opacity: 0;
  transition: opacity 0.15s ease;
}

.gm-checkbox-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.55;
  padding-top: 1px;
}

.gm-link {
  color: var(--gm-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.gm-link:hover {
  color: var(--gm-white);
}

.gm-form-error {
  font-size: 12px;
  color: #e05252;
  line-height: 1.4;
}

.gm-form-submit {
  margin-top: 4px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.gm-form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

.gm-form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 12px 0 4px;
}

.gm-success-icon {
  width: 64px;
  height: 64px;
  background: rgba(91, 184, 201, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gm-accent);
}

.gm-success-title {
  font-family: var(--gm-font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--gm-white);
  margin-bottom: 8px;
}

.gm-success-text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin-bottom: 28px;
}

.gm-success-close {
  min-width: 180px;
}

.gm-modal--light .gm-modal-backdrop {
  background: rgba(30, 35, 48, 0.55);
}
.gm-modal--light .gm-modal-box {
  background: #ffffff;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(0, 0, 0, 0.07);
}
.gm-modal--light .gm-form-title {
  color: #1a1a1a;
}
.gm-modal--light .gm-form-subtitle {
  color: #8a8a95;
}
.gm-modal--light .gm-form-attached {
  background: rgba(0, 160, 227, 0.06);
  border-color: rgba(0, 160, 227, 0.2);
}
.gm-modal--light .gm-form-attached-label {
  color: #8a8a95;
}
.gm-modal--light .gm-form-label {
  color: #5a5a65;
}
.gm-modal--light .gm-form-input,
.gm-modal--light .gm-select {
  background: #f5f5f7;
  border-color: #e0e0e5;
  color: #1a1a1a;
}
.gm-modal--light .gm-form-input::placeholder,
.gm-modal--light .gm-select::placeholder {
  color: #bbbbc5;
}
.gm-modal--light .gm-form-input:focus,
.gm-modal--light .gm-select:focus {
  border-color: var(--gm-accent);
  background: #f0f8fd;
}
.gm-modal--light .gm-select option {
  background: #ffffff;
  color: #1a1a1a;
}
.gm-modal--light .gm-select-arrow {
  color: #aaaaB5;
}
.gm-modal--light .gm-checkbox-box {
  border-color: #d0d0d8;
}
.gm-modal--light .gm-checkbox-label {
  color: #6a6a75;
}
.gm-modal--light .gm-link:hover {
  color: #1a1a1a;
}
.gm-modal--light .gm-success-title {
  color: #1a1a1a;
}
.gm-modal--light .gm-success-text {
  color: #6a6a75;
}
.gm-modal--light .gm-success-icon {
  background: rgba(0, 160, 227, 0.1);
}

.main-content--404 {
  padding-top: var(--gm-header-h);
  padding-bottom: 96px;
  min-height: 80vh;
  background: var(--gm-dark);
}
@media (max-width: 860px) {
  .main-content--404 {
    padding-top: var(--gm-header-h-mob);
    padding-bottom: 64px;
  }
}

.error404-block {
  display: flex;
  align-items: center;
  gap: 64px;
  padding: 80px 0;
  width: 100%;
}
@media (max-width: 900px) {
  .error404-block {
    flex-direction: column;
    gap: 32px;
    padding: 60px 0;
    text-align: center;
  }
}
@media (max-width: 860px) {
  .error404-block {
    padding: 40px 0;
  }
}

.error404-block__code {
  font-family: var(--gm-font-heading);
  font-size: clamp(120px, 18vw, 220px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -4px;
  color: transparent;
  background: linear-gradient(135deg, var(--gm-accent) 0%, rgba(0, 160, 227, 0.3) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  flex-shrink: 0;
  user-select: none;
}

.error404-block__content {
  flex: 1;
  min-width: 0;
}

.error404-block__title {
  font-family: var(--gm-font-heading);
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 16px;
}

.error404-block__text {
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.62);
  margin: 0 0 36px;
}

.error404-block__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
@media (max-width: 900px) {
  .error404-block__actions {
    justify-content: center;
  }
}

.main-content--page {
  padding-top: var(--gm-header-h);
  padding-bottom: 96px;
  min-height: 70vh;
  background: #fff;
}
@media (max-width: 860px) {
  .main-content--page {
    padding-top: var(--gm-header-h-mob);
    padding-bottom: 64px;
  }
}

.main-content--portfolio {
  padding-top: var(--gm-header-h);
}
@media (max-width: 860px) {
  .main-content--portfolio {
    padding-top: var(--gm-header-h-mob);
  }
}

.portfolio-page-header {
  background: #fff;
  padding-bottom: 40px;
  border-bottom: 1px solid #efefef;
}
.portfolio-page-header .breadcrumbs {
  padding-bottom: 0;
}

.portfolio-page-title {
  font-family: var(--gm-font-heading);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  margin: 24px 0 12px;
}

.portfolio-page-subtitle {
  font-size: clamp(15px, 1.5vw, 17px);
  color: #555;
  line-height: 1.6;
  margin: 0;
  max-width: 600px;
}

.breadcrumbs {
  opacity: 0.7;
  padding: 40px 0 0;
}
@media (max-width: 860px) {
  .breadcrumbs {
    padding: 24px 0 0;
  }
}

.breadcrumbs__list {
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
}

.breadcrumbs__item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #9b9b9b;
  line-height: 1.4;
}
.breadcrumbs__item:not(:first-child)::before {
  content: "/";
  color: #d0d0d0;
  font-size: 12px;
}
.breadcrumbs__item--current {
  color: #6b6b70;
  font-weight: 500;
}

.breadcrumbs__link {
  color: var(--gm-accent);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.18s ease;
}
.breadcrumbs__link:hover {
  color: var(--gm-accent-hover);
  text-decoration: underline;
}

.page-content__header {
  padding: 32px 0 40px;
  border-bottom: 1px solid #efefef;
  margin-bottom: 48px;
}
@media (max-width: 860px) {
  .page-content__header {
    padding: 24px 0 28px;
    margin-bottom: 32px;
  }
}

.page-content__title {
  font-family: var(--gm-font-heading);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  margin: 0;
}

.page-content {
  max-width: 780px;
}

.entry-content {
  font-size: 16px;
  line-height: 1.75;
  color: #2e2e38;
}
.entry-content h1, .entry-content h2, .entry-content h3, .entry-content h4, .entry-content h5, .entry-content h6 {
  font-family: var(--gm-font-heading);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
  margin: 2em 0 0.6em;
}
.entry-content h1:first-child, .entry-content h2:first-child, .entry-content h3:first-child, .entry-content h4:first-child, .entry-content h5:first-child, .entry-content h6:first-child {
  margin-top: 0;
}
.entry-content h2 {
  font-size: clamp(20px, 2.5vw, 26px);
}
.entry-content h3 {
  font-size: clamp(17px, 2vw, 21px);
}
.entry-content h4 {
  font-size: 18px;
}
.entry-content h5 {
  font-size: 16px;
}
.entry-content h6 {
  font-size: 14px;
  color: #555;
}
.entry-content p {
  margin: 0 0 1.2em;
}
.entry-content p:last-child {
  margin-bottom: 0;
}
.entry-content a {
  color: var(--gm-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.18s ease;
}
.entry-content a:hover {
  color: var(--gm-accent-hover);
}
.entry-content ul, .entry-content ol {
  margin: 0 0 1.2em;
  padding-left: 1.6em;
}
.entry-content ul li, .entry-content ol li {
  margin-bottom: 0.5em;
  line-height: 1.65;
}
.entry-content ul li:last-child, .entry-content ol li:last-child {
  margin-bottom: 0;
}
.entry-content ul {
  list-style: disc;
}
.entry-content ol {
  list-style: decimal;
}
.entry-content li > ul,
.entry-content li > ol {
  margin: 0.4em 0 0.2em;
}
.entry-content strong, .entry-content b {
  font-weight: 700;
  color: #1a1a1a;
}
.entry-content em, .entry-content i {
  font-style: italic;
}
.entry-content hr {
  border: none;
  border-top: 1px solid #ebebeb;
  margin: 2em 0;
}
.entry-content blockquote {
  margin: 1.5em 0;
  padding: 18px 24px;
  border-left: 3px solid var(--gm-accent);
  background: #f8f9fb;
  border-radius: 0 8px 8px 0;
  font-size: 15px;
  color: #444;
  font-style: italic;
}
.entry-content blockquote p {
  margin: 0;
}
.entry-content code {
  font-family: "Courier New", monospace;
  font-size: 0.875em;
  background: #f2f2f2;
  border-radius: 4px;
  padding: 2px 6px;
  color: #c0392b;
}
.entry-content pre {
  background: #1e2330;
  border-radius: 8px;
  padding: 20px 24px;
  overflow-x: auto;
  margin: 1.5em 0;
}
.entry-content pre code {
  background: none;
  color: #e0e0e0;
  padding: 0;
  font-size: 14px;
}
.entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
  font-size: 14px;
}
.entry-content table th, .entry-content table td {
  padding: 10px 14px;
  border: 1px solid #e8e8e8;
  text-align: left;
}
.entry-content table th {
  background: #f5f5f5;
  font-weight: 600;
  color: #1a1a1a;
}
.entry-content table tr:nth-child(even) td {
  background: #fafafa;
}
.entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1em 0;
  display: block;
}

.gsm-modal {
  display: flex;
  position: fixed;
  inset: 0;
  z-index: 8900;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  padding: 20px;
  visibility: hidden;
  pointer-events: none;
}
@media (max-width: 780px) {
  .gsm-modal {
    padding: 40px 16px 24px;
  }
}
.gsm-modal.is-open {
  visibility: visible;
  pointer-events: auto;
}

.gsm-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(6, 8, 16, 0.78);
  backdrop-filter: blur(12px) saturate(1.3);
  -webkit-backdrop-filter: blur(12px) saturate(1.3);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gsm-modal.is-open .gsm-backdrop {
  opacity: 1;
}

.gsm-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 880px;
  margin: auto;
  opacity: 0;
  transform: translateY(24px) scale(0.97);
  transition: opacity 0.32s ease, transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.gsm-modal.is-open .gsm-wrap {
  opacity: 1;
  transform: none;
}

.gsm-close {
  position: absolute;
  top: -18px;
  right: -18px;
  z-index: 10;
  width: 36px;
  height: 36px;
  background: var(--gm-accent);
  transform: rotate(45deg);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: filter 0.18s ease, transform 0.22s ease;
}
.gsm-close:hover {
  filter: brightness(1.18);
  transform: rotate(45deg) scale(1.12);
}
.gsm-close:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
.gsm-close svg {
  transform: rotate(-45deg);
  color: #0a0d12;
  flex-shrink: 0;
}

.gsm-box {
  background: #ffffff;
  border-radius: 12px;
  display: grid;
  grid-template-columns: 320px 1fr;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(0, 0, 0, 0.08);
}
@media (min-width: 781px) {
  .gsm-box {
    max-height: calc(100vh - 80px);
  }
}
@media (max-width: 780px) {
  .gsm-box {
    grid-template-columns: 1fr;
  }
}

.gsm-image {
  position: relative;
  min-height: 340px;
  overflow: hidden;
}
@media (max-width: 780px) {
  .gsm-image {
    min-height: 200px;
  }
}

.gsm-image-placeholder {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.gsm-image-placeholder[data-index="1"] {
  background: linear-gradient(145deg, #354060 0%, #1c2235 100%);
}

.gsm-image-placeholder[data-index="2"] {
  background: linear-gradient(145deg, #344a3e 0%, #1c2e26 100%);
}

.gsm-image-placeholder[data-index="3"] {
  background: linear-gradient(145deg, #2e3e52 0%, #182030 100%);
}

.gsm-image-placeholder[data-index="4"] {
  background: linear-gradient(145deg, #4a3a28 0%, #241a10 100%);
}

.gsm-image-placeholder[data-index="5"] {
  background: linear-gradient(145deg, #263858 0%, #111e30 100%);
}

.gsm-image-placeholder[data-index="6"] {
  background: linear-gradient(145deg, #4e3428 0%, #271810 100%);
}

.gsm-content {
  padding: 48px 44px 44px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
@media (max-width: 780px) {
  .gsm-content {
    padding: 32px 24px 28px;
    gap: 22px;
  }
}

.gsm-title {
  font-family: var(--gm-font-heading);
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.25;
  margin: 0;
}

.gsm-desc {
  font-size: 14px;
  color: #555;
  line-height: 1.75;
}
.gsm-desc p {
  margin: 0 0 12px;
}
.gsm-desc p:last-child {
  margin-bottom: 0;
}

.gsm-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
}
@media (max-width: 500px) {
  .gsm-details {
    grid-template-columns: 1fr;
  }
}

.gsm-details-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gsm-details-heading {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--gm-font-heading);
  font-size: 11px;
  font-weight: 700;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0;
}
.gsm-details-heading svg {
  color: var(--gm-accent);
  flex-shrink: 0;
}

.gsm-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.gsm-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  color: #333;
  line-height: 1.55;
}
.gsm-list li::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gm-accent);
  flex-shrink: 0;
  margin-top: 5px;
}

.gsm-actions {
  margin-top: auto;
  padding-top: 4px;
}

.gsm-cta-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  justify-content: center;
}

.gpm-modal {
  display: flex;
  position: fixed;
  inset: 0;
  z-index: 8900;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 20px;
  overflow-y: auto;
  visibility: hidden;
  pointer-events: none;
}
.gpm-modal.is-open {
  visibility: visible;
  pointer-events: auto;
}

.gpm-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(6, 8, 16, 0.65);
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gpm-modal.is-open .gpm-backdrop {
  opacity: 1;
}

.gpm-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 640px;
  opacity: 0;
  transform: translateY(24px) scale(0.97);
  transition: opacity 0.32s ease, transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.gpm-modal.is-open .gpm-wrap {
  opacity: 1;
  transform: none;
}

.gpm-close {
  position: absolute;
  top: -18px;
  right: -18px;
  z-index: 10;
  width: 36px;
  height: 36px;
  background: var(--gm-accent);
  transform: rotate(45deg);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: filter 0.18s ease, transform 0.22s ease;
}
.gpm-close:hover {
  filter: brightness(1.15);
  transform: rotate(45deg) scale(1.12);
}
.gpm-close:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
.gpm-close svg {
  transform: rotate(-45deg);
  color: #0a0d12;
  flex-shrink: 0;
}

.gpm-box {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
}

.gpm-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  max-height: 420px;
  flex-shrink: 0;
  overflow: hidden;
  cursor: zoom-in;
}

.gpm-image-main {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
  transition: transform 0.3s ease;
}
.gpm-image-main:hover {
  transform: scale(1.02);
}

.gpm-image-placeholder {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.gpm-thumbs {
  display: none;
  gap: 6px;
  padding: 8px 12px;
  background: #f5f5f7;
  border-bottom: 1px solid #eee;
  flex-wrap: nowrap;
  -webkit-overflow-scrolling: touch;
}
.gpm-thumbs::-webkit-scrollbar {
  height: 4px;
}
.gpm-thumbs::-webkit-scrollbar-track {
  background: transparent;
}
.gpm-thumbs::-webkit-scrollbar-thumb {
  background: #d0d0d8;
  border-radius: 2px;
}

.gpm-thumb {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 6px;
  border: 2px solid transparent;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: border-color 0.15s ease, opacity 0.15s ease;
  opacity: 0.65;
  padding: 0;
}
.gpm-thumb:hover {
  opacity: 1;
}
.gpm-thumb.is-active {
  border-color: var(--gm-accent);
  opacity: 1;
}

.gpm-image-placeholder[data-index="1"] {
  background: linear-gradient(135deg, #e8d5b0 0%, #c4a882 100%);
}

.gpm-image-placeholder[data-index="2"] {
  background: linear-gradient(135deg, #b8d8c8 0%, #80b8a8 100%);
}

.gpm-image-placeholder[data-index="3"] {
  background: linear-gradient(135deg, #ccd8ec 0%, #a0b4d0 100%);
}

.gpm-image-placeholder[data-index="4"] {
  background: linear-gradient(135deg, #f0d0b0 0%, #d4a880 100%);
}

.gpm-image-placeholder[data-index="5"] {
  background: linear-gradient(135deg, #b8d8ec 0%, #88bcd4 100%);
}

.gpm-image-placeholder[data-index="6"] {
  background: linear-gradient(135deg, #e8c0d4 0%, #c898b4 100%);
}

.gpm-content {
  padding: 32px 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 500px) {
  .gpm-content {
    padding: 24px 20px 28px;
  }
}

.gpm-meta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.gpm-cat-badge {
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 12px;
  background: rgba(0, 160, 227, 0.1);
  border-radius: 40px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--gm-accent);
}

.gpm-technique-badge {
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 12px;
  background: #f0f0f0;
  border-radius: 40px;
  font-size: 12px;
  font-weight: 500;
  color: #6b6b70;
}

.gpm-title {
  font-family: var(--gm-font-heading);
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.25;
  margin: 0;
}

.gpm-desc {
  font-size: 14px;
  color: #555;
  line-height: 1.75;
}
.gpm-desc p {
  margin: 0 0 10px;
}
.gpm-desc p:last-child {
  margin-bottom: 0;
}

.gpm-features-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
}

.gpm-features-heading {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--gm-font-heading);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #aaa;
  margin: 0;
}
.gpm-features-heading svg {
  color: var(--gm-accent);
}

.gpm-features-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
}
@media (max-width: 440px) {
  .gpm-features-list {
    grid-template-columns: 1fr;
  }
}
.gpm-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: #333;
  line-height: 1.5;
}
.gpm-features-list li::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gm-accent);
  flex-shrink: 0;
  margin-top: 5px;
}

.gpm-actions {
  margin-top: 4px;
}

.gpm-cta-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  justify-content: center;
}

.gpm-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}
.gpm-lightbox.is-open {
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
}

.gpm-lightbox-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  cursor: zoom-out;
}

.gpm-lightbox-img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  max-height: 92vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
  cursor: zoom-out;
  scale: 0.96;
  transition: scale 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.gpm-lightbox.is-open .gpm-lightbox-img {
  scale: 1;
}

.gpm-lightbox-close {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
}
.gpm-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.28);
}
.gpm-lightbox-close:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: var(--gm-white);
  overflow: hidden;
  background: linear-gradient(135deg, #0b1520 0%, #132030 45%, #0c1a28 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(24, 21, 8, 0.92) 0%, rgba(24, 21, 8, 0.72) 45%, rgba(24, 21, 8, 0.42) 70%, rgba(24, 21, 8, 0.25) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 860px) {
  .hero-inner {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.hero-content {
  max-width: 760px;
}

.hero-title {
  font-family: var(--gm-font-heading);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--gm-white);
  margin-bottom: 24px;
}
@media (max-width: 860px) {
  .hero-title {
    margin-bottom: 18px;
  }
}

.hero-subtitle {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 560px;
}
@media (max-width: 860px) {
  .hero-subtitle {
    margin-bottom: 24px;
  }
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 40px;
}
@media (max-width: 860px) {
  .hero-features {
    margin-bottom: 32px;
  }
}
.hero-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.78);
}
@media (max-width: 860px) {
  .hero-features li {
    font-size: 14px;
  }
}

.hero-feature-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--gm-accent);
  stroke-width: 2;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
@media (max-width: 400px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    justify-content: center;
    width: 100%;
  }
}

.hero-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  max-width: 480px;
}

.advantages-section {
  background: #ffffff;
  padding: 40px 0;
  border-bottom: 1px solid #f0f0ee;
}
@media (max-width: 860px) {
  .advantages-section {
    padding: 32px 0;
  }
}

.advantages-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
@media (max-width: 900px) {
  .advantages-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 400px) {
  .advantages-list {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.advantages-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 40px 36px;
  border-radius: 0;
  position: relative;
  transition: background 0.22s ease;
}
.advantages-item:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  bottom: 24px;
  width: 1px;
  background: var(--gm-light-bg);
}
@media (max-width: 900px) {
  .advantages-item:not(:first-child)::before {
    display: none;
  }
}
@media (max-width: 900px) {
  .advantages-item {
    border-bottom: 1px solid #ebebeb;
  }
  .advantages-item:nth-child(odd) {
    border-right: 1px solid #ebebeb;
  }
}
@media (max-width: 400px) {
  .advantages-item {
    padding: 20px 0;
    border-right: none !important;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
  }
  .advantages-item::before {
    display: none;
  }
}
.advantages-item:hover {
  background: rgba(245, 244, 240, 0.5);
}

.advantages-icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.22s ease;
  transform: rotate(45deg);
  margin-bottom: 5px;
}
.advantages-icon svg {
  transform: rotate(-45deg);
}
.advantages-item:hover .advantages-icon {
  transform: scale(1.06);
}
.advantages-item:hover .advantages-icon svg {
  transform: rotate(0deg);
}

.advantages-item--yellow .advantages-icon {
  background: #fef7da;
  color: #9a7800;
}

.advantages-item--cyan .advantages-icon {
  background: #d8f3f7;
  color: #0a8fa0;
}

.advantages-item--red .advantages-icon {
  background: #fde8e9;
  color: #b82830;
}

.advantages-item--gray .advantages-icon {
  background: #f0f0f0;
  color: #555560;
}

.advantages-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.advantages-title {
  font-family: var(--gm-font-heading);
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.35;
  margin-bottom: 0;
}

.advantages-desc {
  font-size: 14px;
  color: #6b6b70;
  line-height: 1.6;
  margin: 0;
}

.services-section {
  background: #f5f4f0;
  padding: 96px 0;
}
@media (max-width: 860px) {
  .services-section {
    padding: 64px 0;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
@media (max-width: 860px) {
  .section-header {
    margin-bottom: 40px;
  }
}

.section-title {
  font-family: var(--gm-font-heading);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 16px;
  color: #6b6b70;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

.services-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 400px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

.service-card {
  position: relative;
  height: 320px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  outline: none;
}
.service-card:focus-visible {
  box-shadow: 0 0 0 3px var(--gm-accent);
}
.service-card:hover .service-card-bg {
  transform: scale(1.04);
}
.service-card:hover .service-card-btn {
  opacity: 1;
}
.service-card:hover .service-card-overlay {
  background: linear-gradient(to top, rgba(10, 12, 20, 0.92) 0%, rgba(10, 12, 20, 0.55) 50%, rgba(10, 12, 20, 0.25) 100%);
}
@media (max-width: 860px) {
  .service-card {
    height: 260px;
  }
}

.service-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card--1 .service-card-bg {
  background-color: #2c3245;
  background-image: linear-gradient(145deg, #354060 0%, #1c2235 100%);
}

.service-card--2 .service-card-bg {
  background-color: #2a3830;
  background-image: linear-gradient(145deg, #344a3e 0%, #1c2e26 100%);
}

.service-card--3 .service-card-bg {
  background-color: #252e3e;
  background-image: linear-gradient(145deg, #2e3e52 0%, #182030 100%);
}

.service-card--4 .service-card-bg {
  background-color: #382c20;
  background-image: linear-gradient(145deg, #4a3a28 0%, #241a10 100%);
}

.service-card--5 .service-card-bg {
  background-color: #1e2c40;
  background-image: linear-gradient(145deg, #263858 0%, #111e30 100%);
}

.service-card--6 .service-card-bg {
  background-color: #3a2820;
  background-image: linear-gradient(145deg, #4e3428 0%, #271810 100%);
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 12, 20, 0.85) 0%, rgba(10, 12, 20, 0.6) 50%, rgba(10, 12, 20, 0.12) 100%);
  transition: background 0.35s ease;
}

.service-card-body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 28px 24px;
  gap: 10px;
}

.service-card-title {
  font-family: var(--gm-font-heading);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin: 0;
}

.service-card-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 400;
  color: white;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.2);
  opacity: 0.8;
  transition: opacity 0.25s ease;
  margin-top: 4px;
  width: fit-content;
  padding: 8px 16px;
}

.quiz-section {
  background: #ffffff;
  padding: 96px 0;
}
@media (max-width: 860px) {
  .quiz-section {
    padding: 64px 0;
  }
}
.quiz-section .gm-form-field, .quiz-section .gm-checkbox {
  margin-bottom: 20px;
}
.quiz-section .gm-form-label {
  color: #4a4a50;
}
.quiz-section .gm-form-input,
.quiz-section .gm-select {
  background: #ffffff;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  color: #1e2330;
}
.quiz-section .gm-form-input::placeholder,
.quiz-section .gm-select::placeholder {
  color: rgba(0, 0, 0, 0.35);
}
.quiz-section .gm-form-input:focus,
.quiz-section .gm-select:focus {
  border-color: var(--gm-accent);
  background: rgba(0, 160, 227, 0.03);
}
.quiz-section .gm-form-input.has-error,
.quiz-section .gm-select.has-error {
  border-color: #e05252;
}
.quiz-section .gm-select option {
  background: #ffffff;
  color: #1e2330;
}
.quiz-section .gm-select-arrow {
  color: rgba(0, 0, 0, 0.4);
}
.quiz-section .gm-checkbox-box {
  border-color: rgba(0, 0, 0, 0.22);
  background: #ffffff;
}
.quiz-section .gm-checkbox-box::after {
  border-color: #ffffff;
}
.quiz-section .gm-checkbox-label {
  color: #4a4a50;
}
.quiz-section .gm-link {
  color: var(--gm-accent);
}
.quiz-section .gm-link:hover {
  color: #006fa3;
}
.quiz-section .gm-form-error {
  color: #d43939;
}
.quiz-section .btn-secondary {
  color: #1e2330;
  border-color: rgba(0, 0, 0, 0.22);
}
.quiz-section .btn-secondary:hover {
  border-color: rgba(0, 0, 0, 0.45);
  background: rgba(0, 0, 0, 0.04);
}
.quiz-section .gm-success-title {
  color: #1a1a1a;
}
.quiz-section .gm-success-text {
  color: #6b6b70;
}

.quiz-card {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 48px 40px;
  background: #ffffff;
}
@media (max-width: 860px) {
  .quiz-card {
    padding: 32px 20px;
  }
}

.quiz-intro {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.quiz-intro-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gm-accent);
}

.quiz-intro-note {
  font-size: 14px;
  color: #6b6b70;
  line-height: 1.6;
  margin: -4px 0 32px;
  opacity: 0.6;
}

.quiz-start-btn {
  min-width: 240px;
}
.quiz-start-btn svg {
  flex-shrink: 0;
}

.quiz-body {
  max-width: 640px;
  margin: 0 auto;
}

.quiz-progress {
  margin-bottom: 32px;
}

.quiz-progress-label {
  font-size: 13px;
  font-weight: 600;
  color: #6b6b70;
  margin-bottom: 10px;
}

.quiz-progress-track {
  display: flex;
  gap: 4px;
}

.quiz-progress-seg {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: rgba(0, 0, 0, 0.08);
  transition: background 0.25s ease;
}
.quiz-progress-seg.is-done {
  background: var(--gm-accent);
}
.quiz-progress-seg.is-current {
  background: var(--gm-accent);
  opacity: 0.5;
}

.quiz-step-title {
  font-family: var(--gm-font-heading);
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
  margin-bottom: 16px;
}

.quiz-step-subtitle {
  font-size: 14px;
  color: #6b6b70;
  line-height: 1.6;
  margin-bottom: 24px;
}

.quiz-step.has-error .quiz-step-error {
  display: block;
}

.quiz-step-error {
  display: block;
  margin-top: 14px;
}

.quiz-options-group--list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quiz-option--list {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease;
}
.quiz-option--list:hover {
  border-color: var(--gm-accent);
}

.quiz-option-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.quiz-option-check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 1.5px solid rgba(0, 0, 0, 0.22);
  border-radius: 50%;
  position: relative;
  transition: border-color 0.18s ease;
}

.quiz-option--card .quiz-option-check,
input[type=checkbox].quiz-option-input + .quiz-option-check {
  border-radius: 5px;
}

.quiz-option-input:checked + .quiz-option-check,
.quiz-option-input:checked ~ .quiz-option-check {
  border-color: var(--gm-accent);
  background: var(--gm-accent);
}
.quiz-option-input:checked + .quiz-option-check::after,
.quiz-option-input:checked ~ .quiz-option-check::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(40deg);
}

.quiz-option-input:focus-visible ~ .quiz-option-check {
  outline: 2px solid var(--gm-accent);
  outline-offset: 2px;
}

.quiz-option--list:has(.quiz-option-input:checked) {
  border-color: var(--gm-accent);
  background: rgba(0, 160, 227, 0.05);
}

.quiz-option-label {
  font-size: 15px;
  color: #1e2330;
  line-height: 1.4;
}

.quiz-options-group--cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 900px) {
  .quiz-options-group--cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 400px) {
  .quiz-options-group--cards {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}

.quiz-option--card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.18s ease, transform 0.18s ease;
}
.quiz-option--card:hover {
  border-color: var(--gm-accent);
}
.quiz-option--card .quiz-option-check {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(255, 255, 255, 0.85);
  z-index: 1;
}

.quiz-option--card:has(.quiz-option-input:checked) {
  border-color: var(--gm-accent);
  box-shadow: 0 0 0 2px rgba(0, 160, 227, 0.18);
}

.quiz-option-media {
  width: 100%;
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  background-color: #f0f0f0;
}

.quiz-option-media--empty {
  background: linear-gradient(135deg, #eef1f4, #e2e6ea);
}

.quiz-option--card .quiz-option-label {
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  line-height: 1.35;
}

.quiz-dimensions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 18px;
}
@media (max-width: 400px) {
  .quiz-dimensions-grid {
    grid-template-columns: 1fr;
  }
}

.quiz-dimensions-unknown {
  margin-top: 6px;
}

.quiz-upload-zone {
  position: relative;
  border: 2px dashed rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  padding: 36px 20px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease;
  user-select: none;
  color: #6b6b70;
}
.quiz-upload-zone:hover, .quiz-upload-zone:focus-visible, .quiz-upload-zone.is-drag-over {
  border-color: var(--gm-accent);
  background: rgba(0, 160, 227, 0.04);
}
.quiz-upload-zone svg {
  color: var(--gm-accent);
  margin-bottom: 10px;
}
.quiz-upload-zone input {
  display: none;
}

.quiz-upload-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 13px;
  line-height: 1.5;
}

.quiz-upload-previews {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.quiz-preview-item {
  position: relative;
  width: 76px;
  height: 76px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #f5f4f0;
}

.quiz-preview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.quiz-preview-file {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 10px;
  text-align: center;
  padding: 4px;
  word-break: break-word;
  color: #6b6b70;
}

.quiz-preview-remove {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 18px;
  height: 18px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 12px;
  line-height: 16px;
  cursor: pointer;
}

.quiz-skip-btn {
  display: block;
  margin: 18px auto 0;
  background: none;
  border: none;
  color: #6b6b70;
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}
.quiz-skip-btn:hover {
  color: var(--gm-accent);
}

.quiz-submit-btn {
  width: 100%;
  margin-top: 8px;
  position: relative;
}
.quiz-submit-btn.is-loading {
  opacity: 0.85;
  pointer-events: none;
}
.quiz-submit-btn.is-loading::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2.5px solid rgba(255, 255, 255, 0.35);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: quiz-spin 0.7s linear infinite;
}
.quiz-submit-btn.is-loading #quiz-submit-label {
  opacity: 0;
}

@keyframes quiz-spin {
  to {
    transform: rotate(360deg);
  }
}
.quiz-disclaimer {
  text-align: center;
  font-size: 12px;
  color: #6b6b70;
  margin-top: 14px;
}

.quiz-back-link {
  display: block;
  margin: 20px auto 0;
  background: none;
  border: none;
  color: #6b6b70;
  font-size: 14px;
  font-family: var(--gm-font-body);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.18s ease;
}
.quiz-back-link:hover {
  color: var(--gm-accent);
}

.quiz-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 0;
}

.quiz-nav {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 32px;
  position: sticky;
  bottom: 0;
  background: #ffffff;
  padding: 14px 0 16px;
  z-index: 10;
}
.quiz-nav::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.08), transparent);
}

.quiz-nav-back {
  flex: 0 0 auto;
}

.quiz-nav-next {
  flex: 1;
}

.techniques-section {
  position: relative;
  background: linear-gradient(155deg, #1a1208 0%, #2a1f0e 55%, #1c160a 100%);
  padding: 96px 0;
  overflow: hidden;
}
.techniques-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/tech.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
.techniques-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, rgba(58, 51, 3, 0.88) 0%, rgba(42, 31, 14, 0.82) 55%, rgba(3, 106, 129, 0.9) 100%);
  z-index: 1;
}
.techniques-section > .container {
  position: relative;
  z-index: 2;
}
@media (max-width: 860px) {
  .techniques-section {
    padding: 64px 0;
  }
}

.techniques-header {
  margin-bottom: 56px;
}

.section-title--light {
  color: var(--gm-white);
}

.section-subtitle--light {
  color: rgba(255, 255, 255, 0.5);
}

.techniques-grid {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 900px) {
  .techniques-grid {
    grid-template-columns: 1fr;
  }
}

.technique-card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 32px 36px;
  background: rgba(0, 0, 0, 0.65);
  border-radius: 12px;
  transition: background 0.22s ease;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}
.technique-card:hover {
  background: rgba(0, 0, 0, 0.55);
}
@media (max-width: 400px) {
  .technique-card {
    padding: 24px 20px;
    gap: 18px;
  }
}

.technique-icon-wrap {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transform: rotate(45deg);
}
.technique-icon-wrap svg {
  transform: rotate(-45deg);
}

.technique-icon-wrap--yellow {
  background: rgba(255, 210, 60, 0.14);
  color: #ffd23c;
}

.technique-icon-wrap--cyan {
  background: rgba(61, 184, 202, 0.1);
  color: var(--gm-accent);
}

.technique-icon-wrap--red {
  background: rgba(212, 64, 74, 0.1);
  color: #d4404a;
}

.technique-icon-wrap--gray {
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.55);
}

.technique-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 4px;
}

.technique-title {
  font-family: var(--gm-font-heading);
  font-size: 19px;
  font-weight: 700;
  color: var(--gm-white);
  line-height: 1.25;
  margin: 0;
}

.technique-about {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0;
}

.technique-usage {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.55;
  margin: 0;
}

.techniques-cta {
  display: flex;
  justify-content: center;
  margin-top: 52px;
}

.portfolio-section {
  background: #f5f4f0;
  padding: 96px 0;
}
.portfolio-section--page {
  padding-top: 48px;
}
@media (max-width: 860px) {
  .portfolio-section {
    padding: 64px 0;
  }
  .portfolio-section--page {
    padding-top: 32px;
  }
}

.portfolio-filter {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
@media (max-width: 860px) {
  .portfolio-filter {
    gap: 6px;
    margin-bottom: 32px;
  }
}

.portfolio-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 48px;
  padding: 0 17px;
  border-radius: 40px;
  border: 1.5px solid #ddddd8;
  background: transparent;
  font-family: var(--gm-font-body);
  font-size: 14px;
  font-weight: 500;
  color: #2c2c2c;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}
.portfolio-filter-btn:hover {
  border-color: var(--gm-accent);
  color: var(--gm-accent);
}
.portfolio-filter-btn.is-active {
  background: var(--gm-accent);
  border-color: var(--gm-accent);
  color: #fff;
}
.portfolio-filter-btn svg,
.portfolio-filter-btn .portfolio-filter-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  object-fit: contain;
  pointer-events: none;
}
.portfolio-filter-btn svg {
  stroke-width: 2;
}
.portfolio-filter-btn .portfolio-filter-icon {
  display: inline-block;
}
@media (max-width: 400px) {
  .portfolio-filter-btn {
    height: 34px;
    font-size: 13px;
    padding: 0 14px;
    gap: 6px;
  }
  .portfolio-filter-btn .portfolio-filter-icon {
    width: 16px;
    height: 16px;
  }
}

.portfolio-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 400px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

.portfolio-card {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.24s ease, transform 0.24s ease, opacity 0.22s ease;
  outline: none;
}
.portfolio-card:hover {
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.13);
  transform: translateY(-3px);
}
.portfolio-card:focus-visible {
  box-shadow: 0 0 0 3px var(--gm-accent);
}
.portfolio-card.is-hidden {
  display: none;
}

.portfolio-card-photo {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.portfolio-card-photo:not(:has(.portfolio-card-img)) {
  display: block;
}

.portfolio-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.portfolio-card:hover .portfolio-card-img {
  transform: scale(1.05);
}

.portfolio-card-photo--1 {
  background: linear-gradient(135deg, #e8d5b0 0%, #c4a882 100%);
}

.portfolio-card-photo--2 {
  background: linear-gradient(135deg, #b8d8c8 0%, #80b8a8 100%);
}

.portfolio-card-photo--3 {
  background: linear-gradient(135deg, #ccd8ec 0%, #a0b4d0 100%);
}

.portfolio-card-photo--4 {
  background: linear-gradient(135deg, #f0d0b0 0%, #d4a880 100%);
}

.portfolio-card-photo--5 {
  background: linear-gradient(135deg, #b8d8ec 0%, #88bcd4 100%);
}

.portfolio-card-photo--6 {
  background: linear-gradient(135deg, #e8c0d4 0%, #c898b4 100%);
}

.portfolio-card-hover {
  position: absolute;
  inset: 0;
  background: rgba(0, 160, 227, 0.84);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  opacity: 0;
  transition: opacity 0.22s ease;
}
.portfolio-card:hover .portfolio-card-hover {
  opacity: 1;
}

.portfolio-card-info {
  padding: 16px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.portfolio-card-cat {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--gm-accent);
}

.portfolio-card-title {
  font-family: var(--gm-font-heading);
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
  margin: 0;
}

.portfolio-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 52px;
}
.portfolio-cta .btn-dark,
.portfolio-cta .js-portfolio-load-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.portfolio-cta .btn-dark.is-loading,
.portfolio-cta .js-portfolio-load-more.is-loading {
  opacity: 0.7;
  cursor: default;
  pointer-events: none;
}
.portfolio-cta .btn-dark.is-loading::before,
.portfolio-cta .js-portfolio-load-more.is-loading::before {
  content: "";
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: gm-spin 0.8s linear infinite;
}
.portfolio-cta .btn-dark.is-loading svg,
.portfolio-cta .js-portfolio-load-more.is-loading svg {
  display: none;
}

@keyframes gm-spin {
  to {
    transform: rotate(360deg);
  }
}
.portfolio-empty {
  text-align: center;
  padding: 48px 20px;
  color: #666;
  font-size: 16px;
}

.reviews-section {
  background: var(--gm-light-bg);
  padding: 96px 0 80px;
  overflow: hidden;
}
@media (max-width: 860px) {
  .reviews-section {
    padding: 64px 0 56px;
  }
}
.reviews-section .section-title {
  color: #1a1a1a;
}

.reviews-scroll-wrap {
  position: relative;
  --rs-columns: 3;
  --rs-gap: 20px;
  --rs-item-min: 320px;
}

.reviews-arrow {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: #1a1a1a;
  color: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
}
.reviews-arrow:hover:not(:disabled) {
  background: var(--gm-accent);
  transform: translateY(-50%) scale(1.08);
}
.reviews-arrow:disabled {
  opacity: 0.22;
  cursor: not-allowed;
}
.reviews-arrow--prev {
  left: 16px;
}
.reviews-arrow--next {
  right: 16px;
}
@media (min-width: 861px) {
  .reviews-arrow {
    display: flex;
  }
}

.reviews-scroll-wrap--no-overflow .reviews-arrow {
  display: none !important;
}

.reviews-track {
  --rs-px: 40px;
  display: flex;
  align-items: flex-start;
  overflow-x: auto;
  overflow-y: visible;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  gap: var(--rs-gap);
  margin-left: calc(-1 * var(--rs-px));
  margin-right: calc(-1 * var(--rs-px));
  padding-left: var(--rs-px);
  padding-right: var(--rs-px);
  padding-top: 12px;
  padding-bottom: 16px;
}
.reviews-track::-webkit-scrollbar {
  display: none;
}
.reviews-track > * {
  flex: 0 0 max(var(--rs-item-min), (100% - var(--rs-gap) * (var(--rs-columns) - 1)) / var(--rs-columns));
  min-width: 0;
}
@media (max-width: 860px) {
  .reviews-track {
    scroll-snap-type: x mandatory;
    scroll-padding-left: var(--rs-px);
  }
  .reviews-track > * {
    flex: 0 0 min(var(--rs-item-min), 85vw);
    scroll-snap-align: start;
  }
}

.reviews-card {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 20px 2px 12px rgba(0, 0, 0, 0.03);
  transition: box-shadow 0.22s ease, transform 0.22s ease;
}
.reviews-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

.reviews-card--screenshot {
  display: flex;
  flex-direction: column;
}

.reviews-screenshot-btn {
  position: relative;
  display: block;
  width: 100%;
  border: none;
  padding: 0;
  background: #f0eeea;
  cursor: zoom-in;
  overflow: hidden;
}
.reviews-screenshot-btn:focus-visible {
  outline: 3px solid var(--gm-accent);
  outline-offset: 2px;
}

.reviews-screenshot-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.reviews-screenshot-btn:hover .reviews-screenshot-img {
  transform: scale(1.02);
}

.reviews-screenshot-zoom {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.reviews-screenshot-btn:hover .reviews-screenshot-zoom {
  opacity: 1;
}

.reviews-card--text {
  display: flex;
  flex-direction: column;
  padding: 28px 28px 24px;
  gap: 16px;
}
@media (max-width: 400px) {
  .reviews-card--text {
    padding: 22px 20px 20px;
  }
}

.reviews-stars {
  display: flex;
  gap: 3px;
}

.reviews-star {
  fill: #ddd;
  stroke: none;
}
.reviews-star--filled {
  fill: #f5b400;
}

.reviews-text {
  font-size: 15px;
  color: #2a2a35;
  line-height: 1.75;
  margin: 0;
  flex: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 8;
  overflow: hidden;
}

.reviews-card-footer {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid #f0eeea;
  padding-top: 14px;
  margin-top: auto;
}

.reviews-card-author {
  font-weight: 700;
  font-size: 14px;
  color: #1a1a1a;
}

.reviews-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  flex-wrap: wrap;
}

.reviews-card--screenshot .reviews-card-meta {
  background: #fafaf9;
  border-top: 1px solid #f0eeea;
}

.reviews-card-source {
  font-size: 12px;
  font-weight: 600;
  color: var(--gm-accent);
  background: rgba(0, 160, 227, 0.08);
  border-radius: 4px;
  padding: 2px 8px;
}

.reviews-card-date {
  font-size: 12px;
  color: #aaa;
}

.reviews-photos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.reviews-photo-thumb {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  border: none;
  padding: 0;
  border-radius: 8px;
  overflow: hidden;
  cursor: zoom-in;
  background: #f0eeea;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.reviews-photo-thumb:hover {
  transform: scale(1.05);
  opacity: 0.88;
}
.reviews-photo-thumb:focus-visible {
  outline: 3px solid var(--gm-accent);
  outline-offset: 2px;
}
.reviews-photo-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.reviews-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reviews-lightbox[hidden] {
  display: none;
}

.reviews-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  cursor: pointer;
}

.reviews-lightbox-inner {
  position: relative;
  z-index: 1;
  max-width: min(680px, 92vw);
  max-height: 92vh;
  overflow-y: auto;
  overflow-x: hidden;
  border-radius: 10px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.reviews-lightbox-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.reviews-lightbox-close {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s ease;
}
.reviews-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.25);
}

.reviews-lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s ease, opacity 0.18s ease;
}
.reviews-lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.28);
}
.reviews-lightbox-nav:disabled {
  opacity: 0.25;
  cursor: not-allowed;
}
.reviews-lightbox-nav[hidden] {
  display: none;
}
.reviews-lightbox-nav--prev {
  left: 20px;
}
.reviews-lightbox-nav--next {
  right: 20px;
}
@media (max-width: 860px) {
  .reviews-lightbox-nav {
    width: 40px;
    height: 40px;
  }
  .reviews-lightbox-nav--prev {
    left: 8px;
  }
  .reviews-lightbox-nav--next {
    right: 8px;
  }
}

.reviews-lightbox-counter {
  text-align: center;
  margin-top: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.04em;
}
.reviews-lightbox-counter[hidden] {
  display: none;
}

.vsekupe-section {
  background: #f5f4f0;
  padding: 0 var(--gm-gutter) 64px;
  overflow: hidden;
}

.vsekupe-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  min-height: 420px;
  width: 100%;
  max-width: var(--gm-container);
  margin-inline: auto;
  background: #f7ebe5;
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(58, 36, 28, 0.18);
  overflow: hidden;
}
@media (max-width: 1100px) {
  .vsekupe-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}
@media (max-width: 900px) {
  .vsekupe-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }
}

.vsekupe-photo {
  position: relative;
  overflow: hidden;
  grid-column: 2;
  grid-row: 1;
}
@media (max-width: 900px) {
  .vsekupe-photo {
    grid-column: 1;
    grid-row: 2;
    height: 340px;
    order: 2;
  }
}
@media (max-width: 860px) {
  .vsekupe-photo {
    height: 260px;
  }
}

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

.vsekupe-photo-logo {
  position: absolute;
  top: 30px;
  right: 30px;
  background-color: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  border-radius: 30px;
  padding: 30px;
}

.vsekupe-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #f7ebe5 0%, rgba(247, 235, 229, 0.82) 20%, rgba(247, 235, 229, 0.38) 48%, rgba(247, 235, 229, 0) 70%);
}
@media (max-width: 900px) {
  .vsekupe-photo-overlay {
    background: linear-gradient(to bottom, #f7ebe5 0%, rgba(247, 235, 229, 0.55) 28%, rgba(247, 235, 229, 0) 58%);
  }
}

.vsekupe-content {
  display: flex;
  align-items: center;
  grid-column: 1;
  grid-row: 1;
  padding: 48px 48px 48px 56px;
}
@media (max-width: 900px) {
  .vsekupe-content {
    grid-column: 1;
    grid-row: 1;
    order: 1;
    padding: 44px 36px 32px;
  }
}
@media (max-width: 860px) {
  .vsekupe-content {
    padding: 36px 24px 28px;
  }
}

.vsekupe-content-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 540px;
  padding-inline: 0;
}

.vsekupe-title {
  font-family: var(--gm-font-heading);
  font-size: clamp(20px, 2.8vw, 28px);
  font-weight: 700;
  color: #3c2320;
  line-height: 1.2;
  margin-bottom: 16px;
}

.vsekupe-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.vsekupe-text p {
  font-size: 15px;
  color: rgba(41, 26, 22, 0.82);
  line-height: 1.6;
  margin: 0;
}

.vsekupe-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #a04654;
  color: #fff;
  font-family: var(--gm-font-body);
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--gm-radius-btn);
  text-decoration: none;
  transition: background 0.18s ease, transform 0.15s ease;
  justify-content: center;
}
.vsekupe-btn:hover {
  background: #8c3744;
}
.vsekupe-btn:active {
  transform: scale(0.97);
}
.vsekupe-btn svg {
  flex-shrink: 0;
  opacity: 0.9;
}

.vsekupe-card {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}

.vsekupe-logo-img {
  max-width: 150px;
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.vsekupe-card-caption {
  font-size: 14px;
  font-weight: 600;
  color: #5b3b36;
  margin: 0;
  padding-top: 4px;
  width: 100%;
  text-align: left;
}

.vsekupe-card-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  margin-left: 0;
}
.vsekupe-card-features span {
  font-size: 12px;
  color: rgba(44, 29, 26, 0.75);
  text-align: left;
}
.vsekupe-card-features span::before {
  content: "✓ ";
  color: #a04654;
  font-weight: 700;
  margin-right: 4px;
}

.designer-section {
  background: #0a0d14;
  overflow: hidden;
}

.designer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
@media (max-width: 1100px) {
  .designer-inner {
    grid-template-columns: 1.1fr 0.9fr;
  }
}
@media (max-width: 900px) {
  .designer-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }
}

.designer-content {
  display: flex;
  align-items: center;
  padding: 80px 0;
}
@media (max-width: 860px) {
  .designer-content {
    padding: 64px 0;
  }
}

.designer-content-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 600px;
}

.designer-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gm-accent);
  margin-bottom: 18px;
}

.designer-title {
  font-family: var(--gm-font-heading);
  font-size: clamp(24px, 3.2vw, 38px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 24px;
}

.designer-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.designer-text p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.75;
  margin: 0;
}

.designer-list-wrap {
  margin-bottom: 40px;
}

.designer-list-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 14px;
}

.designer-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px 24px;
}
@media (max-width: 400px) {
  .designer-list {
    grid-template-columns: 1fr;
  }
}
.designer-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.45;
}
.designer-list li::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gm-accent);
  flex-shrink: 0;
  margin-top: 5px;
}

.designer-photo {
  position: relative;
  overflow: hidden;
}
@media (max-width: 900px) {
  .designer-photo {
    height: 340px;
  }
}
@media (max-width: 860px) {
  .designer-photo {
    height: 260px;
  }
}

.designer-photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.designer-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 13, 20, 0.55) 0%, rgba(10, 13, 20, 0.1) 50%, rgba(10, 13, 20, 0) 100%);
}
@media (max-width: 900px) {
  .designer-photo-overlay {
    background: linear-gradient(to bottom, rgba(10, 13, 20, 0) 30%, rgba(10, 13, 20, 0.6) 100%);
  }
}

.process-section {
  background: #ffffff;
  padding: 96px 0;
}
@media (max-width: 860px) {
  .process-section {
    padding: 64px 0;
  }
}
.process-section .section-title {
  color: #1a1a1a;
}

.process-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  counter-reset: steps;
  position: relative;
}
.process-steps::before {
  content: "";
  position: absolute;
  top: 36px;
  left: calc(10% + 18px);
  right: calc(10% + 18px);
  height: 1px;
  background: linear-gradient(to right, rgba(0, 160, 227, 0.15) 0%, rgba(0, 160, 227, 0.4) 50%, rgba(0, 160, 227, 0.15) 100%);
  z-index: 0;
}
@media (max-width: 1100px) {
  .process-steps {
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
  }
}
@media (max-width: 980px) {
  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
  }
  .process-steps::before {
    display: none;
  }
}
@media (max-width: 400px) {
  .process-steps {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}
@media (max-width: 980px) {
  .process-step {
    align-items: flex-start;
    text-align: left;
    padding: 0;
  }
}
@media (max-width: 400px) {
  .process-step {
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
  }
}

.process-step-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gm-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: white;
  flex-shrink: 0;
  position: relative;
}
.process-step-icon svg {
  width: 32px;
  height: 32px;
}
@media (max-width: 980px) {
  .process-step-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 14px;
  }
  .process-step-icon svg {
    width: 24px;
    height: 24px;
  }
}
@media (max-width: 400px) {
  .process-step-icon {
    margin-bottom: 0;
    width: 48px;
    height: 48px;
  }
  .process-step-icon::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 28px;
    background: linear-gradient(to bottom, rgba(0, 160, 227, 0.35) 0%, rgba(0, 160, 227, 0.1) 100%);
  }
}

@media (max-width: 400px) {
  .process-step:last-child .process-step-icon::after {
    display: none;
  }
}

.process-step-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.process-step-num {
  font-family: var(--gm-font-heading);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--gm-accent);
  opacity: 0.6;
  margin-bottom: 0;
}

.process-step-title {
  font-family: var(--gm-font-heading);
  font-size: 17px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
  margin-bottom: 10px;
}

.process-step-text {
  font-size: 13px;
  color: #6b6b70;
  line-height: 1.65;
  margin: 0;
}

.process-cta {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}
.process-cta .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 860px) {
  .process-cta {
    margin-top: 44px;
  }
  .process-cta .btn-primary {
    width: 100%;
    justify-content: center;
  }
}

.calc-section {
  position: relative;
  background: var(--gm-dark-gradient);
  padding: 96px 0;
  overflow: hidden;
}
.calc-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/calc.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1;
  z-index: 0;
}
.calc-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gm-dark-gradient);
  z-index: 1;
}
.calc-section > .container {
  position: relative;
  z-index: 2;
}
@media (max-width: 860px) {
  .calc-section {
    padding: 64px 0;
  }
}
.calc-section .gm-form-label {
  color: rgba(255, 255, 255, 0.75);
}
.calc-section .gm-form-input {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}
.calc-section .gm-form-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.calc-section .gm-form-input:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gm-accent);
  color: #fff;
}
.calc-section .gm-form-input.has-error {
  border-color: #e05252;
}
.calc-section .gm-form-error {
  color: #f08080;
}
.calc-section .gm-checkbox-box {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
}
.calc-section .gm-checkbox-label {
  color: rgba(255, 255, 255, 0.6);
}
.calc-section .gm-link {
  color: var(--gm-accent);
}
.calc-section .gm-link:hover {
  color: #fff;
}
.calc-section .gm-required {
  color: #f08080;
}
.calc-section .gm-success-title {
  color: #fff;
}
.calc-section .gm-success-text {
  color: rgba(255, 255, 255, 0.65);
}
.calc-section .gm-success-icon {
  background: rgba(91, 184, 201, 0.15);
  border-color: rgba(91, 184, 201, 0.4);
  color: var(--gm-accent);
}

.calc-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 72px;
  align-items: start;
}
@media (max-width: 980px) {
  .calc-inner {
    grid-template-columns: 1fr 1.3fr;
    gap: 48px;
  }
}
@media (max-width: 900px) {
  .calc-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.calc-title {
  font-family: var(--gm-font-heading);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 20px;
}

.calc-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  margin-bottom: 40px;
}

.calc-trust {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.calc-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.calc-trust-item strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2px;
}
.calc-trust-item span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
}

.calc-trust-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(91, 184, 201, 0.12);
  border: 1px solid rgba(91, 184, 201, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gm-accent);
}

.calc-form-wrap {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  padding: 40px;
}
@media (max-width: 860px) {
  .calc-form-wrap {
    padding: 28px 20px;
    border-radius: 12px;
  }
}

.calc-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 20px;
}
@media (max-width: 400px) {
  .calc-form-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.gm-form-textarea {
  resize: vertical;
  min-height: 96px;
  font-family: var(--gm-font-body);
  line-height: 1.6;
  padding-top: 10px;
}

.calc-upload-hint {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 3px;
  letter-spacing: 0;
  text-transform: none;
}

.calc-upload-zone {
  position: relative;
  border: 2px dashed rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  padding: 32px 20px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease;
  user-select: none;
}
.calc-upload-zone:hover, .calc-upload-zone:focus-visible, .calc-upload-zone.is-drag-over {
  border-color: var(--gm-accent);
  background: rgba(91, 184, 201, 0.06);
  outline: none;
}
.calc-upload-zone.is-drag-over .calc-upload-empty {
  color: var(--gm-accent);
}

.calc-upload-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.calc-upload-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
  line-height: 1.55;
  pointer-events: none;
}
.calc-upload-empty svg {
  opacity: 0.6;
}
.calc-upload-empty u {
  color: var(--gm-accent);
  text-decoration-color: rgba(91, 184, 201, 0.5);
  cursor: pointer;
}

.calc-upload-previews {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}
.calc-upload-previews:empty {
  display: none;
}

.calc-preview-item {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.06);
}
.calc-preview-item:hover .calc-preview-remove {
  opacity: 1;
}

.calc-preview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.calc-preview-file {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 6px;
}
.calc-preview-file svg {
  color: rgba(255, 255, 255, 0.5);
}
.calc-preview-file span {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  word-break: break-all;
  line-height: 1.3;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.calc-preview-remove {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: none;
  background: rgba(10, 13, 20, 0.75);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.15s ease, background 0.15s ease;
  padding: 0;
  line-height: 1;
  font-size: 14px;
}
.calc-preview-remove:hover {
  background: rgba(200, 50, 50, 0.8);
}
@media (max-width: 860px) {
  .calc-preview-remove {
    opacity: 1;
  }
}

.calc-submit-btn {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}

.calc-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
  gap: 16px;
  min-height: 280px;
}

.about-section {
  background: #ffffff;
  padding: 96px 0;
}
@media (max-width: 860px) {
  .about-section {
    padding: 64px 0;
  }
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 980px) {
  .about-inner {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
  }
}
@media (max-width: 900px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.about-eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gm-accent);
  margin-bottom: 16px;
}

.about-title {
  font-family: var(--gm-font-heading);
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 24px;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}
.about-text p {
  font-size: 16px;
  color: #4a4a55;
  line-height: 1.75;
  margin: 0;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-bottom: 28px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e4e3de;
}
@media (max-width: 1100px) {
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

.about-stat {
  background: #fff;
  padding: 20px 16px;
  text-align: center;
  border-right: 1px solid #e4e3de;
}
.about-stat:last-child {
  border-right: 0;
}
@media (max-width: 1100px) {
  .about-stat {
    border-bottom: 1px solid #e4e3de;
    border-right: 1px solid #e4e3de;
  }
  .about-stat:nth-child(2n) {
    border-right: 0;
  }
  .about-stat:nth-last-child(-n+2) {
    border-bottom: 0;
  }
}

.about-stat-value {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--gm-accent);
  margin-bottom: 4px;
}

.about-stat-label {
  font-size: 11px;
  color: #888;
  line-height: 1.3;
}

.about-equipment {
  font-size: 13px;
  color: #888;
  line-height: 1.6;
}

.about-equipment-label {
  font-weight: 600;
  color: #555;
  margin-right: 4px;
}

.about-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  border-radius: 14px;
  overflow: hidden;
}
@media (max-width: 900px) {
  .about-gallery {
    max-height: 420px;
  }
}

.about-gallery-item {
  overflow: hidden;
  aspect-ratio: 1/1;
}

.about-gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.about-gallery-item:hover .about-gallery-img {
  transform: scale(1.04);
}

.faq-section {
  background: #ffffff;
  padding: 96px 0;
}
@media (max-width: 860px) {
  .faq-section {
    padding: 64px 0;
  }
}
.faq-section .section-title {
  color: #1a1a1a;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #eaeaea;
}

.faq-item {
  border-bottom: 1px solid #eaeaea;
}
.faq-item:last-child {
  border-bottom: 0;
}
.faq-item.is-open .faq-icon {
  transform: rotate(180deg);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 28px;
  background: #fff;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--gm-font-heading);
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.4;
  transition: background 0.15s ease;
}
.faq-question:hover {
  background: #fafafa;
}
.faq-question[aria-expanded=true] {
  color: var(--gm-accent);
  background: #fafafa;
}
@media (max-width: 860px) {
  .faq-question {
    padding: 18px 20px;
    font-size: 16px;
  }
}

.faq-icon {
  flex-shrink: 0;
  color: var(--gm-accent);
  transition: transform 0.25s ease;
}

.faq-answer {
  padding: 0 28px 22px;
  background: #fafafa;
}
.faq-answer[hidden] {
  display: none;
}
.faq-answer p {
  font-size: 15px;
  color: #555;
  line-height: 1.75;
  margin: 0;
}
@media (max-width: 860px) {
  .faq-answer {
    padding: 0 20px 18px;
  }
}

.contacts-section {
  background: #f5f4f0;
  overflow: hidden;
}

.contacts-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
@media (max-width: 1100px) {
  .contacts-inner {
    grid-template-columns: 1.1fr 0.9fr;
  }
}
@media (max-width: 900px) {
  .contacts-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }
}

.contacts-info {
  display: flex;
  align-items: center;
  padding: 80px 0;
}
@media (max-width: 860px) {
  .contacts-info {
    padding: 64px 0;
  }
}

.contacts-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 560px;
}

.contacts-eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gm-accent);
  margin-bottom: 16px;
}

.contacts-title {
  font-family: var(--gm-font-heading);
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 16px;
}

.contacts-lead {
  font-size: 16px;
  color: #5a5a66;
  line-height: 1.7;
  margin-bottom: 36px;
}

.contacts-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.contacts-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contacts-detail-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(91, 184, 201, 0.1);
  border: 1px solid rgba(91, 184, 201, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gm-accent);
}

.contacts-detail-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #999;
  margin-bottom: 4px;
}

.contacts-detail-value {
  display: block;
  font-size: 15px;
  color: #1a1a1a;
  line-height: 1.5;
}

.contacts-link {
  text-decoration: none;
  transition: color 0.15s ease;
}
.contacts-link:hover {
  color: var(--gm-accent);
}

.contacts-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contacts-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--gm-radius-btn, 8px);
  font-family: var(--gm-font-body);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.12s ease;
  border: 1.5px solid transparent;
}
.contacts-btn:active {
  transform: scale(0.96);
}
.contacts-btn--primary {
  background: var(--gm-accent);
  color: #fff;
  border-color: var(--gm-accent);
}
.contacts-btn--primary:hover {
  background: var(--gm-accent-hover, #4aa8ba);
  border-color: var(--gm-accent-hover, #4aa8ba);
}
.contacts-btn--secondary {
  background: #229ED9;
  color: #fff;
  border-color: #229ED9;
}
.contacts-btn--secondary:hover {
  background: #1a8bc0;
  border-color: #1a8bc0;
}
.contacts-btn--outline {
  background: transparent;
  color: #2a2a35;
  border-color: rgba(0, 0, 0, 0.18);
}
.contacts-btn--outline:hover {
  border-color: var(--gm-accent);
  color: var(--gm-accent);
  background: rgba(91, 184, 201, 0.06);
}

.contacts-map {
  position: relative;
  overflow: hidden;
}
@media (max-width: 900px) {
  .contacts-map {
    height: 380px;
  }
}
@media (max-width: 860px) {
  .contacts-map {
    height: 300px;
  }
}
.contacts-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: sepia(30%) saturate(0.6) brightness(0.95) contrast(0.95);
}

.cpage-header {
  background: #fff;
  padding-bottom: 56px;
  border-bottom: 1px solid #efefef;
}

.cpage-intro {
  margin-bottom: 40px;
}

.cpage-title {
  font-family: var(--gm-font-heading);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  margin: 24px 0 12px;
}

.cpage-subtitle {
  font-size: clamp(15px, 1.5vw, 17px);
  color: #555;
  line-height: 1.65;
  margin: 0;
  max-width: 620px;
}

.cpage-details {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 40px;
  margin-bottom: 36px;
}
@media (max-width: 900px) {
  .cpage-details {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.cpage-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.cpage-detail-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(0, 160, 227, 0.08);
  border: 1px solid rgba(0, 160, 227, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gm-accent);
}

.cpage-detail-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 3px;
}

.cpage-detail-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #999;
}

.cpage-detail-value {
  font-size: 15px;
  color: #1a1a1a;
  line-height: 1.5;
}

.cpage-detail-link {
  text-decoration: none;
  transition: color 0.15s ease;
}
.cpage-detail-link:hover {
  color: var(--gm-accent);
}

.cpage-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cpage-map-section {
  position: relative;
  height: 500px;
  overflow: hidden;
  background: #e8e6e0;
}
@media (max-width: 900px) {
  .cpage-map-section {
    height: auto;
    display: flex;
    flex-direction: column;
  }
}

.cpage-map-frame {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}
@media (max-width: 900px) {
  .cpage-map-frame {
    position: relative;
    inset: auto;
    height: 360px;
    flex-shrink: 0;
    order: 2;
  }
}
@media (max-width: 860px) {
  .cpage-map-frame {
    height: 280px;
  }
}
.cpage-map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  border: none;
  display: block;
}

.cpage-map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: min(380px, 42%);
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 44px;
  box-shadow: 4px 0 32px rgba(0, 0, 0, 0.08);
}
@media (max-width: 1100px) {
  .cpage-map-overlay {
    padding: 40px 36px;
  }
}
@media (max-width: 900px) {
  .cpage-map-overlay {
    position: relative;
    inset: auto;
    width: 100%;
    order: 1;
    padding: 36px var(--gm-gutter, 20px);
    box-shadow: none;
    border-bottom: 1px solid #efefef;
  }
}

.cpage-map-overlay-title {
  font-family: var(--gm-font-heading);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  margin: 0 0 16px;
}

.cpage-map-overlay-text {
  font-size: 15px;
  color: #1a1a1a;
  line-height: 1.6;
  margin: 0 0 10px;
}

.cpage-map-overlay-note {
  font-size: 14px;
  color: #777;
  line-height: 1.6;
  margin: 0 0 24px;
}

.cpage-map-route-btn {
  align-self: flex-start;
}

.about-page-header {
  background: #fff;
  padding-bottom: 56px;
  border-bottom: 1px solid #efefef;
}
.about-page-header .breadcrumbs {
  padding-bottom: 0;
}

.about-page-intro {
  margin-bottom: 32px;
}

.about-page-title {
  font-family: var(--gm-font-heading);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  margin: 24px 0 12px;
}

.about-page-subtitle {
  font-size: clamp(15px, 1.5vw, 17px);
  color: #555;
  line-height: 1.65;
  margin: 0;
  max-width: 640px;
}

.about-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-page-section {
  padding: 80px 0;
}
@media (max-width: 860px) {
  .about-page-section {
    padding: 56px 0;
  }
}
.about-page-section--light {
  background: #fff;
}
.about-page-section--facts {
  background: var(--gm-light-bg);
}
.about-page-section--workshop {
  background: #fff;
}
.about-page-section--cta {
  background: var(--gm-dark);
  padding: 72px 0;
}
@media (max-width: 860px) {
  .about-page-section--cta {
    padding: 56px 0;
  }
}

.about-page-section-title {
  font-family: var(--gm-font-heading);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.25;
  margin: 0 0 24px;
}
.about-page-section-title--center {
  text-align: center;
}

.about-page-section-lead {
  font-size: clamp(15px, 1.5vw, 17px);
  color: #555;
  line-height: 1.65;
  margin: 0 0 32px;
  max-width: 700px;
}

.about-page-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 980px) {
  .about-page-two-col {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
  }
}
@media (max-width: 900px) {
  .about-page-two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.about-page-text-block {
  max-width: 780px;
}

.about-page-text {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.about-page-text p {
  font-size: 16px;
  color: #4a4a55;
  line-height: 1.75;
  margin: 0;
}

.about-page-side-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  border-radius: 14px;
  overflow: hidden;
}
@media (max-width: 900px) {
  .about-page-side-gallery {
    max-height: 420px;
  }
}

.about-page-side-gallery-item {
  overflow: hidden;
  aspect-ratio: 1/1;
}

.about-page-side-gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.about-page-side-gallery-item:hover .about-page-side-gallery-img {
  transform: scale(1.04);
}

.about-page-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 900px) {
  .about-page-facts {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 860px) {
  .about-page-facts {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.about-page-fact {
  background: #fff;
  border-radius: var(--gm-radius-card);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid #e8e6e2;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.about-page-fact:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.about-page-fact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(0, 160, 227, 0.08);
  border: 1px solid rgba(0, 160, 227, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gm-accent);
  margin-bottom: 4px;
}

.about-page-fact-value {
  font-family: var(--gm-font-heading);
  font-size: 17px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
}

.about-page-fact-desc {
  font-size: 14px;
  color: #777;
  line-height: 1.55;
}

.about-page-directions {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 32px;
}
@media (max-width: 900px) {
  .about-page-directions {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 860px) {
  .about-page-directions {
    grid-template-columns: 1fr;
  }
}
.about-page-directions li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  color: #3a3a45;
  line-height: 1.6;
}
.about-page-directions li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  background: var(--gm-accent);
  border-radius: 50%;
}

.about-page-workshop-text {
  max-width: 780px;
  margin-bottom: 40px;
}
.about-page-workshop-text p {
  font-size: 16px;
  color: #4a4a55;
  line-height: 1.75;
  margin: 0 0 14px;
}
.about-page-workshop-text p:last-child {
  margin-bottom: 0;
}

.about-page-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 980px) {
  .about-page-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 900px) {
  .about-page-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 400px) {
  .about-page-gallery {
    grid-template-columns: 1fr;
  }
}

.about-page-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 4/3;
  cursor: pointer;
  border: none;
  padding: 0;
  background: none;
  display: block;
}

.about-page-gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.about-page-gallery-item:hover .about-page-gallery-img {
  transform: scale(1.05);
}

.about-page-gallery-zoom {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.about-page-gallery-item:hover .about-page-gallery-zoom {
  opacity: 1;
}

.about-page-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 68px;
}

.about-page-cta-title {
  font-family: var(--gm-font-heading);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin: 0;
}
