/* ============================================================================
   TasHosting — Design System
   Bespoke dark premium theme. Build gerektirmez.
   ========================================================================== */

/* ---- Tokens ------------------------------------------------------------- */
:root {
  --bg:            #060910;
  --bg-elev:       #0a0f1c;
  --surface:       #0e1526;
  --surface-2:     #121b30;
  --surface-3:     #16203a;
  --border:        rgba(148,163,184,.12);
  --border-strong: rgba(148,163,184,.24);

  --text:  #eef2fb;
  --muted: #9fadc4;
  --dim:   #67768f;

  --brand:    #2f6bff;
  --brand-2:  #5b9bff;
  --brand-ink:#eaf1ff;
  --cyan:     #35d6ee;
  --violet:   #8b5cf6;
  --green:    #35d39a;
  --amber:    #f5a623;

  --grad-brand: linear-gradient(135deg, #2f6bff 0%, #4f9dff 45%, #35d6ee 100%);
  --grad-text:  linear-gradient(100deg, #6aa6ff 0%, #35d6ee 60%, #8b7bff 100%);

  --glow-brand: 0 0 0 1px rgba(47,107,255,.35), 0 18px 45px -12px rgba(47,107,255,.55);
  --shadow-sm:  0 2px 8px rgba(0,0,0,.25);
  --shadow:     0 12px 40px -14px rgba(0,0,0,.6);
  --shadow-lg:  0 40px 90px -30px rgba(0,0,0,.75);

  --r-xs: 9px;
  --r-sm: 12px;
  --r:    16px;
  --r-lg: 22px;
  --r-xl: 30px;

  --container: 1180px;
  --nav-h: 74px;

  --ease: cubic-bezier(.22,.61,.36,1);
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: "Space Grotesk", "Inter", sans-serif;
}

/* ---- Reset -------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }
::selection { background: rgba(47,107,255,.35); color: #fff; }

/* Scrollbar */
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #1d2842; border-radius: 20px; border: 3px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: #2a3a5e; }

/* ---- Layout helpers ----------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}
.section { padding: clamp(64px, 9vw, 120px) 0; position: relative; }
.section--tint { background:
  linear-gradient(180deg, transparent, rgba(11,16,28,.6) 12%, rgba(11,16,28,.6) 88%, transparent); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-size: .8rem; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brand-2);
}
.eyebrow::before { content: ""; width: 22px; height: 2px; border-radius: 2px; background: var(--grad-brand); }

.section-head { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.section-head .eyebrow { justify-content: center; margin-bottom: 18px; }
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 4.4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -.02em;
}
.section-head p { margin-top: 18px; color: var(--muted); font-size: 1.06rem; }

.text-grad {
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ---- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 24px; border-radius: 999px;
  font-weight: 600; font-size: .96rem; letter-spacing: -.01em;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, border-color .25s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--grad-brand); color: #fff; box-shadow: var(--glow-brand); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 0 1px rgba(47,107,255,.5), 0 26px 60px -14px rgba(47,107,255,.7); }
.btn-primary:hover svg { transform: translateX(3px); }
.btn-primary svg { transition: transform .25s var(--ease); }
.btn-ghost { background: rgba(255,255,255,.04); color: var(--text); border: 1px solid var(--border-strong); }
.btn-ghost:hover { background: rgba(255,255,255,.08); transform: translateY(-2px); border-color: rgba(148,163,184,.4); }
.btn-sm { padding: 10px 18px; font-size: .9rem; }
.btn-block { width: 100%; justify-content: center; }

/* ---- Navigation --------------------------------------------------------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(6,9,16,.72);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom-color: var(--border);
}
.nav .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 700; font-size: 1.22rem; letter-spacing: -.02em; }
.brand-mark {
  width: 38px; height: 38px; border-radius: 11px;
  display: grid; place-items: center;
  background: var(--grad-brand);
  box-shadow: 0 8px 22px -8px rgba(47,107,255,.8);
}
.brand-mark svg { width: 21px; height: 21px; color: #fff; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 9px 15px; border-radius: 10px; color: var(--muted);
  font-size: .95rem; font-weight: 500; position: relative;
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,.05); }
.nav-links a.is-active { color: var(--text); }
.nav-links a.is-active::after {
  content: ""; position: absolute; left: 15px; right: 15px; bottom: 3px; height: 2px;
  border-radius: 2px; background: var(--grad-brand);
}

.nav-right { display: flex; align-items: center; gap: 14px; }
.lang-toggle { display: flex; align-items: center; gap: 2px; padding: 3px; border-radius: 999px; border: 1px solid var(--border); background: rgba(255,255,255,.03); }
.lang-toggle a { padding: 4px 10px; border-radius: 999px; font-size: .82rem; font-weight: 600; color: var(--dim); }
.lang-toggle a.is-active { background: var(--surface-3); color: var(--text); }

.nav-toggle { display: none; width: 42px; height: 42px; border-radius: 11px; border: 1px solid var(--border); background: rgba(255,255,255,.03); place-items: center; }
.nav-toggle svg { width: 22px; height: 22px; }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: var(--nav-h) 0 auto 0; z-index: 99;
  background: rgba(8,12,22,.97); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 18px 24px 26px;
  transform: translateY(-12px); opacity: 0; pointer-events: none;
  transition: opacity .25s, transform .25s;
}
.mobile-menu.open { opacity: 1; transform: none; pointer-events: auto; }
.mobile-menu a { display: block; padding: 13px 6px; font-size: 1.05rem; font-weight: 500; color: var(--muted); border-bottom: 1px solid var(--border); }
.mobile-menu a.is-active { color: var(--text); }
.mobile-menu .btn { margin-top: 18px; }

/* ---- Hero --------------------------------------------------------------- */
.hero { position: relative; padding: calc(var(--nav-h) + 70px) 0 90px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-bg::before {
  content: ""; position: absolute; inset: -20% -10% 0;
  background:
    radial-gradient(55% 55% at 12% 8%, rgba(47,107,255,.30), transparent 62%),
    radial-gradient(45% 50% at 92% 12%, rgba(53,214,238,.16), transparent 60%),
    radial-gradient(40% 55% at 78% 96%, rgba(139,92,246,.16), transparent 62%);
  filter: blur(6px);
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(148,163,184,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148,163,184,.06) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(120% 90% at 50% 0%, #000 30%, transparent 78%);
  -webkit-mask-image: radial-gradient(120% 90% at 50% 0%, #000 30%, transparent 78%);
}
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 15px 7px 11px; border-radius: 999px;
  background: rgba(47,107,255,.1); border: 1px solid rgba(47,107,255,.28);
  font-size: .84rem; font-weight: 600; color: #bcd2ff; margin-bottom: 26px;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 4px rgba(53,214,238,.18); animation: pulse 2.4s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 4.4rem);
  line-height: 1.02; letter-spacing: -.03em;
}
.hero h1 .accent {
  background: var(--grad-text); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto; animation: shine 6s linear infinite;
}
@keyframes shine { to { background-position: 200% center; } }
.hero p.lead { margin-top: 24px; font-size: 1.16rem; color: var(--muted); max-width: 540px; }
.hero-actions { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 14px; }

.hero-trust { margin-top: 44px; padding-top: 28px; border-top: 1px solid var(--border); display: flex; flex-wrap: wrap; gap: 22px 30px; }
.hero-trust span { display: inline-flex; align-items: center; gap: 9px; font-size: .92rem; color: var(--muted); font-weight: 500; }
.hero-trust svg { width: 19px; height: 19px; color: var(--brand-2); }

/* Hero visual (mock dashboard) */
.hero-visual { position: relative; }
.mock {
  position: relative; border-radius: var(--r-lg);
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-lg);
  padding: 18px; transform: perspective(1600px) rotateY(-11deg) rotateX(4deg);
  transition: transform .5s var(--ease);
}
.hero-visual:hover .mock { transform: perspective(1600px) rotateY(-5deg) rotateX(2deg); }
.mock::after { content: ""; position: absolute; inset: 0; border-radius: inherit; box-shadow: inset 0 1px 0 rgba(255,255,255,.06); pointer-events: none; }
.mock-bar { display: flex; align-items: center; gap: 7px; padding: 4px 4px 14px; }
.mock-bar i { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
.mock-bar i:nth-child(1) { background: #ff5f57; }
.mock-bar i:nth-child(2) { background: #febc2e; }
.mock-bar i:nth-child(3) { background: #28c840; }
.mock-body { border-radius: var(--r); background: var(--bg-elev); border: 1px solid var(--border); padding: 16px; }
.mock-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 14px; }
.mock-stat { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-sm); padding: 12px; }
.mock-stat b { font-family: var(--font-display); font-size: 1.2rem; display: block; }
.mock-stat span { font-size: .7rem; color: var(--dim); }
.mock-chart { height: 118px; border-radius: var(--r-sm); background:
  linear-gradient(180deg, rgba(47,107,255,.14), transparent),
  var(--surface); border: 1px solid var(--border); position: relative; overflow: hidden; display: flex; align-items: flex-end; gap: 7px; padding: 12px; }
.mock-chart b { flex: 1; border-radius: 4px 4px 0 0; background: var(--grad-brand); opacity: .85; }
.status-pill {
  position: absolute; left: -18px; bottom: 26px; z-index: 2;
  display: flex; align-items: center; gap: 11px;
  background: #fff; color: #0b1020; border-radius: 14px; padding: 12px 16px;
  box-shadow: var(--shadow-lg);
}
.status-pill .ic { width: 34px; height: 34px; border-radius: 9px; background: rgba(53,211,154,.16); color: var(--green); display: grid; place-items: center; }
.status-pill .ic svg { width: 19px; height: 19px; }
.status-pill small { display: block; font-size: .68rem; color: #64748b; text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.status-pill b { font-family: var(--font-display); font-size: .96rem; }

/* ---- Stats strip -------------------------------------------------------- */
.stats { border-block: 1px solid var(--border); background: rgba(11,16,28,.5); }
.stats .container { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; padding-block: 40px; }
.stat { text-align: center; }
.stat b { font-family: var(--font-display); font-size: clamp(1.7rem,3vw,2.3rem); font-weight: 700; display: block; letter-spacing: -.02em; }
.stat span { color: var(--dim); font-size: .9rem; }

/* ---- Service cards ------------------------------------------------------ */
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.svc-card {
  position: relative; padding: 30px; border-radius: var(--r-lg);
  background: linear-gradient(180deg, var(--surface), rgba(14,21,38,.6));
  border: 1px solid var(--border); overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.svc-card::before { content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: linear-gradient(140deg, rgba(47,107,255,.5), transparent 40%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity .3s; }
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--border-strong); }
.svc-card:hover::before { opacity: 1; }
.svc-ic {
  width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center;
  background: rgba(47,107,255,.12); color: var(--brand-2); margin-bottom: 20px;
  border: 1px solid rgba(47,107,255,.2);
}
.svc-ic svg { width: 26px; height: 26px; }
.svc-card h3 { font-family: var(--font-display); font-size: 1.28rem; font-weight: 600; letter-spacing: -.01em; }
.svc-card p { margin-top: 11px; color: var(--muted); font-size: .97rem; }
.svc-feats { margin-top: 20px; display: grid; gap: 9px; }
.svc-feats li { display: flex; align-items: center; gap: 10px; font-size: .92rem; color: var(--muted); }
.svc-feats svg { width: 17px; height: 17px; color: var(--green); flex: none; }

/* icon color variants */
.svc-card:nth-child(2) .svc-ic { background: rgba(139,92,246,.12); color: #a98bff; border-color: rgba(139,92,246,.22); }
.svc-card:nth-child(3) .svc-ic { background: rgba(236,72,153,.12); color: #f472b6; border-color: rgba(236,72,153,.22); }
.svc-card:nth-child(4) .svc-ic { background: rgba(53,211,154,.12); color: var(--green); border-color: rgba(53,211,154,.22); }
.svc-card:nth-child(5) .svc-ic { background: rgba(53,214,238,.12); color: var(--cyan); border-color: rgba(53,214,238,.22); }
.svc-card:nth-child(6) .svc-ic { background: rgba(245,166,35,.12); color: var(--amber); border-color: rgba(245,166,35,.22); }

/* ---- Portfolio ---------------------------------------------------------- */
.filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px; }
.filter {
  padding: 9px 18px; border-radius: 999px; font-size: .9rem; font-weight: 500;
  color: var(--muted); border: 1px solid var(--border); background: rgba(255,255,255,.02);
  transition: all .2s;
}
.filter:hover { color: var(--text); border-color: var(--border-strong); }
.filter.is-active { color: #fff; background: var(--grad-brand); border-color: transparent; box-shadow: 0 10px 24px -12px rgba(47,107,255,.8); }

.work-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.work-card {
  border-radius: var(--r-lg); overflow: hidden; background: var(--surface);
  border: 1px solid var(--border); display: flex; flex-direction: column;
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.work-card:hover { transform: translateY(-6px); border-color: var(--border-strong); box-shadow: var(--shadow); }
.work-media { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.work-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.work-card:hover .work-media img { transform: scale(1.06); }
.work-tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  padding: 6px 12px; border-radius: 999px; font-size: .76rem; font-weight: 600;
  background: rgba(6,9,16,.72); backdrop-filter: blur(6px); color: #cfe0ff;
  border: 1px solid rgba(255,255,255,.14); display: inline-flex; align-items: center; gap: 6px;
}
.work-tag svg { width: 13px; height: 13px; }
.work-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.work-body h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; letter-spacing: -.01em; }
.work-body p { margin-top: 10px; color: var(--muted); font-size: .95rem; flex: 1; }
.work-link { margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--border);
  display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: .92rem; color: var(--brand-2); }
.work-link svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.work-card:hover .work-link svg { transform: translate(2px,-2px); }

/* Placeholder covers (gerçek görsel yoksa) */
.ph { position: absolute; inset: 0; display: grid; place-items: center; overflow: hidden; }
.ph::before { content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 22px 22px; opacity: .5; }
.ph span { position: relative; font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; color: rgba(255,255,255,.92); letter-spacing: -.01em; text-align: center; padding: 0 18px; text-shadow: 0 2px 12px rgba(0,0,0,.4); }
.ph[data-cat="website"]     { background: linear-gradient(135deg,#1e3a8a,#2f6bff); }
.ph[data-cat="webshop"]     { background: linear-gradient(135deg,#5b21b6,#8b5cf6); }
.ph[data-cat="app"]         { background: linear-gradient(135deg,#0e7490,#35d6ee); }
.ph[data-cat="reservering"] { background: linear-gradient(135deg,#9a3412,#f5a623); }
.ph[data-cat="corporate"]   { background: linear-gradient(135deg,#155e52,#35d39a); }
.ph[data-cat=""]            { background: linear-gradient(135deg,#1e293b,#334155); }

/* ---- About -------------------------------------------------------------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-media { position: relative; border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 4/3; border: 1px solid var(--border-strong); box-shadow: var(--shadow); }
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.about-media .ph span { font-size: 1.05rem; }
.about-text h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.8rem,3.6vw,2.7rem); line-height: 1.1; letter-spacing: -.02em; margin-top: 16px; }
.about-text p { margin-top: 18px; color: var(--muted); font-size: 1.03rem; }
.about-stats { margin-top: 34px; padding-top: 30px; border-top: 1px solid var(--border); display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.about-stats .as { display: flex; flex-direction: column; gap: 4px; }
.about-stats .as .ic { width: 34px; height: 34px; color: var(--brand-2); }
.about-stats .as b { font-family: var(--font-display); font-size: 1.55rem; font-weight: 700; }
.about-stats .as span { color: var(--dim); font-size: .86rem; }

/* ---- CTA band ----------------------------------------------------------- */
.cta-band { position: relative; overflow: hidden; border-radius: var(--r-xl);
  background: linear-gradient(135deg, #0f2a6b, #123a86 45%, #0c5568);
  padding: clamp(40px,6vw,68px); text-align: center; border: 1px solid rgba(91,155,255,.28); }
.cta-band::before { content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 120% at 50% -20%, rgba(53,214,238,.3), transparent 60%); }
.cta-band > * { position: relative; }
.cta-band h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.8rem,4vw,2.8rem); letter-spacing: -.02em; }
.cta-band p { margin: 16px auto 30px; max-width: 560px; color: #cfe0ff; font-size: 1.08rem; }

/* ---- Footer ------------------------------------------------------------- */
.footer { border-top: 1px solid var(--border); background: var(--bg-elev); padding: 66px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; }
.footer .brand { margin-bottom: 18px; }
.footer-tagline { color: var(--muted); font-size: .96rem; max-width: 340px; }
.footer h4 { font-family: var(--font-display); font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; color: var(--dim); margin-bottom: 18px; }
.footer-col a, .footer-col p { display: block; color: var(--muted); font-size: .96rem; padding: 6px 0; transition: color .2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { margin-top: 50px; padding-top: 26px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; color: var(--dim); font-size: .88rem; }

/* ---- Detail page -------------------------------------------------------- */
.detail-hero { padding: calc(var(--nav-h) + 56px) 0 20px; position: relative; }
.crumbs { display: flex; align-items: center; gap: 8px; font-size: .9rem; color: var(--dim); margin-bottom: 22px; }
.crumbs a:hover { color: var(--text); }
.crumbs svg { width: 15px; height: 15px; }
.detail-head { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: end; }
.detail-head h1 { font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem,4.5vw,3.2rem); line-height: 1.05; letter-spacing: -.02em; margin: 14px 0 0; }
.detail-meta { display: grid; gap: 14px; }
.detail-meta .row { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.detail-meta .row span { color: var(--dim); font-size: .9rem; }
.detail-meta .row b { font-weight: 600; font-size: .95rem; }
.detail-cover { margin-top: 44px; border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 21/9; position: relative; border: 1px solid var(--border-strong); box-shadow: var(--shadow); }
.detail-cover img { width: 100%; height: 100%; object-fit: cover; }
.detail-cover .ph span { font-size: 2rem; }
.detail-body { display: grid; grid-template-columns: 1.5fr .8fr; gap: 48px; margin-top: 56px; }
.detail-body .prose p { color: var(--muted); font-size: 1.06rem; margin-bottom: 18px; }
.detail-body .prose h3 { font-family: var(--font-display); font-size: 1.3rem; margin: 8px 0 14px; }
.aside-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 26px; position: sticky; top: calc(var(--nav-h) + 20px); }
.aside-card h4 { font-family: var(--font-display); font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; color: var(--dim); margin-bottom: 16px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.chip { padding: 6px 12px; border-radius: 999px; font-size: .82rem; background: rgba(47,107,255,.1); border: 1px solid rgba(47,107,255,.24); color: #bcd2ff; }

.gallery { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; margin-top: 48px; }
.gallery figure { border-radius: var(--r); overflow: hidden; border: 1px solid var(--border); aspect-ratio: 16/10; position: relative; }
.gallery img { width: 100%; height: 100%; object-fit: cover; }

/* ---- Simple page hero (diensten/over-ons) ------------------------------- */
.page-hero { padding: calc(var(--nav-h) + 64px) 0 10px; text-align: center; position: relative; overflow: hidden; }
.page-hero .hero-bg { z-index: 0; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.2rem,5vw,3.6rem); letter-spacing: -.02em; line-height: 1.05; }
.page-hero p { margin: 18px auto 0; max-width: 620px; color: var(--muted); font-size: 1.1rem; }

/* ---- Reveal animation --------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; }
  html { scroll-behavior: auto; }
}

/* ---- Responsive --------------------------------------------------------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 460px; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .detail-head, .detail-body { grid-template-columns: 1fr; gap: 26px; }
  .aside-card { position: static; }
  .svc-grid, .work-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-col:first-child { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  .nav-links, .nav-right .lang-toggle, .nav-right .btn { display: none; }
  .nav-toggle { display: grid; }
  .stats .container { grid-template-columns: repeat(2,1fr); gap: 30px 20px; }
  .svc-grid, .work-grid, .gallery { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero .mock { transform: none; }
  .status-pill { left: 12px; }
  .about-stats { grid-template-columns: repeat(3,1fr); }
}
