@font-face {
  font-family: "Tilda Sans";
  font-style: normal;
  font-weight: 250 900;
  font-display: swap;
  src: url("/fonts/tilda-sans/TildaSans-VF.woff2") format("woff2");
}

:root {
  color-scheme: light;
  --blue-70: #0043ce;
  --blue-60: #0f62fe;
  --blue-20: #d0e2ff;
  --blue-10: #edf5ff;
  --ink: #161616;
  --ink-soft: #393939;
  --muted: #6f6f6f;
  --muted-light: #8d8d8d;
  --line-strong: #c6c6c6;
  --line: #e0e0e0;
  --surface: #f4f4f4;
  --surface-soft: #fafafa;
  --paper: #ffffff;
  --container: 1120px;
  --radius: 8px;
  --header-height: 60px;
  --shadow-small: 0 4px 16px rgba(22, 22, 22, .06);
  --shadow-medium: 0 14px 38px rgba(22, 22, 22, .10);
  --ease: 180ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Tilda Sans", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "kern", "liga", "calt";
  text-rendering: optimizeLegibility;
}

button,
input {
  font-family: inherit;
}

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

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

::selection {
  color: var(--paper);
  background: var(--blue-60);
}

:focus-visible {
  outline: 3px solid rgba(15, 98, 254, .32);
  outline-offset: 3px;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 9px 13px;
  color: var(--paper);
  background: var(--ink);
  text-decoration: none;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(16px);
}

.header__inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 650;
  letter-spacing: -.015em;
  text-decoration: none;
}

.brand__mark {
  display: grid;
  width: 42px;
  height: 32px;
  place-items: center;
  color: var(--paper);
  background: var(--ink);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .02em;
}

.nav {
  display: flex;
  align-items: stretch;
  align-self: stretch;
  gap: 2px;
  margin-left: auto;
}

.nav a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
}

.nav a::after {
  position: absolute;
  right: 12px;
  bottom: -1px;
  left: 12px;
  height: 2px;
  background: var(--blue-60);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}

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

.nav a:hover::after {
  transform: scaleX(1);
}

.header__actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
}

.language-switcher {
  display: inline-flex;
  padding: 2px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--surface);
}

.language-switcher a {
  display: grid;
  min-width: 36px;
  min-height: 28px;
  place-items: center;
  border-radius: 3px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
  text-decoration: none;
}

.language-switcher a:hover {
  color: var(--ink);
}

.language-switcher a.is-active {
  color: var(--paper);
  background: var(--ink);
}

.button {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 17px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.2;
  text-decoration: none;
  transition: color var(--ease), background var(--ease), border-color var(--ease), transform var(--ease);
}

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

.button--small {
  min-height: 34px;
  padding-inline: 14px;
  font-size: 12px;
}

.button--primary {
  color: var(--paper);
  background: var(--blue-60);
}

.button--primary:hover {
  background: var(--blue-70);
}

.button--secondary {
  border-color: var(--line-strong);
  background: var(--paper);
}

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

.hero {
  position: relative;
  overflow: hidden;
  padding: 44px 0 48px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, transparent calc(50% - .5px), rgba(224, 224, 224, .4) 50%, transparent calc(50% + .5px)),
    var(--paper);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(340px, 5fr);
  align-items: center;
  gap: 32px;
}

.hero__content {
  max-width: 630px;
  padding-right: 20px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 13px;
  color: var(--blue-70);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .085em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 18px;
  height: 2px;
  background: var(--blue-60);
  content: "";
}

h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(34px, 4vw, 44px);
  font-weight: 620;
  letter-spacing: -.025em;
  line-height: 1.06;
}

.hero__lead {
  max-width: 570px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

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

.hero__media {
  position: relative;
  height: clamp(350px, 36vw, 420px);
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-small);
}

.hero__media::before {
  position: absolute;
  z-index: 1;
  top: 12px;
  right: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #24a148;
  box-shadow: 0 0 0 4px rgba(36, 161, 72, .14);
  content: "";
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.hero__media figcaption {
  position: absolute;
  z-index: 2;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 6px;
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--shadow-small);
  backdrop-filter: blur(12px);
}

.hero__media figcaption strong {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -.015em;
}

.hero__media figcaption span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
  text-align: right;
}

.section {
  padding: 56px 0;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.section-heading > div {
  max-width: 720px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(25px, 3vw, 31px);
  font-weight: 620;
  letter-spacing: -.02em;
  line-height: 1.14;
}

.section-heading p {
  max-width: 670px;
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.section--devices {
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.device-heading {
  margin-bottom: 20px;
}

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

.device-card,
.device-card--tower,
.device-card--laptop,
.device-card--monitor,
.device-card--allinone,
.device-card--tv {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 126px;
  grid-column: span 2;
  grid-row: auto;
  grid-template-columns: minmax(0, 1fr) 112px;
  grid-template-rows: 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  text-decoration: none;
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}

.device-card:nth-child(4),
.device-card:nth-child(5) {
  grid-column: span 3;
}

.device-card:hover {
  z-index: 1;
  border-color: var(--line-strong);
  box-shadow: var(--shadow-medium);
  transform: translateY(-3px);
}

.device-card__top {
  position: relative;
  z-index: 2;
  display: grid;
  min-width: 0;
  grid-template-columns: 36px minmax(0, 1fr);
  align-content: center;
  align-items: start;
  gap: 11px;
  padding: 16px;
  border: 0;
  background: var(--paper);
}

.device-card__icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--blue-20);
  border-radius: 9px;
  color: var(--blue-60);
  background: var(--blue-10);
}

.device-card__icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.device-card__copy {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.device-card h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 650;
  letter-spacing: -.01em;
  line-height: 1.2;
}

.device-card__copy small {
  display: -webkit-box;
  overflow: hidden;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.device-card img,
.device-card--tower img {
  width: 100%;
  height: 100%;
  min-height: 126px;
  grid-column: 2;
  grid-row: 1;
  border: 0;
  object-fit: cover;
  object-position: center;
  transform: none;
  transition: transform 260ms ease;
}

.device-card:hover img,
.device-card--tower:hover img {
  transform: scale(1.035);
}

.device-card__arrow {
  position: absolute;
  z-index: 3;
  right: 9px;
  bottom: 9px;
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border: 0;
  border-radius: 9px;
  color: var(--blue-60);
  background: rgba(255, 255, 255, .94);
  font-size: 15px;
  line-height: 1;
  box-shadow: 0 4px 12px rgba(28, 39, 55, .10);
  transition: color var(--ease), background var(--ease), border-color var(--ease);
}

.device-card:hover .device-card__arrow {
  color: var(--paper);
  border-color: var(--blue-60);
  background: var(--blue-60);
}

.services {
  background: var(--paper);
}

.section-heading--services {
  margin-bottom: 20px;
}

.text-button {
  flex: 0 0 auto;
  padding: 7px 0;
  border: 0;
  color: var(--blue-70);
  background: transparent;
  font-size: 12px;
  font-weight: 650;
  cursor: pointer;
}

.text-button:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.service-tools {
  position: sticky;
  z-index: 20;
  top: var(--header-height);
  display: grid;
  grid-template-columns: minmax(260px, 380px) 1fr;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(12px);
}

.search-field {
  display: flex;
  height: 38px;
  align-items: center;
  gap: 9px;
  padding: 0 11px;
  border: 1px solid var(--line-strong);
  border-radius: 5px;
  background: var(--surface-soft);
}

.search-field:focus-within {
  border-color: var(--blue-60);
  box-shadow: 0 0 0 2px rgba(15, 98, 254, .11);
}

.search-field svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  color: var(--muted);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.search-field input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-size: 13px;
}

.search-field input::placeholder {
  color: var(--muted-light);
}

.filter-row {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.filter {
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--muted);
  background: var(--paper);
  font-size: 11px;
  font-weight: 550;
  white-space: nowrap;
  cursor: pointer;
}

.filter:hover {
  color: var(--ink);
  border-color: var(--line-strong);
}

.filter.is-active {
  color: var(--paper);
  border-color: var(--ink);
  background: var(--ink);
}

.service-groups {
  margin-top: 28px;
}

.service-group {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  column-gap: 28px;
  padding: 0 0 46px;
}

.service-group:last-child {
  padding-bottom: 0;
}

.service-group__title {
  position: sticky;
  top: 126px;
  display: grid;
  align-self: start;
  grid-template-columns: 28px 1fr;
  align-items: baseline;
  gap: 8px;
  padding-top: 14px;
}

.service-group__title span {
  color: var(--blue-60);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .06em;
}

.service-group__title h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 650;
  letter-spacing: -.022em;
  line-height: 1.28;
}

.accordion {
  grid-column: 2;
  border-top: 1px solid var(--line);
}

.accordion:last-child {
  border-bottom: 1px solid var(--line);
}

.accordion[hidden] {
  display: none;
}

.accordion summary {
  display: grid;
  min-height: 68px;
  grid-template-columns: 32px minmax(0, 1fr) 24px;
  align-items: center;
  gap: 10px;
  padding: 10px 4px;
  cursor: pointer;
  list-style: none;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary:hover .accordion__heading strong {
  color: var(--blue-70);
}

.accordion__number {
  color: var(--muted-light);
  font-size: 10px;
  font-weight: 650;
}

.accordion__heading {
  display: grid;
  gap: 2px;
}

.accordion__heading strong {
  font-size: 14px;
  font-weight: 650;
  line-height: 1.32;
  transition: color var(--ease);
}

.accordion__heading small {
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
  text-overflow: ellipsis;
}

.accordion__icon {
  position: relative;
  width: 18px;
  height: 18px;
  justify-self: end;
}

.accordion__icon::before,
.accordion__icon::after {
  position: absolute;
  top: 8px;
  left: 2px;
  width: 14px;
  height: 1.5px;
  background: var(--ink);
  content: "";
  transition: transform var(--ease);
}

.accordion__icon::after {
  transform: rotate(90deg);
}

.accordion[open] .accordion__icon::after {
  transform: rotate(0);
}

.accordion[open] summary {
  border-bottom: 1px solid var(--line);
}

.accordion__content {
  padding: 18px 42px 20px;
  background: var(--surface-soft);
}

.accordion__content p,
.accordion__content ul {
  max-width: 720px;
}

.accordion__content p {
  margin: 0 0 11px;
  color: var(--ink-soft);
  font-size: 13px;
}

.accordion__content ul {
  margin: 0 0 13px;
  padding-left: 18px;
  color: var(--ink-soft);
  font-size: 13px;
}

.accordion__content li {
  margin: 5px 0;
}

.accordion__content .note {
  padding: 10px 12px;
  border-left: 2px solid var(--blue-60);
  background: var(--blue-10);
  font-size: 12px;
}

.inline-action {
  display: inline-flex;
  margin-top: 3px;
  color: var(--blue-70);
  font-size: 12px;
  font-weight: 650;
  text-underline-offset: 4px;
}

.empty-state {
  margin-top: 24px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.empty-state p {
  margin-bottom: 0;
  color: var(--muted);
}

.contact {
  padding: 52px 0;
  color: var(--paper);
  background: var(--ink);
}

.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
  align-items: center;
  gap: 44px;
}

.contact .eyebrow {
  color: #78a9ff;
}

.contact .eyebrow::before {
  background: #78a9ff;
}

.contact h2 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 620;
  letter-spacing: -.025em;
  line-height: 1.08;
}

.contact__content > p:not(.eyebrow) {
  max-width: 590px;
  margin: 14px 0 0;
  color: var(--line-strong);
  font-size: 14px;
}

.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 26px;
}

.contact .button--secondary {
  color: var(--paper);
  border-color: var(--muted);
  background: transparent;
}

.contact .button--secondary:hover {
  border-color: var(--paper);
}

.contact__details {
  display: grid;
  gap: 0;
  max-width: 640px;
  margin: 0;
  border-top: 1px solid var(--ink-soft);
}

.contact__details div {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--ink-soft);
}

.contact__details dt {
  color: var(--muted-light);
  font-size: 11px;
}

.contact__details dd {
  margin: 0;
  font-size: 12px;
}

.contact__media {
  height: 330px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--ink-soft);
  border-radius: var(--radius);
  background: var(--ink-soft);
}

.contact__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 36%;
  filter: saturate(.85) contrast(1.02);
}

.footer {
  color: var(--muted-light);
  border-top: 1px solid var(--ink-soft);
  background: var(--ink);
}

.footer__inner {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 11px;
}

.mobile-actions {
  display: none;
}

.toast {
  position: fixed;
  z-index: 300;
  bottom: 20px;
  left: 50%;
  max-width: min(420px, calc(100% - 32px));
  padding: 10px 14px;
  color: var(--paper);
  border-radius: 5px;
  background: var(--ink);
  box-shadow: var(--shadow-medium);
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 18px);
  transition: opacity var(--ease), transform var(--ease);
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 980px) {
  :root {
    --container: 860px;
  }

  .nav {
    display: none;
  }

  .header__actions {
    margin-left: auto;
  }

  .hero {
    background: var(--paper);
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(300px, .78fr);
    gap: 24px;
  }

  .hero__content {
    padding-right: 0;
  }

  h1 {
    font-size: clamp(32px, 5vw, 40px);
  }

  .hero__media {
    height: 360px;
  }

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

  .device-card,
  .device-card--tower,
  .device-card--laptop,
  .device-card--monitor,
  .device-card--allinone,
  .device-card--tv,
  .device-card:nth-child(4),
  .device-card:nth-child(5) {
    grid-column: span 1;
  }

  .device-card:last-child {
    grid-column: 1 / -1;
  }

  .service-tools {
    grid-template-columns: minmax(250px, .85fr) 1.15fr;
  }

  .service-group {
    grid-template-columns: 160px minmax(0, 1fr);
    column-gap: 22px;
  }

  .contact__grid {
    grid-template-columns: 1fr 300px;
    gap: 32px;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 56px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .header__inner {
    min-height: 56px;
  }

  .header__actions .button {
    display: none;
  }

  .brand > span:last-child {
    display: none;
  }

  .brand__mark {
    width: 40px;
  }

  .hero {
    padding: 34px 0 40px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .hero__content {
    max-width: 100%;
  }

  h1 {
    font-size: clamp(31px, 10vw, 38px);
  }

  .hero__lead {
    margin-top: 14px;
    font-size: 15px;
  }

  .hero__actions {
    margin-top: 20px;
  }

  .hero__actions .button {
    flex: 1 1 calc(50% - 4px);
  }

  .hero__media {
    height: min(104vw, 410px);
  }

  .section {
    padding: 42px 0;
  }

  .section-heading {
    align-items: flex-start;
    margin-bottom: 18px;
  }

  .section-heading h2 {
    font-size: 26px;
  }

  .device-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .device-card,
  .device-card--tower,
  .device-card--laptop,
  .device-card--monitor,
  .device-card--allinone,
  .device-card--tv {
    min-height: 202px;
    grid-template-rows: 62px 1fr;
  }

  .device-card:last-child {
    grid-column: 1 / -1;
  }

  .device-card__top {
    grid-template-columns: 28px 1fr;
    gap: 8px;
    padding: 10px;
  }

  .device-card__icon {
    width: 28px;
    height: 28px;
  }

  .device-card__icon svg {
    width: 15px;
    height: 15px;
  }

  .device-card h3 {
    font-size: 12px;
  }

  .device-card img,
  .device-card--tower img {
    height: 140px;
  }

  .section-heading--services {
    display: grid;
    gap: 8px;
  }

  .service-tools {
    top: 56px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
    margin-inline: -14px;
    padding: 10px 14px;
  }

  .filter-row {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .filter-row::-webkit-scrollbar {
    display: none;
  }

  .filter {
    flex: 0 0 auto;
  }

  .service-groups {
    margin-top: 22px;
  }

  .service-group {
    display: block;
    padding-bottom: 36px;
  }

  .service-group__title {
    position: static;
    grid-template-columns: 24px 1fr;
    margin-bottom: 8px;
    padding: 0 0 10px;
    border-bottom: 1px solid var(--line-strong);
  }

  .service-group__title h3 {
    font-size: 16px;
  }

  .accordion {
    grid-column: auto;
  }

  .accordion summary {
    min-height: 64px;
    grid-template-columns: 26px minmax(0, 1fr) 20px;
    gap: 8px;
  }

  .accordion__heading strong {
    font-size: 13px;
  }

  .accordion__heading small {
    font-size: 11px;
  }

  .accordion__content {
    padding: 15px 14px 17px;
  }

  .contact {
    padding: 42px 0;
  }

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .contact h2 {
    font-size: 30px;
  }

  .contact__media {
    height: 250px;
  }

  .footer__inner {
    min-height: 72px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
  }

  .mobile-actions {
    position: fixed;
    z-index: 200;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    height: 56px;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--line);
    background: var(--paper);
  }

  .mobile-actions a {
    display: grid;
    place-items: center;
    font-size: 12px;
    font-weight: 650;
    text-decoration: none;
  }

  .mobile-actions a:last-child {
    color: var(--paper);
    background: var(--blue-60);
  }

  .toast {
    bottom: 70px;
    width: calc(100% - 28px);
    text-align: center;
  }
}

@media (max-width: 420px) {
  .hero__actions .button {
    flex-basis: 100%;
  }

  .hero__media figcaption {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .hero__media figcaption span {
    text-align: left;
  }

  .contact__details div {
    grid-template-columns: 74px minmax(0, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* Mobile application layout */
@media (max-width: 720px) {
  :root {
    --mobile-page: #f1f3f7;
    --mobile-card: #ffffff;
    --mobile-radius: 20px;
    --mobile-shadow: 0 8px 28px rgba(28, 39, 55, .08);
    --header-height: 62px;
  }

  html {
    scroll-padding-top: calc(var(--header-height) + env(safe-area-inset-top) + 12px);
  }

  body {
    min-width: 320px;
    padding-bottom: calc(72px + env(safe-area-inset-bottom));
    background: var(--mobile-page);
    font-size: 16px;
    line-height: 1.5;
  }

  main {
    overflow: clip;
  }

  .container {
    width: calc(100% - 24px);
  }

  .header {
    padding-top: env(safe-area-inset-top);
    border-bottom: 0;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 1px 0 rgba(22, 22, 22, .06);
    backdrop-filter: blur(20px);
  }

  .header__inner {
    min-height: var(--header-height);
    gap: 12px;
  }

  .brand {
    min-width: 0;
    gap: 9px;
    font-size: 14px;
  }

  .brand__mark {
    width: 36px;
    height: 36px;
    flex: 0 0 auto;
    border-radius: 11px;
    background: var(--blue-60);
    box-shadow: 0 6px 16px rgba(15, 98, 254, .22);
    font-size: 9px;
    letter-spacing: 0;
  }

  .brand > span:last-child {
    display: block;
    overflow: hidden;
    max-width: min(46vw, 190px);
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .header__actions {
    gap: 0;
    margin-left: auto;
  }

  .header__actions .button {
    display: none;
  }

  .language-switcher {
    padding: 3px;
    border: 0;
    border-radius: 12px;
    background: var(--mobile-page);
  }

  .language-switcher a {
    min-width: 39px;
    min-height: 32px;
    border-radius: 9px;
    font-size: 10px;
  }

  .language-switcher a.is-active {
    background: var(--paper);
    color: var(--ink);
    box-shadow: 0 2px 8px rgba(28, 39, 55, .10);
  }

  .hero {
    padding: 12px 0 22px;
    border-bottom: 0;
    background: var(--mobile-page);
  }

  .hero__grid {
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .hero__content {
    order: 1;
    max-width: none;
    padding: 21px 18px 18px;
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: var(--mobile-radius);
    background: var(--mobile-card);
    box-shadow: var(--mobile-shadow);
  }

  .eyebrow {
    gap: 7px;
    margin-bottom: 10px;
    font-size: 10px;
    letter-spacing: .075em;
  }

  .eyebrow::before {
    width: 14px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(29px, 8.8vw, 36px);
    font-weight: 620;
    letter-spacing: -.018em;
    line-height: 1.08;
  }

  .hero__lead {
    margin-top: 13px;
    color: #5b6270;
    font-size: 16px;
    line-height: 1.48;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 18px;
  }

  .hero__actions .button {
    width: 100%;
    min-height: 48px;
    padding-inline: 12px;
    border-radius: 13px;
    font-size: 13px;
  }

  .hero__media {
    order: 2;
    width: 100%;
    height: 250px;
    min-height: 0;
    border: 0;
    border-radius: var(--mobile-radius);
    background: #dfe5ee;
    box-shadow: var(--mobile-shadow);
  }

  .hero__media::before {
    top: 15px;
    right: 15px;
    width: 9px;
    height: 9px;
    box-shadow: 0 0 0 5px rgba(36, 161, 72, .16);
  }

  .hero__media img {
    min-height: 0;
    object-position: center;
  }

  .hero__media figcaption {
    right: 10px;
    bottom: 10px;
    left: 10px;
    grid-template-columns: 1fr;
    gap: 2px;
    padding: 11px 13px;
    border: 0;
    border-radius: 13px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 6px 20px rgba(28, 39, 55, .12);
  }

  .hero__media figcaption strong {
    font-size: 14px;
  }

  .hero__media figcaption span {
    font-size: 12px;
    text-align: left;
  }

  .section {
    padding: 30px 0;
  }

  .section-heading {
    display: block;
    margin-bottom: 16px;
  }

  .section-heading h2 {
    font-size: 27px;
    font-weight: 620;
    letter-spacing: -.018em;
    line-height: 1.12;
  }

  .section-heading p {
    margin-top: 8px;
    color: #626a78;
    font-size: 15px;
    line-height: 1.45;
  }

  .section--devices {
    padding: 30px 0 34px;
    border-bottom: 0;
    background: #e9edf4;
  }

  .section--devices .container {
    width: calc(100% - 24px);
  }

  .device-heading {
    margin: 0;
    padding: 0 0 16px;
  }

  .device-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
    overflow: visible;
    padding: 0;
  }

  .device-card,
  .device-card--tower,
  .device-card--laptop,
  .device-card--monitor,
  .device-card--allinone,
  .device-card--tv,
  .device-card:last-child {
    min-width: 0;
    min-height: 104px;
    flex: none;
    grid-column: 1 / -1;
    grid-row: auto;
    grid-template-columns: minmax(0, 1fr) 104px;
    grid-template-rows: 1fr;
    border: 0;
    border-radius: 17px;
    box-shadow: 0 5px 18px rgba(28, 39, 55, .07);
  }

  .device-card__top {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 11px;
    padding: 13px;
    border-bottom: 0;
  }

  .device-card__icon {
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 11px;
  }

  .device-card__icon svg {
    width: 19px;
    height: 19px;
  }

  .device-card h3 {
    font-size: 16px;
    line-height: 1.22;
  }

  .device-card__copy {
    gap: 3px;
  }

  .device-card__copy small {
    font-size: 12px;
    line-height: 1.3;
  }

  .device-card img,
  .device-card--tower img {
    height: 100%;
    min-height: 104px;
    grid-column: 2;
    grid-row: 1;
    object-position: center;
  }

  .device-card__arrow {
    right: 9px;
    bottom: 9px;
    width: 30px;
    height: 30px;
    border: 0;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(28, 39, 55, .10);
  }

  .services {
    padding: 32px 0 26px;
    background: var(--mobile-page);
  }

  .section-heading--services {
    display: grid;
    gap: 10px;
    margin-bottom: 17px;
  }

  .text-button {
    justify-self: start;
    min-height: 36px;
    padding: 0 13px;
    border-radius: 11px;
    background: var(--blue-10);
    font-size: 12px;
    text-decoration: none;
  }

  .text-button:hover {
    text-decoration: none;
  }

  .service-tools {
    top: calc(var(--header-height) + env(safe-area-inset-top));
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
    margin: 0 -12px;
    padding: 10px 12px 11px;
    border: 0;
    background: rgba(241, 243, 247, .94);
    box-shadow: 0 1px 0 rgba(28, 39, 55, .06);
    backdrop-filter: blur(18px);
  }

  .search-field {
    height: 48px;
    gap: 10px;
    padding: 0 14px;
    border: 0;
    border-radius: 15px;
    background: var(--mobile-card);
    box-shadow: 0 4px 16px rgba(28, 39, 55, .06);
  }

  .search-field:focus-within {
    box-shadow: 0 0 0 2px rgba(15, 98, 254, .20), 0 5px 18px rgba(28, 39, 55, .08);
  }

  .search-field svg {
    width: 19px;
    height: 19px;
  }

  .search-field input {
    font-size: 15px;
  }

  .filter-row {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 7px;
    overflow-x: auto;
    padding: 1px 0 3px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .filter-row::-webkit-scrollbar {
    display: none;
  }

  .filter {
    min-height: 36px;
    flex: 0 0 auto;
    padding: 0 14px;
    border: 0;
    border-radius: 18px;
    color: #5b6270;
    background: #e5e9f0;
    font-size: 12px;
    font-weight: 560;
  }

  .filter.is-active {
    color: var(--paper);
    background: var(--blue-60);
    box-shadow: 0 5px 14px rgba(15, 98, 254, .22);
  }

  .service-groups {
    margin-top: 22px;
  }

  .service-group {
    display: block;
    padding: 0 0 28px;
  }

  .service-group__title {
    position: static;
    display: grid;
    grid-template-columns: 27px minmax(0, 1fr);
    margin: 0 3px 10px;
    padding: 0;
    border: 0;
  }

  .service-group__title span {
    font-size: 11px;
  }

  .service-group__title h3 {
    font-size: 18px;
    font-weight: 650;
    line-height: 1.25;
  }

  .accordion {
    grid-column: auto;
    margin-bottom: 8px;
    overflow: hidden;
    border: 0;
    border-radius: 16px;
    background: var(--mobile-card);
    box-shadow: 0 4px 17px rgba(28, 39, 55, .055);
  }

  .accordion:last-child {
    border: 0;
  }

  .accordion[open] {
    box-shadow: 0 8px 24px rgba(28, 39, 55, .09);
  }

  .accordion summary {
    min-height: 76px;
    grid-template-columns: 27px minmax(0, 1fr) 24px;
    gap: 9px;
    padding: 12px 14px;
  }

  .accordion__number {
    align-self: start;
    padding-top: 3px;
    font-size: 11px;
  }

  .accordion__heading {
    gap: 3px;
  }

  .accordion__heading strong {
    font-size: 16px;
    font-weight: 620;
    line-height: 1.28;
  }

  .accordion__heading small {
    display: -webkit-box;
    overflow: hidden;
    font-size: 13px;
    line-height: 1.35;
    text-overflow: initial;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .accordion[open] summary {
    border-bottom: 1px solid #edf0f4;
  }

  .accordion__content {
    padding: 15px 16px 18px;
    background: var(--mobile-card);
  }

  .accordion__content p,
  .accordion__content ul {
    max-width: none;
    font-size: 15px;
    line-height: 1.5;
  }

  .accordion__content p {
    margin-bottom: 12px;
  }

  .accordion__content li {
    margin: 7px 0;
  }

  .accordion__content .note {
    padding: 12px 13px;
    border: 0;
    border-radius: 11px;
    font-size: 14px;
  }

  .inline-action {
    min-height: 42px;
    align-items: center;
    margin-top: 4px;
    padding: 0 14px;
    border-radius: 12px;
    color: var(--paper);
    background: var(--blue-60);
    font-size: 13px;
    text-decoration: none;
  }

  .empty-state {
    padding: 18px;
    border: 0;
    border-radius: 16px;
    background: var(--mobile-card);
    box-shadow: var(--mobile-shadow);
  }

  .contact {
    width: calc(100% - 24px);
    margin: 4px 12px 20px;
    padding: 0;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 14px 34px rgba(18, 24, 33, .16);
  }

  .contact .container {
    width: 100%;
  }

  .contact__grid {
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .contact__content {
    order: 1;
    padding: 24px 20px 22px;
  }

  .contact h2 {
    font-size: 31px;
    line-height: 1.08;
  }

  .contact__content > p:not(.eyebrow) {
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.48;
  }

  .contact__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 20px 0 23px;
  }

  .contact__actions .button {
    min-height: 48px;
    padding-inline: 10px;
    border-radius: 13px;
  }

  .contact__details {
    max-width: none;
  }

  .contact__details div {
    grid-template-columns: 78px minmax(0, 1fr);
    padding: 11px 0;
  }

  .contact__details dt {
    font-size: 12px;
  }

  .contact__details dd {
    font-size: 14px;
  }

  .contact__media {
    order: 2;
    height: 220px;
    border: 0;
    border-radius: 0;
  }

  .footer {
    border: 0;
    color: #737b89;
    background: var(--mobile-page);
  }

  .footer__inner {
    min-height: 88px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    padding: 18px 0 24px;
    font-size: 12px;
  }

  .mobile-actions {
    position: fixed;
    z-index: 200;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    height: calc(68px + env(safe-area-inset-bottom));
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(28, 39, 55, .08);
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 -8px 26px rgba(28, 39, 55, .08);
    backdrop-filter: blur(20px);
  }

  .mobile-actions a {
    display: grid;
    min-height: 50px;
    place-items: center;
    border-radius: 14px;
    color: var(--ink);
    background: var(--mobile-page);
    font-size: 14px;
    font-weight: 650;
    text-decoration: none;
  }

  .mobile-actions a:last-child {
    color: var(--paper);
    background: var(--blue-60);
    box-shadow: 0 7px 18px rgba(15, 98, 254, .24);
  }

  .toast {
    bottom: calc(82px + env(safe-area-inset-bottom));
    width: calc(100% - 24px);
    padding: 12px 15px;
    border-radius: 14px;
    font-size: 14px;
    text-align: center;
  }
}

@media (max-width: 420px) {
  .hero__content {
    padding-inline: 16px;
  }

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

  .hero__media {
    height: 232px;
  }

  .device-card,
  .device-card--tower,
  .device-card--laptop,
  .device-card--monitor,
  .device-card--allinone,
  .device-card--tv,
  .device-card:last-child {
    flex-basis: auto;
  }

  .accordion summary {
    padding-inline: 12px;
  }

  .contact__details div {
    grid-template-columns: 1fr;
    gap: 3px;
  }
}

/* Device showcase, price list and logistics — 2026 redesign */
[hidden] {
  display: none !important;
}

.device-showcase {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.device-tile {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}

.device-tile:hover {
  border-color: #b8c7dc;
  box-shadow: var(--shadow-small);
  transform: translateY(-2px);
}

.device-tile__media {
  display: grid;
  aspect-ratio: 4 / 3;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #f4f2ef;
}

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

.device-tile__copy {
  display: grid;
  min-height: 128px;
  grid-template-rows: auto auto 1fr;
  align-content: start;
  padding: 14px;
}

.device-tile__index {
  margin-bottom: 12px;
  color: var(--blue-60);
  font-size: 10px;
  font-weight: 720;
  letter-spacing: .08em;
}

.device-tile h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 680;
  letter-spacing: -.012em;
  line-height: 1.2;
}

.device-tile p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.42;
}

.price-list {
  border-top: 1px solid var(--line);
  background: var(--surface-soft);
}

.price-list__heading {
  max-width: 760px;
}

.price-list__heading .eyebrow,
.logistics__heading .eyebrow {
  margin-bottom: 10px;
  color: var(--blue-60);
}

.price-tools {
  position: sticky;
  z-index: 20;
  top: var(--header-height);
  display: grid;
  grid-template-columns: minmax(260px, .78fr) minmax(0, 1.5fr);
  gap: 14px;
  margin-top: 26px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 8px 24px rgba(22, 22, 22, .06);
  backdrop-filter: blur(16px);
}

.price-search {
  display: flex;
  height: 44px;
  align-items: center;
  gap: 10px;
  padding: 0 13px;
  border: 1px solid var(--line-strong);
  border-radius: 9px;
  background: var(--paper);
}

.price-search:focus-within {
  border-color: var(--blue-60);
  box-shadow: 0 0 0 3px rgba(15, 98, 254, .12);
}

.price-search svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--muted);
  stroke-linecap: round;
  stroke-width: 1.8;
}

.price-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-size: 14px;
}

.price-search input::placeholder {
  color: var(--muted-light);
}

.price-filters {
  display: flex;
  align-items: center;
  gap: 7px;
  overflow-x: auto;
  scrollbar-width: none;
}

.price-filters::-webkit-scrollbar {
  display: none;
}

.price-filter {
  min-height: 36px;
  flex: 0 0 auto;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--muted);
  background: var(--surface-soft);
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  transition: color var(--ease), border-color var(--ease), background var(--ease);
}

.price-filter:hover {
  border-color: #a8b7cc;
  color: var(--ink);
}

.price-filter.is-active {
  border-color: var(--ink);
  color: var(--paper);
  background: var(--ink);
}

.price-note {
  display: grid;
  max-width: 820px;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.price-note svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: var(--blue-60);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.price-catalog {
  margin-top: 36px;
}

.price-category {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 34px;
  padding: 34px 0 42px;
  border-top: 1px solid var(--line-strong);
}

.price-category:first-child {
  border-top: 0;
  padding-top: 0;
}

.price-category__heading {
  position: sticky;
  top: calc(var(--header-height) + 84px);
  display: grid;
  height: max-content;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 9px;
}

.price-category__index {
  padding-top: 3px;
  color: var(--blue-60);
  font-size: 11px;
  font-weight: 720;
  letter-spacing: .08em;
}

.price-category__heading h3 {
  margin: 0;
  font-size: 21px;
  font-weight: 680;
  letter-spacing: -.015em;
  line-height: 1.18;
}

.price-category__heading p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.price-category__services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.price-card {
  display: grid;
  min-width: 0;
  min-height: 180px;
  grid-template-columns: 126px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  transition: border-color var(--ease), box-shadow var(--ease);
}

.price-card:hover {
  border-color: #b8c7dc;
  box-shadow: var(--shadow-small);
}

.price-card__media {
  min-height: 100%;
  overflow: hidden;
  border-right: 1px solid var(--line);
  background: #f4f2ef;
}

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

.price-card__body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 14px;
}

.price-card__copy {
  flex: 1 1 auto;
}

.price-card h4 {
  margin: 0;
  font-size: 15px;
  font-weight: 680;
  letter-spacing: -.008em;
  line-height: 1.27;
  text-wrap: pretty;
}

.price-card__copy p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.42;
}

.price-card__aside {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.price-card__aside strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 720;
  line-height: 1.2;
  white-space: nowrap;
}

.price-card__whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid #179c4d;
  border-radius: 9px;
  background: #1fad59;
  box-shadow: 0 5px 12px rgba(31, 173, 89, 0.18);
  color: #fff;
  font-size: 11px;
  font-weight: 720;
  line-height: 1;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.price-card__whatsapp svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.price-card__whatsapp:hover {
  border-color: #138b43;
  background: #199e50;
  box-shadow: 0 7px 16px rgba(31, 173, 89, 0.24);
  transform: translateY(-1px);
}

.price-card__whatsapp:focus-visible {
  outline: 3px solid rgba(31, 173, 89, 0.24);
  outline-offset: 2px;
}

.logistics {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.logistics__heading {
  max-width: 760px;
}

.logistics__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.logistics-card {
  display: grid;
  min-height: 330px;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 22px;
  padding: 28px;
  border: 1px solid #ccd9ec;
  border-radius: 16px;
  background: var(--blue-10);
}

.logistics-card--delivery {
  border-color: #d7d7d7;
  background: var(--surface);
}

.logistics-card__icon {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 15px;
  color: var(--paper);
  background: var(--blue-60);
}

.logistics-card--delivery .logistics-card__icon {
  background: var(--ink);
}

.logistics-card__icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.logistics-card__body {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.logistics-card h3 {
  max-width: 390px;
  margin: 0;
  font-size: 24px;
  font-weight: 680;
  letter-spacing: -.018em;
  line-height: 1.15;
}

.logistics-card__body > p {
  margin: 13px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.5;
}

.logistics-card__body .logistics-card__note {
  margin: 16px 0 20px;
  padding: 11px 12px;
  border-left: 3px solid var(--blue-60);
  color: var(--muted);
  background: rgba(255, 255, 255, .68);
  font-size: 12px;
}

.logistics-card--delivery .logistics-card__note {
  border-left-color: var(--ink);
}

.logistics-card .button {
  width: max-content;
  min-height: 42px;
  margin-top: auto;
  padding-inline: 17px;
  border-radius: 9px;
}

@media (max-width: 980px) {
  .device-showcase {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .price-category {
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 24px;
  }

  .price-category__services {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .section--devices {
    background: var(--mobile-page);
  }

  .device-heading {
    padding-bottom: 2px;
  }

  .device-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .device-tile {
    border: 0;
    border-radius: 18px;
    box-shadow: 0 5px 18px rgba(28, 39, 55, .07);
  }

  .device-tile:hover {
    transform: none;
  }

  .device-tile__copy {
    min-height: 138px;
    padding: 13px;
  }

  .device-tile__index {
    margin-bottom: 9px;
  }

  .device-tile h3 {
    font-size: 16px;
  }

  .device-tile p {
    font-size: 12px;
  }

  .device-tile:last-child {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: 44% minmax(0, 1fr);
  }

  .device-tile:last-child .device-tile__media {
    aspect-ratio: auto;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .device-tile:last-child .device-tile__copy {
    min-height: 142px;
  }

  .price-list {
    padding-top: 34px;
    background: var(--mobile-page);
  }

  .price-list__heading {
    margin-bottom: 17px;
  }

  .price-tools {
    top: calc(var(--header-height) + env(safe-area-inset-top));
    grid-template-columns: 1fr;
    gap: 9px;
    margin: 0 -12px;
    padding: 10px 12px 11px;
    border: 0;
    border-radius: 0;
    background: rgba(241, 243, 247, .94);
    box-shadow: 0 1px 0 rgba(28, 39, 55, .06);
    backdrop-filter: blur(18px);
  }

  .price-search {
    height: 48px;
    border: 0;
    border-radius: 15px;
    box-shadow: 0 4px 16px rgba(28, 39, 55, .06);
  }

  .price-search input {
    font-size: 15px;
  }

  .price-filters {
    gap: 7px;
    padding: 1px 0 3px;
  }

  .price-filter {
    min-height: 36px;
    border: 0;
    background: #e5e9f0;
    font-size: 12px;
  }

  .price-filter.is-active {
    color: var(--paper);
    background: var(--blue-60);
    box-shadow: 0 5px 14px rgba(15, 98, 254, .22);
  }

  .price-note {
    margin-top: 14px;
    padding: 0 3px;
    font-size: 12px;
  }

  .price-catalog {
    margin-top: 25px;
  }

  .price-category {
    display: block;
    padding: 28px 0 32px;
  }

  .price-category:first-child {
    padding-top: 0;
  }

  .price-category__heading {
    position: static;
    margin: 0 3px 13px;
  }

  .price-category__heading h3 {
    font-size: 19px;
  }

  .price-category__heading p {
    font-size: 13px;
  }

  .price-category__services {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .price-card {
    min-height: 166px;
    grid-template-columns: 106px minmax(0, 1fr);
    border: 0;
    border-radius: 17px;
    box-shadow: 0 4px 17px rgba(28, 39, 55, .055);
  }

  .price-card__body {
    padding: 13px;
  }

  .price-card h4 {
    font-size: 16px;
  }

  .price-card__copy p {
    font-size: 13px;
    line-height: 1.4;
  }

  .price-card__aside {
    align-items: center;
    margin-top: 13px;
    padding-top: 10px;
  }

  .price-card__aside strong {
    font-size: 14px;
  }

  .price-card__whatsapp {
    font-size: 12px;
  }

  .empty-state {
    border: 0;
    border-radius: 16px;
    background: var(--mobile-card);
    box-shadow: var(--mobile-shadow);
  }

  .logistics {
    padding: 34px 0;
    border-top: 0;
    background: #e9edf4;
  }

  .logistics__grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 18px;
  }

  .logistics-card {
    min-height: 0;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
    padding: 18px;
    border: 0;
    border-radius: 19px;
    box-shadow: 0 6px 20px rgba(28, 39, 55, .07);
  }

  .logistics-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 13px;
  }

  .logistics-card__icon svg {
    width: 24px;
    height: 24px;
  }

  .logistics-card h3 {
    font-size: 20px;
  }

  .logistics-card__body > p {
    margin-top: 10px;
    font-size: 14px;
  }

  .logistics-card__body .logistics-card__note {
    margin: 13px 0 16px;
    border-radius: 0 10px 10px 0;
    font-size: 12px;
  }

  .logistics-card .button {
    width: 100%;
    min-height: 46px;
    border-radius: 13px;
  }
}

@media (max-width: 420px) {
  .device-tile__copy {
    min-height: 146px;
  }

  .device-tile p {
    font-size: 11px;
  }

  .price-card {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .price-card__aside {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .price-card__whatsapp {
    align-self: stretch;
  }

  .logistics-card {
    grid-template-columns: 1fr;
  }
}

/* Service pages, smart search and desktop visual administrator */
.price-tools { grid-template-columns: minmax(0, 1fr); }
.smart-search-status { min-height: 1.25rem; margin: .55rem 0 0; color: var(--muted); font-size: .82rem; }
.price-card__media > a { display: block; height: 100%; }
.price-card__copy h4 a { color: inherit; text-decoration: none; }
.price-card__copy h4 a:hover { color: var(--accent); }
.price-card__details { display: inline-flex; align-items: center; gap: .4rem; width: fit-content; margin-top: .55rem; color: var(--accent); font-size: .78rem; font-weight: 750; text-decoration: none; }
.price-card__details span { transition: transform 160ms ease; }
.price-card__details:hover span { transform: translateX(3px); }
.site-admin-desktop, .card-admin-controls, .inline-admin-panel, .block-admin-controls, .add-page-block, .editor-dialog { display: none; }

@media (min-width: 1024px) {
  .site-admin-desktop { display: block; }
  .has-site-admin-mode { padding-top: 52px; }
  .has-site-admin-mode .header { top: 52px; }
  .site-admin-bar { position: fixed; z-index: 1000; inset: 0 0 auto; display: flex; align-items: center; gap: 1rem; min-height: 52px; padding: .5rem max(1.25rem, calc((100vw - 1180px) / 2)); border-bottom: 1px solid #2d3748; background: #111827; color: #fff; box-shadow: 0 8px 30px rgba(15, 23, 42, .16); }
  .site-admin-bar strong { display: flex; align-items: center; gap: .5rem; white-space: nowrap; font-size: .82rem; }
  .site-admin-bar strong span { width: 8px; height: 8px; border-radius: 50%; background: #34d399; box-shadow: 0 0 0 4px rgba(52, 211, 153, .16); }
  .site-admin-bar nav { display: flex; align-items: center; gap: .25rem; margin-right: auto; }
  .site-admin-bar a, .site-admin-bar button { min-height: 34px; padding: .45rem .72rem; border: 1px solid #374151; border-radius: 8px; background: #1f2937; color: #f9fafb; font: inherit; font-size: .74rem; font-weight: 700; text-decoration: none; cursor: pointer; }
  .site-admin-bar a:hover, .site-admin-bar button:hover { background: #374151; }
  .site-admin-launcher { position: fixed; z-index: 900; right: 1.25rem; bottom: 1.25rem; }
  .site-admin-launcher button { display: inline-flex; align-items: center; gap: .55rem; padding: .78rem 1rem; border: 0; border-radius: 12px; background: #111827; color: #fff; box-shadow: 0 12px 34px rgba(15, 23, 42, .25); font: inherit; font-size: .78rem; font-weight: 750; cursor: pointer; }
  .site-admin-launcher span { color: #60a5fa; }
  .editor-flash { position: fixed; z-index: 1100; top: 68px; left: 50%; max-width: 680px; padding: .8rem 1rem; border: 1px solid #a7f3d0; border-radius: 12px; background: #ecfdf5; color: #065f46; box-shadow: 0 12px 34px rgba(15, 23, 42, .14); font-size: .82rem; transform: translateX(-50%); transition: opacity 240ms ease, transform 240ms ease; }
  .editor-flash--error { border-color: #fecaca; background: #fef2f2; color: #991b1b; }
  .editor-flash.is-hiding { opacity: 0; transform: translate(-50%, -10px); pointer-events: none; }
  .has-site-admin-mode .price-card, .service-builder__item--admin { overflow: visible; outline: 1px dashed #60a5fa; outline-offset: 4px; }
  .card-admin-controls, .block-admin-controls { position: absolute; z-index: 5; display: flex; align-items: center; gap: .3rem; top: -17px; right: 10px; padding: .26rem; border: 1px solid #374151; border-radius: 9px; background: #111827; box-shadow: 0 8px 20px rgba(15, 23, 42, .2); }
  .card-admin-controls form, .block-admin-controls form { display: flex; margin: 0; }
  .card-admin-controls button, .block-admin-controls button, .inline-admin-panel button, .inline-admin-panel a { min-width: 30px; min-height: 28px; padding: .35rem .55rem; border: 0; border-radius: 6px; background: #1f2937; color: #fff; font: inherit; font-size: .68rem; font-weight: 700; line-height: 1; text-decoration: none; cursor: pointer; }
  .card-admin-controls button:hover, .block-admin-controls button:hover, .inline-admin-panel button:hover, .inline-admin-panel a:hover { background: #374151; }
  .card-admin-controls .is-danger, .block-admin-controls .is-danger { color: #fecaca; }
  .block-admin-controls { top: -19px; right: 18px; }
  .block-admin-controls > span { padding: 0 .45rem; color: #bfdbfe; font-size: .66rem; font-weight: 750; }
  .inline-admin-panel { display: flex; align-items: center; gap: .5rem; width: fit-content; margin: 1.2rem 0 0; padding: .45rem; border-radius: 10px; background: #111827; color: #fff; }
  .inline-admin-panel strong { padding: 0 .55rem; font-size: .72rem; }
  .add-page-block { display: flex; align-items: center; justify-content: center; gap: .7rem; width: 100%; min-height: 64px; margin: 1.5rem 0; border: 1px dashed #60a5fa; border-radius: 14px; background: #eff6ff; color: #1d4ed8; font: inherit; font-size: .82rem; font-weight: 750; cursor: pointer; }
  .add-page-block:hover { background: #dbeafe; }
  .add-page-block span { font-size: 1.2rem; }
  .editor-dialog[open] { display: block; width: min(680px, calc(100vw - 3rem)); max-height: calc(100vh - 3rem); padding: 0; overflow: auto; border: 0; border-radius: 18px; background: #fff; color: #111827; box-shadow: 0 30px 80px rgba(15, 23, 42, .35); }
  .editor-dialog--wide[open] { width: min(780px, calc(100vw - 3rem)); }
  .editor-dialog::backdrop { background: rgba(15, 23, 42, .62); backdrop-filter: blur(4px); }
  .editor-dialog__header { position: sticky; z-index: 2; top: 0; display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; padding: 1.15rem 1.25rem; border-bottom: 1px solid #e5e7eb; background: rgba(255,255,255,.96); }
  .editor-dialog__header small { color: #6b7280; font-size: .68rem; font-weight: 750; text-transform: uppercase; letter-spacing: .08em; }
  .editor-dialog__header h2 { margin: .2rem 0 0; font-size: 1.08rem; }
  .editor-dialog__header > button { width: 34px; height: 34px; border: 0; border-radius: 8px; background: #f3f4f6; color: #111827; font-size: 1.25rem; cursor: pointer; }
  .editor-dialog__body { display: grid; gap: 1rem; padding: 1.25rem; }
  .editor-dialog__body label { display: grid; gap: .42rem; color: #374151; font-size: .76rem; font-weight: 700; }
  .editor-dialog__body input:not([type="checkbox"]), .editor-dialog__body textarea, .editor-dialog__body select { width: 100%; min-height: 42px; padding: .65rem .75rem; border: 1px solid #d1d5db; border-radius: 9px; background: #fff; color: #111827; font: inherit; font-size: .82rem; font-weight: 450; }
  .editor-dialog__body textarea { min-height: 90px; resize: vertical; }
  .editor-dialog__body input:focus, .editor-dialog__body textarea:focus, .editor-dialog__body select:focus { border-color: #3b82f6; outline: 3px solid rgba(59,130,246,.12); }
  .editor-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .8rem; }
  .editor-checkbox { display: flex !important; grid-template-columns: auto 1fr; align-items: center; }
  .editor-dialog__actions { position: sticky; bottom: 0; display: flex; justify-content: flex-end; gap: .65rem; padding: .85rem 1.25rem; border-top: 1px solid #e5e7eb; background: rgba(255,255,255,.96); }
  .editor-dialog__actions > button:not(.button) { padding: .68rem .9rem; border: 0; border-radius: 8px; background: #f3f4f6; color: #374151; font: inherit; font-size: .78rem; font-weight: 700; cursor: pointer; }
}

.service-page-hero { padding: clamp(2rem, 5vw, 4.8rem) 0 3rem; border-bottom: 1px solid var(--line); background: radial-gradient(circle at 85% 10%, rgba(39,88,255,.1), transparent 34%), #f8f8f7; }
.service-breadcrumbs { display: flex; align-items: center; gap: .55rem; margin-bottom: 2rem; color: var(--muted); font-size: .76rem; }
.service-breadcrumbs a { color: inherit; text-decoration: none; }
.service-page-hero__grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(330px, .7fr); align-items: center; gap: clamp(2rem, 6vw, 5rem); }
.service-page-hero h1 { max-width: 780px; margin: .75rem 0 1rem; font-size: clamp(2.35rem, 5vw, 4.5rem); line-height: .98; letter-spacing: -.055em; }
.service-page-hero__lead { max-width: 700px; margin: 0; color: var(--muted); font-size: clamp(1rem, 1.7vw, 1.22rem); line-height: 1.55; }
.service-page-hero__actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.5rem; }
.service-page-facts { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.5rem 0 0; }
.service-page-facts > div { min-width: 150px; padding: .8rem 1rem; border: 1px solid var(--line); border-radius: 12px; background: rgba(255,255,255,.75); }
.service-page-facts dt { color: var(--muted); font-size: .68rem; }
.service-page-facts dd { margin: .22rem 0 0; font-size: .92rem; font-weight: 750; }
.service-page-hero__media { aspect-ratio: 4 / 3; margin: 0; overflow: hidden; border-radius: 20px; box-shadow: 0 20px 55px rgba(15,23,42,.12); }
.service-page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.service-builder { display: grid; gap: 1.35rem; padding-top: 3rem; padding-bottom: 4rem; }
.service-builder__item { position: relative; }
.builder-content { margin: 0; padding: clamp(1.4rem, 3vw, 2.4rem); border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.builder-content h2 { max-width: 850px; margin: 0 0 .9rem; font-size: clamp(1.45rem, 3vw, 2.25rem); line-height: 1.08; letter-spacing: -.035em; }
.builder-content--subtitle { padding: 1rem 0; border: 0; background: transparent; }
.builder-content--subtitle h2 { margin-bottom: 0; font-size: clamp(2rem, 4.5vw, 3.5rem); }
.builder-prose { max-width: 840px; color: #3f4650; font-size: 1rem; line-height: 1.75; }
.builder-content--image img { width: 100%; max-height: 700px; object-fit: cover; border-radius: 13px; }
.builder-content figcaption, .builder-caption { margin: .75rem 0 0; color: var(--muted); font-size: .78rem; line-height: 1.5; }
.builder-gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .7rem; }
.builder-gallery figure { aspect-ratio: 4 / 3; margin: 0; overflow: hidden; border-radius: 12px; }
.builder-gallery img { width: 100%; height: 100%; object-fit: cover; }
.builder-gallery--collage { grid-template-columns: 1.4fr .8fr .8fr; grid-auto-rows: 180px; }
.builder-gallery--collage figure { aspect-ratio: auto; }
.builder-gallery--collage figure:first-child { grid-row: span 2; }
.builder-video { position: relative; aspect-ratio: 16 / 9; overflow: hidden; border-radius: 13px; background: #111827; }
.builder-video iframe { width: 100%; height: 100%; border: 0; }
.builder-checklist { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .65rem; margin: 0; padding: 0; list-style: none; }
.builder-checklist li { display: flex; gap: .7rem; padding: .85rem; border-radius: 10px; background: #f7f7f6; line-height: 1.5; }
.builder-checklist span { color: #0f9f6e; font-weight: 800; }
.builder-steps { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.builder-steps li { display: grid; grid-template-columns: 50px minmax(0, 1fr); gap: 1rem; padding: 1rem 0; border-top: 1px solid var(--line); }
.builder-steps li > span { color: var(--accent); font-size: .75rem; font-weight: 800; }
.builder-steps h3, .builder-steps p { margin: 0; }
.builder-steps p { margin-top: .3rem; color: var(--muted); line-height: 1.55; }
.builder-notice { border-color: #c7d2fe; background: #eef2ff; }
.builder-notice--important { border-color: #fde68a; background: #fffbeb; }
.builder-notice--success { border-color: #a7f3d0; background: #ecfdf5; }
.builder-notice p { max-width: 850px; margin: 0; line-height: 1.65; }
.builder-faq { display: grid; gap: .5rem; }
.builder-faq details { padding: .95rem 1rem; border: 1px solid var(--line); border-radius: 11px; background: #fafafa; }
.builder-faq summary { font-weight: 750; cursor: pointer; }
.builder-faq p { margin: .75rem 0 0; color: var(--muted); line-height: 1.6; }
.builder-cta { display: flex; align-items: center; justify-content: space-between; gap: 2rem; border: 0; background: #111827; color: #fff; }
.builder-cta h2 { color: #fff; }
.builder-cta p { max-width: 700px; margin: 0; color: #cbd5e1; line-height: 1.6; }
.builder-before-after { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .8rem; }
.builder-before-after figure { position: relative; aspect-ratio: 4 / 3; margin: 0; overflow: hidden; border-radius: 13px; }
.builder-before-after img { width: 100%; height: 100%; object-fit: cover; }
.builder-before-after span { position: absolute; z-index: 1; top: .7rem; left: .7rem; padding: .35rem .55rem; border-radius: 7px; background: rgba(17,24,39,.82); color: #fff; font-size: .68rem; font-weight: 750; }
.builder-empty { padding: 3rem; border: 1px dashed var(--line); border-radius: 16px; text-align: center; }
.service-page-contact { padding: 3.5rem 0; background: #f2f2f0; }
.service-page-contact__grid { display: grid; grid-template-columns: minmax(0, 1fr) 260px; align-items: center; gap: 3rem; }
.service-page-contact h2 { max-width: 760px; margin: .7rem 0; font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1; letter-spacing: -.045em; }
.service-page-contact p { max-width: 700px; color: var(--muted); line-height: 1.6; }
.service-page-contact__grid > img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 24%; border-radius: 18px; }

@media (max-width: 900px) {
  .service-page-hero__grid, .service-page-contact__grid { grid-template-columns: 1fr; }
  .service-page-hero__media { max-width: 620px; }
  .service-page-contact__grid > img { display: none; }
  .builder-gallery, .builder-gallery--collage { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: auto; }
  .builder-gallery--collage figure:first-child { grid-row: auto; }
}

@media (max-width: 767px) {
  .service-page-hero { padding: 1.25rem 0 2rem; }
  .service-breadcrumbs { margin-bottom: 1.2rem; }
  .service-page-hero h1 { font-size: clamp(2.15rem, 11vw, 3.2rem); }
  .service-page-hero__grid { gap: 1.4rem; }
  .service-page-hero__media { order: -1; border-radius: 16px; }
  .service-page-hero__actions .button { flex: 1 1 100%; }
  .service-page-facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-page-facts > div { min-width: 0; }
  .service-builder { gap: .8rem; padding-top: 1rem; padding-bottom: 2rem; }
  .builder-content { padding: 1.15rem; border-radius: 14px; }
  .builder-content--subtitle { padding: 1rem .25rem; }
  .builder-gallery, .builder-gallery--collage, .builder-checklist, .builder-before-after { grid-template-columns: 1fr; }
  .builder-cta { align-items: stretch; flex-direction: column; }
  .builder-cta .button { width: 100%; }
  .service-page-contact { padding: 2rem 0 5rem; }
}
