.inner-page {
  min-height: 100vh;
  padding-top: 78px;
  background: #fff;
}

.inner-header {
  position: fixed;
  z-index: 200;
  top: 0;
  right: 0;
  left: 0;
  height: 78px;
  border-bottom: 1px solid rgba(231, 235, 239, .9);
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(16px);
}

.inner-header__row {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 34px;
}

.inner-brand {
  display: block;
  width: 166px;
  flex: 0 0 auto;
}

.inner-brand img {
  display: block;
  width: 100%;
  height: auto;
}

.inner-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.inner-nav a {
  position: relative;
  padding: 28px 0 26px;
  font-size: 14px;
  font-weight: 650;
}

.inner-nav a::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  content: "";
  opacity: 0;
  transform: scaleX(0);
  transition: .25s ease;
}

.inner-nav a:hover::after,
.inner-nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.inner-header__actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.inner-header__phone {
  white-space: nowrap;
  font-size: 14px;
  font-weight: 750;
}

.inner-header__cta {
  display: inline-flex;
  min-height: 44px;
  padding: 0 18px;
  align-items: center;
  color: #fff;
  border-radius: 9px;
  background: var(--accent);
  font-size: 12px;
  font-weight: 750;
}

.inner-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 12px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
}

.inner-menu-button span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: .25s ease;
}

.inner-mobile {
  position: fixed;
  z-index: 190;
  top: 78px;
  right: 0;
  left: 0;
  display: none;
  padding: 14px 20px 24px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 24px 50px rgba(11, 19, 36, .1);
}

.inner-mobile a {
  display: block;
  padding: 14px 10px;
  border-bottom: 1px solid var(--line);
  font-size: 18px;
  font-weight: 650;
}

.inner-header.is-open .inner-mobile {
  display: block;
}

.inner-header.is-open .inner-menu-button span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.inner-header.is-open .inner-menu-button span:nth-child(2) {
  opacity: 0;
}

.inner-header.is-open .inner-menu-button span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0 0 40px;
  padding: 0;
  color: var(--muted);
  font-size: 11px;
  list-style: none;
}

.breadcrumbs ol {
    list-style-type: none;
    padding: 0px;
}

.breadcrumbs ol li:not(:last-child)::after {
  margin-left: 9px;
  color: #b9c0c9;
  content: "—";
}

.breadcrumbs ol li a:hover {
  color: var(--accent);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 120px 0 100px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 86% 18%, rgba(5, 155, 185, .1), transparent 28%),
    linear-gradient(180deg, #fff 0%, #fafcfd 100%);
}

.page-hero::after {
  position: absolute;
  top: -250px;
  right: -180px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(5, 155, 185, .09);
  border-radius: 50%;
  content: "";
}

.page-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(330px, .78fr);
  align-items: end;
  gap: 88px;
}

.page-hero h1 {
  max-width: 940px;
  margin: 0;
  font-size: clamp(58px, 6.6vw, 92px);
  font-weight: 790;
  line-height: .94;
  letter-spacing: -.064em;
}

.page-hero h1 span {
  color: var(--accent);
}

.page-hero__lead {
  max-width: 720px;
  margin: 30px 0 0;
  color: var(--text);
  font-size: 19px;
  line-height: 1.65;
}

.page-hero__aside {
    padding: 25px 0 4px;
}

.page-hero__aside-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 42px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.page-hero__aside-top strong {
  color: var(--accent);
  font-size: 12px;
}

.page-hero__aside p {
  margin: 0 0 26px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.65;
}

.page-arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-size: 13px;
  font-weight: 750;
}

.page-arrow-link:hover {
    color: var(--accent);
}

.page-arrow-link i {
  color: var(--accent);
  font-size: 18px;
  font-style: normal;
  transition: transform .25s ease;
}

.page-arrow-link:hover i {
  transform: translateX(4px);
}

.page-section {
  padding: 110px 0;
}

.page-section--surface {
  background: var(--surface);
}

.page-section--dark {
  color: #fff;
  background:
    radial-gradient(circle at 90% 10%, rgba(5, 155, 185, .28), transparent 28%),
    var(--ink);
}

.page-section__head {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(540px, 1.28fr);
  align-items: start;
  gap: 80px;
  margin-bottom: 54px;
}

.page-section__head h2,
.content-split h2,
.page-cta h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(42px, 4.5vw, 64px);
  font-weight: 760;
  line-height: 1;
  letter-spacing: -.052em;
}

.page-section__head p {
  max-width: 700px;
  margin: 0;
  color: var(--text);
  font-size: 17px;
  line-height: 1.75;
}

.page-section--dark .page-section__head p {
  color: #b8c3d1;
}

.content-split {
  display: grid;
  grid-template-columns: minmax(300px, .8fr) minmax(560px, 1.2fr);
  align-items: start;
  gap: 86px;
}

.content-split__copy {
  display: grid;
  gap: 22px;
}

.content-split__copy p {
  margin: 0;
  color: var(--text);
  font-size: 16px;
  line-height: 1.78;
}

.content-split__copy strong {
  color: var(--ink);
}

.fact-grid,
.value-grid,
.service-index-grid,
.works-index-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.fact-card,
.value-card {
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.fact-card span,
.value-card span {
  display: block;
  margin-bottom: 52px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
}

.fact-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 30px;
  line-height: 1.1;
}

.fact-card p,
.value-card p {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.65;
}

.value-card h3 {
  margin-bottom: 14px;
  font-size: 23px;
}

.process-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.process-item {
  display: grid;
  grid-template-columns: 70px minmax(230px, .72fr) minmax(440px, 1.28fr);
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.process-item > span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
}

.process-item h3 {
  margin: 0;
  font-size: 23px;
}

.process-item p {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.7;
}

.service-index-card {
  position: relative;
  display: flex;
  min-height: 360px;
  overflow: hidden;
  padding: 28px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 90% 10%, rgba(5, 155, 185, .13), transparent 32%),
    #fff;
  transition:
    transform .3s var(--ease),
    box-shadow .3s ease,
    border-color .3s ease;
}

.service-index-card:hover {
  border-color: rgba(5, 155, 185, .27);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.service-index-card__number {
  margin-bottom: 65px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
}

.service-index-card h2,
.service-index-card h3 {
  max-width: 390px;
  margin-bottom: 15px;
  font-size: 26px;
  line-height: 1.12;
}

.service-index-card p {
  max-width: 410px;
  margin: 0 0 30px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.65;
}

.service-index-card__more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  font-weight: 750;
}

.service-index-card__more i {
  color: var(--accent);
  font-size: 19px;
  font-style: normal;
}

.service-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  margin-top: -1px;
  border: 1px solid var(--line);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  background: #fff;
}

.service-fact {
  min-height: 160px;
  padding: 27px;
}

.service-fact + .service-fact {
  border-left: 1px solid var(--line);
}

.service-fact span {
  display: block;
  margin-bottom: 35px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
}

.service-fact strong {
  display: block;
  font-size: 18px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.benefit-card {
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.benefit-card span {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 40px;
  place-items: center;
  color: var(--accent);
  border-radius: 50%;
  background: var(--accent-soft);
  font-size: 10px;
  font-weight: 800;
}

.benefit-card h3 {
  margin-bottom: 12px;
  font-size: 23px;
}

.benefit-card p {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.65;
}

.spec-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.spec-row {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: 24px;
  padding: 22px 26px;
}

.spec-row + .spec-row {
  border-top: 1px solid var(--line);
}

.spec-row strong {
  font-size: 13px;
}

.spec-row span {
  color: var(--text);
  font-size: 14px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  display: flex;
  width: 100%;
  padding: 25px 0;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--ink);
  text-align: left;
  font-size: 18px;
  font-weight: 700;
}

.faq-question i {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  color: var(--accent);
  border-radius: 50%;
  background: var(--accent-soft);
  font-size: 18px;
  font-style: normal;
  transition: transform .25s ease;
}

.faq-item.is-open .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  max-width: 850px;
  padding: 0 0 27px;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.faq-answer p {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.75;
}

.blueprint {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(rgba(112, 208, 226, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(112, 208, 226, .08) 1px, transparent 1px),
    radial-gradient(circle at 65% 30%, rgba(5, 155, 185, .22), transparent 28%),
    #0b1423;
  background-size: 34px 34px, 34px 34px, auto, auto;
}

.blueprint__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(112, 208, 226, .25);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.blueprint__ring--one {
  width: 330px;
  height: 330px;
}

.blueprint__ring--two {
  width: 230px;
  height: 230px;
  border-style: dashed;
}

.blueprint__part {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 165px;
  height: 220px;
  border: 2px solid rgba(196, 237, 245, .82);
  border-radius: 52% 30% 43% 32%;
  background: linear-gradient(145deg, rgba(112, 208, 226, .16), rgba(255, 255, 255, .025));
  box-shadow: inset 0 0 40px rgba(112, 208, 226, .14);
  transform: translate(-50%, -50%) rotate(13deg);
}

.blueprint__part::before,
.blueprint__part::after {
  position: absolute;
  border: 2px solid rgba(196, 237, 245, .68);
  border-radius: 50%;
  content: "";
}

.blueprint__part::before {
  top: 30px;
  right: 28px;
  width: 42px;
  height: 42px;
}

.blueprint__part::after {
  right: 28px;
  bottom: 35px;
  width: 58px;
  height: 58px;
}

.blueprint__label {
  position: absolute;
  top: 24px;
  left: 24px;
  padding: 8px 11px;
  color: rgba(211, 239, 245, .72);
  border: 1px solid rgba(112, 208, 226, .2);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .14em;
}

.works-index-grid {
  grid-template-columns: repeat(2, 1fr);
}

.works-index-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  transition: .3s var(--ease);
}

.works-index-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.works-index-card .work-visual {
  min-height: 300px;
}

.works-index-card__content {
  padding: 28px;
}

.works-index-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.works-index-card h2,
.works-index-card h3 {
  margin-bottom: 13px;
  font-size: 28px;
}

.works-index-card p {
  margin: 0 0 24px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.65;
}

.case-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.case-summary > div {
  min-height: 175px;
  padding: 27px;
}

.case-summary > div + div {
  border-left: 1px solid var(--line);
}

.case-summary span {
  display: block;
  margin-bottom: 40px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
}

.case-summary strong {
  display: block;
  font-size: 18px;
}

.contact-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: start;
  gap: 70px;
}

.contact-grid iframe {
    border-radius: 20px;
}

.contact-list-page {
  display: grid;
  border-top: 1px solid var(--line);
}

.contact-list-page a {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.contact-list-page a:hover {
    color: var(--accent);
}

.contact-list-page > a:last-of-type {
    border-bottom: none !important;
    margin-bottom: 20px;
}

.contact-list-page a > span:first-child {
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
}

.contact-list-page small,
.contact-list-page strong {
  display: block;
}

.contact-list-page small {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
}

.contact-list-page strong {
  font-size: 18px;
}

.contact-list-page i {
  color: var(--accent);
  font-size: 19px;
  font-style: normal;
}

.contact-form-page {
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.contact-form-page__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.contact-form-page label {
  display: block;
  margin-bottom: 18px;
}

.contact-form-page label > span {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 750;
}

.contact-form-page input,
.contact-form-page select,
.contact-form-page textarea {
  width: 100%;
  outline: 0;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fff;
}

.contact-form-page input,
.contact-form-page select {
  height: 56px;
  padding: 0 16px;
}

.contact-form-page textarea {
  min-height: 145px;
  padding: 15px 16px;
  resize: vertical;
}

.contact-form-page input:focus,
.contact-form-page select:focus,
.contact-form-page textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(5, 155, 185, .1);
}

.contact-form-page__note {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.contact-map-page {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(rgba(5, 155, 185, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5, 155, 185, .06) 1px, transparent 1px),
    #edf5f6;
  background-size: 38px 38px;
}

.contact-map-page::before,
.contact-map-page::after {
  position: absolute;
  right: -10%;
  left: -10%;
  height: 30px;
  border: 8px solid rgba(255, 255, 255, .82);
  border-right: 0;
  border-left: 0;
  background: #dce8ea;
  content: "";
}

.contact-map-page::before {
  top: 42%;
  transform: rotate(-13deg);
}

.contact-map-page::after {
  top: 70%;
  transform: rotate(17deg);
}

.contact-map-page__pin {
  position: absolute;
  z-index: 3;
  top: 49%;
  left: 53%;
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border: 10px solid rgba(255, 255, 255, .86);
  border-radius: 50% 50% 50% 12px;
  background: var(--accent);
  box-shadow: 0 18px 42px rgba(5, 155, 185, .3);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.contact-map-page__pin span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
}

.contact-map-page__label {
  position: absolute;
  z-index: 3;
  top: calc(49% + 54px);
  left: 53%;
  display: grid;
  min-width: 200px;
  padding: 13px 16px;
  gap: 4px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .95);
  box-shadow: var(--shadow-md);
  transform: translateX(-50%);
}

.contact-map-page__label small {
  color: var(--accent);
  font-size: 9px;
  font-weight: 800;
}

.page-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  align-items: end;
  gap: 70px;
  padding: 58px;
  color: #fff;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 90% 20%, rgba(5, 155, 185, .34), transparent 32%),
    var(--ink);
}

.page-cta h2 {
  color: #fff;
}

.page-cta p {
  max-width: 620px;
  margin: 24px 0 0;
  color: #b8c3d1;
  font-size: 15px;
  line-height: 1.7;
}

.page-cta__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.page-cta__actions a {
  display: inline-flex;
  min-height: 54px;
  padding: 0 22px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 750;
}

.page-cta__actions a:first-child {
  border-color: var(--accent);
  background: var(--accent);
}

.inner-footer {
  padding: 70px 0 28px;
  color: #c5ccd5;
  background: var(--ink);
}

.inner-footer__grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr 1fr;
  gap: 50px;
}

.inner-footer__brand img {
  width: 150px;
  padding: 9px 13px;
  border-radius: 8px;
  background: #fff;
}

.inner-footer__brand p {
  max-width: 310px;
  margin: 20px 0 0;
  color: #9ba7b6;
  font-size: 12px;
  line-height: 1.65;
}

.inner-footer__column {
  display: grid;
  align-content: start;
  gap: 11px;
}

.inner-footer__column h2 {
  margin-bottom: 8px;
  color: #fff;
  font-size: 13px;
}

.inner-footer__column a,
.inner-footer__column span {
  color: #aab5c2;
  font-size: 12px;
}

.inner-footer__column a:hover {
  color: #fff;
}

.inner-footer__bottom {
  display: flex;
  margin-top: 54px;
  padding-top: 24px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: #7f8a99;
  font-size: 10px;
}

@media (max-width: 1100px) {
  .inner-nav,
  .inner-header__cta {
    display: none;
  }

  .inner-header__actions {
    margin-left: auto;
  }

  .inner-menu-button {
    display: flex;
  }

  .page-hero__grid,
  .page-section__head,
  .content-split,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .fact-grid,
  .value-grid,
  .service-index-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .inner-footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .inner-page {
    padding-top: 70px;
  }

  .inner-header {
    height: 70px;
  }

  .inner-brand {
    width: 145px;
  }

  .inner-header__phone {
    display: none;
  }

  .inner-mobile {
    top: 70px;
  }

  .breadcrumbs {
    margin-bottom: 28px;
  }

  .page-hero {
    padding: 44px 0 70px;
  }

  .page-hero h1 {
    font-size: clamp(48px, 14vw, 65px);
  }

  .page-hero__lead {
    margin-top: 24px;
    font-size: 16px;
  }

  .page-hero__aside-top {
    margin-bottom: 24px;
  }

  .page-section {
    padding: 72px 0;
  }

  .page-section__head {
    margin-bottom: 34px;
  }

  .page-section__head h2,
  .content-split h2,
  .page-cta h2 {
    font-size: 39px;
  }

  .page-section__head p {
    font-size: 15px;
  }

  .fact-grid,
  .value-grid,
  .service-index-grid,
  .works-index-grid,
  .benefit-grid,
  .service-facts,
  .case-summary {
    grid-template-columns: 1fr;
  }

  .service-fact + .service-fact,
  .case-summary > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .process-item {
    grid-template-columns: 42px 1fr;
    gap: 12px;
  }

  .process-item p {
    grid-column: 2;
  }

  .service-index-card {
    min-height: 320px;
  }

  .service-index-card__number {
    margin-bottom: 45px;
  }

  .spec-row {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .blueprint {
    min-height: 360px;
  }

  .works-index-card .work-visual {
    min-height: 250px;
  }

  .contact-form-page {
    padding: 24px 18px;
  }

  .contact-form-page__row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-map-page {
    min-height: 360px;
  }

  .page-cta {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 36px 24px;
  }

  .page-cta__actions {
    align-items: stretch;
    justify-content: stretch;
    flex-direction: column;
  }

  .inner-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 38px 25px;
  }

  .inner-footer__brand {
    grid-column: 1 / -1;
  }

  .inner-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }
}

@media (max-width: 430px) {
  .inner-footer__grid {
    grid-template-columns: 1fr;
  }

  .inner-footer__brand {
    grid-column: auto;
  }
}
