:root {
  --green-950: #002f24;
  --green-900: #064e3b;
  --green-800: #08634d;
  --teal-700: #0f766e;
  --teal-600: #0d9488;
  --teal-100: #ccfbf1;
  --white: #ffffff;
  --grey-50: #fafafa;
  --grey-100: #f3f4f6;
  --grey-200: #e5e7eb;
  --grey-500: #6b7280;
  --grey-700: #374151;
  --black: #151918;
  --whatsapp: #25d366;
  --shadow: 0 12px 35px rgba(0, 78, 59, 0.08);
  --shadow-strong: 0 18px 50px rgba(0, 47, 36, 0.16);
  --radius-sm: 0.75rem;
  --radius: 1rem;
  --radius-lg: 1.5rem;
  --header-height: 4.75rem;
  --container: 75rem;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1.25rem);
}

body {
  margin: 0;
  background: var(--white);
  color: var(--black);
  font-family: "Inter", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

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

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

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

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

h1,
h2,
h3 {
  color: var(--green-950);
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.18;
}

h1 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.35rem, 8vw, 4rem);
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 6vw, 3rem);
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: 1.075rem;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.section {
  padding-block: clamp(4rem, 9vw, 7rem);
}

.section-muted {
  background: var(--grey-100);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  transform: translateY(-180%);
  border-radius: 0.5rem;
  background: var(--white);
  color: var(--green-950);
  font-weight: 700;
  text-decoration: none;
  box-shadow: var(--shadow-strong);
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  min-height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled {
  border-color: var(--grey-200);
  box-shadow: 0 5px 20px rgba(0, 47, 36, 0.05);
}

.nav-shell {
  position: relative;
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--green-950);
  font-family: "Montserrat", Arial, sans-serif;
  text-decoration: none;
}

.brand-mark {
  display: block;
  width: 3.45rem;
  height: 3.45rem;
  flex: 0 0 3.45rem;
  overflow: hidden;
  border-radius: 0.72rem;
  background: var(--white);
  box-shadow: 0 5px 16px rgba(0, 47, 36, 0.1);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 0.08rem;
  line-height: 1;
}

.brand-copy strong {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.brand-copy small {
  color: var(--teal-700);
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.menu-toggle {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  place-items: center;
  border: 1px solid var(--grey-200);
  border-radius: 0.75rem;
  background: var(--white);
  color: var(--green-950);
  cursor: pointer;
}

.menu-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2;
}

.primary-navigation {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  left: 0;
  display: none;
  padding: 1rem;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-strong);
}

.primary-navigation.open {
  display: grid;
}

.primary-navigation > a:not(.button) {
  padding: 0.75rem;
  color: var(--grey-700);
  font-weight: 600;
  text-decoration: none;
}

.primary-navigation > a:not(.button):hover {
  color: var(--teal-700);
}

.button {
  display: inline-flex;
  min-height: 3.4rem;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.4rem;
  border: 2px solid var(--green-900);
  border-radius: 0.75rem;
  background: var(--green-900);
  color: var(--white);
  font-size: 0.925rem;
  font-weight: 700;
  letter-spacing: 0.015em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  border-color: var(--green-800);
  background: var(--green-800);
  transform: translateY(-2px);
  box-shadow: var(--shadow-strong);
}

.button svg,
.text-link svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button-small {
  min-height: 2.8rem;
  padding: 0.65rem 1.1rem;
}

.button-outline {
  border-color: var(--green-900);
  background: transparent;
  color: var(--green-900);
  box-shadow: none;
}

.button-outline:hover {
  background: #ecfdf5;
  color: var(--green-950);
  box-shadow: none;
}

.button-outline svg {
  fill: currentColor;
  stroke: none;
}

.hero {
  display: grid;
  min-height: 100svh;
  align-items: center;
  padding-top: calc(var(--header-height) + 3rem);
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 16%, rgba(13, 148, 136, 0.12), transparent 30rem),
    linear-gradient(180deg, var(--grey-50), var(--white));
}

.hero-grid,
.contact-grid,
.why-grid,
.faq-layout {
  display: grid;
  gap: 3rem;
}

.hero-copy {
  max-width: 40rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.9rem;
  color: var(--teal-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.hero-intro {
  max-width: 39rem;
  margin-bottom: 1.8rem;
  color: var(--grey-700);
  font-size: clamp(1.075rem, 2vw, 1.2rem);
}

.hero-actions {
  display: grid;
  gap: 0.75rem;
}

.hero-points {
  display: grid;
  gap: 0.7rem;
  margin: 1.75rem 0 0;
  padding: 0;
  color: var(--grey-700);
  font-size: 0.9rem;
  font-weight: 600;
  list-style: none;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-points svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: var(--teal-600);
  stroke-linecap: round;
  stroke-width: 2.5;
}

.hero-visual {
  position: relative;
}

.hero-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 5 / 4;
  border-radius: var(--radius-lg);
  background: var(--grey-200);
  box-shadow: var(--shadow-strong);
}

.hero-image-wrap::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 47, 36, 0.18));
  content: "";
}

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

.hero-badge {
  position: relative;
  display: flex;
  width: calc(100% - 2rem);
  margin: -2rem auto 0;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem;
  border: 1px solid rgba(15, 118, 110, 0.16);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-badge > span {
  display: grid;
  flex: 0 0 2.75rem;
  height: 2.75rem;
  place-items: center;
  border-radius: 50%;
  background: var(--teal-100);
  color: var(--teal-700);
}

.hero-badge svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.hero-badge p {
  margin: 0;
  color: var(--grey-700);
  font-size: 0.82rem;
  line-height: 1.45;
}

.hero-badge strong {
  display: block;
  color: var(--green-950);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.88rem;
}

.section-heading {
  max-width: 39rem;
  margin-bottom: 2.5rem;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading > p:not(.eyebrow) {
  color: var(--grey-700);
}

.services-grid,
.benefits-grid {
  display: grid;
  gap: 1rem;
}

.service-card {
  min-width: 0;
  padding: 1.35rem;
  border: 1px solid rgba(6, 78, 59, 0.08);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 6px 25px rgba(0, 78, 59, 0.045);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  border-color: rgba(13, 148, 136, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-card p {
  margin-bottom: 0;
  color: var(--grey-700);
  font-size: 0.9rem;
}

.service-icon {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1rem;
  place-items: center;
  border-radius: 0.8rem;
  background: var(--teal-100);
  color: var(--teal-700);
}

.service-icon svg {
  width: 1.45rem;
  height: 1.45rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.pricing-panel {
  position: relative;
  display: grid;
  gap: 2.5rem;
  overflow: hidden;
  padding: clamp(1.5rem, 6vw, 4rem);
  border: 1px solid rgba(6, 78, 59, 0.1);
  border-top: 5px solid var(--teal-600);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.pricing-panel::after {
  position: absolute;
  top: -6rem;
  right: -5rem;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: rgba(204, 251, 241, 0.4);
  content: "";
  pointer-events: none;
}

.pricing-panel > * {
  position: relative;
  z-index: 1;
}

.pricing-copy {
  max-width: 37rem;
  margin-bottom: 1.75rem;
  color: var(--grey-700);
  font-size: 1.075rem;
}

.quote-factors {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.quote-factors div {
  display: grid;
  min-height: 7.5rem;
  place-items: center;
  align-content: center;
  gap: 0.65rem;
  padding: 1rem;
  border-radius: var(--radius);
  background: var(--grey-100);
  color: var(--green-950);
  font-size: 0.85rem;
  font-weight: 700;
  text-align: center;
}

.quote-factors svg {
  width: 2rem;
  height: 2rem;
  fill: none;
  stroke: var(--teal-600);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.section-dark {
  position: relative;
  overflow: hidden;
  background: var(--green-950);
  color: rgba(255, 255, 255, 0.76);
}

.section-dark::after {
  position: absolute;
  right: -10rem;
  bottom: -14rem;
  width: 30rem;
  height: 30rem;
  border: 1px solid rgba(204, 251, 241, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 5rem rgba(204, 251, 241, 0.025), 0 0 0 10rem rgba(204, 251, 241, 0.02);
  content: "";
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-dark .section-heading > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
}

.why-grid {
  position: relative;
  z-index: 1;
}

.eyebrow-light {
  color: #5eead4;
}

.benefits-grid article {
  display: flex;
  min-height: 6.5rem;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.benefits-grid span {
  display: grid;
  flex: 0 0 2.8rem;
  height: 2.8rem;
  place-items: center;
  border-radius: 0.8rem;
  background: rgba(94, 234, 212, 0.14);
  color: #5eead4;
}

.benefits-grid svg {
  width: 1.4rem;
  height: 1.4rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.benefits-grid h3 {
  margin: 0;
  font-size: 0.95rem;
}

.gallery-showcase {
  display: grid;
  gap: clamp(2.75rem, 6vw, 4.5rem);
}

.gallery-category {
  display: grid;
  gap: 1.25rem;
}

.gallery-category-heading {
  display: flex;
  max-width: 45rem;
  align-items: flex-start;
  gap: 0.9rem;
}

.gallery-category-heading > span {
  display: grid;
  width: 3rem;
  height: 3rem;
  flex: 0 0 3rem;
  place-items: center;
  border-radius: 0.9rem;
  background: var(--teal-100);
  color: var(--teal-700);
}

.gallery-category-heading svg {
  width: 1.45rem;
  height: 1.45rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.gallery-category-heading h3 {
  margin-bottom: 0.3rem;
  font-size: clamp(1.15rem, 3vw, 1.4rem);
}

.gallery-category-heading p {
  margin: 0;
  color: var(--grey-700);
  font-size: 0.9rem;
}

.work-gallery-grid {
  display: grid;
  gap: 1rem;
}

.work-photo {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(6, 78, 59, 0.1);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 8px 28px rgba(0, 78, 59, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.work-photo:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
}

.work-photo-media {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--grey-100);
}

.work-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.work-photo:hover img {
  transform: scale(1.025);
}

.work-photo figcaption {
  padding: 1rem 1.1rem 1.15rem;
}

.work-photo figcaption strong,
.work-photo figcaption span {
  display: block;
}

.work-photo figcaption strong {
  margin-bottom: 0.2rem;
  color: var(--green-950);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.95rem;
}

.work-photo figcaption span {
  color: var(--grey-700);
  font-size: 0.82rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--teal-700);
  font-weight: 700;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.25rem;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-list details {
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.faq-list details[open] {
  border-color: rgba(13, 148, 136, 0.45);
  box-shadow: var(--shadow);
}

.faq-list summary {
  position: relative;
  padding: 1.2rem 3.5rem 1.2rem 1.2rem;
  color: var(--green-950);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary span,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  right: 1.25rem;
  width: 1rem;
  height: 2px;
  transform: translateY(-50%);
  background: var(--teal-700);
  content: "";
}

.faq-list summary span::after {
  top: 0;
  right: 0;
  transform: rotate(90deg);
  transition: transform 180ms ease;
}

.faq-list details[open] summary span::after {
  transform: rotate(0);
}

.faq-list details p {
  margin: 0;
  padding: 0 1.2rem 1.2rem;
  color: var(--grey-700);
}

.contact-section {
  background: var(--green-950);
  color: rgba(255, 255, 255, 0.76);
}

.contact-section h2 {
  color: var(--white);
}

.contact-intro > p:not(.eyebrow) {
  max-width: 35rem;
}

.contact-methods {
  display: grid;
  gap: 0.75rem;
  margin-top: 2rem;
}

.contact-methods a {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  text-decoration: none;
}

.contact-methods a:hover {
  background: rgba(255, 255, 255, 0.09);
}

.contact-methods a > span {
  display: grid;
  flex: 0 0 2.8rem;
  height: 2.8rem;
  place-items: center;
  border-radius: 0.8rem;
  background: rgba(94, 234, 212, 0.14);
  color: #5eead4;
}

.contact-methods svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.contact-methods a:last-child svg {
  fill: currentColor;
  stroke: none;
}

.contact-methods small,
.contact-methods strong {
  display: block;
  overflow-wrap: anywhere;
}

.contact-methods small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.75rem;
}

.contact-methods strong {
  color: var(--white);
  font-size: 0.88rem;
}

.form-card {
  padding: clamp(1.25rem, 4vw, 2rem);
  border-radius: var(--radius-lg);
  background: var(--white);
  color: var(--black);
  box-shadow: var(--shadow-strong);
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.field label {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--green-950);
  font-size: 0.86rem;
  font-weight: 700;
}

.field label span {
  color: var(--teal-700);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.78rem 0.9rem;
  border: 1px solid #cbd5d1;
  border-radius: 0.65rem;
  background: var(--white);
  color: var(--black);
  line-height: 1.5;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field input,
.field select {
  min-height: 3rem;
}

.field textarea {
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--teal-600);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.16);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #7b8581;
}

.honeypot {
  display: none !important;
}

.form-submit {
  width: 100%;
  margin-top: 1.25rem;
}

.form-submit[disabled] {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}

.form-note {
  margin: 0.75rem 0 0;
  color: var(--grey-500);
  font-size: 0.76rem;
  text-align: center;
}

.form-status {
  display: none;
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.88rem;
  font-weight: 600;
}

.form-status.visible {
  display: block;
}

.form-status.success {
  background: #dcfce7;
  color: #14532d;
}

.form-status.error {
  background: #fee2e2;
  color: #7f1d1d;
}

.site-footer {
  padding-top: 4rem;
  background: #f7f8f8;
  color: var(--grey-700);
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

.footer-grid > div:first-child p {
  max-width: 22rem;
  margin: 1rem 0 0;
}

.footer-grid h2 {
  margin-bottom: 0.85rem;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-grid ul {
  display: grid;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-grid a:not(.brand) {
  color: var(--grey-700);
  font-size: 0.88rem;
  text-decoration: none;
}

.footer-grid a:not(.brand):hover {
  color: var(--teal-700);
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.social-links span {
  display: grid;
  width: 1.75rem;
  height: 1.75rem;
  place-items: center;
  border-radius: 50%;
  background: var(--grey-200);
  color: var(--green-950);
  font-size: 0.8rem;
  font-weight: 800;
}

.social-links svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.footer-bottom {
  display: flex;
  margin-top: 3rem;
  flex-direction: column;
  gap: 0.25rem;
  padding-block: 1.25rem;
  border-top: 1px solid var(--grey-200);
  font-size: 0.78rem;
}

.footer-bottom p {
  margin: 0;
}

.floating-whatsapp {
  position: fixed;
  z-index: 90;
  right: 1rem;
  bottom: 1rem;
  display: inline-flex;
  min-height: 3.6rem;
  align-items: center;
  gap: 0.55rem;
  padding: 0.8rem 1rem;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  background: var(--whatsapp);
  color: #072d18;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(0, 47, 36, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0, 47, 36, 0.34);
}

.floating-whatsapp svg {
  width: 1.6rem;
  height: 1.6rem;
  fill: currentColor;
}

@media (max-width: 30rem) {
  .floating-whatsapp {
    width: 3.6rem;
    padding-inline: 0;
    justify-content: center;
  }

  .floating-whatsapp span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
  }
}

@media (min-width: 36rem) {
  .hero-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .hero-points {
    grid-template-columns: repeat(2, minmax(0, max-content));
    column-gap: 1.5rem;
  }

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

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

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

  .field-wide {
    grid-column: 1 / -1;
  }

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

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 48rem) {
  .menu-toggle {
    display: none;
  }

  .primary-navigation,
  .primary-navigation.open {
    position: static;
    display: flex;
    padding: 0;
    align-items: center;
    gap: 0.25rem;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .primary-navigation > a:not(.button) {
    padding: 0.65rem 0.75rem;
    font-size: 0.88rem;
  }

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

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

  .pricing-panel {
    grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.75fr);
    align-items: center;
  }

  .work-gallery-grid-three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

}

@media (min-width: 64rem) {
  :root {
    --header-height: 5rem;
  }

  .container {
    width: min(100% - 3rem, var(--container));
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(27rem, 0.98fr);
    align-items: center;
    gap: 4rem;
  }

  .hero-image-wrap {
    aspect-ratio: 4 / 3;
  }

  .hero-badge {
    position: absolute;
    bottom: -2rem;
    left: -2rem;
    width: 17rem;
    margin: 0;
  }

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

  .why-grid {
    grid-template-columns: minmax(17rem, 0.72fr) minmax(0, 1.28fr);
    align-items: start;
    gap: 5rem;
  }

  .why-grid .section-heading {
    position: sticky;
    top: calc(var(--header-height) + 2rem);
    margin: 0;
  }

  .faq-layout {
    grid-template-columns: minmax(16rem, 0.7fr) minmax(0, 1.3fr);
    align-items: start;
    gap: 5rem;
  }

  .faq-layout .section-heading {
    position: sticky;
    top: calc(var(--header-height) + 2rem);
    margin: 0;
  }

  .contact-grid {
    grid-template-columns: minmax(18rem, 0.7fr) minmax(0, 1.3fr);
    align-items: start;
    gap: 5rem;
  }

  .contact-intro {
    position: sticky;
    top: calc(var(--header-height) + 2rem);
  }

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

  .floating-whatsapp {
    right: 1.5rem;
    bottom: 1.5rem;
  }
}

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