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

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(
      circle at 75% 12%,
      rgba(25, 200, 255, 0.06),
      transparent 26rem
    ),
    var(--ink);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
summary {
  font: inherit;
}

button {
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 4px;
}

::selection {
  color: #031019;
  background: var(--brand);
}

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

#main-content > section {
  padding: 0;
}

#main-content > .section {
  padding: clamp(5rem, 8vw, 7.5rem) 0;
}

section[id] {
  scroll-margin-top: var(--header-height);
}

.sr-only {
  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;
  left: 18px;
  top: 12px;
  z-index: 100;
  transform: translateY(-150%);
  padding: 10px 16px;
  color: #031019;
  background: var(--brand);
  border-radius: 8px;
  font-weight: 400;
}

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

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 101;
  width: 100%;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--brand-deep), var(--brand));
  box-shadow: 0 0 18px rgba(25, 200, 255, 0.55);
  transform: scaleX(0);
  transform-origin: left;
  animation: page-progress linear both;
  animation-timeline: scroll(root block);
}

@keyframes page-progress {
  to {
    transform: scaleX(1);
  }
}

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

h1,
h2,
h3 {
  color: var(--white);
  font-family: "Clash Display", Arial, sans-serif;
  font-weight: 600;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 920px;
  margin-bottom: 24px;
  font-size: clamp(3.25rem, 6vw, 5.4rem);
  line-height: 0.96;
}

h1 span {
  color: var(--brand);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.4rem, 4.6vw, 4.8rem);
  line-height: 1;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.15;
}

.eyebrow {
  margin-bottom: 24px;
  color: var(--brand);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 400;
  box-shadow: inset 0 -1px var(--line-brand);
  transition:
    color 180ms ease,
    box-shadow 180ms ease;
}

.text-link:hover {
  color: var(--brand);
  box-shadow: inset 0 -1px var(--brand);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition:
    background 200ms ease,
    border-color 200ms ease,
    backdrop-filter 200ms ease;
}

.site-header.is-scrolled,
.site-header:has(.mobile-nav:not([hidden])) {
  border-color: var(--line);
  background: rgba(6, 9, 17, 0.9);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  height: var(--header-height);
  align-items: center;
  gap: 20px;
}

.logo {
  position: relative;
  display: block;
  flex: 0 0 156px;
  width: 156px;
  height: 40px;
  overflow: hidden;
}

.logo img {
  width: 156px;
  height: 156px;
  max-width: none;
  transform: translateY(-56px);
}

.desktop-nav {
  display: none;
}

.desktop-nav > a,
.nav-group > summary {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 7px;
  color: rgba(248, 251, 255, 0.78);
  cursor: pointer;
  font-size: 0.86rem;
  line-height: 1;
  list-style: none;
  white-space: nowrap;
  transition: color 180ms ease;
}

.nav-group > summary::-webkit-details-marker {
  display: none;
}

.nav-group > summary span {
  color: var(--brand);
  font-size: 1.05rem;
  transition: transform 180ms ease;
}

.nav-group[open] > summary span {
  transform: rotate(45deg);
}

.desktop-nav > a:hover,
.nav-group > summary:hover,
.desktop-nav > a[aria-current="page"] {
  color: var(--white);
}

.nav-group {
  position: relative;
}

.nav-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: -18px;
  display: grid;
  width: 230px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(10, 14, 26, 0.98);
  box-shadow: 0 24px 70px rgba(0, 8, 18, 0.42);
}

.nav-panel a {
  display: flex;
  min-height: 42px;
  align-items: center;
  padding: 8px 11px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.25;
}

.nav-panel a:hover {
  color: var(--white);
  background: rgba(25, 200, 255, 0.08);
}

.nav-group-wide .nav-panel,
.nav-group-locations .nav-panel {
  grid-template-columns: 1fr 1fr;
  width: 410px;
}

.nav-group-locations .nav-panel {
  right: -40px;
  left: auto;
}

.nav-cta {
  display: none;
  margin-left: auto;
}

.menu-button {
  position: relative;
  display: grid;
  width: 46px;
  height: 46px;
  margin-left: auto;
  padding: 13px 11px;
  place-content: center;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
}

.menu-button > span:not(.sr-only) {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 20px;
  height: 1px;
  background: var(--white);
  transition: transform 180ms ease;
}

.menu-button > span:nth-child(2) {
  transform: translate(-50%, -4px);
}

.menu-button > span:nth-child(3) {
  transform: translate(-50%, 4px);
}

.menu-button[aria-expanded="true"] > span:nth-child(2) {
  transform: translate(-50%, 0) rotate(45deg);
}

.menu-button[aria-expanded="true"] > span:nth-child(3) {
  transform: translate(-50%, 0) rotate(-45deg);
}

.mobile-nav {
  height: calc(100dvh - var(--header-height));
  padding: 18px 20px 42px;
  overflow-y: auto;
  border-top: 1px solid var(--line);
  background: rgba(6, 9, 17, 0.98);
}

.mobile-nav > a,
.mobile-nav summary {
  display: flex;
  min-height: 54px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: var(--white);
  cursor: pointer;
  font-family: "Clash Display", Arial, sans-serif;
  font-size: 1.1rem;
  list-style: none;
}

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

.mobile-nav details a {
  display: flex;
  min-height: 46px;
  align-items: center;
  padding-left: 16px;
  color: var(--muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav .mobile-demo {
  justify-content: center;
  margin-top: 20px;
  border: 0;
  border-radius: 999px;
  color: #031019;
  background: var(--brand);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100dvh;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
}

.hero-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 76% 44%,
      rgba(25, 200, 255, 0.2),
      transparent 10rem
    ),
    radial-gradient(
      circle at 76% 44%,
      rgba(25, 200, 255, 0.08),
      transparent 28rem
    ),
    linear-gradient(
      90deg,
      rgba(6, 9, 17, 0.99) 0%,
      rgba(6, 9, 17, 0.92) 46%,
      rgba(6, 9, 17, 0.58) 100%
    ),
    var(--ink);
}

.hero-image::before {
  content: "";
  position: absolute;
  inset: -16%;
  background-image:
    linear-gradient(rgba(25, 200, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(25, 200, 255, 0.12) 1px, transparent 1px),
    linear-gradient(
      135deg,
      transparent 47%,
      rgba(25, 200, 255, 0.14) 49%,
      transparent 51%
    );
  background-size:
    70px 70px,
    70px 70px,
    210px 210px;
  -webkit-mask-image: radial-gradient(
    circle at 76% 46%,
    #000 0%,
    transparent 63%
  );
  mask-image: radial-gradient(circle at 76% 46%, #000 0%, transparent 63%);
  transform: perspective(900px) rotateX(58deg) rotateZ(-18deg) scale(1.25);
  transform-origin: 74% 48%;
}

.hero-image::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 12%;
  width: clamp(220px, 33vw, 500px);
  aspect-ratio: 1;
  border: 1px solid rgba(25, 200, 255, 0.5);
  border-radius: 50%;
  box-shadow:
    inset 0 0 80px rgba(25, 200, 255, 0.08),
    0 0 90px rgba(25, 200, 255, 0.18),
    0 0 180px rgba(25, 200, 255, 0.1);
  transform: translateY(-50%);
  animation: hero-sphere-breathe 7s ease-in-out infinite;
}

@keyframes hero-sphere-breathe {
  0%,
  100% {
    opacity: 0.74;
    transform: translateY(-50%) scale(0.96);
  }

  50% {
    opacity: 1;
    transform: translateY(-50%) scale(1.045);
  }
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--header-height) + 34px);
  padding-bottom: 48px;
}

.hero-copy {
  max-width: 920px;
}

.hero-lead {
  max-width: 720px;
  margin-bottom: 32px;
  color: rgba(248, 251, 255, 0.78);
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.proof-strip {
  position: relative;
  z-index: 2;
  border-block: 1px solid var(--line);
  background: var(--ink-2);
}

.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.proof-grid > * {
  display: flex;
  min-height: 120px;
  flex-direction: column;
  justify-content: center;
  padding: 22px 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-grid > :nth-child(2n) {
  border-right: 0;
}

.proof-grid > :nth-last-child(-n + 2) {
  border-bottom: 0;
}

.proof-grid strong {
  color: var(--white);
  font-family: "Clash Display", Arial, sans-serif;
  font-size: clamp(1.65rem, 3vw, 2.2rem);
  line-height: 1;
}

.proof-grid span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.35;
}

.proof-grid a:hover strong {
  color: var(--brand);
}

.trust-star {
  color: var(--brand);
  font: inherit;
}

.demo-section {
  background: var(--ink);
}

.demo-layout {
  display: grid;
  gap: 48px;
}

.demo-portrait {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line-brand);
  border-radius: var(--radius);
  background: var(--ink-3);
}

.demo-portrait::after {
  content: "";
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(transparent, rgba(6, 9, 17, 0.92));
}

.demo-portrait img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center 22%;
}

.portrait-meta {
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.portrait-meta strong {
  color: var(--white);
  font-family: "Clash Display", Arial, sans-serif;
  font-size: 1.55rem;
}

.portrait-meta span {
  color: var(--muted);
  font-size: 0.88rem;
}

.demo-copy {
  align-self: center;
}

.demo-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.08rem;
}

.demo-flow {
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
}

.demo-flow li {
  position: relative;
  display: grid;
  gap: 5px;
  padding: 20px 0 20px 26px;
  border-bottom: 1px solid var(--line);
}

.demo-flow li::before {
  content: "";
  position: absolute;
  top: 29px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
}

.demo-flow strong {
  color: var(--white);
  font-weight: 400;
}

.demo-flow span {
  color: var(--muted);
  font-size: 0.9rem;
}

.services-section {
  background: var(--ink-2);
}

.services-layout {
  display: grid;
  gap: 52px;
}

.services-heading {
  max-width: 650px;
}

.services-heading > p {
  max-width: 560px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 1.08rem;
}

.service-list {
  border-top: 1px solid var(--line-brand);
}

.service-list article {
  display: grid;
  gap: 22px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}

.service-list article p {
  max-width: 640px;
  margin-bottom: 0;
  color: var(--muted);
}

.service-list article > a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--brand);
  font-weight: 400;
}

.portfolio-section {
  overflow: hidden;
  background: var(--ink);
}

.portfolio-heading {
  margin-bottom: clamp(4rem, 8vw, 7rem);
}

.portfolio-heading h2 {
  max-width: 820px;
}

.portfolio-heading > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.portfolio-list {
  display: grid;
  gap: clamp(5rem, 10vw, 9rem);
}

.project {
  display: grid;
  min-width: 0;
  gap: 34px;
  align-items: center;
}

.project-image {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ink-3);
}

.project-image::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.project-image img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
  transition: transform 700ms var(--ease);
}

.project:hover .project-image img {
  transform: scale(1.025);
}

.project-copy > p:first-child {
  margin-bottom: 18px;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-copy > p:not(:first-child) {
  max-width: 500px;
  color: var(--muted);
}

.project-copy dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 32px 0 0;
}

.project-copy dl div {
  padding-top: 18px;
  border-top: 1px solid var(--line-brand);
}

.project-copy dt {
  color: var(--white);
  font-family: "Clash Display", Arial, sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1;
}

.project-copy dd {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

.portfolio-action {
  margin-top: 60px;
  text-align: center;
}

.reviews-section {
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(25, 200, 255, 0.12),
      transparent 22rem
    ),
    var(--ink-3);
}

.reviews-shell {
  display: grid;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

.reviews-heading h2 {
  font-size: clamp(2.5rem, 4vw, 4rem);
}

.reviews-summary {
  max-width: 30rem;
  margin: 1.25rem 0 0;
  color: var(--muted);
}

.review-controls {
  display: flex;
  gap: 0.6rem;
  margin-top: 2rem;
}

.review-viewport {
  min-width: 0;
  overflow: hidden;
}

.review-track {
  display: flex;
  transition: transform 600ms var(--ease);
  will-change: transform;
}

.review-slide {
  display: flex;
  min-width: 100%;
  margin: 0;
  flex-direction: column;
  justify-content: center;
}

.review-slide blockquote {
  max-width: 48rem;
  margin: 1.5rem 0 2.5rem;
  color: var(--white);
  font-family: "Clash Display", Arial, sans-serif;
  font-size: clamp(1.45rem, 2.6vw, 2.45rem);
  line-height: 1.25;
}

.review-stars {
  color: var(--brand);
  font-size: 0.85rem;
  letter-spacing: 0.28em;
}

.review-slide figcaption {
  display: flex;
  flex-direction: column;
}

.review-slide figcaption strong {
  color: var(--white);
  font-weight: 400;
}

.review-slide figcaption span {
  color: var(--muted);
  font-size: 0.85rem;
}

.review-google-link {
  margin-top: 2rem;
}

.review-controls button {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.review-controls button:hover {
  color: var(--brand);
  border-color: var(--brand);
  transform: translateY(-2px);
}

.review-status {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.8rem;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.68rem;
}

.review-status > span:first-child {
  color: var(--brand);
}

.review-progress {
  height: 1px;
  overflow: hidden;
  background: var(--line);
}

.review-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--brand);
  transform: scaleX(calc(var(--review-progress, 1) / 7));
  transform-origin: left;
  transition: transform 600ms var(--ease);
}

.process-section {
  background: var(--ink);
}

.process-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.process-heading > p {
  color: var(--muted);
  font-size: 1.08rem;
}

.process-track {
  display: grid;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.process-track li {
  position: relative;
  display: grid;
  gap: 8px;
  padding: 26px 0 26px 64px;
  border-bottom: 1px solid var(--line);
  counter-increment: process;
}

.process-track li::before {
  content: counter(process, decimal-leading-zero);
  position: absolute;
  top: 26px;
  left: 0;
  color: var(--brand);
  font-family: "Clash Display", Arial, sans-serif;
}

.process-track strong {
  color: var(--white);
  font-family: "Clash Display", Arial, sans-serif;
  font-size: 1.25rem;
}

.process-track span {
  color: var(--muted);
  font-size: 0.92rem;
}

.pricing-section {
  background: var(--ink-2);
}

.pricing-heading {
  max-width: 780px;
  margin-bottom: 50px;
}

.pricing-heading > p {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.06rem;
}

.price-toggle {
  display: inline-flex;
  margin-top: 20px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
}

.price-toggle button {
  min-height: 42px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.price-toggle button.is-active {
  color: #031019;
  background: var(--brand);
}

.plan-compare {
  display: grid;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.plan {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: clamp(28px, 5vw, 50px);
  background: var(--ink);
}

.plan + .plan {
  border-top: 1px solid var(--line);
}

.plan-featured {
  background:
    linear-gradient(145deg, rgba(25, 200, 255, 0.08), transparent 44%),
    var(--ink-3);
}

.plan > div > p {
  min-height: 52px;
  color: var(--muted);
}

.plan-price {
  display: flex;
  min-height: 68px;
  align-items: end;
  gap: 8px;
  margin: 30px 0 6px;
}

.plan-price strong {
  color: var(--white);
  font-family: "Clash Display", Arial, sans-serif;
  font-size: clamp(3rem, 7vw, 4.7rem);
  letter-spacing: -0.04em;
  line-height: 0.9;
}

.plan-price span {
  color: var(--muted);
}

.plan-note {
  color: var(--brand);
  font-size: 0.82rem;
}

.plan ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 16px;
  margin: 26px 0 34px;
  padding: 0;
  list-style: none;
}

.plan li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.84rem;
}

.plan li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--brand);
}

.plan .button {
  align-self: flex-start;
  margin-top: auto;
}

.specialist-offers {
  display: grid;
  margin-top: 22px;
  border-top: 1px solid var(--line);
}

.specialist-offers a {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5px 20px;
  min-height: 88px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.specialist-offers strong {
  color: var(--white);
  font-family: "Clash Display", Arial, sans-serif;
  font-size: 1.15rem;
}

.specialist-offers span {
  grid-column: 1;
  color: var(--muted);
  font-size: 0.88rem;
}

.specialist-offers b {
  grid-column: 2;
  grid-row: 1 / 3;
  color: var(--brand);
  font-weight: 400;
  transition: transform 180ms var(--ease);
}

.specialist-offers a:hover b {
  transform: translateX(5px);
}

.pricing-note {
  margin-top: 24px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.final-cta {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 78% 50%,
      rgba(25, 200, 255, 0.16),
      transparent 17rem
    ),
    repeating-linear-gradient(
      135deg,
      transparent 0 48px,
      rgba(25, 200, 255, 0.045) 49px 50px
    ),
    var(--ink);
}

.final-cta-inner {
  display: grid;
  gap: 34px;
  align-items: end;
}

.final-cta-inner h2 {
  max-width: 850px;
}

.final-cta-inner p {
  max-width: 580px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.whatsapp-link {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  padding: 0 18px;
  border: 1px solid rgba(6, 9, 17, 0.35);
  border-radius: 999px;
  color: #031019;
  background: var(--brand);
  font-family: "Clash Display", Arial, sans-serif;
  font-size: 0.85rem;
  box-shadow: 0 14px 40px rgba(0, 8, 18, 0.38);
  transition: transform 180ms var(--ease);
}

.whatsapp-link svg {
  display: none;
  flex: 0 0 auto;
  width: 1.2rem;
  height: 1.2rem;
  fill: currentColor;
}

.whatsapp-link:hover {
  transform: translateY(-3px);
}

.redesign-site-footer {
  padding: 80px 0 24px;
  border-top: 1px solid var(--line);
  background: #04070d;
}

.redesign-footer-grid {
  display: grid;
  gap: 38px;
}

.redesign-footer-brand p {
  max-width: 320px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.redesign-footer-grid > div:not(.redesign-footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.redesign-footer-grid h2 {
  margin-bottom: 14px;
  color: var(--white);
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.74rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.redesign-footer-grid > div:not(.redesign-footer-brand) a,
.redesign-footer-grid > div:not(.redesign-footer-brand) span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  color: var(--muted);
  font-size: 0.84rem;
  transition: color 180ms ease;
}

.redesign-footer-grid > div:not(.redesign-footer-brand) a:hover {
  color: var(--brand);
}

.redesign-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 56px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: rgba(209, 213, 219, 0.56);
  font-size: 0.75rem;
}

.redesign-footer-bottom a:hover {
  color: var(--brand);
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 700ms var(--ease),
    transform 700ms var(--ease);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 680px) {
  .proof-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .proof-grid > * {
    min-height: 142px;
    padding: 28px;
    border-bottom: 0;
  }

  .proof-grid > :nth-child(2n) {
    border-right: 1px solid var(--line);
  }

  .proof-grid > :last-child {
    border-right: 0;
  }

  .service-list article {
    grid-template-columns: minmax(0, 1fr) 150px;
    align-items: center;
  }

  .process-track {
    grid-template-columns: 1fr 1fr;
    gap: 0 36px;
  }

  .redesign-footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .demo-layout {
    grid-template-columns: minmax(320px, 0.8fr) minmax(440px, 1.2fr);
    gap: clamp(60px, 8vw, 120px);
  }

  .demo-portrait {
    min-height: 650px;
  }

  .demo-portrait img {
    min-height: 650px;
  }

  .services-layout {
    grid-template-columns: minmax(320px, 0.8fr) minmax(500px, 1.2fr);
    gap: clamp(60px, 9vw, 130px);
  }

  .services-heading {
    position: sticky;
    top: calc(var(--header-height) + 50px);
    align-self: start;
  }

  .project {
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
    gap: clamp(50px, 7vw, 100px);
  }

  .project-reverse {
    grid-template-columns: minmax(320px, 0.75fr) minmax(0, 1.25fr);
  }

  .project-reverse .project-image {
    grid-column: 2;
    grid-row: 1;
  }

  .project-reverse .project-copy {
    grid-column: 1;
    grid-row: 1;
  }

  .reviews-shell {
    grid-template-columns: minmax(16rem, 0.7fr) minmax(0, 1.3fr);
  }

  .process-track {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--line-brand);
  }

  .process-track li {
    min-height: 220px;
    padding: 76px 26px 28px 0;
    border-bottom: 0;
  }

  .process-track li + li {
    padding-left: 26px;
    border-left: 1px solid var(--line);
  }

  .process-track li::before {
    top: 26px;
    left: 0;
  }

  .process-track li + li::before {
    left: 26px;
  }

  .plan-compare {
    grid-template-columns: 1fr 1fr;
  }

  .plan + .plan {
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .specialist-offers {
    grid-template-columns: 1fr 1fr;
  }

  .specialist-offers a:first-child {
    padding-right: 36px;
  }

  .specialist-offers a + a {
    padding-left: 36px;
    border-left: 1px solid var(--line);
  }

  .final-cta-inner {
    grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
    gap: 70px;
  }

  .final-actions {
    justify-content: flex-start;
  }

  .redesign-footer-grid {
    grid-template-columns: 1.5fr 0.85fr 1fr 1fr 1.1fr;
    gap: 32px;
  }
}

@media (min-width: 1120px) {
  .desktop-nav {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: clamp(13px, 1.3vw, 22px);
  }

  .nav-cta {
    display: inline-flex;
  }

  .menu-button {
    display: none;
  }
}

@media (max-width: 679px) {
  .hero-image::before {
    inset: -8% -75% -8% -40%;
    opacity: 0.8;
  }

  .hero-image::after {
    right: -32%;
    width: 90vw;
  }

  .hero-inner {
    padding-top: calc(var(--header-height) + 42px);
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .portrait-meta {
    align-items: start;
    flex-direction: column;
  }

  .project-image img,
  .project:hover .project-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    aspect-ratio: auto;
    object-fit: contain;
    transform: none;
  }

  .review-slide blockquote {
    font-size: 1.4rem;
  }

  .plan ul {
    grid-template-columns: 1fr;
  }

  .plan .button,
  .final-actions .button {
    width: 100%;
  }

  .whatsapp-link {
    width: 48px;
    padding: 0;
    justify-content: center;
    overflow: hidden;
    color: #031019;
    background: #25d366;
    border-color: rgba(3, 17, 25, 0.3);
  }

  .whatsapp-link span {
    display: none;
  }

  .whatsapp-link svg {
    display: block;
    width: 1.5rem;
    height: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .hero-image::after {
    animation: none;
    opacity: 1;
    transform: translateY(-50%);
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header.is-scrolled,
  .site-header:has(.mobile-nav:not([hidden])) {
    background: var(--ink);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}
