:root {
  --blue-950: #071a36;
  --blue-900: #082f75;
  --blue-800: #0b4698;
  --blue-700: #0d5ac7;
  --blue-600: #1168df;
  --blue-100: #e9f2ff;
  --cyan-400: #22c7d8;
  --green-600: #1fb34d;
  --green-100: #dcf7e6;
  --amber-500: #f4b219;
  --amber-100: #fff0c9;
  --red-500: #df4c45;
  --red-100: #ffe1e3;
  --purple-600: #7b50d9;
  --purple-100: #eee5ff;
  --ink: #0e2038;
  --muted: #526176;
  --line: #dbe5f2;
  --surface: #ffffff;
  --surface-soft: #f4f8fd;
  --shadow: 0 16px 40px rgba(25, 65, 126, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #ffffff;
  color: var(--ink);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img,
svg {
  display: block;
}

.svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.section {
  padding-block: 54px;
}

.icon {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.filled {
  fill: currentColor;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(219, 229, 242, 0);
  backdrop-filter: blur(16px);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(219, 229, 242, 0.9);
  box-shadow: 0 8px 24px rgba(20, 56, 106, 0.08);
}

.nav {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-900);
  font-weight: 800;
  line-height: 1;
}

.brand-mark {
  width: 52px;
  height: 52px;
  color: var(--blue-700);
}

.brand-mark svg {
  width: 100%;
  height: 100%;
}

.brand-house,
.brand-door,
.brand-wave {
  fill: none;
  stroke: currentColor;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-dot {
  fill: var(--cyan-400);
}

.brand-wave {
  stroke: var(--cyan-400);
  stroke-width: 2;
}

.brand-name {
  font-size: 1.375rem;
}

.brand-name span {
  color: var(--cyan-400);
  font-weight: 500;
}

.header-logo {
  width: 104px;
  height: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.9375rem;
}

.nav-link {
  position: relative;
  color: #1d2b3f;
  padding-block: 12px;
  transition: color 160ms ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--blue-700);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  height: 3px;
  background: var(--blue-700);
  border-radius: 99px;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  border-radius: var(--radius);
  font-weight: 800;
  text-align: center;
  white-space: nowrap;
}

.nav-cta {
  min-height: 48px;
  padding: 0 24px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-900));
  box-shadow: 0 12px 24px rgba(13, 90, 199, 0.24);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--blue-800);
  background: #ffffff;
}

.menu-toggle .icon {
  margin: auto;
  width: 24px;
  height: 24px;
}

.close-icon {
  display: none;
}

.button {
  padding: 0 28px;
  border: 1px solid transparent;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-900));
  box-shadow: 0 16px 30px rgba(13, 90, 199, 0.24);
}

.button.secondary {
  color: var(--blue-800);
  background: #ffffff;
  border-color: var(--blue-700);
  box-shadow: 0 10px 22px rgba(25, 65, 126, 0.08);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  align-items: center;
  gap: 52px;
  min-height: 640px;
  padding-top: 38px;
  padding-bottom: 44px;
}

.hero-copy h1 {
  max-width: 640px;
  margin: 0;
  color: var(--blue-950);
  font-size: 3.25rem;
  line-height: 1.16;
  letter-spacing: 0;
}

.hero-copy h1 span {
  color: var(--blue-700);
}

.hero-copy p {
  max-width: 560px;
  margin: 34px 0 0;
  color: #31415b;
  font-size: 1.25rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 38px;
}

.hero-actions .button {
  min-width: 240px;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 64px;
}

.trust-item {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  column-gap: 10px;
  align-items: center;
  min-width: 0;
}

.trust-item span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--blue-700);
  background: var(--blue-100);
}

.trust-item strong {
  color: var(--blue-950);
  font-size: 0.875rem;
  line-height: 1.15;
}

.trust-item small {
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.25;
}

.hero-art {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 490px;
}

.hero-phones-sprite {
  width: min(100%, 427px);
  aspect-ratio: 427 / 452;
  background-image: url("imports/phones.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  filter: drop-shadow(0 28px 24px rgba(5, 19, 42, 0.16));
}

.pain-section {
  background: linear-gradient(180deg, #f4f9ff 0%, #ffffff 100%);
  border-top: 1px solid #edf3fb;
}

h2 {
  margin: 0;
  color: var(--blue-950);
  font-size: 2rem;
  line-height: 1.25;
  letter-spacing: 0;
  text-align: center;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 34px;
}

.pain-card {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  min-height: 154px;
  padding: 26px 34px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(25, 65, 126, 0.06);
}

.pain-icon {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border-radius: 50%;
}

.pain-icon .icon {
  width: 48px;
  height: 48px;
}

.pain-icon.red {
  color: var(--red-500);
  background: var(--red-100);
}

.pain-icon.amber {
  color: var(--amber-500);
  background: var(--amber-100);
}

.pain-icon.green {
  color: var(--green-600);
  background: var(--green-100);
}

h3 {
  margin: 0;
  color: var(--blue-950);
  font-size: 1.125rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.pain-card p,
.memory-step p,
.feature-copy p,
.audience-card p,
.work-step p,
.tech-copy p,
.footer-brand p,
.footer-cta p {
  margin: 10px 0 0;
  color: var(--muted);
}

.memory-section {
  background:
    radial-gradient(circle at 15% 20%, rgba(17, 104, 223, 0.08), transparent 26%),
    radial-gradient(circle at 85% 35%, rgba(31, 179, 77, 0.08), transparent 26%),
    #f7fbff;
}

.memory-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 76px minmax(0, 1fr) 76px minmax(0, 1fr) 76px minmax(0, 1fr);
  align-items: start;
  gap: 18px;
  margin-top: 36px;
}

.memory-step {
  text-align: center;
}

.flow-icon {
  display: grid;
  place-items: center;
  width: 104px;
  height: 104px;
  margin: 0 auto 20px;
  border-radius: 50%;
}

.flow-icon .icon {
  width: 52px;
  height: 52px;
}

.flow-icon.blue {
  color: var(--blue-700);
  background: #dceaff;
}

.flow-icon.green {
  color: var(--green-600);
  background: #dff7e9;
}

.flow-icon.purple {
  color: var(--purple-600);
  background: var(--purple-100);
}

.memory-step p {
  max-width: 190px;
  margin-inline: auto;
  color: #26354d;
  font-size: 0.9375rem;
}

.memory-step mark {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 12px;
  color: var(--blue-700);
  background: #dfeeff;
  border-radius: 999px;
  font-weight: 800;
}

.flow-arrow {
  position: relative;
  height: 104px;
}

.flow-arrow::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 0;
  right: 10px;
  border-top: 2px dashed #aac0db;
}

.flow-arrow::after {
  content: "";
  position: absolute;
  top: 43px;
  right: 4px;
  width: 12px;
  height: 12px;
  border-top: 2px solid #aac0db;
  border-right: 2px solid #aac0db;
  transform: rotate(45deg);
}

.features-section {
  background: #ffffff;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.feature-card {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  min-height: 214px;
  padding: 18px 18px 18px 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(25, 65, 126, 0.06);
}

.mini-phone {
  position: relative;
  width: 82px;
  height: 168px;
  padding: 9px 6px;
  border: 3px solid #131820;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 7px 14px rgba(4, 17, 38, 0.16);
}

.phone-speaker {
  position: absolute;
  top: 5px;
  left: 50%;
  width: 20px;
  height: 3px;
  background: #10151e;
  border-radius: 99px;
  transform: translateX(-50%);
}

.phone-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  height: 100%;
  padding: 14px 8px 8px;
  border-radius: 12px;
  background: #f8fbff;
  overflow: hidden;
}

.screen-title,
.screen-pill,
.screen-line,
.room-bar,
.room-card,
.setting-row {
  display: block;
  border-radius: 99px;
}

.screen-title {
  width: 42px;
  height: 6px;
  background: #e5edf8;
}

.screen-circle {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-900));
  border-radius: 50%;
}

.screen-pill {
  width: 54px;
  height: 12px;
  background: #dbeafe;
}

.screen-line {
  width: 48px;
  height: 5px;
  background: #d5e1ef;
}

.screen-line.wide {
  width: 58px;
}

.room-bar {
  width: 58px;
  height: 13px;
  background: var(--blue-700);
}

.room-card {
  width: 56px;
  height: 24px;
  background: #ffffff;
  border: 1px solid #dce6f3;
  border-radius: 5px;
}

.room-card.short {
  height: 18px;
}

.qr-preview {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--blue-700);
  background: #ffffff;
  border: 2px solid #dbeafe;
  border-radius: var(--radius);
}

.qr-preview .icon {
  width: 34px;
  height: 34px;
}

.setting-row {
  position: relative;
  width: 58px;
  height: 22px;
  background: #ffffff;
  border: 1px solid #dce6f3;
  border-radius: 5px;
}

.setting-row::after {
  content: "";
  position: absolute;
  top: 6px;
  right: 6px;
  width: 16px;
  height: 8px;
  border-radius: 99px;
  background: #c9d7ea;
}

.setting-row.on::after {
  background: var(--blue-700);
}

.feature-copy h3 {
  color: var(--blue-700);
  font-size: 0.9375rem;
}

.feature-copy p {
  color: #26354d;
  font-size: 0.8125rem;
}

.feature-copy a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 12px;
  color: var(--blue-700);
  font-size: 0.8125rem;
  font-weight: 800;
}

.audience-section {
  padding-top: 10px;
  background: #ffffff;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 26px;
}

.audience-card {
  display: grid;
  grid-template-columns: 142px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  min-height: 154px;
  padding: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, #f6fbff, #ffffff);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(25, 65, 126, 0.06);
}

.persona-art {
  width: 142px;
  height: 126px;
  background-image: url("imports/LandingPage.png");
  background-repeat: no-repeat;
  background-size: 864px 1821px;
}

.persona-art.senior {
  background-position: -54px -1230px;
}

.persona-art.vision {
  background-position: -315px -1224px;
}

.persona-art.helpers {
  background-position: -594px -1222px;
}

.audience-card p {
  color: #26354d;
  font-size: 0.9375rem;
}

.steps-section {
  color: #ffffff;
  background:
    radial-gradient(circle at 18% 15%, rgba(255, 255, 255, 0.12), transparent 24%),
    linear-gradient(135deg, var(--blue-800), var(--blue-900));
}

.steps-section h2,
.steps-section h3 {
  color: #ffffff;
}

.steps-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 42px;
  margin-top: 42px;
}

.work-step {
  position: relative;
  text-align: center;
}

.work-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 64px;
  left: calc(50% + 62px);
  width: calc(100% - 58px);
  border-top: 2px dashed rgba(255, 255, 255, 0.55);
}

.work-step:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 57px;
  right: -26px;
  width: 12px;
  height: 12px;
  border-top: 2px solid rgba(255, 255, 255, 0.55);
  border-right: 2px solid rgba(255, 255, 255, 0.55);
  transform: rotate(45deg);
}

.step-number {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin: 0 auto -4px;
  color: var(--blue-800);
  background: #dceaff;
  border-radius: 50%;
  font-size: 0.875rem;
  font-weight: 900;
}

.work-icon {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  margin: 0 auto 18px;
  color: var(--blue-700);
  background: #e7f2ff;
  border-radius: 50%;
}

.work-icon .icon {
  width: 46px;
  height: 46px;
}

.work-step p {
  max-width: 170px;
  margin-inline: auto;
  color: #e7f0ff;
  font-size: 0.875rem;
}

.tech-section {
  background: #f6fbff;
}

.tech-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  align-items: center;
  gap: 42px;
}

.tech-copy h2 {
  text-align: left;
  font-size: 1.5rem;
}

.tech-copy p {
  color: #26354d;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.tech-card {
  display: grid;
  place-items: center;
  gap: 10px;
  min-height: 98px;
  padding: 16px 10px;
  color: #2c3b50;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 22px rgba(25, 65, 126, 0.08);
  text-align: center;
}

.tech-card span {
  display: grid;
  place-items: center;
  min-width: 44px;
  min-height: 36px;
  color: #66758a;
  font-size: 1.75rem;
  font-weight: 900;
}

.tech-card .icon {
  width: 38px;
  height: 38px;
}

.tech-card strong {
  font-size: 0.9375rem;
}

.tech-card.react span {
  color: #20c7db;
}

.tech-card.ts span {
  color: #2d72bd;
  font-size: 1.375rem;
}

.tech-card.vite span {
  color: #8064ff;
  font-size: 1.5rem;
}

.tech-card.pwa span {
  color: #596170;
  font-size: 1.25rem;
}

.site-footer {
  color: #ffffff;
  background:
    radial-gradient(circle at 82% 10%, rgba(65, 149, 255, 0.25), transparent 28%),
    linear-gradient(135deg, var(--blue-800), var(--blue-900));
  padding: 34px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.8fr 1.25fr;
  gap: 58px;
  align-items: start;
}

.brand.light {
  color: #ffffff;
}

.brand.light .brand-mark {
  color: #ffffff;
}

.brand.light .brand-dot {
  fill: #9eefff;
}

.footer-logo {
  width: 118px;
  height: auto;
}

.footer-brand p {
  max-width: 320px;
  color: #e7f0ff;
  font-size: 0.9375rem;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links h2,
.footer-cta h2 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 1rem;
  text-align: left;
}

.footer-links a {
  color: #e7f0ff;
  font-size: 0.9375rem;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-cta {
  padding: 28px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
}

.footer-cta p {
  color: #e7f0ff;
  font-size: 0.9375rem;
}

.footer-button {
  min-height: 40px;
  margin-top: 18px;
  padding: 0 18px;
  color: var(--blue-800);
  background: #ffffff;
  font-size: 0.875rem;
}

.copyright {
  margin: 22px 0 0;
  color: #d9e8ff;
  font-size: 0.875rem;
  text-align: center;
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    text-align: center;
  }

  .hero-copy h1,
  .hero-copy p {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .trust-list {
    max-width: 780px;
    margin-inline: auto;
  }

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

  .pain-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .steps-flow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .work-step::before,
  .work-step::after {
    display: none;
  }

  .tech-layout {
    grid-template-columns: 1fr;
  }

  .tech-copy h2,
  .tech-copy p {
    text-align: center;
  }

  .tech-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 820px) {
  .shell {
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding-block: 42px;
  }

  .nav {
    min-height: 72px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .brand-name {
    font-size: 1.125rem;
  }

  .header-logo {
    width: 86px;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .nav-menu {
    position: fixed;
    inset: 72px 14px auto;
    display: grid;
    gap: 4px;
    padding: 18px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 160ms ease,
      transform 160ms ease;
  }

  .nav-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .menu-toggle[aria-expanded="true"] .open-icon {
    display: none;
  }

  .menu-toggle[aria-expanded="true"] .close-icon {
    display: block;
  }

  .nav-link {
    padding: 12px 6px;
  }

  .nav-link.active::after {
    left: 6px;
    right: auto;
    width: 34px;
  }

  .nav-cta {
    margin-top: 8px;
  }

  .hero {
    gap: 28px;
    padding-top: 28px;
  }

  .hero-copy h1 {
    font-size: 2.45rem;
  }

  .hero-copy p {
    font-size: 1.0625rem;
  }

  .hero-actions .button {
    width: 100%;
    min-width: 0;
  }

  .trust-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 40px;
  }

  .hero-art {
    min-height: 360px;
  }

  .hero-phones-sprite {
    width: 310px;
  }

  h2 {
    font-size: 1.625rem;
  }

  .pain-card,
  .feature-card,
  .audience-card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .pain-card {
    padding: 24px;
  }

  .memory-flow {
    grid-template-columns: 1fr;
  }

  .flow-arrow {
    display: none;
  }

  .feature-grid,
  .steps-flow,
  .tech-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    max-width: 420px;
    margin-inline: auto;
  }

  .audience-card {
    max-width: 520px;
    margin-inline: auto;
  }

  .persona-art {
    margin-bottom: -8px;
  }
}

@media (max-width: 460px) {
  .hero-copy h1 {
    font-size: 2rem;
  }

  .hero-phones-sprite {
    width: 275px;
  }

  .trust-list {
    grid-template-columns: 1fr;
  }

  .pain-icon {
    width: 76px;
    height: 76px;
  }

  .pain-icon .icon,
  .flow-icon .icon,
  .work-icon .icon {
    width: 40px;
    height: 40px;
  }

  .flow-icon,
  .work-icon {
    width: 82px;
    height: 82px;
  }

  .footer-cta {
    padding: 22px;
  }
}
