/* MLC — marcologistics.be */

:root {
  --brand: #07c2de;
  --brand-ink: #048ea4;
  --brand-deep: #04697a;
  --ink: #0e1c24;
  --ink-soft: #33474f;
  --muted: #62777f;
  --bg: #ffffff;
  --surface: #f4fafb;
  --surface-2: #eaf5f7;
  --border: #dfebee;
  --radius: 14px;
  --maxw: 1080px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 0.6em;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3.2vw, 2.05rem); }
h3 { font-size: 1.15rem; }

p { margin: 0 0 1.1em; }

a { color: var(--brand-ink); text-decoration: none; }
a:hover { color: var(--brand-deep); text-decoration: underline; }

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

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 74px;
}

.logo img { display: block; height: 38px; width: auto; }

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.nav a {
  display: inline-block;
  padding: 8px 13px;
  border-radius: 9px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.nav a:hover { background: var(--surface-2); color: var(--ink); text-decoration: none; }
.nav a.active { color: var(--brand-deep); background: var(--surface-2); }

.nav .btn { margin-left: 8px; }

/* ---------- buttons ---------- */

.btn {
  display: inline-block;
  padding: 11px 22px;
  border-radius: 10px;
  font-size: 0.97rem;
  font-weight: 600;
  background: var(--brand);
  color: #04333c !important;
  border: 1px solid var(--brand);
  transition: background 0.15s ease, transform 0.15s ease;
}

.btn:hover { background: #06b0cb; text-decoration: none; transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--ink) !important;
  border: 1px solid var(--border);
}

.btn-ghost:hover { background: var(--surface); border-color: #c9dee3; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }

/* ---------- hero ---------- */

.hero {
  padding: 84px 0 72px;
  background:
    radial-gradient(1100px 380px at 12% -10%, rgba(7, 194, 222, 0.14), transparent 65%),
    linear-gradient(180deg, #fbfeff, #ffffff);
  border-bottom: 1px solid var(--border);
}

.hero .eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-deep);
  background: var(--surface-2);
  border: 1px solid #cfe9ee;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero h1 { max-width: 22ch; }

.hero-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 28px 24px;
  box-shadow: 0 18px 40px -28px rgba(14, 28, 36, 0.35);
}

.hero-panel h2 {
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}

.hero-panel dl { margin: 0; }
.hero-panel dl > div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-top: 1px solid var(--border);
  font-size: 0.93rem;
}
.hero-panel dl > div:first-child { border-top: 0; padding-top: 0; }
.hero-panel dt { color: var(--muted); margin: 0; }
.hero-panel dd { margin: 0; font-weight: 600; color: var(--ink); text-align: right; }

.hero .lead {
  font-size: clamp(1.06rem, 2.2vw, 1.22rem);
  color: var(--muted);
  max-width: 60ch;
  margin-bottom: 28px;
}

/* ---------- sections ---------- */

.section { padding: 76px 0; }
.section.alt { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-head { max-width: 62ch; margin-bottom: 44px; }
.section-head p { color: var(--muted); margin-bottom: 0; }

.page-head {
  padding: 64px 0 52px;
  background: linear-gradient(180deg, #fbfeff, #ffffff);
  border-bottom: 1px solid var(--border);
}

.page-head p { color: var(--muted); max-width: 62ch; font-size: 1.08rem; margin-bottom: 0; }

/* ---------- grid + cards ---------- */

.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(min(390px, 100%), 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(min(210px, 100%), 1fr)); }

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
}

.card h3 { margin-bottom: 0.45em; }
.card p:last-child { margin-bottom: 0; }

.card .icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--surface-2);
  border: 1px solid #cfe9ee;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.card .icon svg { width: 20px; height: 20px; stroke: var(--brand-deep); fill: none; stroke-width: 1.8; }

.card-num {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--brand-deep);
  margin-bottom: 10px;
}

/* ---------- service block ---------- */

.service {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 32px;
  background: #fff;
  margin-bottom: 22px;
}

.service h2 { font-size: 1.4rem; margin-bottom: 0.5em; }
.service .deliverables { margin: 22px 0 0; padding-top: 22px; border-top: 1px solid var(--border); }
.service .deliverables h4 {
  font-size: 0.78rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
  font-weight: 700;
}

ul.ticks { list-style: none; margin: 0; padding: 0; }
ul.ticks li { position: relative; padding-left: 26px; margin-bottom: 9px; }
ul.ticks li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
}
ul.ticks li:last-child { margin-bottom: 0; }

/* ---------- tech tags ---------- */

.tags { display: flex; flex-wrap: wrap; gap: 9px; margin: 0; padding: 0; list-style: none; }
.tags li {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-soft);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 15px;
}

/* ---------- detail list ---------- */

.dl { border-top: 1px solid var(--border); margin: 0; }
.dl > div {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
}
.dl dt { font-weight: 600; color: var(--ink); margin: 0; }
.dl dd { margin: 0; }

/* ---------- prose (legal pages) ---------- */

.prose { max-width: 70ch; }
.prose h2 { font-size: 1.32rem; margin-top: 2.2em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.7em; }
.prose ul { padding-left: 22px; }
.prose li { margin-bottom: 8px; }
.prose .updated { font-size: 0.92rem; color: var(--muted); }

/* ---------- CTA ---------- */

.cta {
  background: linear-gradient(135deg, #0e1c24, #123642);
  color: #cfe3e9;
  border-radius: 18px;
  padding: 52px 44px;
  text-align: center;
}
.cta h2 { color: #fff; }
.cta p { max-width: 54ch; margin: 0 auto 26px; color: #a9c6ce; }

/* ---------- footer ---------- */

.site-footer {
  background: #0e1c24;
  color: #94b0b9;
  padding: 58px 0 28px;
  font-size: 0.94rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.site-footer h4 {
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.site-footer a { color: #b9d3da; }
.site-footer a:hover { color: #fff; }

.footer-brand {
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  color: #fff;
  margin-bottom: 10px;
}
.footer-brand span { color: var(--brand); }

.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 9px; }

.legal-line {
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: space-between;
  font-size: 0.88rem;
  color: #7a97a1;
}

/* ---------- misc ---------- */

.skip {
  position: absolute;
  left: -9999px;
}
.skip:focus {
  left: 12px;
  top: 12px;
  z-index: 99;
  background: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  border: 2px solid var(--brand);
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .header-inner { min-height: 66px; flex-wrap: wrap; padding-top: 10px; padding-bottom: 10px; }
  .nav { gap: 2px; }
  .nav a { padding: 7px 10px; font-size: 0.9rem; }
  .nav .btn { margin-left: 0; padding: 9px 16px; }
  .hero { padding: 56px 0 50px; }
  .hero-inner { grid-template-columns: 1fr; gap: 34px; }
  .section { padding: 56px 0; }
  .service { padding: 26px 22px; }
  .cta { padding: 38px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .dl > div { grid-template-columns: 1fr; gap: 4px; }
}
