/* Happy Vending — marca */
:root {
  --orange: #f15a22;
  --orange-deep: #d94812;
  --orange-soft: #fff3ed;
  --ink: #2b2b2b;
  --ink-muted: #5c5c5c;
  --paper: #ffffff;
  --paper-soft: #f7f7f7;
  --line: #e8e8e8;
  --green: #2f9e4d;
  --green-soft: #eaf7ee;
  --radius: 999px;
  --max: 1120px;
  --nav-h: 4.5rem;
  --font-display: "Nunito", system-ui, sans-serif;
  --font-body: "Nunito", system-ui, sans-serif;
  --shadow-soft: 0 18px 40px rgba(43, 43, 43, 0.08);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 0.75rem);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.15;
  margin: 0 0 0.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
}

h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
}

h3 {
  font-size: 1.2rem;
}

p {
  margin: 0 0 1rem;
  color: var(--ink-muted);
}

.accent {
  color: var(--orange);
}

.accent-green {
  color: var(--green);
}

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

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

/* Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px rgba(43, 43, 43, 0.04);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--nav-h);
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.logo img {
  width: 148px;
  height: auto;
  background: transparent;
}

.logo-footer-plate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.05rem;
  background: #fff;
  border-radius: 1.25rem;
}

.logo-footer-plate img {
  width: 148px;
  background: #fff;
}

.nav-phone {
  font-weight: 800 !important;
  color: var(--ink) !important;
  white-space: nowrap;
}

.nav-phone:hover {
  color: var(--orange) !important;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.5rem;
}

.hero-pills li {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--ink-muted);
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.8);
}

.hero-pills a {
  color: inherit;
  font-weight: inherit;
}

.hero-pills li:has(a) {
  padding: 0;
}

.hero-pills li a {
  display: block;
  padding: 0.45rem 0.85rem;
}

.hero-pills li:has(a):hover {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--orange-soft);
}

.strip-dark {
  background: #1f2a37;
  color: #fff;
  padding: 1.15rem 0;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.75rem 1rem;
  text-align: center;
}

.strip-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 700;
}

/* Radio spot banner */
.radio-banner {
  background: var(--orange-soft);
  padding: 1.75rem 0;
  border-bottom: 1px solid #f3d2c4;
}

.radio-banner-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 1.15fr);
  gap: 1.35rem 2rem;
  align-items: center;
}

.radio-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-deep);
}

.radio-banner h2 {
  margin: 0 0 0.4rem;
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
}

.radio-banner p {
  margin: 0;
  max-width: 38ch;
}

.radio-player {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.9rem;
  align-items: center;
  padding: 0.95rem 1.1rem;
  background: #1f2a37;
  color: #fff;
  border-radius: 1.25rem;
  box-shadow: var(--shadow-soft);
}

.radio-player audio {
  display: none;
}

.radio-play {
  width: 3.4rem;
  height: 3.4rem;
  border: 0;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s var(--ease), background 0.25s;
}

.radio-play:hover {
  background: var(--orange-deep);
  transform: scale(1.05);
}

.radio-play:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

.radio-play svg {
  width: 1.35rem;
  height: 1.35rem;
}

.radio-play-icon {
  margin-left: 0.12rem;
}

.radio-player.is-playing .radio-play-icon,
.radio-player:not(.is-playing) .radio-pause-icon {
  display: none;
}

.radio-meta {
  min-width: 0;
  display: grid;
  gap: 0.35rem;
}

.radio-track {
  margin: 0;
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
}

.radio-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(
    to right,
    var(--orange) var(--p, 0%),
    rgba(255, 255, 255, 0.22) var(--p, 0%)
  );
  cursor: pointer;
}

.radio-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  border: 0;
  box-shadow: 0 0 0 3px rgba(241, 90, 34, 0.35);
}

.radio-range::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  border: 0;
}

.radio-times {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
}

.radio-eq {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 1.7rem;
  width: 1.15rem;
}

.radio-eq span {
  flex: 1;
  height: 35%;
  border-radius: 2px;
  background: var(--orange);
  transform-origin: bottom;
}

.radio-eq span:nth-child(1) { height: 40%; }
.radio-eq span:nth-child(2) { height: 72%; }
.radio-eq span:nth-child(3) { height: 52%; }
.radio-eq span:nth-child(4) { height: 88%; }
.radio-eq span:nth-child(5) { height: 36%; }

.radio-player.is-playing .radio-eq span {
  animation: radio-eq 0.85s ease-in-out infinite;
}

.radio-player.is-playing .radio-eq span:nth-child(2) {
  animation-delay: 0.12s;
}

.radio-player.is-playing .radio-eq span:nth-child(3) {
  animation-delay: 0.24s;
}

.radio-player.is-playing .radio-eq span:nth-child(4) {
  animation-delay: 0.08s;
}

.radio-player.is-playing .radio-eq span:nth-child(5) {
  animation-delay: 0.2s;
}

@keyframes radio-eq {
  0%,
  100% {
    height: 30%;
  }
  50% {
    height: 100%;
  }
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 901px) {
  .solution-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.solution {
  padding: 1.5rem 0;
  border-top: 2px solid var(--orange);
}

.solution h3 {
  margin: 0.75rem 0 0.5rem;
}

.solution p {
  margin-bottom: 0.85rem;
}

.solution a {
  font-weight: 800;
  color: var(--orange);
}

.solution a:hover {
  text-decoration: underline;
}

.solution-icon {
  width: 2.75rem;
  height: 2.75rem;
  color: var(--orange);
}

.solution-icon.water {
  color: #2b7bbf;
}

.solution-icon.snack {
  color: var(--green);
}

.section-block {
  padding: 2.5rem 0;
}

.section-block + .section-block {
  border-top: 1px solid var(--line);
}

.zones {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2rem;
}

.zone-group h3 {
  margin-bottom: 1rem;
  font-size: 1.05rem;
  color: var(--orange);
}

.zone-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.zone-list li {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
  padding: 0.45rem 0.85rem;
  background: var(--paper-soft);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.zone-list a {
  color: inherit;
  font-weight: inherit;
}

.zone-list li:has(a) {
  padding: 0;
  cursor: pointer;
}

.zone-list li a {
  display: block;
  padding: 0.45rem 0.85rem;
}

.zone-list li:has(a):hover {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--orange-soft);
}

.zones-note {
  margin-top: 2rem;
  padding: 1rem 1.15rem;
  background: var(--orange-soft);
  border-radius: 0.85rem;
  color: var(--ink);
  font-weight: 600;
  max-width: 60rem;
}

.zones-note a,
.split a {
  color: var(--orange);
  font-weight: 800;
}

.zones-note a:hover,
.split a:hover {
  text-decoration: underline;
}

.hero-visual-sm {
  max-width: 200px !important;
  width: 200px;
  justify-self: end;
}

.split-media-sm {
  max-width: 180px;
  width: 180px;
  justify-self: center;
}

.split-media-sm img,
.hero-visual-sm img {
  width: 100%;
  height: auto;
  border-radius: 0.85rem;
  object-fit: contain;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.advantage {
  padding-top: 1rem;
  border-top: 3px solid var(--orange);
}

.advantage h3 {
  margin-bottom: 0.5rem;
}

.advantage h3:last-child {
  margin-bottom: 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review {
  padding: 0;
}

.review .stars {
  margin: 0 0 0.75rem;
  color: var(--orange);
  letter-spacing: 0.12em;
  font-size: 1.15rem;
}

.review blockquote {
  margin: 0 0 1rem;
  padding: 0;
  border: 0;
  color: var(--ink);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.45;
}

.review footer {
  display: grid;
  gap: 0.15rem;
}

.review footer strong {
  color: var(--ink);
}

.review footer span {
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.contact-simple {
  max-width: 46rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0 2rem;
}

.contact-details-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.footer-grid-4 {
  grid-template-columns: 1.3fr 0.8fr 1.2fr 1fr;
}

/* Placa blanca detrás del PNG real: “vending” oscuro y la sonrisa se leen sobre blanco, no sobre #2b2b2b */
.site-footer .logo-footer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.15rem;
  margin-bottom: 0.85rem;
  background: #fff;
  border-radius: 1.25rem;
}

.logo.logo-footer .logo-footer-img,
.site-footer .logo-footer img {
  width: 148px;
  height: auto;
  margin-bottom: 0;
  background: #fff; /* vence .logo img { background: transparent } */
  border-radius: 0.35rem;
}

.footer-zones {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  line-height: 1.55;
  margin: 0;
}

.footer-legal {
  margin: 0 0 1.25rem;
  padding-top: 0.25rem;
}

.footer-legal p {
  margin: 0.2rem 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.footer-bottom a {
  color: var(--orange);
  font-weight: 700;
}

.legal-page {
  max-width: 46rem;
}

.legal-page h1 {
  margin-bottom: 1rem;
}

.legal-page h2 {
  margin-top: 2rem;
  font-size: 1.25rem;
}

.legal-list {
  display: grid;
  gap: 0.45rem;
  margin: 0.75rem 0 1.25rem;
  padding-left: 1.1rem;
  list-style: disc;
}

.legal-list a {
  color: var(--orange);
  font-weight: 700;
}

.cookie-banner {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 80;
  background: rgba(31, 42, 55, 0.97);
  color: #fff;
  padding: 1rem;
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.2);
}

.cookie-inner {
  width: min(100% - 0.5rem, var(--max));
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  max-width: 48rem;
  font-size: 0.95rem;
}

.cookie-banner a {
  color: var(--orange);
  font-weight: 800;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

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

.logo-mark {
  display: grid;
  line-height: 0.95;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}

.logo-mark .happy {
  color: var(--orange);
}

.logo-mark .vending {
  color: var(--ink);
}

.logo-smile {
  width: 3.2rem;
  height: 0.55rem;
  margin-top: 0.15rem;
  border: none;
  border-bottom: 0.28rem solid var(--orange);
  border-radius: 0 0 999px 999px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem 1.35rem;
}

.nav-links a {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  transition: color 0.2s var(--ease);
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--orange);
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  background: var(--paper);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 1.15rem;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.25s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3rem;
  padding: 0.7rem 1.45rem;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s, border-color 0.25s;
}

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

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--orange);
  color: #fff;
}

.btn-primary:hover {
  background: var(--orange-deep);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

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

.btn-on-dark {
  background: #fff;
  color: var(--ink);
}

.btn-on-dark:hover {
  background: var(--orange-soft);
  color: var(--orange-deep);
}

.btn-icon {
  width: 1.35rem;
  height: 1.35rem;
  flex-shrink: 0;
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
}

.btn-whatsapp:hover {
  background: #1ebe57;
  border-color: #1ebe57;
  color: #fff;
}

.whatsapp-float {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s var(--ease), background 0.25s;
}

.whatsapp-float svg {
  width: 1.7rem;
  height: 1.7rem;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.04);
  background: #1ebe57;
}

.cookie-banner:not([hidden]) ~ .whatsapp-float,
body:has(.cookie-banner:not([hidden])) .whatsapp-float {
  bottom: 6.5rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: grid;
  align-items: stretch;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 85% 40%, rgba(241, 90, 34, 0.12), transparent 55%),
    linear-gradient(180deg, #fff 0%, var(--paper-soft) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
  min-height: inherit;
  padding: 2.5rem 0 3.5rem;
}

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

.hero-brand {
  margin-bottom: 1.5rem;
}

.hero-brand img {
  width: min(280px, 72vw);
}

.hero-kicker {
  display: block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.85rem;
}

.hero-copy .lead {
  font-size: 1.15rem;
  margin-bottom: 1.75rem;
  max-width: 32ch;
}

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

.hero-visual {
  position: relative;
  align-self: end;
  justify-self: end;
  width: 100%;
  max-width: 520px;
}

.hero-visual img {
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 28px 50px rgba(43, 43, 43, 0.18));
  animation: float-in 1s var(--ease) both;
}

.hero-wave {
  position: absolute;
  right: -8%;
  bottom: -12%;
  width: 55%;
  height: 42%;
  background: var(--orange);
  border-radius: 60% 40% 0 80%;
  opacity: 0.95;
  z-index: -1;
  animation: wave-in 1.1s var(--ease) 0.15s both;
}

@keyframes float-in {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes wave-in {
  from {
    opacity: 0;
    transform: translate(24px, 24px) scale(0.9);
  }
  to {
    opacity: 0.95;
    transform: none;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

/* Sections */
.section {
  padding: 5rem 0;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2.5rem;
}

.clients-trust {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--ink);
  font-weight: 800;
  font-size: 1.15rem;
  line-height: 1.3;
}

.clients-trust .solution-icon {
  flex-shrink: 0;
}

.section-muted {
  background: var(--paper-soft);
}

.section-orange {
  background: var(--orange);
  color: #fff;
}

.section-orange p,
.section-orange h2,
.section-orange a:not(.btn) {
  color: #fff;
}

.section-orange .btn-on-dark {
  color: var(--ink);
}

.section-orange .btn-on-dark:hover {
  color: var(--orange-deep);
}

.section-dark {
  background: var(--ink);
  color: #fff;
}

.section-dark p {
  color: rgba(255, 255, 255, 0.78);
}

.section-dark h2,
.section-dark h3 {
  color: #fff;
}

/* Services strip — not cards; linked rows */
.service-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.service-item {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.6fr) auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--line);
  transition: background 0.25s var(--ease);
}

.service-item:hover {
  background: linear-gradient(90deg, var(--orange-soft), transparent);
}

.service-item h3 {
  margin: 0;
  font-size: 1.35rem;
}

.service-item p {
  margin: 0;
}

.service-item .arrow {
  color: var(--orange);
  font-weight: 800;
  font-size: 1.4rem;
}

/* Benefits */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 2rem;
}

.benefit {
  display: grid;
  gap: 0.75rem;
}

.benefit-icon {
  width: 2.75rem;
  height: 2.75rem;
  color: var(--orange);
}

.benefit h3 {
  margin: 0;
}

.benefit p {
  margin: 0;
  max-width: 28ch;
}

.benefit-grid.green .benefit-icon {
  color: var(--green);
}

/* Split feature */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.split-media img {
  width: 100%;
  border-radius: 1.25rem;
  box-shadow: var(--shadow-soft);
}

.checklist {
  display: grid;
  gap: 1.15rem;
  margin: 1.5rem 0 2rem;
}

.checklist li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
}

.checklist .ico {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--orange);
  margin-top: 0.1rem;
}

.checklist.green .ico {
  color: var(--green);
}

.checklist strong {
  display: block;
  color: var(--ink);
  font-weight: 800;
}

.checklist span {
  color: var(--ink-muted);
  font-size: 0.98rem;
}

/* Trust bar */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.trust-item {
  display: grid;
  gap: 0.65rem;
  justify-items: center;
}

.trust-item svg {
  width: 2rem;
  height: 2rem;
  color: #fff;
}

.trust-item p {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  max-width: 16ch;
}

.section-dark .trust-item svg {
  color: var(--green);
}

/* CTA band */
.cta-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cta-band h2 {
  margin: 0 0 0.35rem;
}

.cta-band p {
  margin: 0;
  max-width: 42ch;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.contact-details a {
  font-weight: 800;
  color: var(--orange);
}

.contact-details a:hover {
  text-decoration: underline;
}

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

.form label {
  display: grid;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.92rem;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  padding: 0.85rem 1rem;
  font: inherit;
  color: var(--ink);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(241, 90, 34, 0.15);
}

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

.form-note {
  font-size: 0.85rem;
  color: var(--ink-muted);
}

.form-success {
  display: none;
  padding: 1rem 1.15rem;
  background: var(--green-soft);
  color: var(--green);
  border-radius: 0.85rem;
  font-weight: 700;
}

.form-success.is-visible {
  display: block;
}

/* Page hero compact */
.page-hero {
  padding: 3.5rem 0 2.5rem;
  background:
    radial-gradient(ellipse 70% 80% at 100% 0%, rgba(241, 90, 34, 0.1), transparent 50%),
    var(--paper-soft);
}

.page-hero.healthy {
  background:
    radial-gradient(ellipse 70% 80% at 100% 0%, rgba(47, 158, 77, 0.12), transparent 50%),
    var(--paper-soft);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink-muted);
  margin-bottom: 1.25rem;
}

.breadcrumb a:hover {
  color: var(--orange);
}

.breadcrumb [aria-current="page"] {
  color: var(--ink);
}

.page-hero .lead {
  font-size: 1.15rem;
  max-width: 48ch;
}

.page-hero .hero-actions {
  margin-top: 1.5rem;
}

.prose {
  max-width: 46rem;
}

.prose p,
.prose li {
  color: var(--ink-muted);
}

.prose h2 {
  margin-top: 2.35rem;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose ul {
  list-style: disc;
  padding-left: 1.2rem;
  margin: 0 0 1.25rem;
  display: grid;
  gap: 0.45rem;
}

.prose a {
  color: var(--orange);
  font-weight: 800;
}

.prose a:hover {
  text-decoration: underline;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

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

.step {
  padding-top: 0.85rem;
  border-top: 3px solid var(--orange);
}

.step-num {
  display: block;
  color: var(--orange);
  font-weight: 800;
  font-size: 1.35rem;
  margin-bottom: 0.45rem;
}

.step p {
  margin: 0;
}

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

.faq-item {
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  background: #fff;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 800;
  padding: 1rem 1.15rem;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--orange);
  font-weight: 800;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  padding: 0 1.15rem 1.1rem;
  margin: 0;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.related-card {
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: #fff;
  display: grid;
  gap: 0.5rem;
  align-content: start;
}

.related-card h3 {
  margin: 0;
  font-size: 1.05rem;
}

.related-card p {
  margin: 0;
  font-size: 0.95rem;
}

.related-card a {
  font-weight: 800;
  color: var(--orange);
}

.related-card a:hover {
  text-decoration: underline;
}

.landing-note {
  margin-top: 1.5rem;
  padding: 1rem 1.15rem;
  background: var(--orange-soft);
  border-radius: 0.85rem;
  color: var(--ink);
  font-weight: 600;
  max-width: 46rem;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

.pay-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.pay-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.pay-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 3px solid var(--orange);
  border-radius: 1rem;
  padding: 1.6rem 1.4rem;
}

.pay-kicker {
  margin: 0 0 0.45rem;
  color: var(--orange);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pay-card h3 {
  margin-bottom: 0.65rem;
  font-size: 1.15rem;
}

.pay-card p {
  margin: 0;
  color: var(--ink-muted);
}

.affiliate-line {
  margin: 0.35rem 0 0;
  color: var(--orange);
  font-weight: 800;
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
}

.affiliate-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.affiliate-card {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--orange);
  border-radius: 1rem;
  padding: 1.85rem 1.5rem;
  box-shadow: var(--shadow-soft);
  min-height: 9.5rem;
  display: grid;
  align-content: center;
}

.affiliate-card h3 {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  line-height: 1.25;
}

.affiliate-card-now {
  background: var(--orange-soft);
}

.affiliate-card-now span {
  color: var(--orange);
}

.affiliate-note,
.affiliate-dossier {
  max-width: 46rem;
  margin: 2rem 0 0;
}

.affiliate-dossier {
  font-size: 1.12rem;
}

.affiliate-dossier a {
  color: var(--orange);
  font-weight: 800;
}

.affiliate-dossier a:hover {
  text-decoration: underline;
}

.machine-showcase {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.5rem;
  align-items: center;
}

.machine-facts {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.prose ul.machine-facts {
  list-style: none;
  padding-left: 0;
}

.machine-facts li {
  padding: 0.7rem 0.9rem;
  background: var(--paper-soft);
  border-radius: 0.75rem;
  border: 1px solid var(--line);
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: #fff;
  padding: 3.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.site-footer .logo-mark .vending {
  color: #fff;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.7);
}

.footer-col h3 {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-col a {
  display: block;
  padding: 0.25rem 0;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
}

.footer-col a:hover {
  color: var(--orange);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
}

.tagline {
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.tagline .every {
  color: var(--orange);
}

/* Motion reduce */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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

/* Responsive */
@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 32px rgba(43, 43, 43, 0.08);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 0.85rem 0.5rem;
    border-bottom: 1px solid var(--line);
  }

  .nav-links .btn {
    margin-top: 0.75rem;
    width: 100%;
  }

  .hero-grid,
  .split,
  .contact-grid,
  .footer-grid,
  .footer-grid-4,
  .zones,
  .solution-grid,
  .advantage-grid,
  .benefit-grid,
  .pay-grid,
  .pay-grid-2,
  .machine-showcase,
  .reviews-grid,
  .contact-details-row,
  .steps-grid,
  .steps-grid-2,
  .affiliate-grid,
  .related-grid,
  .radio-banner-inner {
    grid-template-columns: 1fr;
  }

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

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding-top: 1.5rem;
  }

  .hero-visual {
    max-width: 200px;
    justify-self: center;
    order: -1;
  }

  .hero-visual-sm,
  .split-media-sm {
    max-width: 160px !important;
    width: 160px;
    justify-self: center;
  }

  .hero-wave {
    display: none;
  }

  .contact-actions .btn {
    width: 100%;
  }

  .whatsapp-float {
    right: 0.85rem;
    bottom: 0.85rem;
    width: 3.15rem;
    height: 3.15rem;
  }

  .strip-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-actions .btn {
    flex: 1;
  }

  .benefit-grid,
  .trust-bar {
    grid-template-columns: 1fr 1fr;
  }

  .service-item {
    grid-template-columns: 1fr auto;
  }

  .service-item p {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .benefit-grid,
  .trust-bar {
    grid-template-columns: 1fr;
  }

  .logo img {
    width: 120px;
  }

  .logo.logo-footer .logo-footer-img,
  .site-footer .logo-footer img {
    width: 132px;
    background: #fff;
  }

  .radio-eq {
    display: none;
  }

  .radio-player {
    grid-template-columns: auto minmax(0, 1fr);
  }
}
