/* ============================================================
   VanClear — Make It Disappear
   ============================================================ */

:root {
  /* Brand palette pulled from the poster designs */
  --lime: #63bd3b;
  --lime-bright: #7ed957;
  --lime-deep: #3f8f24;
  --forest: #173312;
  --forest-2: #1e421a;
  --ink: #101510;
  --ink-2: #161d16;
  --paper: #f4f6f2;
  --white: #ffffff;
  --text-dark: #1b221b;
  --text-muted: #5c675c;
  --text-light: rgba(255, 255, 255, 0.82);
  --whatsapp: #22c15e;

  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  --radius: 18px;
  --radius-sm: 12px;
  --shadow-lg: 0 24px 60px -18px rgba(10, 20, 8, 0.45);
  --shadow-md: 0 12px 32px -12px rgba(10, 20, 8, 0.28);

  --header-h: 76px;
}

/* ---------- Reset / base ---------- */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  /* The rotated marquee extends slightly beyond the viewport. Clip it at the
     root too, so mobile browsers cannot pan sideways into blank space. */
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-x: clip;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

.container {
  width: min(1180px, 100% - 2.5rem);
  margin-inline: auto;
}

.ic {
  width: 1.1em;
  height: 1.1em;
  fill: currentColor;
  flex: none;
  vertical-align: -0.18em;
}

/* Logo mark colours (inline SVG) */
.mk-lime { fill: var(--lime); }
.mk-dark { fill: #10150f; }
.mk-white { fill: #fff; }
.mk-green { fill: #2e7d32; }

/* On dark backgrounds the bin outline needs to read */
.header .mk-dark,
.footer .mk-dark { fill: #0b0f0a; }

/* ---------- Typography helpers ---------- */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lime-bright);
  margin-bottom: 1.1rem;
}

.kicker--center { justify-content: center; }

.kicker__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(99, 189, 59, 0.22);
}

/* Grunge-style brush highlight, echoing the poster's painted strips */
.highlight {
  position: relative;
  display: inline-block;
  color: var(--ink);
  padding: 0.05em 0.28em;
  z-index: 0;
  transform: rotate(-1deg);
}

.highlight::before {
  content: "";
  position: absolute;
  inset: 0.06em -0.12em 0.02em -0.15em;
  background: linear-gradient(100deg, var(--lime-deep) 0%, var(--lime) 45%, var(--lime-bright) 100%);
  z-index: -1;
  transform: skewX(-6deg) rotate(-0.6deg);
  clip-path: polygon(1% 12%, 99% 0%, 100% 82%, 97% 100%, 2% 96%, 0% 70%);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}

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

.btn--whatsapp {
  background: linear-gradient(120deg, #29d366, #1faa4f);
  color: #fff;
  box-shadow: 0 10px 26px -10px rgba(34, 193, 94, 0.65);
}

.btn--whatsapp:hover { box-shadow: 0 16px 34px -10px rgba(34, 193, 94, 0.8); }

.btn--outline {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.btn--outline:hover {
  border-color: var(--lime-bright);
  color: var(--lime-bright);
  background: rgba(126, 217, 87, 0.08);
}

.btn--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
}

.btn--ghost:hover { border-color: var(--lime-bright); color: var(--lime-bright); }

.btn--lg { padding: 1.05rem 2rem; font-size: 1.02rem; }
.btn--sm { padding: 0.6rem 1.15rem; font-size: 0.85rem; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--lime);
  background: linear-gradient(90deg, var(--lime-deep), var(--lime) 55%, var(--lime-bright));
  color: #0d1c07;
  font-size: 0.8rem;
  font-weight: 700;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.45rem;
}

.topbar__note { display: inline-flex; align-items: center; gap: 0.45rem; }

.topbar__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 800;
}

.topbar__phone:hover { text-decoration: underline; }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(13, 18, 12, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: box-shadow 0.25s ease;
}

.header.is-scrolled { box-shadow: 0 12px 40px -18px rgba(0, 0, 0, 0.7); }

.header__inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  flex: none;
}

.brand__mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
}

.brand__mark svg { width: 100%; height: 100%; }

.brand__text { display: flex; flex-direction: column; line-height: 1.05; }

.brand__name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.04em;
  color: #fff;
}

.brand__tag {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--lime-bright);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.7rem;
}

.nav__link {
  position: relative;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
  padding-block: 0.4rem;
  transition: color 0.18s ease;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.nav__link:hover,
.nav__link.is-active { color: #fff; }

.nav__link:hover::after,
.nav__link.is-active::after { transform: scaleX(1); }

.nav__cta { display: flex; align-items: center; gap: 0.6rem; margin-left: 0.5rem; }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: 0;
  cursor: pointer;
  z-index: 100;
}

.burger span {
  display: block;
  width: 26px;
  height: 3px;
  margin-inline: auto;
  border-radius: 3px;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.burger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 480px at 85% 20%, rgba(99, 189, 59, 0.22), transparent 60%),
    radial-gradient(700px 500px at 5% 95%, rgba(63, 143, 36, 0.16), transparent 60%),
    linear-gradient(160deg, #101510 0%, #14240f 55%, #101510 100%);
}

/* subtle diagonal texture, nodding to the poster grunge */
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(255, 255, 255, 0.018) 0 2px,
    transparent 2px 14px
  );
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 3rem;
  padding-block: clamp(3.5rem, 8vw, 6.5rem) 0;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7.5vw, 5.6rem);
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  margin-bottom: 1.4rem;
}

.hero__title .highlight { color: var(--ink); }

.hero__lead {
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  color: var(--text-light);
  max-width: 34rem;
  margin-bottom: 2rem;
}

.hero__lead strong { color: var(--lime-bright); }

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 2.2rem;
}

.hero__ticks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.6rem;
  padding-bottom: 3.5rem;
}

.hero__ticks li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
}

.hero__ticks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--lime-bright);
  font-weight: 900;
}

/* Hero visual */
.hero__visual {
  position: relative;
  align-self: end;
  display: flex;
  justify-content: center;
}

.hero__portrait {
  position: relative;
  width: min(380px, 100%);
  border-radius: 26px 26px 0 0;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(126, 217, 87, 0.16), rgba(99, 189, 59, 0.02));
  border: 1px solid rgba(126, 217, 87, 0.25);
  border-bottom: 0;
}

.hero__portrait img {
  width: 100%;
  aspect-ratio: 3 / 3.6;
  object-fit: cover;
  object-position: top;
}

.hero__badge {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
  animation: float 5s ease-in-out infinite;
}

.hero__badge--top {
  top: 4%;
  right: 2%;
  width: 118px;
  height: 118px;
  background: radial-gradient(circle at 32% 28%, var(--lime) 0%, var(--lime-deep) 75%);
  color: #fff;
  box-shadow: var(--shadow-md);
  transform: rotate(8deg);
}

.hero__badge-big {
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1;
  text-transform: uppercase;
}

.hero__badge-small {
  font-size: 0.58rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.25rem;
  opacity: 0.9;
}

.hero__badge--bottom {
  bottom: 10%;
  left: -4%;
  flex-direction: row;
  gap: 0.5rem;
  width: auto;
  height: auto;
  border-radius: 14px;
  padding: 0.7rem 1rem;
  background: rgba(13, 18, 12, 0.88);
  border: 1px solid rgba(126, 217, 87, 0.35);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.25;
  text-align: left;
  animation-delay: 2.2s;
}

.hero__badge--bottom .ic {
  width: 1.6em;
  height: 1.6em;
  color: var(--lime-bright);
}

@keyframes float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -10px; }
}

/* ---------- Marquee ---------- */
.marquee {
  background: linear-gradient(90deg, var(--lime-deep), var(--lime) 50%, var(--lime-deep));
  overflow: hidden;
  padding-block: 0.85rem;
  border-block: 3px solid var(--ink);
  transform: rotate(-0.5deg) scale(1.01);
}

.marquee__track {
  display: flex;
  gap: 2.75rem;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee__track span {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0d1c07;
  white-space: nowrap;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ---------- Sections ---------- */
.section { padding-block: clamp(4rem, 9vw, 6.5rem); }

.section--dark {
  background:
    radial-gradient(800px 400px at 15% 0%, rgba(99, 189, 59, 0.14), transparent 55%),
    var(--ink);
  color: #fff;
}

.section--forest {
  background:
    radial-gradient(900px 500px at 85% 100%, rgba(126, 217, 87, 0.12), transparent 55%),
    linear-gradient(165deg, var(--forest) 0%, var(--forest-2) 100%);
  color: #fff;
}

.section__head {
  text-align: center;
  max-width: 46rem;
  margin: 0 auto clamp(2.5rem, 5vw, 3.75rem);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  line-height: 1.06;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  color: #fff;
}

.section__title--dark { color: var(--ink); }

.section__sub {
  margin-top: 1.1rem;
  font-size: 1.02rem;
  color: var(--text-light);
}

.section__sub--dark { color: var(--text-muted); }

/* ---------- Before / After compare ---------- */
.compare {
  max-width: 900px;
  margin-inline: auto;
}

.compare__stage {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(126, 217, 87, 0.25);
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
  cursor: ew-resize;
  background: #0b0f0a;
}

.compare__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.compare__before-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  width: 50%;
  z-index: 2;
  border-right: 3px solid var(--lime-bright);
}

/* keep the clipped image at full stage width so it doesn't squash */
.compare__before-wrap .compare__img {
  width: auto;
  min-width: 100%;
}

.compare__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}

.compare__grip {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  flex: none;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--lime-bright), var(--lime-deep));
  border: 3px solid #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  transition: transform 0.15s ease;
}

.compare__stage:active .compare__grip,
.compare__handle:focus-visible .compare__grip { transform: scale(1.12); }

.compare__grip svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

.tag {
  position: absolute;
  top: 1rem;
  z-index: 4;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 0.35rem 1.1rem;
  border-radius: 999px;
  pointer-events: none;
}

.tag--before {
  left: 1rem;
  background: rgba(13, 18, 12, 0.85);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.tag--after {
  right: 1rem;
  background: var(--lime);
  color: #0d1c07;
}

/* Thumbnails */
.compare__thumbs {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 0.7rem;
  margin-top: 1.1rem;
}

.compare__thumb {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  padding: 0;
  cursor: pointer;
  background: none;
  opacity: 0.55;
  transition: opacity 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

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

.compare__thumb:hover { opacity: 0.85; transform: translateY(-2px); }

.compare__thumb.is-active {
  opacity: 1;
  border-color: var(--lime-bright);
  box-shadow: 0 6px 18px -6px rgba(126, 217, 87, 0.5);
}

.transformations__cta {
  margin-top: 2.75rem;
  text-align: center;
}

.transformations__cta p {
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 1.1rem;
}

/* ---------- Services ---------- */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.service {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  background: var(--white);
  border: 1px solid #e3e8e0;
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  box-shadow: 0 4px 18px -12px rgba(16, 21, 16, 0.18);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--lime-deep), var(--lime-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}

.service:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(99, 189, 59, 0.45);
}

.service:hover::before { transform: scaleX(1); }

.service__icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, var(--lime) 0%, var(--lime-deep) 80%);
  box-shadow: 0 8px 20px -8px rgba(63, 143, 36, 0.55);
  margin-bottom: 0.4rem;
}

.service__icon svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

.service h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ink);
}

.service p {
  font-size: 0.94rem;
  color: var(--text-muted);
  flex: 1;
}

.service__link {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.service__link em {
  font-style: normal;
  transition: transform 0.2s ease;
}

.service:hover .service__link em { transform: translateX(4px); }

.services__note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 2.25rem;
  padding: 0.9rem 1.4rem;
  border-radius: var(--radius-sm);
  background: #fdf6e3;
  border: 1px solid #f0e3bb;
  color: #7a6017;
  font-size: 0.88rem;
  font-weight: 600;
  max-width: 46rem;
  margin-inline: auto;
  text-align: left;
}

.services__note .ic { color: #d9a410; width: 1.4em; height: 1.4em; }

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
  counter-reset: step;
}

.step {
  position: relative;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 1.9rem 1.4rem 1.6rem;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.step:hover {
  transform: translateY(-5px);
  background: rgba(126, 217, 87, 0.08);
  border-color: rgba(126, 217, 87, 0.4);
}

.step__num {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: #0d1c07;
  background: linear-gradient(140deg, var(--lime-bright), var(--lime));
  margin-bottom: 1rem;
  box-shadow: 0 8px 18px -8px rgba(126, 217, 87, 0.7);
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
}

.step p {
  font-size: 0.86rem;
  color: var(--text-light);
}

.steps__cta {
  margin-top: 2.75rem;
  text-align: center;
}

.steps__pricing {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 600;
}

/* ---------- Why VanClear ---------- */
.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.why {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  background: var(--white);
  border: 1px solid #e3e8e0;
  border-radius: var(--radius);
  padding: 1.9rem 1.7rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.why:hover {
  transform: translateY(-5px);
  border-color: rgba(99, 189, 59, 0.45);
  box-shadow: var(--shadow-md);
}

.why__icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: var(--radius-sm);
  background: rgba(99, 189, 59, 0.13);
  margin-bottom: 0.5rem;
}

.why__icon svg {
  width: 27px;
  height: 27px;
  fill: var(--lime-deep);
}

.why h3 {
  font-family: var(--font-display);
  font-size: 1.12rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
}

.why p { font-size: 0.92rem; color: var(--text-muted); }

/* ---------- CTA / contact ---------- */
.cta { padding-block: clamp(4rem, 9vw, 6.5rem); }

.cta__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.9rem;
}

.cta__copy .section__sub { margin-top: 1.2rem; }

.cta__checklist {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.92rem;
  color: var(--text-light);
}

.cta__checklist li:first-child {
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  margin-bottom: 0.2rem;
}

.cta__checklist li:not(:first-child) {
  position: relative;
  padding-left: 1.5rem;
}

.cta__checklist li:not(:first-child)::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--lime-bright);
  font-weight: 900;
}

/* WhatsApp mock chat card */
.cta__card { display: flex; justify-content: center; }

.cta__phone {
  width: min(370px, 100%);
  border-radius: 26px;
  overflow: hidden;
  background: #0e130d;
  border: 1px solid rgba(126, 217, 87, 0.3);
  box-shadow: var(--shadow-lg);
  transform: rotate(1.5deg);
}

.cta__phone-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.2rem;
  background: linear-gradient(90deg, var(--forest), var(--forest-2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cta__phone-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  padding: 5px;
}

.cta__phone-avatar svg { width: 100%; height: 100%; }

.cta__phone-head strong { display: block; color: #fff; font-size: 0.95rem; }

.cta__phone-head small {
  color: var(--lime-bright);
  font-size: 0.72rem;
  font-weight: 700;
}

.cta__phone-body {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 1.3rem 1.1rem 1.5rem;
  background:
    radial-gradient(400px 300px at 80% 0%, rgba(99, 189, 59, 0.07), transparent 60%),
    #10160f;
}

.bubble {
  max-width: 85%;
  padding: 0.7rem 0.95rem;
  border-radius: 14px;
  font-size: 0.85rem;
  line-height: 1.45;
}

.bubble--them {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  border-bottom-left-radius: 4px;
}

.bubble--me {
  align-self: flex-end;
  background: #1f6b34;
  color: #eaffe9;
  border-bottom-right-radius: 4px;
}

.bubble--them strong { color: var(--lime-bright); }

.bubble__thumb {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.bubble__thumb img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

/* ---------- Footer ---------- */
.footer {
  background: #0b0f0a;
  color: rgba(255, 255, 255, 0.75);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 2.5rem;
  padding-block: 4rem 3rem;
}

.brand--footer { margin-bottom: 1.1rem; }

.footer__brand p {
  font-size: 0.92rem;
  max-width: 20rem;
  margin-bottom: 1.2rem;
}

.footer__insta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  transition: color 0.18s ease;
}

.footer__insta:hover { color: var(--lime-bright); }

.footer__col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.1rem;
}

.footer__col a {
  display: block;
  font-size: 0.9rem;
  padding-block: 0.28rem;
  transition: color 0.18s ease, transform 0.18s ease;
}

.footer__col a:hover { color: var(--lime-bright); transform: translateX(3px); }

.footer__contact .btn { margin-block: 0.4rem 0.9rem; }

.footer__big-phone {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--lime-bright) !important;
  letter-spacing: 0.03em;
}

.footer__hours { font-size: 0.85rem; line-height: 1.7; }

.footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-block: 1.2rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer__bar-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  /* keep the last item clear of the floating WhatsApp button */
  padding-right: 84px;
}

.footer__credit { opacity: 0.65; }

.footer__credit a {
  color: inherit;
  transition: color 0.18s ease, opacity 0.18s ease;
}

.footer__credit a:hover { color: var(--lime-bright); }

/* ---------- Floating WhatsApp ---------- */
.whatsapp-fab {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 80;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, #29d366, #1faa4f);
  box-shadow: 0 12px 30px -8px rgba(34, 193, 94, 0.75);
  transition: transform 0.2s ease;
}

.whatsapp-fab:hover { transform: scale(1.08); }

.whatsapp-fab svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

.whatsapp-fab::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(41, 211, 102, 0.55);
  animation: pulse 2.2s ease-out infinite;
}

@keyframes pulse {
  0% { transform: scale(0.85); opacity: 1; }
  100% { transform: scale(1.3); opacity: 0; }
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee__track { animation: none; }
  .hero__badge { animation: none; }
  .whatsapp-fab::after { animation: none; }
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 1024px) {
  .services__grid,
  .why__grid { grid-template-columns: repeat(2, 1fr); }

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

  .hero__inner { gap: 2rem; }

  .nav { gap: 1.15rem; }
  .nav__cta .btn--ghost { display: none; }
}

@media (max-width: 860px) {
  :root { --header-h: 66px; }

  /* backdrop-filter would make the header the containing block for the
     fixed-position nav overlay, clipping it — use a solid bg instead */
  .header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(13, 18, 12, 0.98);
  }

  .topbar__note { display: none; }
  .topbar__inner { justify-content: center; }

  .burger { display: flex; }

  .nav {
    position: fixed;
    inset: 0;
    z-index: 95;
    flex-direction: column;
    justify-content: center;
    gap: 1.4rem;
    background: rgba(11, 15, 10, 0.97);
    backdrop-filter: blur(16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
  }

  .nav.is-open { opacity: 1; pointer-events: auto; }

  .nav__link { font-size: 1.35rem; font-weight: 700; }

  .nav__cta {
    flex-direction: column;
    margin: 1rem 0 0;
    gap: 0.8rem;
  }

  .nav__cta .btn--ghost { display: inline-flex; }
  .nav__cta .btn { font-size: 1rem; padding: 0.85rem 1.9rem; }

  .hero__inner {
    grid-template-columns: 1fr;
    padding-top: 3rem;
  }

  .hero__copy { text-align: center; }
  .hero__actions { justify-content: center; }
  .hero__ticks { justify-content: center; padding-bottom: 0; }

  .hero__visual { margin-top: 2.5rem; }
  .hero__portrait { width: min(320px, 80%); }
  .hero__badge--top { width: 96px; height: 96px; right: 6%; }
  .hero__badge-big { font-size: 1rem; }
  .hero__badge--bottom { left: 4%; }

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

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

  .cta__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .cta__phone { transform: none; }

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

@media (max-width: 560px) {
  .services__grid,
  .why__grid,
  .steps { grid-template-columns: 1fr; }

  .hero__actions .btn { width: 100%; }

  .compare__stage { aspect-ratio: 4 / 3.4; border-radius: var(--radius-sm); }
  .compare__grip { width: 44px; height: 44px; }
  .tag { font-size: 0.8rem; padding: 0.28rem 0.85rem; }

  .footer__grid { grid-template-columns: 1fr; gap: 2rem; padding-block: 3rem 2.25rem; }

  .footer__bar-inner {
    justify-content: center;
    text-align: center;
    padding-right: 0;
    padding-bottom: 72px;
  }

  .marquee__track span { font-size: 0.9rem; }
}
