@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

:root {
  --color-primary: #1a2b3c;
  --color-primary-light: #243447;
  --color-accent: #4a7c9e;
  --color-accent-light: #6096b8;
  --color-surface: #f7f8fa;
  --color-white: #ffffff;
  --color-text: #1a2b3c;
  --color-text-muted: #6b7a8d;
  --color-text-light: #9aa5b4;
  --color-border: #dde2e8;
  --color-border-light: #eef0f3;
  --color-success: #2d6a4f;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 3px rgba(26,43,60,0.07), 0 1px 2px rgba(26,43,60,0.05);
  --shadow-md: 0 4px 12px rgba(26,43,60,0.08), 0 2px 6px rgba(26,43,60,0.06);
  --shadow-lg: 0 10px 30px rgba(26,43,60,0.10), 0 4px 12px rgba(26,43,60,0.07);
  --max-width: 1200px;
  --nav-height: 76px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--color-primary); }

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border-light);
  z-index: 1000;
  transition: box-shadow 0.2s;
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

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

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

.brand-logo-placeholder {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-logo-placeholder span {
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: -0.3px;
}

.brand-name span {
  color: var(--color-accent);
}

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

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-muted);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-primary);
  background: var(--color-surface);
}

.nav-link.active {
  color: var(--color-accent);
}

.nav-cta {
  margin-left: 8px;
  padding: 9px 20px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s;
}

.nav-cta:hover {
  background: var(--color-accent);
  color: var(--color-white);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--color-text);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  padding: 16px 24px 24px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
  box-shadow: var(--shadow-md);
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav .nav-link {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 15px;
}

.mobile-nav .nav-cta {
  margin-left: 0;
  text-align: center;
  padding: 12px 20px;
}

.page-main {
  padding-top: var(--nav-height);
}

.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-primary);
}

.hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.22;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,43,60,0.85) 0%, rgba(26,43,60,0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--color-accent-light);
  margin-bottom: 20px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--color-accent-light);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 600;
  color: var(--color-white);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: normal;
  color: var(--color-accent-light);
}

.hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.78);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.2s;
  line-height: 1;
}

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

.btn-primary:hover {
  background: var(--color-accent-light);
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(74,124,158,0.35);
}

.btn-outline-white {
  background: transparent;
  color: var(--color-white);
  border: 1.5px solid rgba(255,255,255,0.45);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  color: var(--color-white);
  border-color: rgba(255,255,255,0.7);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 1.5px solid var(--color-border);
}

.btn-outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.15);
  flex-wrap: wrap;
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 600;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

.section {
  padding: 88px 0;
}

.section-sm {
  padding: 56px 0;
}

.section-alt {
  background: var(--color-surface);
}

.section-dark {
  background: var(--color-primary);
  color: var(--color-white);
}

.section-header {
  max-width: 640px;
  margin-bottom: 56px;
}

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

.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.section-dark .section-eyebrow {
  color: var(--color-accent-light);
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1.2;
  letter-spacing: -0.3px;
  margin-bottom: 16px;
}

.section-dark h2 {
  color: var(--color-white);
}

.section-lead {
  font-size: 17px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.section-dark .section-lead {
  color: rgba(255,255,255,0.7);
}

h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1.3;
  margin-bottom: 10px;
}

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

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--color-accent);
}

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

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  align-items: center;
}

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

.card p {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.page-hero {
  background: var(--color-primary);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 40%;
  background: linear-gradient(90deg, transparent, rgba(74,124,158,0.12));
  pointer-events: none;
}

.page-hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--color-accent-light);
  margin-bottom: 12px;
  display: block;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  color: var(--color-white);
  line-height: 1.15;
  letter-spacing: -0.3px;
  margin-bottom: 16px;
  max-width: 600px;
}

.page-hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  line-height: 1.7;
}

.divider {
  width: 48px;
  height: 3px;
  background: var(--color-accent);
  border-radius: 2px;
  margin: 0 0 32px 0;
}

.divider.centered {
  margin-left: auto;
  margin-right: auto;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--color-text-muted);
}

.feature-list li .check-icon {
  width: 20px;
  height: 20px;
  background: rgba(74,124,158,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--color-accent);
}

.img-cover {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  display: block;
}

.img-cover.h-400 { height: 400px; }
.img-cover.h-320 { height: 320px; }
.img-cover.h-480 { height: 480px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text);
  background: var(--color-white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(74,124,158,0.12);
}

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

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

.form-row .form-group {
  margin-bottom: 0;
}

.form-note {
  font-size: 12px;
  color: var(--color-text-light);
  margin-top: 12px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-accent);
}

.contact-info-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--color-text-light);
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 15px;
  color: var(--color-text);
  line-height: 1.5;
}

.contact-info-value a {
  color: var(--color-text);
}

.contact-info-value a:hover {
  color: var(--color-accent);
}

.success-message {
  display: none;
  background: #f0faf5;
  border: 1px solid #a7d7c1;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  color: var(--color-success);
  font-size: 14px;
  font-weight: 500;
  margin-top: 16px;
  align-items: center;
  gap: 10px;
}

.success-message.shown {
  display: flex;
}

.prose {
  max-width: 760px;
}

.prose h2 {
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 14px;
}

.prose h3 {
  font-size: 18px;
  margin-top: 28px;
  margin-bottom: 10px;
}

.prose p {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.prose ul, .prose ol {
  padding-left: 24px;
  margin-bottom: 16px;
}

.prose li {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 6px;
}

.prose strong {
  color: var(--color-text);
  font-weight: 600;
}

.prose a {
  color: var(--color-accent);
}

.prose .last-updated {
  font-size: 13px;
  color: var(--color-text-light);
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-border-light);
}

.toc {
  background: var(--color-surface);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin-bottom: 40px;
  max-width: 400px;
}

.toc-title {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--color-text-light);
  margin-bottom: 12px;
}

.toc ol {
  padding-left: 20px;
  margin: 0;
}

.toc li {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 6px;
  line-height: 1.4;
}

.toc li a {
  color: var(--color-text-muted);
}

.toc li a:hover {
  color: var(--color-accent);
}

.value-card {
  padding: 28px;
  border-left: 3px solid var(--color-accent);
  background: var(--color-white);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-bottom: 20px;
}

.value-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 6px;
}

.value-card p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

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

.team-card {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.team-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.team-card-body {
  padding: 20px 24px 24px;
}

.team-card-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 2px;
}

.team-card-role {
  font-size: 13px;
  color: var(--color-accent);
  font-weight: 500;
  margin-bottom: 10px;
}

.team-card-bio {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.milestone-list {
  border-left: 2px solid var(--color-border);
  padding-left: 32px;
}

.milestone {
  position: relative;
  padding-bottom: 32px;
}

.milestone:last-child {
  padding-bottom: 0;
}

.milestone::before {
  content: '';
  position: absolute;
  left: -39px;
  top: 4px;
  width: 14px;
  height: 14px;
  background: var(--color-accent);
  border-radius: 50%;
  border: 2px solid var(--color-white);
  box-shadow: 0 0 0 2px var(--color-accent);
}

.milestone-year {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-accent);
  letter-spacing: 0.8px;
  margin-bottom: 4px;
}

.milestone-text {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.milestone-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.service-icon-block {
  width: 64px;
  height: 64px;
  background: rgba(74,124,158,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--color-accent);
}

.service-card {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.tag {
  display: inline-block;
  padding: 4px 10px;
  background: var(--color-surface);
  border: 1px solid var(--color-border-light);
  border-radius: 20px;
  font-size: 12px;
  color: var(--color-text-muted);
  margin-right: 6px;
  margin-bottom: 4px;
}

.disclaimer-box {
  background: #f0f4f8;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-top: 48px;
}

.disclaimer-box p {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-primary);
  color: var(--color-white);
  z-index: 9999;
  padding: 20px 24px;
  display: none;
  border-top: 3px solid var(--color-accent);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.cookie-banner.visible {
  display: block;
}

.cookie-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 260px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
}

.cookie-text strong {
  color: var(--color-white);
}

.cookie-text a {
  color: var(--color-accent-light);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.btn-cookie-accept {
  padding: 10px 22px;
  background: var(--color-accent);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-cookie-accept:hover {
  background: var(--color-accent-light);
}

.btn-cookie-decline {
  padding: 10px 22px;
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-cookie-decline:hover {
  border-color: rgba(255,255,255,0.55);
  color: var(--color-white);
}

.site-footer {
  background: var(--color-primary);
  color: rgba(255,255,255,0.7);
  padding-top: 64px;
}

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

.footer-brand .brand-name {
  color: var(--color-white);
  font-size: 18px;
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.65;
  margin-top: 12px;
  color: rgba(255,255,255,0.58);
  max-width: 260px;
}

.footer-heading {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--color-white);
}

.footer-contact p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin-bottom: 6px;
}

.footer-contact a {
  color: rgba(255,255,255,0.65);
}

.footer-contact a:hover {
  color: var(--color-white);
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.38);
}

.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal a {
  font-size: 13px;
  color: rgba(255,255,255,0.38);
}

.footer-legal a:hover {
  color: rgba(255,255,255,0.7);
}

.badge-regulated {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin-top: 16px;
}

.breadcrumb {
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border-light);
}

.breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--color-text-light);
}

.breadcrumb-inner a {
  color: var(--color-text-muted);
}

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

.stat-block {
  text-align: center;
  padding: 32px 24px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .main-nav, .nav-cta { display: none; }
  .mobile-menu-btn { display: flex; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-stats { gap: 24px; }
  .hero { min-height: 540px; }
  .section { padding: 64px 0; }
  .team-grid { grid-template-columns: 1fr; }
  .cookie-inner { flex-direction: column; align-items: flex-start; }
  .hero h1 { font-size: 32px; }
}

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