:root {
  --brand-dark: #2362b8;
  --brand-soft: #e8f6f5;
  --brand-ink: #0f2b50;
  --brand-cta: #00beb1;
  --brand-accent: #f4ba60;
  --brand: #2362b8;
  --ink: #0f2b50;
  --bg: #fbfdff;
  --muted: #64748b;
}

body {
  background: #fbfdff;
}

h1, h2, h3 {
  color: var(--brand-ink);
}

a {
  color: var(--brand-dark);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--brand-cta);
}

.sgi-hero {
  background: linear-gradient(135deg, rgba(35, 98, 184, 0.12), rgba(0, 190, 177, 0.08));
  border-bottom: 1px solid rgba(35, 98, 184, 0.18);
  padding: 3.5rem 0 3rem;
  margin-bottom: 2.5rem;
}

.sgi-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 0.75rem;
}

.sgi-hero-title {
  font-size: clamp(2.2rem, 3vw, 3rem);
  margin: 0 0 1rem;
}

.sgi-hero-copy {
  max-width: 52rem;
  font-size: 1.05rem;
  color: #2b4752;
}

.sgi-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.sgi-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.3rem;
  border-radius: 999px;
  background: var(--brand-cta);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  box-shadow: 0 12px 24px rgba(0, 190, 177, 0.2);
}

.sgi-btn:hover {
  background: var(--brand-dark);
  color: #fff;
}

.sgi-btn-outline {
  background: #fff;
  color: var(--brand-dark);
  border-color: rgba(35, 98, 184, 0.35);
}

.sgi-btn-outline:hover {
  background: var(--brand-soft);
  color: var(--brand-dark);
}

.sgi-band {
  background: var(--brand-soft);
  border: 1px solid rgba(35, 98, 184, 0.15);
  border-radius: 18px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.sgi-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.sgi-card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  padding: 1.4rem;
  box-shadow: 0 12px 30px rgba(9, 38, 56, 0.08);
}

.sgi-card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.sgi-pill {
  display: inline-block;
  background: rgba(244, 186, 96, 0.2);
  color: var(--brand-ink);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}

.sgi-hero-logo {
  display: block;
  width: min(320px, 70vw);
  margin-bottom: 1.5rem;
}

.sgi-feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.sgi-feature {
  padding: 1.2rem;
  border-radius: 14px;
  border: 1px solid rgba(35, 98, 184, 0.12);
  background: #fff;
}

.sgi-feature h4 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  color: var(--brand-ink);
}
