:root {
  --navy: #0b1b31;
  --navy-2: #132945;
  --ink: #14263a;
  --muted: #55687a;
  --orange: #e96b2c;
  --orange-dark: #c85018;
  --cream: #e4edf5;
  --sand: #d5e3ee;
  --paper: #f1f6fa;
  --white: #fbfdff;
  --line: #c8d7e3;
  --success: #18845b;
  --shadow: 0 24px 80px rgba(11, 27, 49, 0.14);
  --radius: 18px;
  --shell: 1180px;
}

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

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

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

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

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

h1,
h2,
h3 {
  font-family: "Arial Narrow", "Roboto Condensed", "Helvetica Neue Condensed", "Oswald", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

h2 {
  max-width: 850px;
  margin-bottom: 0;
  font-size: clamp(2.25rem, 5vw, 4.75rem);
}

h3 {
  font-size: clamp(1.35rem, 2.3vw, 1.8rem);
}

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy);
  transform: translateY(-150%);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(241, 246, 250, 0.94);
  backdrop-filter: blur(16px);
  transition: box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(11, 27, 49, 0.1);
  box-shadow: 0 8px 30px rgba(11, 27, 49, 0.08);
}

.header-inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-logo {
  width: 76px;
  height: 52px;
  flex: 0 0 auto;
  object-fit: contain;
}

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

.brand-copy strong {
  color: var(--navy);
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.69rem;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  color: #344154;
  font-size: 0.91rem;
  font-weight: 700;
}

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

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

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

.language-button {
  min-width: 44px;
  min-height: 42px;
  border: 1px solid rgba(11, 27, 49, 0.16);
  border-radius: 999px;
  color: var(--navy);
  background: transparent;
  font-size: 0.8rem;
  font-weight: 800;
}

.language-button:hover {
  border-color: var(--orange);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.93rem;
  font-weight: 800;
  letter-spacing: 0.015em;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

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

.button-orange {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 12px 28px rgba(233, 107, 44, 0.22);
}

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

.button-small {
  min-height: 44px;
  padding-inline: 18px;
  font-size: 0.86rem;
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
}

.button-outline-light:hover {
  color: var(--navy);
  background: var(--white);
}

.button-full {
  width: 100%;
}

.menu-button {
  display: none;
  width: 46px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
}

.menu-button span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
  transition: transform 180ms ease, opacity 180ms ease;
}

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

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

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

.mobile-menu {
  position: fixed;
  top: 82px;
  right: 0;
  left: 0;
  z-index: 99;
  min-height: calc(100dvh - 82px);
  padding: 30px 20px;
  color: var(--white);
  background: var(--navy);
}

.mobile-menu a {
  display: block;
  padding: 16px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-family: "Arial Narrow", "Roboto Condensed", "Helvetica Neue Condensed", Arial, sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
}

.hero {
  padding: 132px 0 74px;
  overflow: hidden;
  background:
    linear-gradient(rgba(11, 27, 49, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 27, 49, 0.025) 1px, transparent 1px),
    var(--paper);
  background-size: 36px 36px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(44px, 7vw, 92px);
}

.eyebrow {
  margin-bottom: 22px;
  color: var(--orange-dark);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #ff9a62;
}

.hero h1 {
  margin-bottom: 26px;
  color: var(--navy);
  font-size: clamp(3.6rem, 7.2vw, 7.4rem);
  letter-spacing: -0.06em;
  line-height: 0.83;
  text-transform: uppercase;
}

html[lang="es"] .hero h1 {
  font-size: clamp(3.35rem, 5.9vw, 6rem);
  line-height: 0.88;
}

.hero h1 span,
.hero h1 em {
  display: block;
}

.hero h1 em {
  margin-top: 14px;
  color: var(--orange);
  font-style: normal;
}

.hero-lead {
  max-width: 600px;
  margin-bottom: 34px;
  color: #465366;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.55;
}

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

.text-link {
  display: flex;
  flex-direction: column;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.text-link strong {
  color: var(--navy);
  font-size: 1rem;
}

.cta-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-proof {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin: 34px 0 0;
  padding: 0;
  color: #4e5b6e;
  list-style: none;
  font-size: 0.85rem;
  font-weight: 700;
}

.hero-proof li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-proof span[aria-hidden] {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--success);
  font-size: 0.7rem;
}

.hero-visual {
  position: relative;
  padding: 0 0 48px 36px;
}

.hero-visual::before {
  position: absolute;
  top: -24px;
  right: -80px;
  width: 76%;
  height: 78%;
  border: 2px solid var(--sand);
  content: "";
}

.hero-image-wrap {
  position: relative;
  z-index: 1;
  height: clamp(410px, 52vw, 650px);
  overflow: hidden;
  border-radius: 3px;
  box-shadow: var(--shadow);
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 46% center;
}

.hero-note {
  position: absolute;
  z-index: 2;
  right: -18px;
  bottom: 0;
  display: grid;
  width: min(340px, 75%);
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 18px;
  padding: 24px;
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 18px 42px rgba(11, 27, 49, 0.22);
}

.hero-note p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
}

.note-number {
  color: #ff9259;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.clarity-strip {
  border-top: 1px solid #c3d4e1;
  border-bottom: 1px solid #c3d4e1;
  background: #dfeaf3;
}

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

.clarity-grid > div {
  position: relative;
  min-height: 132px;
  padding: 30px 34px;
  border-right: 1px solid #bfd0de;
}

.clarity-grid > div:first-child {
  border-left: 1px solid #bfd0de;
}

.clarity-grid > div::before {
  position: absolute;
  top: 0;
  right: 34px;
  left: 34px;
  height: 3px;
  background: var(--orange);
  content: "";
}

.clarity-grid small,
.clarity-grid strong {
  display: block;
}

.clarity-grid small {
  margin-bottom: 10px;
  color: #64778a;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.clarity-grid strong {
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.4;
}

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

.section-heading {
  margin-bottom: 58px;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 70px;
}

.split-heading > p {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 1.08rem;
}

.services {
  background: #edf4f9;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  position: relative;
  min-height: 430px;
  padding: clamp(30px, 3.6vw, 44px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  transition: background 180ms ease, transform 180ms ease;
}

.service-card:hover {
  z-index: 2;
  background: #f2f7fb;
  transform: translateY(-4px);
}

.service-card-featured {
  color: var(--white);
  background: var(--navy);
}

.service-card-featured:hover {
  background: var(--navy-2);
}

.service-number {
  margin-bottom: 56px;
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.service-icon {
  position: absolute;
  top: 44px;
  right: 44px;
  width: 42px;
  color: var(--orange);
}

.service-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin-bottom: 18px;
}

.service-card p {
  max-width: 520px;
  margin-bottom: 28px;
  color: var(--muted);
}

.service-card-featured p {
  color: #b9c4d1;
}

.service-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.9rem;
  font-weight: 700;
}

.service-card li::before {
  margin-right: 10px;
  color: var(--orange);
  content: "—";
}

.scope-note {
  max-width: 850px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.turnover {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.045), transparent 42%),
    var(--navy);
}

.turnover::after {
  position: absolute;
  top: -180px;
  right: -120px;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  content: "";
}

.turnover-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 130px minmax(0, 1.15fr) minmax(300px, 0.72fr);
  align-items: start;
  gap: clamp(38px, 6vw, 82px);
}

.turnover-marker {
  display: grid;
  min-height: 160px;
  place-items: center;
  align-content: center;
  gap: 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--orange);
}

.turnover-marker span {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.turnover-marker svg {
  width: 44px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.turnover-copy h2 {
  max-width: 760px;
  margin-bottom: 26px;
  color: var(--white);
}

.turnover-copy > p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 32px;
  color: #c5d0dc;
  font-size: 1.06rem;
}

.turnover-points {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.turnover-points > div {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.turnover-points span,
.turnover-points strong {
  display: block;
}

.turnover-points span {
  margin-bottom: 8px;
  color: #ff9a62;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.turnover-points strong {
  color: var(--white);
  font-size: 0.96rem;
  line-height: 1.45;
}

.clients {
  background: var(--cream);
}

.clients-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}

.clients-media {
  position: relative;
}

.clients-media::before {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 90px;
  height: 90px;
  border-top: 4px solid var(--orange);
  border-left: 4px solid var(--orange);
  content: "";
}

.clients-media img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.media-caption {
  position: absolute;
  right: -24px;
  bottom: 28px;
  width: min(315px, 82%);
  padding: 24px 28px;
  color: var(--white);
  background: var(--orange);
  line-height: 1.25;
}

.media-caption span,
.media-caption strong {
  display: block;
}

.media-caption span {
  font-size: 0.8rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.media-caption strong {
  margin-top: 5px;
  font-family: "Arial Narrow", "Roboto Condensed", "Helvetica Neue Condensed", Arial, sans-serif;
  font-size: 1.45rem;
  text-transform: uppercase;
}

.clients-copy h2 {
  margin-bottom: 42px;
}

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

.client-list article {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.client-list article > span {
  color: var(--orange-dark);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.client-list h3 {
  margin-bottom: 8px;
  font-size: 1.35rem;
}

.client-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.process {
  background: var(--white);
}

.centered-heading {
  max-width: 880px;
  margin-inline: auto;
  text-align: center;
}

.centered-heading .eyebrow {
  margin-bottom: 24px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.process-grid li {
  position: relative;
  min-height: 260px;
  padding: 40px 36px 20px;
  border-right: 1px solid var(--line);
}

.process-grid li:last-child {
  border-right: 0;
}

.step-number {
  display: inline-block;
  margin-bottom: 58px;
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.process-grid h3 {
  margin-bottom: 12px;
}

.process-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.about {
  color: var(--white);
  background: var(--navy);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(50px, 8vw, 100px);
}

.about-copy h2 {
  margin-bottom: 30px;
  color: var(--white);
}

.about-copy p:not(.eyebrow) {
  color: #bbc6d4;
  font-size: 1.02rem;
}

.about-copy .button {
  margin-top: 16px;
}

.about-media {
  position: relative;
  padding-bottom: 52px;
}

.about-media img {
  width: 100%;
  min-height: 500px;
  object-fit: cover;
  filter: saturate(0.8);
}

.about-stamp {
  position: absolute;
  right: -18px;
  bottom: 0;
  display: grid;
  width: 170px;
  height: 170px;
  place-items: center;
  align-content: center;
  border: 8px solid var(--navy);
  border-radius: 50%;
  color: var(--navy);
  background: var(--orange);
  transform: rotate(-7deg);
}

.about-stamp strong {
  font-family: "Arial Narrow", "Roboto Condensed", "Helvetica Neue Condensed", Arial, sans-serif;
  font-size: 2.7rem;
  line-height: 1;
}

.about-stamp span {
  margin-top: 5px;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.area {
  background: var(--paper);
}

.area-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.75fr);
  gap: 80px;
}

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

.area-copy ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 20px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.88rem;
  font-weight: 800;
}

.area-copy li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.area-ask a {
  color: var(--orange-dark);
}

.area-ask a::after {
  margin-left: 7px;
  content: "→";
}

.estimate {
  color: var(--white);
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--navy);
  background-size: 38px 38px;
}

.estimate-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(460px, 1fr);
  align-items: start;
  gap: clamp(50px, 8vw, 110px);
}

.estimate-intro {
  position: sticky;
  top: 120px;
}

.estimate-intro h2 {
  margin-bottom: 26px;
  color: var(--white);
}

.estimate-intro > p:not(.eyebrow) {
  max-width: 520px;
  color: #bbc6d4;
  font-size: 1.04rem;
}

.contact-stack {
  display: grid;
  gap: 14px;
  margin-top: 42px;
}

.contact-stack a {
  display: flex;
  flex-direction: column;
  width: fit-content;
}

.contact-stack span {
  color: #8594a7;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-stack strong {
  color: var(--white);
}

.estimate-form {
  padding: clamp(28px, 5vw, 48px);
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
}

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

.estimate-form label {
  display: block;
  margin-bottom: 20px;
}

.estimate-form label > span {
  display: block;
  margin-bottom: 8px;
  color: #3c4859;
  font-size: 0.8rem;
  font-weight: 800;
}

.field-grid label > span {
  min-height: 2.55em;
}

.estimate-form input,
.estimate-form select,
.estimate-form textarea {
  width: 100%;
  border: 1px solid #cdd1d5;
  border-radius: 2px;
  outline: 0;
  color: var(--ink);
  background: var(--white);
}

.estimate-form input,
.estimate-form select {
  height: 52px;
  padding: 0 14px;
}

.estimate-form textarea {
  min-height: 135px;
  padding: 14px;
  resize: vertical;
}

.estimate-form input:focus,
.estimate-form select:focus,
.estimate-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(233, 107, 44, 0.14);
}

.estimate-form [aria-invalid="true"] {
  border-color: #b42318;
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.5;
}

.form-error {
  margin: 12px 0 0;
  color: #b42318;
  font-size: 0.84rem;
  font-weight: 700;
}

.faq {
  background: var(--cream);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: 90px;
}

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

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

.accordion summary {
  position: relative;
  padding: 24px 48px 24px 0;
  cursor: pointer;
  font-family: "Arial Narrow", "Roboto Condensed", "Helvetica Neue Condensed", Arial, sans-serif;
  font-size: 1.22rem;
  font-weight: 800;
  list-style: none;
}

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

.accordion summary::after {
  position: absolute;
  top: 20px;
  right: 0;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--navy);
  content: "+";
}

.accordion details[open] summary::after {
  content: "–";
}

.accordion details p {
  max-width: 720px;
  padding: 0 48px 24px 0;
  color: var(--muted);
}

.site-footer {
  padding: 58px 0 24px;
  color: #aeb9c7;
  background: #071423;
}

.site-footer .brand-copy strong {
  color: var(--white);
}

.site-footer .brand-copy small {
  color: #8998aa;
}

.site-footer .brand-logo {
  padding: 0;
  background: transparent;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-top > p {
  margin: 0;
  color: var(--white);
  font-family: "Arial Narrow", "Roboto Condensed", "Helvetica Neue Condensed", Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.social-links {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  font-size: 0.8rem;
  font-weight: 800;
}

.social-links a:hover {
  color: var(--orange);
}

.social-links a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  font-size: 0.75rem;
}

.footer-bottom p {
  margin: 0;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 4px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  background: #20b86a;
  box-shadow: 0 12px 32px rgba(7, 20, 35, 0.25);
  transition: opacity 160ms ease, transform 160ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px) scale(1.03);
}

.floating-whatsapp.is-obscured {
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(0.9);
}

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

:focus-visible {
  outline: 3px solid #ff9a62;
  outline-offset: 3px;
}

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

  .menu-button {
    display: block;
  }

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

  .hero-grid,
  .clients-layout,
  .about-grid {
    grid-template-columns: 1fr;
  }

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

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

  .clients-media {
    width: min(760px, 100%);
  }

  .clients-copy {
    max-width: 800px;
  }

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

  .about-media {
    width: min(800px, 100%);
    margin-left: auto;
  }

  .estimate-grid {
    grid-template-columns: minmax(0, 0.75fr) minmax(430px, 1fr);
    gap: 48px;
  }

  .turnover-layout {
    grid-template-columns: 110px minmax(0, 1fr);
  }

  .turnover-points {
    grid-column: 2;
  }
}

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

  .split-heading,
  .area-grid,
  .estimate-grid,
  .faq-grid,
  .turnover-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .turnover-marker {
    width: 120px;
    min-height: 120px;
  }

  .turnover-points {
    grid-column: auto;
  }

  .media-caption,
  .about-stamp {
    right: 0;
  }

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

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

  .clarity-grid > div,
  .clarity-grid > div:first-child {
    min-height: 0;
    padding: 26px 22px;
    border-right: 1px solid #bfd0de;
    border-bottom: 1px solid #bfd0de;
    border-left: 1px solid #bfd0de;
  }

  .clarity-grid > div:last-child {
    border-bottom: 0;
  }

  .clarity-grid > div::before {
    top: 22px;
    right: auto;
    bottom: 22px;
    left: 0;
    width: 3px;
    height: auto;
  }

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

  .process-grid li {
    min-height: 0;
    padding: 32px 12px 32px 70px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .step-number {
    position: absolute;
    top: 36px;
    left: 10px;
    margin: 0;
  }

  .estimate-intro {
    position: static;
  }

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

  .social-links {
    justify-content: flex-start;
  }
}

@media (max-width: 600px) {
  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .header-inner {
    min-height: 74px;
  }

  .brand-logo {
    width: 64px;
    height: 44px;
  }

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

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

  .mobile-menu {
    top: 74px;
    min-height: calc(100dvh - 74px);
  }

  .hero {
    padding: 110px 0 62px;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 17vw, 5.2rem);
  }

  html[lang="es"] .hero h1 {
    font-size: clamp(2.75rem, 13.5vw, 4.25rem);
    line-height: 0.9;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .hero-proof {
    display: grid;
    gap: 10px;
  }

  .hero-visual {
    padding: 0 0 58px;
  }

  .hero-visual::before {
    display: none;
  }

  .hero-image-wrap {
    height: 440px;
  }

  .hero-note {
    right: 0;
    width: 90%;
  }

  .section {
    padding: 82px 0;
  }

  .service-card {
    min-height: 0;
    padding: 32px 26px;
  }

  .service-number {
    margin-bottom: 42px;
  }

  .service-icon {
    top: 32px;
    right: 28px;
  }

  .clients-media img,
  .about-media img {
    min-height: 420px;
  }

  .media-caption {
    right: 0;
  }

  .about-stamp {
    right: 0;
    width: 142px;
    height: 142px;
  }

  .area-copy ul,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .field-grid label > span {
    min-height: 0;
  }

  .estimate-form {
    padding: 28px 20px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

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

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
  }
}

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