:root {
  --bg: #000;
  --paper: #050505;
  --ink: #fff;
  --muted: rgba(255, 255, 255, .72);
  --line: rgba(255, 255, 255, .15);
  --brand: #ff4900;
  --brand-dark: #ff4900;
  --teal: #ff4900;
  --green: #ff4900;
  --blue: #ff4900;
  --focus: rgba(255, 73, 0, .46);
  --radius: 8px;
  --shadow: 0 18px 42px rgba(255, 73, 0, .16);
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
  color: var(--ink);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.dev-skip {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 40;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  font-weight: 800;
}

.dev-skip:focus {
  top: 16px;
}

.dev-container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.dev-header {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(222, 215, 202, .72);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.dev-nav {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.dev-brand {
  display: inline-flex;
  min-width: 170px;
  align-items: center;
}

.dev-brand::before,
.dev-footer__brand::before {
  content: "";
  display: block;
  flex: 0 0 72px;
  width: 72px;
  height: 40px;
  background-image: url("/images/logo.png");
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 290px auto;
}

.dev-brand img {
  display: none;
}

.dev-brand span {
  display: none;
}

.dev-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  font-size: .92rem;
  font-weight: 800;
}

.dev-menu a {
  border-radius: 999px;
  color: #fff;
  padding: 10px 11px;
}

.dev-menu a:hover,
.dev-menu a[aria-current="page"] {
  background: #000;
  color: var(--brand-dark);
}

.dev-menu__portal {
  border: 1px solid transparent;
  color: var(--teal) !important;
}

.dev-menu__contact {
  margin-left: 4px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.dev-menu-button {
  position: relative;
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
}

.dev-menu-button span:not(.sr-only) {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform .18s ease, opacity .18s ease;
}

.dev-menu-button span:nth-child(1) {
  transform: translateY(-6px);
}

.dev-menu-button span:nth-child(3) {
  transform: translateY(6px);
}

.dev-menu-button[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg);
}

.dev-menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.dev-menu-button[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg);
}

.dev-hero {
  position: relative;
  isolation: isolate;
  min-height: calc(96svh - var(--header-height));
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #21150e;
}

.dev-hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-position: 74% center;
  background-size: min(980px, 86vw) auto;
  background-repeat: no-repeat;
  opacity: .54;
  filter: saturate(.88) contrast(1.08);
}

.dev-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(21, 19, 15, .96) 0%, rgba(21, 19, 15, .89) 43%, rgba(21, 19, 15, .56) 70%, rgba(21, 19, 15, .76) 100%),
    linear-gradient(0deg, rgba(21, 19, 15, .82) 0%, rgba(21, 19, 15, .08) 44%);
}

.dev-hero__content {
  width: min(920px, 100%);
  padding: 82px 0 72px;
  color: #fff;
}

.dev-kicker {
  margin: 0 0 14px;
  color: #ff4900;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.dev-hero h1 {
  margin: 0;
  max-width: 940px;
  overflow-wrap: break-word;
  word-break: normal;
  font-size: clamp(2.35rem, 6.4vw, 5.45rem);
  font-weight: 850;
  letter-spacing: 0;
  line-height: .99;
}

.dev-hero__lead {
  max-width: 740px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
  line-height: 1.62;
}

.dev-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.dev-btn {
  display: inline-flex;
  min-width: 0;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid #ff894f;
  border-radius: var(--radius);
  background: var(--brand);
  color: #160d07;
  padding: 13px 17px;
  font-weight: 850;
  line-height: 1.1;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
  box-shadow: 0 10px 24px rgba(159, 59, 17, .24);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.dev-btn:hover {
  background: #ff7b3f;
  box-shadow: 0 14px 28px rgba(159, 59, 17, .3);
  transform: translateY(-1px);
}

.dev-btn--secondary {
  border-color: rgba(255, 255, 255, .42);
  background: rgba(255, 255, 255, .1);
  color: #fff;
  box-shadow: none;
}

.dev-btn--secondary:hover {
  background: rgba(255, 255, 255, .18);
  box-shadow: none;
}

.dev-btn--quiet {
  min-height: 42px;
  border-color: var(--line);
  background: #000;
  color: var(--brand-dark);
  padding: 10px 12px;
  box-shadow: none;
}

.dev-btn--quiet:hover {
  background: #ff4900;
  box-shadow: none;
}

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

.dev-section:nth-of-type(odd) {
  background: var(--paper);
}

.dev-section--dark {
  background: #000 !important;
  color: #fff;
}

.dev-section--final {
  background: #000 !important;
}

.dev-section__inner {
  padding: 76px 0;
}

.dev-section h2 {
  margin: 0;
  max-width: 900px;
  color: var(--ink);
  font-size: clamp(1.78rem, 4vw, 3.15rem);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.05;
}

.dev-section--dark h2 {
  color: #fff;
}

.dev-lead {
  margin: 18px 0 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.dev-section--dark .dev-lead,
.dev-section--dark p {
  color: rgba(255, 255, 255, .76);
}

.dev-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.dev-card {
  grid-column: span 4;
  min-height: 186px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 22px;
  box-shadow: 0 10px 24px rgba(36, 27, 18, .07);
}

.dev-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.12rem;
  line-height: 1.25;
}

.dev-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.62;
}

.dev-card__action {
  margin-top: 18px;
}

.dev-process {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.dev-process li {
  counter-increment: process;
  min-height: 112px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 16px;
  box-shadow: 0 10px 24px rgba(36, 27, 18, .06);
}

.dev-process li::before {
  content: counter(process, decimal-leading-zero);
  display: block;
  margin-bottom: 14px;
  color: var(--teal);
  font-size: .82rem;
  font-weight: 900;
}

.dev-process span {
  display: block;
  color: var(--ink);
  font-weight: 850;
  line-height: 1.28;
  overflow-wrap: anywhere;
}

.dev-platform-layout {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, 1.05fr);
  gap: 36px;
  align-items: center;
}

.dev-platform {
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .06);
  padding: 14px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .24);
}

.dev-platform article {
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .07);
  padding: 18px;
}

.dev-platform article + article {
  margin-top: 12px;
}

.dev-platform strong {
  display: block;
  color: #ff4900;
  font-size: 1.02rem;
}

.dev-platform p {
  margin: 10px 0 0;
  line-height: 1.58;
}

.dev-logo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.dev-logo-grid div {
  display: grid;
  min-height: 108px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 18px;
}

.dev-logo-grid img {
  max-height: 54px;
  width: auto;
  object-fit: contain;
  filter: grayscale(.15) contrast(.95);
}

.dev-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(320px, 1.14fr);
  gap: 34px;
  align-items: start;
}

.dev-contact-cards {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.dev-contact-cards a {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 18px;
  color: var(--brand-dark);
  font-weight: 850;
}

.dev-form {
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 22px;
  box-shadow: var(--shadow);
}

.dev-form label {
  font-weight: 850;
}

.dev-form input,
.dev-form select,
.dev-form textarea {
  width: 100%;
  border: 1px solid #cfc6b6;
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  padding: 12px;
}

.dev-form textarea {
  resize: vertical;
}

.dev-form__status {
  min-height: 1.4em;
  margin: 0;
  color: var(--teal);
  font-weight: 800;
}

.dev-footer {
  background: #000;
  color: #fff;
}

.dev-footer__top {
  display: grid;
  grid-template-columns: 1.18fr repeat(3, 1fr);
  gap: 28px;
  padding: 48px 0;
}

.dev-footer__brand img {
  display: none;
}

.dev-footer__brand p {
  max-width: 310px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, .76);
  line-height: 1.6;
}

.dev-footer h2 {
  margin: 0 0 14px;
  color: #ff4900;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.dev-footer a {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, .84);
  line-height: 1.35;
}

.dev-footer a:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.dev-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, .16);
  padding: 20px 0 28px;
  color: rgba(255, 255, 255, .7);
  font-size: .92rem;
}

.dev-footer__bottom a {
  color: #ff4900;
}

.dev-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: var(--radius);
  background: var(--teal);
  color: #fff;
  padding: 12px 14px;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(15, 118, 110, .32);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

@media (max-width: 1080px) {
  .dev-brand {
    min-width: 0;
  }

  .dev-menu {
    font-size: .86rem;
    gap: 2px;
  }

  .dev-menu a {
    padding: 9px 8px;
  }

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

@media (max-width: 880px) {
  :root {
    --header-height: 68px;
  }

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

  .dev-menu-button {
    display: inline-flex;
  }

  .dev-menu {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    display: none;
    max-height: calc(100svh - var(--header-height));
    overflow: auto;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    padding: 12px 14px 18px;
    box-shadow: var(--shadow);
  }

  .dev-menu.is-open {
    display: grid;
  }

  .dev-menu a {
    border-radius: var(--radius);
    padding: 14px 12px;
  }

  .dev-menu__contact {
    margin-left: 0;
  }

  .dev-hero {
    min-height: calc(92svh - var(--header-height));
  }

  .dev-hero__media {
    background-position: 72% 22%;
    background-size: 720px auto;
    opacity: .26;
  }

  .dev-hero::before {
    background: rgba(21, 19, 15, .86);
  }

  .dev-hero__content {
    padding: 56px 0 50px;
  }

  .dev-hero h1 {
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
    font-size: clamp(1.86rem, 7.2vw, 2.42rem);
    line-height: 1.05;
  }

  .dev-hero__lead {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .dev-actions,
  .dev-btn {
    width: 100%;
  }

  .dev-btn {
    padding-right: 10px;
    padding-left: 10px;
    font-size: .96rem;
  }

  .dev-actions {
    min-width: 0;
  }

  .dev-grid,
  .dev-platform-layout,
  .dev-contact-layout {
    grid-template-columns: 1fr;
  }

  .dev-card {
    grid-column: auto;
  }

  .dev-process {
    grid-template-columns: 1fr;
  }

  .dev-process li {
    min-height: 0;
  }

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

  .dev-footer__top {
    grid-template-columns: 1fr;
  }

  .dev-footer__bottom {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .dev-brand img {
    width: 116px;
    height: auto;
  }

  .dev-section__inner {
    padding: 58px 0;
  }

  .dev-card,
  .dev-form {
    padding: 18px;
  }

  .dev-logo-grid {
    grid-template-columns: 1fr;
  }
}

/* Meva identity and motion layer */
body {
  background:
    radial-gradient(circle at 16% 8%, rgba(255, 73, 0, .14), transparent 34%),
    linear-gradient(180deg, #000 0%, #050505 52%, #000 100%);
}

.dev-header {
  border-bottom-color: rgba(255, 73, 0, .24);
  background: rgba(0, 0, 0, .86);
  box-shadow: 0 12px 34px rgba(0, 0, 0, .38);
}

.dev-brand,
.dev-menu a {
  color: #fff;
}

.dev-menu a,
.dev-menu-button,
.dev-btn,
.dev-card,
.dev-process li,
.dev-platform,
.dev-platform article,
.dev-logo-grid div,
.dev-contact-cards a,
.dev-form,
.dev-footer a,
.dev-whatsapp {
  transition:
    transform .24s ease,
    border-color .24s ease,
    background .24s ease,
    color .24s ease,
    box-shadow .24s ease,
    filter .24s ease;
}

.dev-menu a:hover,
.dev-menu a[aria-current="page"] {
  background: #ff4900;
  color: #fff;
  box-shadow: 0 12px 26px rgba(255, 73, 0, .22);
}

.dev-menu__portal,
.dev-menu__contact {
  border-color: rgba(255, 73, 0, .42);
  background: rgba(255, 73, 0, .1);
  color: #fff !important;
}

.dev-menu-button {
  border-color: rgba(255, 73, 0, .36);
  background: #000;
  color: #fff;
}

.dev-hero {
  background: #000;
  min-height: calc(88svh - var(--header-height));
  align-items: center;
}

.dev-hero__media {
  opacity: .62;
  filter: saturate(1.12) contrast(1.1);
  transform: scale(1.03);
}

.dev-hero::before {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .98) 0%, rgba(0, 0, 0, .88) 45%, rgba(0, 0, 0, .48) 72%, rgba(0, 0, 0, .82) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, .92) 0%, rgba(0, 0, 0, .1) 52%);
}

.dev-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: #ff4900;
  box-shadow: 0 0 34px rgba(255, 73, 0, .7);
}

.dev-kicker,
.dev-platform strong,
.dev-form__status {
  color: #ff4900;
}

.dev-hero__lead {
  color: rgba(255, 255, 255, .88);
}

.dev-btn {
  border-color: #ff4900;
  background: #ff4900;
  color: #fff;
  box-shadow: 0 16px 34px rgba(255, 73, 0, .28);
}

.dev-btn:hover,
.dev-btn:focus-visible {
  background: #fff;
  border-color: #fff;
  color: #000;
  box-shadow: 0 18px 40px rgba(255, 73, 0, .34);
  transform: translateY(-4px);
}

.dev-btn--secondary {
  border-color: rgba(255, 255, 255, .44);
  background: rgba(255, 255, 255, .06);
  color: #fff;
}

.dev-btn--secondary:hover,
.dev-btn--secondary:focus-visible {
  border-color: #ff4900;
  background: #ff4900;
  color: #fff;
}

.dev-btn--quiet {
  border-color: rgba(255, 73, 0, .38);
  background: #000;
  color: #fff;
}

.dev-section,
.dev-section:nth-of-type(odd) {
  border-bottom-color: rgba(255, 73, 0, .18);
  background: #000;
}

.dev-section:nth-of-type(even),
.dev-section--final {
  background:
    linear-gradient(135deg, rgba(255, 73, 0, .1), transparent 36%),
    #050505 !important;
}

.dev-section--dark {
  background:
    linear-gradient(135deg, rgba(255, 73, 0, .18), transparent 42%),
    #000 !important;
  border-top: 1px solid rgba(255, 73, 0, .28);
  border-bottom: 1px solid rgba(255, 73, 0, .28);
}

.dev-section h2,
.dev-card h3,
.dev-process span,
.dev-form label {
  color: #fff;
}

.dev-lead,
.dev-card p,
.dev-platform p {
  color: rgba(255, 255, 255, .72);
}

.dev-card,
.dev-process li,
.dev-platform,
.dev-platform article,
.dev-logo-grid div,
.dev-contact-cards a,
.dev-form {
  position: relative;
  overflow: hidden;
  border-color: rgba(255, 255, 255, .14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, .01)),
    #050505;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);
}

.dev-card::before,
.dev-process li::after,
.dev-platform::before,
.dev-platform article::before,
.dev-logo-grid div::before,
.dev-contact-cards a::before,
.dev-form::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: #ff4900;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .24s ease;
  pointer-events: none;
}

.dev-process li::before {
  color: #ff4900;
}

.dev-logo-grid img {
  filter: grayscale(.08) contrast(1.04);
}

.dev-form input,
.dev-form select,
.dev-form textarea {
  border-color: rgba(255, 255, 255, .16);
  background: #000;
  color: #fff;
}

.dev-footer {
  background: #000;
  border-top: 1px solid rgba(255, 73, 0, .24);
}

.dev-footer h2,
.dev-footer__bottom a {
  color: #ff4900;
}

.dev-footer a:hover,
.dev-footer a:focus-visible {
  transform: translateX(6px);
  color: #ff4900;
  text-decoration-color: #ff4900;
}

.dev-footer__bottom {
  border-top-color: rgba(255, 73, 0, .28);
}

.dev-whatsapp {
  border-color: #ff4900;
  background: #ff4900;
  color: #fff;
  box-shadow: 0 16px 34px rgba(255, 73, 0, .32);
}

@media (hover: hover) and (pointer: fine) {
  .dev-brand:hover,
  .dev-menu-button:hover {
    transform: translateY(-2px);
  }

  .dev-card:hover,
  .dev-process li:hover,
  .dev-platform article:hover,
  .dev-logo-grid div:hover,
  .dev-contact-cards a:hover {
    transform: translateY(-7px);
    border-color: #ff4900;
    background: #ff4900;
    color: #fff;
    box-shadow:
      0 18px 42px rgba(255, 73, 0, .3),
      inset 0 1px 0 rgba(255, 255, 255, .24);
  }

  .dev-platform:hover,
  .dev-form:hover {
    transform: translateY(-5px);
    border-color: #ff4900;
    box-shadow:
      0 18px 42px rgba(255, 73, 0, .22),
      inset 0 1px 0 rgba(255, 255, 255, .1);
  }

  .dev-card:hover::before,
  .dev-process li:hover::after,
  .dev-platform:hover::before,
  .dev-platform article:hover::before,
  .dev-logo-grid div:hover::before,
  .dev-contact-cards a:hover::before,
  .dev-form:hover::before {
    transform: scaleX(1);
  }

  .dev-card:hover h3,
  .dev-card:hover p,
  .dev-process li:hover span,
  .dev-process li:hover::before,
  .dev-platform article:hover strong,
  .dev-platform article:hover p,
  .dev-contact-cards a:hover {
    color: #fff;
  }

  .dev-card:hover .dev-btn,
  .dev-card:hover .dev-btn--quiet {
    border-color: #fff;
    background: #fff;
    color: #000;
    box-shadow: none;
  }

  .dev-logo-grid div:hover img {
    filter: grayscale(0) contrast(1.08) brightness(1.08);
  }

  .dev-whatsapp:hover,
  .dev-whatsapp:focus-visible {
    transform: translateY(-4px);
    background: #fff;
    color: #000;
    box-shadow: 0 18px 42px rgba(255, 73, 0, .36);
  }
}

@media (max-width: 880px) {
  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }

  .dev-container {
    width: calc(100vw - 28px) !important;
    max-width: calc(100vw - 28px) !important;
  }

  .dev-hero__content {
    width: calc(100vw - 28px) !important;
    max-width: calc(100vw - 28px) !important;
  }

  .dev-hero h1 {
    width: 100%;
    max-width: 21rem !important;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
    font-size: clamp(1.75rem, 8.8vw, 2.22rem);
    line-height: 1.08;
  }

  .dev-hero__lead,
  .dev-lead {
    max-width: 21rem !important;
    overflow-wrap: break-word;
  }

  .dev-section h2 {
    max-width: 21rem !important;
    overflow-wrap: break-word;
    word-break: break-word;
    font-size: clamp(1.55rem, 7.2vw, 2rem);
    line-height: 1.12;
  }

  .dev-actions {
    width: 100%;
    max-width: 21rem;
  }

  .dev-btn {
    max-width: 100%;
  }

  .dev-whatsapp {
    left: 14px;
    right: 14px;
    width: auto;
    min-height: 38px;
    max-width: calc(100vw - 28px);
    justify-content: center;
    padding: 9px 12px;
    font-size: .9rem;
  }

  .dev-menu {
    border-bottom-color: rgba(255, 73, 0, .24);
    background: #000;
  }
}
