:root {
  --ink: #0c2d37;
  --ink-soft: #36535a;
  --green: #38c96b;
  --green-dark: #15954a;
  --green-pale: #e9faef;
  --cream: #fbfaf5;
  --white: #ffffff;
  --red: #ef4c4c;
  --line: rgba(12, 45, 55, 0.12);
  --shadow: 0 26px 70px rgba(7, 38, 46, 0.15);
  --shadow-soft: 0 16px 38px rgba(7, 38, 46, 0.09);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --shell: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 18% 10%, rgba(56, 201, 107, 0.09), transparent 30%),
    radial-gradient(circle at 85% 30%, rgba(239, 76, 76, 0.05), transparent 30%);
}

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

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

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

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  transform: translateY(-150%);
  border-radius: 10px;
  background: var(--white);
  padding: 10px 14px;
  font-weight: 800;
  box-shadow: var(--shadow-soft);
}

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

.announcement {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 20px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.88rem;
  letter-spacing: 0.01em;
  text-align: center;
}

.announcement__dot,
.pulse {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(56, 201, 107, 0.55);
  animation: pulse-ring 2s infinite;
}

.site-header {
  position: relative;
  z-index: 20;
  background: rgba(251, 250, 245, 0.8);
  border-bottom: 1px solid rgba(12, 45, 55, 0.08);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.brand img {
  width: 66px;
  height: 66px;
  object-fit: contain;
  border-radius: 17px;
  filter: drop-shadow(0 8px 14px rgba(12, 45, 55, 0.12));
}

.brand__text {
  display: grid;
  line-height: 1.15;
}

.brand__text strong {
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

.brand__text small {
  max-width: 260px;
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.header-actions,
.hero__buttons,
.contact-card__buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.icon-link {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.icon-link:hover {
  transform: translateY(-2px);
  border-color: var(--green);
  box-shadow: var(--shadow-soft);
}

.icon-link svg,
.button svg,
.whatsapp-fab svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 21px;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

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

.button:focus-visible,
.icon-link:focus-visible,
.whatsapp-fab:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(56, 201, 107, 0.45);
  outline-offset: 3px;
}

.button--whatsapp,
.button--primary {
  background: var(--green);
  color: #052719;
  box-shadow: 0 12px 26px rgba(56, 201, 107, 0.22);
}

.button--whatsapp:hover,
.button--primary:hover {
  background: #4fdb7f;
  box-shadow: 0 16px 34px rgba(56, 201, 107, 0.32);
}

.button--secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.button--secondary:hover {
  background: var(--white);
  border-color: rgba(12, 45, 55, 0.2);
  box-shadow: var(--shadow-soft);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100vh - 130px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 70px 0 92px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(251, 250, 245, 0.68)),
    repeating-linear-gradient(90deg, transparent 0 92px, rgba(12, 45, 55, 0.035) 93px 94px);
}

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

.hero__shape--one {
  width: 430px;
  height: 430px;
  top: -190px;
  right: -110px;
  background: rgba(56, 201, 107, 0.18);
}

.hero__shape--two {
  width: 240px;
  height: 240px;
  bottom: -95px;
  left: 5%;
  background: rgba(239, 76, 76, 0.08);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, 0.98fr);
  align-items: center;
  gap: clamp(44px, 7vw, 96px);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  border: 1px solid rgba(56, 201, 107, 0.28);
  border-radius: 999px;
  background: rgba(233, 250, 239, 0.78);
  padding: 8px 12px;
}

.hero h1 {
  max-width: 710px;
  margin: 24px 0 22px;
  color: var(--ink);
  font-size: clamp(3rem, 6.3vw, 5.7rem);
  font-weight: 850;
  letter-spacing: -0.067em;
  line-height: 0.98;
}

.hero h1 span {
  color: var(--green-dark);
}

.hero h1 em {
  display: inline-block;
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.83em;
  font-weight: 700;
  letter-spacing: -0.045em;
}

.hero__lead {
  max-width: 650px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 1.8vw, 1.18rem);
}

.rotator {
  min-height: 31px;
  margin: 23px 0 0;
  color: var(--ink-soft);
}

.rotator strong {
  color: var(--ink);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.rotator strong.is-changing {
  opacity: 0;
  transform: translateY(5px);
}

.hero__buttons {
  margin-top: 30px;
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.contact-line a {
  color: var(--ink);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: rgba(56, 201, 107, 0.6);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.hero-visual {
  position: relative;
  min-height: 610px;
}

.hero-card {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 8px solid rgba(255, 255, 255, 0.9);
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card--main {
  width: min(77%, 430px);
  height: 520px;
  left: 7%;
  top: 48%;
  transform: translateY(-50%) rotate(-2.5deg);
  border-radius: 32px;
}

.hero-card--main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 53%, rgba(7, 33, 39, 0.8) 100%);
}

.hero-card--main figcaption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 2;
  display: grid;
  gap: 4px;
  color: var(--white);
}

.hero-card--main figcaption span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-card--main figcaption strong {
  max-width: 300px;
  font-size: 1.17rem;
  line-height: 1.25;
}

.hero-card--small {
  width: 180px;
  height: 230px;
  right: 1%;
  border-width: 6px;
  border-radius: 24px;
}

.hero-card--top {
  top: 18px;
  transform: rotate(5deg);
}

.hero-card--bottom {
  right: 2.5%;
  bottom: 8px;
  transform: rotate(-5deg);
}

.floating-note {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(12, 45, 55, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  padding: 12px 15px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}

.floating-note div {
  display: grid;
  line-height: 1.25;
}

.floating-note small {
  color: var(--ink-soft);
  font-size: 0.69rem;
  font-weight: 700;
  text-transform: uppercase;
}

.floating-note strong {
  font-size: 0.86rem;
}

.floating-note--status {
  left: -3%;
  bottom: 62px;
}

.floating-note--domain {
  right: 7%;
  top: 245px;
}

.progress-section {
  position: relative;
  z-index: 4;
  margin-top: -28px;
}

.progress-card {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: center;
  border: 1px solid rgba(12, 45, 55, 0.1);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.92);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow-soft);
}

.progress-card h2,
.section-heading h2,
.promise h2,
.contact-card h2 {
  margin: 10px 0 12px;
  font-size: clamp(2rem, 4vw, 3.55rem);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.progress-card p,
.section-heading > p,
.promise__intro > p {
  margin: 0;
  color: var(--ink-soft);
}

.progress-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.progress-steps::before {
  content: "";
  position: absolute;
  top: 20px;
  right: 15%;
  left: 15%;
  height: 2px;
  background: linear-gradient(90deg, var(--green) 0 52%, var(--line) 52% 100%);
}

.progress-step {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
}

.progress-step > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(12, 45, 55, 0.14);
  border-radius: 50%;
  background: var(--white);
  font-size: 0.85rem;
  font-weight: 900;
}

.progress-step.is-done > span,
.progress-step.is-active > span {
  border-color: var(--green);
  background: var(--green);
  color: #052719;
}

.progress-step.is-active > span {
  box-shadow: 0 0 0 7px rgba(56, 201, 107, 0.14);
}

.progress-step p {
  display: grid;
  gap: 2px;
  margin-top: 11px;
}

.progress-step strong {
  color: var(--ink);
  font-size: 0.82rem;
}

.progress-step small {
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.section {
  padding: 112px 0;
}

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

.section-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.section-heading > p {
  padding-bottom: 6px;
  font-size: 1.03rem;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.category-card {
  position: relative;
  min-height: 350px;
  grid-column: span 4;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #173943;
  box-shadow: var(--shadow-soft);
  isolation: isolate;
}

.category-card:nth-child(1) {
  grid-column: span 7;
}

.category-card:nth-child(2) {
  grid-column: span 5;
}

.category-card:nth-child(3),
.category-card:nth-child(4),
.category-card:nth-child(5) {
  grid-column: span 4;
}

.category-card:nth-child(6) {
  min-height: 310px;
  grid-column: span 12;
}

.category-card:nth-child(6) img {
  object-position: center 58%;
}

.category-card img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.category-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(7, 31, 38, 0.03) 15%, rgba(7, 31, 38, 0.86) 100%);
}

.category-card__content {
  position: absolute;
  right: 24px;
  bottom: 23px;
  left: 24px;
  z-index: 2;
  color: var(--white);
}

.category-card__content span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.72rem;
  font-weight: 900;
  backdrop-filter: blur(6px);
}

.category-card__content h3 {
  margin: 0;
  font-size: 1.65rem;
  letter-spacing: -0.03em;
}

.category-card__content p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.category-card:hover img {
  transform: scale(1.055);
}

.promise {
  background: var(--ink);
  color: var(--white);
}

.promise__grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(55px, 8vw, 110px);
  align-items: start;
}

.promise .section-kicker {
  color: #73e49b;
}

.promise h2 {
  max-width: 560px;
  color: var(--white);
}

.promise__intro > p {
  max-width: 570px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.04rem;
}

.benefits {
  display: grid;
  gap: 14px;
}

.benefit {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.045);
  padding: 22px;
}

.benefit__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: var(--green);
  color: #052719;
  font-size: 1.25rem;
  font-weight: 900;
}

.benefit h3 {
  margin: 0;
  font-size: 1.08rem;
}

.benefit p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.91rem;
}

.contact-section {
  padding: 100px 0;
}

.contact-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: center;
  gap: 35px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 92% 10%, rgba(255, 255, 255, 0.12), transparent 30%),
    linear-gradient(135deg, #168c48, #30bf67);
  padding: clamp(35px, 6vw, 72px);
  color: var(--white);
  box-shadow: 0 30px 70px rgba(21, 149, 74, 0.23);
}

.contact-card::after {
  content: "X";
  position: absolute;
  right: -20px;
  bottom: -135px;
  z-index: -1;
  color: rgba(255, 255, 255, 0.08);
  font-family: Georgia, serif;
  font-size: 430px;
  font-weight: 900;
  line-height: 1;
}

.contact-card__logo {
  display: grid;
  place-items: center;
}

.contact-card__logo img {
  width: 220px;
  height: 220px;
  object-fit: contain;
  border-radius: 42px;
  background: rgba(255, 255, 255, 0.95);
  padding: 12px;
  box-shadow: 0 20px 45px rgba(7, 38, 46, 0.2);
  transform: rotate(-5deg);
}

.section-kicker--light {
  color: rgba(255, 255, 255, 0.82);
}

.contact-card h2 {
  max-width: 720px;
  color: var(--white);
}

.contact-card__content > p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.03rem;
}

.contact-card__buttons {
  margin-top: 25px;
}

.button--light {
  background: var(--white);
  color: var(--ink);
}

.button--light:hover {
  box-shadow: 0 14px 28px rgba(7, 38, 46, 0.18);
}

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

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

.site-footer {
  padding: 30px 0 26px;
  border-top: 1px solid var(--line);
  background: #f4f4ed;
}

.site-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.footer-brand {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.site-footer p {
  margin: 4px 0 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.site-footer__meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.site-footer__meta a {
  color: var(--ink);
  font-weight: 800;
}

.photo-credits {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.76rem;
}

.photo-credits summary {
  width: fit-content;
  cursor: pointer;
  font-weight: 800;
}

.photo-credits p {
  max-width: 850px;
  margin-top: 8px;
  font-size: 0.76rem;
}

.whatsapp-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 4px solid rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  background: #21c063;
  color: #052719;
  padding: 12px 17px;
  font-size: 0.84rem;
  font-weight: 900;
  box-shadow: 0 16px 35px rgba(11, 81, 43, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-fab:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(11, 81, 43, 0.38);
}

.noscript {
  position: fixed;
  right: 10px;
  bottom: 10px;
  left: 10px;
  z-index: 100;
  margin: 0;
  border-radius: 12px;
  background: #fff3cd;
  color: #664d03;
  padding: 12px;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

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

@keyframes pulse-ring {
  70% { box-shadow: 0 0 0 8px rgba(56, 201, 107, 0); }
  100% { box-shadow: 0 0 0 0 rgba(56, 201, 107, 0); }
}

@media (max-width: 1080px) {
  .hero__grid {
    grid-template-columns: 1fr 0.9fr;
    gap: 45px;
  }

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

  .hero-visual {
    min-height: 560px;
  }

  .hero-card--main {
    width: 78%;
    height: 480px;
  }

  .hero-card--small {
    width: 150px;
    height: 200px;
  }

  .category-card,
  .category-card:nth-child(n) {
    grid-column: span 6;
  }

  .promise__grid {
    gap: 55px;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 28px, 690px);
  }

  .site-header__inner {
    min-height: 78px;
  }

  .brand img {
    width: 56px;
    height: 56px;
  }

  .brand__text small {
    display: none;
  }


  .hero {
    min-height: auto;
    padding: 56px 0 78px;
  }

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

  .hero__content {
    text-align: center;
  }

  .hero h1,
  .hero__lead {
    margin-inline: auto;
  }

  .hero__buttons,
  .contact-line {
    justify-content: center;
  }

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

  .hero-card--main {
    left: 8%;
    width: 70%;
    height: 510px;
  }

  .hero-card--small {
    right: 2%;
    width: 170px;
    height: 220px;
  }

  .progress-card,
  .section-heading,
  .promise__grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 18px;
  }

  .progress-card {
    gap: 35px;
  }

  .section {
    padding: 85px 0;
  }

  .promise__grid {
    gap: 45px;
  }

  .contact-card {
    text-align: center;
  }

  .contact-card__logo img {
    width: 170px;
    height: 170px;
  }

  .contact-card__buttons {
    justify-content: center;
  }
}

@media (max-width: 580px) {
  .announcement {
    font-size: 0.78rem;
  }

  .brand__text strong {
    font-size: 1.2rem;
  }

  .header-actions {
    gap: 8px;
  }

  .header-actions .button {
    width: 46px;
    min-height: 46px;
    padding: 0;
    gap: 0;
    overflow: hidden;
    font-size: 0;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 14vw, 4.2rem);
  }

  .hero__buttons .button {
    width: 100%;
  }

  .contact-line {
    flex-direction: column;
    gap: 2px;
  }

  .hero-visual {
    min-height: 495px;
  }

  .hero-card {
    border-width: 5px;
  }

  .hero-card--main {
    left: 2%;
    width: 76%;
    height: 420px;
  }

  .hero-card--small {
    right: 0;
    width: 130px;
    height: 170px;
  }

  .hero-card--top {
    top: 18px;
  }

  .hero-card--bottom {
    bottom: 15px;
  }

  .floating-note--status {
    left: -2%;
    bottom: 25px;
  }

  .floating-note--domain {
    top: 200px;
    right: 0;
  }

  .floating-note {
    padding: 10px 12px;
  }

  .progress-section {
    margin-top: -18px;
  }

  .progress-card {
    padding: 27px 20px;
  }

  .progress-steps {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .progress-steps::before {
    display: none;
  }

  .progress-step {
    grid-template-columns: auto 1fr;
    justify-items: start;
    align-items: center;
    gap: 12px;
    text-align: left;
  }

  .progress-step p {
    margin-top: 0;
  }

  .category-card,
  .category-card:nth-child(n) {
    min-height: 330px;
    grid-column: span 12;
  }

  .contact-card {
    padding: 36px 22px;
  }

  .contact-card__buttons .button {
    width: 100%;
  }

  .site-footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer__meta {
    justify-content: flex-start;
  }

  .whatsapp-fab {
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
    justify-content: center;
    padding: 0;
  }

  .whatsapp-fab span {
    display: none;
  }
}

@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;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
