:root {
  --navy: #171b67;
  --navy-soft: #40476d;
  --pink: #ea2da1;
  --purple: #b42cf1;
  --purple-deep: #9326e4;
  --blue: #5b87f8;
  --orange: #f6b35f;
  --bg: #fffdfd;
  --panel: #faf5fc;
  --line: rgba(23, 27, 103, 0.09);
  --shadow: 0 18px 42px rgba(89, 74, 149, 0.13);
  --container: 1340px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Nunito", sans-serif;
  color: var(--navy);
  background:
    radial-gradient(circle at 18% -2%, rgba(91, 135, 248, 0.09), transparent 30%),
    radial-gradient(circle at 100% 8%, rgba(180, 44, 241, 0.12), transparent 26%),
    radial-gradient(circle at 50% 42%, rgba(246, 179, 95, 0.06), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fefbfd 46%, #faf4fc 100%);
  overflow-x: hidden;
}

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

img,
svg {
  display: block;
}

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

.page {
  position: relative;
  overflow: clip;
}

.page::before,
.page::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(78px);
  opacity: 0.2;
  z-index: -2;
  animation: pageGlowFloat 6s ease-in-out infinite;
}

.page::before {
  width: 430px;
  height: 430px;
  top: -120px;
  right: -150px;
  background: var(--purple);
}

.page::after {
  width: 390px;
  height: 390px;
  left: -170px;
  bottom: 120px;
  background: var(--blue);
  animation-delay: -2.1s;
}

@keyframes pageGlowFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(0, -18px, 0) scale(1.06);
  }
}

.reveal-on-scroll {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.2, 0.65, 0.2, 1);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.site-header {
  padding: 18px 0 0;
}

.header-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  position: relative;
  width: 142px;
  height: 74px;
  flex: 0 0 auto;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-dot {
  position: absolute;
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(119, 92, 177, 0.18);
  animation: brandFloat 4.8s ease-in-out infinite;
}

.brand-dot.orange {
  top: 23px;
  left: -8px;
  width: 10px;
  height: 10px;
  background: radial-gradient(circle at 30% 30%, #ffd289, var(--orange));
  animation-delay: -1.2s;
}

.brand-dot.blue {
  left: 10px;
  bottom: -8px;
  width: 12px;
  height: 12px;
  background: radial-gradient(circle at 30% 30%, #7ca0ff, var(--blue));
  animation-delay: -2.4s;
}

.brand-dot.pink {
  top: -4px;
  left: 93px;
  width: 12px;
  height: 12px;
  background: radial-gradient(circle at 30% 30%, #ff58c1, var(--pink));
  animation-delay: -0.8s;
}

.brand-dot.purple {
  top: 21px;
  right: -12px;
  width: 14px;
  height: 14px;
  background: radial-gradient(circle at 30% 30%, #dd6cff, var(--purple));
  animation-delay: -3.1s;
}

@keyframes brandFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(0, -6px, 0) scale(1.04);
  }
}

.brand-copy strong {
  display: block;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
}

.brand-copy span {
  display: block;
  margin-top: 6px;
  font-size: 18px;
  line-height: 1.05;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 42px;
  font-size: 18px;
  font-weight: 800;
}

.nav a {
  position: relative;
  padding: 16px 0;
}

.nav a.is-active {
  color: var(--pink);
}

.nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 3px;
  border-radius: 999px;
  background: var(--pink);
}

.button-primary,
.button-secondary,
.button-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button-primary:hover,
.button-secondary:hover,
.button-text:hover {
  transform: translateY(-2px);
}

.button-primary {
  min-height: 58px;
  padding: 0 24px;
  color: #fff;
  background: linear-gradient(135deg, #c844ff, #9127e7);
  box-shadow: 0 14px 28px rgba(151, 39, 231, 0.25);
}

.button-secondary {
  min-height: 54px;
  padding: 0 26px;
  color: var(--purple-deep);
  border: 1.5px solid rgba(146, 39, 231, 0.4);
  background: rgba(255, 255, 255, 0.72);
}

.button-text {
  min-height: 58px;
  padding: 0 10px;
  color: var(--navy);
}

.button-primary svg,
.button-text svg {
  width: 18px;
  height: 18px;
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  padding: 34px 0 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(0, 1fr);
  align-items: center;
  gap: 28px;
  min-height: 640px;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--pink);
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 8.2ch;
  font-size: clamp(54px, 6vw, 82px);
  line-height: 0.96;
}

.hero-copy p:not(.eyebrow) {
  max-width: 490px;
  margin: 26px 0 0;
  color: var(--navy-soft);
  font-size: 24px;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  min-height: 620px;
}

.dot {
  position: absolute;
  border-radius: 50%;
  box-shadow: var(--shadow);
  animation: heroDotFloat 5.8s ease-in-out infinite;
}

.dot.blue {
  background: radial-gradient(circle at 30% 30%, #7ca0ff, var(--blue));
}

.dot.purple {
  background: radial-gradient(circle at 30% 30%, #dd6cff, var(--purple));
}

.dot.orange {
  background: radial-gradient(circle at 30% 30%, #ffd289, var(--orange));
}

.dot.pink {
  background: radial-gradient(circle at 30% 30%, #ff58c1, var(--pink));
}

.hero-art {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(60%, 540px);
  aspect-ratio: 95 / 56;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
}

.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-visual .dot:nth-of-type(1) {
  animation-delay: -0.8s;
}

.hero-visual .dot:nth-of-type(2) {
  animation-delay: -2.1s;
}

.hero-visual .dot:nth-of-type(3) {
  animation-delay: -1.4s;
}

.hero-visual .dot:nth-of-type(4) {
  animation-delay: -3.3s;
}

.hero-visual .dot:nth-of-type(5) {
  animation-delay: -2.7s;
}

.hero-visual .dot:nth-of-type(6) {
  animation-delay: -0.4s;
}

.hero-visual .dot:nth-of-type(7) {
  animation-delay: -3.8s;
}

.hero-visual .dot:nth-of-type(8) {
  animation-delay: -1.9s;
}

.hero-visual .dot:nth-of-type(9) {
  animation-delay: -2.9s;
}

.hero-visual .dot:nth-of-type(10) {
  animation-delay: -1.1s;
}

.hero-visual .dot:nth-of-type(11) {
  animation-delay: -4.2s;
}

@keyframes heroDotFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(0, -10px, 0) scale(1.03);
  }
}

.hero-wave {
  display: none;
}

.services {
  position: relative;
  padding: 0 0 44px;
}

.soft-panel {
  position: relative;
  padding: 0 0 32px;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.8), transparent 28%),
    linear-gradient(180deg, rgba(251, 245, 253, 0.98), rgba(244, 234, 249, 0.94));
  border-radius: 36px;
  border: 1px solid rgba(156, 123, 214, 0.12);
  box-shadow: 0 26px 60px rgba(113, 88, 177, 0.12);
}

.soft-panel::before {
  content: "";
  position: absolute;
  right: 420px;
  top: 8px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #db6bff, var(--purple));
  box-shadow: var(--shadow);
}

.services-inner {
  padding: 6px 34px 0;
}

.services-title {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
  margin-bottom: 28px;
  padding-top: 8px;
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: stretch;
}

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

.card {
  min-height: 204px;
  padding: 18px 14px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(132, 95, 197, 0.08);
  box-shadow: 0 14px 32px rgba(119, 92, 177, 0.09);
}

.card svg {
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
}

.card h3 {
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.15;
}

.card p {
  font-size: 14px;
  line-height: 1.55;
}

.card p,
.about-copy p,
.feature p,
.approach-card p,
.contact-card p {
  margin: 0;
  color: var(--navy-soft);
  font-size: 16px;
  line-height: 1.7;
}

.services-footer {
  display: none;
  margin-top: 20px;
}

.services-grid > :first-child {
  order: 2;
}

.services-grid > .about-area {
  order: 1;
}

.about-area {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 2.4fr);
  gap: 36px;
  align-items: start;
  padding-top: 6px;
}

.portrait-wrap {
  position: relative;
  min-width: 0;
}

.portrait-wrap::before,
.portrait-wrap::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  box-shadow: var(--shadow);
  animation: aboutDotFloat 5s ease-in-out infinite;
}

.portrait-wrap::before {
  width: 26px;
  height: 26px;
  left: -18px;
  top: 48px;
  background: var(--pink);
  animation-delay: -1.4s;
}

.portrait-wrap::after {
  width: 86px;
  height: 86px;
  left: -8px;
  top: -8px;
  background: radial-gradient(circle at 30% 30%, #db6bff, var(--purple));
  animation-delay: -3.2s;
}

@keyframes aboutDotFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(0, -10px, 0) scale(1.05);
  }
}

.portrait-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  height: 360px;
  background: linear-gradient(180deg, #d7c9b2 0%, #ccb290 55%, #c79f74 100%);
  box-shadow: 0 18px 35px rgba(114, 81, 52, 0.18);
}

.portrait-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-copy {
  min-width: 0;
  max-width: 100%;
}

.about-copy .overline {
  margin: 0 0 8px;
  color: var(--purple);
  font-size: 16px;
  font-weight: 800;
}

.about-copy h2 {
  max-width: 14ch;
  font-size: clamp(32px, 3.2vw, 52px);
  line-height: 1.04;
  overflow-wrap: anywhere;
}

.about-copy p {
  max-width: none;
  margin-top: 18px;
  font-size: 17px;
  text-align: justify;
}

.about-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.about-detail {
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(151, 120, 213, 0.08);
  box-shadow: 0 12px 28px rgba(116, 94, 173, 0.08);
}

.about-detail strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.35;
}

.about-detail p {
  font-size: 15px;
  line-height: 1.65;
}

.about-copy .button-secondary {
  display: inline-flex;
  margin-top: 22px;
}

.features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 34px;
  padding: 26px 8px 0;
  border-top: 1px solid var(--line);
}

.feature {
  padding: 0 20px;
  border-right: 1px solid var(--line);
}

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

.feature svg {
  width: 62px;
  height: 62px;
  margin-bottom: 14px;
}

.feature h4 {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.15;
}

.section {
  padding: 54px 0 26px;
}

.section .eyebrow {
  margin-bottom: 10px;
  font-size: 15px;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.section-header h2 {
  max-width: 18ch;
  font-size: clamp(40px, 4vw, 60px);
  line-height: 1.02;
}

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

.approach-card {
  padding: 26px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(151, 120, 213, 0.08);
  box-shadow: 0 14px 30px rgba(116, 94, 173, 0.08);
}

.approach-card h3 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.04;
}

.contact {
  padding: 38px 0 56px;
}

.contact-grid {
  display: block;
}

.contact-card,
.contact-aside {
  border-radius: 28px;
  padding: 28px;
  border: 1px solid rgba(151, 120, 213, 0.08);
  box-shadow: 0 16px 34px rgba(116, 94, 173, 0.08);
}

.contact-card {
  background: rgba(255, 255, 255, 0.88);
}

.contact-card h2 {
  max-width: 16ch;
  margin: 4px 0 14px;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.02;
}

.contact-card > p:not(.eyebrow) {
  max-width: 72ch;
}

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

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(250, 245, 252, 0.9);
  border: 1px solid rgba(151, 120, 213, 0.08);
}

.contact-item svg {
  width: 20px;
  height: 20px;
  margin-top: 4px;
  color: var(--purple-deep);
  flex: 0 0 auto;
}

.contact-item h3 {
  margin-bottom: 4px;
  font-size: 18px;
  line-height: 1.1;
}

.contact-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.contact-note {
  color: var(--navy-soft);
  font-size: 15px;
  line-height: 1.6;
}

.contact-aside {
  color: #fff;
  background: linear-gradient(145deg, #c241fb, #8f25e4);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  display: none;
}

.contact-aside h3 {
  font-size: 28px;
  line-height: 1.03;
}

.contact-aside p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  line-height: 1.7;
}

.contact-aside .button-primary {
  width: fit-content;
  background: #fff;
  color: var(--purple-deep);
  box-shadow: none;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 20px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #2fd16c, #169c4f);
  box-shadow: 0 18px 36px rgba(22, 156, 79, 0.28);
}

.whatsapp-float svg,
.whatsapp-float img {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.footer {
  padding: 0 0 28px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: rgba(23, 27, 103, 0.72);
  font-size: 14px;
  flex-wrap: wrap;
}

@media (max-width: 1180px) {
  .header-row {
    grid-template-columns: auto auto;
  }

  .nav {
    display: none;
  }

  .mobile-nav {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 14px 0 0;
    scrollbar-width: none;
  }

  .mobile-nav::-webkit-scrollbar {
    display: none;
  }

  .mobile-nav a {
    flex: 0 0 auto;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(144, 111, 212, 0.12);
    font-weight: 800;
  }

  .hero-grid,
  .services-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 20px;
  }

  .hero-grid {
    min-height: unset;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    min-height: 520px;
  }

  .hero-art {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }

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

  .about-area,
  .features,
  .approaches {
    grid-template-columns: 1fr;
  }

  .about-details {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 760px) {
  body {
    background:
      radial-gradient(circle at 14% -6%, rgba(91, 135, 248, 0.012), transparent 20%),
      radial-gradient(circle at 105% 2%, rgba(231, 214, 238, 0.012), transparent 14%),
      radial-gradient(circle at 50% 42%, rgba(246, 179, 95, 0.01), transparent 28%),
      linear-gradient(180deg, #ffffff 0%, #fffefe 62%, #fcfafc 100%);
  }

  .page::before,
  .page::after {
    opacity: 0.08;
    filter: blur(92px);
  }

  .page::before {
    width: 250px;
    height: 250px;
    top: -92px;
    right: -118px;
  }

  .page::after {
    width: 240px;
    height: 240px;
    left: -120px;
    bottom: 86px;
  }

  .container {
    width: min(calc(100% - 20px), var(--container));
  }

  .site-header {
    padding-top: 14px;
  }

  .header-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .brand {
    justify-content: center;
  }

  .brand-mark {
    width: 110px;
    height: 58px;
  }

  .brand-dot.orange {
    left: -6px;
    top: 18px;
  }

  .brand-dot.blue {
    left: 8px;
    bottom: -6px;
  }

  .brand-dot.pink {
    left: 72px;
  }

  .brand-dot.purple {
    right: -10px;
    top: 17px;
  }

  .brand-copy strong {
    font-size: 21px;
  }

  .brand-copy span {
    font-size: 16px;
  }

  .header-row > .button-primary {
    display: none;
  }

  h1 {
    max-width: 100%;
    font-size: 52px;
  }

  .hero-copy p:not(.eyebrow) {
    font-size: 19px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button-primary,
  .button-secondary,
  .button-text {
    width: 100%;
  }

  .hero-visual {
    min-height: 300px;
  }

  .page::before,
  .page::after,
  .soft-panel::before,
  .hero-visual .dot {
    scale: 0.52;
    opacity: 0.78;
  }

  .portrait-wrap::before,
  .portrait-wrap::after {
    opacity: 0.9;
  }

  .portrait-wrap::before {
    width: 18px;
    height: 18px;
    left: -8px;
    top: 112px;
  }

  .portrait-wrap::after {
    width: 56px;
    height: 56px;
    left: auto;
    right: -10px;
    top: -14px;
  }

  .hero-visual .dot:nth-of-type(1) {
    left: -28px !important;
    top: 104px !important;
  }

  .hero-visual .dot:nth-of-type(2) {
    left: 8px !important;
    top: 244px !important;
  }

  .hero-visual .dot:nth-of-type(3) {
    left: -12px !important;
    top: 270px !important;
  }

  .hero-visual .dot:nth-of-type(4) {
    left: 74px !important;
    top: 18px !important;
  }

  .hero-visual .dot:nth-of-type(5) {
    right: 10px !important;
    bottom: 4px !important;
  }

  .hero-visual .dot:nth-of-type(6) {
    right: -14px !important;
    top: 24px !important;
  }

  .hero-visual .dot:nth-of-type(7) {
    right: -14px !important;
    top: 108px !important;
  }

  .hero-visual .dot:nth-of-type(8) {
    right: -6px !important;
    top: 232px !important;
  }

  .hero-visual .dot:nth-of-type(9) {
    right: 102px !important;
    top: 54px !important;
  }

  .hero-visual .dot:nth-of-type(10) {
    right: 70px !important;
    top: 262px !important;
  }

  .hero-visual .dot:nth-of-type(11) {
    right: 148px !important;
    top: 126px !important;
  }

  .hero-visual::before {
    content: "";
    position: absolute;
    left: -10px;
    top: 36px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #ff58c1, var(--pink));
    box-shadow: var(--shadow);
    opacity: 0.72;
    animation: heroDotFloat 5.4s ease-in-out infinite;
    animation-delay: -2.6s;
  }

  .hero-art {
    left: 50%;
    top: 50%;
    width: 94%;
    transform: translate(-50%, -50%);
  }

  .hero-wave {
    height: 70px;
  }

  .services-inner {
    padding: 4px 18px 0;
  }

  .services-title {
    margin-bottom: 18px;
  }

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

  .card {
    min-height: unset;
  }

  .about-area {
    gap: 20px;
  }

  .portrait-card {
    height: 290px;
  }

  .contact-card,
  .contact-aside,
  .approach-card {
    padding: 22px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-height: 54px;
    padding: 0 16px;
  }

  .footer-inner {
    justify-content: center;
    text-align: center;
  }
}
