/* ===========================================================
   Woodrock Solutions — light, modern theme (indigo & slate)
   Plus Jakarta Sans (display + body), self-hosted
   =========================================================== */

@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('assets/fonts/plus-jakarta-sans-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: italic;
  font-weight: 200 800;
  font-display: swap;
  src: url('assets/fonts/plus-jakarta-sans-latin-italic.woff2') format('woff2');
}

:root {
  --bg:         #F7F8FC;   /* cool white */
  --surface:    #FFFFFF;
  --surface-2:  #FBFBFE;   /* cool white-2 */
  --surface-3:  #F1F2F9;   /* sunk panel */

  --text:       #14152A;   /* ink */
  --text-dim:   #4A4E63;   /* slate body */
  --text-mute:  #8A8FA3;   /* muted slate */

  --accent:     #4F46E5;   /* indigo */
  --accent-dk:  #4338CA;
  --accent-soft:#E3E3FA;   /* indigo tint */
  --accent-tint:#EEEEFC;

  --sage:       #64748B;   /* slate (secondary) */
  --sage-soft:  #EAEDF2;

  --live:       #16A34A;   /* "live" green */

  --border:     rgba(20, 21, 42, 0.10);
  --border-2:   rgba(20, 21, 42, 0.15);

  --shadow-sm:  0 1px 2px rgba(20, 21, 60, 0.05), 0 2px 6px rgba(20, 21, 60, 0.05);
  --shadow:     0 12px 32px -16px rgba(30, 30, 80, 0.18);
  --shadow-lg:  0 28px 60px -24px rgba(30, 30, 80, 0.22);

  --radius:     20px;
  --radius-sm:  14px;
  --maxw:       1160px;
  --ease:       cubic-bezier(0.22, 1, 0.36, 1);

  --font-sans:    'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-display: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-serif:   var(--font-display); /* legacy alias — now the display sans */
}

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

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.02em; line-height: 1.12; }
a { color: inherit; text-decoration: none; }

/* ---------- Accessibility ---------- */
.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 100;
  background: var(--accent); color: #fff; font-weight: 600;
  padding: 10px 16px; border-radius: 10px;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 16px; outline: 2px solid var(--text); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 6px; }

/* ---------- Ambient background ---------- */
.bg-wash, .bg-blob, .bg-grain { position: fixed; inset: 0; pointer-events: none; z-index: 0; }

.bg-wash {
  background:
    radial-gradient(70% 55% at 78% 0%, rgba(79,70,229,0.08), transparent 60%),
    radial-gradient(60% 50% at 8% 100%, rgba(100,116,139,0.08), transparent 60%),
    var(--bg);
}
.bg-blob { border-radius: 50%; filter: blur(80px); opacity: 0.55; }
.bg-blob--indigo {
  width: 480px; height: 480px; top: -130px; right: -90px;
  background: radial-gradient(circle, rgba(99,102,241,0.40), transparent 70%);
  animation: drift1 24s var(--ease) infinite alternate;
}
.bg-blob--slate {
  width: 440px; height: 440px; bottom: -150px; left: -120px;
  background: radial-gradient(circle, rgba(100,116,139,0.34), transparent 70%);
  animation: drift2 28s var(--ease) infinite alternate;
}
@keyframes drift1 { to { transform: translate(-60px, 50px) scale(1.1); } }
@keyframes drift2 { to { transform: translate(50px, -40px) scale(1.08); } }

.bg-grain {
  opacity: 0.04; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Layout ---------- */
main { position: relative; z-index: 1; }
.section { position: relative; z-index: 1; max-width: var(--maxw); margin: 0 auto; padding: 110px 28px; }
.section__head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section__title { font-size: clamp(2rem, 4.2vw, 2.9rem); color: var(--text); }
.section__sub { color: var(--text-dim); margin-top: 14px; font-size: 1.08rem; }

/* ---------- Glass-free light card ---------- */
.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-sans); font-weight: 600; font-size: 0.96rem;
  padding: 13px 22px; border-radius: 12px;
  cursor: pointer; border: 1px solid transparent; line-height: 1; white-space: nowrap;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, border-color .25s, color .25s;
}
.btn svg { transition: transform .25s var(--ease); }
.btn:hover { transform: translateY(-2px); }
.btn--sm { padding: 10px 16px; font-size: 0.88rem; }
.btn--full { width: 100%; justify-content: center; }

.btn--primary {
  color: #fff;
  background: var(--accent);
  box-shadow: 0 8px 18px -8px rgba(194,105,60,0.55);
}
.btn--primary:hover { background: var(--accent-dk); box-shadow: 0 12px 24px -8px rgba(194,105,60,0.6); }
.btn--primary:hover svg { transform: translateX(3px); }

.btn--ghost {
  color: var(--text);
  background: var(--surface);
  border-color: var(--border-2);
  box-shadow: var(--shadow-sm);
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent-dk); }

/* ---------- Navigation ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 24px;
  max-width: var(--maxw); margin: 0 auto; padding: 16px 28px;
}
.nav::before {
  content: ""; position: fixed; inset: 0 0 auto 0; height: 76px; z-index: -1;
  background: rgba(251,248,243,0.82);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  opacity: 0; transition: opacity .3s;
}
.nav.is-scrolled::before { opacity: 1; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark { filter: drop-shadow(0 3px 6px rgba(70,45,22,0.16)); transition: transform .4s var(--ease); }
.brand:hover .brand__mark { transform: rotate(-5deg) scale(1.05); }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; color: var(--text); letter-spacing: -0.01em; }
.brand__sub { font-family: var(--font-sans); font-size: 0.6rem; letter-spacing: 0.32em; color: var(--accent); font-weight: 600; }

.nav__links { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.nav__links > a:not(.btn) {
  color: var(--text-dim); font-size: 0.95rem; font-weight: 500; position: relative; transition: color .2s;
}
.nav__links > a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--accent); transition: width .25s var(--ease);
}
.nav__links > a:not(.btn):hover { color: var(--text); }
.nav__links > a:not(.btn):hover::after { width: 100%; }
.nav__cta { margin-left: 4px; }

.nav__toggle {
  display: none; margin-left: auto;
  width: 44px; height: 44px; border-radius: 11px;
  background: var(--surface); border: 1px solid var(--border-2);
  cursor: pointer; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav__toggle span { display: block; width: 18px; height: 2px; border-radius: 2px; background: var(--text); transition: transform .3s var(--ease), opacity .2s; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; z-index: 1; max-width: var(--maxw); margin: 0 auto; padding: 96px 28px 70px; text-align: center; }
.hero__inner { max-width: 820px; margin: 0 auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.02em; color: var(--text-dim);
  padding: 8px 16px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--border); box-shadow: var(--shadow-sm);
}
.eyebrow__dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--sage);
  box-shadow: 0 0 0 0 rgba(100,116,139,0.5); animation: pulse 2.6s infinite;
}
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(100,116,139,0.45); } 70% { box-shadow: 0 0 0 9px rgba(100,116,139,0); } 100% { box-shadow: 0 0 0 0 rgba(100,116,139,0); } }

.hero__title {
  font-size: clamp(2.8rem, 7.2vw, 5rem);
  font-weight: 800; line-height: 1.05; letter-spacing: -0.035em;
  margin: 26px 0 22px; color: var(--text);
}
.hl { position: relative; color: var(--accent); white-space: nowrap; font-style: italic; }
.hl::after {
  content: ""; position: absolute; left: -4px; right: -4px; bottom: 0.1em; height: 0.32em;
  background: var(--accent-soft); border-radius: 5px; z-index: -1; transform: rotate(-0.8deg);
}

.hero__lead { font-size: clamp(1.08rem, 2.2vw, 1.3rem); color: var(--text-dim); max-width: 640px; margin: 0 auto 38px; }
.hero__lead strong { color: var(--text); font-weight: 600; }
.hero__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.hero__stats { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-top: 64px; }
.stat {
  min-width: 168px; padding: 24px 26px; border-radius: var(--radius-sm);
  background: var(--surface); border: 1px solid var(--border); box-shadow: var(--shadow-sm);
}
.stat__num { display: block; font-family: var(--font-serif); font-size: 2.1rem; font-weight: 600; color: var(--accent); }
.stat__label { font-size: 0.84rem; color: var(--text-mute); letter-spacing: 0.01em; margin-top: 2px; }

/* ---------- Products ---------- */
.products { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.product { padding: 32px; display: flex; flex-direction: column; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s; }
.product:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--border-2); }
.product--ghost { background: var(--surface-2); }

.product--featured { border-color: var(--accent-soft); overflow: hidden; }
.product--featured::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--accent), #818CF8);
}

.product__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.product__logo {
  width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center;
  font-family: var(--font-serif); font-weight: 600; font-size: 1.15rem; color: #fff;
  background: linear-gradient(150deg, #6D67F0, #4338CA);
  box-shadow: 0 8px 18px -8px rgba(67,56,202,0.55);
}
.product__logo--dim {
  color: var(--text-mute); font-size: 1.7rem; font-family: var(--font-sans);
  background: var(--surface-3); box-shadow: none; border: 1px solid var(--border);
}

.badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.02em; color: var(--text-mute);
  padding: 6px 12px; border-radius: 999px; background: var(--surface-3); border: 1px solid var(--border);
}
.badge--live { color: var(--live); background: rgba(63,143,91,0.10); border-color: rgba(63,143,91,0.22); }
.badge__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--live); box-shadow: 0 0 8px rgba(63,143,91,0.6); }
.badge__dot--idle { background: var(--text-mute); box-shadow: none; }

.product__name { font-size: 1.55rem; color: var(--text); }
.product__tagline { color: var(--accent); font-weight: 500; font-style: italic; margin: 5px 0 14px; }
.product__desc { color: var(--text-dim); font-size: 0.99rem; }
.product__features { list-style: none; margin: 20px 0 4px; display: grid; gap: 11px; }
.product__features li { position: relative; padding-left: 28px; color: var(--text-dim); font-size: 0.96rem; }
.product__features li::before {
  content: ""; position: absolute; left: 4px; top: 0.62em;
  width: 9px; height: 9px; border-radius: 2px; transform: rotate(45deg);
  background: var(--accent-soft); border: 1.5px solid var(--accent);
}

.product__meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.chip { font-size: 0.78rem; font-weight: 500; color: var(--text-dim); padding: 5px 11px; border-radius: 9px; background: var(--sage-soft); border: 1px solid rgba(100,116,139,0.18); }
.chip--accent { color: var(--accent-dk); font-weight: 600; background: var(--accent-tint); border-color: var(--accent-soft); }

.product__actions { margin-top: auto; padding-top: 26px; }

/* ---------- JoinForce showcase ---------- */
.showcase { padding: 48px; overflow: visible; }
.showcase__intro { max-width: 720px; margin: 0 auto; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.showcase__logo { height: 52px; width: auto; }
.showcase__tagline { font-family: var(--font-serif); font-style: italic; color: var(--accent); font-size: 1.35rem; margin-top: 2px; }
.showcase__desc { color: var(--text-dim); max-width: 580px; font-size: 1.04rem; }
.showcase__meta { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.showcase__intro .btn { margin-top: 8px; }

.showcase__devices { position: relative; max-width: 940px; margin: 60px auto 0; padding-bottom: 9%; }
.device { margin: 0; }
.device img { display: block; width: 100%; height: auto; }

/* desktop in a browser frame */
.device--desktop { position: relative; z-index: 1; }
.browser { border-radius: 14px; overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-lg); background: #fff; }
.browser__bar { display: flex; align-items: center; gap: 8px; height: 40px; padding: 0 16px; background: linear-gradient(180deg, #fbfbfe, #eef0f7); border-bottom: 1px solid var(--border); }
.browser__dot { width: 11px; height: 11px; border-radius: 50%; background: #d6d9e6; }
.browser__dot:nth-child(1) { background: #FF5F57; }
.browser__dot:nth-child(2) { background: #FEBC2E; }
.browser__dot:nth-child(3) { background: #28C840; }
.browser__url { margin-left: 10px; font-size: 12px; color: var(--text-mute); background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 4px 16px; }

/* tablet + phone marketing shots, layered in front — in light device frames
   (same chrome family as the desktop browser frame) */
.device--tablet, .device--phone {
  position: absolute; bottom: 0;
  background: linear-gradient(160deg, #ffffff 0%, #eef0f7 100%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}
.device--tablet img, .device--phone img {
  display: block; width: 100%; height: auto;
  box-shadow: inset 0 0 0 1px var(--border);
}
.device--tablet { z-index: 2; width: 33%; left: -2%; transform: rotate(-4deg); padding: 10px; border-radius: 22px; }
.device--tablet img { border-radius: 12px; }
.device--phone { z-index: 3; width: 19%; right: -1%; bottom: -5%; transform: rotate(4deg); padding: 8px; border-radius: 28px; }
.device--phone img { border-radius: 20px; }

@media (max-width: 900px) {
  .showcase { padding: 32px; }
  .showcase__devices { margin-top: 40px; padding-bottom: 0; max-width: 460px; }
  .device--tablet, .device--phone { position: static; transform: none; box-shadow: var(--shadow); margin: 22px auto 0; }
  .device--tablet { width: 78%; }
  .device--phone { width: 50%; }
}

/* ---------- Pindela showcase (mobile-only, green) ---------- */
.showcase--pindela {
  --pin-green:      #0E7A50;
  --pin-green-dk:   #0C6B46;
  --pin-green-soft: rgba(14,122,80,0.10);
  --pin-green-line: rgba(14,122,80,0.22);
  --pin-amber:      #F5A524;
  --pin-grad:       linear-gradient(135deg, #2BBE83, #0C6B46);
}
.showcase + .showcase { margin-top: 32px; }

/* Icon + text wordmark, mirroring the JoinForce logo treatment */
.showcase__brand { display: flex; align-items: center; gap: 12px; }
.showcase__mark { height: 34px; width: auto; filter: drop-shadow(0 4px 8px rgba(12,107,70,0.28)); }
.showcase__wordmark {
  font-family: var(--font-display); font-weight: 800; letter-spacing: -0.03em;
  font-size: 2rem; line-height: 1; color: var(--text);
}

/* Tagline + CTA recolored to Pindela green */
.showcase--pindela .showcase__tagline { color: var(--pin-green); }
.showcase--pindela .btn--primary {
  background: var(--pin-green);
  box-shadow: 0 8px 18px -8px rgba(14,122,80,0.55);
}
.showcase--pindela .btn--primary:hover {
  background: var(--pin-green-dk);
  box-shadow: 0 12px 24px -8px rgba(14,122,80,0.6);
}

/* Floating phones on a green backdrop card */
.showcase__devices--phones {
  max-width: 860px; padding: 44px 24px 40px; margin-top: 56px;
  border-radius: var(--radius);
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(43,190,131,0.16), transparent 62%),
    var(--pin-green-soft);
  border: 1px solid var(--pin-green-line);
}
.phones { display: flex; align-items: flex-end; justify-content: center; gap: 0; }
.phone { margin: 0; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.phone__cap { font-size: 0.86rem; font-weight: 600; color: var(--pin-green-dk); text-align: center; letter-spacing: -0.01em; }
.phone__frame {
  position: relative;
  padding: 9px;
  border-radius: 36px;
  background: linear-gradient(155deg, #2c2f36 0%, #16181d 55%, #0d0f13 100%);
  box-shadow: var(--shadow-lg), inset 0 0 0 1px rgba(255,255,255,0.10), inset 0 0 0 2.5px rgba(0,0,0,0.55);
}
.phone__frame img { display: block; width: 100%; height: auto; border-radius: 27px; }
/* dynamic island */
.phone__frame::before {
  content: ""; position: absolute; z-index: 3;
  top: 17px; left: 50%; transform: translateX(-50%);
  width: 32%; max-width: 70px; height: 8px;
  background: #05060a; border-radius: 999px;
}
/* side power button */
.phone__frame::after {
  content: ""; position: absolute; right: -2px; top: 28%;
  width: 3px; height: 46px; border-radius: 0 3px 3px 0;
  background: #0d0f13;
}

.phone--main { z-index: 3; width: 40%; }
.phone--left  { z-index: 2; width: 33%; transform: rotate(-6deg); margin-right: -5%; }
.phone--right { z-index: 2; width: 33%; transform: rotate(6deg);  margin-left: -5%; }

@media (max-width: 900px) {
  .showcase--pindela { margin-top: 24px; }
  .showcase__devices--phones { max-width: 480px; margin-top: 40px; padding: 32px 20px; }
  .phones { flex-wrap: wrap; gap: 26px 4%; }
  .phone { width: 62%; }
  .phone--main, .phone--left, .phone--right { width: 62%; transform: none; margin: 0; }
}
@media (max-width: 480px) {
  .phone, .phone--main, .phone--left, .phone--right { width: 84%; }
}

/* ---------- About ---------- */
.section--split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about__text .section__title { text-align: left; }
.about__text p { color: var(--text-dim); font-size: 1.08rem; margin-top: 18px; }
.about__text strong { color: var(--text); font-weight: 600; }
.about__values { display: grid; gap: 16px; }
.value { padding: 24px; display: flex; flex-direction: column; gap: 6px; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.value:hover { transform: translateX(6px); box-shadow: var(--shadow); }
.value__icon {
  font-size: 1.2rem; color: var(--accent); width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center; margin-bottom: 6px;
  background: var(--accent-tint); border: 1px solid var(--accent-soft);
}
.value h3 { font-size: 1.16rem; color: var(--text); }
.value p { color: var(--text-dim); font-size: 0.96rem; }

/* ---------- Contact ---------- */
.contact { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px; padding: 52px; }
.contact .section__title { text-align: left; }
.contact__intro p { color: var(--text-dim); margin: 16px 0 24px; }
.contact__email { display: inline-block; color: var(--accent-dk); font-weight: 600; border-bottom: 2px solid var(--accent-soft); padding-bottom: 2px; transition: border-color .2s; }
.contact__email:hover { border-color: var(--accent); }

.contact__form { display: grid; gap: 18px; }
.field { display: grid; gap: 7px; }
.field label { font-size: 0.86rem; font-weight: 600; color: var(--text); }
.field input, .field textarea {
  font-family: inherit; font-size: 0.98rem; color: var(--text);
  padding: 13px 16px; border-radius: 12px;
  background: var(--surface-2); border: 1px solid var(--border-2);
  transition: border-color .2s, box-shadow .2s, background .2s; resize: vertical;
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-mute); }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft); background: #fff;
}
.contact__hint { font-size: 0.82rem; color: var(--text-mute); text-align: center; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- Footer ---------- */
.footer { position: relative; z-index: 1; border-top: 1px solid var(--border); margin-top: 40px; background: var(--surface-2); }
.footer__inner { max-width: var(--maxw); margin: 0 auto; padding: 38px 28px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.brand--sm .brand__name { font-size: 1.04rem; }
.footer__links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer__links a { color: var(--text-dim); font-size: 0.92rem; transition: color .2s; }
.footer__links a:hover { color: var(--accent-dk); }
.footer__copy { color: var(--text-mute); font-size: 0.86rem; line-height: 1.5; text-align: right; }
.footer__tag { color: var(--accent); font-style: italic; }
.footer__version { color: var(--text-mute); font-size: 0.8rem; }
.footer__cookie { background: none; border: 0; padding: 0; cursor: pointer; font: inherit; font-size: 0.92rem; color: var(--text-dim); transition: color .2s; }
.footer__cookie:hover { color: var(--accent-dk); }

/* ---------- Cookie consent banner ---------- */
.cookie-banner {
  position: fixed; left: 50%; bottom: 20px; z-index: 80;
  transform: translateX(-50%) translateY(10px);
  width: min(700px, calc(100% - 32px));
  display: flex; align-items: center; gap: 18px;
  padding: 16px 20px;
  background: var(--surface); border: 1px solid var(--border-2);
  border-radius: 16px; box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden;
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
}
.cookie-banner.is-open { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.cookie-banner__text { margin: 0; font-size: 0.9rem; color: var(--text-dim); }
.cookie-banner__text a { color: var(--accent-dk); text-decoration: underline; text-underline-offset: 2px; }
.cookie-banner__actions { display: flex; gap: 10px; flex-shrink: 0; margin-left: auto; }
@media (max-width: 600px) {
  .cookie-banner { flex-direction: column; align-items: stretch; bottom: 12px; gap: 14px; }
  .cookie-banner__actions { margin-left: 0; justify-content: flex-end; }
}

/* ---------- Legal / content pages ---------- */
.page { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; padding: 110px 28px 64px; }
.page__back { display: inline-flex; align-items: center; gap: 7px; color: var(--text-dim); font-weight: 500; font-size: 0.92rem; margin-bottom: 24px; transition: color .2s, gap .2s; }
.page__back:hover { color: var(--accent-dk); gap: 10px; }
.page h1 { font-size: clamp(2rem, 5vw, 3rem); }
.page__meta { color: var(--text-mute); font-size: 0.9rem; margin-top: 12px; }
.prose { margin-top: 34px; }
.prose > * + * { margin-top: 14px; }
.prose h2 { font-size: 1.35rem; margin-top: 40px; }
.prose h3 { font-size: 1.08rem; margin-top: 24px; }
.prose p, .prose li { color: var(--text-dim); }
.prose ul { margin: 8px 0 8px 20px; display: grid; gap: 8px; }
.prose a { color: var(--accent-dk); text-decoration: underline; text-underline-offset: 2px; }
.prose strong { color: var(--text); font-weight: 600; }
.infocard { margin-top: 28px; padding: 26px 28px; }
.dl { display: grid; grid-template-columns: 150px 1fr; gap: 12px 20px; margin: 0; }
.dl dt { color: var(--text-mute); font-size: 0.9rem; }
.dl dd { color: var(--text); font-weight: 500; margin: 0; }
@media (max-width: 560px) { .dl { grid-template-columns: 1fr; gap: 3px 0; } .dl dd { margin-bottom: 12px; } }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .section--split { grid-template-columns: 1fr; gap: 36px; }
  .contact { grid-template-columns: 1fr; gap: 32px; padding: 36px; }
}
@media (max-width: 760px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed; inset: 70px 14px auto 14px;
    flex-direction: column; align-items: stretch; gap: 6px; padding: 14px;
    background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    transform: translateY(-12px) scale(0.98); transform-origin: top right;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
  }
  .nav__links.is-open { opacity: 1; visibility: visible; pointer-events: auto; transform: none; }
  .nav__links > a:not(.btn) { padding: 11px 12px; border-radius: 10px; }
  .nav__links > a:not(.btn):hover { background: var(--surface-3); }
  .nav__links > a:not(.btn)::after { display: none; }
  .nav__cta { margin: 6px 0 0; justify-content: center; }
}
@media (max-width: 680px) {
  .section { padding: 80px 22px; }
  .hero { padding: 64px 22px 50px; }
  .contact { padding: 28px; }
  .stat { min-width: 140px; padding: 20px; }
  .footer__copy { text-align: left; }
  .footer__inner { justify-content: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
