/* Basic Reset */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

:root {
  --bg: #f7f9fc;
  --surface: #ffffff;
  --surface-alt: #f1f5f9;
  --text: #111827;
  --muted: #6b7280;
  --accent: #1f4ed8;
  --accent-2: #0ea5e9;
  --maxw: 1080px;
  --radius: 14px;
  --shadow: 0 6px 18px rgba(17,24,39,0.08);
  --border: 1px solid rgba(17,24,39,0.08);
}

body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background: var(--surface);
  border-bottom: var(--border);
  z-index: 50;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: inherit; }
.brand-logo { height: 40px; width: auto; }
.brand-name { font-weight: 700; letter-spacing: 0.2px; }
.nav { display: flex; gap: 18px; align-items: center; }
.nav a { color: var(--text); text-decoration: none; font-weight: 600; }
.nav a:hover { color: var(--accent); }

/* Hero */
.hero {
  background: linear-gradient(135deg, rgba(31,78,216,0.08) 0%, rgba(14,165,233,0.04) 100%),
              url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(31,78,216,0.03)" stroke-width="0.5"/></pattern></defs><rect width="1200" height="600" fill="white"/><rect width="1200" height="600" fill="url(%23grid)"/></svg>');
  background-size: cover;
  background-position: center;
}
.hero-inner { text-align: center; padding: 64px 24px 48px; }
.hero-title { font-size: 32px; font-weight: 700; margin: 0 0 8px; }
.hero-sub { font-size: 16px; color: var(--muted); margin: 0 0 18px; }
.hero-cta { display: inline-flex; gap: 12px; }

/* Buttons */
.btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), #3b63e6);
  color: white;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow);
  transition: transform 0.1s ease, box-shadow 0.1s ease;
}
.btn.small { padding: 10px 14px; }
.btn:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(17,24,39,0.12); }
.btn:active { transform: translateY(0); }
.btn.ghost { background: transparent; color: var(--accent); border: 2px solid rgba(31,78,216,0.25); }
.btn.ghost:hover { border-color: rgba(31,78,216,0.45); }

/* Sections */
.section { padding: 34px 0; background: var(--surface); }
.section.alt { background: var(--surface-alt); }
.section h2 { font-size: 24px; margin: 0 0 12px; }
.section p { margin: 8px 0; }

/* Layout & Cards */
.grid { display: grid; gap: 18px; }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card {
  background: var(--surface);
  border: var(--border);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(17,24,39,0.12); }
.card h3 { margin: 10px 0 6px; font-size: 18px; }
.card.location-card { text-align: center; }
.icon { width: 32px; height: 32px; color: var(--accent); margin-bottom: 8px; }
.icon-location { width: 28px; height: 28px; color: var(--accent); margin-bottom: 8px; }
.note { background: #ffffff; }
.bullets { margin: 0; padding-left: 18px; }
.bullets li { margin: 6px 0; color: var(--text); }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.stat { text-align: center; padding: 12px; border-radius: var(--radius); background: var(--surface-alt); border: var(--border); }
.stat-value { font-size: 28px; font-weight: 700; }
.stat-label { margin-top: 6px; color: var(--muted); }

/* Footer */
.footer { background: transparent; padding: 24px 0 36px; color: var(--muted); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.footer-nav { display: flex; gap: 12px; }
.footer-nav a { color: var(--muted); text-decoration: none; }
.footer-nav a:hover { color: var(--accent); }

/* Responsive */
@media (max-width: 900px) {
  .grid.two, .grid.three, .cards { grid-template-columns: 1fr; }
  .hero-title { font-size: 26px; }
  .brand-name { display: none; }
}
