:root {
  --bg: #050607;
  --panel: #0b0e11;
  --panel-2: #11161b;
  --line: rgba(255, 255, 255, 0.12);
  --text: #f5f7fa;
  --muted: #a9b2bd;
  --soft: #d7dde4;
  --accent: #29e59a;
  --accent-2: #37a8ff;
  --image-radius: 6px;
  --image-border-gradient: linear-gradient(135deg, rgba(41, 229, 154, 0.95), rgba(55, 168, 255, 0.95));
  --danger: #ff8a8a;
  --max: 1180px;
  --header: 78px;
  color-scheme: dark;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, Manrope, "Segoe UI", system-ui, -apple-system, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 999;
  transform: translateY(-140%);
  background: var(--accent);
  color: #050607;
  padding: 10px 14px;
}

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

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

.eyebrow {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: none;
}

.section {
  position: relative;
  padding: clamp(64px, 8vw, 108px) 0;
  border-top: 0;
}

.section::before {
  content: "";
  position: absolute;
  left: max(16px, calc((100% - var(--max)) / 2));
  right: max(16px, calc((100% - var(--max)) / 2));
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(41, 229, 154, 0), rgba(41, 229, 154, 0.88), rgba(55, 168, 255, 0.88), rgba(41, 229, 154, 0));
  opacity: 0.75;
}

.page-hero + .section::before {
  display: none;
}

.section-tight {
  padding: clamp(48px, 7vw, 90px) 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.52fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
  margin-bottom: clamp(28px, 4vw, 46px);
}

.section-head > p {
  max-width: 560px;
  padding-top: 34px;
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.55;
}

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

h1,
h2,
h3 {
  line-height: 1.02;
  letter-spacing: 0;
}

h1,
.hero-title {
  max-width: 980px;
  font-size: clamp(3rem, 8vw, 7.6rem);
  text-transform: none;
}

.hero-title {
  margin: 0;
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2rem, 3.7vw, 3.85rem);
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.7rem);
}

p {
  color: var(--muted);
}

.lead {
  color: var(--soft);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  padding: 12px 18px;
  font-weight: 800;
  text-transform: none;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
}

.btn-primary {
  background: transparent;
  color: var(--text);
  border-color: rgba(41, 229, 154, 0.65);
  box-shadow: inset 0 -2px 0 var(--accent), 0 12px 30px rgba(41, 229, 154, 0.1);
}

.btn-primary:hover {
  color: #050607;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 16px 36px rgba(55, 168, 255, 0.18);
}

.text-link {
  color: var(--accent);
  font-weight: 800;
}

/* HEADER */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(5, 6, 7, 0.58);
  backdrop-filter: blur(14px);
  transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.site-header::after {
  content: "";
  position: absolute;
  left: max(16px, calc((100% - var(--max)) / 2));
  right: max(16px, calc((100% - var(--max)) / 2));
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(41, 229, 154, 0), rgba(41, 229, 154, 0.6), rgba(55, 168, 255, 0.6), rgba(41, 229, 154, 0));
  opacity: 0.35;
}

.site-header.is-scrolled,
.site-header:focus-within {
  background: rgba(5, 6, 7, 0.86);
  border-bottom: 0;
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled::after,
.site-header:focus-within::after {
  opacity: 0.8;
}

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

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 950;
  font-size: 1.2rem;
}

.logo-mark {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--accent);
  color: var(--accent);
  box-shadow: inset 0 0 0 1px rgba(55, 168, 255, 0.14), 0 0 28px rgba(41, 229, 154, 0.1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 30px);
  color: var(--soft);
  font-size: 0.92rem;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 0;
  font-weight: 820;
  transition: color 180ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: var(--image-border-gradient);
  opacity: 0;
  transform: scaleX(0.42);
  transform-origin: center;
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--text);
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-switch {
  display: inline-flex;
  border: 1px solid var(--line);
}

.lang-switch button {
  border: 0;
  background: transparent;
  color: var(--muted);
  min-width: 38px;
  min-height: 36px;
  cursor: pointer;
}

.lang-switch button.is-active {
  color: #050607;
  background: var(--accent);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.06);
  color: var(--text);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  margin: 4px auto;
  transition: transform 180ms ease, opacity 180ms ease;
}

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

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

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

/* HERO */
.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  align-items: end;
  padding: calc(var(--header) + 70px) 0 72px;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5,6,7,.95), rgba(5,6,7,.52) 44%, rgba(5,6,7,.34)),
    linear-gradient(0deg, var(--bg), transparent 42%);
}

.hero-content {
  display: grid;
  gap: 24px;
}

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

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: clamp(30px, 6vw, 70px);
  background: var(--line);
}

.metric {
  background: rgba(5, 6, 7, 0.72);
  padding: clamp(20px, 3vw, 30px);
  display: grid;
  align-content: start;
  gap: 10px;
}

.metric strong {
  display: block;
  font-size: clamp(1.7rem, 4vw, 3.1rem);
  line-height: 1.05;
}

.metric span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.35;
}

/* CONTENT */
.intro-grid,
.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.58fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.intro-grid h2,
.split-grid h2 {
  max-width: 760px;
  font-size: clamp(2rem, 3.45vw, 3.6rem);
}

.intro-grid > div:last-child,
.split-grid > div:last-child {
  max-width: 640px;
}

.intro-grid p,
.split-grid p {
  font-size: clamp(1rem, 1.2vw, 1.14rem);
  line-height: 1.58;
}

.image-panel {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border: 1px solid transparent;
  border-radius: var(--image-radius);
  background:
    linear-gradient(var(--panel), var(--panel)) padding-box,
    var(--image-border-gradient) border-box;
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  border-radius: calc(var(--image-radius) - 1px);
}

.image-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5,6,7,.38), transparent);
}

.grid-3,
.grid-4,
.project-grid,
.service-grid {
  display: grid;
  gap: 18px;
}

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

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

.service-grid,
.project-grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
}

.card,
.service-card,
.project-card {
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.014));
  border: 0;
  padding: 24px;
}

.card {
  display: grid;
  align-content: start;
  gap: 18px;
}

.card-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-inline: auto;
  border: 1px solid transparent;
  border-radius: var(--image-radius);
  background:
    linear-gradient(var(--panel), var(--panel)) padding-box,
    var(--image-border-gradient) border-box;
  color: var(--accent);
}

.card-icon svg {
  width: 25px;
  height: 25px;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.card h3 {
  margin-bottom: 0;
}

.card p {
  margin-bottom: 0;
}

.service-card {
  min-height: 100%;
  padding: 0;
  overflow: hidden;
}

.service-card,
.project-card {
  border-radius: var(--image-radius);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.07);
}

.service-card img,
.project-card img {
  width: 100%;
  height: clamp(190px, 18vw, 270px);
  object-fit: cover;
  border-radius: var(--image-radius);
  border: 1px solid transparent;
  background:
    linear-gradient(var(--panel), var(--panel)) padding-box,
    var(--image-border-gradient) border-box;
  box-shadow: inset 0 0 0 1px rgba(41, 229, 154, 0.16);
}

.service-card div,
.project-card div {
  padding: 18px;
}

.service-card .eyebrow,
.project-card .eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.service-card h2,
.service-card h3,
.project-card h2,
.project-card h3 {
  max-width: none;
  font-size: clamp(1.25rem, 1.55vw, 1.7rem);
  line-height: 1.08;
  margin-bottom: 12px;
}

.service-card p,
.project-card p {
  font-size: 0.94rem;
  line-height: 1.48;
  margin-bottom: 10px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.tag-list li,
.pill {
  border: 0;
  color: var(--accent);
  padding: 0;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.7;
}

.tag-list li:not(:last-child)::after {
  content: "/";
  color: rgba(255,255,255,.28);
  margin: 0 8px;
}

.process-route {
  position: relative;
  min-height: 390px;
  padding: clamp(22px, 3vw, 34px) 0;
  overflow: hidden;
}

.process-route::before {
  display: none;
}

.process-route::after {
  display: none;
}

.route-steps {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 3vw, 34px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.route-steps li {
  position: relative;
  min-height: 180px;
  display: grid;
  align-content: start;
  gap: 16px;
}

.route-steps li:nth-child(n+5) {
  margin-top: 62px;
}

.route-steps li > span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(41, 229, 154, 0.85);
  background: #07090b;
  color: var(--accent);
  font-weight: 900;
  box-shadow: 0 0 0 8px rgba(55, 168, 255, 0.08);
}

.route-steps strong {
  display: block;
  color: var(--accent);
  font-size: 0.82rem;
  margin-bottom: 6px;
}

.route-steps h3 {
  font-size: clamp(1.25rem, 1.8vw, 1.85rem);
  margin-bottom: 10px;
}

.route-steps p {
  max-width: 260px;
  font-size: 0.94rem;
  line-height: 1.5;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.filter-btn {
  min-height: 42px;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.18);
  background: transparent;
  color: var(--soft);
  padding: 8px 2px;
  cursor: pointer;
}

.filter-btn.is-active {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.page-hero {
  min-height: clamp(420px, 54vh, 620px);
  display: grid;
  align-items: end;
  position: relative;
  isolation: isolate;
  padding: calc(var(--header) + 54px) 0 62px;
  background: #050607;
  border-bottom: 0;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  left: max(16px, calc((100% - var(--max)) / 2));
  right: max(16px, calc((100% - var(--max)) / 2));
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(41, 229, 154, 0), rgba(41, 229, 154, 0.88), rgba(55, 168, 255, 0.88), rgba(41, 229, 154, 0));
  opacity: 0.75;
}

.page-hero-grid {
  display: block;
  max-width: 780px;
}

.page-hero h1 {
  max-width: 760px;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: 1.04;
}

.page-hero .lead {
  max-width: 680px;
}

.page-hero-visual {
  position: absolute;
  inset: 0;
  z-index: -2;
  min-height: 100%;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.page-hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5,6,7,.94), rgba(5,6,7,.66) 46%, rgba(5,6,7,.38)),
    linear-gradient(0deg, var(--bg), transparent 48%);
}

/* CONTACT */
.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.1fr);
  gap: 24px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  background: var(--panel);
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}

.contact-action {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 66px;
  padding: 12px;
  border: 1px solid var(--line);
  background:
    linear-gradient(var(--panel), var(--panel)) padding-box,
    var(--image-border-gradient) border-box;
  border-radius: var(--image-radius);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.contact-action:hover {
  transform: translateY(-2px);
  background:
    linear-gradient(rgba(255,255,255,.065), rgba(255,255,255,.035)) padding-box,
    var(--image-border-gradient) border-box;
}

.contact-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(41, 229, 154, 0.45);
  border-radius: var(--image-radius);
  color: var(--accent);
  background: rgba(255,255,255,.045);
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
}

.contact-action strong {
  display: block;
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.28;
  overflow-wrap: anywhere;
}

.contact-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.field {
  display: grid;
  gap: 7px;
}

.field span {
  color: var(--soft);
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.045);
  color: var(--text);
  padding: 13px 14px;
  border-radius: 0;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.form-status {
  min-height: 24px;
  color: var(--accent);
  font-size: 0.9rem;
}

.map-frame {
  min-height: 280px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(41,229,154,.12), rgba(55,168,255,.14)),
    repeating-linear-gradient(45deg, rgba(255,255,255,.045), rgba(255,255,255,.045) 1px, transparent 1px, transparent 18px),
    var(--panel);
  color: var(--muted);
  text-align: center;
  padding: 28px;
}

/* FOOTER */
.site-footer {
  position: relative;
  padding: 58px 0 92px;
  background: #030405;
  border-top: 0;
}

.site-footer::before {
  content: "";
  position: absolute;
  left: max(16px, calc((100% - var(--max)) / 2));
  right: max(16px, calc((100% - var(--max)) / 2));
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(41, 229, 154, 0), rgba(41, 229, 154, 0.88), rgba(55, 168, 255, 0.88), rgba(41, 229, 154, 0));
  opacity: 0.75;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 0.7fr);
  gap: 28px;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}

.footer-grid li {
  margin: 8px 0;
  color: var(--muted);
}

.footer-contact {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  color: var(--muted);
}

.footer-contact .contact-icon {
  width: 30px;
  height: 30px;
}

.footer-contact .contact-icon svg {
  width: 15px;
  height: 15px;
}

.footer-contact strong {
  display: block;
  color: var(--soft);
  font-size: 0.88rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 38px;
  padding-top: 0;
  border-top: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 22px;
  z-index: 80;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.22);
  background: #1fba68;
  color: #03140a;
  font-weight: 950;
  box-shadow: 0 18px 46px rgba(0,0,0,.38);
}

.mobile-contact-bar {
  display: none;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

/* MOBILE */
@media (max-width: 980px) {
  .section-head,
  .intro-grid,
  .split-grid,
  .page-hero-grid,
  .contact-shell,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-head > p {
    padding-top: 0;
    max-width: 720px;
  }

  .intro-grid > div:last-child,
  .split-grid > div:last-child {
    max-width: 760px;
  }

  .grid-3,
  .grid-4,
  .service-grid,
  .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-route {
    min-height: auto;
    padding-left: 24px;
    overflow: visible;
  }

  .process-route::before {
    left: 24px;
    right: auto;
    top: 22px;
    bottom: 22px;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, rgba(41,229,154,.15), rgba(41,229,154,.95), rgba(55,168,255,.9), rgba(41,229,154,.18));
  }

  .process-route::after {
    display: none;
  }

  .route-steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .route-steps li,
  .route-steps li:nth-child(n+5) {
    min-height: auto;
    margin-top: 0;
    grid-template-columns: 54px minmax(0, 1fr);
    align-items: start;
  }

  .route-steps p {
    max-width: 620px;
  }

  .service-card img,
  .project-card img {
    height: clamp(170px, 24vw, 230px);
  }

  .nav-links {
    position: fixed;
    inset: 0;
    display: grid;
    place-content: center;
    gap: 24px;
    background: rgba(5, 6, 7, 0.96);
    transform: translateX(100%);
    transition: transform 220ms ease;
    font-size: 1.25rem;
  }

  .nav-links.is-open {
    transform: translateX(0);
  }

  .menu-toggle {
    display: block;
    z-index: 101;
  }

  .nav-actions .btn {
    display: none;
  }
}

@media (max-width: 720px) {
  :root {
    --header: 66px;
  }

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

  .hero {
    min-height: 92svh;
    padding-bottom: 36px;
  }

  .hero-metrics,
  .grid-3,
  .grid-4,
  .service-grid,
  .project-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .service-card img,
  .project-card img {
    height: clamp(170px, 42vw, 240px);
  }

  .section {
    padding: 64px 0;
  }

  .page-hero {
    min-height: 430px;
    padding: calc(var(--header) + 34px) 0 44px;
  }

  .page-hero h1 {
    font-size: clamp(2rem, 10vw, 3.05rem);
  }

  .page-hero-visual,
  .page-hero-visual img {
    min-height: 100%;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .floating-whatsapp {
    display: none;
  }

  .mobile-contact-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    min-height: 58px;
    background: rgba(5,6,7,.94);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(16px);
  }

  .mobile-contact-bar a {
    min-height: 58px;
    display: grid;
    place-items: center;
    color: var(--text);
    font-size: 0.82rem;
    font-weight: 850;
    text-transform: none;
    border-right: 1px solid var(--line);
  }

  .site-footer {
    padding-bottom: 132px;
  }
}

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

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