:root {
  --ink: #17273a;
  --ink-soft: #4d5a68;
  --ink-muted: #7b858f;
  --ivory: #fbf8f1;
  --paper: #ffffff;
  --mist: #eef1ef;
  --line: #ddd7cb;
  --gold: #c6a35a;
  --gold-soft: #eadcb7;
  --deep: #0f2335;
  --deep-2: #183652;
  --radius: 18px;
  --shadow: 0 24px 60px rgba(17, 34, 51, .12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  overflow-x: hidden;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--ivory);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.65;
}

a {
  color: inherit;
}

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

h1,
h2,
h3 {
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.1;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  color: #fff;
  font-size: clamp(2.55rem, 6vw, 5.15rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
  font-size: 1.45rem;
}

p {
  color: var(--ink-soft);
}

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

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  background: rgba(15, 35, 53, .84);
  backdrop-filter: blur(16px);
}

.topbar-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.brand img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: contain;
}

.brand-text {
  display: block;
}

.brand-name {
  display: block;
  color: #fff;
  font-size: 1.55rem;
  line-height: 1.05;
}

.brand-subtitle {
  display: block;
  margin-top: 3px;
  color: rgba(234, 220, 183, .86);
  font-family: "Inter", Arial, sans-serif;
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, .82);
  font-size: .92rem;
  font-weight: 600;
}

.nav a {
  text-decoration: none;
  transition: color .2s ease;
}

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

.header-cta,
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}

.header-cta {
  padding: 0 22px;
  border-color: rgba(234, 220, 183, .52);
  color: #fff;
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.button {
  padding: 0 28px;
  background: var(--gold);
  color: #17273a;
  box-shadow: 0 16px 30px rgba(198, 163, 90, .26);
}

.button.primary {
  position: relative;
  gap: 12px;
  min-height: 54px;
  border-color: rgba(234, 220, 183, .54);
  background:
    linear-gradient(135deg, #f4dc94, #d8b866 52%, #c29a47);
  color: #102233;
  box-shadow:
    0 18px 34px rgba(198, 163, 90, .28),
    inset 0 1px 0 rgba(255, 255, 255, .42);
}

.button.primary::after {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(16, 34, 51, .12);
  content: "›";
  font-size: 1.35rem;
  line-height: 1;
  transition: transform .2s ease, background .2s ease;
}

.button.primary:hover {
  box-shadow:
    0 22px 42px rgba(198, 163, 90, .34),
    inset 0 1px 0 rgba(255, 255, 255, .5);
}

.button.primary:hover::after {
  background: rgba(16, 34, 51, .18);
  transform: translateX(3px);
}

.button.secondary {
  border-color: rgba(255, 255, 255, .3);
  background: transparent;
  color: #fff;
  box-shadow: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 140px 0 0;
  background:
    linear-gradient(135deg, rgba(15, 35, 53, .96), rgba(24, 54, 82, .92)),
    var(--hero-background, url("herobackgr.png")) center/cover;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  content: "";
  background: linear-gradient(180deg, rgba(15, 35, 53, 0), var(--ivory));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  gap: 64px;
  align-items: end;
  min-height: 700px;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 22px;
  color: var(--deep-2);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: 2.6px;
  text-transform: uppercase;
}

.section .eyebrow {
  position: relative;
  padding-bottom: 8px;
}

.section .eyebrow::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42px;
  height: 2px;
  background: var(--gold);
  content: "";
}

.hero .eyebrow,
.principles .eyebrow {
  color: var(--gold-soft);
}

.hero .eyebrow::after,
.principles .eyebrow::after {
  display: none;
}

.hero-copy {
  padding-bottom: 110px;
}

.hero-copy p {
  max-width: 690px;
  margin-top: 26px;
  color: rgba(255, 255, 255, .78);
  font-size: 1.16rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.portrait-card {
  position: relative;
  margin-bottom: 72px;
  padding: 18px;
  border: 1px solid rgba(234, 220, 183, .26);
  border-radius: 180px 180px 24px 24px;
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .28);
  backdrop-filter: blur(12px);
}

.portrait {
  display: grid;
  min-height: 480px;
  place-items: center;
  border-radius: 160px 160px 16px 16px;
  overflow: hidden;
  background: linear-gradient(135deg, #d8c9a8, #eff0ec);
}

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

.trust-strip {
  position: relative;
  z-index: 2;
  margin-top: -34px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.trust-item {
  padding: 28px;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item strong {
  display: block;
  color: var(--deep);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.25rem;
  line-height: 1;
}

.trust-item span {
  display: block;
  margin-top: 8px;
  color: var(--ink-muted);
  font-size: .95rem;
}

.section {
  padding: 96px 0;
  scroll-margin-top: 90px;
}

.section.alt {
  background: var(--paper);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, .7fr) minmax(280px, .3fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 42px;
}

.section-head p {
  font-size: 1.02rem;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, 1.08fr);
  column-gap: 64px;
  row-gap: 34px;
  align-items: start;
}

.about-copy {
  display: flex;
  flex-direction: column;
}

.about-title {
  margin-bottom: 28px;
}

.about-side {
  display: grid;
  align-self: start;
}

.lead {
  margin-bottom: 24px;
  color: var(--deep);
  font-size: 1.23rem;
  font-weight: 600;
}

.about-copy p + p {
  margin-top: 18px;
}

.credential-list {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 0;
}

.credential {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, .72);
}

.credential strong {
  display: block;
  color: var(--deep);
  font-size: 1.05rem;
}

.credential span {
  display: block;
  margin-top: 8px;
  color: var(--ink-muted);
  font-size: .92rem;
  line-height: 1.45;
}

.office-photo {
  height: clamp(500px, 42vw, 620px);
  min-height: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--mist);
  box-shadow: var(--shadow);
}

.office-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.grid {
  display: grid;
  gap: 20px;
}

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

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

.card {
  position: relative;
  min-height: 100%;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 12px 34px rgba(17, 34, 51, .06);
}

.card h3 {
  margin-bottom: 14px;
}

.card p {
  font-size: .98rem;
}

.request-card::before,
.service-card::before,
.principle-card::before {
  display: block;
  width: 34px;
  height: 2px;
  margin-bottom: 18px;
  background: var(--gold);
  content: "";
}

.services-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.service-slider-controls {
  display: none;
}

.case-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 2px 0 34px;
}

.service-card {
  display: flex;
  flex-direction: column;
}

.service-card.featured {
  border-color: rgba(198, 163, 90, .82);
  background: linear-gradient(180deg, #fff, #fbf6e9);
  box-shadow: var(--shadow);
}

.price {
  margin: 18px 0 16px;
  color: var(--deep);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  line-height: 1.1;
}

.price span {
  color: var(--ink-muted);
  font-family: "Inter", Arial, sans-serif;
  font-size: .95rem;
  font-weight: 500;
}

.list {
  display: grid;
  gap: 12px;
  margin: 8px 0 26px;
  list-style: none;
}

.list li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-soft);
  font-size: .97rem;
}

.list li::before {
  position: absolute;
  top: .72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.service-card .button {
  width: fit-content;
  margin-top: auto;
  background: var(--deep);
  color: #fff;
  box-shadow: none;
}

.training-block {
  margin-top: 54px;
}

.training-block h3 {
  margin-bottom: 22px;
}

.case-card {
  display: grid;
  gap: 18px;
}

#cases .container {
  width: 100%;
}

#cases .section-head,
#cases .case-slider-controls {
  width: min(1180px, calc(100% - 40px));
  margin-right: auto;
  margin-left: auto;
}

.cases-slider {
  --case-card-width: min(680px, calc(100vw - 40px));

  display: flex;
  gap: 20px;
  margin: 0;
  padding: 4px 20px 20px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-padding: 20px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  touch-action: pan-x;
}

.cases-slider::-webkit-scrollbar {
  display: none;
}

.cases-slider .case-card {
  flex: 0 0 var(--case-card-width);
  scroll-snap-align: center;
}

.case-slider-controls button {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  color: var(--deep);
  cursor: pointer;
  font-size: 1.35rem;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(17, 34, 51, .07);
  transition: transform .2s ease, border-color .2s ease, color .2s ease;
}

.case-slider-controls button:hover {
  border-color: rgba(198, 163, 90, .72);
  color: var(--gold);
  transform: translateY(-2px);
}

.case-slider-count {
  min-width: 54px;
  color: var(--ink-muted);
  font-size: .86rem;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-align: center;
}

.case-label {
  color: var(--gold);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.case-result {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.principles {
  background: var(--deep);
  color: #fff;
}

.principles h2,
.principles h3 {
  color: #fff;
}

.principles .section-head p,
.principles .card p {
  color: rgba(255, 255, 255, .72);
}

.principles .card {
  border-color: rgba(255, 255, 255, .13);
  background: rgba(255, 255, 255, .06);
  box-shadow: none;
}

.faq-list {
  display: grid;
  max-width: 900px;
  margin: 0 auto;
  gap: 14px;
  min-height: 390px;
  align-content: start;
}

details {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
  box-shadow: 0 8px 24px rgba(17, 34, 51, .04);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

details:hover {
  border-color: rgba(198, 163, 90, .52);
  box-shadow: 0 14px 34px rgba(17, 34, 51, .08);
}

summary {
  position: relative;
  display: flex;
  min-height: 66px;
  align-items: center;
  cursor: pointer;
  padding: 20px 64px 20px 24px;
  color: var(--deep);
  font-weight: 800;
  list-style: none;
}

summary::after {
  position: absolute;
  top: 50%;
  right: 24px;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  content: "";
  transform: translateY(-50%) rotate(45deg);
  transition: transform .2s ease, border-color .2s ease;
}

details:hover summary::after {
  border-color: var(--deep);
  transform: translateY(-42%) rotate(45deg);
}

details[open] summary::after {
  transform: translateY(-30%) rotate(225deg);
}

details[open]:hover summary::after {
  transform: translateY(-38%) rotate(225deg);
}

summary::-webkit-details-marker {
  display: none;
}

details p {
  min-height: 62px;
  padding: 0 64px 24px 24px;
}

#faq {
  min-height: 760px;
}

.contact {
  padding: 72px 0 34px;
  background:
    linear-gradient(135deg, rgba(15, 35, 53, .98), rgba(20, 49, 75, .98)),
    var(--deep);
  color: #fff;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(340px, .75fr);
  gap: 56px;
  align-items: start;
  padding-bottom: 46px;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-logo-row img {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  object-fit: contain;
}

.footer-main h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.footer-logo-row span {
  display: block;
  margin-top: 6px;
  color: var(--gold-soft);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.footer-main p,
.footer-bottom p {
  color: rgba(255, 255, 255, .68);
}

.footer-main p {
  max-width: 520px;
  margin-top: 24px;
  font-size: 1.04rem;
  font-weight: 700;
  line-height: 1.7;
}

.footer-main .footer-ip-info {
  margin-top: 16px;
  color: rgba(234, 220, 183, .82);
  font-size: .92rem;
  font-weight: 700;
  line-height: 1.6;
  white-space: pre-line;
}

.footer-email {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  margin-top: 14px;
  color: rgba(234, 220, 183, .9);
  font-size: .94rem;
  font-weight: 800;
  line-height: 1.45;
  text-decoration: none !important;
  overflow-wrap: anywhere;
  transition: color .2s ease, opacity .2s ease;
}

.footer-email:hover {
  color: var(--gold-soft);
  opacity: .9;
}

.footer-contact-block {
  display: grid;
  justify-items: end;
}

.footer-social-grid {
  display: grid;
  grid-template-columns: repeat(3, 128px);
  gap: 18px;
}

.footer-social-item {
  display: grid;
  gap: 12px;
  justify-items: stretch;
}

.social-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  padding: 0 20px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: border-color .2s ease, color .2s ease, transform .2s ease;
}

.social-button:hover {
  border-color: rgba(234, 220, 183, .72);
  color: var(--gold-soft);
  transform: translateY(-2px);
}

.qr-card {
  display: grid;
  width: 128px;
  height: 128px;
  place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .12);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .07));
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
  text-align: center;
  padding: 10px;
  text-decoration: none;
}

.qr-card[href] {
  padding: 8px;
  border-color: rgba(234, 220, 183, .42);
  background: #fff;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .16);
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.qr-card[href]::after {
  display: none;
}

.qr-card[href]:hover {
  border-color: rgba(234, 220, 183, .58);
  box-shadow: 0 18px 38px rgba(0, 0, 0, .22);
  transform: translateY(-2px);
}

.qr-card img {
  width: 112px;
  height: 112px;
  border: 0;
  border-radius: 8px;
  object-fit: contain;
  background: #fff;
}

.qr-placeholder span {
  color: rgba(234, 220, 183, .82);
  font-size: .72rem;
  letter-spacing: 1.5px;
}

.qr-placeholder strong {
  display: block;
  font-size: .82rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid rgba(255, 255, 255, .18);
  padding-top: 34px;
}

.footer-bottom p {
  max-width: 780px;
  margin: 0;
  font-size: .88rem;
}

.footer-bottom-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 18px;
}

.footer-bottom a {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, .78);
  font-weight: 800;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--gold-soft);
}

.footer-policy-button {
  color: rgba(255, 255, 255, .58);
  font-size: .86rem;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(234, 220, 183, .28);
  text-underline-offset: 4px;
  transition: color .2s ease, text-decoration-color .2s ease;
}

.footer-policy-button:hover {
  color: rgba(234, 220, 183, .86);
  text-decoration-color: rgba(234, 220, 183, .72);
}

@media (max-width: 1000px) {
  .nav {
    display: none;
  }

  .hero-inner,
  .about-grid,
  .section-head {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-bottom: 28px;
  }

  .portrait-card {
    max-width: 430px;
    margin: 0 auto 72px;
  }

  .office-photo {
    height: 560px;
    min-height: 0;
  }

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

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

  .topbar-inner {
    min-height: 68px;
  }

  .header-cta {
    display: none;
  }

  .brand {
    font-size: 1.12rem;
  }

  .brand img {
    width: 50px;
    height: 50px;
  }

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

  .hero {
    padding-top: 108px;
    padding-bottom: 42px;
  }

  .hero-inner {
    min-height: auto;
    gap: 34px;
  }

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

  .hero-actions {
    flex-direction: column;
  }

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

  .portrait-card {
    width: min(82vw, 330px);
    margin: 2px auto 52px;
    padding: 10px;
    border-color: rgba(234, 220, 183, .38);
    border-radius: 30px;
    background:
      linear-gradient(145deg, rgba(234, 220, 183, .22), rgba(255, 255, 255, .06)),
      rgba(255, 255, 255, .08);
    box-shadow: 0 24px 54px rgba(0, 0, 0, .34);
    transform: rotate(-1.5deg);
  }

  .portrait-card::before {
    position: absolute;
    inset: 10px -10px -10px 10px;
    z-index: -1;
    border: 1px solid rgba(234, 220, 183, .34);
    border-radius: 30px;
    content: "";
  }

  .portrait {
    aspect-ratio: 4 / 5;
    min-height: 0;
    border-radius: 24px;
  }

  .portrait img {
    min-height: 0;
    object-position: center 14%;
    transform: rotate(1.5deg) scale(1.06);
  }

  .trust-grid,
  .grid.two,
  .grid.three,
  .credential-list {
    grid-template-columns: 1fr;
  }

  .services-layout {
    display: flex;
    gap: 14px;
    margin: 0 -14px;
    padding: 4px 14px 20px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-padding: 14px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    touch-action: pan-x;
  }

  .services-layout::-webkit-scrollbar {
    display: none;
  }

  .services-layout .service-card {
    flex: 0 0 min(86vw, 360px);
    scroll-snap-align: center;
  }

  .cases-slider {
    --case-card-width: min(86vw, 360px);

    gap: 14px;
    margin: 0;
    padding: 4px 14px 20px;
    scroll-padding: 14px;
  }

  #cases .section-head,
  #cases .case-slider-controls {
    width: min(100% - 28px, 1180px);
  }

  .case-slider-controls {
    display: none;
  }

  .cases-slider .case-card {
    flex-basis: var(--case-card-width);
  }

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

  .trust-item:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 72px 0;
  }

  .office-photo {
    height: 420px;
    min-height: 0;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-contact-block {
    justify-items: stretch;
  }

  .footer-social-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .qr-card {
    width: auto;
    height: auto;
    min-height: 118px;
  }

  .qr-card img {
    width: min(104px, 100%);
    height: auto;
    aspect-ratio: 1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .footer-bottom-actions {
    flex-wrap: wrap;
  }
}
