:root {
  --bg: #edf3ef;
  --bg-alt-1: #f3f7f4;
  --bg-alt-2: #e6eee8;
  --bg-alt-3: #dde8e0;
  --bg-alt-4: #ecf4ee;

  --surface: #f8faf8;
  --surface-strong: #234235;

  --text: #0f1514;
  --muted: #5e6965;
  --line: rgba(15, 35, 31, 0.12);

  --primary: #2f6b4f;
  --primary-strong: #24533d;
  --primary-soft: #dceadf;

  --white: #ffffff;
  --shadow: 0 18px 50px rgba(9, 19, 17, 0.10);

  --radius: 24px;
  --container: 1180px;
  --header-height: 82px;
}

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

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

body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

body.modal-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 1000;
  background: var(--white);
  padding: 12px 16px;
  border-radius: 10px;
  outline: 2px solid var(--primary);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

/* =========================
   HEADER
========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(248, 250, 248, 0.92);
  border-bottom: 1px solid rgba(15, 35, 31, 0.08);
}

.header-inner {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0.12em;
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(1.65rem, 1.85vw, 2.15rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: none;
}

.brand-accent {
  color: var(--primary);
  text-shadow: 0 2px 8px rgba(47, 107, 79, 0.25);
}

.brand-dot {
  display: inline-block;
  width: 0.18em;
  height: 0.18em;
  background: var(--primary);
  border-radius: 1px;
  flex: 0 0 auto;
  margin-top: 0.02em;
}

.site-nav {
  justify-self: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  color: var(--muted);
  font-weight: 500;
  transition: color 0.25s ease;
}

.nav-list a:hover,
.nav-list a:focus-visible,
.header-phone:hover,
.header-phone:focus-visible {
  color: var(--primary);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #2f6b4f;
  font-weight: 700;
}

.lang-switch__btn {
  border: 0;
  background: transparent;
  color: #2f6b4f;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0;
  cursor: pointer;
  opacity: 0.65;
}

.lang-switch__btn.is-active {
  opacity: 1;
  text-decoration: underline;
}

.lang-switch--mobile,
.nav-lang-item {
  display: none;
}

.header-phone {
  color: var(--primary);
  font-weight: 700;
}

.header-logo-desktop,
.header-logo-mobile {
  display: block;
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 10px;
  flex: 0 0 auto;
}

.header-logo-mobile {
  display: none;
}

.header-logo-mobile {
  clip-path: inset(1px 0);
}

.menu-toggle {
  display: none;
  width: 50px;
  height: 50px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =========================
   BUTTONS
========================= */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

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

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--primary-strong);
}

.button-light {
  background: rgba(47, 107, 79, 0.12);
  color: var(--text);
}

.button-phone {
  gap: 8px;
}

.phone-icon {
  font-size: 1rem;
  line-height: 1;
}

.button-ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.06);
}

/* =========================
   HERO
========================= */

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  display: block;
}

.hero-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(1.12) contrast(1.05) saturate(1.08);
  opacity: 1;
}

.hero-overlay {
  background: linear-gradient(
    90deg,
    rgba(11, 22, 17, 0.52) 0%,
    rgba(11, 22, 17, 0.34) 34%,
    rgba(11, 22, 17, 0.18) 58%,
    rgba(11, 22, 17, 0.06) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 56px 0 36px;
  color: var(--white);
}

.hero-mobile-copy {
  display: none;
}



.eyebrow,
.section-kicker {
  text-transform: nono;
  letter-spacing: 0.12em;
  font-weight: 700;
  margin-top: -10px;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 0.92rem;
}

.hero h1,
.section-title,
.about h2,
.process h2,
.cta h2 {
  margin: 0;
  line-height: 0.96;
  letter-spacing: -0.05em;
  font-weight: 800;
}

.hero h1 {
  max-width: 10ch;
  font-size: clamp(2.8rem, 5.2vw, 5.1rem);
}

.hero-text {
  max-width: 760px;
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.9);
  margin: 16px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

/* =========================
   GENERALS SECCIONS
========================= */

.section {
  padding: 20px 0 58px;
}

.about {
  background-color: var(--bg-alt-1);
}

.services {
  background-color: var(--bg-alt-2);
  padding: 25px 0 68px;
}

.process {
  background-color: var(--bg-alt-3);
  padding: 25px 0 68px;
}

.cta {
  background-color: var(--bg-alt-4);
  padding: 36px 0 58px;
}

.section-kicker {
  width: 100%;
  display: block;
  margin: 0 auto 44px;
  color: var(--primary);
  font-size: clamp(1.7rem, 3.5vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.04em;
  text-align: center;
  text-transform: uppercase;
  font-weight: 300;
}

.section-kicker span {
  font-weight: 800;
}

.about > .container,
.services > .container,
.process > .container,
.cta > .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-title.centered {
  text-align: center;
  max-width: 14ch;
  margin: 0 auto 79px;
  font-size: clamp(2.2rem, 4.8vw, 4.2rem);
}

.about-grid,
.process-grid,
.cta-grid,
.footer-grid {
  display: grid;
  gap: 24px;
}

.about-grid {
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1fr);
  align-items: center;
}

.about-image img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-copy h2,
.process h2,
.cta h2 {
  font-size: clamp(2.1rem, 4.8vw, 4rem);
}

.about-copy h2 {
  margin-bottom: 14px;
}

.about-copy p,
.service-item p,
.step p,
.cta p,
.site-footer p {
  color: var(--muted);
  font-size: clamp(1rem, 1.15vw, 1.12rem);
}

.about-copy p {
  margin: 0;
}

.about-copy p + p {
  margin-top: 16px;
}

/* =========================
   SERVICES
========================= */

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

.service-item {
  text-align: left;
  padding: 0;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(47, 107, 79, 0.20);
  border-radius: 10px;
  overflow: hidden;
}

.service-media {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-item:hover .service-media img,
.service-item:focus-within .service-media img {
  transform: scale(1.03);
}

.service-item h3,
.step h3 {
  margin: 14px 14px 8px;
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  letter-spacing: -0.04em;
}

.service-item p {
  margin: 0 14px 16px;
}

/* =========================
   PROCESS
========================= */

.process-grid {
  grid-template-columns: minmax(440px, 1.22fr) minmax(480px, 0.98fr);
  align-items: center;
  width: min(100%, 1180px);
}

.process-intro {
  display: block;
  padding-right: 24px;
  align-self: center;
}

.process-steps {
  width: 100%;
  max-width: 100%;
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 36px;
  padding: 10px 32px;
  box-shadow: 0 12px 32px rgba(18, 33, 24, 0.06);
}

.step {
  display: grid;
  grid-template-columns: 92px 1fr;
  align-items: center;
  gap: 22px;
  padding: 30px 0;
  border-top: 1px solid rgba(47, 107, 79, 0.13);
}

.step:first-child {
  border-top: 0;
}

.step-number {
  margin: 0;
  color: var(--primary);
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(47, 107, 79, 0.09);
  font-size: 1.9rem;
  line-height: 1;
  font-weight: 800;
}

.step h3 {
  margin: 0 0 8px;
  font-size: clamp(1.52rem, 1.68vw, 1.92rem);
}

.step p {
  margin: 0;
  max-width: 30ch;
  color: #5f6662;
  font-size: clamp(1rem, 1.08vw, 1.14rem);
  line-height: 1.35;
}

.step > div {
  border-left: 1px solid rgba(47, 107, 79, 0.11);
  padding-left: 22px;
}

.process-intro h2 {
  font-size: clamp(2.31rem, 5.28vw, 4.4rem);
  max-width: none;
}

/* =========================
   CTA
========================= */

.cta-card {
  background: linear-gradient(135deg, #3b5f4e 0%, #4a7560 55%, #5b8770 100%);
  color: var(--white);
  border-radius: 30px;
  padding: 34px clamp(22px, 5vw, 56px) 52px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.cta-logo-bg {
  position: absolute;
  inset: 4px;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  object-fit: contain;
  object-position: center;
  clip-path: inset(1px 0);
  opacity: 0.14;
  z-index: 0;
  pointer-events: none;
}

.cta-card > :not(.cta-logo-bg) {
  position: relative;
  z-index: 1;
}

.section-kicker-light {
  color: #cde9d6;
}

.cta h2 {
  max-width: 9ch;
}

.cta p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.86);
  margin: 20px 0 28px;
}

.cta-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 8px 0 0;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 0;
  background: #9ed5b1;
  font-size: clamp(1.05rem, 1.45vw, 1.16rem);
  font-weight: 800;
  letter-spacing: 0;
  color: #113424;
  box-shadow: 0 8px 20px rgba(9, 19, 17, 0.22);
  transition: filter 0.2s ease, transform 0.2s ease;
}

.cta-phone:hover,
.cta-phone:focus-visible {
  filter: brightness(0.96);
  transform: translateY(-1px);
}

.cta-grid {
  grid-template-columns: minmax(300px, 1fr) minmax(320px, 0.95fr);
  align-items: start;
  width: 100%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.contact-form {
  width: 100%;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  backdrop-filter: none;
}

.contact-form__field + .contact-form__field {
  margin-top: 10px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  border-radius: 10px;
  padding: 12px 14px;
  font: inherit;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #62706a;
}

.contact-form input:focus-visible,
.contact-form textarea:focus-visible {
  outline: 2px solid #9ed5b1;
  outline-offset: 1px;
}

.contact-form > div[data-netlify-recaptcha="true"] {
  margin-top: 12px;
  width: fit-content;
  transform: scale(0.9);
  transform-origin: left top;
  margin-bottom: -8px;
}

.contact-form > div[data-netlify-recaptcha="true"].is-invalid {
  outline: 2px solid #ffb3b3;
  outline-offset: 6px;
  border-radius: 8px;
}

.contact-form__consent {
  margin-top: 12px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 1rem;
  line-height: 1.35;
}

.contact-form__error {
  margin: 8px 0 0;
  color: #ffd9d9;
  font-size: 0.92rem;
  line-height: 1.3;
}

.contact-form__consent input[type="checkbox"] {
  margin-top: 2px;
  width: 14px;
  height: 14px;
  accent-color: #9ed5b1;
}

.contact-form__consent label {
  display: inline;
}

.privacy-toggle {
  background: none;
  border: 0;
  padding: 0;
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}

.privacy-dialog {
  width: min(760px, calc(100% - 24px));
  max-height: min(80svh, 760px);
  border: 0;
  border-radius: 12px;
  padding: 0;
  background: #ffffff;
  color: #0f1514;
  box-shadow: 0 18px 50px rgba(9, 19, 17, 0.24);
}

.privacy-dialog::backdrop {
  background: rgba(7, 15, 12, 0.56);
}

.privacy-dialog__header {
  position: sticky;
  top: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(15, 35, 31, 0.12);
  background: #ffffff;
}

.privacy-dialog__header h3 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.2;
}

.privacy-dialog__close {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid rgba(15, 35, 31, 0.18);
  background: #f6faf7;
  color: #0f1514;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.privacy-dialog__content {
  padding: 16px;
  overflow: auto;
  max-height: calc(min(80svh, 760px) - 64px);
}

.privacy-dialog__content p {
  margin: 0 0 10px;
  font-size: 0.98rem;
  color: #21302a;
}

.privacy-dialog__content ul {
  margin: 0 0 12px 18px;
  padding: 0;
}

.privacy-dialog__content li {
  margin: 0 0 6px;
  color: #21302a;
  font-size: 0.98rem;
}

.submit-dialog {
  border: none;
  border-radius: 12px;
  padding: 0;
  width: min(92vw, 340px);
}

.submit-dialog::backdrop {
  background: rgba(6, 16, 13, 0.42);
}

.submit-dialog__body {
  padding: 20px;
}

.submit-dialog__body h3 {
  margin: 0;
  color: var(--text);
  font-size: 1.2rem;
}

.submit-dialog__body p {
  margin: 10px 0 0;
  color: var(--muted);
}

.submit-dialog__close {
  margin-top: 16px;
  min-height: 42px;
  padding: 0 16px;
  border: none;
  border-radius: 999px;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  cursor: pointer;
}

.contact-form__submit {
  margin-top: 14px;
  width: 100%;
  min-height: 50px;
  border: 0;
  border-radius: 999px;
  background: #9ed5b1;
  color: #113424;
  font-weight: 800;
  cursor: pointer;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.contact-form__submit:hover,
.contact-form__submit:focus-visible {
  filter: brightness(0.96);
  transform: translateY(-1px);
}

.cta .contact-form__legal {
  margin: 10px 0 0;
  font-size: 0.61rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
  max-width: 100%;
}

.contact-form__legal a,
.privacy-inline-toggle {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.privacy-inline-toggle {
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  cursor: pointer;
}

/* =========================
   FOOTER
========================= */

.site-footer {
  padding: 34px 0 40px;
  background: #dde9df;
}

.footer-grid {
  grid-template-columns: 1.2fr 1fr 1fr;
  align-items: start;
  gap: 12px;
}

.site-footer p {
  margin: 0;
}

.site-footer p + p {
  margin-top: 6px;
}

.footer-logo-end {
  margin-top: 16px;
  display: flex;
  justify-content: center;
}

.footer-logo-end img {
  width: 74px;
  height: auto;
  display: block;
  border: 0;
  box-shadow: none;
  clip-path: inset(1px 0);
}

.site-footer .footer-copy {
  margin: 12px 0 0;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(15, 35, 31, 0.72);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--primary);
}

.section-anchor {
  scroll-margin-top: calc(var(--header-height) + 14px);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

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

.services.reveal-on-scroll {
  opacity: 1;
  transform: none;
  transition: none;
}

.reveal-item {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1), transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible .reveal-item:not(.reveal-item--self) {
  opacity: 1;
  transform: translateY(0);
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .reveal-item {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.whatsapp-fab {
  display: none;
}

/* =========================
   RESPONSIVE TABLET
========================= */

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: auto 1fr auto auto;
    gap: 14px;
  }

  .header-logo-mobile {
    display: block;
    grid-column: 3;
    width: 42px;
    height: 42px;
    justify-self: end;
  }

  .menu-toggle {
    display: inline-flex;
    grid-column: 4;
    justify-self: end;
  }

  .site-nav {
    grid-column: 1 / -1;
    justify-self: stretch;
    display: none;
    padding-bottom: 10px;
  }

  .site-nav.is-open {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-top: 1px solid var(--line);
    padding-top: 8px;
  }

  .nav-list li + li {
    border-top: 1px solid rgba(15, 35, 31, 0.06);
  }

  .nav-list a {
    display: block;
    padding: 13px 0;
  }

  .header-cta,
  .lang-switch--desktop,
  .header-logo-desktop {
    display: none;
  }

  .nav-lang-item {
    display: block;
    padding: 12px 0 0;
    border-top: 1px solid rgba(15, 35, 31, 0.06);
    margin-top: 8px;
  }

  .lang-switch--mobile {
    display: inline-flex;
  }

  .hero {
    min-height: calc(100svh - var(--header-height));
  }

  .hero-content {
    display: none;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.3rem, 9vw, 3.6rem);
  }

  .hero-text {
    font-size: 1rem;
    margin-top: 14px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 10px;
    margin-top: 18px;
  }

  .hero-media {
    display: block;
  }

  .hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 1;
  }

  .hero-mobile-copy {
    display: block;
    background: var(--bg-alt-1);
    padding: 26px 0 34px;
  }

  .hero-mobile-copy .eyebrow {
    color: var(--primary);
    margin: 0 0 12px;
    font-size: 0.82rem;
  }

  .hero-mobile-copy h2 {
    margin: 0;
    color: var(--text);
    font-size: clamp(1.9rem, 5.4vw, 2.6rem);
    line-height: 1;
    letter-spacing: -0.03em;
  }

  .hero-mobile-copy p {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 1rem;
  }

  .hero-mobile-copy .hero-actions {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .about-grid,
  .process-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

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

  .process-intro {
    padding-right: 0;
  }
}

/* =========================
   RESPONSIVE MOBILE
========================= */

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .section {
    padding: 46px 0;
  }

  .services,
  .process {
    padding: 54px 0;
  }

  .cta {
    padding: 24px 0 42px;
  }

  .hero {
    min-height: calc(100svh - var(--header-height));
  }

  .hero-content {
    display: none;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.3rem, 9vw, 3.6rem);
  }

  .hero-text {
    font-size: 1rem;
    margin-top: 14px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 10px;
    margin-top: 18px;
  }

  .hero-media {
    display: block;
  }

  .hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 68% center;
    filter: brightness(1.2) contrast(1.06) saturate(1.1);
    transform: none;
    opacity: 1;
  }

  .hero-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(11, 22, 17, 0.32) 0%,
        rgba(11, 22, 17, 0.22) 34%,
        rgba(11, 22, 17, 0.07) 64%,
        rgba(11, 22, 17, 0.01) 100%
      ),
      linear-gradient(
        180deg,
        rgba(11, 22, 17, 0.05) 0%,
        rgba(11, 22, 17, 0.02) 46%,
        rgba(11, 22, 17, 0.08) 100%
      );
  }

  .hero-mobile-copy {
    display: block;
  }

  

  .header-inner {
    grid-template-columns: auto 1fr auto auto;
    gap: 10px;
  }

  .header-logo-mobile {
    width: 37px;
    height: 37px;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
  }

  .button,
  .button-light {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
  }

  .section-kicker,
  .about-copy h2,
  .section-title.centered,
  .process h2,
  .cta h2 {
    line-height: 1;
  }

  .about-grid,
  .process-grid,
  .services-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-title.centered {
    max-width: 100%;
  }

  .service-item h3 {
    margin: 12px 12px 8px;
    font-size: 1.08rem;
  }

  .service-item p {
    margin: 0 12px 14px;
    font-size: 0.98rem;
  }

  .service-media {
    aspect-ratio: 16 / 9;
  }

  .step {
    grid-template-columns: 84px 1fr;
    gap: 14px;
    align-items: start;
    padding: 20px 0;
  }

  .step-number {
    width: 68px;
    height: 68px;
    font-size: 2.2rem;
  }

  .process-steps {
    border-radius: 24px;
    padding: 8px 16px;
  }

  .step h3 {
    font-size: clamp(1.6rem, 6.8vw, 2.05rem);
  }

  .cta-card {
    border-radius: 24px;
    padding: 38px 18px;
  }

  .cta-logo-bg {
    inset: 6px;
    width: calc(100% - 12px);
    height: calc(100% - 12px);
    object-position: top center;
    clip-path: inset(1px 0);
    opacity: 0.12;
  }

  .cta-card .section-kicker-light {
    margin-top: 0;
    margin-bottom: 24px;
    font-size: clamp(1.7rem, 3.5vw, 3.6rem);
    line-height: 1;
  }

  .cta-grid {
    margin-top: 0;
  }

  .cta-grid .contact-form {
    margin-top: 2px;
  }

  .site-footer {
    padding: 28px 0 34px;
  }

  .whatsapp-fab {
    position: fixed;
    right: 12px;
    bottom: 12px;
    z-index: 150;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .whatsapp-fab img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}
