:root {
  --color-ink: #101b2d;
  --color-brand: #1f3a5f;
  --color-brand-light: #2c4f7c;
  --color-steel: #5b6b7f;
  --color-mist: #f4f6f8;
  --color-mist-deep: #eaeef2;
  --color-white: #ffffff;
  --color-line: #dbe1e8;
  --color-gold: #9c7a3c;
  --color-gold-soft: #c9ad7a;
  --color-success: #2f6b4f;
  --color-focus: #2c4f7c;

  --font-display: "Source Serif 4", "Source Serif Pro", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", "SFMono-Regular", Menlo, monospace;

  --container-max: 1180px;
  --radius-sm: 3px;
  --radius-md: 6px;
  --shadow-card: 0 1px 2px rgba(16, 27, 45, 0.06), 0 8px 24px -12px rgba(16, 27, 45, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-ink);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--color-brand);
  text-decoration: none;
}

a:hover {
  color: var(--color-gold);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--color-ink);
  line-height: 1.2;
  margin: 0 0 0.5em;
  font-weight: 600;
}

h1 { font-size: clamp(2.1rem, 4vw, 3.1rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.6rem, 2.8vw, 2.2rem); }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.05rem; }

p {
  margin: 0 0 1.1em;
  color: var(--color-steel);
}

ul, ol {
  color: var(--color-steel);
  padding-left: 1.2em;
}

li {
  margin-bottom: 0.5em;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 28px;
}

:focus-visible {
  outline: 2px solid var(--color-focus);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--color-ink);
  color: var(--color-white);
  padding: 10px 16px;
  z-index: 1000;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--color-gold-soft);
  display: inline-block;
}

.lede {
  font-size: 1.15rem;
  color: var(--color-steel);
  max-width: 640px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--color-line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
  background: var(--color-mist);
}

.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name strong {
  font-family: var(--font-display);
  font-size: 1.18rem;
  color: var(--color-ink);
  font-weight: 600;
}

.brand-name span {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-steel);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 26px;
}

.main-nav a {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--color-ink);
  position: relative;
  padding: 6px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  width: 100%;
}

.main-nav a.is-active {
  color: var(--color-brand);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  padding: 8px;
  cursor: pointer;
  color: var(--color-ink);
}

.header-cta {
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.btn-primary {
  background: var(--color-brand);
  color: var(--color-white);
  border-color: var(--color-brand);
}

.btn-primary:hover {
  background: var(--color-ink);
  border-color: var(--color-ink);
  color: var(--color-white);
}

.btn-secondary {
  background: transparent;
  color: var(--color-brand);
  border-color: var(--color-brand);
}

.btn-secondary:hover {
  background: var(--color-brand);
  color: var(--color-white);
}

.btn-ghost {
  background: transparent;
  color: var(--color-ink);
  border-color: var(--color-line);
}

.btn-ghost:hover {
  border-color: var(--color-ink);
  color: var(--color-ink);
}

main {
  display: block;
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--color-mist) 0%, var(--color-white) 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 56px;
  padding: 84px 0 96px;
}

.hero-copy h1 {
  margin-bottom: 22px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero-figure {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 4 / 3.1;
}

.hero-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-figure-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(16, 27, 45, 0) 0%, rgba(16, 27, 45, 0.78) 100%);
  color: var(--color-white);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  padding: 38px 18px 14px;
  text-transform: uppercase;
}

.stat-strip {
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  background: var(--color-white);
}

.stat-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 36px 0;
}

.stat-item {
  text-align: left;
  padding: 0 24px;
  border-left: 1px solid var(--color-line);
}

.stat-item:first-child {
  border-left: none;
  padding-left: 0;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--color-brand);
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--color-steel);
}

section {
  padding: 88px 0;
}

.section-head {
  max-width: 720px;
  margin-bottom: 52px;
}

.section-head.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.ledger-rule {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 64px 0;
}

.ledger-rule::before,
.ledger-rule::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--color-line);
}

.ledger-rule span {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--color-steel);
  text-transform: uppercase;
}

.bg-mist {
  background: var(--color-mist);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.card {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  box-shadow: var(--shadow-card);
  border-color: var(--color-mist-deep);
  transform: translateY(-2px);
}

.card-index {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--color-gold);
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  display: block;
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--color-mist);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--color-brand);
}

.card-icon svg {
  width: 24px;
  height: 24px;
}

.card h3 {
  margin-bottom: 10px;
}

.card p:last-child {
  margin-bottom: 0;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.feature-row.reverse .feature-media {
  order: 2;
}

.feature-media {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.feature-list li {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid var(--color-line);
  color: var(--color-ink);
  font-weight: 500;
}

.feature-list li:first-child {
  border-top: none;
}

.feature-list svg {
  width: 20px;
  height: 20px;
  color: var(--color-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.process-step {
  padding: 32px 26px;
  border-right: 1px solid var(--color-line);
  background: var(--color-white);
}

.process-step:last-child {
  border-right: none;
}

.process-step-index {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--color-gold);
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 16px;
}

.cta-band {
  background: var(--color-ink);
  color: var(--color-white);
  border-radius: var(--radius-md);
  padding: 56px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.cta-band h2 {
  color: var(--color-white);
  margin-bottom: 10px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 0;
  max-width: 480px;
}

.cta-band-actions {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
}

.notice-banner {
  background: var(--color-mist);
  border: 1px solid var(--color-line);
  border-left: 3px solid var(--color-gold);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.notice-banner svg {
  width: 22px;
  height: 22px;
  color: var(--color-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.notice-banner p {
  margin: 0;
  color: var(--color-ink);
  font-size: 0.95rem;
}

.page-hero {
  background: var(--color-mist);
  border-bottom: 1px solid var(--color-line);
  padding: 64px 0 56px;
}

.breadcrumb {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  color: var(--color-steel);
  margin-bottom: 18px;
}

.breadcrumb a {
  color: var(--color-steel);
}

.breadcrumb a:hover {
  color: var(--color-brand);
}

.page-hero h1 {
  margin-bottom: 16px;
}

.page-hero .lede {
  margin-bottom: 0;
}

.legal-content {
  max-width: 760px;
}

.legal-content h2 {
  margin-top: 2.2em;
  font-size: 1.4rem;
}

.legal-content h3 {
  margin-top: 1.6em;
  font-size: 1.1rem;
}

.legal-content p, .legal-content li {
  color: var(--color-steel);
}

.legal-meta {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--color-steel);
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-line);
}

.toc {
  background: var(--color-mist);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin-bottom: 48px;
}

.toc h2 {
  font-size: 1rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-steel);
  margin-bottom: 14px;
}

.toc ol {
  margin: 0;
  padding-left: 1.2em;
  columns: 2;
}

.toc a {
  font-size: 0.92rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.team-card {
  text-align: left;
}

.team-photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  background: var(--color-mist);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-steel);
  overflow: hidden;
}

.team-photo svg {
  width: 48px;
  height: 48px;
}

.team-card h4 {
  margin-bottom: 2px;
}

.team-role {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  color: var(--color-gold);
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.timeline {
  border-left: 2px solid var(--color-line);
  margin-left: 8px;
  padding-left: 36px;
}

.timeline-item {
  position: relative;
  padding-bottom: 40px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -42px;
  top: 4px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--color-white);
  border: 2px solid var(--color-gold);
}

.timeline-year {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--color-brand);
  letter-spacing: 0.05em;
  margin-bottom: 6px;
  display: block;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
}

.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}

.contact-info-list li {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--color-line);
}

.contact-info-list li:first-child {
  border-top: none;
}

.contact-info-list svg {
  width: 22px;
  height: 22px;
  color: var(--color-brand);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info-list strong {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--font-mono);
  color: var(--color-steel);
  margin-bottom: 4px;
}

.contact-info-list a, .contact-info-list span {
  color: var(--color-ink);
  font-weight: 500;
}

.map-frame {
  margin-top: 28px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-line);
  aspect-ratio: 16/10;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.form-card {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-card);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  margin-bottom: 7px;
  color: var(--color-ink);
}

.form-group .hint {
  font-size: 0.78rem;
  color: var(--color-steel);
  font-weight: 400;
  margin-left: 4px;
}

input, select, textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 11px 14px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  color: var(--color-ink);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--color-brand);
  box-shadow: 0 0 0 3px rgba(31, 58, 95, 0.12);
  outline: none;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-row input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

.checkbox-row label {
  font-size: 0.86rem;
  font-weight: 400;
  color: var(--color-steel);
}

.form-status {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  display: none;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  background: #eaf4ee;
  color: var(--color-success);
  border: 1px solid #cfe6d8;
}

.form-status.is-error {
  background: #fbeaea;
  color: #a23b3b;
  border: 1px solid #f0cccc;
}

.field-error {
  color: #a23b3b;
  font-size: 0.78rem;
  margin-top: 5px;
  display: none;
}

.has-error input,
.has-error select,
.has-error textarea {
  border-color: #c9534f;
}

.has-error .field-error {
  display: block;
}

.faq-list {
  border-top: 1px solid var(--color-line);
}

.faq-item {
  border-bottom: 1px solid var(--color-line);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 4px;
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--color-ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-question svg {
  width: 20px;
  height: 20px;
  color: var(--color-steel);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-item.is-open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-answer-inner {
  padding: 0 4px 22px;
}

.faq-answer-inner p {
  margin: 0;
}

.disclaimer-block {
  background: var(--color-mist);
  border-radius: var(--radius-md);
  padding: 36px 40px;
  margin-top: 48px;
}

.disclaimer-block p {
  font-size: 0.88rem;
  color: var(--color-steel);
  margin-bottom: 0.8em;
}

.disclaimer-block p:last-child {
  margin-bottom: 0;
}

.site-footer {
  background: var(--color-ink);
  color: rgba(255, 255, 255, 0.7);
  padding: 72px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-brand img {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
}

.footer-brand strong {
  font-family: var(--font-display);
  color: var(--color-white);
  font-size: 1.05rem;
}

.footer-col h4 {
  color: var(--color-white);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 11px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

.footer-col a:hover {
  color: var(--color-gold-soft);
}

.footer-address {
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-disclaimer {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.42);
  max-width: 640px;
  margin-top: 18px;
  line-height: 1.6;
}

.social-row {
  display: flex;
  gap: 12px;
}

.social-row a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
}

.social-row a:hover {
  border-color: var(--color-gold-soft);
  color: var(--color-gold-soft);
}

.social-row svg {
  width: 16px;
  height: 16px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  max-width: 760px;
  margin: 0 auto;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 40px -8px rgba(16, 27, 45, 0.28);
  padding: 26px 28px;
  z-index: 200;
  display: none;
}

.cookie-banner.is-visible {
  display: block;
  animation: cookie-rise 0.4s ease both;
}

@keyframes cookie-rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.cookie-banner-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}

.cookie-banner-head svg {
  width: 24px;
  height: 24px;
  color: var(--color-brand);
  flex-shrink: 0;
  margin-top: 2px;
}

.cookie-banner h2 {
  font-size: 1.02rem;
  margin-bottom: 6px;
}

.cookie-banner p {
  font-size: 0.88rem;
  margin-bottom: 0;
  color: var(--color-steel);
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-prefs {
  display: none;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--color-line);
}

.cookie-prefs.is-visible {
  display: block;
}

.cookie-pref-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-line);
}

.cookie-pref-row:last-child {
  border-bottom: none;
}

.cookie-pref-text strong {
  display: block;
  font-size: 0.88rem;
  margin-bottom: 3px;
}

.cookie-pref-text span {
  font-size: 0.8rem;
  color: var(--color-steel);
}

.switch {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 24px;
  flex-shrink: 0;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch-track {
  position: absolute;
  inset: 0;
  background: var(--color-line);
  border-radius: 999px;
  transition: background 0.18s ease;
}

.switch-track::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: var(--color-white);
  border-radius: 50%;
  transition: transform 0.18s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.switch input:checked + .switch-track {
  background: var(--color-brand);
}

.switch input:checked + .switch-track::before {
  transform: translateX(18px);
}

.switch input:disabled + .switch-track {
  background: var(--color-steel);
  opacity: 0.5;
}

@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 56px 0 64px;
  }

  .hero-figure {
    order: -1;
  }

  .stat-strip-inner {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 28px;
  }

  .stat-item:nth-child(3) {
    border-left: none;
  }

  .grid-3, .grid-2, .value-grid, .team-grid {
    grid-template-columns: 1fr;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-step {
    border-right: none;
    border-bottom: 1px solid var(--color-line);
  }

  .process-step:last-child {
    border-bottom: none;
  }

  .feature-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .feature-row.reverse .feature-media {
    order: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 32px;
  }
}

@media (max-width: 760px) {
  .main-nav ul {
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    background: var(--color-white);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--color-line);
    box-shadow: 0 12px 24px -12px rgba(16,27,45,0.18);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }

  .main-nav.is-open ul {
    max-height: 420px;
  }

  .main-nav ul li {
    width: 100%;
    padding: 0 28px;
  }

  .main-nav a {
    display: block;
    padding: 16px 0;
    border-bottom: 1px solid var(--color-mist-deep);
  }

  .nav-toggle {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .toc ol {
    columns: 1;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  section {
    padding: 56px 0;
  }

  .cookie-banner {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}
