:root {
  --bg: #ffffff;
  --text: #111827;
  --muted: #6b7280;
  --line: #e5e7eb;
  --brand: #d88a1c;
  --brand-dark: #a86407;
  --surface: #f8fafc;
  --surface-2: #fff7ed;
  --dark: #111827;
  --dark-2: #1f2937;
  --radius: 20px;
  --shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(229,231,235,0.85);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 1rem;
}
.brand img {
  height: 52px;
  width: auto;
  border-radius: 8px;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
  align-items: center;
}
.nav-links a {
  font-weight: 600;
  color: #374151;
}
.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.65rem 0.9rem;
  font-weight: 600;
}
.hero {
  padding: 5rem 0 4rem;
  background: linear-gradient(180deg, #fff7ed 0%, #ffffff 70%);
}
.hero-grid, .split-grid, .footer-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}
.hero-grid { grid-template-columns: 1.2fr 0.9fr; }
.split-grid { grid-template-columns: 1fr 1fr; }
.footer-grid { grid-template-columns: 1.1fr 1fr 0.8fr; }
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--brand-dark);
  margin-bottom: 0.75rem;
}
.eyebrow.light { color: #fdba74; }
h1, h2, h3 {
  margin: 0 0 0.85rem;
  line-height: 1.15;
}
h1 { font-size: clamp(2.3rem, 5vw, 4.2rem); max-width: 13ch; }
h2 { font-size: clamp(1.8rem, 3vw, 3rem); }
h3 { font-size: 1.25rem; }
.lead, .section-heading p { color: #4b5563; font-size: 1.05rem; }
.hero-points, .card ul, .info-panel ul {
  margin: 1.3rem 0 0;
  padding-left: 1.2rem;
  color: #374151;
}
.hero-card, .card, .info-panel, .cta-box {
  background: #fff;
  border: 1px solid rgba(229,231,235,0.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-card { padding: 1rem; }
.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.stat-grid article {
  padding: 1.2rem;
  background: var(--surface);
  border-radius: 18px;
  border: 1px solid #edf2f7;
}
.stat-grid h3 { color: var(--brand-dark); }
.hero-actions, .cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.25rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.3rem;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.2s ease;
}
.btn-primary {
  background: var(--brand);
  color: white;
}
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-1px); }
.btn-secondary {
  border: 1px solid #d1d5db;
  background: #fff;
}
.btn-secondary:hover { background: #f9fafb; }
.section { padding: 5rem 0; }
.section.muted { background: #f8fafc; }
.section.dark { background: linear-gradient(180deg, #111827 0%, #1f2937 100%); }
.section-heading { max-width: 780px; margin-bottom: 2rem; }
.section-heading.narrow { max-width: 740px; }
.light-text h2, .light-text p { color: #fff; }
.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.trust-bar > div {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
}
.trust-label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 0.4rem;
}
.card-grid {
  display: grid;
  gap: 1.2rem;
}
.card-grid.three { grid-template-columns: repeat(3, 1fr); }
.card-grid.four { grid-template-columns: repeat(4, 1fr); }
.card { padding: 1.4rem; }
.card.inverse {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.08);
  color: #f9fafb;
}
.card.inverse ul { color: #e5e7eb; }
.info-panel {
  padding: 1.7rem;
  height: 100%;
}
.accent-panel {
  background: var(--surface-2);
  border-color: #fed7aa;
}
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.timeline article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.4rem;
  box-shadow: var(--shadow);
}
.timeline span {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand);
  color: white;
  font-weight: 800;
  margin-bottom: 1rem;
}
.cta-section {
  background: linear-gradient(180deg, #fff 0%, #fff7ed 100%);
}
.cta-box {
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.site-footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 2.5rem 0;
}
.footer-logo {
  height: 44px;
  width: auto;
  margin-bottom: 0.8rem;
  border-radius: 6px;
}
.site-footer p { margin: 0.3rem 0; }
@media (max-width: 1000px) {
  .hero-grid, .split-grid, .footer-grid, .card-grid.three, .card-grid.four, .timeline, .trust-bar {
    grid-template-columns: 1fr 1fr;
  }
  .cta-box { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 720px) {
  .menu-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    right: 1rem;
    top: 76px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 1rem;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: flex-start;
    min-width: 220px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .hero-grid, .split-grid, .footer-grid, .card-grid.three, .card-grid.four, .timeline, .trust-bar, .stat-grid {
    grid-template-columns: 1fr;
  }
  .hero { padding-top: 3.8rem; }
  h1 { max-width: 100%; }
}
