:root {
  --green: #00a66a;
  --green-dark: #0d5f49;
  --ink: #17221f;
  --muted: #5d6964;
  --line: #dce4df;
  --paper: #ffffff;
  --soft: #f5f7f4;
  --warm: #f4b14d;
  --coral: #f85a3e;
  --shadow: 0 18px 50px rgba(17, 41, 33, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 14px max(20px, calc((100vw - 1120px) / 2));
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(220, 228, 223, 0.82);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img,
.site-footer img {
  height: auto;
  object-fit: contain;
}

.brand img {
  max-height: 40px;
  width: auto;
}

.site-footer img {
  max-height: 40px;
  width: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a,
.footer-grid a,
.text-link {
  text-decoration: none;
}

.site-nav a {
  color: #31413b;
}

.site-nav a:hover,
.text-link:hover,
.footer-grid a:hover {
  color: var(--green-dark);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.header-cta,
.btn-primary {
  color: #ffffff;
  background: var(--green);
  box-shadow: 0 10px 26px rgba(0, 166, 106, 0.26);
}

.header-cta:hover,
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.42);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.22);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 88svh;
  padding: 120px 0 76px;
  overflow: hidden;
  color: #ffffff;
}

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

.hero-bg {
  background-color: #10231d;
  background-image: url("assets/vendispot.jpeg");
  background-position: right center;
  background-repeat: no-repeat;
  background-size: auto 100%;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 24, 19, 0.88) 0%, rgba(8, 24, 19, 0.66) 43%, rgba(8, 24, 19, 0.14) 100%),
    linear-gradient(0deg, rgba(8, 24, 19, 0.4), rgba(8, 24, 19, 0.08));
}

.hero-content {
  position: relative;
  max-width: 1120px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #bff8df;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  font-weight: 900;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
}

h3 {
  font-size: 1.1rem;
}

.hero-copy {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.trust-strip {
  position: relative;
  z-index: 2;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.trust-grid p {
  min-height: 96px;
  margin: 0;
  padding: 22px;
  background: #ffffff;
  font-weight: 800;
}

.section {
  padding: 92px 0;
}

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

.split-grid,
.include-grid,
.qualify-grid,
.note-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: start;
}

.lead {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.14rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.feature-list,
.steps,
.card-grid {
  display: grid;
  gap: 16px;
}

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

.feature-list article,
.steps article,
.benefit-card,
.lead-form,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.feature-list article {
  padding: 24px;
}

.feature-list span {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--coral);
  font-weight: 900;
}

.feature-list p,
.steps p,
.benefit-card p,
.note-grid p,
.faq-list p,
.form-note,
.footer-grid p {
  color: var(--muted);
}

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

.steps article,
.benefit-card {
  padding: 28px;
}

.steps span {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--green);
  font-weight: 900;
}

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

.icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 8px;
  color: var(--ink);
  background: #fff1d7;
  font-weight: 900;
}

.include-section {
  color: #ffffff;
  background:
    linear-gradient(rgba(13, 95, 73, 0.92), rgba(13, 95, 73, 0.92)),
    url("assets/vendispot.jpeg") center / cover no-repeat;
}

.include-section .section-kicker,
.include-section .lead {
  color: #d8ffec;
}

.include-list,
.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

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

.include-list li,
.check-list li {
  position: relative;
  padding: 16px 16px 16px 44px;
  border-radius: 8px;
  font-weight: 800;
}

.include-list li {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.include-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 23px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--warm);
}

.gallery {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.65fr);
  gap: 28px;
  align-items: center;
}

.gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #eef1ee;
  box-shadow: var(--shadow);
}

.gallery img {
  width: 100%;
  height: auto;
  max-height: 820px;
  object-fit: cover;
}

.gallery figcaption {
  position: relative;
  margin-top: -54px;
  padding: 16px;
  color: #ffffff;
  background: linear-gradient(0deg, rgba(8, 24, 19, 0.82), rgba(8, 24, 19, 0));
  font-weight: 900;
}

.gallery-copy {
  padding: 8px 0;
}

.gallery-copy p {
  color: var(--muted);
  font-size: 1.06rem;
}

.qualify {
  background: #fffaf0;
}

.check-list li {
  background: #ffffff;
  border: 1px solid #eadcc3;
}

.vending-note {
  padding: 56px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.note-grid {
  align-items: center;
}

.vending-compare {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.vending-compare article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.vending-compare h3 {
  margin-bottom: 8px;
}

.vending-compare p {
  margin: 0;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--green-dark);
  font-weight: 900;
}

.faq-wrap {
  max-width: 900px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 0 20px;
}

.faq-list summary {
  min-height: 62px;
  padding: 19px 34px 19px 0;
  font-weight: 900;
  cursor: pointer;
}

.faq-list p {
  margin: 0;
  padding: 0 0 22px;
}

.contact-section {
  background: #10231d;
  color: #ffffff;
}

.contact-section .lead {
  color: rgba(255, 255, 255, 0.72);
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 24px;
  color: var(--ink);
}

.lead-form label {
  display: grid;
  gap: 7px;
  font-size: 0.88rem;
  font-weight: 900;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  font: inherit;
}

.lead-form textarea {
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.form-note {
  grid-column: 1 / -1;
  min-height: 1.4em;
  margin: 0;
  font-size: 0.92rem;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 18px 36px rgba(20, 80, 50, 0.26);
}

.floating-whatsapp img {
  width: 34px;
  height: 34px;
}

.site-footer {
  padding: 36px 0;
  color: #ffffff;
  background: #0b1814;
}

.legal-page {
  background: var(--soft);
}

.legal-content {
  min-height: 62svh;
  padding-top: 150px;
  padding-bottom: 72px;
}

.legal-content h1 {
  color: var(--ink);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
}

.legal-content p {
  max-width: 820px;
  color: var(--muted);
  font-size: 1.08rem;
}

.legal-content a {
  color: var(--green-dark);
  font-weight: 800;
}

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

.footer-grid address,
.footer-grid nav {
  display: grid;
  gap: 8px;
  font-style: normal;
}

.footer-grid a,
.footer-grid p {
  color: rgba(255, 255, 255, 0.74);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-nav.is-open {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 12px 20px 20px;
    background: #ffffff;
    border-bottom: 1px solid var(--line);
  }

  .site-nav.is-open a {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-grid,
  .feature-list,
  .steps,
  .card-grid,
  .include-list,
  .vending-compare,
  .gallery,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-grid,
  .include-grid,
  .qualify-grid,
  .note-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 82svh;
  }

  .hero-overlay {
    background: linear-gradient(0deg, rgba(8, 24, 19, 0.9), rgba(8, 24, 19, 0.42));
  }

  .hero-bg {
    background-position: center;
    background-size: cover;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .hero {
    min-height: 78svh;
    padding: 112px 0 54px;
  }

  h1 {
    font-size: 2.6rem;
  }

  .hero-actions,
  .btn,
  .header-cta {
    width: 100%;
  }

  .section {
    padding: 68px 0;
  }

  .trust-grid,
  .feature-list,
  .steps,
  .card-grid,
  .include-list,
  .vending-compare,
  .gallery,
  .lead-form,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid p {
    min-height: auto;
  }

  .gallery figure,
  .gallery img {
    min-height: 280px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 56px;
    height: 56px;
  }
}
