:root {
  color-scheme: dark;
  --bg: #050505;
  --panel: #11100f;
  --panel-strong: #1a1815;
  --text: #f8f5f1;
  --muted: #bdb6ae;
  --line: rgba(255, 255, 255, 0.14);
  --amber: #e8a04f;
  --amber-strong: #ffb761;
  --green: #a7b873;
  --cyan: #8fc5d0;
  --rose: #d99b97;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 20% 12%, rgba(232, 160, 79, 0.16), transparent 34%),
    radial-gradient(circle at 80% 0%, rgba(143, 197, 208, 0.12), transparent 30%),
    var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  letter-spacing: 0;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 20px clamp(18px, 5vw, 62px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(18px);
}

.brand,
nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.18em;
}

.brand-mark {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 5px rgba(232, 160, 79, 0.15);
}

nav {
  gap: clamp(16px, 3vw, 34px);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 760;
}

nav a:hover,
nav a:focus-visible {
  color: var(--text);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: clamp(34px, 6vw, 86px);
  overflow: hidden;
  padding: 108px clamp(18px, 5vw, 52px) 54px;
  isolation: isolate;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  height: 28%;
  background: linear-gradient(180deg, transparent, var(--bg));
  content: "";
}

.hero-atmosphere {
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: 0.32;
  filter: blur(34px) saturate(1.15);
}

.atmosphere-image {
  position: absolute;
  width: 42vw;
  height: 42vw;
  min-width: 420px;
  min-height: 420px;
  border-radius: 50%;
  object-fit: cover;
  mix-blend-mode: screen;
  animation: drift 14s ease-in-out infinite alternate;
}

.atmosphere-image.one {
  top: 0;
  left: -12vw;
}

.atmosphere-image.two {
  right: -12vw;
  bottom: 4vh;
  animation-delay: -4s;
}

.atmosphere-image.three {
  top: 8vh;
  right: 24vw;
  width: 30vw;
  height: 30vw;
  animation-delay: -8s;
}

.rock {
  position: absolute;
  z-index: -1;
  width: min(24vw, 330px);
  height: min(31vw, 420px);
  bottom: -80px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 34%),
    linear-gradient(45deg, #0f0f0f, #2b2b2a 54%, #050505);
  filter: drop-shadow(0 24px 60px rgba(0, 0, 0, 0.75));
  opacity: 0.9;
}

.rock.left {
  left: -80px;
  clip-path: polygon(0 100%, 14% 30%, 46% 9%, 79% 52%, 100% 100%);
}

.rock.right {
  right: -68px;
  clip-path: polygon(0 100%, 18% 44%, 50% 14%, 88% 28%, 100% 100%);
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: clamp(0.94rem, 1.7vw, 1.08rem);
  font-weight: 780;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(4.7rem, 11vw, 10.4rem);
  line-height: 0.84;
  letter-spacing: 0;
}

h2 {
  max-width: 880px;
  margin-bottom: 18px;
  font-size: clamp(2.75rem, 7vw, 6.4rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-copy p,
.section-copy p,
.workflow-grid p,
.faq-list p {
  color: var(--muted);
  line-height: 1.58;
}

.hero-copy p {
  max-width: 610px;
  margin-bottom: 32px;
  font-size: clamp(1.1rem, 2.1vw, 1.42rem);
}

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

.button,
.app-store-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 850;
  white-space: nowrap;
}

.button {
  border: 1px solid var(--line);
  padding: 0 22px;
}

.button.primary,
.app-store-button {
  border-color: var(--amber);
  background: var(--amber);
  color: #17100a;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
}

.phone-stage {
  display: grid;
  justify-items: center;
  gap: 18px;
}

.device-frame {
  position: relative;
  width: min(430px, 82vw);
  aspect-ratio: 430 / 860;
  border: 3px solid rgba(246, 242, 232, 0.78);
  border-radius: 58px;
  padding: 16px;
  background: #020202;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.16),
    0 44px 110px rgba(0, 0, 0, 0.72);
}

.device-frame::before,
.device-frame::after {
  position: absolute;
  left: -5px;
  width: 4px;
  border-radius: 4px;
  background: rgba(246, 242, 232, 0.7);
  content: "";
}

.device-frame::before {
  top: 22%;
  height: 48px;
}

.device-frame::after {
  top: 31%;
  height: 76px;
}

.device-sensor {
  position: absolute;
  top: 26px;
  left: 50%;
  z-index: 3;
  width: 126px;
  height: 34px;
  border-radius: 999px;
  background: #030303;
  transform: translateX(-50%);
}

.device-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 42px;
  background: #000;
}

.status-row,
.camera-topbar,
.preview-window,
.camera-message,
.shutter-row,
.app-tabs {
  position: absolute;
  z-index: 2;
}

.status-row {
  top: 28px;
  right: 28px;
  left: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  font-weight: 850;
}

.camera-topbar {
  top: 106px;
  right: 26px;
  left: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.camera-topbar strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  letter-spacing: 0.3em;
}

.camera-topbar span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  font-weight: 650;
}

.top-actions {
  display: flex;
  gap: 10px;
}

.top-actions span {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #1d1d1d;
}

.preview-window {
  top: 206px;
  right: 0;
  left: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #111;
}

.preview-window::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), transparent 52%, rgba(0, 0, 0, 0.16)),
    radial-gradient(circle at 38% 20%, rgba(232, 160, 79, 0.18), transparent 42%);
  content: "";
  pointer-events: none;
}

.scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  animation: sceneCycle 12s infinite;
}

.scene-la {
  opacity: 1;
  filter: sepia(0.22) saturate(1.2) contrast(1.08);
}

.scene-tokyo {
  animation-delay: 4s;
  filter: saturate(1.35) contrast(1.12) hue-rotate(-8deg);
}

.scene-jeju {
  animation-delay: 8s;
  filter: brightness(1.06) saturate(0.92) contrast(0.98);
}

.camera-message {
  top: 50%;
  right: 34px;
  left: 34px;
  display: grid;
  justify-items: center;
  text-align: center;
  transform: translateY(-2%);
}

.camera-dot {
  display: block;
  width: 50px;
  height: 50px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 12px rgba(232, 160, 79, 0.12);
}

.camera-message strong {
  font-size: 1.22rem;
  line-height: 1.1;
}

.camera-message p {
  max-width: 260px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.96rem;
  font-weight: 650;
  line-height: 1.35;
}

.shutter-row {
  right: 36px;
  bottom: 114px;
  left: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.city-pill {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border-radius: 20px;
  background: #202020;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 850;
}

.city-pill i {
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.28);
}

.shutter {
  width: 72px;
  height: 72px;
  border: 5px solid rgba(255, 255, 255, 0.96);
  border-radius: 50%;
  box-shadow: inset 0 0 0 18px rgba(255, 255, 255, 0.78);
}

.swap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #101010;
}

.app-tabs {
  right: 76px;
  bottom: 24px;
  left: 76px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: #121212;
  padding: 5px;
}

.app-tabs span {
  min-height: 46px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 850;
}

.app-tabs .active {
  background: #353535;
  color: var(--amber-strong);
}

.mood-badges {
  display: flex;
  max-width: min(430px, 84vw);
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.mood-badges span,
.city-strip span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-weight: 820;
}

.mood-badges span {
  padding: 8px 11px;
  font-size: 0.86rem;
}

.mood-gallery,
.compare,
.workflow,
.faq,
.download {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.mood-gallery {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(34px, 7vw, 86px);
  padding: 104px 0;
  border-top: 1px solid var(--line);
}

.section-copy {
  max-width: 640px;
}

.section-copy p {
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

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

.city-card {
  position: relative;
  min-height: 230px;
  grid-column: span 3;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.city-card.large {
  min-height: 472px;
  grid-row: span 2;
}

.city-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease, filter 700ms ease;
}

.city-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 32%, rgba(0, 0, 0, 0.78));
  content: "";
}

.city-card div {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
}

.city-card span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.86rem;
  font-weight: 860;
}

.city-card strong {
  display: block;
  margin-top: 6px;
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  line-height: 1;
}

.city-card.la img {
  filter: sepia(0.28) saturate(1.24) contrast(1.05);
}

.city-card.tokyo img {
  filter: saturate(1.45) contrast(1.16);
}

.city-card.london img {
  filter: saturate(0.82) contrast(1.08) hue-rotate(8deg);
}

.city-card.jeju img {
  filter: brightness(1.06) saturate(0.9);
}

.city-card.paris img {
  filter: sepia(0.12) saturate(1.05) brightness(1.03);
}

.city-card:hover img {
  transform: scale(1.05);
}

.compare {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr);
  align-items: center;
  gap: clamp(34px, 7vw, 86px);
  padding: 104px 0;
  border-top: 1px solid var(--line);
}

.compare-stage {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.42);
}

.compare-photo {
  position: absolute;
  inset: 0;
}

.compare-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compare-photo.before img {
  filter: saturate(0.88) contrast(0.96);
}

.compare-photo.after {
  width: 58%;
  overflow: hidden;
  animation: revealAfter 5.4s ease-in-out infinite alternate;
}

.compare-photo.after img {
  width: calc(100% / 0.58);
  max-width: none;
  filter: sepia(0.22) saturate(1.26) contrast(1.08) brightness(1.04);
}

.compare-photo.after::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232, 160, 79, 0.22), rgba(143, 197, 208, 0.12));
  content: "";
  mix-blend-mode: soft-light;
}

.compare-photo span {
  position: absolute;
  top: 16px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 8px 11px;
  background: rgba(0, 0, 0, 0.46);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.84rem;
  font-weight: 850;
  backdrop-filter: blur(14px);
}

.compare-photo.before span {
  right: 16px;
}

.compare-photo.after span {
  left: 16px;
}

.compare-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 58%;
  z-index: 3;
  width: 2px;
  background: rgba(255, 255, 255, 0.88);
  animation: moveHandle 5.4s ease-in-out infinite alternate;
}

.compare-handle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.44);
  content: "";
  transform: translate(-50%, -50%);
  backdrop-filter: blur(14px);
}

.workflow {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(32px, 7vw, 76px);
  padding: 104px 0;
  border-top: 1px solid var(--line);
}

.workflow-copy {
  max-width: 560px;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.workflow-grid article,
.faq-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.workflow-grid article {
  min-height: 220px;
  padding: 20px;
}

.workflow-grid span {
  color: var(--amber-strong);
  font-size: 0.86rem;
  font-weight: 900;
}

.workflow-grid h3 {
  margin: 50px 0 12px;
  font-size: clamp(1.3rem, 2vw, 1.72rem);
  line-height: 1.05;
}

.city-strip {
  display: flex;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 10px;
  padding: 34px 0 72px;
  border-top: 1px solid var(--line);
}

.city-strip span {
  padding: 10px 13px;
}

.faq {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(360px, 1fr);
  gap: clamp(32px, 7vw, 76px);
  padding: 100px 0;
  border-top: 1px solid var(--line);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list article {
  padding: 20px;
}

.faq-list h3 {
  margin: 0 0 10px;
  font-size: clamp(1.15rem, 2vw, 1.42rem);
  line-height: 1.15;
}

.faq-list p {
  margin-bottom: 0;
  font-size: 1rem;
}

.faq-list a {
  color: var(--amber-strong);
  font-weight: 750;
}

.download {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 74px 0 88px;
  border-top: 1px solid var(--line);
}

.download h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.app-store-button {
  gap: 12px;
  min-height: 60px;
  flex: 0 0 auto;
  padding: 0 23px;
  text-align: left;
}

.app-store-button span:last-child {
  display: grid;
  gap: 1px;
  line-height: 1;
}

.app-store-button small {
  display: block;
  color: rgba(23, 16, 10, 0.75);
  font-size: 0.72rem;
  font-weight: 850;
}

.apple-icon {
  position: relative;
  width: 18px;
  height: 22px;
  flex: 0 0 auto;
  border-radius: 45% 45% 50% 50%;
  background: #17100a;
}

.apple-icon::before {
  position: absolute;
  top: -6px;
  right: 2px;
  width: 8px;
  height: 8px;
  border-radius: 8px 0 8px 0;
  background: #17100a;
  content: "";
  transform: rotate(-25deg);
}

.apple-icon::after {
  position: absolute;
  top: 8px;
  right: -3px;
  width: 7px;
  height: 9px;
  border-radius: 50%;
  background: var(--amber);
  content: "";
}

.site-footer {
  display: flex;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 18px;
  padding: 0 0 42px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--text);
}

@keyframes sceneCycle {
  0%,
  29% {
    opacity: 1;
    transform: scale(1.04);
  }

  35%,
  100% {
    opacity: 0;
    transform: scale(1.09);
  }
}

@keyframes revealAfter {
  from {
    width: 28%;
  }

  to {
    width: 76%;
  }
}

@keyframes moveHandle {
  from {
    left: 28%;
  }

  to {
    left: 76%;
  }
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(6%, -4%, 0) scale(1.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 980px) {
  .site-header {
    position: absolute;
  }

  nav {
    display: none;
  }

  .hero,
  .mood-gallery,
  .compare,
  .workflow,
  .faq {
    grid-template-columns: 1fr;
  }

  .hero {
    justify-items: center;
    padding-top: 86px;
    text-align: center;
  }

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

  .hero-copy p {
    margin-right: auto;
    margin-left: auto;
  }

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

  .rock {
    opacity: 0.48;
  }

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

  .city-card,
  .city-card.large {
    min-height: 270px;
    grid-column: span 1;
  }

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

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

@media (max-width: 560px) {
  .site-header {
    padding: 18px;
  }

  .hero,
  .mood-gallery,
  .compare,
  .workflow,
  .faq,
  .download,
  .city-strip,
  .site-footer {
    width: calc(100% - 36px);
  }

  .hero {
    width: 100%;
    min-height: auto;
    padding-right: 18px;
    padding-bottom: 48px;
    padding-left: 18px;
  }

  h1 {
    font-size: clamp(3.35rem, 17vw, 5.4rem);
  }

  h2 {
    font-size: clamp(2.45rem, 13vw, 4.2rem);
  }

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

  .device-frame {
    border-radius: 44px;
    padding: 12px;
  }

  .device-screen {
    border-radius: 32px;
  }

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

  .compare-stage {
    aspect-ratio: 3 / 4;
  }
}

.legal-page {
  background: var(--bg);
}

.legal-header {
  position: static;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.96);
}

.legal-header nav {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.legal-main {
  width: min(900px, calc(100% - 36px));
  margin: 0 auto;
  padding: 74px 0 96px;
}

.legal-main h1 {
  max-width: 820px;
  margin-bottom: 16px;
  font-size: clamp(3.2rem, 8vw, 6.4rem);
}

.legal-date {
  margin-bottom: 42px;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 760;
}

.legal-intro {
  max-width: 760px;
  margin-bottom: 54px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
  line-height: 1.6;
}

.legal-section {
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.legal-section h2 {
  margin-bottom: 16px;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.05;
}

.legal-section p,
.legal-section li {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.72;
}

.legal-section p {
  margin-bottom: 16px;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section ul {
  display: grid;
  gap: 8px;
  padding-left: 1.2rem;
  margin: 0 0 16px;
}

.legal-section a,
.language-list a {
  color: var(--amber-strong);
  font-weight: 800;
}

.language-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 26px 0 0;
  margin-top: 44px;
  border-top: 1px solid var(--line);
}

.language-list a,
.language-list span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 12px;
  font-size: 0.92rem;
  font-weight: 800;
}

.language-list span {
  background: var(--amber);
  color: #17100a;
}

@media (max-width: 700px) {
  .legal-header {
    align-items: flex-start;
    gap: 18px;
    flex-direction: column;
  }

  .legal-header nav {
    display: flex;
    justify-content: flex-start;
    gap: 14px;
  }

  .legal-main {
    padding-top: 52px;
  }
}
