:root {
  --black: #050505;
  --ink: #111;
  --paper: #f7f4ef;
  --red: #dc100b;
  --red-dark: #a70704;
  --muted: #545454;
  --max: 1500px;
  --display: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Black", sans-serif;
  --body: Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--black);
  font-family: var(--body);
  line-height: 1.25;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: #fff;
  color: #000;
  padding: .75rem 1rem;
  z-index: 1000;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.site-header,
main,
.site-footer {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.site-header {
  height: clamp(54px, 5vw, 72px);
  background: #000;
  color: #fff;
  display: grid;
  grid-template-columns: minmax(205px, 285px) 1fr minmax(220px, 280px);
  align-items: center;
  gap: 1rem;
  padding-left: clamp(18px, 2.5vw, 36px);
  border-bottom: 3px solid #111;
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: .45rem;
  font-weight: 950;
  font-size: clamp(1.65rem, 3.1vw, 3rem);
  letter-spacing: -0.08em;
  line-height: 1;
  white-space: nowrap;
}
.brand small {
  font-family: var(--body);
  font-size: clamp(.62rem, .85vw, .9rem);
  letter-spacing: 0;
  font-weight: 950;
  text-transform: none;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(.75rem, 2.2vw, 2.4rem);
  font-weight: 900;
  font-size: clamp(.78rem, 1.1vw, 1.05rem);
}
.nav-links a { opacity: .94; }
.nav-links a:hover { color: #fff; text-shadow: 0 0 0 #fff; }

.nav-cta {
  justify-self: stretch;
  align-self: stretch;
  display: grid;
  place-items: center;
  background: var(--red);
  color: #fff;
  text-transform: uppercase;
  font-family: var(--display);
  font-style: italic;
  letter-spacing: .035em;
  line-height: .96;
  font-size: clamp(.95rem, 1.35vw, 1.4rem);
  text-align: center;
  padding-right: 1.15rem;
  clip-path: polygon(12% 0, 100% 0, 88% 100%, 0 100%);
  border-left: 5px solid #fff;
  text-shadow: 2px 2px #000;
}

.section-frame {
  border-bottom: 5px solid #000;
  overflow: hidden;
}

.hero {
  height: clamp(520px, calc(min(100vw, var(--max)) * 0.49), 735px);
  min-height: 0;
  background: #f7f4ef url("assets/hero-cost.webp") center / 100% 100% no-repeat;
  position: relative;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.08) 0%, rgba(255,255,255,.02) 42%, rgba(255,255,255,0) 62%);
  pointer-events: none;
  z-index: -1;
}
.hero-copy {
  width: min(42%, 610px);
  padding: clamp(26px, 3.4vw, 48px) 0 1rem clamp(30px, 4vw, 56px);
}
.hero h1 {
  margin: 0 0 .75rem;
  font-family: var(--display);
  font-style: italic;
  letter-spacing: -.055em;
  line-height: .91;
  font-size: clamp(3rem, 5.15vw, 5.95rem);
  text-transform: none;
  text-shadow: 2px 2px 0 rgba(255,255,255,.8);
}
.hero h1 span { color: var(--red); }
.hero h2 {
  width: min(100%, 430px);
  margin: 0 0 1.35rem;
  font-weight: 900;
  font-size: clamp(1.05rem, 1.55vw, 1.55rem);
  line-height: 1.12;
}

.comic-button {
  display: inline-grid;
  place-items: center;
  min-height: 50px;
  padding: .76rem 1.45rem .72rem;
  background: linear-gradient(180deg, #f12618, var(--red-dark));
  color: #fff;
  text-transform: uppercase;
  font-family: var(--display);
  font-style: italic;
  letter-spacing: .04em;
  font-size: clamp(1rem, 1.65vw, 1.65rem);
  text-shadow: 2px 2px #000;
  clip-path: polygon(7% 0, 94% 0, 100% 22%, 93% 100%, 6% 100%, 0 78%);
  box-shadow: inset 0 0 0 3px #000, 6px 6px 0 #000;
  position: relative;
  transition: transform .15s ease;
}
.comic-button:hover { transform: translate(-1px, -1px) rotate(-1deg); }

.speech-note {
  margin-top: .9rem;
  width: min(255px, 90%);
  min-height: 68px;
  display: grid;
  place-items: center;
  padding: .8rem 1.3rem;
  background: #fff;
  border: 4px solid #000;
  border-radius: 55% 45% 50% 45% / 46% 58% 42% 55%;
  font-family: var(--display);
  font-style: italic;
  text-align: center;
  font-size: clamp(.98rem, 1.45vw, 1.38rem);
  line-height: 1.02;
  transform: rotate(-5deg);
  box-shadow: 4px 4px 0 #000;
}

.section-label {
  display: inline-block;
  background: #000;
  color: #fff;
  font-family: var(--display);
  font-style: italic;
  letter-spacing: .03em;
  text-transform: uppercase;
  font-size: clamp(1.65rem, 3vw, 3rem);
  line-height: .92;
  padding: .32rem 2.2rem .42rem 1rem;
  clip-path: polygon(0 0, 94% 0, 100% 45%, 91% 100%, 0 100%, 5% 45%);
  text-shadow: 2px 2px var(--red);
}

.benefits {
  position: relative;
  padding: clamp(16px, 2.2vw, 30px) clamp(20px, 4.5vw, 68px) clamp(20px, 2.5vw, 40px);
  background: #faf7f1 url("assets/speedlines.webp") center / cover no-repeat;
}
.benefits .section-label { margin-bottom: clamp(12px, 1.4vw, 22px); }
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(.55rem, 1.3vw, 1.3rem);
}
.benefit-card {
  min-height: clamp(115px, 10.5vw, 158px);
  background: rgba(255,255,255,.93);
  border: 3px solid #000;
  border-radius: 4px;
  display: grid;
  place-items: center;
  padding: .65rem .4rem .8rem;
  text-align: center;
  box-shadow: 3px 3px 0 rgba(0,0,0,.85);
}
.benefit-card svg {
  width: clamp(48px, 5.2vw, 84px);
  height: clamp(48px, 5.2vw, 84px);
  color: #050505;
  margin-bottom: .25rem;
}
.benefit-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(.85rem, 1.25vw, 1.45rem);
  letter-spacing: -.02em;
  line-height: 1.05;
}
.green-card svg { color: #265d31; }

.comparison {
  min-height: clamp(300px, 33.3vw, 500px);
  background: url("assets/comparison-bg.webp") center / cover no-repeat;
  position: relative;
  padding: 0;
}
.why-bubble {
  position: absolute;
  left: 3.1%;
  top: 27.5%;
  width: 17.4%;
  height: 48%;
  display: grid;
  place-items: center;
  padding: 0 1.15%;
  color: #050505;
  font-family: var(--display);
  font-style: italic;
  text-transform: uppercase;
  text-align: center;
  font-size: clamp(.9rem, 1.75vw, 2.1rem);
  line-height: .88;
  transform: rotate(-5deg);
}
.comparison-table-wrap {
  position: absolute;
  left: 21.3%;
  top: 9.2%;
  width: 57.3%;
  height: 78.4%;
  display: grid;
  align-items: stretch;
}
.comparison-table {
  width: 100%;
  height: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  background: rgba(255,255,255,.84);
  border: 3px solid #000;
  font-weight: 900;
  font-size: clamp(.62rem, 1.05vw, 1.1rem);
  line-height: 1.05;
}
.comparison-table th,
.comparison-table td {
  border: 1.8px solid rgba(0,0,0,.55);
  padding: .35rem .5rem;
  text-align: center;
}
.comparison-table thead th {
  background: #090909;
  color: #fff;
  font-family: var(--display);
  font-size: 1.08em;
  letter-spacing: .02em;
}
.comparison-table thead th:last-child { background: var(--red); }
.comparison-table tbody th {
  text-align: left;
  background: rgba(255,255,255,.78);
  font-family: var(--body);
}
.comparison-table td:last-child { color: var(--red); font-weight: 950; }

.services {
  background: #faf7f1;
  position: relative;
}
.services-panel {
  position: relative;
  min-height: clamp(300px, 33.3vw, 500px);
  background: url("assets/services-bg.webp") center / cover no-repeat;
}
.services .section-label {
  position: absolute;
  left: 2.2%;
  top: 3.2%;
  z-index: 2;
}
.service-grid {
  position: absolute;
  left: 5.2%;
  right: 5.2%;
  top: 27%;
  height: 61%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5%;
}
.service-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(6.1rem, 9.4vw, 9.8rem) clamp(1rem, 2vw, 2rem) clamp(.7rem, 1vw, 1rem) clamp(1rem, 2vw, 2rem);
  overflow: hidden;
}
.service-card h3 {
  margin: 0 0 .55rem;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.05vw, 2.4rem);
  text-transform: uppercase;
  line-height: .95;
}
.service-card p {
  margin: 0;
  font-weight: 900;
  font-size: clamp(.7rem, 1.08vw, 1.12rem);
  line-height: 1.12;
}
.services-cta {
  position: absolute;
  left: 50%;
  bottom: 3.7%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.services-cta:hover { transform: translateX(-50%) translate(-1px, -1px) rotate(-1deg); }

.research {
  width: min(100%, var(--max));
  margin-inline: auto;
  padding: clamp(16px, 2vw, 26px) clamp(18px, 3.2vw, 46px) clamp(22px, 2.5vw, 36px);
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.12) 1px, transparent 2px) 0 0 / 26px 26px,
    linear-gradient(#030303, #000);
  border-bottom: 5px solid #000;
  color: #fff;
  overflow: hidden;
}
.research h2 {
  margin: 0 0 clamp(12px, 1.7vw, 22px);
  text-align: center;
  font-family: var(--display);
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: .025em;
  line-height: 1;
  font-size: clamp(1.4rem, 2.5vw, 3rem);
}
.research-carousel {
  position: relative;
}
.research-strip {
  display: flex;
  gap: clamp(.45rem, .95vw, 1rem);
  overflow-x: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.research-strip::-webkit-scrollbar { display: none; }
.post-card {
  position: relative;
  flex: 0 0 calc((100% - (5 * clamp(.45rem, .95vw, 1rem))) / 6);
  min-height: clamp(158px, 16vw, 235px);
  color: #000;
  background: #f9f6ef;
  border: 3px solid #fff;
  outline: 3px solid #000;
  border-radius: 11px;
  padding: clamp(.45rem, .8vw, .8rem);
  overflow: hidden;
  box-shadow: 4px 4px 0 #333;
}
.post-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/speedlines.webp") center / cover no-repeat;
  opacity: .38;
  z-index: 0;
}
.post-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 55%;
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  filter: grayscale(.15) contrast(1.05);
  opacity: .92;
  z-index: 0;
}
.post-card > * { position: relative; z-index: 1; }
.post-date {
  color: var(--red);
  font-family: var(--display);
  font-style: italic;
  text-transform: uppercase;
  font-size: clamp(.65rem, .95vw, 1rem);
  margin-bottom: .25rem;
}
.post-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1rem, 1.35vw, 1.55rem);
  letter-spacing: -.02em;
  line-height: .98;
}
.post-europe::after { background-image: linear-gradient(rgba(255,255,255,.45), rgba(255,255,255,.1)), url("assets/lab-switch.webp"); background-position: left bottom; }
.post-almanac::after { background-image: url("assets/single-card-frame.webp"); background-size: 92%; }
.post-portrait::after { background-image: url("assets/portrait.webp"); background-position: center 40%; }
.post-robot::after { background-image: url("assets/robot-pod.webp"); background-position: center 35%; }
.post-system::after { background-image: url("assets/halftone.webp"); background-position: right bottom; }
.post-catalan::after { background-image: url("assets/cards-four-bg.webp"); background-position: right bottom; }
.post-costs::after { background-image: url("assets/hero-cost.webp"); background-position: right bottom; }
.post-cloud::after { background-image: url("assets/robot-repair.webp"); background-position: center bottom; }
.post-ownership::after { background-image: url("assets/cards-three-bg.webp"); background-position: right bottom; }
.post-latency::after { background-image: url("assets/robot-pod.webp"); background-position: center 35%; }
.carousel-arrow {
  position: absolute;
  right: -1.8rem;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 88px;
  border: 0;
  background: transparent;
  color: #fff;
  font-family: var(--display);
  font-size: 6rem;
  line-height: .8;
  cursor: pointer;
}

.cases {
  padding: clamp(14px, 1.8vw, 28px) clamp(18px, 2.6vw, 38px) clamp(22px, 3vw, 44px);
  background: #f7f4ef url("assets/speedlines.webp") center / cover no-repeat;
}
.cases-header {
  display: flex;
  align-items: end;
  gap: clamp(1rem, 2vw, 2rem);
  margin-bottom: clamp(10px, 1.3vw, 18px);
}
.cases h2 {
  margin: 0;
  font-family: var(--display);
  font-style: italic;
  text-transform: uppercase;
  font-size: clamp(2.1rem, 4vw, 4.2rem);
  line-height: .85;
  letter-spacing: .02em;
  text-shadow: 2px 2px 0 #fff;
}
.case-filters {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  padding-bottom: .2rem;
}
.case-filters button,
.case-tags span {
  display: inline-block;
  appearance: none;
  background: #0b0b0b;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 999px;
  padding: .25rem .75rem .2rem;
  font-weight: 950;
  font-size: clamp(.58rem, .82vw, .88rem);
  text-transform: uppercase;
  box-shadow: 0 0 0 1px #000;
}
.case-filters button {
  cursor: pointer;
  font-family: var(--body);
}
.case-filters button:hover,
.case-filters button.active {
  background: var(--red);
  transform: translateY(-1px);
}
.case-card[hidden] { display: none; }
.empty-cases {
  margin: 1rem 0 0;
  font-weight: 950;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.2rem, 2vw, 2rem);
}
.case-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(.65rem, 1.25vw, 1.25rem);
}
.case-card {
  position: relative;
  min-height: clamp(445px, 43vw, 580px);
  padding: clamp(.75rem, 1.1vw, 1.05rem);
  background:
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,255,255,.88)),
    url("assets/halftone.webp") right bottom / 140% auto no-repeat;
  border: 4px solid #000;
  border-radius: 12px;
  box-shadow: 5px 5px 0 #000;
  overflow: hidden;
}
.case-card h3 {
  margin: .35rem 0 .25rem;
  font-family: var(--display);
  font-size: clamp(1.1rem, 1.75vw, 2rem);
  line-height: .96;
  letter-spacing: -.02em;
}
.case-card p {
  margin: .42rem 0;
  font-size: clamp(.66rem, .85vw, .9rem);
  font-weight: 800;
  line-height: 1.08;
}
.case-card strong {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.05em;
}
.company {
  font-weight: 950 !important;
  font-size: clamp(.85rem, 1.35vw, 1.45rem) !important;
  line-height: 1 !important;
}
.company.candy { color: #ec5fa4; }
.company.planeta { color: #2770b8; }
.company.catalan { color: #0d8fb7; }
.company.safe { color: #3a7b5d; }
.case-badge {
  position: absolute;
  z-index: 3;
  top: .55rem;
  left: .65rem;
  background: var(--red);
  color: #fff;
  border: 2px solid #000;
  border-radius: 999px;
  padding: .1rem .5rem;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(.86rem, 1.2vw, 1.25rem);
  line-height: 1;
}
.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .25rem;
  min-height: 24px;
  margin-left: 2.55rem;
  margin-bottom: .15rem;
}
.case-tags span {
  padding: .12rem .4rem .08rem;
  font-size: clamp(.43rem, .56vw, .62rem);
  border-width: 1.5px;
}
.case-image {
  float: right;
  width: clamp(72px, 7.5vw, 128px);
  height: clamp(72px, 7.5vw, 128px);
  margin: .3rem 0 .35rem .55rem;
  border: 3px solid #000;
  border-radius: 7px;
  background-size: cover;
  background-position: center;
  filter: grayscale(.18) contrast(1.08);
}
.case-image-portrait { background-image: url("assets/portrait-alt.webp"); background-position: center 44%; }
.case-image-almanac { background-image: url("assets/single-card-frame.webp"); background-size: 95%; background-color: #fff; }
.case-image-safe { background-image: url("assets/lab-switch.webp"); background-position: 65% center; }
.flag {
  float: right;
  width: clamp(70px, 7.2vw, 118px);
  height: clamp(48px, 5vw, 82px);
  margin: .2rem 0 .35rem .55rem;
  border: 3px solid #000;
  border-radius: 4px;
  background: repeating-linear-gradient(0deg, #ffd42a 0 10%, #d91919 10% 18%, #ffd42a 18% 30%);
  transform: rotate(3deg);
  box-shadow: 3px 3px 0 #000;
}
.metrics {
  position: absolute;
  left: .75rem;
  right: .75rem;
  bottom: .65rem;
  display: flex;
  justify-content: center;
  gap: .8rem;
  pointer-events: none;
}
.metrics span {
  width: clamp(88px, 8.1vw, 142px);
  min-width: unset;
  display: grid;
  place-items: center;
  min-height: clamp(66px, 6.9vw, 102px);
  padding: .32rem .58rem;
  color: #fff;
  background: var(--red);
  border: 3px solid #000;
  clip-path: polygon(50% 0%, 60% 18%, 80% 8%, 76% 30%, 98% 35%, 82% 50%, 98% 65%, 76% 70%, 80% 92%, 60% 82%, 50% 100%, 40% 82%, 20% 92%, 24% 70%, 2% 65%, 18% 50%, 2% 35%, 24% 30%, 20% 8%, 40% 18%);
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.45rem, 2.25vw, 3rem);
  line-height: .85;
  text-align: center;
  white-space: nowrap;
  text-shadow: 2px 2px #000;
}
.metrics small {
  display: block;
  font-size: .25em;
  line-height: 1;
}
.safe-card { background-image: linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.9)), url("assets/robot-repair.webp"); background-size: cover; background-position: center; }

.bottom-cta {
  width: min(100%, var(--max));
  margin-inline: auto;
  min-height: clamp(132px, 13vw, 206px);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: clamp(1rem, 3vw, 3rem);
  padding: clamp(.75rem, 1.4vw, 1.45rem) clamp(30px, 5vw, 82px) clamp(.8rem, 1.45vw, 1.5rem) clamp(290px, 31vw, 465px);
  background: #f7f4ef url("assets/footer-cta.webp") center / 100% 100% no-repeat;
  border-bottom: 4px solid #000;
}
.bottom-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-style: italic;
  text-transform: uppercase;
  font-size: clamp(1.8rem, 3.05vw, 3.6rem);
  line-height: .9;
}
.bottom-copy p {
  margin: .25rem 0 0;
  font-weight: 950;
  font-size: clamp(.8rem, 1.15vw, 1.2rem);
}
.bottom-button { white-space: nowrap; font-size: clamp(1rem, 1.55vw, 1.7rem); }

.site-footer {
  min-height: 48px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.2rem;
  background: #050505;
  color: #fff;
  padding: .55rem clamp(18px, 2.5vw, 36px);
}
.footer-brand { font-size: clamp(1.5rem, 2.4vw, 2.45rem); }
.footer-brand small { font-size: clamp(.55rem, .75vw, .8rem); }
.site-footer p {
  margin: 0;
  color: #e8e8e8;
  font-size: clamp(.55rem, .8vw, .85rem);
}
.socials {
  display: flex;
  align-items: center;
  gap: .8rem;
  font-weight: 900;
  font-size: clamp(1.1rem, 1.5vw, 1.5rem);
}
.socials a:nth-child(2) {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  background: #fff;
  color: #000;
  font-size: .8em;
  border-radius: 2px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    gap: .5rem;
  }
  .nav-links { gap: .75rem; font-size: .72rem; }
  .hero-copy { width: 43%; padding-left: 28px; }
  .benefit-card { min-height: 112px; }
  .bottom-cta { padding-left: 245px; }
}

@media (max-width: 820px) {
  .benefit-grid { grid-template-columns: repeat(3, 1fr); }
  .case-grid { grid-template-columns: repeat(2, 1fr); }
  .case-card { min-height: 470px; }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 74px;
    height: auto;
    grid-template-columns: 1fr auto;
    padding: .65rem .8rem;
  }
  .brand { font-size: 2rem; }
  .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
    order: 3;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: .25rem;
  }
  .nav-links a:nth-last-child(1) { display: none; }
  .nav-cta { width: 150px; min-height: 46px; }
  .hero {
    height: auto;
    min-height: 600px;
    background-size: auto 100%;
    background-position: 62% center;
  }
  .hero::before { background: rgba(255,255,255,.58); }
  .hero-copy {
    width: auto;
    max-width: 92%;
    padding: 2rem 1.1rem;
  }
  .hero h1 { font-size: clamp(3.4rem, 17vw, 5.2rem); }
  .hero h2 { max-width: 320px; }
  .benefits { padding-inline: 1rem; }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .comparison {
    min-height: 620px;
    background: #f7f4ef url("assets/speedlines.webp") center / cover no-repeat;
    padding: 1rem;
  }
  .why-bubble {
    position: relative;
    left: auto;
    top: auto;
    width: min(300px, 84%);
    height: auto;
    min-height: 160px;
    margin: 0 auto 1rem;
    background: url("assets/burst-bubble.webp") center / 104% 108% no-repeat;
    font-size: 1.55rem;
  }
  .comparison-table-wrap {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: auto;
    overflow-x: auto;
  }
  .comparison-table { min-width: 690px; height: auto; font-size: .78rem; }
  .comparison-table th, .comparison-table td { padding: .55rem .45rem; }
  .services-panel {
    min-height: 720px;
    background: #f7f4ef url("assets/speedlines.webp") center / cover no-repeat;
    padding: 1rem;
  }
  .services .section-label { position: static; margin-bottom: 1rem; }
  .service-grid {
    position: static;
    height: auto;
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .service-card {
    min-height: 160px;
    background: rgba(255,255,255,.9);
    border: 3px solid #000;
    box-shadow: 4px 4px #000;
    padding: 1rem;
  }
  .service-card h3 { font-size: 1.8rem; }
  .service-card p { font-size: .95rem; }
  .services-cta {
    position: static;
    transform: none;
    margin: 1.25rem auto 0;
    display: grid;
    width: fit-content;
  }
  .services-cta:hover { transform: translate(-1px, -1px) rotate(-1deg); }
  .research-strip {
    overflow-x: auto;
    padding-bottom: .75rem;
    scroll-snap-type: x mandatory;
  }
  .post-card { flex: 0 0 190px; min-height: 250px; scroll-snap-align: start; }
  .carousel-arrow { display: none; }
  .cases-header { align-items: flex-start; flex-direction: column; }
  .case-grid { grid-template-columns: 1fr; }
  .case-card { min-height: 520px; }
  .case-card p { font-size: .82rem; }
  .bottom-cta {
    grid-template-columns: 1fr;
    padding: 1.2rem 1rem 1.2rem 130px;
    min-height: 165px;
    background-size: cover;
    background-position: 18% center;
  }
  .bottom-button { justify-self: start; }
}

@media (max-width: 460px) {
  .nav-cta { display: none; }
  .site-header { grid-template-columns: 1fr; }
  .benefit-grid { grid-template-columns: 1fr; }
  .hero { min-height: 600px; background-position: 59% center; }
  .speech-note { width: 245px; }
  .bottom-cta { padding-left: 1rem; background-image: linear-gradient(rgba(255,255,255,.76), rgba(255,255,255,.76)), url("assets/footer-cta.webp"); }
  .site-footer { grid-template-columns: 1fr; text-align: center; justify-items: center; }
}
