:root {
  color-scheme: light;
  --bg: #f4f7f6;
  --surface: #ffffff;
  --surface-soft: rgba(255, 255, 255, 0.82);
  --ink: #202524;
  --muted: #5f6865;
  --line: #dbe4e0;
  --brand: #93603e;
  --brand-dark: #6f452b;
  --brand-soft: #eadbd1;
  --orange: var(--brand);
  --orange-dark: var(--brand-dark);
  --blue: #087fa5;
  --green: #1e8068;
  --yellow: #b88a64;
  --shadow: 0 22px 70px rgba(24, 35, 32, 0.13);
  --radius: 8px;
  --header-height: 104px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(8, 127, 165, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(8, 127, 165, 0.05) 1px, transparent 1px),
    var(--bg);
  background-size: 56px 56px, 56px 56px, auto;
  letter-spacing: 0;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(135deg, rgba(147, 96, 62, 0.12), transparent 34%),
    linear-gradient(315deg, rgba(30, 128, 104, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(244, 247, 246, 0.9));
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.3;
  background-image:
    repeating-linear-gradient(0deg, rgba(32, 37, 36, 0.025) 0 1px, transparent 1px 7px),
    repeating-linear-gradient(90deg, rgba(32, 37, 36, 0.018) 0 1px, transparent 1px 9px);
  mix-blend-mode: multiply;
}

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

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

button,
input {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: #ffffff;
  background: var(--ink);
  border-radius: var(--radius);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.scene-viewport {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

#rocket-canvas {
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 420ms ease;
}

.three-ready #rocket-canvas {
  opacity: 1;
}

.rocket-fallback {
  position: absolute;
  top: 14vh;
  right: 3vw;
  width: min(46vw, 620px);
  transform: rotate(-12deg);
  filter: drop-shadow(0 34px 44px rgba(82, 43, 18, 0.22));
  opacity: 0.86;
  transition: opacity 360ms ease, transform 360ms ease;
}

.three-ready .rocket-fallback {
  opacity: 0;
  transform: rotate(-12deg) scale(0.94);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  width: 100%;
  height: 3px;
  background: transparent;
}

.scroll-progress__bar {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--blue), var(--green));
  transform: scaleX(0);
  transform-origin: left center;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 2;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(244, 247, 246, 0.98);
  border-bottom: 1px solid rgba(219, 228, 224, 0.8);
  backdrop-filter: blur(18px);
}

.topbar {
  color: rgba(32, 37, 36, 0.78);
  border-bottom: 1px solid rgba(219, 228, 224, 0.84);
  font-size: 0.82rem;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, calc(100% - 32px));
  min-height: 38px;
  margin: 0 auto;
}

.topbar a,
.topbar span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
  white-space: nowrap;
}

.topbar svg {
  width: 15px;
  height: 15px;
  color: var(--blue);
  flex: 0 0 auto;
}

.whatsapp-inline-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.navbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  min-height: 66px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 260px;
}

.brand__logo {
  width: clamp(218px, 20vw, 284px);
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.primary-nav a {
  min-height: 38px;
  padding: 10px 13px;
  color: rgba(32, 37, 36, 0.72);
  border-radius: var(--radius);
  font-size: 0.92rem;
  transition: color 180ms ease, background 180ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
}

.nav-toggle {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 12px 16px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

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

.button--primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  box-shadow: 0 14px 28px rgba(147, 96, 62, 0.28);
}

.button--ghost {
  color: var(--ink);
  background: #ffffff;
  border-color: rgba(32, 37, 36, 0.12);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.64fr);
  align-items: end;
  gap: 28px;
  width: min(1180px, calc(100% - 32px));
  min-height: 84svh;
  margin: 0 auto;
  padding: 90px 0 42px;
}

.hero__copy {
  max-width: 720px;
  padding-bottom: 30px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 32px;
  height: 2px;
  background: currentColor;
  content: "";
}

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

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(3.4rem, 7vw, 6.1rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 5vw, 5.7rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h3 {
  font-size: 1.12rem;
  line-height: 1.16;
  letter-spacing: 0;
}

.hero__lead,
.section__heading p,
.journey__sticky p,
.contact__content p {
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.65;
}

.hero__lead {
  margin-bottom: 28px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__panel {
  display: grid;
  gap: 10px;
  width: min(100%, 380px);
  margin-left: auto;
  padding-bottom: 26px;
}

.quick-action {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-items: center;
  align-content: center;
  column-gap: 12px;
  row-gap: 2px;
  min-height: 74px;
  padding: 13px;
  background: #ffffff;
  border: 1px solid rgba(219, 228, 224, 0.9);
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(24, 35, 32, 0.08);
  backdrop-filter: blur(14px);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.quick-action:hover,
.quick-action:focus-visible {
  transform: translateX(-4px);
  border-color: rgba(147, 96, 62, 0.45);
  box-shadow: var(--shadow);
}

.quick-action span {
  display: grid;
  grid-row: 1 / span 2;
  width: 46px;
  height: 46px;
  color: var(--orange-dark);
  background: rgba(147, 96, 62, 0.11);
  border-radius: var(--radius);
  place-items: center;
}

.quick-action--featured {
  min-height: 86px;
  background:
    linear-gradient(135deg, rgba(147, 96, 62, 0.13), rgba(255, 255, 255, 0.9) 48%),
    #ffffff;
  border-color: rgba(147, 96, 62, 0.5);
  box-shadow: 0 20px 56px rgba(111, 69, 43, 0.18);
}

.quick-action--featured span {
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
}

.quick-action--featured strong {
  color: var(--brand-dark);
}

.quick-action svg {
  width: 21px;
  height: 21px;
}

.quick-action strong,
.quick-action small {
  grid-column: 2;
}

.quick-action strong {
  grid-row: 1;
  align-self: end;
  font-size: 1rem;
  line-height: 1.15;
}

.quick-action small {
  grid-row: 2;
  align-self: start;
  color: var(--muted);
  line-height: 1.25;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 92px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(24, 35, 32, 0.08);
}

.service-strip div {
  min-height: 104px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.84);
}

.service-strip strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.18rem;
}

.service-strip span {
  color: var(--muted);
  line-height: 1.45;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 88px 0;
}

.section__heading {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(260px, 0.5fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 32px;
}

.section__heading .eyebrow,
.section__heading h2 {
  grid-column: 1;
}

.section__heading p {
  grid-column: 2;
  grid-row: 2;
  margin-bottom: 8px;
}

.services {
  background: rgba(247, 250, 249, 0.97);
  box-shadow: 0 0 0 100vmax rgba(247, 250, 249, 0.97);
  clip-path: inset(0 -100vmax);
}

.segmented {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.segmented__button {
  min-height: 40px;
  padding: 10px 14px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(219, 228, 224, 0.94);
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 800;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.segmented__button:hover,
.segmented__button:focus-visible,
.segmented__button.is-active {
  color: #ffffff;
  background: var(--ink);
  border-color: var(--ink);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  perspective: 1200px;
}

.service-card {
  position: relative;
  display: grid;
  min-height: 252px;
  padding: 24px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(219, 228, 224, 0.95);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(24, 35, 32, 0.08);
  transform-style: preserve-3d;
  transition: opacity 180ms ease, transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.72), transparent 42%, rgba(8, 127, 165, 0.08));
  opacity: 0;
  transition: opacity 180ms ease;
}

.service-card:hover,
.service-card:focus-within {
  border-color: rgba(8, 127, 165, 0.34);
  box-shadow: var(--shadow);
}

.service-card:hover::after,
.service-card:focus-within::after {
  opacity: 1;
}

.service-card.is-hidden {
  display: none;
}

.service-card--featured {
  background:
    linear-gradient(135deg, rgba(147, 96, 62, 0.13), rgba(255, 255, 255, 0.94) 44%),
    #ffffff;
  border-color: rgba(147, 96, 62, 0.5);
  box-shadow: 0 22px 62px rgba(111, 69, 43, 0.16);
}

.service-card--featured::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--brand-dark));
  content: "";
}

.service-card--featured:hover,
.service-card--featured:focus-within {
  border-color: rgba(147, 96, 62, 0.68);
  box-shadow: 0 26px 74px rgba(111, 69, 43, 0.22);
}

.service-card--featured .service-card__icon {
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
}

.service-card--featured a {
  color: var(--brand-dark);
}

.service-card__icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 24px;
  color: var(--blue);
  background: rgba(8, 127, 165, 0.1);
  border-radius: var(--radius);
  place-items: center;
  transform: translateZ(24px);
}

.service-card__icon svg {
  width: 22px;
  height: 22px;
}

.service-card h3 {
  margin-bottom: 10px;
  transform: translateZ(22px);
}

.service-card p {
  margin-bottom: 22px;
  color: var(--muted);
  line-height: 1.55;
  transform: translateZ(16px);
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  margin-top: auto;
  color: var(--orange-dark);
  font-weight: 800;
  transform: translateZ(20px);
}

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

.journey {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 0.62fr);
  gap: 56px;
  width: min(1180px, calc(100% - 32px));
  min-height: 260vh;
  margin: 0 auto;
  padding: 98px 0;
}

.journey__sticky {
  position: sticky;
  top: calc(var(--header-height) + 34px);
  align-self: start;
  min-height: calc(100svh - var(--header-height) - 68px);
  padding-top: 34px;
}

.journey__status {
  display: flex;
  gap: 8px;
  margin-top: 34px;
}

.journey__status span {
  width: 42px;
  height: 4px;
  background: rgba(32, 37, 36, 0.14);
  border-radius: 999px;
  transition: background 200ms ease, width 200ms ease;
}

.journey__status span.is-active {
  width: 76px;
  background: linear-gradient(90deg, var(--orange), var(--blue));
}

.journey__chapters {
  display: grid;
  gap: 52vh;
  padding: 38vh 0 22vh;
}

.chapter {
  padding: 24px;
  background: #ffffff;
  border: 1px solid rgba(219, 228, 224, 0.9);
  border-radius: var(--radius);
  box-shadow: 0 22px 60px rgba(24, 35, 32, 0.1);
  opacity: 0.5;
  transform: translateY(24px);
  backdrop-filter: blur(14px);
  transition: opacity 240ms ease, transform 240ms ease, border-color 240ms ease;
}

.chapter.is-active {
  opacity: 1;
  transform: translateY(0);
  border-color: rgba(147, 96, 62, 0.42);
}

.chapter span {
  display: inline-flex;
  margin-bottom: 32px;
  color: var(--orange-dark);
  font-weight: 900;
}

.chapter h3 {
  margin-bottom: 12px;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}

.chapter p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.62;
}

.info {
  padding-top: 112px;
  background: rgba(247, 250, 249, 0.97);
  box-shadow: 0 0 0 100vmax rgba(247, 250, 249, 0.97);
  clip-path: inset(0 -100vmax);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  perspective: 1200px;
}

.info-tile {
  display: grid;
  min-height: 190px;
  padding: 22px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid rgba(219, 228, 224, 0.95);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(24, 35, 32, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.info-tile:hover,
.info-tile:focus-visible {
  border-color: rgba(30, 128, 104, 0.42);
  box-shadow: var(--shadow);
}

.info-tile svg {
  width: 28px;
  height: 28px;
  color: var(--green);
}

.info-tile span {
  align-self: end;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.info-tile strong {
  margin-top: 6px;
  font-size: 1.12rem;
  line-height: 1.2;
}

.info-tile--accent {
  color: #ffffff;
  background: linear-gradient(135deg, #202524, #087fa5);
  border-color: transparent;
}

.info-tile--accent svg,
.info-tile--accent span {
  color: rgba(255, 255, 255, 0.78);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) auto;
  align-items: end;
  gap: 32px;
  margin-bottom: 66px;
  padding: 72px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(219, 228, 224, 0.95);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact h2 {
  max-width: 820px;
  margin-bottom: 20px;
}

.contact__actions {
  display: grid;
  gap: 12px;
  min-width: 220px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px max(16px, calc((100vw - 1180px) / 2));
  color: rgba(255, 255, 255, 0.78);
  background: #202524;
}

.site-footer div {
  display: grid;
  gap: 6px;
}

.site-footer strong {
  color: #ffffff;
}

.site-footer span {
  font-size: 0.9rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #ffffff;
}

.whatsapp-float {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 50;
  display: grid;
  width: 64px;
  height: 64px;
  background: #25d366;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 999px;
  box-shadow: 0 16px 36px rgba(37, 211, 102, 0.34), 0 8px 18px rgba(24, 35, 32, 0.18);
  place-items: center;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 20px 42px rgba(37, 211, 102, 0.4), 0 10px 22px rgba(24, 35, 32, 0.2);
}

.whatsapp-float img {
  width: 40px;
  height: 40px;
}

[data-reveal] {
  will-change: transform, opacity;
}

@media (max-width: 1060px) {
  .topbar__inner {
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .topbar__inner::-webkit-scrollbar {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
    align-items: end;
  }

  .hero__panel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    margin-left: 0;
  }

  .quick-action {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .quick-action span {
    width: 44px;
    height: 44px;
  }

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

  .journey {
    grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.6fr);
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 92px;
  }

  .navbar {
    grid-template-columns: auto auto 1fr;
    gap: 12px;
    min-height: 58px;
  }

  .brand {
    min-width: 0;
  }

  .brand__logo {
    width: clamp(172px, 30vw, 218px);
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 40px;
    padding: 9px 12px;
    background: #ffffff;
    border: 1px solid rgba(219, 228, 224, 0.95);
    border-radius: var(--radius);
    cursor: pointer;
    font-weight: 800;
  }

  .nav-toggle svg {
    width: 18px;
    height: 18px;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 16px;
    right: 16px;
    display: grid;
    gap: 4px;
    padding: 10px;
    background: #ffffff;
    border: 1px solid rgba(219, 228, 224, 0.95);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transform: translateY(-8px);
    visibility: hidden;
    opacity: 0;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .nav-open .primary-nav {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
  }

  .primary-nav a {
    justify-content: flex-start;
  }

  .header-cta {
    justify-self: end;
    min-width: 44px;
    padding: 10px 12px;
  }

  .header-cta {
    font-size: 0;
  }

  .header-cta svg {
    margin: 0;
  }

  .hero {
    min-height: 86svh;
    padding-top: 70px;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4.9rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 4rem);
  }

  .rocket-fallback {
    top: 38vh;
    right: auto;
    left: 20vw;
    width: 76vw;
    opacity: 0.22;
  }

  .hero__panel,
  .service-strip,
  .section__heading,
  .journey,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero__panel {
    padding-bottom: 0;
  }

  .service-strip {
    margin-bottom: 52px;
  }

  .section {
    padding: 64px 0;
  }

  .section__heading p,
  .section__heading .eyebrow,
  .section__heading h2 {
    grid-column: auto;
    grid-row: auto;
  }

  .journey {
    min-height: auto;
    padding: 70px 0;
  }

  .journey__sticky {
    position: relative;
    top: auto;
    min-height: 0;
    padding-top: 0;
  }

  .journey__chapters {
    gap: 14px;
    padding: 0;
  }

  .contact {
    padding: 32px;
  }
}

@media (max-width: 620px) {
  .topbar__inner,
  .navbar,
  .hero,
  .service-strip,
  .section,
  .journey {
    width: min(100% - 24px, 1180px);
  }

  .topbar {
    font-size: 0.75rem;
  }

  .topbar__inner {
    justify-content: center;
    min-height: 34px;
    overflow: visible;
  }

  .topbar__inner > a:first-child,
  .topbar__inner > span {
    display: none;
  }

  .brand__logo {
    width: clamp(154px, 43vw, 184px);
  }

  .nav-toggle span {
    display: none;
  }

  .hero {
    padding-top: 52px;
    padding-bottom: 28px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__panel {
    gap: 8px;
  }

  .quick-action {
    min-height: 68px;
  }

  .service-strip {
    gap: 0;
  }

  .service-strip div {
    min-height: 90px;
    padding: 18px;
  }

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

  .service-card {
    min-height: 224px;
  }

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

  .segmented__button {
    width: 100%;
  }

  .contact {
    width: calc(100% - 24px);
    padding: 24px;
  }

  .contact__actions .button {
    width: 100%;
  }

  .whatsapp-float {
    right: 18px;
    bottom: 18px;
    width: 58px;
    height: 58px;
  }

  .whatsapp-float img {
    width: 36px;
    height: 36px;
  }

  .site-footer {
    display: grid;
    padding: 28px 16px;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

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

  #rocket-canvas,
  .rocket-fallback {
    transform: none !important;
  }
}
