* {
  box-sizing: border-box;
}

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

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

button,
input,
textarea,
select {
  font-family: inherit;
}

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

.header-topline {
  background: linear-gradient(90deg, rgba(8, 19, 57, 0.92) 0%, rgba(10, 27, 82, 0.92) 48%, rgba(8, 13, 34, 0.92) 100%);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  letter-spacing: 0.06em;
}

.header-topline-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 0;
  flex-wrap: wrap;
}

.header-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(245, 196, 0, 0.16);
  color: #f9d94a;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.header-meta {
  list-style: none;
  display: flex;
  gap: clamp(16px, 4vw, 32px);
  margin: 0;
  padding: 0;
  align-items: center;
  flex-wrap: wrap;
}

.header-meta li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.76);
}

.header-meta svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  opacity: 0.6;
}

.header-meta a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}

.site-header {
  position: relative;
  z-index: 10;
}

.site-header-sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(180%) blur(18px);
  box-shadow: 0 16px 40px rgba(10, 27, 82, 0.12);
}

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

@media (max-width: 782px) {
  .admin-bar .site-header-sticky {
    top: 46px;
  }
}

.site-header .header-bar {
  position: relative;
  z-index: 1;
  background: transparent;
  border-bottom: 1px solid rgba(10, 27, 82, 0.08);
  box-shadow: none;
}

.site-header .header-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 4vw, 48px);
  padding: 18px 0;
}

.site-header .header-brand {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 32px);
}

.site-header .site-logo img {
  height: 80px;
  width: auto;
  max-width: 220px;
}

.site-header .header-location {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.header-location-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(15, 33, 79, 0.72);
}


.header-location-trigger {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 10px 46px 10px 16px;
  border-radius: 14px;
  border: 1px solid rgba(15, 33, 79, 0.16);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(222, 232, 255, 0.92));
  box-shadow: 0 20px 40px rgba(10, 27, 82, 0.08);
  color: var(--titank-blue-dark);
  font-weight: 600;
  line-height: 1.35;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.header-location-trigger::after {
  content: '';
  position: absolute;
  right: 18px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-right: 2px solid rgba(10, 27, 82, 0.45);
  border-bottom: 2px solid rgba(10, 27, 82, 0.45);
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.header-location-trigger:hover,
.header-location-trigger:focus {
  border-color: rgba(10, 27, 82, 0.45);
  box-shadow: 0 26px 48px rgba(10, 27, 82, 0.12);
  transform: translateY(-1px);
}

.header-location-trigger:focus {
  outline: none;
}

.header-location-trigger:focus-visible {
  outline: 3px solid rgba(32, 80, 255, 0.35);
  outline-offset: 2px;
}

.header-location-trigger[aria-expanded='true']::after {
  transform: translateY(-50%) rotate(-135deg);
}

.header-location-current {
  font-size: 16px;
  font-weight: 700;
  color: rgba(10, 27, 82, 0.95);
}

.header-location-note {
  font-size: 15px;
  font-weight: 500;
  color: rgba(10, 27, 82, 0.6);
}

body.has-city-modal {
  overflow: hidden;
}

.city-modal {
  position: fixed;
  inset: 0;
  padding: clamp(24px, 5vw, 72px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 21, 56, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1200;
}

.city-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.city-modal__backdrop {
  position: absolute;
  inset: 0;
}

.city-modal__dialog {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 0;
  width: min(960px, 100%);
  max-height: min(680px, 92vh);
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(10, 27, 82, 0.28);
}

.city-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 25px rgba(8, 21, 56, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.city-modal__close svg {
  width: 18px;
  height: 18px;
  stroke: rgba(15, 33, 79, 0.7);
}

.city-modal__close:hover,
.city-modal__close:focus {
  transform: rotate(90deg) scale(1.05);
  box-shadow: 0 16px 30px rgba(8, 21, 56, 0.22);
}

.city-modal__visual {
  flex: 0 0 clamp(260px, 28vw, 320px);
  background: radial-gradient(120% 130% at 20% 20%, rgba(255, 255, 255, 0.92) 0%, rgba(91, 122, 255, 0.45) 52%, rgba(12, 26, 71, 0.96) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: clamp(24px, 4vw, 42px);
}

.city-modal__visual picture {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.city-modal__visual img {
  width: 110%;
  max-width: none;
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 24px 40px rgba(7, 18, 54, 0.45));
}

.city-modal__content {
  flex: 1 1 auto;
  padding: clamp(24px, 5vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow-y: auto;
}

.city-modal__eyebrow {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(12, 26, 71, 0.55);
}

.city-modal__title {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  color: var(--titank-blue-dark);
  margin: 0;
}

.city-modal__lead {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(10, 27, 82, 0.72);
  margin-bottom: 6px;
}

.city-modal__label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(12, 26, 71, 0.5);
}

.city-modal__search {
  border: 1px solid rgba(15, 33, 79, 0.18);
  border-radius: 14px;
  padding: 14px 16px 14px 44px;
  font-size: 16px;
  font-weight: 600;
  background: #f5f7ff url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="18" height="18" fill="none" stroke="%236273c9" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"%3E%3Ccircle cx="8" cy="8" r="5.2"/%3E%3Cpath d="M12.4 12.4 16 16"/%3E%3C/svg%3E') 16px center no-repeat;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.city-modal__search:focus {
  outline: none;
  border-color: rgba(50, 89, 255, 0.6);
  box-shadow: 0 0 0 4px rgba(50, 89, 255, 0.15);
}

.city-modal__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.city-modal__item.is-hidden {
  display: none;
}

.city-modal__city {
  width: 100%;
  border: 1px solid rgba(15, 33, 79, 0.12);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(229, 235, 255, 0.9));
  padding: 18px 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.city-modal__city:hover,
.city-modal__city:focus {
  transform: translateY(-2px);
  border-color: rgba(50, 89, 255, 0.4);
  box-shadow: 0 20px 32px rgba(10, 27, 82, 0.16);
  outline: none;
}

.city-modal__city.is-active {
  border-color: rgba(50, 89, 255, 0.7);
  box-shadow: 0 24px 36px rgba(32, 70, 198, 0.24);
}

.city-modal__city-name {
  font-size: 18px;
  font-weight: 700;
  color: rgba(10, 27, 82, 0.95);
}

.city-modal__city-location {
  font-size: 14px;
  line-height: 1.45;
  color: rgba(10, 27, 82, 0.62);
}

.city-modal__city-check {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3259ff, #4a83ff);
  display: none;
  align-items: center;
  justify-content: center;
}

.city-modal__city.is-active .city-modal__city-check {
  display: inline-flex;
}

.city-modal__city-check svg {
  width: 12px;
  height: 12px;
  stroke: #fff;
}

.city-modal__empty {
  margin-top: 8px;
  font-size: 15px;
  color: rgba(10, 27, 82, 0.6);
}

.site-header .header-actions {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 32px);
}

.header-phone {
  display: grid;
  gap: 2px;
  text-align: right;
  color: var(--titank-blue-dark);
}

.header-phone-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(10, 27, 82, 0.5);
}

.header-phone-number {
  font-size: 18px;
  font-weight: 700;
}

.header-cta {
  min-width: 164px;
}

.site-header .header-nav-bar {
  position: relative;
  z-index: 1;
  background: linear-gradient(90deg, rgba(10, 27, 82, 0.96) 0%, rgba(15, 33, 79, 0.9) 46%, rgba(3, 10, 30, 0.92) 100%);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header .header-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
  flex-wrap: wrap;
}

.site-header .menu-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: transparent;
  border-radius: 12px;
  padding: 10px 16px;
  cursor: pointer;
  align-items: center;
  gap: 12px;
  justify-content: center;
  color: #fff;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.site-header .menu-toggle-icon {
  display: grid;
  gap: 4px;
}

.site-header .menu-toggle-line {
  width: 18px;
  height: 2px;
  background: currentColor;
  display: block;
  border-radius: 999px;
}

.site-header .menu-toggle-text {
  font-size: 12px;
  font-weight: 700;
}

.site-header .menu-toggle:focus-visible,
.site-header .menu-toggle:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-1px);
}

.site-header .primary-nav {
  flex: 1;
  min-width: 0;
  position: relative;
}

.primary-nav::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 16px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.12), transparent 12%, transparent 88%, rgba(255, 255, 255, 0.12));
  opacity: 0.25;
  z-index: 0;
}

.primary-nav .primary-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 24px);
  margin: 0;
  padding: 4px 6px;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
  scroll-snap-type: x proximity;
  position: relative;
  z-index: 1;
}

.primary-nav .primary-menu::-webkit-scrollbar {
  height: 6px;
}

.primary-nav .primary-menu::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.24);
  border-radius: 999px;
}

.primary-nav .primary-menu > li {
  flex: 0 0 auto;
  position: relative;
  scroll-snap-align: start;
}

.primary-nav .primary-menu > li > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.primary-nav .primary-menu > li > a:focus-visible,
.primary-nav .primary-menu > li > a:hover,
.primary-nav .primary-menu > li > a[aria-current='page'],
.primary-nav .primary-menu > li > a[aria-current='true'] {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-1px);
}

.primary-nav .menu-item-has-children {
  position: relative;
}

.primary-nav .menu-item-has-children::after {
  content: "";
  position: absolute;
  left: -6px;
  right: -6px;
  top: 100%;
  height: 16px;
}

.primary-nav .menu-item-has-children > a {
  padding-right: 42px;
}

.primary-nav .submenu-toggle {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(4, 13, 34, 0.28);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.primary-nav .submenu-toggle svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
  transition: transform 0.2s ease;
}

.primary-nav .submenu-toggle:focus-visible,
.primary-nav .submenu-toggle:hover,
.primary-nav .menu-item-has-children.is-open > .submenu-toggle {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.primary-nav .menu-item-has-children.is-open > .submenu-toggle svg {
  transform: rotate(180deg);
}

.primary-nav .sub-menu {
  list-style: none;
  margin: 0;
  padding: 18px;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 220px;
  background: rgba(4, 13, 34, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  box-shadow: 0 24px 50px rgba(3, 9, 28, 0.45);
  display: grid;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 1000;
}

.primary-nav .sub-menu li {
  list-style: none;
}

.primary-nav .sub-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.04);
  transition: background 0.2s ease, color 0.2s ease;
}

.primary-nav .sub-menu a:focus-visible,
.primary-nav .sub-menu a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.primary-nav .menu-item-has-children.is-open > .sub-menu,
.primary-nav .menu-item-has-children:hover > .sub-menu,
.primary-nav .menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.primary-nav .menu-item-has-children.is-open > .sub-menu {
  position: absolute;
}

@media (min-width: 1181px) {
  .primary-nav .primary-menu {
    justify-content: center;
    overflow: visible;
    gap: 12px;
  }

  .primary-nav::after {
    display: none;
  }

  .primary-nav .primary-menu > li > a {
    font-size: 13px;
    padding-inline: 14px 34px;
  }

  .primary-nav .menu-item-has-children > .submenu-toggle {
    display: none;
  }

  .primary-nav .menu-item-has-children > a {
    padding-right: 28px;
  }

  .primary-nav .menu-item-has-children::after {
    height: 22px;
  }
}

.primary-nav.is-open {
  display: block;
}

@media (max-width: 1180px) {
  .header-topline-inner {
    justify-content: center;
  }

  .header-meta {
    justify-content: center;
  }

  .site-header .header-bar-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }

  .site-header .header-brand {
    width: 100%;
    justify-content: space-between;
  }

  .site-header .header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .header-phone {
    text-align: left;
  }

  .site-header .menu-toggle {
    display: inline-flex;
    width: 100%;
    justify-content: center;
  }

  .site-header .primary-nav {
    width: 100%;
    display: none;
    background: rgba(4, 13, 34, 0.92);
    border-radius: 18px;
    padding: 14px 0 22px;
    margin: 0;
    box-shadow: 0 24px 54px rgba(4, 13, 34, 0.26);
  }

  .header-location-trigger {
    width: 100%;
  }

  .city-modal__dialog {
    flex-direction: column;
    max-height: min(92vh, 760px);
  }

  .city-modal__visual {
    width: 100%;
    flex: 0 0 auto;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .city-modal__visual img {
    max-width: clamp(220px, 60vw, 320px);
  }

  .city-modal__list {
    grid-template-columns: 1fr;
  }

  .site-header .primary-nav.is-open {
    display: block;
  }

  .site-header .header-nav-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .primary-nav .primary-menu {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 12px;
    overflow: visible;
  }

  .primary-nav .primary-menu > li > a {
    justify-content: space-between;
    width: 100%;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.08);
  }

  .primary-nav .menu-item-has-children > a {
    padding-right: 60px;
  }

  .primary-nav .submenu-toggle {
    right: 18px;
    background: rgba(4, 13, 34, 0.4);
  }

  .primary-nav .sub-menu {
    position: static;
    padding: 0;
    margin-top: 0;
    border: none;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }

  .primary-nav .menu-item-has-children.is-open > .sub-menu {
    max-height: 70vh;
    padding-top: 6px;
    padding-left: 10px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .primary-nav .sub-menu a {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
  }

  .primary-nav .sub-menu li + li {
    margin-top: 6px;
  }

  .primary-nav .menu-item-has-children::after {
    display: none;
  }
}

@media (max-width: 720px) {
  .header-topline {
    display: none;
  }

  .site-header .header-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .site-header .header-bar-inner {
    padding: 12px 0;
  }

  .site-header .site-logo img {
    height: 60px;
  }

  .site-header .header-brand {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .site-header .header-location {
    display: flex;
    width: 100%;
  }

  .header-location-trigger {
    width: 100%;
  }

  .header-cta {
    width: 100%;
  }

  .footer-cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .site-header .header-bar-inner {
    gap: 12px;
  }

  .header-phone {
    text-align: center;
  }

  .header-phone-number {
    font-size: 16px;
  }

  .site-header .header-actions {
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .site-header .menu-toggle {
    font-size: 14px;
  }

  .city-modal {
    padding: clamp(16px, 6vw, 36px);
  }

  .city-modal__dialog {
    border-radius: 20px;
  }

  .city-modal__close {
    top: 14px;
    right: 14px;
  }

  .city-modal__content {
    padding: clamp(20px, 6vw, 34px);
  }

  .city-modal__title {
    font-size: clamp(24px, 6vw, 30px);
  }

  .city-modal__city {
    padding: 16px 18px;
  }
}

.button-primary {
  background: var(--titank-yellow);
  border: none;
  color: var(--titank-blue-dark);
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 16px 30px rgba(245, 196, 0, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgba(245, 196, 0, 0.4);
}

.button-secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.85);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  padding: clamp(64px, 12vw, 120px) 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(245, 196, 0, 0.16), transparent 52%),
    linear-gradient(145deg, rgba(4, 12, 32, 0.98) 0%, rgba(8, 21, 58, 0.94) 46%, rgba(18, 52, 122, 0.88) 100%);
  color: #fff;
  overflow: hidden;
}

.hero .hero-inner {
  display: grid;
  gap: clamp(32px, 6vw, 80px);
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: center;
}

.page-glavnaya .hero {
  padding: clamp(48px, 10vw, 96px) 0;
}

.hero::after {
  content: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero-title {
  font-size: clamp(36px, 6vw, 58px);
  margin: 0 0 16px;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.7;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.82);
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-highlights {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-highlights li {
  display: grid;
  gap: 8px;
  padding: 16px 22px;
  border-radius: 18px;
  background: rgba(15, 33, 79, 0.35);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-highlights li::before {
  content: "";
  width: 40px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--titank-yellow) 0%, rgba(255, 255, 255, 0.8) 100%);
}

.hero-highlight-title {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

.hero-highlight-text {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}

.hero-visual {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
}

.hero-backdrop {
  position: absolute;
  inset: -22% -18% -30% -18%;
  pointer-events: none;
  z-index: 0;
}

.hero-backdrop::before,
.hero-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 48%;
}

.hero-backdrop::before {
  background: radial-gradient(circle at 28% 24%, rgba(102, 149, 255, 0.45) 0%, rgba(102, 149, 255, 0) 60%), radial-gradient(circle at 72% 68%, rgba(255, 192, 128, 0.4) 0%, rgba(255, 192, 128, 0) 68%);
  filter: blur(0.5px);
  opacity: 0.95;
  mix-blend-mode: screen;
}

.hero-backdrop::after {
  inset: 12% 10% 20% 16%;
  border-radius: 36px;
  background-image: linear-gradient(140deg, rgba(20, 44, 104, 0.9) 0%, rgba(10, 24, 66, 0.65) 100%), repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 44px), repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 44px);
  background-blend-mode: screen, overlay, overlay;
  box-shadow: 0 48px 120px rgba(6, 16, 48, 0.6);
  opacity: 0.55;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle, var(--orb-color) 0%, rgba(14, 32, 76, 0) 70%);
  mix-blend-mode: screen;
  animation: heroOrbPulse 8s ease-in-out infinite;
}

.hero-orb--one {
  --orb-color: rgba(98, 150, 255, 0.7);
  width: 220px;
  height: 220px;
  top: -6%;
  right: 4%;
}

.hero-orb--two {
  --orb-color: rgba(255, 193, 120, 0.6);
  width: 160px;
  height: 160px;
  bottom: -12%;
  left: 6%;
  animation-delay: 2.2s;
}

.page-glavnaya .hero-visual {
  align-self: start;
  transform: translateY(-24px);
}

@media (max-width: 782px) {
  .page-glavnaya .hero-visual {
    transform: translateY(-12px);
  }

  .hero-backdrop,
  .hero-orb {
    display: none;
  }
}

.hero-art {
  width: min(520px, 100%);
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(8, 20, 58, 0.55);
  position: relative;
  z-index: 2;
}

.hero-art::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  pointer-events: none;
}

.hero-art img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-floating {
  position: absolute;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(10, 21, 54, 0.72);
  color: #fff;
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 32px rgba(10, 27, 82, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: grid;
  gap: 2px;
  justify-items: center;
  min-width: 120px;
  animation: heroFloat 6s ease-in-out infinite;
  z-index: 3;
}

.hero-floating span {
  font-weight: 700;
  font-size: 20px;
}

.hero-floating small {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.8;
}

.hero-floating--one {
  top: 10%;
  left: 6%;
}

.hero-floating--two {
  bottom: 14%;
  right: 12%;
  animation-delay: 1.5s;
}

.hero-floating--three {
  top: 58%;
  right: -6%;
  animation-delay: 3s;
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0px) scale(1);
    opacity: 1;
  }
  50% {
    transform: translateY(-12px) scale(1.02);
    opacity: 0.95;
  }
}

@keyframes heroOrbPulse {
  0%,
  100% {
    transform: scale(0.92);
    opacity: 0.75;
  }
  50% {
    transform: scale(1.06);
    opacity: 1;
  }
}

@keyframes sectionFloat {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.32;
  }
  50% {
    transform: translate3d(12px, -18px, 0) scale(1.05);
    opacity: 0.46;
  }
  100% {
    transform: translate3d(-8px, 12px, 0) scale(0.98);
    opacity: 0.32;
  }
}

.section {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
}

.section::before,
.section::after {
  content: "";
  position: absolute;
  width: clamp(240px, 40vw, 420px);
  height: clamp(240px, 40vw, 420px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(111, 168, 255, 0.2) 0%, rgba(111, 168, 255, 0) 70%);
  opacity: 0.4;
  filter: blur(0.5px);
  pointer-events: none;
  animation: sectionFloat 18s ease-in-out infinite;
  z-index: 0;
}

.section::before {
  top: -20%;
  left: -10%;
}

.section::after {
  bottom: -28%;
  right: -14%;
  animation-delay: 6s;
}

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

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 32px;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--titank-yellow) 0%, rgba(255, 255, 255, 0) 100%);
}

.section--page-flexible {
  padding-block: clamp(48px, 8vw, 80px);
}

.page-flexible {
  display: grid;
  gap: clamp(24px, 5vw, 48px);
}

.page-flexible-title {
  margin: 0;
  font-size: clamp(32px, 5vw, 44px);
}

.page-flexible-content {
  display: grid;
  gap: clamp(18px, 4vw, 32px);
}

.page-flexible-content > * {
  margin: 0;
}

.page-flexible-content .wp-block-image img {
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(15, 33, 79, 0.12);
}

.page-flexible-content .wp-block-cover,
.page-flexible-content .wp-block-group {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(15, 33, 79, 0.12);
}

.cards-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.98) 0%, rgba(238, 243, 255, 0.9) 100%);
  border: 1px solid rgba(15, 33, 79, 0.08);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 20px 42px rgba(15, 33, 79, 0.12);
  display: grid;
  gap: 18px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  min-height: 100%;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 58px rgba(10, 27, 82, 0.18);
}

.card .card-title {
  font-weight: 700;
  font-size: 22px;
  margin: 0;
  letter-spacing: 0.02em;
}

.card .card-text {
  color: rgba(10, 27, 82, 0.76);
  line-height: 1.7;
  margin: 0;
}

.card-media {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(15, 33, 79, 0.12);
  aspect-ratio: 4 / 3;
  margin: 0;
}

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

.card-body {
  display: grid;
  gap: 14px;
}

.card--feature,
.card--issue,
.card--resolution {
  padding: 0;
  overflow: hidden;
}

.card--feature .card-media,
.card--issue .card-media,
.card--resolution .card-media {
  border-radius: 0;
}

.card-media--uniform,
.card--feature .card-media,
.card--issue .card-media {
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.card-media--uniform,
.card--feature .card-media {
  background: rgba(15, 33, 79, 0.08);
}

.card--issue .card-media {
  background: rgba(255, 255, 255, 0.08);
}

.card-media--uniform img,
.card--feature .card-media img,
.card--issue .card-media img {
  object-fit: contain;
}

.card--feature .card-body,
.card--issue .card-body,
.card--resolution .card-body {
  padding: 28px;
}

.card--feature {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(233, 239, 255, 0.82) 100%);
  border: 1px solid rgba(15, 33, 79, 0.12);
}

.card--issue {
  background: linear-gradient(180deg, rgba(13, 27, 66, 0.94) 0%, rgba(4, 9, 24, 0.95) 100%);
  border: 1px solid rgba(109, 153, 255, 0.2);
  color: #fff;
}

.card--issue .card-title {
  color: #fff;
}

.card--issue .card-text {
  color: rgba(255, 255, 255, 0.75);
}

.cards-grid--issues {
  gap: 28px;
}

.card--resolution {
  background: linear-gradient(120deg, rgba(12, 28, 80, 0.95) 0%, rgba(5, 12, 30, 0.92) 100%);
  border: 1px solid rgba(109, 153, 255, 0.24);
  color: #fff;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
  align-items: stretch;
  gap: 0;
}

.card--resolution .section-title {
  color: #fff;
  margin-bottom: 18px;
}

.card--resolution .section-title::after {
  background: rgba(255, 255, 255, 0.4);
}

.card--resolution .card-text {
  color: rgba(255, 255, 255, 0.78);
}

.card--resolution .card-media {
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: auto;
  padding: 24px;
}

.card--resolution .card-media img {
  width: 100%;
  height: auto;
}

@media (max-width: 960px) {
  .card--resolution {
    grid-template-columns: 1fr;
  }

  .card--resolution .card-media {
    order: -1;
  }
}

@media (max-width: 900px) {
  .checkbox-group {
    grid-template-columns: 1fr;
  }

  .checkbox-option--single {
    max-width: none;
  }
}

@media (max-width: 600px) {
  .calculator-actions {
    justify-content: stretch;
  }

  .calculator-actions .button-primary {
    width: 100%;
  }
}

.stats {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.stat-item {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 16px 32px rgba(15, 33, 79, 0.08);
}

.stat-value {
  font-size: 32px;
  font-weight: 700;
  color: var(--titank-blue-dark);
}

.stat-label {
  margin-top: 8px;
  color: rgba(10, 27, 82, 0.7);
}

.calculator {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.96) 0%, rgba(238, 243, 255, 0.92) 100%);
  border-radius: 30px;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid rgba(15, 33, 79, 0.08);
  box-shadow: 0 28px 60px rgba(15, 33, 79, 0.15);
  display: grid;
  gap: 24px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.calculator::before,
.calculator::after {
  content: "";
  position: absolute;
  width: clamp(220px, 36vw, 380px);
  height: clamp(220px, 36vw, 380px);
  border-radius: 50%;
  filter: blur(0.5px);
  pointer-events: none;
  opacity: 0.35;
  animation: sectionFloat 22s ease-in-out infinite;
  z-index: -1;
}

.calculator::before {
  top: -18%;
  right: -12%;
  background: radial-gradient(circle, rgba(245, 196, 0, 0.32) 0%, rgba(245, 196, 0, 0) 70%);
}

.calculator::after {
  bottom: -26%;
  left: -18%;
  background: radial-gradient(circle, rgba(111, 168, 255, 0.28) 0%, rgba(111, 168, 255, 0) 70%);
  animation-delay: 8s;
}

.calculator-header {
  display: grid;
  gap: 18px;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(160px, 220px);
}

.calculator-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(245, 196, 0, 0.18);
  color: var(--titank-blue-dark);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 12px;
}

.calculator-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 28px;
  overflow: hidden;
  background: radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.85) 0%, rgba(238, 243, 255, 0.4) 60%, rgba(255, 255, 255, 0) 100%);
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 0 1px rgba(15, 33, 79, 0.08);
}

.calculator-visual picture {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.calculator-visual img {
  width: 115%;
  height: 115%;
  max-width: none;
  object-fit: cover;
  display: block;
  transform: translateY(6px);
}

.calculator-visual::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 24px;
  border: 1px dashed rgba(15, 33, 79, 0.12);
  pointer-events: none;
}

.calculator-header h2 {
  margin: 0;
}

.calculator-lead {
  margin: -8px 0 28px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(10, 27, 82, 0.7);
}

.calculator-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  align-items: start;
}

.calculator .form-group {
  margin: 0;
  display: grid;
  gap: 12px;
}

.form-group--inline {
  align-self: end;
}

.form-label {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(10, 27, 82, 0.66);
}

.calculator input[type="number"],
.calculator input[type="text"],
.calculator textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(10, 27, 82, 0.18);
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.calculator input[type="number"]:focus-visible,
.calculator input[type="text"]:focus-visible,
.calculator textarea:focus-visible {
  border-color: var(--titank-blue);
  box-shadow: 0 0 0 3px rgba(15, 33, 79, 0.16);
  outline: none;
}

.checkbox-group {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.checkbox-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(10, 27, 82, 0.12);
  background: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  color: var(--titank-blue-dark);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.checkbox-option input {
  width: 18px;
  height: 18px;
  accent-color: var(--titank-blue);
  margin: 0;
}

.checkbox-option span {
  flex: 1;
}

.checkbox-option:hover {
  border-color: var(--titank-blue);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 28px rgba(15, 33, 79, 0.12);
}

.checkbox-option--single {
  max-width: 240px;
}

.calculator-result {
  margin-top: 32px;
  padding: 28px;
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(15, 33, 79, 0.08) 0%, rgba(15, 33, 79, 0.02) 100%);
  border: 1px solid rgba(15, 33, 79, 0.14);
  display: none;
  gap: 18px;
}

.calculator-result.is-visible {
  display: grid;
}

.calculator-result-header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.calculator-result strong {
  font-size: 22px;
  margin: 0;
}

.calculator-sum {
  font-size: 28px;
  font-weight: 700;
  color: var(--titank-blue-dark);
}

.calculator-note {
  margin: 0;
  color: rgba(10, 27, 82, 0.68);
  line-height: 1.6;
}

.calculator-actions {
  display: flex;
  justify-content: flex-start;
}

.calculator-actions .button-primary {
  padding-inline: 32px;
}

.calculator-form {
  margin-top: 28px;
  display: none;
}

.calculator-form.is-visible {
  display: grid;
}



.form-response {
  margin-top: 12px;
  font-size: 14px;
  color: var(--titank-blue-dark);
}

.form-response.is-error {
  color: #c0392b;
}

.form-card {
  padding: clamp(24px, 4vw, 36px);
  border-radius: 26px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.96) 0%, rgba(233, 240, 255, 0.94) 100%);
  border: 1px solid rgba(15, 33, 79, 0.12);
  box-shadow: 0 28px 54px rgba(15, 33, 79, 0.18);
  display: grid;
  gap: clamp(18px, 3vw, 28px);
}

.form-card--accent {
  background: linear-gradient(140deg, rgba(10, 27, 82, 0.95) 0%, rgba(3, 10, 32, 0.92) 100%);
  border: 1px solid rgba(245, 196, 0, 0.32);
  color: #fff;
  box-shadow: 0 34px 60px rgba(3, 10, 32, 0.5);
}

.form-card--accent .section-title,
.form-card--accent p,
.form-card--accent label {
  color: rgba(255, 255, 255, 0.9);
}

.form-card-header {
  display: grid;
  gap: 12px;
}

.form-card-header p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.form-card:not(.form-card--accent) .form-card-header p {
  color: rgba(10, 27, 82, 0.7);
}

.titank-lead-form {
  display: grid;
  gap: clamp(18px, 3vw, 26px);
}

.form-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.form-group {
  display: grid;
  gap: 10px;
  margin: 0;
}

.form-group--wide {
  grid-column: 1 / -1;
}

.titank-lead-form label {
  font-weight: 600;
  font-size: 14px;
  color: rgba(10, 27, 82, 0.7);
}

.titank-lead-form input,
.titank-lead-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(10, 27, 82, 0.16);
  background: rgba(255, 255, 255, 0.98);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.titank-lead-form textarea {
  resize: vertical;
  min-height: 120px;
}

.titank-lead-form input:focus-visible,
.titank-lead-form textarea:focus-visible {
  outline: none;
  border-color: var(--titank-blue);
  box-shadow: 0 0 0 3px rgba(15, 33, 79, 0.16);
}

.titank-review-form {
  display: grid;
  gap: clamp(18px, 3vw, 26px);
  padding: clamp(18px, 3vw, 26px);
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(10, 27, 82, 0.08);
  box-shadow: 0 18px 40px rgba(10, 27, 82, 0.08);
}

.titank-review-form label {
  font-weight: 600;
  font-size: 14px;
  color: rgba(10, 27, 82, 0.7);
}

.titank-review-form input,
.titank-review-form textarea,
.titank-review-form select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(10, 27, 82, 0.16);
  background: rgba(255, 255, 255, 0.98);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.titank-review-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, rgba(10, 27, 82, 0.5) 50%),
    linear-gradient(135deg, rgba(10, 27, 82, 0.5) 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 4px), calc(100% - 12px) calc(50% - 4px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 44px;
}

.titank-review-form textarea {
  resize: vertical;
  min-height: 140px;
}

.titank-review-form input:focus-visible,
.titank-review-form textarea:focus-visible,
.titank-review-form select:focus-visible {
  outline: none;
  border-color: var(--titank-blue);
  box-shadow: 0 0 0 3px rgba(15, 33, 79, 0.16);
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  flex-wrap: wrap;
}

.form-footer .form-response {
  margin: 0;
  min-height: 20px;
}

.form-card--accent .form-response {
  color: rgba(255, 255, 255, 0.86);
}

.form-card--accent .form-response.is-error {
  color: #ffd6d6;
}

.gallery-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.gallery-grid figure {
  border-radius: 16px;
  overflow: hidden;
  background: var(--titank-gray);
  position: relative;
  cursor: zoom-in;
  outline: none;
}

.gallery-grid figure:focus-visible {
  box-shadow: 0 0 0 3px rgba(15, 33, 79, 0.22);
}

.gallery-grid figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 12px;
  background: linear-gradient(180deg, transparent, rgba(10, 27, 82, 0.7));
  color: #fff;
  font-weight: 600;
  font-size: 14px;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  padding: clamp(16px, 5vw, 40px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 1600;
}

.gallery-lightbox.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.gallery-lightbox__dialog {
  width: min(1080px, 100%);
  max-height: calc(100vh - 80px);
  background: #fff;
  border-radius: 22px;
  padding: clamp(18px, 3vw, 28px);
  box-shadow: 0 26px 60px rgba(10, 27, 82, 0.25);
  position: relative;
  display: grid;
  gap: 16px;
}

.gallery-lightbox__close {
  position: absolute;
  top: 14px;
  right: 14px;
  border: none;
  background: rgba(10, 27, 82, 0.08);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--titank-blue-dark);
  font-size: 20px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.gallery-lightbox__close:hover,
.gallery-lightbox__close:focus-visible {
  background: rgba(10, 27, 82, 0.16);
  transform: translateY(-1px);
}

.gallery-lightbox__stage {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
}

.gallery-lightbox__slide {
  margin: 0;
  background: transparent;
  border-radius: 18px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: auto;
}

.gallery-lightbox__slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: min(70vh, 720px);
}

.gallery-lightbox__caption {
  margin: 10px 0 0;
  color: rgba(10, 27, 82, 0.78);
  font-weight: 600;
}

.gallery-lightbox__nav {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: rgba(10, 27, 82, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--titank-blue-dark);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.gallery-lightbox__nav:hover,
.gallery-lightbox__nav:focus-visible {
  background: rgba(10, 27, 82, 0.16);
  transform: translateY(-1px);
}

.gallery-lightbox__nav:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.gallery-lightbox__nav svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.gallery-lightbox__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(10, 27, 82, 0.8);
  font-weight: 700;
}

@media (max-width: 768px) {
  .gallery-lightbox__dialog {
    max-height: calc(100vh - 32px);
  }

  .gallery-lightbox__stage {
    grid-template-columns: 1fr;
  }

  .gallery-lightbox__nav {
    justify-self: center;
  }

  .gallery-lightbox__slide {
    min-height: 300px;
  }
}

body.has-gallery-lightbox {
  overflow: hidden;
}

.reviews-list {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.review-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 16px 32px rgba(15, 33, 79, 0.1);
  display: grid;
  gap: 12px;
}

.review-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--titank-gray);
  display: grid;
  place-items: center;
  font-weight: 700;
}

.review-rating {
  color: #f5c400;
  font-size: 18px;
}

.pagination {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}

.pagination-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 0;
  justify-content: center;
  align-items: center;
}

.pagination-item {
  display: inline-flex;
}

.pagination-list .page-numbers {
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--titank-blue-dark);
  border: 1px solid rgba(10, 27, 82, 0.12);
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.pagination-list .page-numbers:hover,
.pagination-list .page-numbers:focus {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(10, 27, 82, 0.12);
  border-color: rgba(10, 27, 82, 0.2);
}

.pagination-list .page-numbers.current {
  background: var(--titank-yellow);
  border-color: var(--titank-yellow);
}

.pagination-list .page-numbers.dots {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.seo-text {
  background: var(--titank-gray);
  border-radius: 24px;
  padding: 24px;
}

.seo-text[data-collapsed="true"] .seo-text-content {
  max-height: 160px;
  overflow: hidden;
  position: relative;
}

.seo-text[data-collapsed="true"] .seo-text-content::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 80px;
  background: linear-gradient(180deg, rgba(238, 243, 255, 0), rgba(238, 243, 255, 0.95));
}

.city-article {
  padding: clamp(48px, 8vw, 96px) 0;
}

.city-article__title {
  margin-bottom: clamp(20px, 5vw, 32px);
}

.city-article__wrapper {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 24px 48px rgba(15, 33, 79, 0.12);
  padding: clamp(24px, 6vw, 40px);
  display: grid;
  gap: clamp(18px, 4vw, 28px);
}

.city-article__content {
  position: relative;
}

.city-article__body {
  display: grid;
  gap: clamp(14px, 2vw, 20px);
  line-height: 1.65;
  color: rgba(8, 13, 34, 0.88);
}

.city-article__wrapper[data-state='collapsed'] .city-article__body {
  max-height: clamp(260px, 48vh, 380px);
  overflow: hidden;
}

.city-article__fade {
  position: absolute;
  inset: auto 0 0 0;
  height: clamp(72px, 14vw, 120px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.96));
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.city-article__wrapper[data-state='expanded'] .city-article__fade,
.city-article__fade[hidden] {
  opacity: 0;
  visibility: hidden;
}

.city-article__toggle {
  justify-self: start;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #0a1b52 0%, #030a1e 100%);
  color: #fff;
  font-weight: 600;
  padding: 12px 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 20px 38px rgba(10, 27, 82, 0.22);
}

.city-article__toggle:hover,
.city-article__toggle:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 26px 48px rgba(10, 27, 82, 0.26);
  background: linear-gradient(135deg, #071342 0%, #010615 100%);
}

.city-article__toggle:focus-visible {
  outline: 3px solid rgba(245, 196, 0, 0.62);
  outline-offset: 2px;
}

.city-article__toggle-text[data-toggle-state='expanded'] {
  display: none;
}

.city-article__wrapper[data-state='expanded'] .city-article__toggle-text[data-toggle-state='expanded'] {
  display: inline;
}

.city-article__wrapper[data-state='expanded'] .city-article__toggle-text[data-toggle-state='collapsed'] {
  display: none;
}

@media (max-width: 768px) {
  .city-article {
    padding: clamp(36px, 12vw, 64px) 0;
  }

  .city-article__wrapper {
    border-radius: 20px;
    padding: clamp(20px, 10vw, 32px);
  }
}

.contact-section {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 24px 48px rgba(15, 33, 79, 0.12);
  padding: 32px;
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.contact-details {
  display: grid;
  gap: 16px;
}

footer.site-footer {
  background: radial-gradient(circle at 12% 20%, rgba(245, 196, 0, 0.15), transparent 50%), linear-gradient(180deg, #020511 0%, #040d28 100%);
  color: #fff;
  margin-top: clamp(60px, 10vw, 120px);
}

footer.site-footer a {
  color: inherit;
}

.footer-cta {
  padding: clamp(40px, 6vw, 72px) 0;
  background: linear-gradient(135deg, rgba(10, 27, 82, 0.86) 0%, rgba(3, 10, 30, 0.9) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-cta-inner {
  display: grid;
  gap: clamp(18px, 3vw, 36px);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.footer-cta-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(245, 196, 0, 0.18);
  color: #ffd86c;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.footer-cta-content h2 {
  margin: 12px 0 8px;
  font-size: clamp(26px, 4vw, 36px);
}

.footer-cta-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.footer-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
}

.footer-inner {
  display: grid;
  gap: clamp(24px, 4vw, 48px);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  padding: clamp(36px, 5vw, 60px) 0;
}

.footer-brand img {
  max-width: 220px;
}

.footer-brand p {
  margin: 12px 0 0;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}

.footer-brand-note {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-menu h4,
.footer-contacts h4 {
  margin: 0 0 12px;
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-menu-list,
.footer-contacts ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.footer-menu-list a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-menu-list a:hover,
.footer-menu-list a:focus-visible {
  color: #fff;
}

.footer-contacts li {
  display: grid;
  gap: 4px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contacts span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
  background: rgba(0, 0, 0, 0.24);
}

.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.footer-policy {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-development {
  margin: 0;
}

.footer-development-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-policy:hover,
.footer-policy:focus-visible,
.footer-development-link:hover,
.footer-development-link:focus-visible {
  color: #fff;
}

.breadcrumbs {
  margin: 0;
  background: rgba(10, 27, 82, 0.04);
  border-bottom: 1px solid rgba(10, 27, 82, 0.08);
}

.breadcrumbs-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  padding: 12px 0;
}

.breadcrumbs a {
  color: var(--titank-blue);
  font-weight: 600;
}

.breadcrumbs-separator {
  color: rgba(15, 33, 79, 0.3);
}

.breadcrumbs-current {
  color: rgba(15, 33, 79, 0.7);
}

@media (max-width: 1180px) {
  .site-header .header-inner {
    grid-template-columns: auto 1fr;
    grid-template-areas:
      'brand actions'
      'toggle toggle'
      'nav nav';
    row-gap: 12px;
  }

  .site-header .header-brand {
    grid-area: brand;
  }

  .site-header .header-actions {
    grid-area: actions;
    justify-self: end;
  }

  .site-header .menu-toggle {
    grid-area: toggle;
    display: inline-flex;
  }

  .site-header .primary-nav {
    grid-area: nav;
    display: none;
    padding: 12px 0 4px;
  }

  .site-header .primary-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .site-header .primary-nav.is-open {
    display: block;
  }

  .site-header .header-actions {
    gap: 10px;
  }
}

@media (max-width: 820px) {
  .site-header .header-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      'brand'
      'actions'
      'toggle'
      'nav';
    justify-items: start;
  }

  .site-header .header-actions {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .site-header .header-phone {
    font-size: 15px;
  }

  .hero-floating--three {
    right: 6%;
  }

  .calculator-header {
    grid-template-columns: 1fr;
  }

  .calculator-visual {
    max-width: 220px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 80px 0 72px;
  }

  .calculator-visual,
  .city-modal__visual,
  .thankyou-modal-visual {
    display: none;
  }

  .hero-highlights li {
    background: rgba(15, 33, 79, 0.55);
  }

  .hero-floating {
    display: none;
  }

  .button-secondary {
    border-color: rgba(255, 255, 255, 0.4);
  }

  .section::before,
  .section::after {
    display: none;
  }
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 16px 0;
}

.faq-item h4 {
  margin: 0 0 8px;
}

.faq-item p {
  margin: 0 0 8px;
  color: rgba(10, 27, 82, 0.85);
  line-height: 1.6;
}

.faq-answer {
  color: rgba(10, 27, 82, 0.85);
  line-height: 1.6;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.table-responsive {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

td,
th {
  padding: 12px;
  border: 1px solid rgba(10, 27, 82, 0.1);
  text-align: left;
}

.map-frame {
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
}

.map-frame iframe {
  display: block;
  width: 100% !important;
  max-width: 100%;
  height: clamp(240px, 60vw, 420px);
  min-height: 0;
  border: 0;
}

.collapsible-trigger {
  border: none;
  background: transparent;
  color: var(--titank-blue);
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}

.alert {
  padding: 16px 20px;
  border-radius: 12px;
  background: rgba(15, 33, 79, 0.08);
  color: var(--titank-blue);
  margin-top: 16px;
}

.form-response {
  margin-top: 16px;
  font-weight: 600;
}

.contact-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(6, 20, 63, 0.7);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.contact-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.contact-modal-dialog {
  position: relative;
  width: min(520px, 100%);
  max-height: min(90vh, 720px);
  overflow-y: auto;
  background: #ffffff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 24px 60px rgba(8, 27, 89, 0.25);
}

.contact-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  border: none;
  background: rgba(8, 27, 89, 0.08);
  color: var(--titank-blue);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.contact-modal-close:hover,
.contact-modal-close:focus {
  background: rgba(8, 27, 89, 0.15);
}

.contact-modal-header {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-modal-eyebrow {
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: rgba(8, 27, 89, 0.7);
}

.contact-modal-form .form-group + .form-group {
  margin-top: 16px;
}

.contact-modal-form .form-footer {
  margin-top: 24px;
}

body.contact-modal-open {
  overflow: hidden;
}

.thankyou-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 32px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1100;
}

.thankyou-modal::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(12, 33, 92, 0.58), rgba(4, 10, 33, 0.88));
  backdrop-filter: blur(6px);
  z-index: 0;
  pointer-events: none;
}

.thankyou-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.thankyou-modal-backdrop {
  position: absolute;
  inset: 0;
  z-index: 1;
  cursor: pointer;
}

.thankyou-modal-dialog {
  position: relative;
  display: grid;
  gap: clamp(24px, 5vw, 40px);
  grid-template-columns: minmax(0, 1fr);
  background: #ffffff;
  border-radius: 28px;
  padding: clamp(24px, 5vw, 48px);
  box-shadow: 0 32px 70px rgba(8, 19, 56, 0.35);
  max-width: min(760px, 100%);
  z-index: 2;
  transform: translateY(24px);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.thankyou-modal.is-open .thankyou-modal-dialog {
  transform: translateY(0);
  opacity: 1;
}

.thankyou-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(9, 25, 72, 0.08);
  color: var(--titank-blue);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.thankyou-modal-close:hover,
.thankyou-modal-close:focus-visible {
  background: rgba(9, 25, 72, 0.18);
  transform: scale(1.05);
}

.thankyou-modal-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.thankyou-modal-orb {
  position: relative;
  width: min(220px, 40vw);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.65), rgba(26, 61, 164, 0.12));
  overflow: hidden;
  animation: thankyou-float 6s ease-in-out infinite;
  display: grid;
  place-items: center;
}

.thankyou-modal-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, rgba(79, 132, 255, 0.32), transparent 70%);
  animation: thankyou-glow 8s ease-in-out infinite;
}

.thankyou-modal-orb picture {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thankyou-modal-orb img {
  width: 82%;
  height: 82%;
  max-width: none;
  object-fit: contain;
  display: block;
  z-index: 1;
  filter: drop-shadow(0 18px 28px rgba(12, 26, 72, 0.28));
}

.thankyou-modal-content {
  display: grid;
  gap: clamp(12px, 2.5vw, 24px);
}

.thankyou-modal-eyebrow {
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(9, 29, 87, 0.6);
}

.thankyou-modal-content h2 {
  font-size: clamp(26px, 4vw, 34px);
  margin: 0;
  color: var(--titank-blue-dark);
}

.thankyou-modal-content p {
  font-size: clamp(16px, 2.4vw, 18px);
  color: rgba(12, 24, 68, 0.78);
  margin: 0;
  line-height: 1.6;
}

.thankyou-modal-timer {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 16px 20px;
  border-radius: 20px;
  background: rgba(30, 70, 180, 0.08);
}

.thankyou-modal-timer-ring {
  width: 96px;
  height: 96px;
}

.thankyou-modal-timer-track {
  fill: none;
  stroke: rgba(30, 70, 180, 0.15);
  stroke-width: 6;
}

.thankyou-modal-timer-progress {
  --circumference: 339.292;
  fill: none;
  stroke: #4361ff;
  stroke: url(#thankyouGradient);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: var(--circumference);
  stroke-dashoffset: calc(var(--circumference) * (1 - var(--progress, 0)));
  transition: stroke-dashoffset 0.1s linear;
}

.thankyou-modal-timer-info {
  display: grid;
  gap: 2px;
  color: var(--titank-blue);
}

.thankyou-modal-timer-label {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(15, 33, 79, 0.62);
}

.thankyou-modal-timer-value {
  font-size: clamp(28px, 5vw, 38px);
  font-weight: 700;
  color: var(--titank-blue-dark);
}

.thankyou-modal-timer-seconds {
  font-size: 13px;
  color: rgba(15, 33, 79, 0.55);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.thankyou-modal-ok {
  justify-self: flex-start;
  min-width: 180px;
}

@media (min-width: 860px) {
  .thankyou-modal-dialog {
    grid-template-columns: minmax(0, 260px) minmax(0, 1fr);
    align-items: center;
  }

  .thankyou-modal-visual {
    justify-content: flex-start;
  }
}

@media (max-width: 580px) {
  .thankyou-modal-dialog {
    border-radius: 22px;
  }

  .thankyou-modal-timer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .thankyou-modal-ok {
    justify-self: stretch;
  }
}

@keyframes thankyou-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes thankyou-glow {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }

  50% {
    transform: scale(1.12);
    opacity: 0.9;
  }
}

body.thankyou-modal-open {
  overflow: hidden;
}

@media (max-width: 600px) {
  .contact-modal {
    padding: 16px;
  }

  .contact-modal-dialog {
    padding: 24px 20px;
    border-radius: 20px;
  }
}

.wp-block-image figcaption {
  text-align: center;
}

@media (max-width: 768px) {
  .site-header .header-inner {
    justify-items: stretch;
  }

  .site-header .primary-nav ul {
    width: 100%;
  }

  .site-header .header-actions {
    width: 100%;
    align-items: flex-start;
  }
}