/* ============================================================
   INSTRUVIA GROUP CARD
   ============================================================ */
.group-wrap {
  background: var(--off-white);
  padding: 0 3rem 2.5rem;
}
.group-card {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px 1fr;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.group-card-left {
  background: var(--charcoal);
  padding: 2rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
}
.group-card-eyebrow {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mint);
}
.group-card-name {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1;
}
.group-card-right {
  background: var(--white);
  padding: 1.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.group-card-body {
  font-size: 13px;
  color: var(--slate);
  line-height: 1.65;
  max-width: 480px;
  margin: 0;
}
.group-card-link {
  font-size: 12px;
  font-weight: 700;
  color: var(--teal);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.group-card-link:hover { color: var(--teal-mid); }

@media (max-width: 760px) {
  .group-wrap { padding: 0 1.25rem 2rem; }
  .group-card { grid-template-columns: 1fr; }
  .group-card-left { padding: 1.5rem; flex-direction: row; align-items: center; gap: 1rem; }
  .group-card-right { flex-direction: column; align-items: flex-start; gap: 1rem; padding: 1.5rem; }
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--charcoal);
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo { display:flex; align-items:center; gap:12px; }
.footer-name {
  font-size:12px;
  font-weight:700;
  letter-spacing:0.16em;
  text-transform:uppercase;
  color:rgba(255,255,255,0.80);
}
.footer-right {
  font-size: 11px;
  color: rgba(255,255,255,0.60);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.footer-built-by {
  font-size: 10px;
  color: rgba(255,255,255,0.32);
  letter-spacing: 0.05em;
}

.compliance {
  background: #0c181b;
  padding: 1.25rem 3rem;
  text-align: center;
}
.compliance p {
  font-size: 10px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 600px) {
  footer {
    padding: 2rem 1.25rem;
    flex-direction: column;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.12);
    gap: 0.75rem;
  }
  .footer-logo { justify-content: center; }
  .footer-name {
    font-size: 13px;
    color: rgba(255,255,255,0.90);
  }
  .footer-right {
    font-size: 12px;
    color: rgba(255,255,255,0.70);
    align-items: center;
  }
  .compliance {
    padding: 1rem 1.25rem;
  }
  .compliance p {
    font-size: 11px;
    color: rgba(255,255,255,0.55);
  }
}

.footer-group-link {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.60);
  text-decoration: none;
  margin-top: 5px;
  transition: color 0.2s;
}
.footer-group-link:hover { color: rgba(255,255,255,0.90); }

