/* Warner Digital Marketing - shared styles (dark theme) */
@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  /* Dark navy base */
  --bg: #061B36;
  --bg-2: #082B55;
  --bg-3: #0E3568;
  --bg-deep: #031226;
  --bg-card: rgba(8, 33, 63, 0.65);
  --fg: #F8FAFC;
  --fg-2: #D6DEE8;
  --fg-3: #AAB6C5;
  --line: #24415F;
  --line-2: #2C4662;
  /* Lime accent */
  --accent: #A6D61F;
  --accent-soft: #B8F02A;
  --accent-deep: #7FA51A;
  --accent-ink: #FFFFFF;
  --accent-text: #A6D61F;
  --accent-glow: rgba(184, 240, 42, 0.45);
  --btn-shadow: #6F8F14;
  --warn: oklch(0.78 0.16 55);
  --display: 'Inter Tight', system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
  --px: 1240px;
}

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

html { overflow-x: clip; }
html, body {
  background:
    radial-gradient(ellipse 90% 60% at 50% -10%, rgba(166, 214, 31, 0.05) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 100% 110%, rgba(8, 43, 85, 0.6) 0%, transparent 60%),
    var(--bg);
  background-attachment: fixed;
  color: var(--fg);
  font-family: var(--display);
  font-feature-settings: 'ss01', 'cv11';
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.4;
}
body { overflow-x: clip; }

img, svg, video { max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

::selection { background: var(--accent); color: var(--accent-ink); }

.wrap { max-width: var(--px); margin: 0 auto; padding: 0 32px; }
.mono { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--fg-2); }
.mono-label { font-family: var(--mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--fg-2); }
.accent { color: var(--accent-text); }
.ink-on-accent { background: var(--accent); color: var(--accent-ink); }
.hr { height: 1px; background: var(--line); width: 100%; }

/* Nav — floating pill */
.nav {
  position: sticky; top: 16px; z-index: 100;
  margin: 16px auto 0;
  max-width: calc(var(--px) + 32px);
  padding: 0 16px;
  transition: top 0.25s ease;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  position: relative;
  height: 68px;
  padding: 0 22px;
  gap: 24px;
  background: rgba(6, 27, 54, 0.78);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(166, 214, 31, 0.16);
  border-radius: 22px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.04) inset,
    0 12px 40px -16px rgba(0,0,0,0.7);
  transition: box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.nav.is-scrolled .nav-inner {
  background: rgba(6, 27, 54, 0.92);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.04) inset,
    0 16px 48px -16px rgba(0,0,0,0.85);
}
.nav-inner .logo { flex-shrink: 0; }
/* desktop: nudge nav elements up one notch */
@media (min-width: 901px) {
  .logo { font-size: 16px; }
  .logo-mark { width: 37px; height: 37px; font-size: 17px; border-radius: 8px; }
  .nav-links { gap: 30px; }
  .nav-links a { font-size: 15px; }
  .lang-btn { font-size: 14px; }
  .nav-cta { font-size: 14px; }
}
.nav-links { display: flex; gap: 28px; align-items: center; flex: 1; justify-content: center; }
.logo {
  display: flex; align-items: center; gap: 12px;
  font-weight: 500; font-size: 15px; letter-spacing: -0.005em;
  color: var(--fg);
}
.logo-mark {
  width: 32px; height: 32px;
  background: linear-gradient(160deg, #1a2614 0%, #0a1208 100%);
  border: 1px solid rgba(166, 214, 31, 0.35);
  display: grid; place-items: center;
  color: var(--accent);
  font-family: var(--display); font-weight: 600; font-size: 15px;
  border-radius: 7px;
  box-shadow: 0 0 12px -4px rgba(184,240,42,0.4) inset;
}
.nav-links a {
  position: relative;
  font-size: 14px; color: var(--fg-2); font-weight: 400;
  padding: 6px 2px;
  transition: color 0.2s, transform 0.2s, text-shadow 0.2s;
}
.nav-links a:hover {
  color: var(--accent-text);
  transform: translateY(-2px);
  text-shadow: 0 6px 12px rgba(166, 214, 31, 0.22);
}
.nav-links a.active { color: var(--fg); }
.nav-links a.active:hover { color: var(--accent-text); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
  border-radius: 2px;
}

/* Nav right-side actions (lang switch + CTA) */
.nav-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

/* Language switch */
.lang-switch { position: relative; }
.lang-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 10px; font-family: var(--display);
  font-size: 13px; font-weight: 500; color: var(--fg-2);
  background: transparent; border: 1px solid var(--line-2);
  border-radius: 10px; cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.lang-btn:hover { color: var(--fg); border-color: var(--accent-deep); }
.lang-btn svg { width: 16px; height: 16px; }
.lang-btn .lang-caret { width: 13px; height: 13px; transition: transform 0.2s; }
.lang-switch.open .lang-btn .lang-caret { transform: rotate(180deg); }
.lang-switch.open .lang-btn { color: var(--fg); border-color: var(--accent-deep); }
.lang-menu {
  position: absolute; top: calc(100% + 8px); right: 0;
  min-width: 150px; z-index: 130;
  display: flex; flex-direction: column;
  padding: 6px; gap: 2px;
  background: rgba(6, 27, 54, 0.97);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--line); border-radius: 12px;
  box-shadow: 0 24px 48px -16px rgba(0,0,0,0.6);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}
.lang-switch.open .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-opt {
  display: block; padding: 9px 12px; border-radius: 8px;
  font-size: 13px; font-weight: 500; color: var(--fg-2);
  text-decoration: none; transition: background 0.15s, color 0.15s;
}
a.lang-opt:hover { background: rgba(166, 214, 31, 0.10); color: var(--fg); }
.lang-opt.active { color: var(--accent-text); cursor: default; }
.lang-opt.active::before { content: "✓ "; }
.lang-mobile {
  color: var(--accent-text) !important;
  font-family: var(--mono); font-size: 13px !important;
  display: inline-flex; align-items: center; gap: 8px;
}
.lang-mobile svg { width: 16px; height: 16px; flex-shrink: 0; }

.nav.lang-top .nav-inner { z-index: 140; }

/* Mobile nav toggle (hamburger) */
.nav-toggle {
  display: none;
  width: 40px; height: 40px; padding: 0;
  border: 1px solid var(--line-2);
  background: transparent;
  border-radius: 10px;
  cursor: pointer;
  flex-direction: column; gap: 4px;
  align-items: center; justify-content: center;
}
.nav-toggle span {
  display: block; width: 18px; height: 2px;
  background: var(--fg); border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  position: absolute;
  top: calc(100% + 8px);
  left: 0; right: 0;
  z-index: 120;
  padding: 16px 24px 24px;
  gap: 4px;
  max-height: calc(100vh - 110px);
  overflow-y: auto;
  background: rgba(6, 27, 54, 0.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 24px 48px -16px rgba(0,0,0,0.6);
}
.nav-mobile .btn {
  align-self: flex-start;
  margin-top: 12px;
  color: #061B36;
  border-bottom: none;
}
.nav-mobile a {
  font-size: 16px; font-weight: 500;
  color: var(--fg-2); padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.nav-mobile a.active { color: var(--accent-text); }
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile.open { display: flex; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 18px; font-size: 14px; font-weight: 600;
  background: #A6D61F;
  color: #061B36;
  border: 1px solid #6F8F14;
  cursor: pointer; font-family: var(--display);
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
  border-radius: 12px;
  white-space: nowrap;
  box-shadow:
    0 0 0 1px rgba(166,214,31,0.08),
    0 8px 24px -8px rgba(166,214,31,0.55),
    0 0 36px -6px rgba(184,240,42,0.45);
}
.btn:hover {
  transform: translateY(-1px);
  background: #B8F02A;
  box-shadow:
    0 0 0 1px rgba(184,240,42,0.18),
    0 12px 32px -8px rgba(184,240,42,0.6),
    0 0 44px -4px rgba(184,240,42,0.55);
}
.nav-inner .btn,
.nav .btn {
  padding: 9px 16px;
  font-size: 13px;
  border-radius: 10px;
}
.btn-ghost {
  background: transparent; color: var(--fg);
  border: 1px solid rgba(166, 214, 31, 0.45);
  box-shadow: none;
  text-shadow: none;
}
.btn-ghost:hover {
  border-color: var(--accent);
  background: rgba(166, 214, 31, 0.06);
  box-shadow: 0 0 24px -8px rgba(184,240,42,0.3);
}

/* CTA block (shared across pages) */
.cta {
  padding: 110px 32px;
  background: var(--accent);
  color: #000000;
  border-top: none;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(6, 16, 30, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(6, 16, 30, 0.06) 0%, transparent 60%);
  pointer-events: none;
}
.cta > * { position: relative; z-index: 1; }
.cta .section-label {
  color: #000000;
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  opacity: 0.7;
}
.cta .section-label::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #000000;
}
.cta h2 {
  font-size: clamp(40px, 6vw, 88px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  max-width: 16ch;
  margin: 0 auto 40px;
  color: #000000;
}
.cta .cta-sub {
  max-width: 52ch;
  margin: 0 auto 40px;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(0, 0, 0, 0.75);
}
.cta .btn {
  background: #000000;
  color: #FFFFFF;
  border-color: #000000;
  box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.45);
}
.cta .btn:hover {
  background: #1A1A1A;
  border-color: #1A1A1A;
  box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.6);
}
.cta .btn-ghost {
  background: transparent;
  color: #000000;
  border: 1px solid rgba(0, 0, 0, 0.55);
  box-shadow: none;
}
.cta .btn-ghost:hover {
  border-color: #000000;
  background: rgba(0, 0, 0, 0.06);
  color: #000000;
  box-shadow: none;
}
.cta .meta {
  margin-top: 40px;
  font-family: var(--mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: rgba(0, 0, 0, 0.6);
}
@media (max-width: 720px) {
  .cta { padding: 64px 22px; }
  .cta h2 { margin-bottom: 28px; }
  .cta .cta-sub { font-size: 15px; margin-bottom: 28px; }
}
.btn .arrow { font-family: var(--mono); }

/* Breadcrumb (SEO kruimelpad) */
.breadcrumb {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 8px;
  font-family: var(--mono); font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--fg-3);
  margin-bottom: 28px;
}
.breadcrumb a {
  color: var(--accent-text);
  transition: color 0.18s;
}
.breadcrumb a:hover { color: var(--accent-soft); }
.breadcrumb .sep { color: var(--fg-3); opacity: 0.7; }
.breadcrumb .current { color: var(--fg-2); }
.section-light .breadcrumb,
.svc-overview .breadcrumb { color: #6B7C92; }
.section-light .breadcrumb a,
.svc-overview .breadcrumb a { color: var(--accent-deep); }
.section-light .breadcrumb .current,
.svc-overview .breadcrumb .current { color: #28405F; }

/* Footer */
.footer .logo-mark { box-shadow: none; }
.footer {
  border-top: 1px solid var(--line);
  padding: 64px 0 40px;
  margin-top: 0;
  background: rgba(3, 18, 38, 0.6);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  margin-bottom: 56px;
}
.footer h4 {
  font-family: var(--mono); font-size: 10px; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--fg-3); margin-bottom: 20px; font-weight: 500;
}
.footer h4 a { color: inherit; text-decoration: none; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer ul li { font-size: 14px; color: var(--fg-2); line-height: 1.5; }
.footer ul a { font-size: 14px; color: var(--fg-2); transition: color 0.15s; }
.footer ul a:hover { color: var(--accent-text); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px; border-top: 1px solid var(--line);
  font-family: var(--mono); font-size: 11px; color: var(--fg-3);
  text-transform: uppercase; letter-spacing: 0.08em;
}

/* Section */
.section { padding: 96px 0; border-top: 1px solid var(--line); }
.section-head {
  display: grid; grid-template-columns: 1fr 2fr; gap: 48px;
  margin-bottom: 64px; align-items: end;
}
.section-head .eyebrow {
  font-family: var(--mono); font-size: 13px; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--fg); font-weight: 600;
}
.section-head h2,
.section-head .section-title {
  font-size: clamp(40px, 4.6vw, 60px); line-height: 1.05; font-weight: 500;
  letter-spacing: -0.025em;
  grid-column: 2;
  margin: 0;
  color: var(--fg);
}
h2.section-label {
  font-family: var(--mono); font-size: 13px; color: var(--accent-text);
  margin: 0 0 16px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.16em;
}
h2.section-label::before {
  content: ""; display: inline-block;
  width: 8px; height: 8px; background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-glow);
  margin-right: 12px; vertical-align: middle;
}
.section-head .section-label {
  font-family: var(--mono); font-size: 13px; color: var(--accent-text);
  margin-bottom: 16px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.16em;
}
.section-head .section-label::before {
  content: ""; display: inline-block;
  width: 8px; height: 8px; background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-glow);
  margin-right: 12px; vertical-align: middle;
}
.section-head .index {
  font-family: var(--mono); font-size: 11px; color: var(--accent-text);
  margin-bottom: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* Ticker */
.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: rgba(10, 22, 42, 0.6);
}
.ticker-track {
  display: flex; gap: 64px; padding: 16px 0;
  animation: ticker 40s linear infinite;
  white-space: nowrap;
  font-family: var(--mono); font-size: 12px; color: var(--fg-2);
  text-transform: uppercase; letter-spacing: 0.1em;
}
.ticker-track span { display: inline-flex; align-items: center; gap: 12px; }
.ticker-track span::before {
  content: "●"; color: var(--accent); font-size: 8px;
  text-shadow: 0 0 6px var(--accent-glow);
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Utility cards */
.card {
  border: 1px solid var(--line);
  padding: 28px;
  background: var(--bg-card);
  position: relative;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s, transform 0.2s;
  border-radius: 16px;
  backdrop-filter: blur(8px);
}
.card:hover {
  border-color: var(--line-2);
  background: rgba(20, 32, 56, 0.7);
  box-shadow: 0 16px 48px -16px rgba(0,0,0,0.6);
  transform: translateY(-2px);
}

/* Grid helpers */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.grid-2 > * { background: var(--bg-2); padding: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.grid-3 > * { background: var(--bg-2); padding: 32px; }

/* Responsive */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
  .wrap { padding: 0 20px; }
  .nav { padding: 0 8px; top: 10px; }
  .nav-inner { padding: 0 16px; height: 60px; gap: 12px; border-radius: 18px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .lang-switch { display: block; }
  /* hide the globe icon on mobile to keep the lang switch compact */
  .lang-btn > svg:first-child { display: none; }
  .lang-btn { padding: 7px 9px; gap: 4px; }
  /* roomier hamburger so the bars aren't cramped against the box */
  .nav-toggle { width: 40px; height: 40px; gap: 5px; }
  .nav-toggle span { width: 20px; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-actions { gap: 8px; margin-left: auto; }
  .nav-toggle { margin-left: 4px; }
  .nav-mobile .lang-mobile { display: none; }
  .lang-menu { right: 0; }
  .nav-toggle { display: flex; }
  .logo-text { font-size: 16px; font-weight: 500; }
  .section { padding: 64px 0; }
  .section-head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 40px; }
  .section-head h2,
  .section-head .section-title { grid-column: 1; font-size: 32px; }
  .footer { padding: 48px 0 32px; margin-top: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 40px; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; align-items: flex-start; }
}

@media (max-width: 560px) {
  .wrap { padding: 0 16px; }
  .nav-inner { padding: 0 14px; gap: 8px; }
  .logo-text { display: inline; font-size: 16px; font-weight: 500; line-height: 1.05; }
  .section { padding: 48px 0; }
  .section-head h2 { font-size: 26px; line-height: 1.1; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .grid-2 > *, .grid-3 > * { padding: 24px 20px; }
  .card { padding: 22px 20px; }
  .ticker-track { font-size: 11px; gap: 40px; }
  .footer { padding: 40px 0 28px; margin-top: 0; }
  .footer h4 { margin-bottom: 14px; }
}

/* Placeholder image */
.ph {
  background:
    repeating-linear-gradient(135deg, rgba(190,232,76,0.06) 0 8px, rgba(190,232,76,0.02) 8px 16px),
    var(--bg-2);
  display: grid; place-items: center;
  color: var(--fg-3);
  font-family: var(--mono); font-size: 10px;
  text-transform: uppercase; letter-spacing: 0.1em;
  aspect-ratio: 4/3;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.ph.portrait { aspect-ratio: 3/4; }
.ph.square { aspect-ratio: 1/1; }
.ph.wide { aspect-ratio: 16/9; }

/* Chip */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-family: var(--mono); font-size: 10px;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--fg-2);
  background: rgba(166, 214, 31, 0.05);
}
.chip.live::before { content:""; width:6px; height:6px; border-radius:50%; background: var(--accent); box-shadow: 0 0 8px var(--accent); }

/* Social icon link */
.social-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  border-radius: 8px;
  border: 1px solid var(--line-2);
  background: rgba(166, 214, 31, 0.05);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.social-link:hover {
  transform: translateY(-2px);
}
.social-link img { width: 100%; height: 100%; object-fit: cover; display: block; }
.social-link svg { width: 22px; height: 22px; fill: currentColor; }

/* Scroll-progress back-to-top button */
.to-top {
  position: fixed;
  right: 28px; bottom: 104px;
  z-index: 200;
  width: 60px; height: 60px;
  padding: 0; margin: 0;
  border: none; background: transparent;
  cursor: pointer;
  display: grid; place-items: center;
  opacity: 0;
  transform: translateY(12px) scale(0.9);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.to-top.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.to-top::before {
  content: "";
  position: absolute; inset: 1px;
  border-radius: 50%;
  background: #0C2545;
  border: 1px solid #1C3A5E;
  box-shadow: 0 10px 28px -10px rgba(0,0,0,0.65);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.to-top:hover::before {
  box-shadow: 0 14px 32px -10px rgba(0,0,0,0.7);
}
.to-top-ring {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  transform: rotate(-90deg);
}
.to-top-ring .tt-track {
  fill: none;
  stroke: rgba(255, 255, 255, 0.16);
  stroke-width: 3;
  transition: stroke 0.2s;
}
.to-top-ring .tt-prog {
  fill: none;
  stroke: var(--accent);
  stroke-width: 3;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.1s linear;
  filter: drop-shadow(0 0 4px rgba(166, 214, 31, 0.45));
}
.to-top-arrow {
  position: relative;
  width: 22px; height: 22px;
  color: #EAF0F6;
  transition: transform 0.2s, color 0.2s;
}
/* same subtle (white) hover as the chat bubble — no green */
.to-top:hover .to-top-arrow {
  transform: translateY(-2px);
}
.to-top:hover .tt-track {
  stroke: rgba(255, 255, 255, 0.5);
}
@media (max-width: 560px) {
  .to-top { right: 16px; bottom: 82px; width: 52px; height: 52px; }
  .to-top-arrow { width: 19px; height: 19px; }
}

/* Smooth fade-in for images that load after parse */
.img-fade { opacity: 0; transition: opacity 0.5s ease; }
.img-fade.is-loaded { opacity: 1; }

/* Toestemming / privacy-consent bij contact- en groeiscanformulier (huisstijl-checkbox, lichte forms) */
.form-consent { display: flex; align-items: flex-start; gap: 10px; margin-top: -4px; font-size: 12px; line-height: 1.5; color: #6B7A90; cursor: pointer; }
.form-consent input { margin-top: 2px; width: 16px; height: 16px; flex-shrink: 0; cursor: pointer; -webkit-appearance: none; appearance: none; background: #fff; border: 1px solid #C4CFDC; border-radius: 4px; display: inline-grid; place-content: center; }
.form-consent input::before { content: ""; width: 9px; height: 9px; transform: scale(0); transition: transform 0.1s ease-in-out; box-shadow: inset 1em 1em var(--accent-deep); clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%); }
.form-consent input:checked::before { transform: scale(1); }
.form-consent input:checked { border-color: var(--accent-deep); }
.form-consent a { color: #5E7D14; text-decoration: underline; text-underline-offset: 2px; }
/* Groeiscanformulier: extra lucht boven de consent-checkbox (geen flex-gap zoals bij contact) */
.gs2-form .form-consent { margin-top: 20px; }

/* Extra ademruimte voor de nav op zeer smalle telefoons (bijv. Galaxy S8, <=400px) */
@media (max-width: 400px){
  .nav { padding: 0 12px; }
  .logo-text { font-size: 14px; }
}
