:root {
  --ink: #07182b;
  --muted: #5e6b77;
  --line: #dce5ea;
  --paper: #f5f8f9;
  --white: #ffffff;
  --red: #a9e629;
  --red-dark: #86bb13;
  --steel: #08213d;
  --steel-dark: #031225;
  --blue: #0b355e;
  --lime: #a9e629;
  --lime-soft: rgba(169, 230, 41, 0.16);
  --shadow: 0 18px 45px rgba(3, 18, 37, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 110px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -10;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(135deg, rgba(169, 230, 41, 0.07) 0 1px, transparent 1px 42px),
    linear-gradient(45deg, rgba(8, 33, 61, 0.05) 0 1px, transparent 1px 34px);
}

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

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

button {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px clamp(18px, 4vw, 52px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 18px;
  content: "";
  background:
    url("data:image/svg+xml,%3Csvg width='160' height='18' viewBox='0 0 160 18' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 9 C 26 0, 54 0, 80 9 S 134 18, 160 9' fill='none' stroke='rgba(255,255,255,0.55)' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E")
    repeat-x center / 160px 18px;
  opacity: 0.75;
  animation: headerWaveLine 9s linear infinite;
}

.site-header.scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(16px);
}

.site-header.scrolled::after {
  background:
    url("data:image/svg+xml,%3Csvg width='160' height='18' viewBox='0 0 160 18' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 9 C 26 0, 54 0, 80 9 S 134 18, 160 9' fill='none' stroke='rgba(169,230,41,0.72)' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E")
    repeat-x center / 160px 18px;
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: 0;
}

.brand-logo {
  position: relative;
  display: grid;
  width: clamp(178px, 20vw, 270px);
  height: 74px;
  place-items: center;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  font-weight: 800;
  letter-spacing: 0;
  transition: transform 240ms ease, filter 240ms ease;
}

.brand:hover .brand-logo {
  transform: translateY(-1px) scale(1.02);
  filter: drop-shadow(0 0 18px rgba(164, 224, 35, 0.28));
}

.brand-logo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: transparent;
  transition: opacity 180ms ease, transform 180ms ease;
}

.brand-logo .logo-initial {
  opacity: 1;
}

.brand-logo .logo-scrolled {
  opacity: 0;
}

.site-header.scrolled .brand-logo .logo-initial {
  opacity: 0;
  transform: translateY(-2px);
}

.site-header.scrolled .brand-logo .logo-scrolled {
  opacity: 1;
}

.brand strong,
.brand small {
  display: none;
}

.brand strong {
  font-size: 0.92rem;
  line-height: 1.1;
}

.brand small {
  color: currentColor;
  font-size: 0.75rem;
  opacity: 0.74;
}

.site-nav {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.9rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  opacity: 0.86;
}

.site-nav a:hover {
  opacity: 1;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: center;
  padding: 118px clamp(20px, 6vw, 82px) 54px;
  color: var(--white);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--steel);
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(3, 18, 37, 0.92), rgba(6, 28, 51, 0.68) 50%, rgba(6, 28, 51, 0.36)),
    radial-gradient(circle at 76% 18%, rgba(169, 230, 41, 0.2), transparent 28%);
}

.hero::before,
.process::before,
.cta::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.075) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.9), transparent 72%);
}

.hero-content,
.hero-panel,
.process > *,
.cta > * {
  position: relative;
  z-index: 1;
}

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

.hero-media video {
  object-position: center center;
}

.hero-content {
  width: min(700px, 100%);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.42);
  animation: heroIn 360ms ease both;
}

.scroll-cue {
  position: absolute;
  right: clamp(20px, 6vw, 82px);
  bottom: 34px;
  z-index: 2;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(169, 230, 41, 0.62);
  border-radius: 50%;
  background: rgba(3, 18, 37, 0.42);
  box-shadow: 0 14px 36px rgba(3, 18, 37, 0.24);
  backdrop-filter: blur(10px);
  animation: arrowFloat 1.8s ease-in-out infinite;
}

.scroll-cue span {
  width: 15px;
  height: 15px;
  border-right: 3px solid var(--lime);
  border-bottom: 3px solid var(--lime);
  transform: translateY(-3px) rotate(45deg);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--lime);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  text-wrap: balance;
  animation: headerWave 7s ease-in-out infinite;
}

h1 {
  margin: 0;
  max-width: 700px;
  font-size: clamp(2.25rem, 5.7vw, 4.85rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(1.75rem, 3.2vw, 3.15rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 610px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.02rem, 1.8vw, 1.25rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  font-weight: 800;
  isolation: isolate;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(110deg, transparent 0 32%, rgba(255, 255, 255, 0.34) 44%, transparent 58% 100%);
  transform: translateX(-130%);
  transition: transform 520ms ease;
}

.button:hover {
  transform: translateY(-2px) scale(1.015);
  box-shadow: 0 14px 28px rgba(12, 18, 24, 0.2);
}

.button:hover::after {
  transform: translateX(130%);
}

.button:active {
  transform: translateY(0) scale(0.99);
}

.whatsapp-button {
  background: #22c55e;
}

.whatsapp-button:hover {
  background: #16a34a;
}

.whatsapp-icon {
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  flex: 0 0 auto;
  margin-right: 8px;
  vertical-align: -5px;
}

.whatsapp-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.button.primary {
  color: var(--steel-dark);
  background: var(--red);
}

.button.primary:hover {
  background: var(--red-dark);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(169, 230, 41, 0.5);
  background: rgba(8, 33, 61, 0.3);
}

.button.dark {
  color: var(--white);
  background: var(--steel);
}

.button.primary.whatsapp-button {
  color: #062110;
  background: linear-gradient(135deg, #a9e629, #24d366 72%);
}

.button.primary.whatsapp-button:hover {
  background: linear-gradient(135deg, #b8f03f, #1fbd5a 72%);
}

.section,
.process,
.cta {
  padding: clamp(56px, 7vw, 96px) clamp(20px, 6vw, 82px);
}

.intro {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: center;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.9)),
    repeating-linear-gradient(135deg, rgba(8, 33, 61, 0.07) 0 1px, transparent 1px 18px);
  overflow: hidden;
}

.intro::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 22px;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(135deg, var(--steel-dark) 25%, transparent 25%) 0 0 / 28px 22px repeat-x,
    linear-gradient(225deg, var(--steel-dark) 25%, transparent 25%) 14px 0 / 28px 22px repeat-x;
  filter: drop-shadow(0 7px 10px rgba(3, 18, 37, 0.12));
}

.intro::after {
  position: absolute;
  top: 20px;
  right: clamp(20px, 6vw, 82px);
  left: clamp(20px, 6vw, 82px);
  height: 16px;
  pointer-events: none;
  content: "";
  background:
    url("data:image/svg+xml,%3Csvg width='160' height='16' viewBox='0 0 160 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 8 C 30 0, 50 0, 80 8 S 130 16, 160 8' fill='none' stroke='rgba(169,230,41,0.5)' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E")
    repeat-x center / 160px 16px;
  animation: headerWaveLine 11s linear infinite;
}

.intro-copy {
  position: relative;
  z-index: 1;
}

.intro-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.14rem;
}

.intro-visual {
  position: relative;
  z-index: 1;
  min-height: 430px;
}

.intro-photo {
  position: absolute;
  width: 54%;
  height: 72%;
  object-fit: cover;
  box-shadow: 0 18px 48px rgba(8, 33, 61, 0.18);
  filter: saturate(1.04) contrast(1.02);
}

.intro-photo::after {
  content: "";
}

.primary-photo {
  top: 28px;
  left: 6%;
  z-index: 2;
}

.offset-photo {
  right: 5%;
  bottom: 22px;
  z-index: 3;
}

.intro-visual::after {
  position: absolute;
  inset: 28px 5% 22px 6%;
  z-index: 4;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(169, 230, 41, 0.18), transparent 34%, rgba(8, 33, 61, 0.18)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px 42px);
  mix-blend-mode: screen;
}

.intro-watermark {
  position: absolute;
  bottom: -8px;
  left: 0;
  z-index: 1;
  color: rgba(8, 33, 61, 0.07);
  font-size: clamp(3rem, 7vw, 5.8rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0;
}

.section-heading {
  position: relative;
  max-width: 820px;
  padding-bottom: 22px;
}

.section-heading::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: min(210px, 54vw);
  height: 14px;
  content: "";
  background:
    url("data:image/svg+xml,%3Csvg width='150' height='14' viewBox='0 0 150 14' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 7 C 24 0, 52 0, 75 7 S 126 14, 150 7' fill='none' stroke='rgba(169,230,41,0.72)' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E")
    repeat-x left center / 150px 14px;
  opacity: 0.9;
  animation: headerWaveLine 12s linear infinite;
}

.services {
  position: relative;
  background:
    radial-gradient(circle at 8% 8%, var(--lime-soft), transparent 24%),
    var(--paper);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.service-card {
  min-height: 205px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(169, 230, 41, 0.5);
  box-shadow: var(--shadow);
}

.service-card p,
.process p,
.cta p,
.site-footer p {
  margin: 0;
  color: var(--muted);
}

.service-icon {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
}

.service-card.accent {
  color: var(--white);
  background: linear-gradient(135deg, var(--steel), #0d3156);
  border-color: var(--steel);
}

.service-card.accent p,
.service-card.accent .service-icon {
  color: rgba(255, 255, 255, 0.72);
}

.process {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 12%, rgba(169, 230, 41, 0.2), transparent 28%),
    linear-gradient(135deg, var(--steel), var(--steel-dark));
}

.process .eyebrow {
  color: var(--lime);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 32px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
}

.process-steps article {
  min-height: 196px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.06);
}

.process-steps span {
  display: grid;
  width: 40px;
  height: 40px;
  margin-bottom: 30px;
  place-items: center;
  border-radius: 50%;
  color: var(--steel);
  background: var(--white);
  font-weight: 800;
}

.process p {
  color: rgba(255, 255, 255, 0.72);
}

.showcase {
  padding-top: clamp(44px, 5vw, 68px);
  padding-bottom: clamp(44px, 5vw, 68px);
  background:
    linear-gradient(rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.98)),
    repeating-linear-gradient(90deg, rgba(8, 33, 61, 0.05) 0 1px, transparent 1px 36px);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 20px;
}

.filter-button {
  min-height: 38px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--steel);
  background: var(--white);
  cursor: pointer;
  font-weight: 800;
  transition: transform 160ms ease, color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.filter-button:hover {
  transform: translateY(-2px);
  border-color: rgba(169, 230, 41, 0.7);
}

.filter-button.active {
  color: var(--steel-dark);
  border-color: var(--red);
  background: var(--red);
}

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

.repair-case {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 12px 32px rgba(3, 18, 37, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.repair-case:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.repair-case.is-hidden {
  display: none;
}

.case-media {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: clamp(190px, 20vw, 235px);
  padding: 0;
  overflow: hidden;
  border: 0;
  color: var(--white);
  background: var(--steel);
  cursor: pointer;
}

.case-media > span {
  position: relative;
  min-width: 0;
  overflow: hidden;
}

.case-media > span::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(145deg, rgba(169, 230, 41, 0.12), transparent 42%),
    linear-gradient(0deg, rgba(3, 18, 37, 0.72), transparent 48%);
}

.case-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease, filter 320ms ease;
}

.case-media:hover img {
  transform: scale(1.04);
  filter: saturate(1.08) contrast(1.04);
}

.case-media b {
  position: absolute;
  z-index: 2;
  left: 11px;
  bottom: 9px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-media em {
  position: absolute;
  z-index: 3;
  top: 9px;
  right: 9px;
  padding: 5px 8px;
  border-radius: 6px;
  color: var(--steel-dark);
  background: var(--lime);
  box-shadow: 0 8px 20px rgba(3, 18, 37, 0.2);
  font-size: 0.74rem;
  font-style: normal;
  font-weight: 800;
}

.case-copy {
  padding: 16px 17px 18px;
}

.case-copy .eyebrow {
  margin-bottom: 5px;
}

.case-copy h3 {
  margin-bottom: 7px;
  font-size: 1.12rem;
}

.case-copy p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.48;
}

.cta {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: 32px;
  align-items: stretch;
  background:
    linear-gradient(100deg, var(--white), #f4f7f9),
    repeating-linear-gradient(135deg, rgba(169, 230, 41, 0.12) 0 1px, transparent 1px 20px);
  border-top: 1px solid var(--line);
}

.cta p {
  max-width: 640px;
  margin-top: 18px;
  font-size: 1.06rem;
}

.contact-copy {
  display: grid;
  align-content: start;
  gap: 24px;
}

.contact-copy address {
  width: fit-content;
  padding: 16px 18px;
  border-left: 4px solid var(--lime);
  color: var(--steel);
  background: rgba(255, 255, 255, 0.74);
  font-style: normal;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(8, 33, 61, 0.08);
}

.contact-actions {
  grid-column: 1;
  justify-content: flex-start;
  align-self: end;
  margin-top: 0;
}

.map-card {
  grid-column: 2;
  grid-row: 1 / span 2;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(8, 33, 61, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 18px;
  align-items: center;
  padding: 26px clamp(20px, 6vw, 88px);
  color: var(--white);
  background: linear-gradient(135deg, #031225, #08213d);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroIn {
  from {
    opacity: 0.82;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes headerWave {
  0%,
  100% {
    transform: translateY(0);
    text-shadow: inherit;
  }

  45% {
    transform: translateY(-2px);
    text-shadow: 0 8px 24px rgba(169, 230, 41, 0.14);
  }

  52% {
    transform: translateY(1px);
  }
}

@keyframes headerWaveLine {
  from {
    background-position-x: 0;
  }

  to {
    background-position-x: 160px;
  }
}

@keyframes arrowFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }
}

.site-footer p:first-child {
  color: var(--white);
  font-weight: 800;
}

.site-footer a {
  grid-row: span 2;
  align-self: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  font-weight: 700;
  transition: color 160ms ease, transform 160ms ease;
}

.site-footer a:hover {
  color: var(--white);
  transform: translateX(3px);
}

[data-word-pop] .word {
  display: inline-block;
  margin-right: 0.28em;
  transform-origin: center bottom;
  animation: wordPop 4.4s cubic-bezier(0.2, 0.8, 0.2, 1) infinite;
  animation-delay: calc(var(--word-index) * 150ms);
  will-change: transform, color, text-shadow;
}

[data-word-pop] .word:last-child {
  margin-right: 0;
}

@keyframes wordPop {
  0%,
  58%,
  100% {
    color: inherit;
    transform: scale(1);
    text-shadow: inherit;
  }

  8% {
    color: var(--lime);
    transform: scale(1.045);
    text-shadow: 0 0 22px rgba(169, 230, 41, 0.34);
  }
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 30px;
  background: rgba(8, 10, 13, 0.92);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(1120px, 92vw);
  max-height: 76vh;
  border-radius: 8px;
  box-shadow: var(--shadow);
  object-fit: contain;
}

.lightbox-copy {
  position: absolute;
  right: 80px;
  bottom: 22px;
  left: 80px;
  color: var(--white);
  text-align: center;
}

.lightbox-copy p {
  margin: 0;
  color: var(--white);
  font-weight: 700;
}

.lightbox-copy span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.8rem;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  display: grid;
  width: 50px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  font-size: 2.4rem;
  line-height: 1;
  transform: translateY(-50%);
}

.lightbox-nav.previous {
  left: 18px;
}

.lightbox-nav.next {
  right: 18px;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 10px;
  padding: 12px 17px 12px 13px;
  border: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 30px;
  color: var(--white);
  background: #25d366;
  box-shadow: 0 14px 34px rgba(3, 18, 37, 0.28);
  font-size: 0.88rem;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 18px 42px rgba(3, 18, 37, 0.36);
}

.floating-whatsapp svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

@media (max-width: 980px) {
  .site-nav {
    position: fixed;
    top: 96px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

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

  .nav-toggle {
    position: relative;
    z-index: 2;
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    color: currentColor;
    background: transparent;
    cursor: pointer;
    transition: transform 220ms ease, background 180ms ease;
  }

  .nav-toggle:hover {
    transform: rotate(24deg) scale(1.04);
    background: rgba(255, 255, 255, 0.1);
  }

  .nav-toggle[aria-expanded="true"] {
    transform: rotate(90deg);
  }

  .wheel {
    position: relative;
    display: grid;
    width: 26px;
    height: 26px;
    place-items: center;
    border: 3px solid currentColor;
    border-radius: 50%;
  }

  .wheel::before {
    width: 8px;
    height: 8px;
    border: 2px solid currentColor;
    border-radius: 50%;
    content: "";
  }

  .wheel span {
    position: absolute;
    width: 2px;
    height: 100%;
    background: currentColor;
    opacity: 0.82;
  }

  .wheel span:nth-child(2) {
    transform: rotate(45deg);
  }

  .wheel span:nth-child(3) {
    transform: rotate(90deg);
  }

  .wheel span:nth-child(4) {
    transform: rotate(135deg);
  }

  .intro,
  .cta {
    grid-template-columns: 1fr;
  }

  .contact-actions,
  .map-card {
    grid-column: auto;
    grid-row: auto;
  }

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

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

@media (max-width: 680px) {
  .brand-logo {
    width: 172px;
    height: 68px;
  }

  .hero {
    min-height: 100svh;
    padding: 96px 18px 26px;
  }

  .scroll-cue {
    right: 18px;
    bottom: 18px;
    width: 46px;
    height: 46px;
  }

  .hero-media::after {
    background: rgba(10, 12, 15, 0.68);
  }

  .hero-content {
    padding-bottom: 0;
  }

  .hero-actions,
  .contact-actions {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .section,
  .process,
  .cta {
    padding-right: 18px;
    padding-left: 18px;
  }

  .intro {
    padding-top: 78px;
  }

  .intro-visual {
    min-height: 320px;
  }

  .intro-photo {
    width: 58%;
    height: 68%;
  }

  .intro-watermark {
    font-size: 3.1rem;
  }

  .map-card,
  .map-card iframe {
    min-height: 280px;
  }

  .service-grid,
  .process-steps,
  .case-grid {
    grid-template-columns: 1fr;
  }

  .case-media {
    height: 205px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-right: 18px;
    padding-left: 18px;
  }

  .site-footer a {
    grid-row: auto;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 56px;
    min-height: 56px;
    justify-content: center;
    padding: 10px;
  }

  .floating-whatsapp span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .lightbox {
    padding: 72px 18px 92px;
  }

  .lightbox img {
    max-width: 100%;
    max-height: 68vh;
  }

  .lightbox-nav {
    top: auto;
    bottom: 20px;
    width: 46px;
    height: 46px;
    transform: none;
  }

  .lightbox-copy {
    right: 70px;
    bottom: 22px;
    left: 70px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media video {
    display: none;
  }

  .hero-media {
    background:
      linear-gradient(rgba(3, 18, 37, 0.08), rgba(3, 18, 37, 0.08)),
      url("assets/00000006-PHOTO-2026-06-01-09-01-12.jpg") center / cover no-repeat;
  }

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