/* ─────────────────────────────────────────────────────
   Alus Workplace · Editorial design system
   Inter (display) + JetBrains Mono (metadata)
   Dual typeface, restrained palette, scaled whitespace.
   ───────────────────────────────────────────────────── */

:root {
  --white: #ffffff;
  --paper: #fafafa;          /* slightly warmed white for off-sections */
  --black: #0a0a0a;          /* deeper than spec for editorial weight */
  --ink:   #111118;
  --accent-d: #2e44d0;
  --smoke: #f3f4f7;
  --navy:  #15151f;          /* deeper navy for headlines */
  --slate: #5a6478;
  --mute:  #8b95a8;
  --line:  #e5e7ee;
  --line-d:#1c1c24;
  --accent:#425af6;          /* Workplace blue */

  --container: 1360px;
  --pad: 32px;
  --font-display: 'Tiempos Headline', 'Fraunces', 'Times New Roman', Georgia, serif;
  --font-body: 'Helvetica Neue', 'Helvetica', 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-ui: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --ease: cubic-bezier(.2,.7,.2,1);

  /* Editorial type scale — Mercury-tier breathing */
  --t-display:  clamp(30px, 3.4vw, 48px);
  --t-display-s:clamp(24px, 2.6vw, 36px);
  --t-headline: clamp(20px, 1.8vw, 26px);
  --t-lede:     clamp(15px, 1.05vw, 18px);
  --t-mono:     11px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: -0.005em;
  color: var(--slate);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

p { font-weight: 400; }

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; padding: 0; margin: 0; }
em { font-style: normal; }

::selection { background: var(--accent); color: white; }

/* ─────────── Layout primitives ─────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.container--narrow { max-width: 920px; }
.nowrap { white-space: nowrap; }

/* ─────────── Mono accent ─────────── */
.mono {
  font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: var(--t-mono);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-feature-settings: "tnum", "ss01";
}

.dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--navy);
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
  transform: translateY(-1px);
}
.dot--red { background: var(--accent); }

/* ─────────── Typography ─────────── */
.display {
  font-family: var(--font-display);
  font-size: var(--t-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.018em;
  color: var(--navy);
  margin: 0;
  text-wrap: balance;
  hyphens: none;
  word-break: keep-all;
  font-feature-settings: "liga", "kern";
}
.display em {
  color: var(--mute);
  font-weight: 600;
  font-style: italic;
}
.display em.display__accent {
  color: var(--accent);
  font-style: normal;
}
.display em.display__em-accent { color: var(--accent); }
.display--light       { color: white; }
.display--light em    { color: rgba(255,255,255,.4); }
.display--s           { font-size: var(--t-display-s); line-height: 1.12; }
.muted-dark           { color: rgba(255,255,255,.4) !important; }

.headline {
  font-family: var(--font-display);
  font-size: var(--t-headline);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.012em;
  color: var(--navy);
  margin: 0;
  text-wrap: balance;
  hyphens: none;
}
.headline .muted, .muted { color: var(--mute); font-weight: inherit; }

.subhead {
  font-family: var(--font-ui);
  font-size: var(--t-lede);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: -0.005em;
  color: var(--slate);
  max-width: 620px;
  margin: 24px 0 0;
}
.subhead--light { color: rgba(255,255,255,.66); }

.eyebrow {
  margin: 0 0 24px;
  color: var(--mute);
}
.eyebrow--light { color: rgba(255,255,255,.5); }

.lede {
  font-size: var(--t-lede);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: -0.005em;
  color: var(--slate);
  max-width: 540px;
  margin: 0;
}

/* ─────────── Buttons ─────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn--dark  { background: var(--black); color: white; }
.btn--dark:hover  { background: var(--accent); transform: translateY(-1px); }
.btn--red   { background: var(--accent); color: white; }
.btn--red:hover   { background: var(--accent-d); transform: translateY(-1px); }
.btn--ghost { color: var(--navy); border-color: rgba(21,21,31,.16); }
.btn--ghost:hover { background: var(--navy); color: white; border-color: var(--navy); }
.btn--sm    { padding: 10px 18px; font-size: 14px; }
.btn--xs    { padding: 8px 14px; font-size: 13px; border-radius: 4px; }
.btn--cta   { background: var(--accent); color: white; padding: 8px 14px; font-size: 13px; border-radius: 4px; }
.btn--cta:hover { background: var(--slate); color: white; transform: translateY(-1px); }
.btn--block { width: 100%; padding: 16px 28px; }

/* ─────────── Brand stripe (publication mark) ─────────── */
.brand-stripe {
  height: 2px;
  background: var(--accent);
  position: sticky;
  top: 0;
  z-index: 52;
}

/* ─────────── Nav ─────────── */
.nav {
  position: sticky;
  top: 2px;
  z-index: 50;
  background: rgba(252,252,253,.4);
  transition: background .35s var(--ease), backdrop-filter .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
  border-bottom: 1px solid rgba(21,21,31,.04);
  backdrop-filter: saturate(150%) blur(6px);
  -webkit-backdrop-filter: saturate(150%) blur(6px);
}
.nav.is-scrolled {
  background: rgba(252,252,253,.18);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom-color: rgba(21,21,31,.06);
  box-shadow: 0 1px 0 rgba(255,255,255,.4) inset, 0 6px 24px rgba(15,15,30,.04);
}
.nav.is-on-dark {
  background: rgba(10,10,10,.35);
  border-bottom-color: rgba(255,255,255,.06);
  box-shadow: none;
}
.nav.is-on-dark .nav__links a { color: rgba(255,255,255,.82); }
.nav.is-on-dark .nav__links a:hover { color: var(--accent); }
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 12px var(--pad);
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
}
.nav__logo-img {
  height: 38px;
  width: auto;
  display: block;
  transition: opacity .25s var(--ease);
}
.nav__logo-img--light { display: none; }
.nav.is-on-dark .nav__logo-img--dark { display: none; }
.nav.is-on-dark .nav__logo-img--light { display: block; }
.nav__links {
  margin-left: auto;
  display: flex;
  gap: 36px;
}
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  padding: 6px 0;
  transition: color .2s var(--ease);
}
.nav__links a:hover { color: var(--accent); }
/* Language switcher — minimalist flags with underline */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-right: 8px;
}
.lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 0;
  background: transparent;
  cursor: pointer;
  border: none;
  position: relative;
  opacity: 0.55;
  transition: opacity .2s var(--ease);
}
.lang-btn:hover { opacity: 0.9; }
.lang-btn.is-active { opacity: 1; }
.lang-btn.is-active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  transform: translateX(-50%);
  width: 18px;
  height: 1.5px;
  background: var(--navy);
  border-radius: 1px;
}
.nav.is-on-dark .lang-btn.is-active::after { background: white; }
.lang-flag {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: block;
  box-shadow: 0 0 0 1px rgba(21,21,31,.08), 0 1px 2px rgba(15,15,30,.06);
}
.nav.is-on-dark .lang-flag { box-shadow: 0 0 0 1px rgba(255,255,255,.18), 0 1px 2px rgba(0,0,0,.2); }

.nav__burger { display: none; width: 28px; height: 28px; flex-direction: column; justify-content: center; gap: 5px; }
.nav__burger span { display: block; height: 1.5px; background: var(--navy); transition: transform .25s var(--ease); }
.nav__burger[aria-expanded="true"] span:first-child { transform: translateY(3px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:last-child  { transform: translateY(-3.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 64px 0 0 0;
  background: rgba(10,10,10,.97);
  backdrop-filter: blur(18px);
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 56px 24px;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu a {
  color: white;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.mobile-menu .btn { align-self: flex-start; margin-top: 16px; }

/* ─────────────────────────────────────────────────────
   HERO — editorial
   ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: clamp(64px, 8vw, 104px) 0 clamp(48px, 6vw, 72px);
  background: white;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(to right, rgba(21,21,31,.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(21,21,31,.06) 1px, transparent 1px);
  background-size: 80px 80px;
  background-position: -1px -1px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 95%);
          mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 95%);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: stretch;
  min-height: clamp(520px, 78vh, 760px);
}
.hero__copy { justify-content: center; }
.hero__copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 560px;
}
.hero__copy .display {
  margin: 0;
  text-wrap: balance;
  font-size: clamp(40px, 4.5vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.022em;
}
.hero__copy .lede {
  max-width: 100%;
  font-size: clamp(15px, 1.1vw, 18px);
  color: var(--slate);
}
.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* ─────────── Animated catalog marquee ─────────── */
.hero__visual {
  position: relative;
  height: calc(100% + clamp(64px, 8vw, 104px) + clamp(48px, 6vw, 72px));
  margin-top: calc(-1 * clamp(64px, 8vw, 104px));
  margin-bottom: calc(-1 * clamp(48px, 6vw, 72px));
  min-height: clamp(440px, 70vh, 680px);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(to bottom, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.marquee {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  height: 100%;
}
.marquee__col {
  position: relative;
  overflow: hidden;
}
.marquee__track {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  animation: marquee-up var(--dur, 24s) linear infinite;
  will-change: transform;
}
/* Middle column phase-offset via animation-delay (keeps it inside the mask bounds) */
.marquee__col--offset .marquee__track {
  animation-delay: calc(var(--dur, 32s) * -0.35);
}
@keyframes marquee-up {
  from { transform: translateY(0); }
  to   { transform: translateY(-50%); }
}
.tile {
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 12px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  aspect-ratio: 1;
  transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
  overflow: hidden;
}
.tile:hover {
  border-color: rgba(66,90,246,.4);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15,15,30,.06);
}
.tile img {
  width: 100%;
  height: 100%;
  max-height: calc(100% - 22px);
  object-fit: contain;
  object-position: center;
  flex: 1 1 auto;
  min-height: 0;
}
.tile span {
  font-family: var(--font-ui);
  font-size: 10.5px;
  font-weight: 500;
  color: var(--slate);
  letter-spacing: -0.005em;
  line-height: 1.2;
  text-align: center;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 0 0 auto;
}

/* Brand tiles within marquee — logo centered, no label */
.tile--brand {
  background: var(--paper);
  padding: 20px;
  align-items: center;
  justify-content: center;
}
.tile--brand img {
  max-width: 70%;
  max-height: 50%;
  width: auto;
  height: auto;
  margin: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .7;
  transition: opacity .25s var(--ease), filter .25s var(--ease);
}
.tile--brand:hover img {
  opacity: 1;
  filter: grayscale(0);
}

/* ─────────── Brands strip — distribuidores ─────────── */
.brands {
  background: white;
  padding: clamp(48px, 5vw, 72px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.brands__label {
  color: var(--mute);
  margin: 0 0 28px;
  text-align: center;
}
.brands__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 56px);
  flex-wrap: wrap;
}
.brands__row li {
  flex: 0 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-logo {
  height: 28px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  opacity: .55;
  filter: grayscale(1);
  transition: opacity .25s var(--ease), filter .25s var(--ease);
}
.brand-logo:hover { opacity: 1; filter: grayscale(0); }
.brand-logo--apple { height: 32px; }

@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}
.hero__detail {
  margin: clamp(56px, 7vw, 88px) auto 0;
  max-width: var(--container);
  padding: 0 var(--pad);
  position: relative;
  color: var(--mute);
}
.hero__detail::before {
  content: "";
  position: absolute;
  left: var(--pad);
  top: 12px;
  width: 24px;
  height: 2px;
  background: var(--accent);
}
.hero__detail p {
  margin: 0 0 0 48px;
  font-family: var(--font-body);
  font-size: clamp(15px, 1.1vw, 18px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.005em;
  color: var(--navy);
  text-transform: none;
  max-width: 640px;
  hyphens: none;
}

/* ─────────────────────────────────────────────────────
   LOGOS
   ───────────────────────────────────────────────────── */
.logos {
  background: white;
  padding: clamp(64px, 7vw, 96px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.logos__row {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 64px;
}
.logos__row li {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  transition: transform .35s var(--ease);
}
.logos__row li:hover { transform: translateY(-2px); }

.clogo {
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
}

/* Per-logo sizing — bigger, full-color, optically balanced */
.clogo--capital { height: 38px; }
.clogo--uber    { height: 26px; }
.clogo--clip    { height: 44px; filter: brightness(0); }   /* convert orange → black */
.clogo--jll     { height: 46px; }

/* Inverted (dark backgrounds) — solid white */
.clogo--inv {
  filter: brightness(0) invert(1);
  opacity: 1;
}
.clogo--case    { height: 40px; max-width: 220px; }
.clogo--case-sm { height: 26px; max-width: 150px; }
.clogo--gusto-text.clogo--inv { color: white; opacity: 1; font-size: 26px; }

/* ─────────────────────────────────────────────────────
   APPLE BUSINESS PARTNER
   ───────────────────────────────────────────────────── */
.abp {
  background: white;
  padding: clamp(96px, 11vw, 144px) 0;
}
.abp__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.abp__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.abp__copy .display { margin: 0 0 20px; }
.abp__copy .subhead {
  margin: 0 0 32px;
}
.abp__badge {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 32px;
  margin-top: 8px;
  margin-left: -10px;
}
.abp__badge-img {
  width: auto;
  object-fit: contain;
  display: block;
}
/* Apple Business Partner */
.abp__badge-img--abp { height: 72px; }

.abp__media {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  width: 100%;
}
.abp__media .carousel__slide {
  object-fit: cover;
  border-radius: 8px;
}

/* ─────────── Generic carousel ─────────── */
.carousel__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1s var(--ease);
  pointer-events: none;
}
.carousel__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.carousel__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  display: flex;
  justify-content: center;
  gap: 6px;
  z-index: 3;
}
.carousel__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  border: 1px solid rgba(0,0,0,.15);
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.carousel__dot.is-active {
  background: var(--white);
  transform: scale(1.25);
  border-color: rgba(0,0,0,.25);
}

/* ─────────────────────────────────────────────────────
   PROBLEMA
   ───────────────────────────────────────────────────── */
.problema {
  background: var(--black);
  color: white;
  padding: clamp(80px, 9vw, 120px) 0;
  text-align: left;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line-d);
  isolation: isolate;
}
.problema__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.problema__media {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  width: 100%;
  background: #050505;
}
.problema__media .carousel__slide {
  object-fit: cover;
  border-radius: 8px;
}
.problema__copy {
  min-width: 0;
  width: 100%;
  justify-self: start;
}
.problema__copy .display {
  margin: 0;
  font-size: clamp(26px, 2.4vw, 36px);
  line-height: 1.12;
}
.problema__copy .subhead {
  margin: 14px 0 0;
  max-width: none;
}
.problema__copy .problema__lines {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.1);
}
.problema__lines p {
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255,255,255,.78);
  letter-spacing: -0.005em;
  margin: 0;
  padding: 12px 0 12px 28px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  position: relative;
  transition: color .25s var(--ease), padding-left .25s var(--ease);
}
.problema__lines p::before {
  content: "×";
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: rgba(255,90,90,.55);
  font-weight: 400;
  transition: color .25s var(--ease), transform .25s var(--ease);
}
.problema__lines p:hover {
  color: white;
  padding-left: 34px;
}
.problema__lines p:hover::before {
  color: #ff5a5a;
  transform: translateY(-50%) scale(1.15);
}

/* ─────────────────────────────────────────────────────
   Section head pattern
   ───────────────────────────────────────────────────── */
.section__head {
  margin-bottom: clamp(48px, 6vw, 80px);
  max-width: 960px;
}
.section__head--narrow { max-width: 760px; }
.section__head .subhead { margin-top: 24px; }

/* Split head: title left, brand marks right */
.section__head--split {
  max-width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 56px;
  align-items: end;
}
.section__head-copy { max-width: 720px; }

.brand-marks {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  text-align: right;
}
.brand-marks__label {
  color: var(--mute);
  margin: 0;
}
.brand-marks__list {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 18px 28px;
  justify-content: end;
  align-items: center;
}
.brand-mark-logo {
  height: 22px;
  width: auto;
  max-width: 90px;
  object-fit: contain;
  filter: grayscale(1) brightness(0.45);
  opacity: .7;
  transition: opacity .25s var(--ease), filter .25s var(--ease);
}
.brand-mark-logo:hover {
  opacity: 1;
  filter: grayscale(1) brightness(0.2);
}
.brand-mark {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--mute);
  opacity: .75;
  transition: opacity .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.brand-mark:hover { opacity: 1; color: var(--navy); }
.brand-mark--apple {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.015em;
  font-size: 15px;
}

@media (max-width: 1024px) {
  .section__head--split { grid-template-columns: 1fr; gap: 32px; align-items: start; }
  .brand-marks { align-items: flex-start; text-align: left; }
  .brand-marks__list { justify-content: start; }
}

/* ─────────────────────────────────────────────────────
   CICLO — editorial ledger
   ───────────────────────────────────────────────────── */
.ciclo {
  background: var(--smoke);
  padding: clamp(96px, 11vw, 144px) 0;
  position: relative;
  overflow: hidden;
}
.ciclo::before,
.ciclo::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
/* Outlined black square */
.ciclo::before {
  top: clamp(56px, 7vw, 96px);
  right: clamp(96px, 11vw, 168px);
  width: clamp(80px, 9vw, 132px);
  height: clamp(80px, 9vw, 132px);
  border: 1.5px solid var(--navy);
}
/* Solid accent square overlapping bottom-right of the outlined one */
.ciclo::after {
  top: calc(clamp(56px, 7vw, 96px) + clamp(32px, 3.5vw, 52px));
  right: calc(clamp(96px, 11vw, 168px) - clamp(32px, 3.5vw, 52px));
  width: clamp(80px, 9vw, 132px);
  height: clamp(80px, 9vw, 132px);
  background: var(--accent);
}
.ciclo .container { position: relative; z-index: 1; }
.ciclo__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.ciclo__card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 32px;
  transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.ciclo__card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(66,90,246,.08);
}
.ciclo__icon {
  width: 36px;
  height: 36px;
  display: block;
  margin-bottom: 20px;
  transition: transform .25s var(--ease);
}
.ciclo__card:hover .ciclo__icon {
  transform: scale(1.08);
}
.ciclo__card h3 {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.5vw, 21px);
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 14px;
  letter-spacing: -0.01em;
  line-height: 1.25;
  transition: color .25s var(--ease);
}
.ciclo__card:hover h3 {
  color: var(--accent);
}
.ciclo__card p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--slate);
  margin: 0;
}
@media (max-width: 960px) {
  .ciclo__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .ciclo__grid { grid-template-columns: 1fr; }
}
.ledger {
  border-top: 1px solid var(--line);
}
.row {
  display: grid;
  grid-template-columns: 1fr 28px;
  gap: 40px;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: padding .35s var(--ease);
}
.row__num {
  color: var(--mute);
  letter-spacing: 0.06em;
}
.row__main { padding-right: 24px; }
.row__main h3 {
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 0 0 6px;
  line-height: 1.15;
  transition: color .25s var(--ease);
}
.row__main p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--slate);
  margin: 0;
  max-width: 560px;
  text-align: justify;
  text-justify: inter-word;
  hyphens: none; word-break: keep-all; overflow-wrap: normal;
}
.row__time {
  color: var(--mute);
  text-align: right;
}
.row__arrow {
  color: var(--mute);
  font-size: 20px;
  text-align: right;
  transition: color .25s var(--ease), transform .25s var(--ease);
}
.row:hover {
  padding-left: 16px;
  background: linear-gradient(90deg, var(--smoke), transparent 40%);
}
.row:hover .row__main h3 { color: var(--accent); }
.row:hover .row__arrow { color: var(--accent); transform: translateX(6px); }

/* ─────────────────────────────────────────────────────
   SERVICIOS — tabla editorial
   ───────────────────────────────────────────────────── */
.servicios {
  background: var(--smoke);
  padding: clamp(96px, 11vw, 144px) 0;
}
.table {
  border-top: 1px solid var(--line);
}
.table__head {
  display: grid;
  grid-template-columns: 60px 240px 1fr 28px;
  gap: 28px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--mute);
}
.table__row {
  display: grid;
  grid-template-columns: 60px 240px 1fr 28px;
  gap: 28px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  transition: background .25s var(--ease), padding .25s var(--ease);
  cursor: default;
}
.table__num { color: var(--mute); }
.table__name {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.012em;
  transition: color .25s var(--ease);
}
.table__desc {
  font-size: 15px;
  line-height: 1.5;
  color: var(--slate);
  margin: 0;
}
.table__chev {
  color: var(--mute);
  font-size: 18px;
  text-align: right;
  transition: color .25s var(--ease), transform .25s var(--ease);
}
.table__row:hover {
  background: white;
  padding-left: 16px;
  padding-right: 16px;
}
.table__row:hover .table__name { color: var(--accent); }
.table__row:hover .table__chev { color: var(--accent); transform: translateX(4px); }

/* ─────────────────────────────────────────────────────
   POR QUÉ ALUS — bento grid
   ───────────────────────────────────────────────────── */
.por-que {
  background: var(--paper);
  padding: clamp(96px, 11vw, 144px) 0;
}
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(140px, auto);
  gap: 14px;
}
.bento__card {
  position: relative;
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 14px;
  transition: border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
  overflow: hidden;
}
.bento__card:hover {
  border-color: rgba(66,90,246,.35);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(15,15,30,.06);
}
.bento__card--hero {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
  background: linear-gradient(155deg, var(--smoke) 0%, white 70%);
  padding: 32px;
}
.bento__card--wide {
  grid-column: span 2;
}
.bento__card--accent {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}
.bento__num {
  color: var(--mute);
  align-self: flex-start;
}
.bento__card--accent .bento__num { color: rgba(255,255,255,.45); }
.bento__body { display: flex; flex-direction: column; gap: 10px; }
.bento__card--hero .bento__body { gap: 16px; }
.bento__body h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.9vw, 26px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.018em;
  color: var(--navy);
  margin: 0;
}
.bento__card--hero h3 { font-size: clamp(28px, 2.6vw, 38px); line-height: 1.1; }
.bento__card--accent h3 { color: white; }
.bento__card--accent h3 em { color: rgba(255,255,255,.55); font-style: italic; }
.bento__body p {
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.55;
  color: var(--slate);
  margin: 0;
}
.bento__card--accent p { color: rgba(255,255,255,.7); }
.bento__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: white;
  border: 1px solid var(--line);
  color: var(--navy);
  margin-bottom: 4px;
}
.bento__mark svg { width: 28px; height: 28px; }
.bento__stat {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 2.6vw, 38px);
  letter-spacing: -0.025em;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}

/* Responsive bento */
@media (max-width: 1024px) {
  .bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: minmax(160px, auto); }
  .bento__card--hero { grid-column: 1 / 3; grid-row: auto; }
  .bento__card--wide { grid-column: span 2; }
  .bento__card--hero h3 { font-size: clamp(24px, 4vw, 32px); }
}
@media (max-width: 640px) {
  .bento { grid-template-columns: 1fr; }
  .bento__card--hero, .bento__card--wide { grid-column: auto; }
  .bento__card { padding: 24px; }
  .bento__card--hero { padding: 28px; }
}

/* ─────────────────────────────────────────────────────
   EXPANSIÓN A MÉXICO — cross-border value
   ───────────────────────────────────────────────────── */
.expansion {
  background: var(--paper);
  padding: clamp(80px, 9vw, 128px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.expansion__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}
.expansion__copy {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.expansion__eyebrow {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.9vw, 30px);
  font-weight: 700;
  letter-spacing: -0.018em;
  color: var(--slate);
  margin: 0;
  line-height: 1.2;
  white-space: nowrap;
}
.expansion__hero {
  margin: 0;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.expansion__hero-accent {
  color: var(--accent);
  font-style: normal;
  white-space: nowrap;
}
.expansion__copy .subhead {
  margin: 0;
  max-width: 460px;
}

.expansion__checklist {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-left: 28px;
  border-left: 2px solid var(--accent);
}
.expansion__group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.expansion__cat {
  font-family: var(--font-ui);
  font-size: clamp(13px, 0.95vw, 15px);
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--mute);
  margin: 0;
  text-transform: none;
}
.expansion__group ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.expansion__group li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: baseline;
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.45;
  color: var(--navy);
  letter-spacing: -0.005em;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.expansion__group li:last-child { border-bottom: none; padding-bottom: 0; }
.expansion__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  font-size: 12px;
  font-weight: 600;
  transform: translateY(2px);
}

@media (max-width: 1024px) {
  .expansion__grid { grid-template-columns: 1fr; gap: 48px; }
  .expansion__copy { position: static; }
  .expansion__checklist { padding-left: 20px; }
}

/* ─────────────────────────────────────────────────────
   CLIENTES — strip animado horizontal
   ───────────────────────────────────────────────────── */
.clients {
  background: var(--black);
  color: white;
  padding: clamp(40px, 4vw, 56px) 0;
  border-top: 1px solid var(--line-d);
  border-bottom: 1px solid var(--line-d);
  overflow: hidden;
}
.clients__head { margin-bottom: clamp(24px, 2.5vw, 36px); }
.clients__label {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 500;
  letter-spacing: -0.012em;
  line-height: 1.2;
  color: white;
  margin: 0;
}
.clients__track-wrap {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
}
.clients__track {
  display: flex;
  align-items: center;
  gap: clamp(64px, 8vw, 120px);
  width: max-content;
  animation: clients-scroll 32s linear infinite;
  will-change: transform;
  padding: 8px 0;
}
.clients__logo {
  height: 44px;
  width: auto;
  max-width: none;
  object-fit: contain;
  flex-shrink: 0;
  opacity: .85;
  transition: opacity .25s var(--ease);
}
.clients__logo:hover { opacity: 1; }
.clients__logo--uber { height: 30px; }
.clients__logo--clip { height: 88px; }
.clients__logo--unilever { height: 56px; }
.clients__logo--stori { height: 34px; }
.clients__logo--growrk { height: 32px; }
@keyframes clients-scroll {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
@media (prefers-reduced-motion: reduce) {
  .clients__track { animation: none; }
}

/* ─────────────────────────────────────────────────────
   PARA QUIÉN ES
   ───────────────────────────────────────────────────── */
.quien {
  background: white;
  padding: clamp(96px, 11vw, 144px) 0;
}
.quien__head {
  max-width: 760px;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.quien__head .subhead { margin-top: 20px; }

/* ─────────── Pain ↔ Solution mirror ─────────── */
.mirror {
  border-top: 1px solid var(--line);
}
.mirror__head {
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  gap: 32px;
  padding: 18px 0 14px;
  border-bottom: 1px solid var(--line);
}
.mirror__label {
  color: var(--mute);
  letter-spacing: 0.08em;
}
.mirror__label--gain {
  color: var(--accent);
  text-align: left;
}
.mirror__row {
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  gap: 32px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  transition: padding .3s var(--ease);
}
.mirror__row:hover { padding-left: 8px; padding-right: 8px; }
.mirror__pain {
  font-size: clamp(15px, 1.2vw, 19px);
  line-height: 1.45;
  color: var(--mute);
  letter-spacing: -0.005em;
  text-decoration: line-through;
  text-decoration-color: rgba(139,149,168,.35);
  text-decoration-thickness: 1px;
}
.mirror__sep {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-size: 18px;
  color: var(--accent);
  opacity: .6;
}
.mirror__gain {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.3vw, 21px);
  line-height: 1.35;
  color: var(--navy);
  font-weight: 500;
  letter-spacing: -0.012em;
}

.quien__close {
  margin: clamp(48px, 6vw, 72px) 0 0 !important;
  font-family: var(--font-display) !important;
  font-size: clamp(22px, 2.2vw, 32px) !important;
  color: var(--navy) !important;
  font-weight: 500 !important;
  letter-spacing: -0.02em !important;
  line-height: 1.2 !important;
  max-width: 720px;
}
.quien__close em { color: var(--accent); font-style: italic; }

@media (max-width: 720px) {
  .mirror__head, .mirror__row { grid-template-columns: 1fr; gap: 8px; padding: 18px 0; }
  .mirror__sep { display: none; }
  .mirror__label--gain { text-align: left; }
}

/* ─────────────────────────────────────────────────────
   CTA FINAL
   ───────────────────────────────────────────────────── */
.cta {
  background: var(--black);
  color: white;
  padding: clamp(96px, 11vw, 144px) 0;
}
.cta__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.cta .display { margin-top: 14px; }
.cta .subhead {
  margin-top: 22px;
  max-width: 460px;
  text-align: justify;
  text-justify: inter-word;
  hyphens: none; word-break: keep-all; overflow-wrap: normal;
}

/* Contact info block (replaces exec photo) */
.contact-info {
  margin-top: 56px;
  padding: 32px 0 8px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-info__row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  align-items: baseline;
}
.contact-info__label {
  color: rgba(255,255,255,.45);
  margin: 0;
  letter-spacing: 0.04em;
}
.contact-info__value {
  color: white;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: -0.005em;
  margin: 0;
  font-style: normal;
  transition: color .2s var(--ease);
}
a.contact-info__value:hover { color: var(--accent); }
.contact-info__address { color: rgba(255,255,255,.85); }
@media (max-width: 720px) {
  .contact-info__row { grid-template-columns: 1fr; gap: 4px; }
}

.form {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.form__head {
  color: rgba(255,255,255,.5);
  margin: 0 0 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form span {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.form input,
.form select,
.form textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,.18);
  padding: 10px 0;
  font: inherit;
  color: white;
  font-size: 16px;
  outline: none;
  transition: border-color .25s var(--ease);
  border-radius: 0;
  resize: vertical;
  font-family: var(--font-body);
}
.form textarea { min-height: 96px; line-height: 1.5; }
/* Honeypot — invisible to humans, catches bots */
.form__honey {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
  tab-index: -1;
}
.form__status {
  font-family: var(--font-ui);
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255,255,255,.7);
  margin: 8px 0 0;
  min-height: 1.45em;
}
.form__status a { color: var(--accent); text-decoration: underline; }
.form__status a:hover { color: white; }
.form button[disabled] { opacity: .6; cursor: not-allowed; }
.form select { appearance: none; -webkit-appearance: none; background-image: linear-gradient(45deg, transparent 50%, rgba(255,255,255,.5) 50%), linear-gradient(135deg, rgba(255,255,255,.5) 50%, transparent 50%); background-position: calc(100% - 14px) 18px, calc(100% - 9px) 18px; background-size: 5px 5px; background-repeat: no-repeat; }
.form select option { background: var(--black); color: white; }
.form input:focus,
.form select:focus,
.form textarea:focus { border-bottom-color: var(--accent); }

/* CTA form button: accent → gray on hover */
.btn--cta-form {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}
.btn--cta-form:hover {
  background: var(--slate);
  border-color: var(--slate);
  color: white;
  transform: translateY(-1px);
}

/* Accent word in CTA display */
.cta__accent {
  color: var(--accent) !important;
  font-style: italic;
}

/* ─────────────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────────────── */
.footer {
  background: var(--black);
  color: white;
  padding: 88px 0 32px;
  border-top: 1px solid var(--line-d);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.footer__brand { color: white; }
.footer__logo { width: auto; height: 40px; margin-bottom: 16px; display: block; }
.footer__brand p { color: rgba(255,255,255,.45); margin: 0; }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.footer__cols a, .footer__cols p {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,.65);
  margin: 0 0 10px;
  transition: color .2s var(--ease);
  font-family: 'Inter', sans-serif;
  text-transform: none;
  letter-spacing: 0;
}
.footer__cols a:hover { color: white; }
.footer__h {
  color: rgba(255,255,255,.45) !important;
  margin-bottom: 18px !important;
}
.footer__base {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.4);
  flex-wrap: wrap;
}
.footer__base p { margin: 0; }
.footer__legal-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}
.footer__legal {
  color: rgba(255,255,255,.5);
  transition: color .2s var(--ease);
  white-space: nowrap;
}
.footer__legal:hover { color: white; }

/* ─────────────────────────────────────────────────────
   Reveal animations
   ───────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; transition: none !important; }
}

/* ─────────────────────────────────────────────────────
   Responsive
   ───────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --pad: 24px; }
  .hero__below { grid-template-columns: 1fr; gap: 32px; }
  .hero__grid { grid-template-columns: 1fr; gap: 40px; min-height: auto; }
  .hero__visual { height: 420px; }
  .marquee { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .tile { padding: 10px 8px 8px; gap: 4px; border-radius: 10px; }
  .tile span { font-size: 9.5px; }
  .brand-logo { height: 22px; }
  .brand-logo--apple { height: 26px; }
  .abp__row { grid-template-columns: 1fr; gap: 40px; }
  .problema__row { grid-template-columns: 1fr; gap: 40px; }
  .problema__media { aspect-ratio: 16 / 10; }
  .abp__badge { max-width: 280px; }
  .row { grid-template-columns: 1fr 24px; gap: 24px; }
  .table__head, .table__row { grid-template-columns: 50px 200px 1fr 24px; gap: 20px; }
  .statement { grid-template-columns: 1fr; gap: 16px; padding: 48px 0; }
  .case { grid-template-columns: 1fr; gap: 32px; padding: 56px 0; }
  .cta__grid { grid-template-columns: 1fr; gap: 56px; }
  .footer__inner { grid-template-columns: 1fr; gap: 48px; }
  .masthead { grid-template-columns: 1fr; }
  .masthead__center, .masthead > :last-child { display: none; }
}

@media (max-width: 720px) {
  :root { --pad: 18px; }
  body { font-size: 16px; }

  .nav__links { display: none; }
  .nav__inner > .btn { display: none; }
  .nav__burger { display: flex; }

  .hero { padding: 64px 0 56px; }
  .hero__chapter { margin-bottom: 40px; }
  .hero__detail { grid-template-columns: 1fr; gap: 12px; padding: 0 var(--pad); }
  .hero__detail span { display: none; }

  .row { grid-template-columns: 1fr 24px; gap: 16px; }
  .row__time { display: none; }
  .row__main h3 { font-size: 20px; }

  .table__head, .table__row { grid-template-columns: 40px 1fr 20px; gap: 16px; }
  .table__head > :nth-child(3), .table__row .table__desc { display: none; }
  .table__name { font-size: 16px; }

  .footer__cols { grid-template-columns: 1fr; gap: 32px; }
  .footer__base { flex-direction: column; gap: 8px; }
  .form { padding: 28px; }
  .case header { gap: 16px; }
  .logos__row { gap: 32px 40px; justify-content: flex-start; }
}
