@font-face {
  font-family: "Corify";
  src: url("assets/fonts/corify/Corify.woff2") format("woff2"),
       url("assets/fonts/corify/Corify.woff") format("woff");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Artnik";
  src: url("assets/fonts/artnik/TBJArtnik-Light.woff2") format("woff2"),
       url("assets/fonts/artnik/TBJArtnik-Light.woff") format("woff");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Artnik";
  src: url("assets/fonts/artnik/TBJArtnik-Regular.woff2") format("woff2"),
       url("assets/fonts/artnik/TBJArtnik-Regular.woff") format("woff");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Artnik";
  src: url("assets/fonts/artnik/TBJArtnik-Bold.woff2") format("woff2"),
       url("assets/fonts/artnik/TBJArtnik-Bold.woff") format("woff");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --dark: #333333;
  --dark-soft: #3d3d3d;
  --ivory: #ffffe3;
  --green: #2fbd4e;
  --green-soft: #56d971;
  --white: #ffffff;
  --text: #262626;
  --muted: #606060;
  --surface: #f8f8eb;
  --border: #d7d7c2;
  --radius: 20px;
  --shadow-soft: 0 14px 40px rgba(27, 34, 28, 0.12);
  --shadow-strong: 0 20px 55px rgba(10, 10, 10, 0.22);
  --header-h: 82px;
}

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

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: "Artnik", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top right, #f0f5e8 0%, var(--ivory) 55%, #f7f7de 100%);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  position: relative;
  overflow-x: clip;
}

body.menu-open {
  overflow: hidden;
}

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

figure {
  margin: 0;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Corify", sans-serif;
  line-height: 1.2;
  margin: 0;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

p {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 16px;
  z-index: 120;
  padding: 10px 14px;
  background: var(--white);
  color: var(--dark);
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-150%);
  transition: opacity 180ms ease, transform 180ms ease;
}

.skip-link:focus {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-header,
main,
.section,
.site-footer {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

@supports (overflow-x: clip) {
  .site-header,
  main,
  .section,
  .site-footer {
    overflow-x: clip;
  }
}

.container {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 1.2rem;
}

.section {
  padding: clamp(2.5rem, 5vw, 4.4rem) 0;
  position: relative;
}

.section-soft {
  background: linear-gradient(180deg, #f1f4e6 0%, #fbfbe9 100%);
  border-block: 1px solid #ececd9;
}

.section-dark {
  background: linear-gradient(130deg, #252525 0%, var(--dark) 65%, #3f3f3f 100%);
  color: #f7f7ed;
}

.section-head {
  max-width: 760px;
  margin-bottom: clamp(1.25rem, 2.3vw, 1.9rem);
}

.section-head h2 {
  font-size: clamp(1.65rem, 2.9vw, 2.7rem);
  margin-top: 0.45rem;
}

.section-head p {
  margin-top: 0.85rem;
  color: var(--muted);
}

.section-head.light p {
  color: #e2e2d6;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "Corify", sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green);
  font-weight: 700;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease, border-color 220ms ease;
  cursor: pointer;
}

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

.btn:focus-visible {
  outline: 2px solid var(--green-soft);
  outline-offset: 3px;
}

.btn-primary {
  background: linear-gradient(120deg, var(--green) 0%, #43d165 100%);
  color: #fff;
  box-shadow: 0 14px 30px rgba(47, 189, 78, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 18px 35px rgba(47, 189, 78, 0.38);
}

.btn-ghost {
  border-color: #b8b89f;
  color: #efefe3;
  background: rgba(255, 255, 255, 0.06);
}

.btn-ghost:hover {
  border-color: #efefdf;
  background: rgba(255, 255, 255, 0.12);
}

.btn-whatsapp {
  background: #0b6d24;
  color: #fff;
}

.btn-whatsapp:hover {
  background: #0a5d1f;
}

.btn-secondary {
  border-color: #b8b89f;
  background: #fff;
  color: var(--text);
}

.btn-secondary:hover {
  border-color: #8f8f73;
  background: #f4f4ea;
}

.hidden {
  display: none;
}

.desktop-only {
  display: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 90;
  backdrop-filter: blur(14px);
  background: rgba(51, 51, 51, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-wrap {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 1 1 auto;
  width: auto;
  max-width: min(220px, 58vw);
  min-width: 0;
}

.brand img {
  width: 100%;
  border-radius: 8px;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 4px;
  transition: transform 250ms ease, opacity 220ms ease;
}

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

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

.site-nav {
  position: absolute;
  top: calc(var(--header-h) + 8px);
  right: 1.2rem;
  width: min(320px, calc(100% - 2.4rem));
  padding: 0.8rem;
  border-radius: 14px;
  background: rgba(28, 28, 28, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-strong);
  display: grid;
  gap: 0.3rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 200ms ease, transform 200ms ease;
}

.site-nav a {
  color: #f2f2e8;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.65rem 0.8rem;
  border-radius: 10px;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.site-nav.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.hero {
  padding-top: calc(var(--header-h) + clamp(2.6rem, 5vw, 4rem));
  padding-bottom: clamp(2.6rem, 4.8vw, 4.2rem);
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(40px);
  opacity: 0.34;
}

.hero-glow-a {
  width: 260px;
  height: 260px;
  background: #55d770;
  top: 90px;
  right: 0;
}

.hero-glow-b {
  width: 230px;
  height: 230px;
  background: #91a7ff;
  left: 0;
  bottom: -80px;
  opacity: 0.18;
}

.hero-grid {
  display: grid;
  gap: 1.7rem;
  align-items: center;
}

.hero-grid > *,
.header-wrap > * {
  min-width: 0;
}

.hero-copy h1 {
  margin-top: 0.75rem;
  font-size: clamp(1.55rem, 2.15vw, 2.4rem);
  line-height: 1.2;
  letter-spacing: 0.012em;
  color: #f8f8ee;
  overflow-wrap: break-word;
}

.hero-h1-main,
.hero-h1-main span {
  display: inline;
}

.hero-copy h1 .hero-h1-secondary {
  display: block;
  margin-top: 0.16em;
  font-family: "Artnik", sans-serif;
  font-size: 0.78em;
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: 0.002em;
  text-transform: none;
}

.hero-copy h1 .hero-h1-secondary span {
  display: inline;
}

.hero-sub {
  margin-top: 1rem;
  max-width: 60ch;
  color: #dbdbcf;
}

.hero-ctas {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-points {
  margin-top: 1.1rem;
  display: grid;
  gap: 0.55rem;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 1.35rem;
  color: #ececde;
  font-size: 0.94rem;
}

.hero-points li::before {
  content: "";
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green-soft);
}

.hero-media {
  position: relative;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  aspect-ratio: 3 / 2;
  min-height: 0;
  height: auto;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  background: #252525;
}

.hero-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.78rem 0.9rem;
  border-radius: 14px;
  background: rgba(10, 10, 10, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  backdrop-filter: blur(4px);
}

.hero-badge strong {
  display: block;
  font-family: "Corify", sans-serif;
  font-size: 0.88rem;
  text-transform: uppercase;
}

.hero-badge span {
  display: block;
  font-size: 0.8rem;
  color: #d4d4c8;
}

.visual-strip {
  padding: clamp(1.35rem, 3vw, 2.35rem) 0 clamp(2.4rem, 5vw, 4rem);
  background:
    radial-gradient(circle at 82% 18%, rgba(47, 189, 78, 0.18), transparent 34%),
    linear-gradient(180deg, #303030 0%, #f2f5e8 100%);
}

.visual-strip-grid {
  display: grid;
  gap: 0.85rem;
}

.visual-tile,
.visual-assurance,
.belief-visual,
.image-break,
.service-photo,
.process-visual,
.faq-visual {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.visual-tile,
.belief-visual,
.service-photo,
.process-visual,
.faq-visual {
  position: relative;
  min-height: 240px;
  background: #222;
}

.visual-tile img,
.belief-visual img,
.service-photo img,
.process-visual img,
.faq-visual img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.visual-tile::after,
.belief-visual::after,
.service-photo::after,
.process-visual::after,
.faq-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.64) 100%);
  pointer-events: none;
}

.visual-tile figcaption,
.belief-visual figcaption,
.service-photo figcaption,
.process-visual figcaption {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 0.9rem 1rem;
  color: #f7f7ed;
  font-size: 0.88rem;
}

.visual-tile-large {
  min-height: 300px;
}

.visual-assurance {
  display: grid;
  align-content: end;
  min-height: 220px;
  padding: 1.15rem;
  background:
    linear-gradient(145deg, rgba(47, 189, 78, 0.16), transparent 48%),
    #262626;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #f7f7ed;
}

.visual-assurance span {
  font-family: "Corify", sans-serif;
  color: var(--green-soft);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.faq-visual span {
  font-family: "Corify", sans-serif;
  color: var(--green-soft);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.visual-assurance h2 {
  margin-top: 0.5rem;
  font-size: clamp(1.05rem, 2vw, 1.45rem);
}

.visual-assurance p {
  margin-top: 0.65rem;
  color: #dcdccd;
  font-size: 0.92rem;
}

.belief-layout {
  display: grid;
  gap: 1rem;
}

.belief-content {
  min-width: 0;
}

.belief-visual {
  min-height: 320px;
  border: 1px solid rgba(36, 36, 36, 0.08);
}

.belief-grid {
  display: grid;
  gap: 0.9rem;
}

.belief-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid #e5e5d2;
  box-shadow: var(--shadow-soft);
}

.belief-card h3 {
  font-size: 1.12rem;
  margin-bottom: 0.85rem;
}

.belief-card ul {
  list-style: none;
  display: grid;
  gap: 0.68rem;
}

.belief-card li {
  padding-left: 1.25rem;
  position: relative;
  color: #404040;
}

.belief-card li::before {
  content: "";
  position: absolute;
  top: 0.53em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--green);
}

.belief-card.highlight {
  background: linear-gradient(145deg, #303030 0%, #404040 100%);
  color: #f8f8ee;
  border-color: #4f4f4f;
}

.belief-card.highlight p {
  color: #dbdbcf;
}

.belief-card.highlight p + p {
  margin-top: 0.65rem;
}

.cards-grid {
  display: grid;
  gap: 0.9rem;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.15rem;
  border: 1px solid #e6e6d2;
  box-shadow: var(--shadow-soft);
  transition: transform 250ms ease, box-shadow 250ms ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 34px rgba(36, 43, 31, 0.16);
}

.feature-card h3 {
  font-size: 1.06rem;
}

.feature-card p {
  margin-top: 0.7rem;
  color: #4e4e4e;
  font-size: 0.95rem;
}

.image-break {
  margin-top: 1rem;
  display: grid;
  background: #262626;
  color: #f7f7ed;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.image-break img {
  width: 100%;
  min-height: 230px;
  height: 100%;
  object-fit: cover;
}

.image-break > div {
  padding: 1.25rem;
  display: grid;
  align-content: center;
}

.image-break h3 {
  margin-top: 0.4rem;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
}

.image-break p:not(.eyebrow) {
  margin-top: 0.65rem;
  color: #dddccd;
}

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

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

.service-item {
  background: #fff;
  border: 1px solid #e0e0ca;
  border-radius: 16px;
  padding: 0.82rem 0.95rem;
}

.service-item h3 {
  font-size: 1rem;
}

.service-item p {
  margin-top: 0.4rem;
  color: #505050;
  font-size: 0.92rem;
}

.services-media {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #d8d8bf;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.services-media img {
  width: 100%;
  min-height: 320px;
  object-fit: cover;
}

.services-media figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 0.9rem 1rem;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.68) 100%);
  color: #f4f4e8;
  font-size: 0.88rem;
}

.service-gallery {
  margin-top: 1rem;
  display: grid;
  gap: 0.85rem;
}

.service-photo {
  min-height: 230px;
  border: 1px solid #dcdcc5;
}

.timeline {
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.timeline li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 0.75rem;
  padding: 0.82rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #e5e5d2;
}

.timeline li span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(140deg, var(--green) 0%, #4fd56d 100%);
  color: #fff;
  font-family: "Corify", sans-serif;
  font-weight: 700;
}

.timeline li h3 {
  font-size: 1rem;
}

.timeline li p {
  margin-top: 0.34rem;
  color: #555;
  font-size: 0.92rem;
}

.process-layout {
  display: grid;
  gap: 1rem;
  align-items: stretch;
}

.process-layout .timeline {
  grid-template-columns: 1fr;
}

.process-visual {
  min-height: 330px;
  border: 1px solid #dcdcc5;
}

.trust-grid {
  display: grid;
  gap: 0.8rem;
  align-items: stretch;
}

.trust-card {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(3px);
}

.trust-card h3 {
  font-size: 1rem;
  color: #fff;
}

.trust-card p {
  margin-top: 0.45rem;
  color: #dadacc;
  font-size: 0.92rem;
}

.trust-card.image-card {
  padding: 0;
  overflow: hidden;
}

.trust-card.image-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.regions-grid {
  display: grid;
  gap: 0.7rem;
}

.region-card {
  background: #fff;
  border: 1px solid #e0e0c9;
  border-radius: 14px;
  padding: 1rem;
  font-weight: 600;
  color: #333;
  position: relative;
  overflow: hidden;
}

.region-card::after {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--green), #8ee79f);
}

.section-note {
  margin-top: 0.8rem;
  color: #565656;
}

.faq-wrap,
.faq-layout {
  display: grid;
  gap: 0.9rem;
}

.faq-content {
  min-width: 0;
  width: 100%;
}

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

.faq-item {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e4e4cd;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  font: inherit;
  font-weight: 600;
  padding: 1rem 1rem;
  color: #2e2e2e;
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 1rem;
  top: 0.85rem;
  font-size: 1.3rem;
  color: #2fbd4e;
  transition: transform 220ms ease;
}

.faq-item.is-open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 260ms ease;
}

.faq-answer p {
  padding: 0 1rem 1rem;
  color: #555;
  font-size: 0.93rem;
}

.faq-visual {
  min-height: 0;
  align-self: start;
  border: 1px solid #dcdcc5;
  background: #fff;
  display: grid;
}

.faq-visual img {
  aspect-ratio: 2 / 3;
  min-height: 0;
  object-position: center;
  object-fit: cover;
  transform: none;
}

.faq-visual::after {
  display: none;
}

.faq-visual > div {
  position: static;
  padding: 0.82rem 0.95rem;
  color: #2b2b2b;
  background: #fff;
}

.faq-visual strong {
  display: block;
  margin-top: 0.22rem;
  font-family: "Corify", sans-serif;
  font-size: clamp(0.92rem, 1.55vw, 1.08rem);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.faq-visual p {
  margin-top: 0.45rem;
  color: #555;
  font-size: 0.84rem;
}

.contact-layout {
  display: grid;
  gap: 1rem;
}

.contact-panel {
  display: grid;
  gap: 0.75rem;
}

.contact-panel .eyebrow {
  margin-bottom: 0.65rem;
}

.contact-panel > p:not(.eyebrow) {
  margin-top: 0.75rem;
}

.contact-cards {
  display: grid;
  gap: 0.65rem;
}

.contact-cards article {
  background: #fff;
  border: 1px solid #dfdfc8;
  border-radius: 14px;
  padding: 0.9rem 1rem;
}

.contact-cards h3 {
  font-size: 0.93rem;
  color: #353535;
}

.contact-cards p,
.contact-cards a {
  margin-top: 0.33rem;
  font-size: 0.95rem;
  color: #1f1f1f;
  word-break: break-word;
}

.contact-actions {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.3rem;
}

.site-footer {
  background: #333333;
  color: #e7e7dc;
  padding: 2.7rem 0 1.4rem;
}

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

.footer-brand img {
  width: min(220px, 70vw);
  border-radius: 8px;
}

.footer-brand p {
  margin-top: 0.65rem;
  color: #c8c8bc;
}

.site-footer h3 {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.site-footer p {
  color: #d6d6c7;
  font-size: 0.92rem;
}

.site-footer p + p {
  margin-top: 0.24rem;
}

.site-footer a {
  color: #f5f5ea;
}

.site-footer a:hover {
  color: #97eca9;
}

.footer-bottom {
  margin-top: 1.6rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
  align-items: center;
}

.footer-inline-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: #f5f5ea;
  font: inherit;
  cursor: pointer;
}

.footer-inline-button:hover {
  color: #97eca9;
}

.footer-inline-button:focus-visible {
  outline: 2px solid var(--green-soft);
  outline-offset: 3px;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  width: min(640px, calc(100% - 8rem));
  z-index: 95;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(18px);
  transition: opacity 240ms ease, transform 240ms ease;
}

.cookie-banner.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.cookie-banner__inner {
  display: grid;
  gap: 0.75rem;
  padding: 0.9rem 0.95rem;
  border-radius: 20px;
  background: rgba(28, 28, 28, 0.94);
  color: #f6f6eb;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 40px rgba(10, 10, 10, 0.26);
  backdrop-filter: blur(16px);
}

.cookie-banner__copy strong {
  display: block;
  font-family: "Corify", sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cookie-banner__copy p {
  margin-top: 0.3rem;
  color: #dddcd0;
  font-size: 0.84rem;
  line-height: 1.45;
}

.cookie-banner__copy a,
.cookie-link {
  color: #a8f2b6;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
}

.cookie-link {
  font-size: 0.85rem;
  font-weight: 600;
}

.cookie-accept {
  min-width: 112px;
  padding: 0.72rem 1rem;
  font-size: 0.88rem;
}

.page-hero {
  padding-top: calc(var(--header-h) + 2.4rem);
  padding-bottom: clamp(2.8rem, 5vw, 4rem);
}

.page-hero .section-head {
  max-width: 860px;
  margin-bottom: 0;
}

.page-hero .section-head p:last-child {
  color: #d7d7cb;
}

.privacy-main {
  padding-top: clamp(2.8rem, 5vw, 4rem);
}

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

.privacy-card {
  background: #fff;
  border: 1px solid #e5e5d2;
  border-radius: var(--radius);
  padding: 1.3rem;
  box-shadow: var(--shadow-soft);
}

.privacy-card h2,
.privacy-card h3 {
  font-size: 1.02rem;
}

.privacy-card p {
  color: #494949;
}

.privacy-card a {
  color: #1c6d2d;
  font-weight: 600;
}

.privacy-card a:hover {
  color: #129034;
}

.privacy-card p + p,
.privacy-card ul,
.privacy-card ol {
  margin-top: 0.75rem;
}

.privacy-card ul,
.privacy-card ol {
  padding-left: 1.1rem;
  color: #494949;
}

.privacy-card li + li {
  margin-top: 0.45rem;
}

.privacy-card.highlight {
  background: linear-gradient(145deg, #303030 0%, #3f3f3f 100%);
  border-color: #4d4d4d;
}

.privacy-card.highlight h2,
.privacy-card.highlight h3,
.privacy-card.highlight p,
.privacy-card.highlight li,
.privacy-card.highlight a {
  color: #f4f4e8;
}

.privacy-card.highlight a {
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.privacy-note {
  font-size: 0.92rem;
  color: #5a5a5a;
}

.privacy-contact {
  display: grid;
  gap: 0.3rem;
}

.float-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  padding: 0.78rem 0.92rem;
  border-radius: 999px;
  background: linear-gradient(130deg, #0f7a2b 0%, #14a338 100%);
  color: #fff;
  box-shadow: 0 14px 26px rgba(10, 78, 30, 0.32);
}

.float-whatsapp svg {
  width: 21px;
  height: 21px;
  display: block;
  flex: 0 0 21px;
  fill: currentColor;
}

.float-whatsapp span {
  font-weight: 600;
  font-size: 0.88rem;
}

.back-to-top {
  position: fixed;
  left: 1rem;
  right: auto;
  bottom: 4.8rem;
  z-index: 79;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 999px;
  background: rgba(28, 28, 28, 0.88);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (min-width: 720px) {
  .desktop-only {
    display: inline-flex;
  }

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

  .hero-grid > .hero-points {
    margin-top: -0.45rem;
    align-self: start;
    justify-self: start;
    margin-left: 0;
    margin-right: auto;
  }

  .visual-strip-grid {
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    align-items: stretch;
  }

  .visual-tile-large {
    min-height: 360px;
  }

  .belief-layout {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: stretch;
    gap: 1rem;
  }

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

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

  .services-layout {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

  .services-media img {
    min-height: 100%;
    height: 100%;
  }

  .image-break {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: stretch;
  }

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

  .process-layout {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.62fr);
    align-items: start;
  }

  .process-layout .timeline {
    align-self: start;
    align-content: start;
  }

  .process-layout .timeline li {
    align-items: center;
    min-height: 0;
  }

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

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

  .faq-layout {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.58fr);
    align-items: start;
  }

  .contact-layout {
    grid-template-columns: 0.92fr 1.08fr;
    gap: 1.3rem;
  }

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

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

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

@media (min-width: 980px) {
  .section-head h2 {
    font-size: clamp(1.45rem, 1.7vw, 2.05rem);
  }

  .hero {
    padding-top: calc(var(--header-h) + 2.4rem);
    padding-bottom: 2.3rem;
  }

  .hero-copy h1 {
    font-size: clamp(1.7rem, 1.9vw, 2.35rem);
  }

  .hero-copy h1 .hero-h1-secondary {
    font-size: 0.74em;
  }

  .hero-sub {
    margin-top: 0.9rem;
    max-width: 58ch;
    font-size: 0.98rem;
    line-height: 1.55;
    overflow-wrap: normal;
  }

  .hero-ctas {
    margin-top: 1rem;
  }

  .hero-points {
    margin-top: 0.9rem;
    margin-left: 0;
    margin-right: auto;
    width: min(100%, 440px);
    gap: 0.45rem;
    text-align: left;
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.7rem;
  }

  .hero-media {
    max-height: 490px;
  }

  .visual-tile,
  .service-photo {
    min-height: 260px;
  }

  .visual-tile-large {
    min-height: 390px;
  }

  .belief-visual {
    min-height: 100%;
  }

  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    width: auto;
    padding: 0;
    display: flex;
    gap: 0.3rem;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-nav a {
    color: #efefe4;
    padding-inline: 0.75rem;
  }

  .site-nav a:hover {
    background: rgba(255, 255, 255, 0.12);
  }

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

  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
  }

  .process-layout .timeline {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .process-layout .timeline li {
    padding: 0.68rem 0.78rem;
  }

  .process-layout .timeline li span {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  .process-visual {
    min-height: 0;
    width: min(100%, 340px);
    height: auto;
    max-height: none;
    aspect-ratio: 2 / 3;
    align-self: start;
    justify-self: start;
  }

  .process-visual img {
    min-height: 0;
    height: 100%;
    object-fit: cover;
  }

  .trust-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: minmax(128px, auto);
  }

  .trust-card {
    min-height: 128px;
    height: auto;
  }

  .trust-card.image-card {
    min-height: 0;
  }

  .trust-card.image-card img {
    height: 100%;
    aspect-ratio: auto;
  }

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

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

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

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

  .privacy-card.span-2 {
    grid-column: span 2;
  }

  .cookie-banner {
    width: min(760px, calc(100% - 5rem));
  }

  .cookie-banner__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.65rem 1rem;
    padding: 0.72rem 0.9rem;
  }

  .cookie-banner__actions {
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    min-width: 235px;
    gap: 0.75rem;
  }

  .cookie-banner__copy strong {
    font-size: 0.82rem;
  }

  .cookie-banner__copy p {
    font-size: 0.78rem;
    line-height: 1.38;
  }

  .cookie-link {
    font-size: 0.8rem;
    white-space: nowrap;
  }

  .cookie-accept {
    min-width: 118px;
    padding: 0.62rem 0.95rem;
    font-size: 0.82rem;
  }
}

@media (max-width: 719px) {
  .container {
    max-width: 100%;
    padding-inline: 0.65rem;
  }

  .section {
    padding: 1.9rem 0;
  }

  .section-head {
    margin-bottom: 1.15rem;
  }

  .section-head h2 {
    margin-top: 0.38rem;
    width: 100%;
    max-width: 100%;
    font-size: clamp(1.35rem, 7.4vw, 1.78rem);
    line-height: 1.12;
    overflow-wrap: anywhere;
  }

  .section-head p {
    margin-top: 0.75rem;
    overflow-wrap: anywhere;
  }

  .header-wrap {
    gap: 0.75rem;
  }

  .eyebrow {
    display: block;
    position: static;
    max-width: 100%;
    padding-left: 0;
    font-size: 0.68rem;
    line-height: 1.35;
    letter-spacing: 0.08em;
    overflow-wrap: anywhere;
    word-break: break-word;
    white-space: normal;
  }

  .eyebrow::before {
    position: static;
    display: inline-block;
    flex: 0 0 20px;
    width: 20px;
    margin-right: 0.45rem;
    vertical-align: middle;
  }

  .brand {
    max-width: 210px;
  }

  .site-nav {
    right: 0.65rem;
    width: calc(100% - 1.3rem);
    max-width: none;
  }

  .hero-copy,
  .hero-sub,
  .hero-ctas,
  .hero-points,
  .hero-media {
    width: 100%;
    max-width: 100%;
  }

  .hero-copy,
  .hero-sub,
  .hero-ctas,
  .hero-media {
    margin-inline: auto;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy .eyebrow {
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    text-align: center;
  }

  .hero-copy h1 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(1.2rem, 6.2vw, 1.58rem);
    line-height: 1.18;
    letter-spacing: 0.006em;
    overflow-wrap: anywhere;
  }

  .hero-h1-main,
  .hero-h1-main span {
    display: inline;
  }

  .hero-copy h1 .hero-h1-secondary {
    display: block;
    font-size: 0.82em;
    line-height: 1.28;
  }

  .hero-copy h1 .hero-h1-secondary span {
    display: inline;
  }

  .hero {
    padding-bottom: 2.2rem;
  }

  .hero-glow {
    display: none;
  }

  .hero-grid {
    gap: 1.35rem;
  }

  .hero-sub {
    margin-top: 0.9rem;
    text-align: center;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .hero-ctas {
    margin-top: 1rem;
    margin-inline: auto;
    display: grid;
    width: 100%;
    max-width: 100%;
    gap: 0.65rem;
  }

  .hero-ctas .btn {
    width: 100%;
    padding-inline: 0.9rem;
    font-size: 0.86rem;
  }

  .hero-points {
    margin-top: 0.9rem;
    gap: 0.45rem;
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    text-align: left;
  }

  .visual-strip {
    padding: 0.95rem 0 2.15rem;
  }

  .visual-strip-grid,
  .service-gallery {
    gap: 0.75rem;
  }

  .visual-tile,
  .visual-assurance,
  .belief-visual,
  .image-break,
  .services-media,
  .service-photo,
  .process-visual,
  .faq-visual {
    width: 100%;
    max-width: 100%;
  }

  .visual-strip-grid,
  .belief-layout,
  .belief-grid,
  .cards-grid,
  .services-layout,
  .services-list,
  .process-layout,
  .timeline,
  .trust-grid,
  .regions-grid,
  .faq-layout,
  .faq-content,
  .faq-list,
  .contact-layout,
  .contact-panel,
  .contact-cards,
  .privacy-grid,
  .footer-grid {
    width: 100%;
    max-width: 100%;
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    margin-inline: auto;
  }

  .belief-card,
  .feature-card,
  .service-item,
  .timeline li,
  .trust-card,
  .region-card,
  .faq-item,
  .contact-cards article,
  .privacy-card {
    width: 100%;
    max-width: min(100%, 520px);
    margin-inline: auto;
  }

  .contact-layout,
  .contact-panel {
    justify-items: stretch;
  }

  .contact-panel {
    justify-self: stretch;
    width: 100%;
    max-width: 100%;
  }

  .contact-panel {
    text-align: left;
  }

  .contact-panel .eyebrow {
    justify-self: stretch;
    display: block;
    width: 100%;
    max-width: 100%;
    text-align: left;
    margin-inline: 0;
    margin-bottom: 0.75rem;
  }

  .contact-actions > .btn {
    justify-self: stretch;
    width: 100%;
    max-width: 100%;
  }

  .footer-grid {
    justify-items: stretch;
    text-align: left;
  }

  .footer-grid > *,
  .footer-bottom {
    justify-self: stretch;
    width: 100%;
    max-width: 100%;
    text-align: left;
  }

  .footer-brand img {
    margin-inline: 0;
  }

  .footer-legal {
    justify-content: flex-start;
  }

  .visual-tile,
  .visual-assurance,
  .belief-visual,
  .image-break,
  .services-media,
  .service-photo,
  .process-visual,
  .faq-visual,
  .section-head {
    width: 100%;
    max-width: min(100%, 520px);
    margin-inline: auto;
  }

  .visual-tile,
  .service-photo {
    min-height: 220px;
  }

  .visual-tile-large,
  .belief-visual,
  .process-visual {
    min-height: 280px;
  }

  .visual-assurance {
    min-height: auto;
    padding: 1rem 1.15rem;
  }

  .visual-assurance h2 {
    max-width: 100%;
    font-size: 0.92rem;
    line-height: 1.18;
  }

  .visual-assurance p {
    max-width: 100%;
  }

  .visual-tile figcaption,
  .belief-visual figcaption,
  .process-visual figcaption {
    inset: auto 1rem 0.75rem;
    padding: 0.64rem 0.7rem;
    border-radius: 12px;
    background: rgba(18, 18, 18, 0.58);
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .visual-assurance h2,
  .visual-assurance p,
  .visual-tile figcaption,
  .belief-visual figcaption,
  .process-visual figcaption,
  .hero-sub strong,
  .image-break h3,
  .image-break p,
  .belief-card h3,
  .belief-card p,
  .belief-card li,
  .feature-card h3,
  .feature-card p,
  .service-item h3,
  .service-item p,
  .timeline li h3,
  .timeline li p,
  .trust-card h3,
  .trust-card p,
  .faq-question,
  .faq-answer p,
  .faq-visual strong,
  .faq-visual p,
  .contact-cards a {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .belief-layout,
  .process-layout {
    gap: 0.85rem;
  }

  .image-break {
    margin-top: 0.85rem;
  }

  .image-break img {
    min-height: 220px;
  }

  .faq-visual {
    order: -1;
    min-height: 0;
  }

  .feature-card,
  .trust-card {
    padding: 0.95rem;
  }

  .mobile-optional {
    display: none !important;
  }

  .timeline {
    counter-reset: visible-steps;
  }

  .timeline li:not(.mobile-optional) {
    counter-increment: visible-steps;
  }

  .timeline li:not(.mobile-optional) > span {
    font-size: 0;
  }

  .timeline li:not(.mobile-optional) > span::before {
    content: counter(visible-steps);
    font-size: 0.95rem;
  }

  .faq-visual img {
    aspect-ratio: 4 / 5;
    max-height: 320px;
  }

  .feature-card p,
  .trust-card p,
  .service-item p,
  .timeline li p {
    font-size: 0.86rem;
    line-height: 1.42;
  }

  .feature-card h3,
  .service-item h3,
  .timeline li h3,
  .trust-card h3 {
    font-size: 0.9rem;
  }

  .services-list,
  .timeline,
  .cards-grid,
  .trust-grid {
    gap: 0.55rem;
  }

  .cookie-banner {
    left: 0.85rem;
    right: 0.85rem;
    bottom: 5.6rem;
    width: auto;
    max-width: calc(100vw - 1.7rem);
    transform: translateY(18px);
  }

  .cookie-banner.is-visible {
    transform: translateY(0);
  }

  .cookie-banner__inner {
    gap: 0.65rem;
    padding: 0.72rem 0.78rem;
    border-radius: 18px;
    overflow: hidden;
  }

  .cookie-banner__copy strong {
    font-size: 0.82rem;
  }

  .cookie-banner__copy p {
    max-width: 36ch;
    font-size: 0.76rem;
    line-height: 1.34;
    overflow-wrap: anywhere;
  }

  .cookie-banner__actions {
    display: flex;
    align-items: center;
    gap: 0.55rem;
  }

  .cookie-link {
    font-size: 0.76rem;
  }

  .cookie-accept {
    min-width: 92px;
    padding: 0.54rem 0.72rem;
    font-size: 0.78rem;
  }

  .float-whatsapp span {
    display: none;
  }

  .float-whatsapp {
    width: 54px;
    height: 54px;
    justify-content: center;
    padding: 0;
  }

  .back-to-top {
    width: 46px;
    height: 46px;
  }

  .back-to-top span {
    font-size: 0.7rem;
  }
}
