:root {
  --bg: #0b1220;
  --panel: #111a2e;
  --panel-2: #16213a;
  --card: #ffffff;
  --text: #1f2937;
  --muted: #667085;
  --brand: #2c4a8f;
  --brand-2: #496fe3;
  --accent: #00b8d9;
  --border: #e5e7eb;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
  line-height: 1.55;
}

a { color: inherit; }
.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(11, 18, 32, 0.85);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  color: #fff;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  /* allow brand to size without forcing nav to overflow */
  flex: 0 1 auto;
}

.logo {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #fff 0%, #e9eefc 100%);
  box-shadow: 0 10px 25px rgba(0,0,0,.18);
  flex: none;
  overflow: hidden;
}

.logo img {
  width: 30px;
  height: auto;
  display: block;
}

.brand h1 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.1;
}

.brand p {
  margin: 4px 0 0;
  color: rgba(255,255,255,0.76);
  font-size: 0.92rem;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  /* allow buttons to wrap to a new line when space is tight */
  flex-wrap: wrap;
  flex: 0 1 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  box-shadow: 0 10px 22px rgba(44,74,143,.24);
}

.btn-secondary {
  color: #fff;
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 46px 0 20px;
  background:
    radial-gradient(circle at 20% 15%, rgba(73,111,227,0.20), transparent 30%),
    radial-gradient(circle at 80% 20%, rgba(0,184,217,0.15), transparent 28%),
    linear-gradient(180deg, #0b1220 0%, #111b31 100%);
  color: #fff;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.88);
  border: 1px solid rgba(255,255,255,.08);
  font-size: .92rem;
  margin-bottom: 18px;
}

.hero h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 14ch;
}

.hero p {
  margin: 0 0 24px;
  max-width: 62ch;
  color: rgba(255,255,255,.78);
  font-size: 1.05rem;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  max-width: 640px;
}

.stat {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 10px;
}

.stat strong {
  display: block;
  font-size: 1.45rem;
  margin-bottom: 6px;
}

.stat span {
  color: rgba(255,255,255,.75);
  font-size: .92rem;
}

.hero-card {
  background: rgba(255,255,255,.96);
  color: var(--text);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.hero-card h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
  color: var(--brand);
}

.checklist {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid var(--border);
}

.check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex: none;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  margin-top: 2px;
}

.section {
  padding: 36px 0;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 14px;
}

.section-header h3 {
  margin: 0 0 10px;
  font-size: clamp(1.6rem, 2.2vw, 2.3rem);
  letter-spacing: -0.02em;
}

.section-header p {
  margin: 0;
  color: var(--muted);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px;
  box-shadow: var(--shadow);
  transition: transform .15s ease, box-shadow .15s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 45px rgba(15, 23, 42, 0.12);
}

.icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(44,74,143,.12), rgba(0,184,217,.12));
  color: var(--brand);
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.card h4 {
  margin: 0 0 10px;
  font-size: 1.08rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: center;
}

.panel {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.panel h4 {
  margin: 0 0 10px;
  font-size: 1.25rem;
  color: var(--brand);
}

.panel p, .panel li { color: var(--muted); }
.panel ul {
  padding-left: 20px;
  margin: 16px 0 0;
}

.logos {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 18px;
  align-items: center;
}

.logo-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  height: 52px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--muted);
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(15,23,42,.05);
  padding: 0 14px;
  /* allow pills to shrink on small screens and not force overflow */
  flex: 0 1 auto;
  min-width: 0;
  max-width: 34ch;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.logo-pill img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.cta-band {
  padding: 36px 0;
}

.cta-box {
  background: linear-gradient(135deg, var(--brand) 0%, #3a5fd6 45%, var(--accent) 100%);
  color: #fff;
  border-radius: 24px;
  padding: 20px;
  box-shadow: 0 12px 26px rgba(44,74,143,.18);
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 12px;
  align-items: center;
}

.cta-box h3 {
  margin: 0 0 10px;
  font-size: clamp(1.5rem, 2.2vw, 2.2rem);
}

.cta-box p {
  margin: 0;
  color: rgba(255,255,255,.88);
  max-width: 62ch;
}

.contact-card {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px;
  padding: 12px;
}

.contact-card strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.contact-card a {
  display: block;
  color: #fff;
  text-decoration: none;
  margin: 6px 0;
  /* Allow long email/phone strings to wrap on small screens */
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.footer {
  padding: 12px 0 18px;
  color: var(--muted);
  font-size: 0.88rem;
  text-align: center;
}

@media (max-width: 920px) {
  .hero-grid, .split, .cta-box, .grid {
    grid-template-columns: 1fr;
  }
  .stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .topbar-inner { flex-direction: column; align-items: flex-start; }
  .nav-actions { width: 100%; }
  .btn { width: 100%; }
  .hero { padding-top: 46px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .section, .cta-band { padding: 56px 0; }
  .logos { gap: 8px; }
  .logo-pill { min-width: 0; height: 44px; padding: 0 10px; font-size: 0.95rem; }
  .logo-pill img { max-height: 28px; }
}
