@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/barlow-condensed-latin-600.woff2") format("woff2");
}
@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/barlow-condensed-latin-700.woff2") format("woff2");
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../fonts/manrope-latin-400-800.woff2") format("woff2");
}
:root {
  --navy: #071a4c;
  --navy-light: #102a63;
  --red: #ed1c24;
  --red-dark: #c9141c;
  --yellow: #ffd400;
  --yellow-light: #ffe451;
  --white: #fff;
  --surface: #f4f6f8;
  --surface-2: #e9edf3;
  --text: #0b1633;
  --muted: #667085;
  --whatsapp: #25d366;
  --whatsapp-light: #34e176;
  --whatsapp-dark: #128c4a;
  --border: #d9dee8;
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "Manrope", Arial, sans-serif;
  --container: min(1180px, calc(100% - clamp(2rem, 6vw, 6rem)));
  --section: clamp(4.5rem, 8vw, 7.5rem);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 9rem;
}
body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font: 400 1rem/1.7 var(--body);
  overflow-x: hidden;
}
body.menu-open {
  overflow: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
a,
button {
  touch-action: manipulation;
}
.container {
  width: var(--container);
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.5rem;
  left: 0.5rem;
  padding: 0.7rem 1rem;
  background: #fff;
  color: var(--navy);
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: none;
}
:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}
:is(
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  .eyebrow,
  .section-title,
  .card-title,
  .hero-title,
  .cta-title,
  summary,
  .btn
) {
  text-wrap: balance;
}
:is(
  p,
  li,
  .hero-copy,
  .section-description,
  .card-description,
  .cta-description
) {
  text-wrap: pretty;
}
.phone,
.phone-link {
  white-space: nowrap;
}
.site-header {
  position: relative;
  z-index: 100;
}
.nav-shell {
  background: #fff;
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.2s;
}
.site-header.scrolled .nav-shell {
  position: fixed;
  inset: 0 0 auto;
  box-shadow: 0 5px 22px rgba(7, 26, 76, 0.1);
}
.nav-wrap {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand {
  width: 225px;
  height: 68px;
  padding: 5px;
  background: #fff;
  display: flex;
  align-items: center;
}
.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 1.2vw, 1.25rem);
}
.main-nav > a:not(.btn) {
  min-height: 44px;
  display: flex;
  align-items: center;
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--navy);
  position: relative;
}
.main-nav > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 7px;
  height: 2px;
  background: var(--red);
  transition: right 0.2s;
}
.main-nav > a:hover::after {
  right: 0;
}
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
  transition:
    transform 0.2s,
    opacity 0.2s;
}
.btn {
  min-height: 50px;
  padding: 0.75rem 1.15rem;
  border: 2px solid var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s,
    transform 0.12s;
  cursor: pointer;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn:active {
  transform: scale(0.98);
}
.btn-small {
  min-height: 44px;
  padding: 0.55rem 0.9rem;
}
.btn.btn-whatsapp {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 50px;
  border: 1px solid rgba(109, 244, 159, 0.78);
  border-radius: 8px;
  background: linear-gradient(
    135deg,
    var(--whatsapp-light) 0%,
    var(--whatsapp) 45%,
    var(--whatsapp-dark) 100%
  );
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.22);
  color: var(--white);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.16);
}
.btn.btn-whatsapp::before,
.whatsapp-float::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: -50%;
  left: -70%;
  width: 35%;
  height: 200%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.48),
    transparent
  );
  transform: rotate(20deg);
  pointer-events: none;
  animation: whatsappShine 4.8s ease-in-out infinite;
}
.btn.btn-whatsapp::after {
  content: "";
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M20.5 3.5A11.8 11.8 0 0 0 1.9 17.7L.2 24l6.5-1.7A11.8 11.8 0 0 0 24 11.8c0-3.1-1.2-6-3.5-8.3ZM12 21.6c-1.8 0-3.5-.5-5-1.4l-.4-.2-3.8 1 1-3.7-.2-.4a9.5 9.5 0 1 1 8.4 4.7Zm5.2-7.1c-.3-.1-1.7-.8-1.9-.9-.3-.1-.5-.1-.7.2-.2.3-.7.9-.9 1.1-.2.2-.3.2-.6.1-1.7-.8-2.8-1.5-3.9-3.4-.3-.5.3-.5.8-1.5.1-.2 0-.4 0-.5l-.9-2.2c-.2-.6-.5-.5-.7-.5h-.6c-.2 0-.5.1-.8.4-.3.3-1 1-1 2.5s1.1 2.9 1.2 3.1c.1.2 2.1 3.3 5.2 4.6 1.9.8 2.7.9 3.7.7.6-.1 1.7-.7 1.9-1.4.2-.7.2-1.3.2-1.4-.2-.5-.5-.6-.8-.8Z'/%3E%3C/svg%3E") center/contain no-repeat;
  transition: transform 0.2s ease;
}
.btn.btn-whatsapp > span {
  display: none;
}
.btn.btn-whatsapp:hover {
  border-color: var(--whatsapp-light);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.36);
  color: var(--white);
  transform: translateY(-2px);
}
.btn.btn-whatsapp:hover::after {
  transform: translate(2px, -1px);
}
.btn.btn-whatsapp:active {
  transform: scale(0.98);
}
.btn-compact {
  min-height: 44px !important;
  padding: 0.58rem 0.85rem;
  font-size: 0.68rem;
}
.hero .btn-whatsapp,
.whatsapp-float {
  animation: whatsappPulse 3.6s ease-in-out infinite;
}
@keyframes whatsappShine {
  0%,
  72% {
    left: -70%;
  }
  88%,
  100% {
    left: 145%;
  }
}
@keyframes whatsappPulse {
  0%,
  100% {
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.22);
  }
  50% {
    box-shadow:
      0 12px 34px rgba(37, 211, 102, 0.38),
      0 0 0 7px rgba(37, 211, 102, 0.08);
  }
}
.btn-outline {
  background: #fff;
  color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: #fff;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.75rem 0;
}
.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  border-bottom: 2px solid var(--red);
}
.eyebrow {
  margin: 0 0 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--red-dark);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 4px;
  background: var(--yellow);
}
h1,
h2,
h3 {
  font-family: var(--display);
  color: var(--navy);
}
h1 {
  margin: 0;
  font-size: clamp(3rem, 5.4vw, 4.875rem);
  line-height: 0.98;
  letter-spacing: -0.018em;
}
h1 strong,
h2 strong {
  color: var(--red);
  font-weight: inherit;
}
h2 {
  margin: 0;
  font-size: clamp(2.25rem, 4vw, 3.625rem);
  line-height: 1.04;
  letter-spacing: -0.012em;
}
h3 {
  font-size: 1.55rem;
  line-height: 1.1;
}
.hero {
  position: relative;
  min-height: clamp(700px, 82vh, 780px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}
.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-media picture {
  display: block;
  width: 100%;
  height: 100%;
}
.hero-background {
  position: absolute;
  inset: -2% 0;
  width: 100%;
  height: 104%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}
.hero-image-fade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(7, 26, 76, 0.97) 0%,
      rgba(7, 26, 76, 0.9) 34%,
      rgba(7, 26, 76, 0.58) 60%,
      rgba(7, 26, 76, 0.12) 100%
    ),
    linear-gradient(0deg, rgba(7, 26, 76, 0.45), transparent 52%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-block: clamp(6rem, 10vw, 9rem);
}
.hero-copy-wrapper {
  max-width: 710px;
}
.hero .eyebrow {
  color: var(--yellow);
}
.hero .eyebrow::before {
  background: var(--red);
}
.hero h1 {
  max-width: 700px;
  color: var(--white);
  font-size: clamp(3.5rem, 5vw, 4.5rem);
  line-height: 1;
}
.hero h1 strong {
  color: var(--yellow);
}
.hero-description {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.05rem;
}
.hero .btn-outline {
  border-color: var(--white);
  background: transparent;
  color: var(--white);
}
.hero .btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}
.hero-trust {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.25rem;
}
.hero-trust li {
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
}
.hero-trust li::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 19px;
  height: 19px;
  margin-right: 0.45rem;
  background: var(--yellow);
  color: var(--navy);
  font-weight: 800;
}
.section {
  padding-block: var(--section);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(3rem, 8vw, 7rem);
}
.prose p {
  margin: 0 0 1.1rem;
  color: var(--muted);
}
.services {
  background: var(--surface);
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.section-head > div {
  max-width: 680px;
}
.section-head > p {
  max-width: 390px;
  margin: 0;
  color: var(--muted);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  min-height: 410px;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(7, 26, 76, 0.1);
}
.service-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}
.service-card > div {
  padding: 1.3rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
}
.tag {
  display: inline-flex;
  padding: 0.24rem 0.55rem;
  background: #fee8e9;
  color: var(--red-dark);
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.tag.yellow {
  background: var(--yellow);
  color: var(--navy);
}
.service-card h3 {
  margin: 0.75rem 0 0.5rem;
}
.service-card p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}
.service-card a:not(.btn-whatsapp) {
  margin-top: auto;
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--red-dark);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}
.service-card .btn-whatsapp {
  margin-top: auto;
  align-self: stretch;
}
.differentials {
  background: var(--navy);
  color: #fff;
}
.diff-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(3rem, 7vw, 6rem);
  align-items: start;
}
.diff-title {
  position: sticky;
  top: 9rem;
}
.diff-title h2,
.diff-card h3 {
  color: #fff;
}
.diff-title > p:last-child {
  color: #bdc7df;
}
.eyebrow-yellow {
  color: var(--yellow);
}
.diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.diff-card {
  padding: 1.35rem;
  background: var(--navy-light);
  border: 1px solid rgba(255, 255, 255, 0.12);
  min-height: 190px;
}
.diff-card svg {
  width: 30px;
  height: 30px;
  padding: 5px;
  background: var(--yellow);
  stroke: var(--navy);
  stroke-width: 1.7;
  fill: none;
}
.diff-card h3 {
  font-size: 1.35rem;
  margin: 1rem 0 0.4rem;
}
.diff-card p {
  margin: 0;
  color: #c9d1e3;
  font-size: 0.88rem;
  line-height: 1.55;
}
.project-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(3rem, 8vw, 7rem);
}
.project-grid > div > p:not(.eyebrow) {
  color: var(--muted);
}
.project-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border);
}
.project-list li {
  padding: 1rem 0.5rem 1rem 1.6rem;
  border-bottom: 1px solid var(--border);
  position: relative;
  font-weight: 600;
}
.project-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.65rem;
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border: 2px solid var(--navy);
}
.project-callout {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 3px solid var(--red);
}
.project-callout h3 {
  margin: 0;
}
.project-callout p {
  color: var(--muted);
}
.process {
  background: var(--surface);
}
.timeline {
  list-style: none;
  margin: 0;
  padding: 1rem 0 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.timeline li {
  position: relative;
  padding: 0 1.1rem 0 0;
}
.timeline li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 48px;
  right: 8px;
  height: 2px;
  background: #c8d0df;
}
.timeline span {
  position: relative;
  z-index: 1;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
}
.timeline h3 {
  margin: 1.2rem 0 0.5rem;
  font-size: 1.25rem;
}
.timeline p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 6rem);
  align-items: center;
}
.about-photo {
  position: relative;
  width: min(100%, 430px);
  margin-inline: auto;
}
.about-photo::before {
  content: "";
  position: absolute;
  inset: -14px 14px 14px -14px;
  background: var(--navy);
}
.about-photo img {
  position: relative;
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
}
.about-logos {
  width: min(100%, 430px);
  height: auto;
  object-fit: contain;
  margin: 1.4rem 0;
  background: #fff;
}
.about-copy > p:not(.eyebrow) {
  color: var(--muted);
  margin: 0.8rem 0;
}
.about-copy .btn {
  margin-top: 1rem;
}
.contact {
  padding-top: 1rem;
}
.contact-box {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  padding: clamp(2rem, 5vw, 4rem);
  background: var(--yellow);
  border: 3px solid var(--navy);
  box-shadow: 10px 10px 0 var(--navy);
}
.eyebrow-navy {
  color: var(--navy);
}
.eyebrow-navy::before {
  background: var(--red);
}
.contact-box > div > p:not(.eyebrow) {
  max-width: 620px;
}
.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.contact-actions > a:not(.btn) {
  min-height: 54px;
  padding: 0.6rem 1rem;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(7, 26, 76, 0.22);
}
.contact-actions strong,
.contact-actions small {
  display: block;
}
.contact-actions small {
  font-size: 0.68rem;
}
.faq {
  background: var(--surface);
}
.faq-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(3rem, 8vw, 7rem);
}
.faq-grid > div:first-child > p:last-child {
  color: var(--muted);
}
.accordion {
  border-top: 1px solid var(--border);
}
details {
  border-bottom: 1px solid var(--border);
}
summary {
  list-style: none;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
  cursor: pointer;
  color: var(--navy);
  font-weight: 800;
}
summary::-webkit-details-marker {
  display: none;
}
summary span {
  position: relative;
  width: 22px;
  height: 22px;
  flex: none;
}
summary span::before,
summary span::after {
  content: "";
  position: absolute;
  left: 2px;
  top: 10px;
  width: 18px;
  height: 2px;
  background: var(--red);
  transition: transform 0.2s;
}
summary span::after {
  transform: rotate(90deg);
}
details[open] summary span::after {
  transform: none;
}
details > div {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}
details > div > p {
  overflow: hidden;
  margin: 0;
  color: var(--muted);
}
details[open] > div {
  grid-template-rows: 1fr;
}
details[open] > div > p {
  padding: 0 2.5rem 1.2rem 0;
}
footer {
  padding: 4rem 0 1.5rem;
  background: var(--navy);
  color: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.9fr;
  gap: 3rem;
}
.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}
.footer-logos {
  width: 330px;
  height: auto;
  object-fit: contain;
  background: #fff;
}
.footer-grid p {
  max-width: 430px;
  color: #bfc9df;
}
.footer-grid > div > strong {
  color: var(--yellow);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}
.footer-grid a {
  min-height: 38px;
}
.footer-grid small {
  display: block;
  color: #aab6d1;
}
.legal {
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #9eabc6;
  font-size: 0.7rem;
}
.whatsapp-float {
  position: fixed;
  z-index: 90;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  min-height: 48px;
  padding: 0.6rem 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(109, 244, 159, 0.78);
  background: linear-gradient(
    135deg,
    var(--whatsapp-light),
    var(--whatsapp) 48%,
    var(--whatsapp-dark)
  );
  color: var(--white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-float svg {
  width: 24px;
  fill: currentColor;
  transition: transform 0.2s ease;
}
.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.36);
}
.whatsapp-float:hover svg {
  transform: translate(1px, -1px);
}
.whatsapp-float:active {
  transform: scale(0.98);
}
@media (max-width: 1040px) {
  .main-nav {
    position: fixed;
    z-index: 101;
    inset: 0 0 0 auto;
    width: min(390px, 100%);
    padding: 7rem 2rem 2rem;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    visibility: hidden;
    opacity: 0;
    transform: translateX(100%);
    transition:
      transform 0.25s,
      opacity 0.25s,
      visibility 0.25s;
  }
  .main-nav.open {
    visibility: visible;
    opacity: 1;
    transform: none;
  }
  .main-nav > a:not(.btn) {
    font: 600 1.8rem/1.2 var(--display);
    min-height: 50px;
  }
  .main-nav > a:not(.btn)::after {
    display: none;
  }
  .menu-toggle {
    display: block;
    position: relative;
    z-index: 102;
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .hero-copy-wrapper {
    max-width: 75%;
  }
  .hero-image-fade {
    background:
      linear-gradient(
        90deg,
        rgba(7, 26, 76, 0.97) 0%,
        rgba(7, 26, 76, 0.9) 44%,
        rgba(7, 26, 76, 0.5) 76%,
        rgba(7, 26, 76, 0.22) 100%
      ),
      linear-gradient(0deg, rgba(7, 26, 76, 0.55), transparent 55%);
  }
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .diff-layout {
    grid-template-columns: 1fr;
  }
  .diff-title {
    position: static;
    max-width: 700px;
  }
  .timeline {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 0;
  }
  .timeline li:not(:last-child)::after {
    display: none;
  }
}
@media (max-width: 1024px) {
  html {
    scroll-padding-top: 0;
  }
  .site-header {
    display: none;
  }
  .hero {
    min-height: auto;
    display: block;
    padding: 0;
  }
  .hero-media {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
  }
  .hero-media picture {
    height: auto;
  }
  .hero-background {
    position: relative;
    inset: auto;
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1774 / 887;
    object-fit: contain;
    object-position: center;
    transform: none !important;
  }
  .hero-image-fade {
    background: linear-gradient(
      to bottom,
      transparent 48%,
      rgba(7, 26, 76, 0.2) 60%,
      rgba(7, 26, 76, 0.78) 84%,
      var(--navy) 100%
    );
  }
  .hero-content {
    margin-top: -1rem;
    padding-top: 0;
    padding-bottom: 4.5rem;
  }
  .hero-copy-wrapper {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  :root {
    --container: calc(100% - 2rem);
    --section: 4.5rem;
  }
  .intro-grid,
  .project-grid,
  .about-grid,
  .contact-box,
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: clamp(2.75rem, 9vw, 3.625rem);
  }
  .hero-description {
    font-size: 1rem;
  }
  .hero .btn-whatsapp {
    width: 100%;
    min-height: 54px;
    text-align: center;
  }
  .section-head {
    align-items: start;
    flex-direction: column;
    gap: 1rem;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    min-height: 0;
  }
  .service-card img {
    height: auto;
    aspect-ratio: 16/9;
  }
  .diff-grid {
    grid-template-columns: 1fr 1fr;
  }
  .timeline {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .timeline li {
    padding: 0 0 2rem 3.8rem;
  }
  .timeline span {
    position: absolute;
    left: 0;
    top: 0;
  }
  .timeline li:not(:last-child)::after {
    display: block;
    left: 20px;
    right: auto;
    top: 44px;
    bottom: 4px;
    width: 2px;
    height: auto;
  }
  .about-photo {
    width: min(82vw, 300px);
    margin-inline: auto;
  }
  .contact-box {
    gap: 2rem;
    box-shadow: 6px 6px 0 var(--navy);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid > div:first-child {
    grid-column: span 2;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: clamp(2.75rem, 13vw, 3.35rem);
  }
  h2 {
    font-size: clamp(2.15rem, 10vw, 2.75rem);
  }
  .actions {
    flex-direction: column;
  }
  .actions .btn,
  .about-copy .btn,
  .contact-actions .btn {
    width: 100%;
  }
  .hero-trust {
    display: grid;
  }
  .diff-grid {
    grid-template-columns: 1fr;
  }
  .diff-card {
    min-height: 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid > div:first-child {
    grid-column: auto;
  }
  .legal {
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-logos {
    width: 100%;
  }
  .whatsapp-float {
    width: 48px;
    padding: 0;
    justify-content: center;
  }
  .whatsapp-float span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal,
  .reveal-image {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
  }
  .btn.btn-whatsapp,
  .btn.btn-whatsapp::before,
  .whatsapp-float,
  .whatsapp-float::before {
    animation: none !important;
  }
}
.no-js .menu-toggle {
  display: none;
}
.no-js .main-nav {
  position: static;
  visibility: visible;
  opacity: 1;
  transform: none;
}
.js .reveal,
.js .reveal-image {
  opacity: 1;
}
