/* ============================================================
   Vend Spot LLC — site styles
   Single stylesheet, no dependencies. Brand-safe + responsive.
   ============================================================ */

:root {
  --green:      #0f766e;   /* primary (teal-green, fresh + trustworthy) */
  --green-dark: #0b5751;
  --green-50:   #ecfdf5;
  --amber:      #f59e0b;   /* CTA accent (snack warmth) */
  --amber-dark: #d97706;
  --ink:        #0f172a;   /* near-black slate */
  --body:       #334155;   /* body text */
  --muted:      #64748b;
  --line:       #e2e8f0;
  --bg:         #ffffff;
  --bg-soft:    #f8fafc;
  --radius:     16px;
  --shadow:     0 10px 30px -12px rgba(15, 23, 42, .18);
  --shadow-sm:  0 2px 10px -4px rgba(15, 23, 42, .15);
  --maxw:       1140px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--body);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { color: var(--ink); line-height: 1.15; margin: 0 0 .5em; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); font-weight: 800; }
h3 { font-size: 1.2rem; font-weight: 700; }
p  { margin: 0 0 1rem; }
a  { color: var(--green); text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 84px 0; }
.section--soft { background: var(--bg-soft); }
.center { text-align: center; }
.eyebrow {
  display: inline-block; text-transform: uppercase; letter-spacing: .12em;
  font-size: .78rem; font-weight: 700; color: var(--green);
  background: var(--green-50); padding: 6px 14px; border-radius: 999px; margin-bottom: 16px;
}
.lead { font-size: 1.15rem; color: var(--muted); max-width: 640px; margin: 0 auto 8px; }
.section .lead { margin-bottom: 48px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 1rem; padding: 14px 26px; border-radius: 999px;
  cursor: pointer; border: 2px solid transparent; transition: transform .12s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--amber); color: #1a1206; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--amber-dark); color: #1a1206; }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn--ghost:hover { background: rgba(255,255,255,.12); }
.btn--green { background: var(--green); color: #fff; }
.btn--green:hover { background: var(--green-dark); color: #fff; }
.btn--lg { padding: 16px 32px; font-size: 1.05rem; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.88); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; color: var(--ink); font-size: 1.25rem; letter-spacing: -.02em; }
.brand .logo { width: 38px; height: 38px; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: var(--body); font-weight: 600; font-size: .98rem; }
.nav-links a:hover { color: var(--green); }
.nav .btn { padding: 10px 20px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: .2s; }

/* ---------- Hero ---------- */
.hero {
  position: relative; color: #fff; overflow: hidden;
  background: radial-gradient(1200px 600px at 80% -10%, #14b8a6 0%, transparent 55%),
              linear-gradient(135deg, #0b5751 0%, #0f766e 55%, #115e59 100%);
}
.hero .wrap { position: relative; z-index: 2; padding-top: 96px; padding-bottom: 96px; }
.hero h1 { color: #fff; max-width: 18ch; }
.hero p.sub { font-size: 1.2rem; color: rgba(255,255,255,.92); max-width: 54ch; margin-bottom: 28px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust {
  display: flex; gap: 26px; flex-wrap: wrap; margin-top: 40px;
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,.2);
}
.hero-trust div { display: flex; align-items: center; gap: 9px; font-weight: 600; color: rgba(255,255,255,.95); font-size: .96rem; }
.hero-trust svg { flex: none; }
.hero-blob { position: absolute; right: -120px; bottom: -120px; width: 520px; opacity: .12; z-index: 1; }

/* ---------- Generic grid ---------- */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }

/* ---------- Cards ---------- */
.card {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; transition: transform .15s ease, box-shadow .2s ease, border-color .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.card .ico {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: var(--green-50); color: var(--green); margin-bottom: 16px;
}
.card h3 { margin-bottom: 6px; }
.card p { color: var(--muted); font-size: .96rem; margin: 0; }

/* steps */
.step { position: relative; }
.step .num {
  width: 46px; height: 46px; border-radius: 50%; background: var(--amber); color: #1a1206;
  font-weight: 800; display: grid; place-items: center; margin-bottom: 16px; font-size: 1.15rem;
}

/* ---------- Why list ---------- */
.why { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 40px; }
.why-item { display: flex; gap: 14px; align-items: flex-start; }
.why-item .tick {
  flex: none; width: 28px; height: 28px; border-radius: 50%; background: var(--green);
  color: #fff; display: grid; place-items: center; margin-top: 2px;
}
.why-item h3 { font-size: 1.05rem; margin: 0 0 2px; }
.why-item p { margin: 0; color: var(--muted); font-size: .95rem; }

/* ---------- Stats band ---------- */
.stats { background: var(--ink); color: #fff; }
.stats .grid-3 { gap: 0; }
.stat { text-align: center; padding: 18px; }
.stat .big { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; color: #fff; letter-spacing: -.02em; }
.stat .lbl { color: rgba(255,255,255,.7); font-weight: 600; font-size: .95rem; }

/* ---------- Service area ---------- */
.cities { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.city {
  display: flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--line);
  border-radius: 999px; padding: 12px 22px; font-weight: 700; color: var(--ink); box-shadow: var(--shadow-sm);
}
.city .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--amber); }
.city.priority .dot { background: var(--green); }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin: 0 auto; }
.faq details {
  border: 1px solid var(--line); border-radius: 12px; padding: 4px 20px; margin-bottom: 14px; background: #fff;
}
.faq summary {
  cursor: pointer; font-weight: 700; color: var(--ink); padding: 16px 0; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--green); font-weight: 400; }
.faq details[open] summary::after { content: "\2013"; }
.faq details p { color: var(--muted); padding-bottom: 16px; margin: 0; }

/* ---------- CTA / Contact ---------- */
.contact { background: linear-gradient(135deg, #0b5751, #0f766e); color: #fff; }
.contact h2 { color: #fff; }
.contact .lead { color: rgba(255,255,255,.9); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-info li { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; list-style: none; font-size: 1.05rem; }
.contact-info ul { padding: 0; margin: 0; }
.contact-info .ico { width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,.14); display: grid; place-items: center; flex: none; }
.contact-info a { color: #fff; font-weight: 700; }
.form { background: #fff; border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); }
.form label { display: block; font-weight: 700; color: var(--ink); margin-bottom: 6px; font-size: .92rem; }
.form .field { margin-bottom: 18px; }
.form input, .form select, .form textarea {
  width: 100%; padding: 13px 14px; border: 1px solid var(--line); border-radius: 10px;
  font-family: inherit; font-size: 1rem; color: var(--ink); background: #fff;
}
.form input:focus, .form select:focus, .form textarea:focus { outline: 2px solid var(--green); border-color: var(--green); }
.form .btn { width: 100%; justify-content: center; }
.form .small { font-size: .82rem; color: var(--muted); margin: 12px 0 0; text-align: center; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(255,255,255,.7); padding: 54px 0 30px; }
.footer .cols { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 30px; margin-bottom: 36px; }
.footer .brand { color: #fff; margin-bottom: 12px; }
.footer h4 { color: #fff; font-size: .95rem; text-transform: uppercase; letter-spacing: .1em; margin: 0 0 14px; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 9px; }
.footer a { color: rgba(255,255,255,.7); }
.footer a:hover { color: #fff; }
.footer .bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 22px; font-size: .88rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .grid-5 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer .cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .section { padding: 60px 0; }
  .nav-links {
    position: absolute; top: 72px; left: 0; right: 0; background: #fff; flex-direction: column;
    gap: 0; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); display: none; padding: 8px 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 14px 24px; }
  .nav-links .btn { margin: 10px 24px; }
  .nav-toggle { display: block; }
  .grid-2, .grid-3, .grid-5, .why, .contact-grid, .footer .cols { grid-template-columns: 1fr; }
  .hero-trust { gap: 14px 26px; }
}
