/* ===== Design tokens ===== */
:root {
  /* Brand palette — primary #816dde (kept under --green-* names so the
     whole stylesheet picks it up; values are purple shades) */
  --green-50: #f4f1fd;
  --green-100: #e7e1fb;
  --green-300: #b9a9ee;
  --green-400: #9a85e4;
  --green-500: #816dde;
  --green-600: #6a52d0;
  --green-700: #5740b0;
  --ink-900: #1a1340;
  --ink-800: #241a52;
  --ink-700: #33265f;
  --slate-900: #140e30;
  --slate-600: #5b5470;
  --slate-500: #837ca0;
  --paper: #f8f7fc;
  --white: #ffffff;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 4px 16px rgba(45, 32, 90, 0.07);
  --shadow: 0 18px 48px rgba(45, 32, 90, 0.12);
  --shadow-lg: 0 30px 70px rgba(45, 32, 90, 0.18);
  --ring: 0 0 0 4px rgba(129, 109, 222, 0.18);
  --maxw: 1180px;
  --font-head: "Mitr", sans-serif;
  --font-body: "Mitr", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}
body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--ink-800);
  background: var(--paper);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img,
svg {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
strong {
  font-weight: 500;
}
h1,
h2,
h3,
h4,
h5 {
  font-weight: 500;
}
.ic {
  display: block;
  flex: none;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.98rem;
  padding: 0.8em 1.5em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  color: #fff;
  box-shadow: 0 10px 24px rgba(106, 82, 208, 0.32);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(106, 82, 208, 0.42);
}
.btn--ghost {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(45, 32, 90, 0.12);
  color: var(--ink-800);
}
.btn--ghost:hover {
  transform: translateY(-2px);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.btn--lg {
  padding: 1em 1.9em;
  font-size: 1.05rem;
}
.btn--sm {
  padding: 0.62em 1.1em;
  font-size: 0.9rem;
}
.btn--block {
  width: 100%;
}

/* ===== Navbar ===== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 14px 0;
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease,
    padding 0.3s ease;
}
.nav.scrolled {
  background: rgba(248, 247, 252, 0.85);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
  padding: 8px 0;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.brand__mark {
  width: 38px;
  height: 38px;
}
.brand__text {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 1.3rem;
  letter-spacing: 0.5px;
  color: var(--ink-900);
  line-height: 1;
  display: flex;
  flex-direction: column;
}
.brand__sub {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: var(--green-600);
  text-transform: uppercase;
  margin-top: 2px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}
.nav__links a {
  font-weight: 500;
  font-size: 0.98rem;
  color: var(--ink-700);
  transition: color 0.2s;
}
.nav__links a:not(.btn):hover {
  color: var(--green-600);
}
.nav__links .btn {
  color: #fff;
}
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--ink-800);
  border-radius: 2px;
  transition: 0.3s;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 150px 0 90px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
}
.orb--1 {
  width: 520px;
  height: 520px;
  top: -140px;
  right: -120px;
  background: radial-gradient(circle, var(--green-300), transparent 70%);
}
.orb--2 {
  width: 440px;
  height: 440px;
  bottom: -160px;
  left: -120px;
  background: radial-gradient(circle, #c9bdf5, transparent 70%);
  opacity: 0.45;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--green-100);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--green-700);
  box-shadow: var(--shadow-sm);
}
.pill__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 0 0 4px rgba(129, 109, 222, 0.2);
  animation: pulse 2s infinite;
}
.hero__title {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(2.2rem, 4.6vw, 3.65rem);
  line-height: 1.12;
  color: var(--ink-900);
  margin: 1.2rem 0 1.1rem;
  letter-spacing: -0.5px;
}
.grad {
  background: linear-gradient(120deg, var(--green-500), var(--green-700));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__lead {
  font-size: 1.12rem;
  color: var(--slate-600);
  max-width: 42ch;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  margin: 2rem 0 2.4rem;
  flex-wrap: wrap;
}
.hero__stats {
  display: flex;
  gap: 2.4rem;
  flex-wrap: wrap;
}
.hero__stats div {
  display: flex;
  flex-direction: column;
}
.hero__stats strong {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--ink-900);
  line-height: 1;
}
.hero__stats span {
  font-size: 0.85rem;
  color: var(--slate-500);
  margin-top: 0.35rem;
}

/* Dashboard mockup */
.hero__visual {
  perspective: 1400px;
}
.dashboard {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: rotateY(-15deg) rotateX(7deg);
  transition: transform 0.5s ease;
  animation: floaty 6s ease-in-out infinite;
}
.dashboard:hover {
  transform: rotateY(0) rotateX(0);
}
.dashboard__top {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 14px 18px;
  background: linear-gradient(120deg, var(--ink-800), var(--ink-700));
}
.dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
.dot.r {
  background: #ff5f57;
}
.dot.y {
  background: #febc2e;
}
.dot.g {
  background: #28c840;
}
.dashboard__title {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
  margin-left: 10px;
  font-family: var(--font-head);
}
.dashboard__body {
  padding: 22px;
  display: grid;
  gap: 16px;
}
.metric {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 4px 12px;
}
.metric__label {
  font-size: 0.86rem;
  color: var(--slate-600);
}
.metric__val {
  font-family: var(--font-head);
  font-weight: 500;
  color: var(--ink-900);
}
.bar {
  grid-column: 1/-1;
  height: 7px;
  background: var(--green-50);
  border-radius: 99px;
  overflow: hidden;
}
.bar i {
  display: block;
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--green-400), var(--green-600));
  animation: grow 1.4s ease;
}
.agent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: 14px;
  padding: 14px;
  margin-top: 4px;
}
.agent__pulse {
  flex: none;
  width: 12px;
  height: 12px;
  margin-top: 5px;
  border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 0 0 0 rgba(129, 109, 222, 0.5);
  animation: pulse 1.8s infinite;
}
.agent strong {
  font-family: var(--font-head);
  font-size: 0.92rem;
  color: var(--green-700);
}
.agent p {
  font-size: 0.82rem;
  color: var(--slate-600);
  margin-top: 2px;
}

/* ===== Strip ===== */
.strip {
  background: var(--ink-900);
  padding: 18px 0;
}
.strip__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 38px;
}
.strip__inner span {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 0.98rem;
  font-family: var(--font-head);
}

/* ===== Sections ===== */
.section {
  padding: 96px 0;
  position: relative;
}
.section--alt {
  background: linear-gradient(180deg, var(--white), var(--green-50));
}
.section--dark {
  background: radial-gradient(
    120% 120% at 50% 0%,
    var(--ink-700),
    var(--ink-900)
  );
  color: #fff;
}
.section__head {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
}
.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.82rem;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 0.8rem;
}
.eyebrow--light {
  color: var(--green-300);
}
.section__head h2 {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  color: var(--ink-900);
  line-height: 1.2;
  letter-spacing: -0.4px;
}
.section__head--light h2 {
  color: #fff;
}
.section__head p {
  margin-top: 1rem;
  color: var(--slate-600);
  font-size: 1.08rem;
}
.section__head--light p {
  color: rgba(255, 255, 255, 0.78);
}

/* ===== Cards ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(45, 32, 90, 0.07);
  border-radius: var(--radius);
  padding: 34px 28px;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: var(--green-300);
}
.card--featured {
  background: linear-gradient(180deg, #fff, var(--green-50));
  border-color: var(--green-300);
  box-shadow: var(--shadow);
}
.card__badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 500;
  font-family: var(--font-head);
  letter-spacing: 0.5px;
  padding: 0.35em 1em;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(106, 82, 208, 0.3);
}
.card__icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: 16px;
  margin-bottom: 18px;
  color: var(--green-600);
}
.card__icon .ic {
  width: 30px;
  height: 30px;
}
.card h3 {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 1.35rem;
  color: var(--ink-900);
  margin-bottom: 0.5rem;
}
.card p {
  color: var(--slate-600);
  font-size: 0.98rem;
}
.card__list {
  margin-top: 18px;
  display: grid;
  gap: 9px;
}
.card__list li {
  position: relative;
  padding-left: 26px;
  font-size: 0.92rem;
  color: var(--ink-700);
}
.card__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--green-600);
  background: var(--green-100);
  border-radius: 50%;
  display: grid;
  place-items: center;
}

/* ===== Tech grid ===== */
.tech__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.tech__text h2 {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  color: var(--ink-900);
  line-height: 1.22;
  margin-bottom: 1rem;
  letter-spacing: -0.4px;
}
.tech__text > p {
  color: var(--slate-600);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}
.feature {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid rgba(45, 32, 90, 0.08);
}
.feature:first-of-type {
  border-top: none;
}
.feature__ico {
  flex: none;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid var(--green-100);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  color: var(--green-600);
}
.feature__ico .ic {
  width: 24px;
  height: 24px;
}
.feature h4 {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--ink-900);
}
.feature p {
  font-size: 0.94rem;
  color: var(--slate-600);
}

.flowcard {
  background: #fff;
  border: 1px solid rgba(45, 32, 90, 0.08);
  border-radius: 22px;
  padding: 30px;
  box-shadow: var(--shadow);
}
.flow-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.flow-num {
  flex: none;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 500;
  color: #fff;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  border-radius: 13px;
}
.flow-step strong {
  font-family: var(--font-head);
  font-size: 1.08rem;
  color: var(--ink-900);
}
.flow-step p {
  font-size: 0.92rem;
  color: var(--slate-600);
}
.flow-arrow {
  text-align: center;
  color: var(--green-400);
  font-size: 1.3rem;
  margin: 6px 0 6px 22px;
}

/* ===== Steps ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: s;
}
.step {
  position: relative;
  background: #fff;
  border: 1px solid rgba(45, 32, 90, 0.07);
  border-radius: var(--radius);
  padding: 40px 30px 32px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s;
}
.step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.step__num {
  position: absolute;
  top: -22px;
  left: 30px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 1.3rem;
  color: #fff;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(106, 82, 208, 0.34);
}
.step h3 {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--ink-900);
  margin: 14px 0 0.5rem;
}
.step p {
  color: var(--slate-600);
  font-size: 0.96rem;
}

/* ===== Why grid ===== */
.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.why {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 30px 26px;
  backdrop-filter: blur(6px);
  transition:
    transform 0.3s,
    background 0.3s;
}
.why:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.1);
}
.why__ico {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--green-300);
}
.why__ico .ic {
  width: 26px;
  height: 26px;
}
.why h4 {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 1.12rem;
  color: #fff;
  margin-bottom: 0.4rem;
}
.why p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
}

/* ===== CTA ===== */
.cta {
  background: var(--green-50);
}
.cta__box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  background: #fff;
  border: 1px solid rgba(45, 32, 90, 0.07);
  border-radius: 28px;
  padding: 52px;
  box-shadow: var(--shadow);
  align-items: center;
}
.cta__text h2 {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--ink-900);
  line-height: 1.22;
  margin-bottom: 1rem;
  letter-spacing: -0.4px;
}
.cta__text p {
  color: var(--slate-600);
}
.cta__contacts {
  margin-top: 1.8rem;
  display: grid;
  gap: 0.7rem;
}
.cta__contact {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: var(--green-700);
  font-family: var(--font-head);
}
.cta__contact .ic {
  width: 19px;
  height: 19px;
}
.footer__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.footer__tag .ic {
  width: 17px;
  height: 17px;
}
.cta__contact:hover {
  color: var(--green-600);
}
.cta__form {
  display: grid;
  gap: 14px;
}
.field {
  display: grid;
  gap: 6px;
}
.field label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-700);
}
.field input,
.field textarea {
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--ink-900);
  padding: 0.85em 1em;
  border: 1px solid rgba(45, 32, 90, 0.14);
  border-radius: 12px;
  background: var(--paper);
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  resize: vertical;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--green-400);
  box-shadow: var(--ring);
  background: #fff;
}
.form__note {
  background: var(--green-50);
  border: 1px solid var(--green-100);
  color: var(--green-700);
  padding: 0.8em 1em;
  border-radius: 12px;
  font-size: 0.92rem;
}

/* ===== Footer ===== */
.footer {
  background: var(--ink-900);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 26px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.3fr 2fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer .brand__text {
  color: #fff;
}
.footer__brand p {
  margin-top: 1rem;
  font-size: 0.94rem;
  line-height: 1.8;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.footer__cols h5 {
  font-family: var(--font-head);
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1rem;
}
.footer__cols a {
  display: block;
  font-size: 0.92rem;
  padding: 0.3rem 0;
  transition: color 0.2s;
}
.footer__cols a:hover {
  color: var(--green-300);
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 22px;
  font-size: 0.85rem;
}

/* ===== Reveal animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ===== Keyframes ===== */
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(129, 109, 222, 0.5);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(129, 109, 222, 0);
  }
}
@keyframes floaty {
  0%,
  100% {
    transform: rotateY(-15deg) rotateX(7deg) translateY(0);
  }
  50% {
    transform: rotateY(-15deg) rotateX(7deg) translateY(-14px);
  }
}
@keyframes grow {
  from {
    width: 0 !important;
  }
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .hero__inner,
  .tech__grid,
  .cta__box {
    grid-template-columns: 1fr;
  }
  .hero__visual {
    order: -1;
    max-width: 440px;
    margin: 0 auto;
  }
  .dashboard {
    transform: none;
    animation: none;
  }
  .cards,
  .steps,
  .why__grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
@media (max-width: 640px) {
  .nav__links {
    position: fixed;
    inset: 64px 16px auto 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    background: #fff;
    padding: 18px;
    border-radius: 18px;
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: 0.28s;
  }
  .nav__links.open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }
  .nav__links a {
    padding: 0.7rem 0.4rem;
    border-bottom: 1px solid rgba(45, 32, 90, 0.06);
  }
  .nav__links .btn {
    justify-content: center;
  }
  .nav__toggle {
    display: flex;
  }
  .nav__toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav__toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .nav__toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .section {
    padding: 70px 0;
  }
  .cards,
  .steps,
  .why__grid {
    grid-template-columns: 1fr;
  }
  .cta__box {
    padding: 32px 24px;
  }
  .hero__stats {
    gap: 1.6rem;
  }
  .footer__cols {
    grid-template-columns: 1fr 1fr;
  }
  .footer__bottom {
    flex-direction: column;
  }
}
