@import url("/assets/fonts/fonts.css");

:root {
  --green: #6bbf3d;
  --green-dark: #56a02c;
  --blue: #00a2e8;
  --ink: #1a202c;
  --ink-2: #2d3748;
  --ink-3: #4a5568;
  --muted: #718096;
  --line: #edf2f7;
  --tint: #f7fafc;
  --white: #ffffff;
  --grad: linear-gradient(130deg, var(--green) 0%, var(--blue) 100%);
  --radius: 10px;
  --shadow: 0 10px 30px rgba(26, 32, 44, 0.06);
  --shadow-lg: 0 20px 50px rgba(26, 32, 44, 0.12);
  --font: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-eyebrow: "Roboto Condensed", "Montserrat", system-ui, sans-serif;
  --container: 1200px;
  --skew: 5vw;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { transition: none !important; animation: none !important; } }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--green-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.2; margin: 0 0 0.5em; font-weight: 700; letter-spacing: -0.01em; }
h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3, .h3 { font-size: 1.3rem; }
h4, .h4 { font-size: 1.1rem; }
p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.3em; }
.container { width: min(100% - 40px, var(--container)); margin-inline: auto; }
.container.narrow { max-width: 820px; }
.center { text-align: center; }
.muted { color: var(--muted); }
.small { font-size: 0.9rem; }
.skip-link { position: absolute; left: -999px; top: 8px; background: var(--ink); color: #fff; padding: 8px 14px; border-radius: 6px; z-index: 1000; }
.skip-link:focus { left: 8px; }

.eyebrow {
  font-family: var(--font-eyebrow);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--green-dark);
  margin: 0 0 0.75rem;
}
.eyebrow-light { color: rgba(255, 255, 255, 0.92); }
.section-title { margin-bottom: 2rem; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 2rem; }
.section-head .section-title { margin-bottom: 0; }

/* Icons */
.ico { width: 20px; height: 20px; flex: none; }
.ico-lg { width: 44px; height: 44px; color: var(--green); margin-bottom: 18px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font: 600 0.95rem/1 var(--font);
  padding: 13px 24px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; text-decoration: none; transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }
.btn-sm { padding: 9px 16px; font-size: 0.85rem; }
.btn-primary { background: var(--green); color: #fff; border-color: var(--green); }
.btn-primary:hover { background: var(--green-dark); border-color: var(--green-dark); }
.btn-outline { color: var(--green-dark); border-color: var(--green); background: transparent; }
.btn-outline:hover { background: var(--green); color: #fff; }
.btn-outline-light { color: #fff; border-color: rgba(255, 255, 255, 0.85); background: transparent; }
.btn-outline-light:hover { background: #fff; color: var(--ink); }
.btn-link-light { color: #fff; padding-inline: 8px; }
.btn-ghost { color: var(--ink); background: var(--line); }
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; justify-content: center; }
.btn .ico { width: 18px; height: 18px; }

/* Header */
.site-header { position: absolute; inset: 0 0 auto; z-index: 50; padding: 14px 0; transition: background 0.25s, box-shadow 0.25s, padding 0.25s; }
.site-header.is-stuck { position: fixed; background: #fff; box-shadow: var(--shadow); padding: 8px 0; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand img { width: 220px; height: auto; }
.brand .logo-dark, .is-stuck .brand .logo-light, .is-open .brand .logo-light { display: none; }
.is-stuck .brand .logo-dark, .is-open .brand .logo-dark { display: block; }
.nav ul { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 4px; }
.nav a { display: block; padding: 10px 14px; color: #fff; font-weight: 500; font-size: 1rem; border-radius: 8px; }
.nav a:hover { text-decoration: none; background: rgba(255, 255, 255, 0.12); }
.nav a[aria-current="page"] { text-decoration: underline; text-underline-offset: 6px; text-decoration-thickness: 2px; }
.is-stuck .nav a { color: var(--ink-2); }
.is-stuck .nav a:hover { background: var(--tint); }
.nav-cta { margin-left: 12px; }
.nav-cta .btn { padding: 11px 22px; }
.is-stuck .nav-cta .btn { color: var(--green-dark); border-color: var(--green); }
.is-stuck .nav-cta .btn:hover { background: var(--green); color: #fff; }
.nav-toggle { display: none; background: none; border: 0; color: #fff; padding: 8px; cursor: pointer; }
.nav-toggle .ico { width: 28px; height: 28px; }
.nav-toggle .ico-close, .nav-toggle[aria-expanded="true"] .ico-menu { display: none; }
.nav-toggle[aria-expanded="true"] .ico-close { display: block; }
.is-stuck .nav-toggle { color: var(--ink); }

/* Hero */
.hero { position: relative; color: #fff; background: var(--grad); padding: 150px 0 120px; clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--skew)), 0 100%); }
.hero h1 { color: #fff; margin-bottom: 0.6em; }
.hero-inner { max-width: 860px; margin-inline: auto; text-align: center; }
.hero-lead { font-size: 1.15rem; max-width: 700px; opacity: 0.95; margin-bottom: 2rem; }
.hero-inner .hero-lead { margin-inline: auto; }
.hero-page { padding: 140px 0 100px; }
.hero-page .hero-lead { margin-bottom: 0; }
.hero-compact { padding: 130px 0 80px; }
.breadcrumb { font-family: var(--font-eyebrow); letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.8rem; opacity: 0.9; }
.breadcrumb a { color: #fff; }

/* Sections */
.section { padding: 80px 0; }
.section-tint { background: var(--tint); }
.skew { clip-path: polygon(0 var(--skew), 100% 0, 100% calc(100% - var(--skew)), 0 100%); padding: calc(80px + var(--skew)) 0; margin: calc(-1 * var(--skew) / 2) 0; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split-reverse .split-text { order: 1; }
.split-media img { border-radius: var(--radius); }
.split-text h2 { margin-bottom: 0.7em; }
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Cards */
.card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 32px 28px; display: flex; flex-direction: column; }
.card h3, .card .h3 { font-size: 1.25rem; color: var(--green-dark); font-weight: 500; margin-bottom: 0.5em; }
.card p { color: var(--ink-3); font-size: 0.98rem; flex: 1; }
.card-link { color: inherit; transition: transform 0.2s, box-shadow 0.2s; }
.card-link:hover { text-decoration: none; transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-more { display: inline-flex; align-items: center; gap: 6px; color: var(--green-dark); font-weight: 600; font-size: 0.95rem; margin-top: 8px; }
.card-more .ico { width: 16px; height: 16px; }

.check-list { list-style: none; padding: 0; }
.check-list li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 10px; }
.check-list .ico { color: var(--green); margin-top: 4px; }
.tags { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 2rem; }
.tags li { background: var(--tint); border: 1px solid var(--line); border-radius: 999px; padding: 6px 14px; font-size: 0.9rem; color: var(--ink-3); }

/* Cases */
.case-card { display: flex; flex-direction: column; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); color: inherit; transition: transform 0.2s, box-shadow 0.2s; }
.case-card:hover { text-decoration: none; transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.case-card img { width: 100%; aspect-ratio: 2 / 1; object-fit: cover; object-position: top; }
.case-body { padding: 24px 26px 28px; }
.case-body h3, .case-body .h3 { margin-bottom: 0.4em; }
.case-body p { color: var(--ink-3); font-size: 0.98rem; margin-bottom: 0.5em; }
.case-meta { font-family: var(--font-eyebrow); text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.78rem; color: var(--green-dark) !important; margin-bottom: 0.6em !important; }
.case-card-wide { flex-direction: row; }
.case-card-wide img { width: 45%; aspect-ratio: auto; }
.case-hero { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-lg); margin-bottom: 48px; }
.case-layout, .service-layout, .contact-layout { display: grid; grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr); gap: 48px; align-items: start; }
.case-main h2, .service-main h2 { margin-top: 1.4em; }
.case-main h2:first-child, .service-main h2:first-child { margin-top: 0; }
.side-card { background: var(--tint); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; margin-bottom: 20px; }
.side-card .btn { margin-top: 4px; }
.side-list { list-style: none; padding: 0; margin: 0; }
.side-list li { border-top: 1px solid var(--line); padding: 10px 0; }
.side-list li:first-child { border-top: 0; padding-top: 0; }
.case-map { width: 100%; max-width: 260px; margin: 0 auto 16px; }
.facts { display: grid; grid-template-columns: auto 1fr; gap: 8px 16px; margin: 0; font-size: 0.95rem; }
.facts dt { color: var(--muted); }
.facts dd { margin: 0; color: var(--ink); font-weight: 500; }

/* Stats */
.stats .stat { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 28px 24px; text-align: center; }
.stat-value { display: block; font-size: 2.2rem; font-weight: 700; color: var(--ink); line-height: 1.1; margin-bottom: 8px; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-label { display: block; color: var(--ink-3); font-size: 0.95rem; }
.stats-compact .stat { padding: 20px 16px; background: var(--tint); box-shadow: none; }
.stats-compact .stat-value { font-size: 1.7rem; }

/* Team */
.team-grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px 16px; max-width: 960px; margin-inline: auto; }
.team-person { text-align: center; }
.team-person img, .team-initial { width: 132px; height: 132px; border-radius: 50%; object-fit: cover; margin: 0 auto 12px; display: block; box-shadow: 0 0 0 4px #fff, 0 0 0 5px var(--line), var(--shadow); background: #e2e8f0; }
.team-initial { display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 2.6rem; color: var(--ink-3); background: linear-gradient(160deg, #edf2f7, #cbd5e0); }
.team-person strong { display: block; color: var(--green-dark); font-weight: 600; font-size: 1rem; }
.team-person span:not(.team-initial) { color: var(--ink-3); font-size: 0.85rem; }
.team-grid-compact { grid-template-columns: repeat(3, 1fr); gap: 18px 8px; }
.team-grid-compact .team-person img, .team-grid-compact .team-initial { width: 104px; height: 104px; }
.team-grid-compact .team-initial { font-size: 2rem; }
.values .value { text-align: center; padding: 8px; }
.values .ico-lg { margin-inline: auto; }
.values h3 { font-size: 1.1rem; }
.values p { color: var(--ink-3); font-size: 0.95rem; }

/* Logos */
.logos { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 28px 44px; }
.logos img { height: 44px; width: auto; max-width: 150px; object-fit: contain; filter: grayscale(1); opacity: 0.75; transition: filter 0.2s, opacity 0.2s; }
.logos li:hover img { filter: none; opacity: 1; }
.section .logos + .center { margin-top: 2.5rem; }

/* FAQ */
.faq { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 24px; align-items: start; }
.faq-item { background: #fff; border-radius: 8px; box-shadow: var(--shadow); }
.faq-item summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 18px 22px; font-weight: 600; color: var(--ink); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .ico { transition: transform 0.2s; color: var(--muted); }
.faq-item[open] summary .ico { transform: rotate(180deg); }
.faq-body { padding: 0 22px 20px; color: var(--ink-3); }
.faq-body p:last-child { margin-bottom: 0; }

/* CTA band */
.cta-band { background: var(--grad); color: #fff; padding: 90px 0; }
.cta-band h2 { color: #fff; font-weight: 500; font-size: clamp(1.7rem, 3.5vw, 2.5rem); }
.cta-lead { opacity: 0.95; margin-bottom: 1.6rem; }

/* Contact */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-weight: 600; font-size: 0.92rem; margin-bottom: 6px; color: var(--ink); }
.form-check label { font-weight: 400; display: flex; gap: 10px; align-items: flex-start; font-size: 0.92rem; color: var(--ink-3); }
.form-check input { margin-top: 4px; width: 18px; height: 18px; accent-color: var(--green); }
.req { color: var(--green-dark); }
input[type="text"], input[type="email"], input[type="tel"], textarea {
  width: 100%; font: inherit; padding: 12px 14px; border: 1.5px solid #cbd5e0; border-radius: 8px; background: #fff; color: var(--ink);
  transition: border-color 0.15s, box-shadow 0.15s;
}
input:focus, textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(107, 191, 61, 0.2); }
input[aria-invalid="true"], textarea[aria-invalid="true"] { border-color: #e53e3e; }
textarea { resize: vertical; min-height: 150px; }
.field-error { color: #c53030; font-size: 0.85rem; margin: 6px 0 0; }
.form-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form .btn { margin-top: 6px; }
.form .muted { margin-top: 14px; }
.cf-turnstile { margin-bottom: 16px; }
.notice { border-radius: var(--radius); padding: 18px 22px; margin-bottom: 20px; }
.notice-success { background: #f0fff4; border: 1px solid #9ae6b4; }
.notice-success h2 { color: #22543d; }
.notice-error { background: #fff5f5; border: 1px solid #feb2b2; color: #9b2c2c; }
.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li { display: flex; gap: 14px; padding: 12px 0; border-top: 1px solid var(--line); }
.contact-list li:first-child { border-top: 0; padding-top: 0; }
.contact-list .ico { color: var(--green); width: 24px; height: 24px; margin-top: 2px; }
.contact-list span { display: flex; flex-direction: column; gap: 2px; font-size: 0.95rem; }
.contact-list strong { color: var(--ink); }
.contact-list small { color: var(--muted); }
.location-band { position: relative; overflow: hidden; color: #fff; background: var(--ink); padding: 90px 0; }
.location-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 300px at 15% 20%, rgba(107, 191, 61, 0.35), transparent 70%), radial-gradient(700px 320px at 85% 90%, rgba(0, 162, 232, 0.35), transparent 70%); }
.location-band::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1.5px); background-size: 26px 26px; mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent); -webkit-mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent); }
.location-band > .container { position: relative; z-index: 1; }
.location-band h2 { color: #fff; max-width: 760px; margin-inline: auto; }
.location-lead { max-width: 640px; margin: 0 auto 1.6rem; color: #cbd5e0; }
.chips { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.chips li { border: 1px solid rgba(255, 255, 255, 0.25); border-radius: 999px; padding: 8px 16px; font-size: 0.9rem; color: #e2e8f0; background: rgba(255, 255, 255, 0.05); }

/* Blog */
.post-card { display: flex; flex-direction: column; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); color: inherit; transition: transform 0.2s, box-shadow 0.2s; }
.post-card:hover { text-decoration: none; transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.post-card img { width: 100%; aspect-ratio: 2 / 1; object-fit: cover; }
.post-hero { width: 100%; border-radius: var(--radius); margin-bottom: 32px; }
.prose { font-size: 1.05rem; }
.prose h2 { margin-top: 1.6em; font-size: 1.6rem; }
.prose h3 { margin-top: 1.4em; }
.prose img { border-radius: 8px; margin: 1em auto; }
.prose figure { margin: 1em 0; }
.prose figure.alignright { float: right; margin: 0 0 1em 1.5em; max-width: 50%; }
.prose pre { background: var(--ink); color: #e2e8f0; padding: 18px 20px; border-radius: 8px; overflow-x: auto; font-size: 0.88rem; line-height: 1.55; white-space: pre; }
.prose pre code { background: none; color: inherit; padding: 0; }
.prose code { background: var(--line); padding: 2px 6px; border-radius: 4px; font-size: 0.9em; }
.prose table { width: 100%; border-collapse: collapse; margin: 1em 0; font-size: 0.95rem; }
.prose th, .prose td { border: 1px solid var(--line); padding: 10px 12px; text-align: left; vertical-align: top; }
.prose th { background: var(--tint); }
.prose blockquote { border-left: 4px solid var(--green); margin: 1em 0; padding: 4px 0 4px 20px; color: var(--ink-3); }
.post-cta { background: var(--grad); color: #fff; border-radius: var(--radius); padding: 32px 36px; margin: 2.5em 0 1em; clear: both; }
.post-cta h2 { color: #fff; margin-top: 0 !important; font-size: 1.5rem; }
.post-cta p { color: rgba(255,255,255,0.95); }
.post-note { border-top: 1px solid var(--line); padding-top: 16px; margin-top: 2em; clear: both; }

/* Footer */
.site-footer { background: var(--ink); color: #cbd5e0; padding: 40px 0 28px; }
.site-footer a { color: #fff; }
.footer-cta { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; padding-bottom: 32px; margin-bottom: 40px; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.footer-cta-title { color: #fff; font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; margin: 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 32px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 8px; }
.footer-heading { color: #fff; font-size: 1.05rem; font-weight: 600; margin-bottom: 14px; }
.footer-brand img { width: 200px; margin-bottom: 18px; }
.footer-brand p { margin-bottom: 0.6em; }
.site-footer address { font-style: normal; line-height: 1.7; }
.site-footer .muted { color: #a0aec0; font-size: 0.9rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 40px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.08); font-size: 0.85rem; color: #a0aec0; }
.footer-bottom p { margin: 0; }
.footer-bottom ul { list-style: none; padding: 0; margin: 0; display: flex; gap: 18px; flex-wrap: wrap; }
.footer-bottom a { color: #a0aec0; }

/* Consent */
.consent { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 100; max-width: 720px; margin-inline: auto; background: #fff; color: var(--ink-2); border-radius: var(--radius); box-shadow: 0 24px 60px rgba(26, 32, 44, 0.25); padding: 22px 24px; font-size: 0.92rem; border: 1px solid var(--line); }
.consent p { margin: 0; }
.consent-title { font-weight: 700; color: var(--ink); font-size: 1rem; margin-bottom: 6px !important; }
.consent-text p + p, .consent-text { margin-bottom: 14px; }
.consent-actions { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.btn-consent { background: var(--ink); color: #fff; border-color: var(--ink); padding: 11px 20px; }
.btn-consent:hover { background: var(--green-dark); border-color: var(--green-dark); }
.btn-link-plain { background: none; border: 0; color: var(--ink-3); text-decoration: underline; padding: 8px 6px; font-weight: 500; }
.btn-link-plain:hover { color: var(--ink); transform: none; }
.consent-cats { list-style: none; padding: 0; margin: 0 0 16px; }
.consent-cats li { display: flex; gap: 16px; align-items: center; justify-content: space-between; padding: 12px 0; border-top: 1px solid var(--line); }
.consent-cats li:first-child { border-top: 0; padding-top: 4px; }
.consent-cats strong { display: block; color: var(--ink); }
.consent-cats span { color: var(--ink-3); font-size: 0.88rem; }
.switch { position: relative; display: inline-block; width: 46px; height: 26px; flex: none; }
.switch input { position: absolute; opacity: 0; width: 0; height: 0; }
.switch > span[aria-hidden] { position: absolute; inset: 0; background: #cbd5e0; border-radius: 999px; transition: background 0.2s; }
.switch > span[aria-hidden]::after { content: ""; position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; border-radius: 50%; background: #fff; transition: transform 0.2s; box-shadow: 0 1px 3px rgba(0,0,0,0.3); }
.switch input:checked + span { background: var(--green); }
.switch input:checked + span::after { transform: translateX(20px); }
.switch input:disabled + span { background: #9ae6b4; cursor: not-allowed; }
.switch input:focus-visible + span { outline: 3px solid rgba(107, 191, 61, 0.4); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.link-button { background: none; border: 0; padding: 0; font: inherit; color: #a0aec0; cursor: pointer; text-decoration: none; }
.link-button:hover { text-decoration: underline; color: #fff; }

.consent-receipt { font-size: 0.82rem; color: var(--muted); margin-bottom: 12px !important; }
.consent-receipt code { background: var(--line); padding: 1px 6px; border-radius: 4px; }
.consent-widget { position: fixed; left: 16px; bottom: 16px; z-index: 99; width: 46px; height: 46px; border-radius: 50%; border: 0; background: var(--ink); color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 8px 24px rgba(26, 32, 44, 0.3); transition: background 0.2s, transform 0.2s; }
.consent-widget[hidden] { display: none; }
.consent-widget:hover { background: var(--green-dark); transform: translateY(-2px); }
.consent-widget .ico { width: 22px; height: 22px; }
.consent-widget:focus-visible { outline: 3px solid rgba(107, 191, 61, 0.5); }

/* Responsive */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .team-grid-compact { grid-template-columns: repeat(3, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .case-layout, .service-layout, .contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  body { font-size: 16px; }
  .section { padding: 60px 0; }
  .skew { --skew: 8vw; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split-reverse .split-text { order: 0; }
  .grid-2 { grid-template-columns: 1fr; }
  .faq { grid-template-columns: 1fr; }
  .case-card-wide { flex-direction: column; }
  .case-card-wide img { width: 100%; aspect-ratio: 2 / 1; }
  .nav-toggle { display: block; }
  .nav { display: none; position: absolute; left: 0; right: 0; top: 100%; background: #fff; box-shadow: var(--shadow-lg); padding: 12px 20px 20px; }
  .nav.is-open { display: block; }
  .nav ul { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav a { color: var(--ink); padding: 12px 10px; }
  .nav-cta { margin: 10px 0 0; }
  .nav-cta .btn { color: var(--green-dark); border-color: var(--green); justify-content: center; }
  .site-header.is-open { background: #fff; position: fixed; }
  .is-open .nav-toggle { color: var(--ink); }
  .hero { padding: 120px 0 90px; }
  .hero-page { padding: 110px 0 70px; }
  .brand img { width: 180px; }
  .prose figure.alignright { float: none; max-width: 100%; margin: 1em 0; }
}
@media (max-width: 560px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .logos { gap: 20px 28px; }
  .logos img { height: 34px; max-width: 110px; }
  .team-grid, .team-grid-compact { grid-template-columns: repeat(2, 1fr); }
  .location-band { padding: 64px 0; }
}
