:root {
  --ink: #090b0e;
  --panel: #11151a;
  --steel: #aab0b7;
  --mist: #edf0f2;
  --orange: #ff7a00;
  --orange-soft: #ff9a2f;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  min-height: 84px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 12px clamp(22px, 4.6vw, 76px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  background: linear-gradient(180deg, rgba(7, 9, 11, 0.97), rgba(7, 9, 11, 0.75));
  backdrop-filter: blur(16px);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 47px;
  height: 47px;
  overflow: hidden;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #e9e9e7;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.brand-mark img {
  width: 70px;
  height: 70px;
  max-width: none;
  object-fit: cover;
}

.brand-copy { display: flex; flex-direction: column; line-height: 1; text-transform: uppercase; }
.brand-copy strong { font-size: 1.35rem; letter-spacing: 0.14em; }
.brand-copy small { margin-top: 5px; color: #b7bcc2; font-size: 0.63rem; letter-spacing: 0.13em; }

nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 44px);
  color: #c8ccd0;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

nav a { position: relative; padding: 12px 0; transition: color 180ms ease; }
nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 5px;
  height: 2px;
  background: var(--orange);
  transition: right 180ms ease;
}
nav a:hover, nav a:focus-visible { color: var(--white); }
nav a:hover::after, nav a:focus-visible::after { right: 0; }

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 2px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: border-color 180ms ease, background 180ms ease;
}
.header-cta:hover, .header-cta:focus-visible { border-color: var(--orange); background: rgba(255, 122, 0, 0.12); }
.header-cta span, .button span { color: var(--orange-soft); font-size: 1rem; }

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 142px clamp(22px, 8vw, 136px) 76px;
}
.hero-photo, .hero-shade, .hero-lines { position: absolute; inset: 0; }
.hero-photo {
  background-image: url("https://images.pexels.com/photos/7739856/pexels-photo-7739856.jpeg?auto=compress&cs=tinysrgb&w=2200");
  background-size: cover;
  background-position: 62% center;
  filter: saturate(0.68) contrast(1.08);
  transform: scale(1.01);
}
.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 7, 9, 0.98) 0%, rgba(5, 7, 9, 0.88) 39%, rgba(5, 7, 9, 0.35) 70%, rgba(5, 7, 9, 0.6) 100%),
    linear-gradient(180deg, rgba(5, 7, 9, 0.42) 0%, rgba(5, 7, 9, 0) 62%, rgba(5, 7, 9, 0.86) 100%);
}
.hero-lines {
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, black, transparent 74%);
}

.hero-content { position: relative; z-index: 2; width: min(760px, 75vw); }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 28px;
  color: #cbd0d4;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}
.eyebrow span { width: 34px; height: 3px; background: var(--orange); }

h1 {
  margin: 0;
  max-width: 840px;
  font-size: clamp(3.4rem, 6.5vw, 7.2rem);
  line-height: 0.93;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}
h1 em { color: transparent; -webkit-text-stroke: 1.4px rgba(255, 255, 255, 0.62); font-style: normal; }
h1 span { color: var(--orange); }
.hero-text {
  max-width: 610px;
  margin: 30px 0 0;
  color: #c6cbd0;
  font-size: clamp(1rem, 1.25vw, 1.17rem);
  line-height: 1.75;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 14px 23px;
  border-radius: 2px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary { background: var(--orange); color: #111; border: 1px solid var(--orange); }
.button-primary span { color: #111; }
.button-primary:hover, .button-primary:focus-visible { background: var(--orange-soft); border-color: var(--orange-soft); }
.button-ghost { border: 1px solid rgba(255, 255, 255, 0.28); background: rgba(5, 7, 9, 0.32); }
.button-ghost:hover, .button-ghost:focus-visible { border-color: rgba(255, 255, 255, 0.62); background: rgba(255, 255, 255, 0.08); }

.hero-proof { display: flex; align-items: center; gap: 0; margin-top: 48px; }
.hero-proof > div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 166px;
  padding-right: 28px;
  margin-right: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}
.hero-proof > div:last-child { margin-right: 0; padding-right: 0; border-right: 0; }
.hero-proof strong { color: var(--orange); font-size: 0.72rem; letter-spacing: 0.1em; }
.hero-proof span { color: #b9bec3; font-size: 0.72rem; line-height: 1.45; letter-spacing: 0.05em; text-transform: uppercase; }

.hero-stamp {
  position: absolute;
  z-index: 2;
  right: clamp(28px, 6vw, 104px);
  bottom: 68px;
  width: 184px;
  height: 184px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: rgba(5, 7, 9, 0.48);
  backdrop-filter: blur(10px);
}
.hero-stamp::before, .hero-stamp::after { content: ""; position: absolute; border-radius: 50%; border: 1px solid rgba(255, 122, 0, 0.46); }
.hero-stamp::before { inset: 10px; }
.hero-stamp::after { width: 7px; height: 7px; top: 17px; background: var(--orange); }
.hero-stamp > span { position: absolute; top: 42px; color: var(--orange); font-size: 2rem; font-weight: 900; letter-spacing: 0.11em; }
.hero-stamp p { margin: 54px 0 0; color: #d6dade; text-align: center; font-size: 0.62rem; font-weight: 700; line-height: 1.65; letter-spacing: 0.18em; text-transform: uppercase; }

.intro-band {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px clamp(22px, 5vw, 78px);
  color: #24272b;
  background: var(--orange);
  text-transform: uppercase;
}
.intro-band p, .intro-band span { margin: 0; font-weight: 900; }
.intro-band p { font-size: clamp(1rem, 2.1vw, 1.7rem); letter-spacing: -0.02em; }
.intro-band span { color: rgba(17, 17, 17, 0.58); font-size: 0.68rem; letter-spacing: 0.2em; white-space: nowrap; }

.section-shell {
  width: min(1240px, calc(100% - 44px));
  margin-inline: auto;
}

.about {
  color: #15181c;
  background: var(--mist);
  padding-top: clamp(74px, 9vw, 132px);
  padding-bottom: clamp(78px, 9vw, 136px);
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: clamp(42px, 6vw, 72px);
  color: #6d7379;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.section-kicker span { color: var(--orange); }
.section-kicker p { margin: 0; }
.section-kicker::after { content: ""; width: 86px; height: 1px; background: #b8bdc1; }

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

.overline {
  margin: 0 0 20px;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about h2,
.section-heading h2,
.feature-copy > h2,
.process-heading h2,
.contact h2 {
  margin: 0;
  font-size: clamp(2.25rem, 4.4vw, 4.8rem);
  line-height: 1.03;
  letter-spacing: -0.048em;
  text-transform: uppercase;
}

.about h2 span,
.contact h2 span { color: var(--orange); }

.body-copy {
  max-width: 590px;
  margin: 30px 0 0;
  color: #656b70;
  font-size: 1.03rem;
  line-height: 1.8;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--orange);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.text-link span { color: var(--orange); font-size: 1.05rem; transition: transform 180ms ease; }
.text-link:hover span, .text-link:focus-visible span { transform: translateX(5px); }

.about-photo {
  position: relative;
  min-height: 540px;
  margin: 0;
  overflow: hidden;
  background: #252a2f;
}
.about-photo::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.18);
  pointer-events: none;
}
.about-photo img { width: 100%; height: 100%; min-height: 540px; display: block; object-fit: cover; filter: saturate(0.75) contrast(1.05); }
.about-photo figcaption {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  padding: 28px 30px;
  background: var(--orange);
  color: #17191c;
  text-transform: uppercase;
}
.about-photo figcaption strong { font-size: 1.05rem; letter-spacing: 0.03em; }
.about-photo figcaption span { margin-top: 5px; font-size: 0.66rem; font-weight: 800; letter-spacing: 0.16em; }

.pillars {
  padding: clamp(82px, 10vw, 150px) 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.035), transparent 36%),
    var(--ink);
}
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 80px;
  align-items: end;
  margin-bottom: clamp(46px, 6vw, 78px);
}
.section-heading h2 { max-width: 820px; }
.section-heading > p {
  margin: 0;
  color: #969da4;
  font-size: 0.96rem;
  line-height: 1.75;
}

.pillar-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border: 1px solid rgba(255,255,255,0.14); }
.pillar-card {
  min-height: 410px;
  display: flex;
  flex-direction: column;
  padding: clamp(30px, 3vw, 46px);
  border-right: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.018);
  transition: background 200ms ease, transform 200ms ease;
}
.pillar-card:last-child { border-right: 0; }
.pillar-card:hover { background: rgba(255,255,255,0.045); }
.pillar-card.featured { background: var(--orange); color: #17191c; transform: translateY(-14px); box-shadow: 0 30px 80px rgba(0,0,0,0.24); }
.card-number { font-size: 0.68rem; font-weight: 900; letter-spacing: 0.15em; color: var(--orange); }
.featured .card-number { color: rgba(17,17,17,0.64); }
.card-line { width: 42px; height: 2px; margin: 28px 0 62px; background: rgba(255,255,255,0.25); }
.featured .card-line { background: rgba(17,17,17,0.38); }
.pillar-card h3 { margin: 0; font-size: clamp(1.8rem, 2.7vw, 3rem); letter-spacing: -0.035em; text-transform: uppercase; }
.pillar-card > p { max-width: 310px; margin: 20px 0 32px; color: #969da4; font-size: 0.91rem; line-height: 1.7; }
.featured > p { color: rgba(17,17,17,0.73); }
.card-tag { margin-top: auto; font-size: 0.63rem; font-weight: 900; letter-spacing: 0.15em; color: #d2d6da; text-transform: uppercase; }
.featured .card-tag { color: rgba(17,17,17,0.68); }

.feature {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(0, 0.93fr);
  gap: clamp(54px, 8vw, 116px);
  align-items: center;
  padding-top: clamp(90px, 11vw, 160px);
  padding-bottom: clamp(90px, 11vw, 160px);
}
.feature-media { position: relative; min-height: 650px; overflow: hidden; background: #20252a; }
.feature-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 52%, rgba(5,7,9,0.66)); }
.feature-media img { width: 100%; height: 100%; min-height: 650px; display: block; object-fit: cover; filter: saturate(0.72) contrast(1.08); }
.feature-index {
  position: absolute;
  z-index: 2;
  left: 28px;
  bottom: 26px;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.feature-copy > h2 { max-width: 650px; font-size: clamp(2.3rem, 4vw, 4.4rem); }
.feature-list { margin-top: 52px; border-top: 1px solid rgba(255,255,255,0.15); }
.feature-list article { display: grid; grid-template-columns: 52px 1fr; gap: 18px; padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,0.15); }
.feature-list article > span { color: var(--orange); font-size: 0.68rem; font-weight: 900; letter-spacing: 0.12em; }
.feature-list h3 { margin: 0 0 8px; font-size: 1.04rem; letter-spacing: 0.01em; text-transform: uppercase; }
.feature-list p { margin: 0; color: #969da4; font-size: 0.9rem; line-height: 1.65; }

.process { padding: clamp(82px, 9vw, 136px) 0; color: #17191c; background: #dfe2e4; }
.process-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 64px; }
.process-heading h2 { font-size: clamp(2.5rem, 5vw, 5rem); }
.process-steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin: 0; padding: 0; list-style: none; border-top: 1px solid #aeb4b8; }
.process-steps li { position: relative; min-height: 250px; padding: 34px 30px 24px 0; border-right: 1px solid #aeb4b8; }
.process-steps li:not(:first-child) { padding-left: 30px; }
.process-steps li:last-child { border-right: 0; }
.process-steps li::before { content: ""; position: absolute; top: -4px; left: 0; width: 8px; height: 8px; border-radius: 50%; background: var(--orange); }
.process-steps li:not(:first-child)::before { left: 30px; }
.process-steps span { color: #7b8288; font-size: 0.65rem; font-weight: 900; letter-spacing: 0.13em; }
.process-steps h3 { margin: 58px 0 14px; font-size: 1.3rem; letter-spacing: -0.015em; text-transform: uppercase; }
.process-steps p { max-width: 235px; margin: 0; color: #676e73; font-size: 0.86rem; line-height: 1.6; }

.contact { position: relative; overflow: hidden; padding: clamp(90px, 12vw, 178px) 0; }
.contact-photo, .contact-shade { position: absolute; inset: 0; }
.contact-photo {
  background-image: url("https://images.pexels.com/photos/3730670/pexels-photo-3730670.jpeg?auto=compress&cs=tinysrgb&w=2200");
  background-size: cover;
  background-position: center;
  filter: saturate(0.74) contrast(1.08);
}
.contact-shade { background: linear-gradient(90deg, rgba(5,7,9,0.96) 0%, rgba(5,7,9,0.83) 52%, rgba(5,7,9,0.48) 100%); }
.contact-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.8fr); gap: clamp(52px, 9vw, 130px); align-items: center; }
.contact h2 { max-width: 780px; font-size: clamp(2.7rem, 5.7vw, 6.4rem); }
.contact-card { padding: clamp(32px, 4vw, 52px); border-top: 4px solid var(--orange); background: rgba(9,11,14,0.83); backdrop-filter: blur(14px); box-shadow: 0 32px 90px rgba(0,0,0,0.36); }
.contact-card > p { margin: 0; color: #9aa0a6; font-size: 0.66rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; }
.contact-card h3 { margin: 8px 0 24px; color: var(--orange); font-size: 2.6rem; text-transform: uppercase; }
.contact-phone { display: block; margin-bottom: 28px; font-size: clamp(1.35rem, 2.5vw, 2.3rem); font-weight: 800; letter-spacing: -0.03em; }
.contact-card .button { width: 100%; }
.contact-email { display: block; margin-top: 22px; color: #b8bdc2; font-size: 0.84rem; text-align: center; }

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 42px clamp(22px, 5vw, 78px) 58px;
  border-top: 1px solid rgba(255,255,255,0.12);
  background: #07090b;
}
.footer-brand { display: flex; align-items: center; gap: 13px; }
.footer-brand > div { display: flex; flex-direction: column; text-transform: uppercase; }
.footer-brand strong { font-size: 1.2rem; letter-spacing: 0.14em; }
.footer-brand > div span { margin-top: 4px; color: #8f969d; font-size: 0.58rem; letter-spacing: 0.14em; }
footer > p { margin: 0; color: #858c92; font-size: 0.62rem; font-weight: 800; letter-spacing: 0.16em; text-align: center; text-transform: uppercase; }
.footer-links { justify-self: end; display: flex; gap: 22px; color: #b7bdc2; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.11em; text-transform: uppercase; }
.footer-links a:hover { color: var(--orange); }
footer > small { grid-column: 1 / -1; color: #666d73; font-size: 0.68rem; }

.floating-whatsapp {
  position: fixed;
  z-index: 30;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px 13px 13px 18px;
  color: #131518;
  background: var(--orange);
  box-shadow: 0 12px 40px rgba(0,0,0,0.32);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease;
}
.floating-whatsapp strong { width: 28px; height: 28px; display: grid; place-items: center; border: 1px solid rgba(17,17,17,0.36); }
.floating-whatsapp:hover, .floating-whatsapp:focus-visible { transform: translateY(-3px); background: var(--orange-soft); }

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; }
  nav { display: none; }
  .hero { padding-top: 126px; }
  .hero-stamp { width: 144px; height: 144px; right: 28px; bottom: 54px; }
  .hero-stamp > span { top: 29px; font-size: 1.65rem; }
  .hero-stamp p { margin-top: 43px; font-size: 0.52rem; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { min-height: 480px; }
  .about-photo img { min-height: 480px; }
  .section-heading { grid-template-columns: 1fr; gap: 26px; }
  .pillar-card { min-height: 360px; }
  .feature { grid-template-columns: 1fr; }
  .feature-media, .feature-media img { min-height: 560px; }
  .process-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-steps li:nth-child(2) { border-right: 0; }
  .process-steps li:nth-child(3), .process-steps li:nth-child(4) { border-top: 1px solid #aeb4b8; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-card { max-width: 520px; }
  footer { grid-template-columns: 1fr auto; }
  footer > p { display: none; }
}

@media (max-width: 720px) {
  .site-header { min-height: 74px; padding: 10px 18px; }
  .brand-mark { width: 42px; height: 42px; }
  .brand-copy strong { font-size: 1.05rem; }
  .brand-copy small { font-size: 0.52rem; }
  .header-cta { padding: 12px 13px; gap: 8px; font-size: 0.62rem; }
  .hero { min-height: auto; padding: 116px 20px 52px; }
  .hero-photo { background-position: 66% center; }
  .hero-shade {
    background:
      linear-gradient(90deg, rgba(5, 7, 9, 0.97), rgba(5, 7, 9, 0.58)),
      linear-gradient(180deg, rgba(5, 7, 9, 0.18), rgba(5, 7, 9, 0.9));
  }
  .hero-content { width: 100%; }
  .eyebrow { margin-bottom: 20px; font-size: 0.62rem; letter-spacing: 0.14em; }
  h1 { font-size: clamp(2.85rem, 13vw, 4.2rem); }
  .hero-text { max-width: 92%; margin-top: 24px; font-size: 0.96rem; line-height: 1.62; }
  .hero-actions { align-items: stretch; }
  .button { flex: 1 1 100%; }
  .hero-proof { display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: 36px; }
  .hero-proof > div, .hero-proof > div:last-child { min-width: 0; padding: 0 0 10px; margin: 0; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.14); }
  .hero-stamp { display: none; }
  .intro-band { align-items: flex-start; flex-direction: column; }
  .section-shell { width: min(100% - 36px, 1240px); }
  .section-kicker { margin-bottom: 34px; }
  .about-grid { gap: 42px; }
  .about h2, .section-heading h2, .feature-copy > h2, .process-heading h2, .contact h2 { font-size: clamp(2.15rem, 10.5vw, 3.25rem); }
  .about-photo, .about-photo img { min-height: 380px; }
  .about-photo figcaption { min-width: 205px; padding: 22px 24px; }
  .pillar-grid { grid-template-columns: 1fr; border: 0; gap: 1px; }
  .pillar-card, .pillar-card:last-child { min-height: 320px; border: 1px solid rgba(255,255,255,0.14); }
  .pillar-card.featured { transform: none; }
  .card-line { margin-bottom: 38px; }
  .feature-media, .feature-media img { min-height: 410px; }
  .feature-list { margin-top: 38px; }
  .process-heading { display: block; }
  .process-steps { grid-template-columns: 1fr; }
  .process-steps li, .process-steps li:not(:first-child) { min-height: 205px; padding: 30px 0; border-right: 0; border-top: 1px solid #aeb4b8; }
  .process-steps li:first-child { border-top: 0; }
  .process-steps li::before, .process-steps li:not(:first-child)::before { left: 0; }
  .process-steps h3 { margin-top: 40px; }
  .contact-card { padding: 30px 22px; }
  footer { grid-template-columns: 1fr; align-items: start; }
  .footer-links { justify-self: start; flex-wrap: wrap; }
  footer > small { grid-column: auto; }
  .floating-whatsapp span { display: none; }
  .floating-whatsapp { right: 14px; bottom: 14px; padding: 10px; }
}

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