:root {
  --bg: #0a0d14;
  --bg-soft: #121826;
  --bg-card: rgba(20, 26, 38, 0.88);
  --bg-card-strong: #151c29;
  --text: #f5f7fb;
  --muted: #b8c2d3;
  --line: rgba(255, 255, 255, 0.1);
  --primary: #6de2da;
  --primary-dark: #49c8bf;
  --accent: #ff6b00;
  --accent-2: #ffb000;
  --success: #79ffb4;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --radius: 22px;
  --radius-sm: 16px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 20%, rgba(109, 226, 218, 0.12), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(255, 107, 0, 0.12), transparent 24%),
    linear-gradient(180deg, #081018 0%, #0b111c 100%);
  line-height: 1.55;
  overflow-x: hidden;
}

.site-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.6), transparent 92%);
  z-index: -1;
}

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

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(7, 11, 19, 0.82);
  border-bottom: 1px solid var(--line);
}

.topbar__inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand__logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 14px;
  background: #fff;
  padding: 4px;
  box-shadow: var(--shadow);
}

.brand__text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand__title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.brand__subtitle {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav a {
  color: var(--muted);
  font-weight: 600;
  transition: .25s ease;
}

.nav a:hover {
  color: var(--primary);
}

.topbar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.topbar__phone {
  font-weight: 800;
  white-space: nowrap;
  color: var(--success);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  cursor: pointer;
  transition: .25s ease;
  font-weight: 800;
  border-radius: 999px;
  padding: 14px 22px;
  text-align: center;
  font-family: "Montserrat", sans-serif;
}

.btn--primary {
  background: linear-gradient(135deg, var(--primary), #9df1eb);
  color: #071018;
  box-shadow: 0 12px 30px rgba(109, 226, 218, .28);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(109, 226, 218, .34);
}

.btn--accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #1b0d00;
  box-shadow: 0 16px 32px rgba(255, 107, 0, .3);
}

.btn--accent:hover {
  transform: translateY(-2px) scale(1.01);
}

.btn--ghost {
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: var(--text);
}

.btn--ghost:hover,
.btn--ghost-light:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn--ghost-light {
  border: 1px solid rgba(255,255,255,.45);
  background: rgba(255,255,255,.10);
  color: #fff;
  backdrop-filter: blur(8px);
}

.btn--menu {
  display: none;
  background: rgba(255,255,255,.06);
  color: #fff;
  font-size: 1.25rem;
  padding: 12px 16px;
}

.btn--full {
  width: 100%;
}

.hero {
  position: relative;
  padding: 24px 0 34px;
  overflow: hidden;
  min-height: calc(100vh - 84px);
  display: flex;
  align-items: center;
}

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

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  filter: none;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(109,226,218,.10), transparent 26%),
    radial-gradient(circle at 78% 22%, rgba(255,107,0,.10), transparent 24%),
    linear-gradient(90deg, rgba(6, 10, 16, 0.56) 0%, rgba(6, 10, 16, 0.38) 28%, rgba(6, 10, 16, 0.18) 55%, rgba(6, 10, 16, 0.14) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero__grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 28px;
  align-items: center;
}

.hero__grid--single {
  grid-template-columns: 1fr;
}

.hero__content--compact {
  max-width: 920px;
}

.hero__content {
  padding: clamp(22px, 3vw, 34px);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(7, 12, 20, 0.68), rgba(7, 12, 20, 0.40));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--primary);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero h1,
.section-head h2,
.lead-box__content h2,
.process-content h2,
.contacts-card h2 {
  font-family: "Montserrat", sans-serif;
  line-height: .98;
  letter-spacing: -0.03em;
}

.hero h1 {
  margin: 0 0 10px;
  font-size: clamp(1.9rem, 3.2vw, 3.2rem);
  font-weight: 900;
  text-transform: uppercase;
  max-width: 900px;
}

.hero h1 span {
  color: var(--primary);
  display: block;
}

.section-head h2,
.lead-box__content h2,
.process-content h2,
.contacts-card h2,
.footer h4,
.adv-card h3,
.service h3,
.case h3,
.step h3 {
  color: var(--primary);
}

.hero__text {
  max-width: 700px;
  color: #eef4ff;
  font-size: .98rem;
  margin-bottom: 12px;
  text-shadow: 0 2px 14px rgba(0,0,0,.25);
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.badge {
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  font-weight: 700;
  font-size: .88rem;
  backdrop-filter: blur(8px);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 860px;
}

.stat {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,.08));
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.stat strong {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 1.32rem;
  color: var(--accent-2);
  margin-bottom: 4px;
}

.stat span {
  color: #f0f5ff;
  font-size: .9rem;
}

.strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
}

.strip__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.strip__item {
  padding: 18px 12px;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  color: #dfe7f5;
  border-right: 1px solid var(--line);
  font-size: .9rem;
}

.strip__item:last-child {
  border-right: 0;
}

.section {
  padding: 63px 0;
}

.section--dark {
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
}

.section--accent {
  background:
    radial-gradient(circle at 80% 20%, rgba(109,226,218,.12), transparent 22%),
    linear-gradient(135deg, #101726 0%, #15101a 100%);
}

.section--gallery {
  position: relative;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.35rem);
  max-width: 860px;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  max-width: 430px;
  font-size: 1rem;
}

.advantages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.adv-card,
.service,
.case,
.contacts-card,
.map-card,
.form,
.process-media,
.gallery-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow);
}

.adv-card {
  border-radius: var(--radius);
  padding: 28px;
  min-height: 220px;
  position: relative;
  overflow: hidden;
}

.adv-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -40px auto;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(109,226,218,.18), transparent 70%);
}

.adv-card__icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), #9df1eb);
  color: #091019;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  margin-bottom: 14px;
}

.adv-card h3 {
  margin: 0 0 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
}

.adv-card p {
  margin: 0;
  color: var(--muted);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
}

.service {
  grid-column: span 4;
  border-radius: 24px;
  overflow: hidden;
}

.service--large {
  grid-column: span 8;
}

.service__image {
  height: 250px;
  overflow: hidden;
}

.service--large .service__image {
  height: 340px;
}

.service__image img,
.case img,
.process-media img,
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service__content {
  padding: 20px;
}

.service__label {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--accent-2);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .8rem;
}

.service h3,
.case h3,
.step h3,
.map-card__overlay h3 {
  margin: 0 0 8px;
  font-family: "Montserrat", sans-serif;
}

.service p,
.case p,
.step p,
.contact-item p,
.lead-box__content p,
.process-content p,
.map-card__overlay p {
  margin: 0;
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-auto-rows: 260px;
  gap: 22px;
}

.gallery-card {
  border-radius: 26px;
  overflow: hidden;
  position: relative;
}

.gallery-card img {
  transition: transform .55s ease, filter .3s ease;
}

.gallery-card:hover img {
  transform: scale(1.04);
}

.gallery-card--large {
  grid-row: span 2;
}

.lead-box {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 20px;
  align-items: stretch;
}

.lead-box__content {
  padding: 30px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255,107,0,.12), rgba(255,176,0,.06)),
    rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow);
}

.lead-box__content h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.lead-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 10px;
}

.lead-list li {
  position: relative;
  padding-left: 30px;
  font-weight: 700;
}

.lead-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--success);
  font-weight: 900;
}

.form {
  padding: 22px;
  border-radius: 28px;
}

.form--highlight {
  background: linear-gradient(180deg, rgba(109,226,218,.08), rgba(255,255,255,.03));
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}

.form label {
  color: #d9e5f5;
  font-weight: 700;
  font-size: .94rem;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color: var(--text);
  border-radius: 16px;
  padding: 15px 16px;
  font: inherit;
  outline: none;
  transition: .2s ease;
}

.form input::placeholder,
.form textarea::placeholder {
  color: #8ea0ba;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(109,226,218,.12);
}

.form__consent {
  margin: 4px 0 14px;
}

.checkbox {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
  cursor: pointer;
}

.checkbox input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.checkbox__box {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.05);
  position: relative;
  transition: .2s ease;
}

.checkbox__text {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.45;
}

.checkbox__text a {
  color: var(--primary);
  text-decoration: underline;
}

.checkbox input:checked + .checkbox__box {
  background: linear-gradient(135deg, var(--primary), #9df1eb);
  border-color: transparent;
}

.checkbox input:checked + .checkbox__box::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid #071018;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox input:focus + .checkbox__box {
  box-shadow: 0 0 0 4px rgba(109,226,218,.12);
}

.form__note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: .86rem;
}

.use-cases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.case {
  border-radius: 24px;
  overflow: hidden;
}

.case img {
  height: 270px;
}

.case__body {
  padding: 20px;
}

.process-wrap {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 24px;
  align-items: center;
}

.process-media {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 560px;
}

.process-badge {
  position: absolute;
  right: 22px;
  bottom: 22px;
  padding: 18px 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--primary), #9df1eb);
  color: #071019;
  box-shadow: var(--shadow);
}

.process-badge strong {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 1.35rem;
}

.process-content h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.steps {
  display: grid;
  gap: 14px;
  margin: 0 0 20px;
}

.step {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 16px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}

.step span {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #201000;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
}

.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contacts-card,
.map-card {
  border-radius: 28px;
  overflow: hidden;
}

.contacts-card {
  padding: 28px;
}

.contacts-card h2 {
  margin: 0 0 14px;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-item {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.contact-item__title {
  display: block;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .8rem;
  font-weight: 800;
  margin-bottom: 6px;
}

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

.map-card {
  position: relative;
  min-height: 100%;
}

.map-card--iframe {
  padding: 0;
  background: rgba(255,255,255,.03);
}

.map-card--iframe iframe {
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
  filter: saturate(0.9) contrast(1.02);
}

.footer {
  padding: 30px 0 18px;
  border-top: 1px solid var(--line);
  background: rgba(0,0,0,.22);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr .8fr;
  gap: 24px;
}

.footer__brand {
  max-width: 380px;
}

.footer__logo {
  width: 88px;
  border-radius: 18px;
  background: #fff;
  padding: 6px;
  margin-bottom: 14px;
}

.footer h4 {
  margin: 0 0 12px;
  font-family: "Montserrat", sans-serif;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.footer p,
.footer li,
.footer a,
.footer span {
  color: var(--muted);
}

.footer__bottom {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
}

.footer__up {
  color: var(--primary);
  font-weight: 700;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(10, 15, 25, .95);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: var(--shadow);
}

.cookie-banner__text {
  color: var(--muted);
  font-size: .95rem;
}

.cookie-banner__text a {
  color: var(--primary);
  text-decoration: underline;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(10, 15, 25, .98);
    border: 1px solid rgba(255,255,255,.1);
  }

  .nav.is-open {
    display: flex;
  }

  .btn--menu {
    display: inline-flex;
  }

  .topbar__actions .btn--primary {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 26px 0 34px;
  }

  .hero__content {
    max-width: 760px;
  }

  .hero__grid,
  .lead-box,
  .process-wrap,
  .contacts-grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }

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

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

  .service,
  .service--large {
    grid-column: span 1;
  }

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

  .gallery-card--large {
    grid-row: span 1;
    grid-column: span 2;
  }

  .use-cases {
    grid-template-columns: 1fr;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-head p {
    max-width: 100%;
  }

  .strip__grid {
    grid-template-columns: 1fr;
  }

  .strip__item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .strip__item:last-child {
    border-bottom: 0;
  }

  .map-card--iframe iframe {
    min-height: 360px;
  }
}

@media (max-width: 760px) {
  .topbar__inner {
    min-height: 78px;
  }

  .brand__logo {
    width: 54px;
    height: 54px;
  }

  .brand__title {
    font-size: .92rem;
  }

  .topbar__phone {
    display: none;
  }

  .hero {
    padding-top: 18px;
    padding-bottom: 24px;
    min-height: auto;
  }

  .hero__overlay {
    background:
      radial-gradient(circle at 20% 16%, rgba(109,226,218,.08), transparent 24%),
      linear-gradient(180deg, rgba(6, 10, 16, 0.34) 0%, rgba(6, 10, 16, 0.18) 32%, rgba(6, 10, 16, 0.48) 100%);
  }

  .hero__content {
    padding: 18px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(7, 12, 20, 0.64), rgba(7, 12, 20, 0.42));
  }

  .hero h1 {
    font-size: 1.62rem;
    line-height: 1.03;
    margin-bottom: 12px;
  }

  .hero__text {
    font-size: .93rem;
    margin-bottom: 14px;
  }

  .hero__badges {
    gap: 8px;
    margin-bottom: 14px;
  }

  .badge {
    font-size: .82rem;
    padding: 8px 12px;
  }

  .hero__cta {
    gap: 10px;
    margin-bottom: 14px;
  }

  .hero__cta .btn,
  .contacts-actions .btn {
    width: 100%;
  }

  .hero__stats,
  .advantages,
  .services-grid,
  .form__row,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .stat {
    padding: 13px 14px;
  }

  .stat strong {
    font-size: 1.18rem;
  }

  .gallery-grid {
    grid-auto-rows: 220px;
  }

  .gallery-card--large {
    grid-column: span 1;
  }

  .section {
    padding: 48px 0;
  }

  .lead-box__content,
  .form,
  .contacts-card {
    padding: 22px;
  }

  .process-media {
    min-height: 320px;
  }

  .step {
    grid-template-columns: 1fr;
  }

  .step span {
    width: 60px;
    height: 60px;
  }

  .map-card--iframe iframe {
    min-height: 300px;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    flex-direction: column;
    align-items: stretch;
  }
}