:root {
  --bg: #f6f7fb;
  --card: #ffffff;
  --muted: #4b5563;
  --text: #0f172a;
  --accent: #1b60f1;
  --accent-2: #0b1838;
  --border: rgba(15, 23, 42, 0.08);
  --shadow: 0 16px 50px rgba(15, 23, 42, 0.08);
  --radius: 18px;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: #1449b8;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(246, 247, 251, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 15px;
}

.brand {
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--text);
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--text);
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 10px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a:hover {
  color: var(--accent);
  background: rgba(27, 96, 241, 0.08);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: 1px solid var(--accent);
  box-shadow: 0 10px 30px rgba(27, 96, 241, 0.25);
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.15s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(27, 96, 241, 0.3);
}

.btn.ghost {
  background: transparent;
  color: var(--accent);
  box-shadow: none;
}

.btn.ghost:hover {
  background: rgba(27, 96, 241, 0.08);
  box-shadow: none;
}

.btn-small {
  padding: 10px 14px;
  font-size: 0.95rem;
  box-shadow: none;
}

.hero {
  background: linear-gradient(120deg, #f6f8ff 0%, #e6eeff 50%, #f6f7fb 100%);
  padding: 110px 0 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 1.2;
  margin: 10px 0 12px;
}

.hero .lede {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 620px;
}

.eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
  margin: 0 0 8px;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 22px 0 14px;
}

.pill-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.pill {
  background: rgba(27, 96, 241, 0.1);
  color: var(--accent);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
}

.hero-visual .glass-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.card-meta {
  padding: 16px 18px 20px;
}

.card-meta p {
  margin: 6px 0;
}

.muted {
  color: var(--muted);
}

.section {
  padding: 80px 0;
}

.section.muted {
  background: #eef2f8;
}

.section-heading {
  margin-bottom: 28px;
}

.section h2 {
  margin: 0 0 8px;
  font-size: 2rem;
}

.split {
  display: grid;
  gap: 32px;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
}

.highlight-panel {
  background: var(--card);
  padding: 22px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.highlight-panel ul {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin: 26px 0 0;
}

.stat-card {
  background: #fff;
  padding: 16px 18px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.05);
}

.stat-value {
  display: block;
  font-weight: 800;
}

.stat-label {
  display: block;
  color: var(--muted);
  font-size: 0.95rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.card {
  background: var(--card);
  padding: 22px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.05);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.card ul {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  align-items: center;
  gap: 18px;
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06);
}

.logo-grid img {
  max-width: 100%;
  height: auto;
  filter: saturate(0.4) brightness(0.9);
  transition: filter 0.2s ease;
}

.logo-grid .logo-break {
  grid-column: 1 / -1;
  height: 0;
  display: block;
}

.logo-grid img:hover {
  filter: saturate(1) brightness(1);
}

.logo-grid img.logo-ema {
  filter: saturate(1) brightness(1.05);
  max-width: 420px;
  width: 100%;
  margin: 0 auto;
  grid-column: span 2;
}

.accent {
  background: linear-gradient(120deg, #0f172a, #1b60f1);
  color: #fff;
}

.contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.contact-card .btn.ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}

.contact-card .btn.ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.footer {
  padding: 40px 0 50px;
  background: #0b1120;
  color: #e5e7eb;
}

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

.footer .brand {
  color: #fff;
}

.footer .muted {
  color: #b6bdce;
  margin: 6px 0 0;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #e5e7eb;
  padding: 6px 10px;
  border-radius: 10px;
}

.footer-links a:hover {
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 900px) {
  .hero-grid,
  .split,
  .contact-card {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero {
    padding: 90px 0 70px;
  }

  .nav-links {
    display: none;
  }
}

@media (max-width: 600px) {
  .btn,
  .btn-small {
    width: 100%;
  }

  .hero-copy h1 {
    font-size: 2rem;
  }

  .hero {
    padding-top: 80px;
  }
}
