

:root {
  
  --c-bg: #f8f9fa;
  --c-fg: #1a2332;
  --c-muted: #64748b;
  --c-accent: #2563eb;
  --c-accent-light: #dbeafe;
  --c-accent-dark: #1e40af;
  --c-secondary: #06b6d4;
  --c-tertiary: #14b8a6;
  --c-border: #e2e8f0;
  --c-surface: #ffffff;

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;

  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;

  --font-display: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --lh-tight: 1.2;
  --lh-normal: 1.5;
  --lh-relaxed: 1.75;

  --shadow-sm: 0 1px 2px rgba(26, 35, 50, 0.08);
  --shadow-md: 0 4px 12px rgba(26, 35, 50, 0.1);
  --shadow-lg: 0 12px 32px rgba(26, 35, 50, 0.12);
}

html {
  background-color: var(--c-bg);
}

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

body {
  font-family: var(--font-body);
  color: var(--c-fg);
  background-color: var(--c-bg);
  line-height: var(--lh-normal);
  font-size: clamp(14px, 2vw, 16px);
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--c-accent);
  outline-offset: 2px;
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 6vw, 48px);
  font-weight: 700;
  line-height: var(--lh-tight);
  color: var(--c-fg);
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 5vw, 36px);
  font-weight: 700;
  line-height: var(--lh-tight);
  color: var(--c-fg);
}

h3 {
  font-family: var(--font-display);
  font-size: clamp(18px, 4vw, 24px);
  font-weight: 600;
  line-height: var(--lh-tight);
  color: var(--c-fg);
}

p {
  line-height: var(--lh-relaxed);
  color: var(--c-muted);
}

strong {
  font-weight: 600;
  color: var(--c-fg);
}

a {
  color: var(--c-accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--c-accent-dark);
}

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

.grid {
  display: grid;
  gap: var(--space-8);
}

.grid-2 {
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

.grid-3 {
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

@media (min-width: 641px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
  .grid-3 {
    grid-template-columns: 1fr 1fr 1.2fr;
  }
}

@media (min-width: 1025px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-1 { gap: var(--space-1); }
.gap-2 { gap: var(--space-2); }
.gap-3 { gap: var(--space-3); }
.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }
.gap-8 { gap: var(--space-8); }

.p-4 { padding: var(--space-4); }
.p-6 { padding: var(--space-6); }
.p-8 { padding: var(--space-8); }
.py-8 { padding-top: var(--space-8); padding-bottom: var(--space-8); }
.py-12 { padding-top: var(--space-12); padding-bottom: var(--space-12); }
.py-16 { padding-top: var(--space-16); padding-bottom: var(--space-16); }
.px-4 { padding-left: var(--space-4); padding-right: var(--space-4); }

.mx-auto { margin-left: auto; margin-right: auto; }
.my-4 { margin-top: var(--space-4); margin-bottom: var(--space-4); }
.my-8 { margin-top: var(--space-8); margin-bottom: var(--space-8); }
.mb-2 { margin-bottom: var(--space-2); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }
.mt-4 { margin-top: var(--space-4); }

.border { border: 1px solid var(--c-border); }
.rounded { border-radius: var(--radius-md); }

.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }

a {
  color: var(--c-accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--c-accent-dark);
  text-decoration: underline;
}

a:focus-visible {
  outline: 3px solid var(--c-accent);
  outline-offset: 2px;
}
.text-left { text-align: left; }

.text-muted { color: var(--c-muted); }
.text-fg { color: var(--c-fg); }
.text-accent { color: var(--c-accent); }
.bg-accent { background-color: var(--c-accent); }
.bg-surface { background-color: var(--c-surface); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

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

.btn-primary:hover {
  background-color: var(--c-accent-dark);
}

.btn-secondary {
  background-color: var(--c-surface);
  color: var(--c-accent);
  border: 2px solid var(--c-accent);
}

.btn-secondary:hover {
  background-color: var(--c-accent-light);
}

.btn-text {
  background-color: transparent;
  color: var(--c-accent);
  padding: var(--space-2) 0;
}

.btn-text:hover {
  color: var(--c-accent-dark);
}

.card {
  background-color: var(--c-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.card-header {
  font-size: clamp(16px, 3vw, 20px);
  font-weight: 600;
  color: var(--c-fg);
}

.card-body {
  color: var(--c-muted);
  line-height: var(--lh-relaxed);
}

.icon {
  width: 3rem;
  height: 3rem;
  display: block;
}

.block {
  padding: var(--space-16) var(--space-4);
}

.block-dark {
  background-color: #f1f5f9;
  color: var(--c-fg);
}

.block-dark p {
  color: var(--c-muted);
}

.block-dark strong {
  color: var(--c-fg);
}

.block-light {
  background-color: var(--c-bg);
}

.image-placeholder {
  width: 100%;
  aspect-ratio: 16 / 10;
  background-color: var(--c-border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-muted);
  font-size: 0.875rem;
  margin: var(--space-6) 0;
  overflow: hidden;
}

.image-placeholder img {
  width: 100%;
  object-fit: cover;
  display: block;
}

header {
  background-color: var(--c-surface);
  padding: var(--space-4);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.logo {
  width: 2.5rem;
  height: 2.5rem;
  display: block;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--c-fg);
  margin: 0;
}

footer {
  background-color: #f1f5f9;
  color: var(--c-fg);
  padding: var(--space-12) var(--space-4);
  margin-top: var(--space-16);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--space-12);
  margin-bottom: var(--space-12);
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
  }
}

@media (min-width: 641px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.footer-section h3 {
  margin-bottom: var(--space-4);
  color: var(--c-fg);
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: var(--space-2);
}

.footer-section a {
  color: var(--c-muted);
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.footer-section a:hover {
  color: var(--c-fg);
}

.footer-divider {
  border-top: 1px solid var(--c-border);
  padding-top: var(--space-6);
  margin-top: var(--space-6);
  text-align: center;
  color: var(--c-muted);
  font-size: 0.875rem;
}

.footer-divider a {
  color: var(--c-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-divider a:hover,
.footer-divider a:focus-visible {
  color: var(--c-accent);
  text-decoration: underline;
}

@media (max-width: 640px) {
  .block {
    padding: var(--space-12) var(--space-4);
  }
  
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
}

@media (min-width: 641px) and (max-width: 1024px) {
  .block {
    padding: var(--space-12) var(--space-6);
  }
}

@media (min-width: 1025px) {
  .block {
    padding: var(--space-16) var(--space-8);
  }
}

.timeline-item { padding: 20px; }
.value-card { background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
.value-card img { width: 100%; height: 220px; object-fit: cover; display: block; }
.trust-metric-number { font-size: 2rem; font-weight: 800; display: block; margin-bottom: 8px; }
.footer-section { padding: 80px 0; }

html { color: #111111 !important; }
.bg-surface { color: #111111 !important; }
.btn-secondary:hover { color: #111111 !important; }

.card { color: #111111 !important; }
.block-light { color: #111111 !important; }

.image-placeholder { color: #111111 !important; }

header { color: #111111 !important; }
.value-card { color: #111111 !important; }
