/* ===== MakallAI — Claude-app-stijl: licht, warm, terracotta ===== */
:root {
  --bg: #FAF9F5;
  --bg-alt: #F0EEE6;
  --ink: #3D3929;
  --ink-soft: #6E6A5E;
  --accent: #D97757;
  --accent-dark: #C05F3F;
  --accent-soft: #F5E6DE;
  --line: #E5E1D8;
  --dark: #262624;
  --dark-soft: #35342F;
  --white: #FFFFFF;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Inter", -apple-system, "Segoe UI", sans-serif;
  --shadow: 0 2px 8px rgba(61, 57, 41, .06);
  --shadow-lift: 0 14px 34px rgba(61, 57, 41, .12);
  --radius: 14px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

/* ===== Logo-intro bij laden ===== */
.splash {
  position: fixed; inset: 0; z-index: 300; background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  animation: splashOut .6s ease 1.5s forwards; pointer-events: none;
}
.splash-logo {
  font-family: var(--serif); font-size: clamp(2.2rem, 6vw, 3.6rem); font-weight: 600;
  color: var(--ink); display: inline-flex; align-items: baseline;
  opacity: 0; transform: translateY(14px) scale(.97);
  animation: splashIn .7s cubic-bezier(.22, 1, .36, 1) .15s forwards;
}
.splash-logo b { color: var(--accent); font-weight: 600; }
.splash-dot {
  width: .18em; height: .18em; border-radius: 50%; background: var(--accent);
  margin-left: .12em; align-self: flex-end; margin-bottom: .14em;
  animation: splashDot 1.1s ease .5s both;
}
.splash.splash-skip { animation: none; opacity: 0; visibility: hidden; }
.splash.splash-skip .splash-logo, .splash.splash-skip .splash-dot { animation: none; }
@keyframes splashIn { to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes splashDot { 0% { transform: scale(0); } 60% { transform: scale(1.6); } 100% { transform: scale(1); } }
@keyframes splashOut { to { opacity: 0; visibility: hidden; } }

/* ===== Scrollvoortgang ===== */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 200;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  border-radius: 0 2px 2px 0;
}
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.15; letter-spacing: -.01em; }
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
h1 em { font-style: italic; color: var(--accent); }

/* ===== Nav ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0; transition: all .3s ease;
}
.nav.scrolled {
  background: rgba(250, 249, 245, .88);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.logo { font-family: var(--serif); font-size: 1.45rem; font-weight: 600; color: var(--ink); }
.logo span { color: var(--accent); }
.logo-light { color: var(--bg); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a:not(.btn) {
  color: var(--ink); font-size: .95rem; font-weight: 500; position: relative;
}
.nav-links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -4px; height: 2px; width: 0;
  background: var(--accent); transition: width .25s ease;
}
.nav-links a:not(.btn):hover::after { width: 100%; }
.nav-toggle { display: none; background: none; border: none; font-size: 1.5rem; color: var(--ink); cursor: pointer; }

/* ===== Buttons ===== */
.btn {
  display: inline-block; padding: 14px 28px; border-radius: 999px;
  font-weight: 600; font-size: .98rem; font-family: var(--sans);
  transition: all .25s ease; cursor: pointer; border: 1.5px solid transparent;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(217, 119, 87, .35); }
.btn-outline { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-outline:hover { background: var(--ink); color: var(--bg); transform: translateY(-2px); }
.btn-small { padding: 9px 20px; font-size: .9rem; }

/* ===== Hero ===== */
.hero { position: relative; padding: 170px 0 90px; overflow: hidden; text-align: center; }
.hero-glow {
  position: absolute; top: -180px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 600px; pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(217, 119, 87, .13), transparent 65%);
  animation: glowPulse 7s ease-in-out infinite alternate;
}
@keyframes glowPulse { from { opacity: .8; } to { opacity: 1.15; } }
.hero-blob {
  position: absolute; border-radius: 50%; pointer-events: none; filter: blur(70px); opacity: .5;
}
.hero-blob-1 {
  width: 340px; height: 340px; left: 6%; top: 22%;
  background: rgba(217, 119, 87, .16); animation: blobDrift 11s ease-in-out infinite alternate;
}
.hero-blob-2 {
  width: 280px; height: 280px; right: 7%; top: 40%;
  background: rgba(240, 238, 230, .9); animation: blobDrift 13s ease-in-out infinite alternate-reverse;
}
@keyframes blobDrift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(30px, -24px) scale(1.12); }
}
/* Accent-onderstreping die zichzelf tekent */
.accent-underline { position: relative; white-space: nowrap; }
.accent-underline::after {
  content: ""; position: absolute; left: 0; bottom: .04em; height: .09em; width: 100%;
  background: var(--accent); opacity: .35; border-radius: 2px;
  transform: scaleX(0); transform-origin: left;
  animation: drawLine .8s cubic-bezier(.22, 1, .36, 1) 1.9s forwards;
}
@keyframes drawLine { to { transform: scaleX(1); } }
.hero-inner { position: relative; }
.badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--white); border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 18px; font-size: .88rem; font-weight: 500; color: var(--ink-soft);
  box-shadow: var(--shadow); margin-bottom: 28px;
}
.dot { position: relative; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.dot::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: var(--accent); animation: ping 1.8s ease-out infinite;
}
@keyframes ping { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(2.8); opacity: 0; } }
.hero-sub { max-width: 640px; margin: 24px auto 0; color: var(--ink-soft); font-size: 1.15rem; }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }
.hero-note { margin-top: 16px; font-size: .87rem; color: var(--ink-soft); }
.tech-strip {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 12px;
  margin-top: 56px; font-size: .9rem; color: var(--ink-soft);
}
.tech-strip span { margin-right: 6px; }
.tech-strip strong { color: var(--ink); font-weight: 600; }
.tech-strip i { color: var(--line); font-style: normal; }

/* ===== Stats ===== */
.stats { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { text-align: center; padding: 34px 12px; }
.stat + .stat { border-left: 1px solid var(--line); }
.stat-num { display: block; font-family: var(--serif); font-size: 2.4rem; font-weight: 600; color: var(--accent); }
.stat-label { font-size: .9rem; color: var(--ink-soft); }

/* ===== Sections ===== */
.section { padding: 100px 0; }
.section-alt { background: var(--bg-alt); }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 60px; }
.section-head p { color: var(--ink-soft); margin-top: 16px; font-size: 1.08rem; }
.kicker {
  display: inline-block; font-size: .8rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 14px;
}
.kicker-light { color: var(--accent); }

/* ===== Dienst-kaarten ===== */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; display: flex; flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }
.card-icon {
  width: 46px; height: 46px; border-radius: 12px; background: var(--accent-soft);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.card-icon svg { width: 23px; height: 23px; fill: none; stroke: var(--accent); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.card p { color: var(--ink-soft); font-size: .95rem; }
.card ul { list-style: none; margin: 16px 0 20px; }
.card ul li { position: relative; padding-left: 24px; font-size: .92rem; margin-bottom: 8px; color: var(--ink); }
.card ul li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.card-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 8px; border-top: 1px solid var(--line); padding-top: 16px; }
.price { font-size: .88rem; color: var(--ink-soft); }
.price b { color: var(--ink); font-weight: 600; }
.card-link { font-size: .92rem; font-weight: 600; white-space: nowrap; }
.card-link:hover { color: var(--accent-dark); }
.card-link .arrow { display: inline-block; transition: transform .25s ease; }
.card-link:hover .arrow { transform: translateX(4px); }
.card-icon { transition: transform .3s ease; }
.card:hover .card-icon { transform: scale(1.08) rotate(-3deg); }

/* ===== Werkwijze ===== */
.steps { display: flex; align-items: stretch; justify-content: center; gap: 18px; }
.step {
  flex: 1; max-width: 300px; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 32px 26px; text-align: center;
  transition: transform .3s ease, box-shadow .3s ease;
}
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%; background: var(--accent); color: #fff;
  font-family: var(--serif); font-size: 1.3rem; font-weight: 600; margin-bottom: 18px;
}
.step h3 { font-size: 1.2rem; margin-bottom: 10px; }
.step p { color: var(--ink-soft); font-size: .93rem; }
.step-arrow { align-self: center; font-size: 1.6rem; color: var(--accent); }
.guarantee { text-align: center; margin-top: 44px; font-size: 1.1rem; }
.guarantee b { color: var(--accent); }

/* ===== Portfolio ===== */
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.project {
  display: block; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; color: var(--ink);
  transition: transform .3s ease, box-shadow .3s ease;
}
.project:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }
.project-thumb { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.thumb-body { transition: transform .5s cubic-bezier(.22, 1, .36, 1); }
.project:hover .thumb-body { transform: scale(1.06); }
.thumb-bar {
  display: flex; gap: 5px; padding: 9px 12px;
  background: rgba(255, 255, 255, .12); position: relative; z-index: 2;
}
.thumb-bar i { width: 8px; height: 8px; border-radius: 50%; background: rgba(255, 255, 255, .45); }
.thumb-body {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px; padding: 20px; text-align: center;
}
.thumb-logo { font-family: var(--serif); font-size: 1.35rem; font-weight: 600; }
.thumb-line { font-size: .78rem; opacity: .8; }
.thumb-mqm { background: linear-gradient(150deg, #0e2b2b, #143d3a); color: #e8e4d8; }
.thumb-ecp { background: linear-gradient(150deg, #101418, #1d2733); color: #e9edf2; }
.thumb-smit { background: linear-gradient(150deg, #221a10, #46351c); color: #ecd9a8; }
.thumb-rijboost { background: linear-gradient(150deg, #14213d, #1d3461); color: #ffe6c7; }
.thumb-dashboard { background: linear-gradient(150deg, #efece3, #e4e0d2); }
.thumb-apps { background: linear-gradient(150deg, #2b2823, #45403a); }
.thumb-dashboard .thumb-bar { background: rgba(61, 57, 41, .08); }
.thumb-dashboard .thumb-bar i { background: rgba(61, 57, 41, .25); }
/* mini dashboard-ui */
.thumb-ui { flex-direction: row; gap: 10px; padding: 26px; }
.ui-side { width: 22%; height: 100%; border-radius: 8px; background: var(--white); box-shadow: var(--shadow); }
.ui-main { flex: 1; height: 100%; display: flex; flex-direction: column; gap: 8px; }
.ui-main b { height: 38%; border-radius: 8px; background: var(--accent); opacity: .85; }
.ui-main u { flex: 1; border-radius: 8px; background: var(--white); box-shadow: var(--shadow); }
/* telefoons */
.thumb-phones { flex-direction: row; gap: 16px; }
.phone { width: 64px; height: 116px; border-radius: 14px; background: #FAF9F5; border: 3px solid #6E6A5E; transform: rotate(-6deg); }
.phone-2 { background: var(--accent); border-color: #45403a; transform: rotate(5deg) translateY(10px); }
.project-info { padding: 22px 24px 26px; }
.project-tags { display: flex; gap: 8px; margin-bottom: 12px; }
.project-tags span {
  font-size: .72rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  background: var(--accent-soft); color: var(--accent-dark); border-radius: 999px; padding: 4px 11px;
}
.project-info h3 { font-size: 1.25rem; margin-bottom: 8px; }
.project-info p { color: var(--ink-soft); font-size: .93rem; margin-bottom: 14px; }
.project-url { font-size: .88rem; font-weight: 600; color: var(--accent); }

/* ===== Training ===== */
.training-inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: 60px; align-items: center; }
.training-text h2 { margin-bottom: 16px; }
.training-text > p { color: var(--ink-soft); margin-bottom: 22px; }
.check-list { list-style: none; margin-bottom: 30px; }
.check-list li { position: relative; padding-left: 30px; margin-bottom: 12px; }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  width: 20px; height: 20px; border-radius: 50%; background: var(--accent);
  color: #fff; font-size: .7rem; display: flex; align-items: center; justify-content: center; margin-top: 3px;
}
.training-card {
  background: var(--dark); color: var(--bg); border-radius: var(--radius); padding: 40px 36px;
}
.training-card blockquote { font-family: var(--serif); font-size: 1.35rem; font-style: italic; line-height: 1.45; }
.training-card-note { display: block; margin-top: 20px; font-size: .85rem; color: rgba(250, 249, 245, .65); }

/* ===== Over ===== */
.over-inner { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; align-items: center; }
.photo-frame {
  aspect-ratio: 4/5; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-lift); background: var(--bg-alt);
  position: relative;
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.photo-placeholder::after {
  content: "Foto volgt"; position: absolute; inset: 0; display: flex; align-items: center;
  justify-content: center; color: var(--ink-soft); font-family: var(--serif); font-size: 1.2rem;
  background: repeating-linear-gradient(45deg, var(--bg-alt), var(--bg-alt) 12px, #eae7dd 12px, #eae7dd 24px);
}
.over-text h2 { margin-bottom: 18px; }
.over-text p { color: var(--ink-soft); margin-bottom: 16px; }
.over-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 30px; }
.over-facts div { border-left: 3px solid var(--accent); padding-left: 14px; }
.over-facts b { display: block; font-size: 1rem; }
.over-facts span { font-size: .84rem; color: var(--ink-soft); }

/* ===== Waarom (donker blok) ===== */
.section-dark { background: var(--dark); color: var(--bg); }
.section-dark h2 { color: var(--bg); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.why {
  background: var(--dark-soft); border: 1px solid rgba(250, 249, 245, .08);
  border-radius: var(--radius); padding: 28px 26px; transition: transform .3s ease;
}
.why:hover { transform: translateY(-4px); }
.why h3 { font-size: 1.15rem; margin-bottom: 10px; color: var(--accent); }
.why p { font-size: .93rem; color: rgba(250, 249, 245, .75); }

/* ===== FAQ ===== */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  margin-bottom: 12px; overflow: hidden; transition: box-shadow .3s ease;
}
.faq-item:hover { box-shadow: var(--shadow-lift); }
.faq-item summary {
  cursor: pointer; padding: 20px 24px; font-weight: 600; font-size: 1.02rem;
  list-style: none; position: relative; padding-right: 52px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%);
  width: 26px; height: 26px; border-radius: 50%; background: var(--accent-soft);
  color: var(--accent-dark); display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 500; transition: transform .25s ease;
}
.faq-item[open] summary::after { content: "–"; transform: translateY(-50%) rotate(180deg); }
.faq-item p { padding: 0 24px 22px; color: var(--ink-soft); font-size: .95rem; }
.faq-item p b { color: var(--ink); }
.faq-item[open] p { animation: faqIn .35s ease; }
@keyframes faqIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }

/* ===== CTA ===== */
.cta-section { text-align: center; }
.cta-inner h2 { margin-bottom: 16px; }
.cta-inner p { color: var(--ink-soft); max-width: 560px; margin: 0 auto; }
.cta-inner .hero-cta { margin-top: 32px; }

/* ===== Footer ===== */
.footer { background: var(--dark); color: rgba(250, 249, 245, .75); padding: 70px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 46px; border-bottom: 1px solid rgba(250, 249, 245, .12); }
.footer-brand p { font-size: .92rem; margin-top: 14px; max-width: 280px; }
.footer h4 { font-family: var(--sans); font-size: .85rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--bg); margin-bottom: 16px; }
.footer a:not(.logo) { display: block; color: rgba(250, 249, 245, .75); font-size: .93rem; margin-bottom: 9px; }
.footer a:not(.logo):hover { color: var(--accent); }
.footer-plain { display: block; font-size: .93rem; margin-bottom: 9px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 26px; font-size: .82rem; color: rgba(250, 249, 245, .5); }

/* ===== Contactpagina ===== */
.contact-hero { padding: 160px 0 40px; text-align: center; }
.contact-hero p { color: var(--ink-soft); max-width: 520px; margin: 16px auto 0; }
.contact-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 40px; padding-bottom: 100px; }
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .88rem; font-weight: 600; margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 10px;
  font-family: var(--sans); font-size: .95rem; color: var(--ink); background: var(--bg);
  transition: border-color .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); }
.field textarea { resize: vertical; min-height: 120px; }
.form-card .btn { width: 100%; text-align: center; margin-top: 6px; }
.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 26px; transition: transform .3s ease, box-shadow .3s ease;
}
.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.contact-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.contact-card p { font-size: .9rem; color: var(--ink-soft); margin-bottom: 8px; }
.contact-card a { font-weight: 600; font-size: .95rem; }
.success-box { max-width: 560px; margin: 0 auto; text-align: center; padding: 60px 30px 120px; }

/* ===== Reveal-animaties ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .08s; }
.d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; }
.d4 { transition-delay: .32s; }
.d5 { transition-delay: .4s; }
.step-num { transition: transform .3s ease, box-shadow .3s ease; }
.step:hover .step-num { transform: scale(1.1); box-shadow: 0 0 0 8px var(--accent-soft); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .dot::after, .hero-glow, .hero-blob, .splash-logo, .splash-dot, .faq-item[open] p { animation: none; }
  .splash { animation-delay: 0s; animation-duration: .01s; }
  .splash-logo { opacity: 1; transform: none; }
  .accent-underline::after { transform: scaleX(1); animation: none; }
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .cards-grid, .portfolio-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
  .training-inner, .over-inner, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps { flex-direction: column; align-items: center; }
  .step { max-width: 420px; width: 100%; }
  .step-arrow { transform: rotate(90deg); }
  .over-photo { max-width: 340px; }
}
@media (max-width: 700px) {
  .cards-grid, .portfolio-grid, .why-grid, .form-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat + .stat { border-left: none; }
  .stat:nth-child(even) { border-left: 1px solid var(--line); }
  .stat:nth-child(n+3) { border-top: 1px solid var(--line); }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; background: var(--bg); border-bottom: 1px solid var(--line);
    padding: 20px 24px; gap: 18px; align-items: flex-start;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .nav { background: rgba(250, 249, 245, .95); }
  .hero { padding-top: 130px; }
}
