:root {
  --ink: #1e2126;
  --ink-soft: #33383f;
  --slate: #475161;
  --slate-light: #6b7684;
  --line: #e1e4e8;
  --line-soft: #edeff2;
  --fog: #f3f4f6;
  --paper: #fafafb;
  --white: #ffffff;
  --accent: #3a5c78;
  --accent-dark: #2b4459;
  --accent-light: #eaf0f4;
  --success: #3f7a57;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(30, 33, 38, 0.06);
  --shadow-md: 0 8px 24px rgba(30, 33, 38, 0.08);
  --shadow-lg: 0 20px 48px rgba(30, 33, 38, 0.12);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-dark); text-decoration: underline; }

h1, h2, h3, h4 {
  color: var(--ink);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 0.6em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; }

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

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.15s ease;
  text-decoration: none;
}
.btn-primary { background: var(--ink); color: var(--white); }
.btn-primary:hover { background: var(--accent-dark); color: var(--white); text-decoration: none; }
.btn-secondary { background: var(--white); color: var(--ink); border-color: var(--line); }
.btn-secondary:hover { border-color: var(--slate); text-decoration: none; }
.btn-block { width: 100%; justify-content: center; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 251, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}
.brand:hover { text-decoration: none; color: var(--ink); }
.brand-logo { width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0; }
.brand-name {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink);
  line-height: 1.1;
}
.brand-tagline {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--slate-light);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 6px;
  margin: 0;
  padding: 0;
}
.main-nav a {
  display: inline-block;
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  color: var(--slate);
  font-weight: 600;
  font-size: 0.94rem;
}
.main-nav a:hover { background: var(--fog); color: var(--ink); text-decoration: none; }
.main-nav a[aria-current="page"] { color: var(--ink); background: var(--fog); }

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
}
.nav-toggle i { font-size: 1.4rem; color: var(--ink); }

@media (max-width: 860px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line-soft);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .main-nav.is-open { max-height: 400px; }
  .main-nav ul { flex-direction: column; padding: 10px 24px 20px; gap: 2px; }
  .main-nav a { display: block; padding: 12px 10px; }
  .nav-toggle { display: inline-flex; }
}

.hero {
  padding: 64px 0 72px;
  background: linear-gradient(180deg, var(--paper) 0%, var(--white) 100%);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-light);
  color: var(--accent-dark);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.hero p.lead {
  font-size: 1.1rem;
  color: var(--slate);
  max-width: 46ch;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.hero-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line-soft);
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }

.disclosure-banner {
  background: var(--accent-light);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  color: var(--accent-dark);
  padding: 12px 0;
  font-size: 0.9rem;
}
.disclosure-banner .container { display: flex; align-items: center; gap: 10px; }
.disclosure-banner i { font-size: 1.1rem; flex-shrink: 0; }

section { padding: 72px 0; }
.section-alt { background: var(--fog); }
.section-head { max-width: 640px; margin: 0 auto 44px; text-align: center; }
.section-head p { color: var(--slate); }
.kicker {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

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

@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
}
@media (max-width: 620px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card .icon-badge { margin-bottom: 16px; }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--slate); margin-bottom: 0; }

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: var(--accent-light);
  color: var(--accent-dark);
  font-size: 1.4rem;
}

.steps { counter-reset: step; }
.step {
  display: flex;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-soft);
}
.step:last-child { border-bottom: none; }
.step-num {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-num { font-size: 2.1rem; font-weight: 800; color: var(--ink); }
.stat-label { color: var(--slate-light); font-size: 0.88rem; }
@media (max-width: 700px) { .stats { grid-template-columns: repeat(2, 1fr); } }

.category-tags { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.category-tags .tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 9px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.category-tags .tag i { color: var(--accent); }

.cta-band {
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 52px;
  text-align: center;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: #c6ccd4; max-width: 52ch; margin: 0 auto 24px; }
.cta-band .btn-primary { background: var(--white); color: var(--ink); }
.cta-band .btn-primary:hover { background: var(--fog); }

.page-header {
  padding: 52px 0 44px;
  background: var(--fog);
  border-bottom: 1px solid var(--line-soft);
}
.breadcrumbs {
  font-size: 0.85rem;
  color: var(--slate-light);
  margin-bottom: 14px;
}
.breadcrumbs a { color: var(--slate-light); }
.breadcrumbs a:hover { color: var(--accent); }
.page-header p.lead { color: var(--slate); max-width: 60ch; }

.prose { max-width: 780px; margin: 0 auto; }
.prose h2 { margin-top: 2em; }
.prose h2:first-child { margin-top: 0; }
.prose ul, .prose ol { padding-left: 1.3em; color: var(--slate); }
.prose li { margin-bottom: 0.5em; }
.prose p { color: var(--slate); }
.prose table { width: 100%; border-collapse: collapse; margin: 1.5em 0; }
.prose th, .prose td {
  text-align: left;
  padding: 10px 14px;
  border: 1px solid var(--line);
  font-size: 0.92rem;
  color: var(--slate);
}
.prose th { background: var(--fog); color: var(--ink); }
.updated-badge {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.toc {
  background: var(--fog);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  margin-bottom: 40px;
}
.toc h2 { font-size: 1rem; margin-bottom: 12px; }
.toc ol { margin: 0; padding-left: 1.2em; }
.toc a { color: var(--slate); font-weight: 600; }
.toc a:hover { color: var(--accent); }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 760px) { .team-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .team-grid { grid-template-columns: 1fr; } }
.team-card { text-align: center; }
.team-avatar {
  width: 88px; height: 88px;
  border-radius: 50%;
  margin: 0 auto 14px;
  background: var(--accent-light);
  color: var(--accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
}
.team-card h3 { margin-bottom: 2px; }
.team-role { color: var(--accent); font-weight: 600; font-size: 0.88rem; }

.value-list { display: grid; gap: 20px; grid-template-columns: repeat(2, 1fr); }
@media (max-width: 700px) { .value-list { grid-template-columns: 1fr; } }
.value-item { display: flex; gap: 16px; }
.value-item .icon-badge { flex-shrink: 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info-list { list-style: none; margin: 24px 0 0; padding: 0; }
.contact-info-list li {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--line-soft);
}
.contact-info-list li:first-child { border-top: none; }
.contact-info-list .icon-badge { flex-shrink: 0; width: 42px; height: 42px; font-size: 1.2rem; }
.contact-info-list strong { display: block; color: var(--ink); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 3px; }
.contact-info-list span, .contact-info-list a { color: var(--slate); }

.map-frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  margin-top: 24px;
}
.map-frame img { width: 100%; }

.form-card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-sm);
}
.form-row { margin-bottom: 20px; }
.form-row label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
  margin-bottom: 7px;
}
.form-row .req { color: #a4443c; }
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.96rem;
  color: var(--ink-soft);
  background: var(--paper);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-light);
  background: var(--white);
}
.form-row textarea { resize: vertical; min-height: 130px; }
.form-two { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 560px) { .form-two { grid-template-columns: 1fr; } }
.form-note { font-size: 0.82rem; color: var(--slate-light); margin-top: 10px; }
.form-error {
  display: none;
  color: #a4443c;
  font-size: 0.82rem;
  margin-top: 6px;
}
.form-row.has-error input,
.form-row.has-error textarea,
.form-row.has-error select { border-color: #a4443c; }
.form-row.has-error .form-error { display: block; }

.form-status {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 0.92rem;
}
.form-status.is-success { display: flex; background: #eaf3ee; color: var(--success); }
.form-status.is-error { display: flex; background: #f7e9e8; color: #a4443c; }

.faq-item {
  border-bottom: 1px solid var(--line-soft);
}
.faq-item:first-child { border-top: 1px solid var(--line-soft); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 4px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--font);
}
.faq-question i { flex-shrink: 0; color: var(--accent); transition: transform 0.2s ease; font-size: 1.2rem; }
.faq-question[aria-expanded="true"] i { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  color: var(--slate);
}
.faq-answer-inner { padding: 0 4px 20px; }
.faq-item.is-open .faq-answer { max-height: 400px; }

.site-footer {
  background: var(--ink);
  color: #c6ccd4;
  padding: 56px 0 26px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid #3a3f47;
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand img { width: 34px; height: 34px; border-radius: 8px; }
.footer-brand span { color: var(--white); font-weight: 700; font-size: 1.05rem; }
.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: #c6ccd4; }
.footer-col a:hover { color: var(--white); }
.footer-desc { color: #9aa1ab; font-size: 0.92rem; max-width: 36ch; }
.footer-contact li { display: flex; gap: 8px; align-items: flex-start; color: #c6ccd4; font-size: 0.92rem; margin-bottom: 12px; }
.footer-contact i { color: #8b96a3; margin-top: 3px; flex-shrink: 0; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 22px;
  font-size: 0.85rem;
  color: #8b96a3;
}
.footer-bottom a { color: #8b96a3; }
.footer-bottom a:hover { color: var(--white); }
.footer-legal-links { display: flex; gap: 16px; flex-wrap: wrap; }
.disclaimer-note {
  font-size: 0.8rem;
  color: #8b96a3;
  border-top: 1px solid #3a3f47;
  margin-top: 22px;
  padding-top: 18px;
  max-width: 90ch;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 22px 24px;
  z-index: 300;
  display: none;
}
.cookie-banner.is-visible { display: block; animation: cookie-in 0.35s ease; }
@keyframes cookie-in {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner-head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.cookie-banner-head i { color: var(--accent); font-size: 1.3rem; }
.cookie-banner-head strong { color: var(--ink); font-size: 1rem; }
.cookie-banner p { font-size: 0.88rem; color: var(--slate); margin-bottom: 16px; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-actions .btn { padding: 10px 18px; font-size: 0.88rem; }

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  display: none;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  z-index: 90;
}
.back-to-top.is-visible { display: flex; }

@media (max-width: 640px) {
  section { padding: 52px 0; }
  .cta-band { padding: 36px 24px; }
  .form-card { padding: 24px; }
}
