/* Veepleo — minimal slate theme */
:root {
  --bg: #ffffff;
  --bg-alt: #f1f5f9;          /* slate-100 */
  --ink: #0f172a;             /* slate-900 */
  --ink-soft: #475569;        /* slate-600 */
  --ink-faint: #94a3b8;       /* slate-400 */
  --line: #e2e8f0;            /* slate-200 */
  --accent: #0f766e;          /* teal-700 — single restrained accent */
  --accent-ink: #115e59;      /* teal-800 */
  --radius: 14px;
  --maxw: 1080px;
  --shadow: 0 1px 2px rgba(15, 23, 42, .04), 0 8px 24px rgba(15, 23, 42, .06);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -.01em;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
}
.brand-name { font-size: 19px; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 500;
  transition: color .15s ease;
}
.nav a:hover { color: var(--ink); }
.nav-cta {
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff !important;
}
.nav-cta:hover { background: var(--accent-ink); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  padding: 13px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, transform .05s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-ink); }
.btn-primary:disabled { opacity: .6; cursor: default; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink-faint); }

/* ---------- Hero ---------- */
.hero {
  padding: 92px 0 72px;
  background:
    radial-gradient(900px 360px at 15% -10%, rgba(15, 118, 110, .06), transparent 60%),
    var(--bg);
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 18px;
}
.hero h1 {
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: -.025em;
  margin: 0 0 22px;
  font-weight: 700;
}
.lede {
  font-size: clamp(17px, 2.3vw, 20px);
  color: var(--ink-soft);
  max-width: 620px;
  margin: 0 0 32px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Sections ---------- */
.section { padding: 80px 0; border-top: 1px solid var(--line); }
.section-alt { background: var(--bg-alt); }
.section-title {
  font-size: clamp(26px, 3.4vw, 34px);
  letter-spacing: -.02em;
  margin: 0 0 8px;
  font-weight: 700;
}
.section-sub { color: var(--ink-soft); font-size: 17px; margin: 0 0 40px; max-width: 560px; }

/* ---------- Services grid ---------- */
.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-2px); border-color: #cbd5e1; }
.card-num {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: .08em;
  margin-bottom: 14px;
}
.card h3 { margin: 0 0 8px; font-size: 19px; letter-spacing: -.01em; }
.card p { margin: 0; color: var(--ink-soft); font-size: 15.5px; }

/* ---------- Why ---------- */
.why-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start; }
.why-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 4px; }
.why-list li {
  display: grid;
  gap: 4px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.why-list li:last-child { border-bottom: 0; }
.why-key { font-weight: 600; font-size: 17px; }
.why-val { color: var(--ink-soft); font-size: 15.5px; }

/* ---------- Contact ---------- */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
.contact-form { display: grid; gap: 18px; }
.field { display: grid; gap: 7px; }
.field label { font-size: 14px; font-weight: 600; color: var(--ink); }
.field input, .field textarea {
  font: inherit;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  width: 100%;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { resize: vertical; }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, .12);
}
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { margin: 4px 0 0; font-size: 15px; min-height: 1.4em; }
.form-status.ok { color: var(--accent-ink); }
.form-status.err { color: #b91c1c; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding: 40px 0; background: var(--bg); }
.footer-inner { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; justify-content: space-between; }
.footer-note { color: var(--ink-faint); font-size: 14px; margin: 0; max-width: 560px; }

/* ---------- Responsive ---------- */
@media (max-width: 800px) {
  .why-grid, .contact-wrap { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 620px) {
  .grid { grid-template-columns: 1fr; }
  .nav { gap: 16px; }
  .nav a:not(.nav-cta) { display: none; }
  .hero { padding: 64px 0 56px; }
  .section { padding: 60px 0; }
}
