:root {
  --ink: #073b63;
  --ink-deep: #051f33;
  --blue: #078bc8;
  --blue-bright: #24b3e9;
  --green: #75c441;
  --green-bright: #97df67;
  --green-deep: #3d842e;
  --whatsapp: #25d366;
  --paper: #ffffff;
  --mist: #f2f8fb;
  --line: #d9e7ee;
  --muted: #526975;
  --shadow: 0 30px 80px rgba(4, 47, 79, 0.14);
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --container: min(1160px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  min-width: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI Variable", "Aptos", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

a {
  color: inherit;
}

svg {
  display: block;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  border-color: rgba(255, 255, 255, 0.11);
  background: rgba(5, 31, 51, 0.93);
  box-shadow: 0 12px 40px rgba(2, 20, 34, 0.22);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--paper);
  text-decoration: none;
}

.brand-logo-wrap {
  display: grid;
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  place-items: center;
  border-radius: 50%;
  background: transparent;
  box-shadow: 0 10px 26px rgba(1, 18, 31, 0.24);
}

.brand-logo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: contain;
  filter: drop-shadow(0 2px 3px rgba(5, 31, 51, 0.12));
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 1rem;
  letter-spacing: -0.025em;
}

.brand-copy small {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.3vw, 36px);
}

.desktop-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--green);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--paper);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 22px;
  border: 0;
  border-radius: 999px;
  font-size: 0.91rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

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

.button:focus-visible,
.text-link:focus-visible,
.brand:focus-visible,
.footer-contact a:focus-visible,
.floating-whatsapp:focus-visible,
summary:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
}

.button svg,
.text-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-small {
  min-height: 46px;
  padding: 11px 18px;
  font-size: 0.84rem;
}

.button-whatsapp {
  color: var(--ink-deep);
  background: var(--green);
  box-shadow: 0 12px 32px rgba(89, 164, 73, 0.2);
}

.button-whatsapp .fa-whatsapp {
  flex: 0 0 auto;
  font-size: 1.3rem;
  line-height: 1;
}

.button-primary {
  color: var(--ink-deep);
  background: var(--green);
  box-shadow: 0 18px 44px rgba(81, 161, 66, 0.26);
}

.button-primary:hover,
.button-whatsapp:hover {
  background: var(--green-bright);
  box-shadow: 0 22px 50px rgba(81, 161, 66, 0.32);
}

.button-dark {
  color: var(--paper);
  background: var(--ink-deep);
  box-shadow: 0 18px 40px rgba(9, 30, 40, 0.22);
}

.button-dark:hover {
  background: #173c4d;
  box-shadow: 0 22px 48px rgba(9, 30, 40, 0.3);
}

.button-large {
  min-height: 62px;
  padding-inline: 28px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 850px;
  padding: 150px 0 78px;
  color: var(--paper);
  background:
    linear-gradient(118deg, rgba(3, 48, 81, 0.54), transparent 55%),
    var(--ink-deep);
  isolation: isolate;
}

.hero::before {
  position: absolute;
  z-index: -2;
  top: -30%;
  right: -5%;
  width: 55vw;
  height: 1100px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
  content: "";
  transform: rotate(12deg);
}

.hero::after {
  position: absolute;
  z-index: -1;
  top: 142px;
  right: 7vw;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(134, 206, 115, 0.12);
  border-radius: 50%;
  content: "";
}

.hero-glow {
  position: absolute;
  z-index: -3;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-glow-one {
  top: -260px;
  left: -190px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(5, 133, 190, 0.56), transparent 68%);
}

.hero-glow-two {
  right: 14%;
  bottom: -320px;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(117, 196, 65, 0.18), transparent 70%);
}

.hero-logo-watermark {
  position: absolute;
  z-index: -1;
  top: 80px;
  left: 39%;
  width: 590px;
  height: 590px;
  object-fit: contain;
  opacity: 0.035;
  pointer-events: none;
  transform: rotate(-8deg);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(400px, 0.75fr);
  align-items: center;
  gap: clamp(56px, 7vw, 112px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  margin: 0 0 24px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow span {
  width: 28px;
  height: 2px;
  background: currentColor;
}

.hero h1 {
  max-width: 740px;
  margin: 0;
  font-size: clamp(3.45rem, 6.7vw, 6.6rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.068em;
}

.hero h1 em {
  color: var(--green);
  font-style: normal;
}

.hero-lead {
  max-width: 590px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1rem, 1.4vw, 1.14rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 36px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--paper);
  font-size: 0.9rem;
  font-weight: 700;
  text-underline-offset: 5px;
  transition: color 0.2s ease, gap 0.2s ease;
}

.text-link:hover {
  gap: 14px;
  color: var(--green);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 42px;
}

.hero-trust div {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.79rem;
  font-weight: 600;
}

.hero-trust svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: var(--green);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-visual {
  position: relative;
  z-index: 2;
  align-self: center;
}

.facade-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 44px 90px rgba(2, 13, 18, 0.38);
  transform: rotate(1.8deg);
  backdrop-filter: blur(10px);
}

.facade-card::after {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 44%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.12), transparent);
  content: "";
  pointer-events: none;
}

.facade-card img {
  width: 100%;
  aspect-ratio: 1.8 / 1;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.82) contrast(1.02);
}

.facade-card figcaption {
  position: relative;
  padding: 25px 28px 28px;
}

.facade-card strong,
.facade-card small {
  display: block;
}

.facade-card strong {
  max-width: 350px;
  margin-top: 14px;
  font-size: 1.35rem;
  line-height: 1.25;
  letter-spacing: -0.035em;
}

.facade-card small {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.76rem;
}

.image-tag {
  display: inline-flex;
  padding: 6px 10px;
  border: 1px solid rgba(134, 206, 115, 0.3);
  border-radius: 999px;
  color: var(--green);
  background: rgba(134, 206, 115, 0.08);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.bonus-stamp {
  position: absolute;
  z-index: 4;
  top: -42px;
  right: -30px;
  display: flex;
  width: 146px;
  height: 146px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 8px solid var(--ink-deep);
  border-radius: 50%;
  color: var(--ink-deep);
  background: var(--green);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.28);
  transform: rotate(8deg);
}

.bonus-stamp strong {
  font-size: 2.7rem;
  line-height: 0.88;
  letter-spacing: -0.08em;
}

.bonus-stamp strong span {
  margin-left: 2px;
  font-size: 1.25rem;
}

.bonus-stamp small {
  margin-top: 7px;
  font-size: 0.64rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}

.contact-card {
  position: relative;
  z-index: 3;
  display: grid;
  width: calc(100% - 42px);
  min-height: 84px;
  margin: -10px auto 0;
  padding: 16px 19px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 20px;
  color: var(--ink-deep);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 50px rgba(3, 20, 28, 0.32);
  transform: rotate(-1.2deg);
}

.contact-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 14px;
  background: var(--green);
}

.contact-icon .fa-whatsapp {
  color: var(--ink-deep);
  font-size: 1.65rem;
  line-height: 1;
}

.contact-card small,
.contact-card a {
  display: block;
}

.contact-card small {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.contact-card a {
  margin-top: 2px;
  font-size: 0.98rem;
  font-weight: 800;
  text-decoration: none;
}

.card-arrow {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-ticker {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-slide 30s linear infinite;
  will-change: transform;
}

.ticker-set {
  display: flex;
  flex: 0 0 auto;
  min-height: 58px;
  align-items: center;
  gap: 30px;
  padding-inline: 20px 10px;
  color: rgba(255, 255, 255, 0.43);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.ticker-set i {
  width: 5px;
  height: 5px;
  flex: 0 0 5px;
  border-radius: 50%;
  background: var(--green);
}

@keyframes ticker-slide {
  to {
    transform: translateX(-50%);
  }
}

.section {
  padding: clamp(86px, 10vw, 140px) 0;
}

.section-head {
  display: grid;
  margin-bottom: 60px;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  align-items: end;
  gap: 50px;
}

.section-head h2,
.object-copy h2,
.bonus-copy h2,
.contact-grid h2,
.faq-intro h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(2.3rem, 4.2vw, 4.4rem);
  font-weight: 800;
  line-height: 1.01;
  letter-spacing: -0.06em;
}

.section-kicker {
  color: var(--green-deep);
}

.section-head > p {
  max-width: 410px;
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.services-section {
  position: relative;
  overflow: hidden;
  background: var(--mist);
}

.services-section::before {
  position: absolute;
  top: 60px;
  right: 3%;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(7, 139, 200, 0.1);
  border-radius: 50%;
  content: "";
}

.services-section::after {
  display: none;
}

.services-section > .container {
  position: relative;
  z-index: 1;
}

.service-grid {
  display: grid;
  grid-auto-rows: minmax(272px, auto);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  position: relative;
  display: flex;
  overflow: hidden;
  min-height: 272px;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
  border: 1px solid #dce8ed;
  border-radius: 24px;
  color: var(--ink-deep);
  background: var(--paper);
  box-shadow: 0 14px 36px rgba(4, 47, 79, 0.07);
  isolation: isolate;
}

.service-card::before {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--green);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.service-card::after {
  display: none;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card-wide {
  grid-column: span 2;
}

.service-top {
  display: flex;
  min-height: 70px;
  align-items: flex-start;
  justify-content: flex-end;
}

.service-number {
  display: inline-flex;
  min-width: 38px;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  padding: 4px 10px;
  border: 1px solid #dce8ed;
  border-radius: 999px;
  color: var(--ink);
  background: var(--mist);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.service-card svg {
  box-sizing: content-box;
  width: 44px;
  height: 44px;
  padding: 12px;
  border: 1px solid #dce8ed;
  border-radius: 17px;
  color: var(--blue);
  background: var(--mist);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-copy {
  max-width: 470px;
}

.service-card h3 {
  margin: 0;
  font-size: 1.48rem;
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.service-card-wide h3 {
  font-size: clamp(1.75rem, 2.3vw, 2.15rem);
}

.service-card p {
  max-width: 430px;
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.62;
}

@media (hover: hover) and (pointer: fine) {
  .service-card:hover::before {
    transform: scaleX(1);
  }
}

.service-card.is-pressed::before {
  transform: scaleX(1);
}

@media (hover: none) and (pointer: coarse) {
  .service-card:active::before {
    transform: scaleX(1);
    transition-duration: 0.14s;
  }
}

.object-section {
  overflow: hidden;
  background: var(--mist);
}

.object-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.82fr);
  align-items: center;
  gap: clamp(50px, 7vw, 100px);
}

.object-image {
  position: relative;
  min-height: 510px;
  padding: 34px;
  border-radius: var(--radius-lg);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.object-image::before,
.object-image::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.object-image::before {
  top: -38px;
  right: -38px;
  width: 150px;
  height: 150px;
  border: 22px solid var(--green);
  opacity: 0.85;
}

.object-image::after {
  bottom: 28px;
  left: 30px;
  width: 88px;
  height: 88px;
  background: rgba(134, 206, 115, 0.15);
}

.object-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 370px;
  border-radius: 18px;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.06);
}

.object-image-label {
  position: absolute;
  z-index: 2;
  right: 8px;
  bottom: 18px;
  width: 245px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 40px rgba(5, 26, 35, 0.24);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.4;
  backdrop-filter: blur(10px);
}

.object-image-label span {
  display: block;
  margin-bottom: 6px;
  color: var(--green-deep);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.object-copy > p:not(.section-kicker) {
  margin: 28px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.check-list {
  display: grid;
  margin: 30px 0 32px;
  padding: 0;
  gap: 14px;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  font-weight: 700;
}

.check-list span {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink-deep);
  background: var(--green);
  font-size: 0.78rem;
}

.text-link-dark {
  color: var(--ink);
}

.text-link-dark:hover {
  color: var(--green-deep);
}

.text-link-dark:focus-visible,
.faq-list summary:focus-visible {
  outline-color: var(--green-deep);
}

.bonus-section {
  padding-block: 48px;
  background: var(--paper);
}

.bonus-panel {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 310px;
  padding: clamp(36px, 5vw, 68px);
  grid-template-columns: 0.72fr 1.15fr auto;
  align-items: center;
  gap: clamp(30px, 5vw, 70px);
  border-radius: var(--radius-lg);
  color: var(--ink-deep);
  background: var(--green);
}

.bonus-panel::after {
  position: absolute;
  top: -170px;
  right: 18%;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(16, 42, 56, 0.13);
  border-radius: 50%;
  content: "";
}

.bonus-figure {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  letter-spacing: -0.09em;
}

.bonus-figure strong {
  font-size: clamp(5rem, 10vw, 8.6rem);
  font-weight: 800;
  line-height: 0.78;
}

.bonus-figure span {
  margin: -6px 0 0 8px;
  font-size: clamp(2rem, 4vw, 3.7rem);
  font-weight: 800;
  line-height: 1;
}

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

.bonus-copy .section-kicker {
  margin-bottom: 15px;
  color: rgba(16, 42, 56, 0.65);
}

.bonus-copy h2 {
  font-size: clamp(2.25rem, 4vw, 3.8rem);
}

.bonus-copy > p:last-child {
  max-width: 530px;
  margin: 20px 0 0;
  color: rgba(10, 32, 44, 0.7);
  font-size: 0.94rem;
}

.bonus-panel .button {
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

.contact-section {
  color: var(--paper);
  background: var(--ink);
}

.contact-section .section-kicker {
  color: var(--green);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(50px, 9vw, 130px);
}

.contact-grid h2 {
  max-width: 540px;
  font-size: clamp(2.4rem, 4.4vw, 4.6rem);
}

.steps {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  display: grid;
  padding: 28px 0;
  grid-template-columns: auto 1fr;
  gap: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.steps li:first-child {
  padding-top: 4px;
}

.steps li > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(134, 206, 115, 0.4);
  border-radius: 50%;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 800;
}

.steps h3 {
  margin: 1px 0 6px;
  font-size: 1.08rem;
  letter-spacing: -0.025em;
}

.steps p {
  max-width: 470px;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
}

.faq-section {
  background: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(50px, 9vw, 130px);
}

.faq-intro h2 {
  font-size: clamp(2.5rem, 4.3vw, 4.4rem);
}

.faq-intro > p:not(.section-kicker) {
  margin: 22px 0;
  color: var(--muted);
}

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

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: grid;
  min-height: 88px;
  padding: 22px 4px;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.4;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary span {
  position: relative;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1.5px;
  background: var(--ink);
  content: "";
  transform: translate(-50%, -50%);
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary span {
  background: var(--green);
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 690px;
  margin: -4px 50px 26px 4px;
  color: var(--muted);
  font-size: 0.92rem;
}

.final-cta {
  color: var(--paper);
  background: var(--ink-deep);
}

.final-cta-inner {
  display: flex;
  min-height: 360px;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.final-cta .section-kicker {
  color: var(--green);
}

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

.final-cta .button {
  flex: 0 0 auto;
}

.site-footer {
  padding: 38px 0 118px;
  color: var(--paper);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--ink-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 50px;
}

.brand-footer .brand-logo-wrap {
  width: 54px;
  height: 54px;
  flex-basis: 54px;
}

.brand-footer .brand-copy strong {
  font-size: 0.88rem;
}

.brand-footer .brand-copy small {
  font-size: 0.6rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.footer-contact span {
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-contact a {
  margin-top: 6px;
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration-color: rgba(134, 206, 115, 0.5);
  text-underline-offset: 4px;
}

.footer-meta {
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.7rem;
  line-height: 1.7;
  text-align: right;
}

.floating-whatsapp {
  position: fixed;
  z-index: 110;
  right: 24px;
  bottom: 24px;
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 21px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  color: var(--ink-deep);
  background: linear-gradient(120deg, var(--whatsapp), #68eb82);
  box-shadow: 0 18px 44px rgba(3, 34, 53, 0.34), 0 0 0 0 rgba(37, 211, 102, 0.42);
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1;
  isolation: isolate;
  opacity: 1;
  text-decoration: none;
  visibility: visible;
  transition: opacity 0.22s ease, transform 0.22s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.floating-whatsapp::before {
  position: absolute;
  z-index: -1;
  inset: -5px;
  border: 2px solid rgba(37, 211, 102, 0.55);
  border-radius: inherit;
  content: "";
  opacity: 0;
  pointer-events: none;
}

.floating-whatsapp .fa-whatsapp {
  flex: 0 0 auto;
  font-size: 1.55rem;
  line-height: 1;
}

.floating-label-mobile {
  display: none;
}

.floating-whatsapp:focus-visible {
  outline-color: var(--blue);
}

.motion-ok .floating-whatsapp {
  animation: whatsapp-heartbeat 5.2s ease-in-out infinite;
}

.motion-ok .floating-whatsapp::before {
  animation: whatsapp-ring 5.2s ease-out infinite;
}

@media (hover: hover) and (pointer: fine) {
  .motion-ok .floating-whatsapp:hover {
    animation: none;
    transform: translateY(-3px);
  }

  .floating-whatsapp:hover {
    background: linear-gradient(120deg, #39db74, #7af092);
    box-shadow: 0 22px 54px rgba(3, 34, 53, 0.4), 0 0 0 6px rgba(37, 211, 102, 0.12);
  }
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px) scale(0.985);
  transition: opacity 0.58s ease, transform 0.58s ease;
}

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

@media (max-width: 1050px) {
  .desktop-nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-bottom: 118px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.7fr);
    gap: 44px;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 7.8vw, 5.5rem);
  }

  .bonus-stamp {
    right: -18px;
    width: 126px;
    height: 126px;
  }

  .bonus-stamp strong {
    font-size: 2.3rem;
  }

  .bonus-panel {
    grid-template-columns: auto 1fr;
  }

  .bonus-panel .button {
    width: max-content;
    grid-column: 2;
  }

  .final-cta-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }
}

@media (max-width: 820px) {
  :root {
    --container: min(100% - 32px, 680px);
  }

  .nav-wrap {
    min-height: 74px;
  }

  .site-header .button-small {
    min-height: 44px;
    padding-inline: 15px;
  }

  .site-header .button-small svg {
    display: none;
  }

  .hero {
    padding-top: 126px;
  }

  .hero-grid,
  .section-head,
  .object-grid,
  .contact-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 78px;
  }

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

  .hero-visual {
    width: min(100%, 560px);
    margin-inline: auto;
  }

  .section-head {
    gap: 24px;
  }

  .section-head > p {
    max-width: 580px;
  }

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

  .service-card-wide {
    grid-column: span 1;
  }

  .object-grid,
  .contact-grid,
  .faq-grid {
    gap: 58px;
  }

  .object-image {
    min-height: 450px;
  }

  .object-image img {
    height: 340px;
  }

  .bonus-panel {
    padding: 44px;
    grid-template-columns: auto 1fr;
    gap: 28px 38px;
  }

  .bonus-panel .button {
    width: 100%;
    grid-column: 1 / -1;
  }

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

  .footer-meta {
    grid-column: 1 / -1;
    text-align: left;
  }
}

@media (max-width: 560px) {
  :root {
    --container: calc(100% - 28px);
    --radius-lg: 24px;
  }

  html {
    scroll-padding-top: 78px;
  }

  body {
    padding-bottom: 0;
    font-size: 18px;
    line-height: 1.65;
  }

  .site-header .button-small {
    display: none;
  }

  .brand-logo-wrap {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
  }

  .brand-copy strong {
    font-size: 1rem;
  }

  .brand-copy small {
    margin-top: 6px;
    font-size: 0.72rem;
  }

  .hero {
    padding: 104px 0 96px;
  }

  .hero-logo-watermark {
    display: none;
  }

  .hero::after {
    display: none;
  }

  .hero-glow-one {
    top: -280px;
    left: -250px;
    opacity: 0.52;
  }

  .hero-glow-two {
    display: none;
  }

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

  .hero-copy {
    display: contents;
  }

  .hero-copy > * {
    position: relative;
    z-index: 2;
  }

  .hero-copy .eyebrow {
    order: 1;
  }

  .hero h1 {
    order: 2;
  }

  .hero-lead {
    order: 3;
  }

  .hero-actions {
    order: 4;
  }

  .hero-visual {
    order: 5;
  }

  .hero-trust {
    order: 6;
  }

  .eyebrow,
  .section-kicker {
    margin-bottom: 15px;
    font-size: 0.78rem;
  }

  .hero .eyebrow {
    align-self: flex-start;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 12vw, 3.25rem);
    line-height: 0.94;
    letter-spacing: -0.06em;
  }

  .hero-lead {
    max-width: 36rem;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 1.04rem;
    line-height: 1.58;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
    margin-top: 24px;
  }

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

  .button {
    min-height: 58px;
    font-size: 1rem;
  }

  .hero-actions .text-link {
    align-self: flex-start;
    font-size: 0.94rem;
  }

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

  .hero-trust div {
    min-height: 62px;
    padding: 10px 11px;
    align-items: flex-start;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 15px;
    color: rgba(255, 255, 255, 0.76);
    background: rgba(255, 255, 255, 0.045);
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .hero-trust svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
  }

  .bonus-stamp {
    top: -14px;
    right: 14px;
    width: 82px;
    height: 82px;
    border-width: 4px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
    transform: rotate(4deg);
  }

  .bonus-stamp strong {
    font-size: 1.55rem;
  }

  .bonus-stamp strong span {
    font-size: 0.78rem;
  }

  .bonus-stamp small {
    margin-top: 4px;
    font-size: 0.48rem;
  }

  .hero-visual {
    width: 100%;
    margin: 28px 0 0;
  }

  .facade-card {
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 22px;
    box-shadow: 0 24px 56px rgba(1, 16, 28, 0.34);
    transform: none;
    backdrop-filter: none;
  }

  .facade-card::after {
    z-index: 1;
    inset: 0;
    height: auto;
    background: linear-gradient(to top, rgba(3, 24, 39, 0.92), rgba(3, 24, 39, 0.24) 53%, transparent 80%);
  }

  .facade-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-position: center;
    filter: none;
  }

  .facade-card figcaption {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 18px;
  }

  .facade-card strong {
    max-width: 260px;
    margin-top: 8px;
    font-size: 1.12rem;
  }

  .facade-card small {
    display: none;
  }

  .image-tag {
    padding: 5px 8px;
    font-size: 0.61rem;
  }

  .contact-card {
    display: none;
  }

  .ticker-set {
    min-height: 62px;
    font-size: 0.76rem;
  }

  .section {
    padding-block: 82px;
  }

  .section-head {
    margin-bottom: 38px;
  }

  .section-head h2,
  .object-copy h2,
  .contact-grid h2,
  .faq-intro h2,
  .final-cta h2 {
    font-size: clamp(2.25rem, 11vw, 3.35rem);
  }

  .service-grid {
    grid-auto-rows: auto;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .service-card {
    display: grid;
    min-height: 210px;
    padding: 23px;
    grid-template-columns: 64px minmax(0, 1fr);
    align-items: start;
    gap: 18px;
    border-radius: 23px;
  }

  .service-top {
    min-height: 0;
    justify-content: flex-start;
  }

  .service-card svg {
    width: 40px;
    height: 40px;
    padding: 10px;
    border-radius: 17px;
  }

  .service-number {
    min-width: 40px;
    min-height: 29px;
    margin-bottom: 11px;
    font-size: 0.72rem;
  }

  .service-card h3 {
    font-size: 1.42rem;
    overflow-wrap: anywhere;
  }

  .service-card-wide h3 {
    font-size: 1.55rem;
  }

  .service-card p {
    margin-top: 10px;
    font-size: 1rem;
    line-height: 1.58;
  }

  .section-head > p,
  .object-copy > p:not(.section-kicker),
  .bonus-copy > p:last-child,
  .steps p,
  .faq-intro > p:not(.section-kicker),
  .faq-list details p {
    font-size: 1rem;
    line-height: 1.68;
  }

  .check-list li {
    font-size: 1rem;
  }

  .object-image {
    min-height: 365px;
    padding: 20px;
  }

  .object-image::before {
    top: -26px;
    right: -20px;
    width: 105px;
    height: 105px;
    border-width: 16px;
  }

  .object-image img {
    height: 272px;
  }

  .object-image-label {
    right: 4px;
    bottom: 10px;
    width: 215px;
    padding: 15px 17px;
  }

  .bonus-section {
    padding-block: 24px;
  }

  .bonus-panel {
    padding: 36px 24px;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .bonus-figure strong {
    font-size: 6.5rem;
  }

  .bonus-figure span {
    font-size: 2.8rem;
  }

  .bonus-copy h2 {
    font-size: 2.55rem;
  }

  .bonus-panel .button {
    grid-column: 1;
    white-space: normal;
  }

  .steps li {
    gap: 16px;
  }

  .faq-list summary {
    min-height: 80px;
    padding-block: 20px;
    font-size: 1.04rem;
  }

  .faq-list details p {
    margin-right: 34px;
  }

  .final-cta-inner {
    min-height: 420px;
    gap: 34px;
  }

  .final-cta .button {
    width: 100%;
  }

  .site-footer {
    padding-bottom: calc(34px + env(safe-area-inset-bottom));
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-meta {
    grid-column: auto;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    left: 12px;
    width: min(calc(100% - 24px), 460px);
    min-height: 62px;
    margin-inline: auto;
    padding: 14px 20px;
    font-size: 1rem;
  }

  .js .floating-whatsapp {
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 28px)) scale(0.98);
    visibility: hidden;
    transition:
      opacity 0.24s ease,
      transform 0.36s cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s linear 0.36s,
      box-shadow 0.2s ease,
      background 0.2s ease;
  }

  .js .floating-whatsapp.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    visibility: visible;
    transition-delay: 0s;
  }

  .js.motion-ok .floating-whatsapp:not(.is-visible),
  .js.motion-ok .floating-whatsapp:not(.is-visible)::before {
    animation: none;
  }

  .floating-label-desktop {
    display: none;
  }

  .floating-label-mobile {
    display: inline;
  }

  .floating-whatsapp:active {
    transform: scale(0.985);
  }
}

@keyframes whatsapp-heartbeat {
  0%, 76%, 100% {
    box-shadow: 0 18px 48px rgba(3, 34, 53, 0.38), 0 0 0 0 rgba(37, 211, 102, 0.42);
  }
  81% {
    box-shadow: 0 20px 54px rgba(3, 34, 53, 0.42), 0 0 0 10px rgba(37, 211, 102, 0.08);
  }
  86% {
    box-shadow: 0 18px 48px rgba(3, 34, 53, 0.38), 0 0 0 0 rgba(37, 211, 102, 0.42);
  }
  90% {
    box-shadow: 0 19px 50px rgba(3, 34, 53, 0.4), 0 0 0 6px rgba(37, 211, 102, 0.06);
  }
}

@keyframes whatsapp-ring {
  0%, 74% {
    opacity: 0;
    transform: scale(0.97);
  }
  80% {
    opacity: 0.65;
  }
  93%, 100% {
    opacity: 0;
    transform: scale(1.09);
  }
}

/* Professional refinement */
:root {
  --ink: #123d57;
  --ink-deep: #062a43;
  --blue: #0a7eae;
  --blue-bright: #25a7d6;
  --green: #72bd44;
  --green-bright: #83c957;
  --green-deep: #3f7d2d;
  --mist: #f4f7f8;
  --line: #dce5e8;
  --muted: #5b6f7a;
  --shadow: 0 20px 55px rgba(6, 42, 67, 0.12);
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 10px;
}

body {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.65;
}

.site-header {
  background: linear-gradient(to bottom, rgba(6, 42, 67, 0.72), rgba(6, 42, 67, 0));
}

.site-header.is-scrolled {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(6, 42, 67, 0.98);
  box-shadow: 0 8px 28px rgba(3, 27, 44, 0.2);
}

.nav-wrap {
  min-height: 80px;
}

.brand-logo-wrap {
  width: 52px;
  height: 52px;
  flex-basis: 52px;
  box-shadow: none;
}

.brand-copy strong {
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.015em;
}

.brand-copy small {
  margin-top: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.07em;
}

.desktop-nav a {
  font-size: 0.88rem;
  font-weight: 600;
}

.button {
  min-height: 52px;
  padding: 13px 20px;
  border-radius: 12px;
  font-size: 0.94rem;
  font-weight: 700;
}

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

.button-small {
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 10px;
}

.button-primary,
.button-whatsapp {
  box-shadow: 0 12px 30px rgba(75, 143, 48, 0.2);
}

.hero {
  min-height: 760px;
  padding: 138px 0 106px;
  background: var(--ink-deep);
}

.hero::before {
  z-index: -1;
  top: 0;
  right: 0;
  width: 39%;
  height: 100%;
  border-left: 1px solid rgba(255, 255, 255, 0.055);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(10, 126, 174, 0.045));
  transform: none;
}

.hero::after,
.hero-glow,
.hero-logo-watermark {
  display: none;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.04fr) minmax(390px, 0.82fr);
  gap: clamp(54px, 6vw, 86px);
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(3.15rem, 4.5vw, 4.35rem);
  font-weight: 700;
  line-height: 1.01;
  letter-spacing: -0.045em;
}

.hero h1 em {
  color: #83c957;
}

.eyebrow,
.section-kicker {
  margin-bottom: 20px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.hero-lead {
  max-width: 580px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.08rem;
  line-height: 1.7;
}

.hero-actions {
  gap: 22px;
  margin-top: 30px;
}

.text-link {
  font-size: 0.92rem;
  font-weight: 600;
}

.hero-trust {
  margin-top: 34px;
  padding-top: 21px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-trust div {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
  font-weight: 500;
}

.hero-visual {
  width: min(100%, 500px);
  justify-self: end;
}

.facade-card {
  aspect-ratio: auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  color: var(--ink-deep);
  background: var(--paper);
  box-shadow: 0 24px 64px rgba(2, 24, 39, 0.3);
  transform: none;
  backdrop-filter: none;
}

.facade-card::after {
  display: none;
}

.facade-card img {
  position: relative;
  inset: auto;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  filter: none;
}

.facade-card figcaption {
  position: relative;
  z-index: 1;
  inset: auto;
  padding: 20px 22px 22px;
}

.facade-card strong {
  max-width: none;
  margin-top: 10px;
  font-size: 1.14rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.facade-card small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.82rem;
}

.image-tag {
  padding: 5px 8px;
  border-color: #d8e8cf;
  border-radius: 6px;
  color: var(--green-deep);
  background: #f0f7ec;
  font-size: 0.74rem;
  letter-spacing: 0.07em;
}

.bonus-stamp {
  top: 16px;
  right: 16px;
  width: 152px;
  height: auto;
  min-height: 78px;
  padding: 13px 15px;
  align-items: flex-start;
  border: 1px solid rgba(63, 125, 45, 0.22);
  border-radius: 12px;
  color: var(--ink-deep);
  background: rgba(245, 251, 241, 0.96);
  box-shadow: 0 14px 32px rgba(3, 31, 49, 0.16);
  transform: none;
}

.bonus-stamp strong {
  font-size: 1.85rem;
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.bonus-stamp strong span {
  font-size: 0.92rem;
}

.bonus-stamp small {
  margin-top: 6px;
  color: var(--green-deep);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.04em;
  text-align: left;
}

.contact-card {
  display: none;
}

.service-ticker {
  background: #082f49;
}

.ticker-track {
  width: 100%;
  animation: none;
}

.ticker-set {
  width: 100%;
  min-height: 54px;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
}

.ticker-set:nth-child(2) {
  display: none;
}

.section {
  padding-block: 104px;
}

.section-head {
  margin-bottom: 46px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  gap: 56px;
}

.section-head h2,
.object-copy h2,
.bonus-copy h2,
.contact-grid h2,
.faq-intro h2,
.final-cta h2 {
  font-size: clamp(2.35rem, 3.9vw, 3.55rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.section-head > p {
  font-size: 1rem;
  line-height: 1.7;
}

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

.services-section::before,
.services-section::after {
  display: none;
}

.service-grid {
  grid-auto-rows: auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.service-card,
.service-card-wide {
  display: grid;
  min-height: 168px;
  padding: 24px;
  grid-column: auto;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: start;
  justify-content: stretch;
  gap: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: none;
}

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

.service-card::before {
  height: 3px;
}

.service-top {
  min-height: 0;
  justify-content: flex-start;
}

.service-card svg {
  box-sizing: border-box;
  width: 52px;
  height: 52px;
  padding: 11px;
  border-radius: 12px;
  color: var(--blue);
  background: #f2f7f9;
}

.service-number {
  display: none;
}

.service-card h3,
.service-card-wide h3 {
  margin-top: 3px;
  font-size: 1.28rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.service-card p {
  margin-top: 7px;
  font-size: 0.95rem;
  line-height: 1.55;
}

.service-card[data-service-target] {
  cursor: pointer;
  text-decoration: none;
}

.service-card[data-service-target]:focus-visible {
  outline: 3px solid var(--green-deep);
  outline-offset: 4px;
}

.service-reference-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--green-deep);
  font-size: 0.8rem;
  font-weight: 750;
  letter-spacing: 0.015em;
}

.service-reference-link > span {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 1px solid rgba(63, 140, 36, 0.24);
  border-radius: 50%;
  transition: transform 0.24s var(--ease-out);
}

.object-section {
  background: var(--paper);
}

.object-grid {
  grid-template-columns: minmax(360px, 0.86fr) minmax(0, 1fr);
  gap: clamp(54px, 7vw, 90px);
}

.object-image {
  overflow: hidden;
  min-height: 0;
  padding: 0;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.object-image::before,
.object-image::after {
  display: none;
}

.object-image img {
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-position: 68% center;
  filter: none;
}

.object-image-label {
  right: auto;
  bottom: 16px;
  left: 16px;
  width: min(290px, calc(100% - 32px));
  padding: 14px 16px;
  border: 0;
  border-radius: 10px;
  color: var(--paper);
  background: rgba(6, 42, 67, 0.94);
  box-shadow: none;
  font-size: 0.82rem;
  backdrop-filter: blur(8px);
}

.object-image-label span {
  color: var(--green-bright);
  font-size: 0.72rem;
}

.object-copy > p:not(.section-kicker) {
  max-width: 610px;
  margin-top: 24px;
  line-height: 1.7;
}

.check-list {
  margin: 26px 0 28px;
  gap: 12px;
}

.check-list li {
  font-size: 0.96rem;
  font-weight: 600;
}

.check-list span {
  width: 26px;
  height: 26px;
  flex-basis: 26px;
  font-size: 0.72rem;
}

.bonus-section {
  padding-block: 72px;
  background: var(--mist);
}

.bonus-panel {
  min-height: 0;
  padding: 42px;
  grid-template-columns: 104px minmax(0, 1fr) auto;
  gap: 38px;
  border: 1px solid #d6e7cf;
  border-radius: 18px;
  color: var(--ink-deep);
  background: #eef6e9;
}

.bonus-panel::after {
  display: none;
}

.bonus-figure {
  width: 104px;
  height: 104px;
  align-items: flex-start;
  justify-content: center;
  padding: 22px 13px;
  border-radius: 14px;
  color: var(--paper);
  background: var(--ink-deep);
}

.bonus-figure strong {
  font-size: 3.7rem;
  line-height: 0.9;
}

.bonus-figure span {
  margin: 2px 0 0 4px;
  color: var(--green-bright);
  font-size: 1.35rem;
}

.bonus-copy .section-kicker {
  color: var(--green-deep);
}

.bonus-copy h2 {
  font-size: clamp(2rem, 3.2vw, 2.8rem);
}

.bonus-copy > p:last-child {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.contact-section {
  background: #0b344d;
}

.contact-grid {
  gap: clamp(54px, 8vw, 110px);
}

.contact-grid h2 {
  font-size: clamp(2.35rem, 3.9vw, 3.55rem);
}

.steps li {
  padding-block: 24px;
}

.steps h3 {
  font-size: 1.08rem;
  font-weight: 700;
}

.steps p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.94rem;
  line-height: 1.55;
}

.faq-grid {
  gap: clamp(54px, 8vw, 110px);
}

.faq-list summary {
  min-height: 80px;
  font-weight: 700;
}

.faq-list details p {
  font-size: 0.94rem;
  line-height: 1.6;
}

.final-cta-inner {
  min-height: 280px;
}

.site-footer {
  padding: 34px 0 92px;
}

.brand-footer .brand-copy strong {
  font-size: 0.9rem;
}

.brand-footer .brand-copy small,
.footer-contact span {
  font-size: 0.75rem;
}

.footer-contact a {
  font-size: 0.9rem;
}

.footer-meta {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
}

.floating-whatsapp {
  min-height: 52px;
  padding: 12px 16px;
  border: 0;
  border-radius: 14px;
  background: var(--whatsapp);
  box-shadow: 0 14px 36px rgba(3, 34, 53, 0.28);
  font-size: 0.92rem;
  font-weight: 700;
}

.floating-whatsapp::before {
  display: none;
}

.floating-whatsapp .fa-whatsapp {
  font-size: 1.35rem;
}

.motion-ok .floating-whatsapp {
  animation-duration: 7s;
}

@media (hover: hover) and (pointer: fine) {
  .floating-whatsapp:hover {
    background: #36d874;
    box-shadow: 0 17px 40px rgba(3, 34, 53, 0.32);
  }
}

.js .reveal {
  transform: translateY(14px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.js .reveal.is-visible {
  transform: translateY(0);
}

@media (max-width: 1050px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
    gap: 44px;
  }

  .hero h1 {
    font-size: clamp(3rem, 5.8vw, 4rem);
  }
}

@media (max-width: 820px) {
  .section {
    padding-block: 78px;
  }

  .hero {
    padding: 120px 0 104px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-visual {
    width: min(100%, 580px);
    margin-inline: 0;
    justify-self: start;
  }

  .section-head,
  .object-grid,
  .contact-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .section-head {
    margin-bottom: 38px;
  }

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

  .service-card,
  .service-card-wide {
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 17px;
  }

  .service-card svg {
    width: 48px;
    height: 48px;
  }

  .object-image {
    width: min(100%, 600px);
  }

  .bonus-section {
    padding-block: 64px;
  }

  .bonus-panel {
    grid-template-columns: 104px minmax(0, 1fr);
  }

  .bonus-panel .button {
    width: max-content;
    grid-column: 2;
  }

  .final-cta-inner {
    min-height: 260px;
  }
}

@media (max-width: 560px) {
  :root {
    --container: calc(100% - 40px);
  }

  html {
    scroll-padding-top: 70px;
    scroll-padding-bottom: 74px;
  }

  body {
    font-size: 17px;
    line-height: 1.6;
  }

  .nav-wrap {
    min-height: 66px;
  }

  .brand {
    gap: 10px;
  }

  .brand-logo-wrap {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .brand-copy strong {
    font-size: 0.94rem;
  }

  .brand-copy small {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 96px 0 60px;
  }

  .hero::before {
    width: 28%;
  }

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

  .hero-copy {
    display: contents;
  }

  .hero h1 {
    font-size: clamp(2.15rem, 9.8vw, 2.6rem);
    font-weight: 700;
    line-height: 1.03;
    letter-spacing: -0.04em;
  }

  .eyebrow,
  .section-kicker {
    margin-bottom: 14px;
    font-size: 0.78rem;
    letter-spacing: 0.09em;
  }

  .hero-lead {
    margin-top: 18px;
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
    margin-top: 22px;
  }

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

  .button {
    min-height: 54px;
    border-radius: 11px;
    font-size: 0.96rem;
  }

  .hero-actions .text-link {
    align-self: flex-start;
    font-size: 0.94rem;
  }

  .hero-visual {
    width: 100%;
    margin: 24px 0 0;
  }

  .facade-card {
    aspect-ratio: auto;
    border-radius: 14px;
    box-shadow: 0 18px 42px rgba(2, 24, 39, 0.24);
  }

  .facade-card img {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .facade-card figcaption {
    position: relative;
    inset: auto;
    padding: 15px 16px 17px;
  }

  .facade-card strong {
    margin-top: 7px;
    font-size: 1.04rem;
  }

  .facade-card small {
    display: block;
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .image-tag {
    font-size: 0.75rem;
  }

  .bonus-stamp {
    top: 10px;
    right: 10px;
    width: auto;
    min-width: 154px;
    min-height: 46px;
    padding: 8px 10px;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 7px;
    border: 0;
    border-radius: 9px;
  }

  .bonus-stamp strong {
    font-size: 1.2rem;
    white-space: nowrap;
  }

  .bonus-stamp strong span {
    font-size: 0.72rem;
  }

  .bonus-stamp small {
    margin-top: 0;
    font-size: 0.75rem;
    line-height: 1.1;
  }

  .hero-trust {
    display: flex;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .hero-trust div {
    min-height: 0;
    padding: 0;
    border: 0;
    color: rgba(255, 255, 255, 0.68);
    background: none;
    font-size: 0.84rem;
    line-height: 1.45;
  }

  .hero-trust svg {
    margin-top: 1px;
  }

  .service-ticker {
    display: none;
  }

  .section {
    padding-block: 64px;
  }

  .section-head {
    margin-bottom: 30px;
    gap: 18px;
  }

  .section-head h2,
  .object-copy h2,
  .bonus-copy h2,
  .contact-grid h2,
  .faq-intro h2,
  .final-cta h2 {
    font-size: clamp(2rem, 9.4vw, 2.25rem);
    line-height: 1.08;
    letter-spacing: -0.035em;
  }

  .section-head > p,
  .object-copy > p:not(.section-kicker),
  .bonus-copy > p:last-child,
  .steps p,
  .faq-intro > p:not(.section-kicker),
  .faq-list details p {
    font-size: 0.96rem;
    line-height: 1.6;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .service-card,
  .service-card-wide {
    min-height: 118px;
    padding: 18px;
    grid-column: auto;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
    border-radius: 14px;
  }

  .service-card:last-child {
    grid-column: auto;
  }

  .service-card svg {
    width: 42px;
    height: 42px;
    padding: 9px;
    border-radius: 10px;
  }

  .service-card h3,
  .service-card-wide h3 {
    margin-top: 1px;
    font-size: 1.12rem;
    line-height: 1.25;
  }

  .service-card p {
    margin-top: 5px;
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .object-grid {
    gap: 0;
  }

  .object-image {
    display: none;
  }

  .check-list {
    margin-block: 24px 26px;
  }

  .check-list li {
    font-size: 0.94rem;
  }

  .bonus-section {
    padding-block: 64px;
  }

  .bonus-panel {
    padding: 24px;
    grid-template-columns: 1fr;
    gap: 24px;
    border-radius: 16px;
  }

  .bonus-figure {
    width: 92px;
    height: 82px;
    padding: 18px 11px;
    border-radius: 12px;
  }

  .bonus-figure strong {
    font-size: 3.15rem;
  }

  .bonus-figure span {
    font-size: 1.15rem;
  }

  .bonus-copy h2 {
    font-size: 2rem;
  }

  .bonus-panel .button {
    width: 100%;
    grid-column: 1;
  }

  .contact-grid,
  .faq-grid {
    gap: 34px;
  }

  .steps li {
    padding-block: 21px;
    gap: 15px;
  }

  .steps li > span {
    width: 38px;
    height: 38px;
  }

  .faq-list summary {
    min-height: 72px;
    padding-block: 18px;
    font-size: 0.98rem;
  }

  .final-cta {
    padding-block: 64px;
  }

  .final-cta-inner {
    min-height: 0;
    gap: 28px;
  }

  .site-footer {
    padding: 30px 0 calc(86px + env(safe-area-inset-bottom));
  }

  .footer-grid {
    gap: 24px;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    left: auto;
    width: auto;
    max-width: calc(100% - 24px);
    min-height: 50px;
    margin: 0;
    padding: 12px 17px;
    border-radius: 14px;
    font-size: 0.9rem;
  }

  .js .floating-whatsapp {
    transform: translateY(calc(100% + 26px));
  }

  .js .floating-whatsapp.is-visible {
    transform: translateY(0);
  }

  .js .reveal {
    transform: none;
    transition: opacity 0.32s ease;
  }
}

/* Living, professional motion layer */
:root {
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

::selection {
  color: var(--ink-deep);
  background: rgba(114, 189, 68, 0.28);
}

.hero {
  background:
    radial-gradient(72% 86% at 79% 42%, rgba(10, 126, 174, 0.17), transparent 62%),
    var(--ink-deep);
}

.hero::after {
  display: block;
  position: absolute;
  z-index: -1;
  inset: 0;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  opacity: 0.34;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 35%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 35%, #000 100%);
}

.hero-visual::before {
  position: absolute;
  z-index: -1;
  inset: 16px -14px -16px 16px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.018);
  content: "";
  transition: inset 0.45s var(--ease-out), border-color 0.28s ease;
}

.hero-visual::after {
  position: absolute;
  z-index: 5;
  bottom: -18px;
  left: 28px;
  width: 72px;
  height: 4px;
  border-radius: 999px;
  background: var(--green);
  content: "";
  transition: width 0.45s var(--ease-out);
}

.facade-card img {
  transition: transform 0.68s var(--ease-out);
}

.motion-ok .hero-copy > * {
  animation: hero-enter 0.62s var(--ease-out) both;
}

.motion-ok .hero-copy > :nth-child(2) {
  animation-delay: 0.06s;
}

.motion-ok .hero-copy > :nth-child(3) {
  animation-delay: 0.12s;
}

.motion-ok .hero-copy > :nth-child(4) {
  animation-delay: 0.18s;
}

.motion-ok .hero-copy > :nth-child(5) {
  animation-delay: 0.24s;
}

.motion-ok .hero-visual {
  animation: hero-enter 0.68s 0.16s var(--ease-out) both;
}

@keyframes hero-enter {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-kicker::after {
  width: 28px;
  height: 1px;
  flex: 0 0 28px;
  background: currentColor;
  content: "";
  opacity: 0.55;
  transform: scaleX(0.3);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}

.reveal.is-visible .section-kicker::after,
.section-kicker.reveal.is-visible::after {
  transform: scaleX(1);
}

.js .reveal {
  transition: opacity 0.5s ease, transform 0.5s var(--ease-out);
}

.service-card {
  transition:
    translate 0.26s var(--ease-out),
    border-color 0.26s ease,
    box-shadow 0.26s ease,
    background-color 0.26s ease;
}

.service-card svg {
  transition:
    transform 0.34s var(--ease-out),
    color 0.24s ease,
    background-color 0.24s ease,
    border-color 0.24s ease;
}

.motion-ok .service-card.is-visible svg {
  animation: icon-arrive 0.44s var(--ease-out) both;
}

@keyframes icon-arrive {
  from {
    opacity: 0.35;
    transform: translateY(6px);
  }
}

.service-card.is-pressed {
  border-color: rgba(114, 189, 68, 0.42);
}

.service-card.is-pressed svg {
  color: var(--green-deep);
  border-color: #d4e7ca;
  background: #eef6e9;
  transform: translateY(-1px);
}

.object-image img {
  transition: transform 0.68s var(--ease-out);
}

.object-image-label {
  transition: transform 0.42s var(--ease-out), background-color 0.28s ease;
}

.bonus-panel::before {
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 0;
  width: 4px;
  border-radius: 0 999px 999px 0;
  background: var(--green);
  content: "";
}

.motion-ok .bonus-panel.is-visible .bonus-figure {
  animation: bonus-arrive 0.52s 0.1s var(--ease-out) both;
}

@keyframes bonus-arrive {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
}

.steps {
  position: relative;
}

.steps::before {
  position: absolute;
  top: 24px;
  bottom: 28px;
  left: 21px;
  width: 1px;
  background: linear-gradient(var(--green), rgba(114, 189, 68, 0.08));
  content: "";
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.8s var(--ease-out);
}

.steps.is-visible::before {
  transform: scaleY(1);
}

.steps li {
  position: relative;
  z-index: 1;
}

.steps li > span {
  background: #0b344d;
  transition:
    color 0.28s ease,
    border-color 0.28s ease,
    background-color 0.28s ease,
    transform 0.4s var(--ease-out);
}

.steps li.is-visible > span {
  color: var(--ink-deep);
  border-color: var(--green);
  background: var(--green);
}

.faq-list details {
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-list details[open] {
  background: linear-gradient(90deg, rgba(114, 189, 68, 0.08), transparent 72%);
  box-shadow: inset 3px 0 var(--green);
}

.faq-list details[open] > p {
  animation: faq-open 0.28s var(--ease-out) both;
}

@keyframes faq-open {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
}

.button svg,
.text-link span,
.floating-whatsapp .fa-whatsapp {
  transition: transform 0.25s var(--ease-out);
}

.button-dark:focus-visible {
  outline-color: var(--ink-deep);
  box-shadow: 0 0 0 3px var(--paper), 0 0 0 6px var(--ink-deep);
}

.desktop-nav a[aria-current="location"] {
  color: var(--paper);
}

.desktop-nav a[aria-current="location"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.ticker-track {
  will-change: auto;
}

.motion-ok .floating-whatsapp {
  animation: none;
}

.motion-ok .floating-whatsapp.is-visible {
  animation: whatsapp-heartbeat 5.5s ease-in-out 2;
}

@media (hover: hover) and (pointer: fine) {
  .hero-visual:hover::before {
    inset: 20px -18px -20px 20px;
    border-color: rgba(255, 255, 255, 0.17);
  }

  .hero-visual:hover::after {
    width: 108px;
  }

  .hero-visual:hover .facade-card img {
    transform: scale(1.018);
  }

  .service-card:hover {
    border-color: rgba(10, 126, 174, 0.25);
    box-shadow: 0 16px 36px rgba(6, 42, 67, 0.09);
    translate: 0 -2px;
  }

  .service-card:hover svg {
    color: var(--green-deep);
    border-color: #d4e7ca;
    background: #eef6e9;
    transform: translateY(-2px);
  }

  .service-card:hover .service-reference-link > span {
    transform: translateY(3px);
  }

  .object-image:hover img {
    transform: scale(1.022);
  }

  .object-image:hover .object-image-label {
    background: rgba(6, 42, 67, 0.98);
    transform: translateY(-3px);
  }

  .button:hover svg {
    transform: translateX(3px);
  }

  .text-link:hover span {
    transform: translateY(2px);
  }

  .floating-whatsapp:hover .fa-whatsapp {
    transform: rotate(-6deg) scale(1.06);
  }
}

@media (hover: none) and (pointer: coarse) {
  a,
  button,
  summary {
    -webkit-tap-highlight-color: rgba(114, 189, 68, 0.24);
  }

  .button:active {
    transform: scale(0.985);
  }
}

@media (max-width: 560px) {
  .motion-ok .hero-copy > *,
  .motion-ok .hero-visual {
    animation-name: hero-enter-mobile;
  }

  @keyframes hero-enter-mobile {
    from {
      opacity: 0;
    }
  }

  .hero::after {
    background-size: 44px 44px;
    opacity: 0.2;
    -webkit-mask-image: linear-gradient(90deg, transparent 10%, #000 100%);
    mask-image: linear-gradient(90deg, transparent 10%, #000 100%);
  }

  .hero-visual::before {
    inset: 8px -7px -8px 8px;
    border-radius: 16px;
  }

  .hero-visual::after {
    bottom: -10px;
    left: 20px;
    width: 52px;
    height: 3px;
  }

  .js .reveal {
    transform: none;
    transition: opacity 0.34s ease;
  }

  .steps::before {
    left: 19px;
  }

  .bonus-panel::before {
    top: 20px;
    bottom: 20px;
    width: 3px;
  }
}

/* Before-and-after references */
.references-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(6, 42, 67, 0.06);
  background: linear-gradient(180deg, var(--paper) 0%, #f2f6f7 100%);
}

.references-section::before {
  position: absolute;
  top: 80px;
  right: -180px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(114, 189, 68, 0.12);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.references-head {
  position: relative;
  z-index: 1;
  margin-bottom: 34px;
}

.gallery-hint {
  display: none;
}

.reference-grid {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, 940px);
  margin-inline: auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.reference-card {
  display: flex;
  overflow: hidden;
  min-width: 0;
  padding: 0;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--ink-deep);
  background: var(--paper);
  box-shadow: 0 12px 34px rgba(6, 42, 67, 0.07);
  font: inherit;
  text-align: left;
  appearance: none;
  cursor: zoom-in;
  transition:
    translate 0.28s var(--ease-out),
    border-color 0.24s ease,
    box-shadow 0.28s ease;
}

.reference-card:last-child {
  width: calc((100% - 16px) / 2);
  grid-column: 1 / -1;
  justify-self: center;
}

.reference-media {
  display: block;
  overflow: hidden;
  width: 100%;
  flex: 0 0 auto;
  aspect-ratio: 3 / 2;
  background: #e8eef0;
}

.reference-media img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: contain;
  transition: transform 0.55s var(--ease-out);
}

.reference-caption {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 15px 14px;
}

.reference-caption small,
.reference-caption strong {
  display: block;
}

.reference-caption small {
  margin-bottom: 4px;
  color: var(--green-deep);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reference-caption strong {
  font-size: 1.08rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.reference-action {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.reference-action span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink-deep);
  background: var(--mist);
  transition:
    color 0.22s ease,
    border-color 0.22s ease,
    background-color 0.22s ease,
    transform 0.28s var(--ease-out);
}

.reference-card:focus-visible {
  outline: 3px solid var(--green-deep);
  outline-offset: 4px;
}

.reference-card[id] {
  scroll-margin-block: 110px;
}

.reference-card.is-targeted {
  border-color: var(--green-deep);
  box-shadow:
    0 0 0 5px rgba(114, 189, 68, 0.2),
    0 20px 48px rgba(6, 42, 67, 0.12);
}

.reference-card.is-targeted .reference-action span {
  color: var(--paper);
  border-color: var(--green-deep);
  background: var(--green-deep);
}

.motion-ok .reference-card.is-targeted {
  animation: reference-target-pulse 1.25s var(--ease-out) both;
}

.gallery-note {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
  text-align: center;
}

.reference-dialog {
  width: min(920px, calc(100vw - 48px));
  max-width: none;
  max-height: calc(100dvh - 32px);
  margin: auto;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  color: var(--paper);
  background: var(--ink-deep);
  box-shadow: 0 34px 100px rgba(2, 20, 34, 0.5);
}

.reference-dialog[open] {
  animation: reference-dialog-in 0.28s var(--ease-out) both;
}

.reference-dialog::backdrop {
  background: rgba(2, 20, 34, 0.76);
  backdrop-filter: blur(8px);
  animation: reference-backdrop-in 0.22s ease both;
}

.reference-dialog-shell {
  position: relative;
  display: grid;
}

.reference-dialog-media {
  display: grid;
  overflow: auto;
  min-height: 0;
  padding: 12px;
  place-items: center;
  background: #031b2b;
  overscroll-behavior: contain;
}

.reference-dialog-media img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: min(640px, calc(100dvh - 176px));
  object-fit: contain;
}

.reference-dialog-caption {
  display: flex;
  min-height: 96px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #082f49;
}

.reference-dialog-caption p,
.reference-dialog-caption h2 {
  margin: 0;
}

.reference-dialog-caption p {
  margin-bottom: 4px;
  color: var(--green-bright);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.reference-dialog-caption h2 {
  color: var(--paper);
  font-size: 1.35rem;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.reference-dialog-caption > span {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.82rem;
  font-weight: 700;
}

.reference-dialog-close,
.reference-dialog-nav {
  position: absolute;
  z-index: 3;
  display: grid;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  color: var(--paper);
  background: rgba(6, 42, 67, 0.88);
  box-shadow: 0 8px 24px rgba(2, 20, 34, 0.24);
  font: inherit;
  font-size: 1.28rem;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease,
    transform 0.25s var(--ease-out);
}

.reference-dialog-close {
  top: 14px;
  right: 14px;
  font-size: 1.65rem;
  line-height: 1;
}

.reference-dialog-nav {
  top: 44%;
  transform: translateY(-50%);
}

.reference-dialog-nav-prev {
  left: 14px;
}

.reference-dialog-nav-next {
  right: 14px;
}

.reference-dialog-close:focus-visible,
.reference-dialog-nav:focus-visible {
  outline: 3px solid var(--green-bright);
  outline-offset: 3px;
}

.dialog-open {
  overflow: hidden;
}

.floating-whatsapp.is-dialog-hidden {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translateY(12px) scale(0.96);
}

@keyframes reference-dialog-in {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.985);
  }
}

@keyframes reference-backdrop-in {
  from {
    opacity: 0;
  }
}

@keyframes reference-target-pulse {
  0%,
  100% {
    box-shadow:
      0 0 0 5px rgba(114, 189, 68, 0.2),
      0 20px 48px rgba(6, 42, 67, 0.12);
  }

  50% {
    box-shadow:
      0 0 0 9px rgba(114, 189, 68, 0.1),
      0 22px 52px rgba(6, 42, 67, 0.15);
  }
}

@media (hover: hover) and (pointer: fine) {
  .reference-card:hover {
    border-color: rgba(10, 126, 174, 0.28);
    box-shadow: 0 20px 48px rgba(6, 42, 67, 0.12);
    translate: 0 -3px;
  }

  .reference-card:hover .reference-media img {
    transform: scale(1.012);
  }

  .reference-card:hover .reference-action span {
    color: var(--paper);
    border-color: var(--green-deep);
    background: var(--green-deep);
    transform: translate(2px, -2px);
  }

  .reference-dialog-close:hover,
  .reference-dialog-nav:hover {
    color: var(--ink-deep);
    border-color: var(--green);
    background: var(--green);
  }

  .reference-dialog-close:hover {
    transform: rotate(4deg);
  }

  .reference-dialog-nav:hover {
    transform: translateY(-50%) scale(1.05);
  }
}

@media (max-width: 820px) {
  .references-head {
    margin-bottom: 20px;
  }

  .gallery-hint {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 12px;
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 700;
  }

  .gallery-hint span {
    color: var(--green-deep);
    font-size: 1rem;
  }

  .reference-grid {
    width: auto;
    grid-auto-columns: min(80vw, 460px);
    grid-auto-flow: column;
    grid-template-columns: none;
    grid-template-rows: 1fr;
    gap: 12px;
    margin-inline: -20px;
    padding: 4px 20px 18px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 20px;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .reference-grid::-webkit-scrollbar {
    display: none;
  }

  .reference-card,
  .reference-card:last-child {
    width: 100%;
    grid-column: auto;
    justify-self: stretch;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .gallery-note {
    margin-top: 12px;
    text-align: left;
  }
}

@media (max-width: 560px) {
  .references-section::before {
    display: none;
  }

  .reference-grid {
    grid-auto-columns: min(calc(100vw - 64px), 320px);
  }

  .reference-caption {
    min-height: 68px;
    gap: 12px;
    padding: 12px 13px;
  }

  .reference-caption small {
    font-size: 0.75rem;
  }

  .reference-caption strong {
    font-size: 1rem;
  }

  .reference-action {
    font-size: 0.8rem;
  }

  .reference-action span {
    width: 26px;
    height: 26px;
  }

  .reference-dialog {
    width: calc(100vw - 24px);
    max-height: calc(100dvh - 24px);
    border-radius: 14px;
  }

  .reference-dialog-media {
    padding: 8px;
  }

  .reference-dialog-media img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: calc(100dvh - 134px);
  }

  .reference-dialog-caption {
    min-height: 86px;
    gap: 14px;
    padding: 14px 16px;
  }

  .reference-dialog-caption p {
    font-size: 0.75rem;
  }

  .reference-dialog-caption h2 {
    font-size: 1.08rem;
  }

  .reference-dialog-close,
  .reference-dialog-nav {
    width: 42px;
    height: 42px;
  }

  .reference-dialog-close {
    top: 10px;
    right: 10px;
  }

  .reference-dialog-nav-prev {
    left: 8px;
  }

  .reference-dialog-nav-next {
    right: 8px;
  }
}

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

  .js .reveal,
  .js .reveal.is-visible {
    opacity: 1 !important;
    transform: none !important;
  }

  .ticker-track,
  .floating-whatsapp,
  .floating-whatsapp::before {
    animation: none !important;
  }

  .hero-copy > *,
  .hero-visual,
  .service-card svg,
  .bonus-figure,
  .faq-list details[open] > p,
  .reference-dialog[open],
  .reference-dialog::backdrop {
    animation: none !important;
  }

  .service-card,
  .service-card svg,
  .facade-card img,
  .object-image img,
  .object-image-label,
  .button svg,
  .text-link span,
  .floating-whatsapp .fa-whatsapp,
  .reference-card,
  .reference-media img,
  .reference-action span,
  .reference-dialog-close {
    transform: none !important;
    translate: none !important;
  }

  .reference-dialog-nav {
    transform: translateY(-50%) !important;
  }

  .hero-visual::before,
  .hero-visual::after,
  .section-kicker::after,
  .steps::before {
    transition: none !important;
  }

  .section-kicker::after,
  .steps::before {
    transform: none !important;
  }
}

/* Legal pages and persistent legal navigation */
.footer-end {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.74rem;
  font-weight: 750;
  text-decoration-color: rgba(117, 196, 65, 0.62);
  text-underline-offset: 5px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.footer-legal a:hover,
.footer-legal a:focus-visible,
.footer-legal a[aria-current="page"] {
  color: var(--green-bright);
  text-decoration-color: currentColor;
}

.legal-page {
  overflow-x: clip;
  color: var(--ink-deep);
  background: #f3f8fb;
}

.legal-page a {
  overflow-wrap: anywhere;
}

.legal-site-header {
  position: fixed;
  border-color: rgba(255, 255, 255, 0.11);
  background: rgba(5, 31, 51, 0.97);
  box-shadow: 0 12px 40px rgba(2, 20, 34, 0.22);
  backdrop-filter: blur(16px);
}

.legal-site-header .nav-wrap {
  min-height: 78px;
}

.legal-back {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.84rem;
  font-weight: 750;
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease,
    transform 0.2s ease;
}

.legal-back:hover,
.legal-back:focus-visible {
  color: var(--ink-deep);
  border-color: var(--green);
  background: var(--green);
  transform: translateY(-1px);
}

.legal-back:focus-visible,
.legal-toc a:focus-visible,
.legal-document a:focus-visible,
.footer-legal a:focus-visible {
  outline: 3px solid var(--green-bright);
  outline-offset: 4px;
}

.legal-main {
  min-height: 70vh;
}

.legal-hero {
  position: relative;
  overflow: hidden;
  padding: 152px 0 72px;
  color: var(--paper);
  background:
    radial-gradient(circle at 85% 24%, rgba(117, 196, 65, 0.22), transparent 24%),
    linear-gradient(130deg, #041c2e 0%, #073b63 68%, #065883 100%);
}

.legal-hero::after {
  position: absolute;
  right: -120px;
  bottom: -210px;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 54px rgba(255, 255, 255, 0.025), 0 0 0 108px rgba(255, 255, 255, 0.018);
  content: "";
}

.legal-hero-inner {
  position: relative;
  z-index: 1;
}

.legal-overline {
  margin: 0 0 12px;
  color: var(--green-bright);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.legal-hero h1 {
  max-width: 900px;
  margin: 0;
  color: var(--paper);
  font-size: clamp(2.7rem, 7vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.legal-hero > .container > p:last-child {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
}

.legal-content {
  padding: 68px 0 96px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 235px minmax(0, 1fr);
  align-items: start;
  gap: clamp(28px, 5vw, 64px);
}

.legal-toc {
  position: sticky;
  top: 110px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 20px;
  border: 1px solid rgba(7, 59, 99, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 50px rgba(4, 47, 79, 0.06);
  backdrop-filter: blur(12px);
}

.legal-toc strong {
  margin: 0 0 9px;
  color: var(--ink-deep);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-toc a {
  padding: 7px 9px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 650;
  line-height: 1.35;
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.legal-toc a:hover {
  color: var(--ink);
  background: rgba(117, 196, 65, 0.13);
}

.legal-document {
  min-width: 0;
  padding: clamp(30px, 5vw, 62px);
  border: 1px solid rgba(7, 59, 99, 0.1);
  border-radius: 28px;
  background: var(--paper);
  box-shadow: 0 26px 74px rgba(4, 47, 79, 0.09);
}

.legal-document section {
  scroll-margin-top: 112px;
}

.legal-document section + section {
  margin-top: 46px;
  padding-top: 46px;
  border-top: 1px solid var(--line);
}

.legal-section-number {
  margin: 0 0 8px;
  color: var(--green-deep);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.legal-document h2 {
  margin: 0 0 20px;
  color: var(--ink-deep);
  font-size: clamp(1.5rem, 3vw, 2.05rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.legal-document h3 {
  margin: 30px 0 10px;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.3;
}

.legal-document p,
.legal-document li,
.legal-inline-address {
  color: #344f5d;
  font-size: 1rem;
  line-height: 1.78;
}

.legal-document p {
  margin: 0;
}

.legal-document p + p {
  margin-top: 16px;
}

.legal-document a {
  color: var(--ink);
  font-weight: 750;
  text-decoration-color: rgba(61, 132, 46, 0.58);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 4px;
}

.legal-document a:hover {
  color: var(--green-deep);
  text-decoration-color: currentColor;
}

.legal-address-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
}

.legal-address-grid address,
.legal-fact,
.legal-inline-address {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #f8fbfc;
  font-style: normal;
}

.legal-address-grid address {
  color: #344f5d;
  line-height: 1.75;
}

.legal-address-grid address strong,
.legal-inline-address strong {
  color: var(--ink-deep);
}

.legal-fact {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.legal-fact span,
.legal-contact-list span {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-fact strong {
  color: var(--ink-deep);
  font-size: 1rem;
  line-height: 1.65;
}

.legal-contact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.legal-contact-list a {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #f8fbfc;
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.legal-contact-list a:hover {
  border-color: rgba(61, 132, 46, 0.5);
  box-shadow: 0 14px 36px rgba(4, 47, 79, 0.08);
  transform: translateY(-2px);
}

.legal-contact-list strong {
  color: var(--ink-deep);
  font-size: 0.94rem;
}

.legal-note {
  padding: 18px 20px;
  border: 1px solid rgba(61, 132, 46, 0.22);
  border-left: 4px solid var(--green);
  border-radius: 12px;
  color: var(--ink-deep) !important;
  background: rgba(117, 196, 65, 0.1);
}

.legal-inline-address {
  margin-top: 18px;
}

.legal-list {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.legal-list li {
  position: relative;
  padding-left: 26px;
}

.legal-list li::before {
  position: absolute;
  top: 0.69em;
  left: 2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(117, 196, 65, 0.13);
  content: "";
}

.legal-updated {
  margin-top: 50px !important;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted) !important;
  font-size: 0.82rem !important;
}

.legal-footer {
  padding-bottom: 42px;
}

@media (max-width: 820px) {
  .footer-end {
    grid-column: 1 / -1;
    align-items: flex-start;
  }

  .footer-legal {
    justify-content: flex-start;
  }

  .footer-meta {
    text-align: left;
  }

  .legal-hero {
    padding: 136px 0 60px;
  }

  .legal-content {
    padding: 42px 0 72px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .legal-toc {
    position: static;
    display: flex;
    flex-flow: row wrap;
    gap: 6px;
  }

  .legal-toc strong {
    width: 100%;
  }

  .legal-toc a {
    border: 1px solid rgba(7, 59, 99, 0.1);
    background: var(--paper);
  }
}

@media (max-width: 560px) {
  .legal-site-header .nav-wrap {
    min-height: 72px;
    gap: 10px;
  }

  .legal-site-header .brand-logo-wrap {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }

  .legal-site-header .brand-copy small {
    display: none;
  }

  .legal-site-header .brand-copy strong {
    font-size: 0.86rem;
  }

  .legal-back {
    min-height: 40px;
    padding: 8px 11px;
    font-size: 0.78rem;
  }

  .legal-hero {
    padding: 124px 0 48px;
  }

  .legal-hero::after {
    right: -230px;
  }

  .legal-hero h1 {
    max-width: 100%;
    font-size: clamp(2.05rem, 9.4vw, 2.65rem);
    line-height: 1.02;
    overflow-wrap: anywhere;
  }

  .legal-hero > .container > p:last-child {
    margin-top: 16px;
    font-size: 0.96rem;
  }

  .legal-content {
    padding: 28px 0 56px;
  }

  .legal-toc {
    padding: 15px;
    border-radius: 15px;
  }

  .legal-toc a {
    padding: 7px 9px;
    font-size: 0.78rem;
  }

  .legal-document {
    padding: 28px 20px;
    border-radius: 20px;
  }

  .legal-document section + section {
    margin-top: 36px;
    padding-top: 36px;
  }

  .legal-address-grid,
  .legal-contact-list {
    grid-template-columns: 1fr;
  }

  .legal-address-grid address,
  .legal-fact,
  .legal-inline-address,
  .legal-contact-list a {
    padding: 18px;
  }

  .legal-document p,
  .legal-document li,
  .legal-inline-address {
    font-size: 0.96rem;
    line-height: 1.72;
  }

  .legal-footer {
    padding-bottom: 38px;
  }
}

@media print {
  .legal-page {
    background: #fff;
  }

  .legal-site-header,
  .legal-toc,
  .legal-footer {
    display: none !important;
  }

  .legal-hero {
    padding: 24px 0;
    color: #000;
    background: #fff;
  }

  .legal-hero h1,
  .legal-hero > .container > p:last-child,
  .legal-overline {
    color: #000;
  }

  .legal-content {
    padding: 16px 0;
  }

  .legal-layout {
    display: block;
  }

  .legal-document {
    padding: 0;
    border: 0;
    box-shadow: none;
  }
}
