@font-face {
  font-family: "Blinker";
  src: url("fonts/Blinker-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Blinker";
  src: url("fonts/Blinker-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Blinker";
  src: url("fonts/Blinker-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Blinker";
  src: url("fonts/Blinker-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Blinker";
  src: url("fonts/Blinker-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Blinker";
  src: url("fonts/Blinker-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-main: "Blinker", Arial, Helvetica, sans-serif;
  --bg: #ffffff;
  --bg-soft: #f5fbfc;
  --ink: #030303;
  --ink-soft: #162124;
  --text: #5f6668;
  --line: #d4e7ea;
  --accent: #00a7b2;
  --accent-dark: #008891;
  --accent-soft: #d7f3f5;
  --white: #ffffff;
  --black: #030303;
  --shadow: 0 22px 56px rgba(3, 3, 3, 0.12);
  --radius: 10px;
  --container: min(1280px, calc(100vw - 56px));
  --header-h: 84px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(0, 167, 178, 0.07), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #fbfeff 100%);
  font-family: var(--font-main);
  line-height: 1.38;
  overflow-x: hidden;
}

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

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

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

.shell {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(3, 3, 3, 0.06);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
}

.site-header__inner,
.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--container);
  margin: 0 auto;
}

.site-header__inner {
  min-height: var(--header-h);
}

.brand img {
  width: 236px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 19px;
  font-weight: 500;
}

.site-nav a {
  color: var(--ink-soft);
}

.site-nav a:hover {
  color: var(--accent);
}

.nav-cta {
  padding: 15px 24px;
  color: var(--white) !important;
  background: var(--black);
  border-radius: 999px;
}

.nav-cta:hover {
  background: var(--accent);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.page-shell {
  scroll-snap-type: y mandatory;
}

.page-panel {
  min-height: calc(100svh - var(--header-h));
  scroll-snap-align: start;
  scroll-snap-stop: always;
  scroll-margin-top: var(--header-h);
  display: flex;
  align-items: center;
}

.mobile-cta {
  display: none;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 17px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1 {
  max-width: 640px;
  margin-bottom: 18px;
  font-size: clamp(50px, 6vw, 82px);
  font-weight: 700;
  line-height: 0.95;
}

h2 {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: clamp(38px, 4.4vw, 58px);
  font-weight: 700;
  line-height: 0.98;
}

h3 {
  margin-bottom: 10px;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.02;
}

.lead,
.section-heading p:last-child,
.catalog-copy p,
.quote-copy p,
.service-card p,
.testimonial-card__quote {
  color: var(--text);
  font-size: 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary {
  color: var(--white);
  background: var(--accent);
}

.button--primary:hover {
  background: var(--accent-dark);
  box-shadow: 0 10px 24px rgba(0, 167, 178, 0.2);
}

.button--secondary {
  color: var(--ink);
  background: transparent;
  border-color: var(--ink);
}

.button--secondary:hover {
  color: var(--accent);
  background: var(--accent-soft);
  border-color: var(--accent);
}

.button--ghost {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.3);
}

.button--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
}

.hero {
  padding: 28px 0 24px;
}

.hero__content {
  display: flex;
  align-items: center;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 42px;
  align-items: center;
  width: 100%;
}

.hero__bullets,
.service-card ul,
.catalog-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.hero__bullets li,
.service-card li,
.catalog-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-soft);
  font-size: 18px;
}

.hero__bullets li::before,
.service-card li::before,
.catalog-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  content: "•";
  font-size: 18px;
  line-height: 1;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.hero__proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 26px;
}

.hero__proof article {
  min-height: 118px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(3, 3, 3, 0.05);
}

.hero__proof strong {
  display: block;
  margin-bottom: 6px;
  color: var(--accent);
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
}

.hero__proof span {
  color: var(--text);
  font-size: 17px;
}

.hero__visual {
  position: relative;
  min-height: 560px;
}

.hero__mosaic {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}

.hero__panel {
  overflow: hidden;
  margin: 0;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero__panel--tall {
  grid-row: 1 / span 2;
}

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

.hero__note {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 4px;
  max-width: 240px;
  padding: 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero__note strong {
  font-size: 25px;
  font-weight: 600;
}

.hero__note span {
  font-size: 16px;
}

.hero__note--dark {
  left: 0;
  bottom: 12px;
  color: var(--white);
  background: var(--black);
}

.hero__note--dark span {
  color: rgba(255, 255, 255, 0.82);
}

.hero__note--light {
  top: 12px;
  right: 0;
  background: var(--white);
  border: 1px solid var(--line);
}

.hero__note--light span {
  color: var(--text);
}

.shape {
  position: absolute;
  z-index: 2;
}

.shape--triangle {
  top: 22px;
  left: -6px;
  width: 48px;
}

.shape--rectangle {
  right: 18px;
  bottom: 2px;
  width: 110px;
}

.client-strip {
  overflow: hidden;
  width: 100%;
  padding: 14px 0;
  background: var(--black);
}

.client-strip__track {
  display: flex;
  width: max-content;
  animation: marquee 33s linear infinite;
}

.client-strip__title {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 24px;
  font-weight: 600;
  text-align: center;
}

.client-strip__viewport {
  width: 100%;
  overflow: hidden;
}

.client-strip__group {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-right: 24px;
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 248px;
  height: 96px;
  padding: 16px 26px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
}

.client-logo img {
  width: auto;
  height: 51px;
  max-width: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.96;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.section {
  padding: 36px 0;
}

.section-heading {
  max-width: 860px;
  margin: 0 auto 28px;
}

.section-heading--compact {
  max-width: 920px;
}

.section-heading--centered {
  text-align: center;
}

.section-heading--light .eyebrow,
.section-heading--light h2 {
  color: var(--white);
}

.section-heading--light .eyebrow {
  opacity: 0.92;
}

.section--services {
  width: 100%;
  background: linear-gradient(180deg, rgba(16, 22, 24, 0.98) 0%, rgba(3, 3, 3, 1) 100%);
}

.section--services h2,
.section--services .section-heading p:last-child {
  color: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 392px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 167, 178, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 10px 22px rgba(3, 3, 3, 0.05);
}

.service-card h3,
.service-card p,
.service-card li {
  color: var(--white);
}

.service-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 18px;
}

.service-card__tag,
.service-card__accent {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
}

.service-card__tag {
  color: var(--ink);
  background: var(--accent);
}

.service-card__accent {
  color: var(--white);
  background: rgba(0, 167, 178, 0.18);
}

.service-card p {
  min-height: 86px;
  margin-bottom: 0;
}

.service-card .button {
  margin-top: auto;
}

.section--catalog {
  width: 100%;
  background: linear-gradient(180deg, #ffffff 0%, #f6fcfd 100%);
}

.catalog-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 28px;
  align-items: stretch;
}

.catalog-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.catalog-copy .button {
  width: fit-content;
  margin-top: 24px;
}

.catalog-preview {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.catalog-preview iframe {
  width: 100%;
  height: min(76vh, 860px);
  border: 0;
}

.section--testimonials {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  overflow: hidden;
  padding: 28px 0 20px;
  background:
    linear-gradient(180deg, rgba(3, 3, 3, 0.72) 0%, rgba(3, 3, 3, 0.78) 100%),
    url("assets/projects/project-brand.jpg") center/cover no-repeat;
}

.testimonial-backdrop {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 18px;
  width: min(calc(100vw - 56px), 1472px);
  margin: 0 auto;
}

.section--testimonials .client-strip {
  width: 100vw;
  margin-top: 26px;
  margin-left: calc(50% - 50vw);
  border-radius: 0;
}

.testimonial-card {
  width: min(560px, 100%);
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.25);
}

.testimonial-list {
  display: flex;
  flex-wrap: nowrap;
  gap: 18px;
  justify-content: center;
  width: min(100%, 1380px);
  overflow: hidden;
  align-items: stretch;
}

.testimonial-list .testimonial-card {
  flex: 0 0 calc((100% - 36px) / 3);
  width: calc((100% - 36px) / 3);
  min-width: 0;
}

.testimonial-card__person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.testimonial-card__person img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
}

.testimonial-card__person strong {
  display: block;
  margin-bottom: 2px;
  font-size: 21px;
  font-weight: 600;
}

.testimonial-card__person span {
  color: var(--text);
  font-size: 15px;
}

.testimonial-card__quote {
  margin-bottom: 12px;
  color: var(--ink-soft);
  line-height: 1.2;
}

.testimonial-card__rating {
  display: flex;
  gap: 4px;
  color: #f2b840;
  font-size: 20px;
}

.section--quote {
  width: 100%;
  background: linear-gradient(180deg, rgba(0, 167, 178, 0.04) 0%, rgba(255, 255, 255, 1) 100%);
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: 30px;
  align-items: center;
}

.quote-visual {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quote-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 3, 3, 0.12) 0%, rgba(3, 3, 3, 0.48) 100%);
  content: "";
}

.quote-visual__badge {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  padding: 22px;
  color: var(--white);
  background: rgba(3, 3, 3, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
}

.quote-visual__badge strong {
  display: block;
  margin-bottom: 6px;
  font-size: 24px;
  font-weight: 600;
}

.quote-visual__badge span {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.86);
}

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

.button--whatsapp {
  min-width: 280px;
  margin-top: 22px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #f7fcfc;
}

.site-footer__inner {
  gap: 18px;
  padding: 22px 0;
}

.site-footer__inner img {
  width: 208px;
}

.site-footer__inner p {
  margin-bottom: 0;
  color: var(--text);
  font-size: 15px;
}

@media (max-width: 1180px) {
  .hero__grid {
    gap: 30px;
  }

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

  .catalog-layout,
  .quote-layout {
    grid-template-columns: 1fr;
  }

  .catalog-preview iframe {
    height: 68vh;
  }
}

@media (max-width: 920px) {
  body {
    padding-bottom: 94px;
  }

  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: var(--header-h);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    max-height: calc(100svh - var(--header-h) - 24px);
    overflow-y: auto;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px 10px;
  }

  .menu-toggle {
    display: block;
  }

  .page-shell {
    scroll-snap-type: none;
  }

  .page-panel {
    min-height: auto;
    scroll-snap-align: none;
    display: block;
  }

  .section,
  .hero {
    padding: 44px 0;
  }

  .section-heading {
    margin-bottom: 22px;
  }

  .hero__grid,
  .hero__proof,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    gap: 26px;
  }

  .hero__visual {
    min-height: 460px;
  }

  .hero__proof {
    gap: 12px;
  }

  .hero__proof article {
    min-height: 0;
  }

  .hero__actions .button,
  .catalog-copy .button,
  .service-card .button {
    width: 100%;
  }

  .service-card {
    min-height: auto;
  }

  .catalog-layout,
  .quote-layout {
    gap: 22px;
  }

  .catalog-preview iframe {
    height: 62vh;
  }

  .section--testimonials {
    padding: 42px 0 0;
  }

  .testimonial-backdrop {
    width: var(--container);
    gap: 14px;
  }

  .testimonial-list {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    padding-bottom: 6px;
    scrollbar-width: none;
  }

  .testimonial-list::-webkit-scrollbar {
    display: none;
  }

  .testimonial-list .testimonial-card {
    flex: 0 0 min(78vw, 420px);
    width: min(78vw, 420px);
    scroll-snap-align: start;
  }

  .section--testimonials .client-strip {
    margin-top: 22px;
  }

  .quote-visual {
    min-height: 440px;
  }

  .quote-copy {
    max-width: 100%;
  }

  .client-logo {
    min-width: 220px;
    height: 84px;
  }

  .client-logo img {
    height: 44px;
  }

  .mobile-cta {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: max(12px, env(safe-area-inset-bottom));
    z-index: 60;
    display: block;
    pointer-events: none;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .mobile-cta.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-cta__button {
    width: 100%;
    min-height: 60px;
    box-shadow: 0 18px 34px rgba(3, 3, 3, 0.18);
    pointer-events: auto;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100vw - 28px, 1280px);
    --header-h: 68px;
  }

  .site-header__inner {
    min-height: var(--header-h);
  }

  .brand img {
    width: 184px;
  }

  .hero {
    padding-top: 18px;
  }

  h1 {
    font-size: 36px;
    line-height: 0.98;
  }

  h2 {
    font-size: 28px;
    line-height: 1.02;
  }

  .lead,
  .section-heading p:last-child,
  .catalog-copy p,
  .quote-copy p,
  .service-card p,
  .testimonial-card__quote,
  .hero__bullets li,
  .service-card li,
  .catalog-list li {
    font-size: 17px;
  }

  .hero__visual {
    min-height: 320px;
  }

  .hero__mosaic {
    position: relative;
    inset: auto;
    height: 100%;
    grid-template-columns: 1fr 0.78fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
  }

  .hero__note {
    max-width: 170px;
    padding: 12px;
  }

  .hero__note strong {
    font-size: 18px;
  }

  .hero__note span {
    font-size: 14px;
  }

  .hero__note--light {
    top: 8px;
    right: 0;
  }

  .hero__note--dark {
    left: 0;
    bottom: 8px;
  }

  .client-logo {
    min-width: 180px;
    height: 72px;
    padding: 12px 18px;
  }

  .client-logo img {
      height: 37px;
    }

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

  .catalog-preview iframe {
    height: 50vh;
  }

  .testimonial-card,
  .quote-visual__badge {
    padding: 18px;
  }

  .testimonial-list {
    gap: 14px;
  }

  .testimonial-list .testimonial-card {
    flex-basis: calc(100vw - 44px);
    width: calc(100vw - 44px);
  }

  .testimonial-card__person img {
    width: 52px;
    height: 52px;
  }

  .testimonial-card__person strong {
    font-size: 19px;
  }

  .testimonial-card__person span {
    font-size: 14px;
  }

  .testimonial-card__rating {
    font-size: 18px;
  }

  .client-strip__title {
    font-size: 20px;
  }

  .quote-layout {
    gap: 18px;
  }

  .quote-visual {
    min-height: 300px;
  }

  .quote-visual__badge {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .quote-visual__badge strong {
    font-size: 20px;
  }

  .quote-visual__badge span {
    font-size: 15px;
  }

  .button--whatsapp {
    width: 100%;
    min-width: 0;
  }

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

  .section--testimonials .client-strip {
    margin-left: calc(50% - 50vw);
  }
}
/* Mobile refinement layer: desktop layout remains untouched above 921px. */
@media (max-width: 920px) {
  html {
    scroll-padding-top: var(--header-h);
  }

  .site-header {
    position: sticky;
  }

  .site-header__inner {
    gap: 14px;
  }

  .site-nav {
    left: 14px;
    right: 14px;
    top: calc(var(--header-h) + 8px);
    padding: 10px;
    border-radius: 14px;
  }

  .site-nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 18px;
  }

  .site-nav a:not(.nav-cta):hover {
    background: var(--bg-soft);
  }

  .nav-cta {
    margin-top: 6px;
    padding: 14px 18px;
  }

  .section,
  .hero {
    width: 100%;
  }

  .hero__copy {
    text-align: left;
  }

  .hero__actions {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .hero__actions .button {
    width: 100%;
    min-width: 0;
    padding-inline: 14px;
  }

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

  .hero__proof article {
    padding: 18px 14px;
  }

  .services-grid {
    gap: 16px;
  }

  .service-card {
    padding: 24px;
  }

  .catalog-layout {
    align-items: stretch;
  }

  .catalog-preview {
    min-height: 58vh;
  }

  .catalog-preview iframe {
    height: 58vh;
  }

  .testimonial-list {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(270px, 82vw);
  }

  .testimonial-list .testimonial-card {
    width: auto;
    min-width: 0;
  }

  .section--testimonials .client-strip {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }

  .quote-layout {
    grid-template-columns: 1fr;
  }

  .quote-copy {
    order: 1;
  }

  .quote-visual {
    order: 2;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 92px;
  }

  :root {
    --container: min(100vw - 32px, 1280px);
    --header-h: 72px;
  }

  .brand img {
    width: min(178px, 56vw);
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
  }

  .hero {
    padding-top: 28px;
    padding-bottom: 34px;
  }

  .section {
    padding: 40px 0;
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.18;
  }

  h1 {
    max-width: 100%;
    margin-bottom: 16px;
    font-size: clamp(38px, 11.2vw, 48px);
    line-height: 0.98;
  }

  h2 {
    max-width: 100%;
    font-size: clamp(30px, 8.8vw, 38px);
    line-height: 1;
  }

  h3 {
    font-size: 25px;
  }

  .lead,
  .section-heading p:last-child,
  .catalog-copy p,
  .quote-copy p,
  .service-card p,
  .testimonial-card__quote,
  .hero__bullets li,
  .service-card li,
  .catalog-list li {
    font-size: 16px;
    line-height: 1.38;
  }

  .hero__bullets {
    gap: 9px;
    margin-bottom: 22px;
  }

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

  .button {
    min-height: 54px;
    justify-content: center;
    border-radius: 999px;
    font-size: 16px;
  }

  .hero__proof {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
  }

  .hero__proof article {
    min-height: 108px;
    padding: 14px 10px;
  }

  .hero__proof strong {
    font-size: 30px;
  }

  .hero__proof span {
    font-size: 14px;
    line-height: 1.24;
  }

  .hero__visual {
    min-height: 390px;
  }

  .hero__mosaic {
    grid-template-columns: 1fr 0.9fr;
    grid-template-rows: 1fr 1fr;
  }

  .hero__panel--tall {
    grid-row: 1 / 3;
  }

  .shape--rectangle {
    display: none;
  }

  .shape--triangle {
    width: 54px;
    top: 18px;
    left: -6px;
  }

  .hero__note--light {
    max-width: 156px;
    right: -4px;
  }

  .hero__note--dark {
    max-width: 168px;
    left: 8px;
    bottom: 10px;
  }

  .hero__note strong {
    font-size: 17px;
  }

  .hero__note span {
    font-size: 13px;
  }

  .section-heading {
    margin-bottom: 18px;
  }

  .section-heading--centered {
    text-align: center;
  }

  .service-card {
    padding: 22px;
    border-radius: 12px;
  }

  .service-card__top {
    gap: 8px;
  }

  .service-card__tag,
  .service-card__accent {
    font-size: 14px;
  }

  .catalog-layout {
    gap: 20px;
  }

  .catalog-copy .button {
    width: 100%;
  }

  .catalog-preview,
  .catalog-preview iframe {
    height: 56vh;
    min-height: 360px;
  }

  .section--testimonials {
    min-height: auto;
    padding-top: 42px;
  }

  .testimonial-backdrop {
    gap: 18px;
  }

  .testimonial-list {
    grid-auto-columns: minmax(280px, calc(100vw - 42px));
    gap: 12px;
    padding-inline: 2px;
  }

  .testimonial-card {
    min-height: 0;
    padding: 18px;
  }

  .testimonial-card__person {
    gap: 12px;
  }

  .testimonial-card__quote {
    margin-bottom: 14px;
  }

  .client-strip {
    padding: 18px 0 20px;
    border-radius: 0;
  }

  .client-strip__viewport {
    width: 100vw;
  }

  .client-strip__group {
    gap: 14px;
    padding-inline: 14px;
  }

  .client-logo {
    min-width: 188px;
    height: 76px;
  }

  .client-logo img {
    height: 42px;
  }

  .quote-copy {
    text-align: left;
  }

  .quote-visual {
    min-height: 360px;
  }

  .site-footer__inner {
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 24px 0 104px;
  }

  .site-footer__inner img {
    width: min(210px, 62vw);
  }

  .site-footer__inner p {
    max-width: 320px;
    font-size: 14px;
    line-height: 1.35;
  }

  .mobile-cta {
    left: 12px;
    right: 12px;
  }

  .mobile-cta__button {
    min-height: 58px;
  }
}

@media (max-width: 380px) {
  :root {
    --container: min(100vw - 24px, 1280px);
  }

  h1 {
    font-size: 35px;
  }

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

  .hero__proof article {
    min-height: 0;
  }

  .hero__visual {
    min-height: 340px;
  }
}
