/* ==========================================================================
   Avature DNA Landing — Design System
   ========================================================================== */

:root {
  /* Colors (from Figma style guide) */
  --c-red:        #E0103C;
  --c-orange:     #C03C01;
  --c-blue:       #2756FF;
  --c-navy:       #00224C;
  --c-grey:       #E8E8E8;
  --c-white:      #FFFFFF;
  --c-text:       #0E1A33;
  --c-muted:      #6B7390;

  /* Type */
  --ff-sans: 'Work Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --ff-body: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  /* Spacing & layout */
  --container: 1200px;
  --container-wide: 1440px;
  --r-pill: 9999px;
  --r-card: 16px;
  --r-btn: 24px;

  /* Section padding (desktop / tablet / mobile) */
  --section-py: 120px;
}

/* ==========================================================================
   Animations — fade-up, stagger
   ========================================================================== */
:root {
  --anim-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --anim-dur: 720ms;
  --anim-y: 28px;
  --stagger-step: 90ms;
}

[data-anim="fade-up"] {
  opacity: 0;
  transform: translate3d(0, var(--anim-y), 0);
  transition:
    opacity var(--anim-dur) var(--anim-ease) var(--anim-delay, 0ms),
    transform var(--anim-dur) var(--anim-ease) var(--anim-delay, 0ms);
  will-change: opacity, transform;
}
[data-anim="fade-up"].is-in {
  opacity: 1;
  transform: none;
}

[data-stagger] > * {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  transition:
    opacity calc(var(--anim-dur) - 80ms) var(--anim-ease),
    transform calc(var(--anim-dur) - 80ms) var(--anim-ease);
  transition-delay: calc(var(--i, 0) * var(--stagger-step));
  will-change: opacity, transform;
}
[data-stagger].is-in > * {
  opacity: 1;
  transform: none;
}

/* Disable for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  [data-anim], [data-stagger] > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  html { scroll-behavior: auto; }
}

/* Anchor scroll offset for sticky header */
:where(#hero, #building-blocks, #disruption, #autonomy,
       #art-possible, #testimonial, #power-social,
       #stats, #capabilities, #quote, #final-cta, #footer) {
  scroll-margin-top: 88px;
}

/* ==========================================================================
   Reset & base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.75; /* 28/16 */
  color: var(--c-text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4 { font-family: var(--ff-sans); font-weight: 300; margin: 0; letter-spacing: -0.005em; }
h3, h4 { font-weight: 500; }
p { margin: 0; }

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

/* Skip link */
.skip-link {
  position: absolute; left: -9999px; top: 8px;
  background: var(--c-navy); color: #fff; padding: 8px 12px; border-radius: 4px; z-index: 1000;
}
.skip-link:focus { left: 16px; }

/* ==========================================================================
   Typography scale
   ========================================================================== */
h1 { font-size: 56px; line-height: 60px; }
h2 { font-size: 40px; line-height: 48px; font-weight: 300; }
h3 { font-size: 24px; line-height: 32px; font-weight: 500; }
h4 { font-size: 20px; line-height: 28px; font-weight: 500; }
.small { font-size: 14px; line-height: 18px; }

@media (max-width: 1024px) {
  h1 { font-size: 40px; line-height: 44px; }
  h2 { font-size: 32px; line-height: 40px; }
}
@media (max-width: 640px) {
  h1 { font-size: 32px; line-height: 40px; }
  h2 { font-size: 24px; line-height: 32px; }
  :root { --section-py: 72px; }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 48px;
  padding: 0 24px;
  font-family: var(--ff-sans);
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  border-radius: var(--r-btn);
  border: 2px solid transparent;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:focus-visible { outline: 2px solid var(--c-blue); outline-offset: 3px; }

.btn-primary { background: var(--c-red); color: #fff; }
.btn-primary:hover { background: #c20e35; }

.btn-light { background: #fff; color: var(--c-text); }
.btn-light:hover { background: #f3f3f3; }

.btn-pill-filled { background: #fff; color: var(--c-red); border-color: #fff; }
.btn-pill-filled:hover { background: transparent; color: #fff; }

.btn-pill-outline { background: transparent; color: #fff; border-color: #fff; }
.btn-pill-outline:hover { background: #fff; color: var(--c-red); }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid rgba(0, 34, 76, .06);
}
.header-inner {
  display: flex; align-items: center; gap: 32px;
  height: 72px;
}
.brand {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-sans); font-weight: 600; font-size: 18px;
  color: var(--c-navy);
}
.brand-light { color: #fff; }

.primary-nav { flex: 1; }
.primary-nav ul {
  display: flex; gap: 32px; justify-content: center;
}
.primary-nav a {
  font-family: var(--ff-sans); font-weight: 500; font-size: 14px;
  color: var(--c-text);
  padding: 8px 0;
  position: relative;
}
.primary-nav a:hover { color: var(--c-red); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.icon-btn {
  width: 40px; height: 40px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--c-navy);
}
.icon-btn:hover { background: rgba(0,34,76,.06); }

.menu-toggle { display: none; width: 40px; height: 40px; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--c-navy); border-radius: 2px; }

.mobile-menu { display: none; }
.mobile-menu[aria-hidden="false"], body.menu-open .mobile-menu {
  display: block;
  border-top: 1px solid rgba(0,34,76,.08);
  padding: 12px 24px 20px;
  background: #fff;
}
.mobile-menu ul { display: flex; flex-direction: column; }
.mobile-menu a {
  display: block; padding: 12px 0;
  font-family: var(--ff-sans); font-weight: 500;
  border-bottom: 1px solid rgba(0,34,76,.06);
}

@media (max-width: 1024px) {
  .primary-nav { display: none; }
  .menu-toggle { display: inline-flex; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  padding-block: 96px;
  background: #fff;
  overflow: hidden;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.hero-copy h1 { color: var(--c-navy); margin-bottom: 24px; }
.hero-copy p { font-size: 16px; line-height: 28px; color: var(--c-muted); max-width: 520px; }

.hero-visual {
  position: relative; aspect-ratio: 1.1 / 1;
  display: flex; align-items: center; justify-content: center;
}
.hero-visual-photo {
  position: absolute; inset: 8% 8% 8% 8%;
  border-radius: 24px;
  background: linear-gradient(135deg, #1e2a4a 0%, #2756FF 100%);
  background-image:
    linear-gradient(135deg, rgba(0,34,76,.45), rgba(39,86,255,.4)),
    url("https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?auto=format&fit=crop&w=900&q=80");
  background-size: cover; background-position: center;
  box-shadow: 0 30px 60px -20px rgba(0, 34, 76, 0.25);
}
.hero-card-app {
  position: absolute; right: -16px; bottom: 8%;
  width: 58%;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 20px 60px -10px rgba(0, 34, 76, 0.25);
  display: flex; flex-direction: column; gap: 10px;
}
.hc-row { display: flex; gap: 8px; align-items: center; }
.hc-row-tall { gap: 6px; }
.hc-tag { display: inline-block; height: 28px; flex: 1; border-radius: 6px; }
.hc-tag-red { background: linear-gradient(135deg, #E0103C, #C03C01); }
.hc-tag-blue { background: linear-gradient(135deg, #2756FF, #4A6BFF); }
.hc-tag-grey { background: var(--c-grey); }
.hc-bar { display: block; height: 10px; background: #EEF1F8; border-radius: 4px; }
.hc-bar.w70 { width: 70%; }
.hc-bar.w60 { width: 60%; }
.hc-bar.w50 { width: 50%; }
.hc-cta {
  align-self: flex-end;
  background: var(--c-red); color: #fff;
  border-radius: 999px;
  padding: 6px 14px;
  font-family: var(--ff-sans); font-weight: 600; font-size: 12px;
}
.hero-pill-pink {
  position: absolute; left: -12px; top: 0;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF6FB1, #C03C01);
  filter: blur(0.4px);
}

@media (max-width: 1024px) {
  .hero { padding-block: 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { width: 100%; max-width: 520px; margin: 0 auto; }
}
@media (max-width: 640px) {
  .hero-pill-pink { width: 48px; height: 48px; left: 8px; top: 8px; }
}

/* ==========================================================================
   Banner — Inspired by the building blocks of nature
   ========================================================================== */
.banner-blocks {
  background:
    linear-gradient(120deg, #FF4D8F 0%, #C03C01 18%, #6E2BAA 55%, #2756FF 100%);
  color: #fff;
  padding-block: 96px;
}
.banner-inner {
  max-width: 880px;
  text-align: center;
}
.banner-inner h2 {
  color: #fff; margin-bottom: 24px;
  font-weight: 300;
}
.banner-inner p {
  font-size: 16px; line-height: 28px;
  margin: 0 auto 32px;
  max-width: 720px;
  opacity: .96;
}

/* ==========================================================================
   Feature rows (Disruption / Digital Autonomy)
   ========================================================================== */
.feature-row {
  padding-block: var(--section-py);
  background: #fff;
}
.two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.feature-row-reverse .two-col > *:first-child { order: 0; }
.feature-copy h2 { color: var(--c-navy); margin-bottom: 20px; }
.feature-copy p { color: var(--c-muted); max-width: 480px; }
.feature-img {
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  background: #f0f0f0 center/cover no-repeat;
}
.feature-img-laptop {
  background-image: url("https://images.unsplash.com/photo-1517336714731-489689fd1ca8?auto=format&fit=crop&w=1000&q=80");
}
.feature-img-vinyl {
  background-image: url("https://images.unsplash.com/photo-1483721310020-03333e577078?auto=format&fit=crop&w=1000&q=80");
}

@media (max-width: 1024px) {
  .two-col { grid-template-columns: 1fr; gap: 48px; }
  .feature-row-reverse .two-col > *:first-child { order: 1; }
  .feature-row-reverse .two-col > *:last-child { order: 0; }
}

/* ==========================================================================
   Discover the Art of the Possible (blue gradient)
   ========================================================================== */
.art-possible {
  position: relative;
  padding-block: 140px;
  background:
    radial-gradient(120% 120% at 90% 50%, #2756FF 0%, #1A3CCB 35%, #00224C 80%),
    linear-gradient(90deg, #00224C, #2756FF);
  color: #fff;
  overflow: hidden;
}
.art-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  gap: 48px;
}
.art-copy { text-align: center; }
.art-copy h2 { color: #fff; margin-bottom: 20px; font-weight: 300; }
.art-copy p { max-width: 620px; margin: 0 auto 32px; line-height: 28px; }
.art-avatar {
  width: 96px; height: 96px;
  border-radius: 16px;
  background: #cbd2e6 center/cover no-repeat;
  box-shadow: 0 14px 30px -12px rgba(0,0,0,.5);
  align-self: center;
}
.art-avatar-left {
  background-image: url("https://images.unsplash.com/photo-1531123897727-8f129e1688ce?auto=format&fit=crop&w=400&q=80");
  justify-self: end;
}
.art-avatar-right {
  background-image: url("https://images.unsplash.com/photo-1539571696357-5a69c17a67c6?auto=format&fit=crop&w=400&q=80");
  justify-self: start;
}

/* Decorative shapes (background) */
.bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape { position: absolute; }
.shape-blue-circle { left: 4%; top: 12%; width: 56px; height: 56px; border-radius: 50%; background: #2756FF; opacity: .9; }
.shape-arch { left: 9%; top: 28%; width: 64px; height: 88px; border: 2px solid #fff; border-radius: 100px 100px 0 0; opacity: .7; }
.shape-pink-card { left: 4%; bottom: 12%; width: 84px; height: 56px; border-radius: 8px; background: linear-gradient(135deg, #FF6FB1, #6E2BAA); }
.shape-grey-circle { left: 18%; bottom: 14%; width: 56px; height: 56px; border-radius: 50%; background: #cbd2e6; }
.shape-arrow { right: 18%; top: 14%; width: 0; height: 0; border-left: 56px solid transparent; border-bottom: 64px solid #00224C; opacity: .9; }
.shape-dark-block { right: 4%; top: 10%; width: 110px; height: 68px; border-radius: 6px; background: #00224C; }
.shape-outline-circle { right: 10%; top: 20%; width: 80px; height: 80px; border: 2px solid #fff; border-radius: 50%; opacity: .8; }

@media (max-width: 1024px) {
  .art-possible { padding-block: 96px; }
  .art-inner { grid-template-columns: 1fr; gap: 32px; }
  .art-avatar-left, .art-avatar-right { justify-self: center; width: 72px; height: 72px; }
  .shape-arch, .shape-arrow, .shape-outline-circle { display: none; }
}

/* ==========================================================================
   Testimonial
   ========================================================================== */
.testimonial {
  background: #f5f6f9;
  padding-block: 96px;
}
.testimonial-inner {
  display: grid; grid-template-columns: 320px 1fr; gap: 48px; align-items: center;
}
.testimonial-photo {
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  background: #cbd2e6 center/cover no-repeat;
  background-image: url("https://images.unsplash.com/photo-1560250097-0b93528c311a?auto=format&fit=crop&w=600&q=80");
}
.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 18px 40px -22px rgba(0, 34, 76, 0.18);
}
.testimonial-quote {
  font-family: var(--ff-sans); font-weight: 300;
  font-size: 22px; line-height: 32px;
  color: var(--c-navy);
  margin-bottom: 24px;
}
.testimonial-author strong { font-family: var(--ff-sans); font-weight: 600; color: var(--c-navy); display: block; }
.testimonial-author span { color: var(--c-muted); font-size: 14px; }

@media (max-width: 1024px) {
  .testimonial-inner { grid-template-columns: 1fr; gap: 32px; }
  .testimonial-photo { max-width: 240px; }
  .testimonial-card { padding: 28px; }
}

/* ==========================================================================
   Tap into the Power of Social
   ========================================================================== */
.power-social {
  background: var(--c-navy);
  color: #fff;
  padding-block: var(--section-py);
  overflow: hidden;
}
.power-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.power-copy h2 { color: #fff; margin-bottom: 24px; font-weight: 300; }
.power-copy p { color: rgba(255,255,255,.85); max-width: 540px; }
.power-art {
  aspect-ratio: 1 / 0.9;
  border-radius: 16px;
  overflow: hidden;
}
.power-art svg { width: 100%; height: 100%; display: block; background: #00224C; }

@media (max-width: 1024px) {
  .power-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ==========================================================================
   Stats
   ========================================================================== */
.stats {
  padding-block: var(--section-py);
  background: #fff;
}
.stats-title {
  border: 2px solid var(--c-navy);
  border-radius: 24px;
  padding: 40px;
  color: var(--c-navy);
  margin-bottom: 32px;
  max-width: 720px;
  font-weight: 300;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.stat-card {
  border-radius: 16px;
  padding: 32px;
  color: #fff;
  background: linear-gradient(135deg, #E0103C 0%, #2756FF 100%);
  display: flex; flex-direction: column; gap: 16px;
  min-height: 280px;
}
.stat-number {
  font-family: var(--ff-sans); font-weight: 300;
  font-size: 64px; line-height: 1; letter-spacing: -0.01em;
}
.stat-desc { font-size: 16px; line-height: 24px; }
.stat-brand {
  margin-top: auto;
  font-family: var(--ff-sans); font-weight: 600; font-size: 18px;
}

.trust-line {
  margin: 64px auto 24px;
  text-align: center;
  font-size: 14px; color: var(--c-muted);
}
.logo-strip {
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  flex-wrap: wrap;
}
.logo-strip li {
  font-family: var(--ff-sans); font-weight: 700; font-size: 22px;
  color: var(--c-navy);
}
.logo-strip li:nth-child(2) { font-style: italic; }
.logo-strip li:nth-child(3) { font-weight: 800; }
.logo-strip .li-mark {
  background: var(--c-navy); color: #fff;
  padding: 0 6px; border-radius: 4px;
}

@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-number { font-size: 56px; }
}
@media (max-width: 640px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-number { font-size: 48px; }
  .stats-title { padding: 24px; }
  .logo-strip { justify-content: center; }
}

/* ==========================================================================
   Capabilities (red)
   ========================================================================== */
.capabilities {
  background: var(--c-red);
  color: #fff;
  padding-block: var(--section-py);
}
.capabilities h2 { color: #fff; margin-bottom: 56px; font-weight: 300; }
.cap-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
}
.cap {
  padding: 40px 32px 40px 0;
  border-top: 1px solid rgba(255,255,255,.4);
  display: flex; flex-direction: column;
}
.cap:nth-child(n+4) { border-top: 1px solid rgba(255,255,255,.4); }
.cap h3 { color: #fff; margin-bottom: 16px; font-weight: 500; }
.cap p { color: rgba(255,255,255,.95); margin-bottom: 24px; flex: 1; }

@media (max-width: 1024px) {
  .cap-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .cap-grid { grid-template-columns: 1fr; }
  .cap { padding: 32px 0; }
}

/* ==========================================================================
   Quote panel (red / quote / blue)
   ========================================================================== */
.quote-panel {
  background: #f5f6f9;
  padding-block: 96px;
}
.quote-grid {
  display: grid; grid-template-columns: 1fr 2fr 1fr; gap: 24px; align-items: stretch;
}
.qp-card {
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  min-height: 240px;
  font-family: var(--ff-sans); font-weight: 700; font-size: 28px;
  color: #fff;
}
.qp-red { background: var(--c-red); }
.qp-blue { background: var(--c-blue); }
.qp-blue .li-mark { background: #fff; color: var(--c-blue); padding: 0 6px; border-radius: 4px; }
.qp-quote {
  background: #fff;
  padding: 32px;
  text-align: left;
  flex-direction: column; align-items: flex-start; gap: 16px; justify-content: center;
}
.qp-quote p {
  font-family: var(--ff-sans); font-weight: 300;
  font-size: 18px; line-height: 28px;
  color: var(--c-navy);
}
.qp-author strong { font-family: var(--ff-sans); font-weight: 600; color: var(--c-navy); display: block; font-size: 14px; }
.qp-author span { color: var(--c-muted); font-size: 13px; }

@media (max-width: 1024px) {
  .quote-grid { grid-template-columns: 1fr; }
  .qp-card { min-height: 160px; }
}

/* ==========================================================================
   Final CTA
   ========================================================================== */
.final-cta {
  position: relative; overflow: hidden;
  padding-block: var(--section-py);
  background:
    radial-gradient(120% 120% at 0% 50%, #00224C 0%, #1A3CCB 50%, #2756FF 100%);
  color: #fff;
}
.final-cta-inner {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between; gap: 48px;
}
.final-cta-inner h2 { color: #fff; font-weight: 300; }
.shape-outline-circle-cta {
  right: 12%; top: 50%; transform: translateY(-50%);
  width: 240px; height: 240px;
  border: 2px solid rgba(255,255,255,.35);
  border-radius: 50%;
}
.shape-arrow-cta {
  right: 24%; top: 50%; transform: translateY(-50%);
  width: 0; height: 0;
  border-left: 64px solid transparent;
  border-bottom: 80px solid rgba(0,34,76,.6);
}

@media (max-width: 1024px) {
  .final-cta-inner { flex-direction: column; align-items: flex-start; text-align: left; gap: 24px; }
  .shape-outline-circle-cta { width: 160px; height: 160px; right: 8%; }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--c-navy);
  color: rgba(255,255,255,.85);
  padding-top: 80px;
}
.footer-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  padding-bottom: 48px;
}
.footer-col h4 {
  font-family: var(--ff-sans); font-weight: 600; font-size: 14px;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.footer-h-margin { margin-top: 32px; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,.7); }
.footer-col a:hover { color: #fff; }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.social { display: flex; gap: 12px; }
.social a {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: #fff;
  transition: background 160ms ease;
}
.social a:hover { background: rgba(255,255,255,.18); }

.footer-legal {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 16px 24px;
  font-size: 12px; color: rgba(255,255,255,.5);
}
.footer-legal ul { display: flex; gap: 16px; }
.footer-legal a:hover { color: #fff; }

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom, .footer-legal { flex-direction: column; gap: 12px; align-items: flex-start; }
}
