/**
 * Home marketing layout (hero, feature cards, CTA) — used by CMS home content
 * and static home fallback. Edit HTML in Admin → Content → Pages → Home;
 * adjust look here or in Admin custom CSS if you add a theme override.
 */
.hero-section {
  background: linear-gradient(135deg, #161C2D 0%, #1e2a3b 60%, #0d1520 100%);
  color: #fff;
  padding: 5rem 0 4rem;
  margin-bottom: 2rem;
  border-radius: 0 0 16px 16px;
  overflow: hidden;
}
.hero-section h1 { font-size: 2.8rem; font-weight: 800; line-height: 1.2; }
.hero-section h1 span { color: #6bcbf4; }
.hero-section p { color: rgba(255,255,255,.75); font-size: 1.15rem; max-width: 520px; }
.hero-badge {
  display: inline-block;
  background: rgba(107,203,244,.15);
  color: #6bcbf4;
  border: 1px solid rgba(107,203,244,.3);
  border-radius: 50px;
  padding: 4px 14px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
  margin-bottom: 1rem;
}
.feature-card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  transition: transform .2s, box-shadow .2s;
  height: 100%;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
}
.feature-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.cta-section {
  background: linear-gradient(135deg, #161C2D, #1e3a5f);
  color: #fff;
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
  margin-top: 3rem;
}
.cta-section h2 { font-weight: 700; }
.cta-section p { color: rgba(255,255,255,.75); }
.btn-brand {
  background: #6bcbf4;
  border-color: #6bcbf4;
  color: #161C2D;
  font-weight: 700;
}
.btn-brand:hover { background: #38b1ed; border-color: #38b1ed; color: #161C2D; }
.btn-outline-brand {
  border-color: #6bcbf4;
  color: #6bcbf4;
}
.btn-outline-brand:hover { background: #6bcbf4; color: #161C2D; }

/* Keep CTA text/buttons intact against later generic .cms-content rules. */
.cms-home-marketing .cta-section h2 {
  color: #fff !important;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 700;
  margin-top: 0;
}
.cms-home-marketing .cta-section p { color: rgba(255,255,255,.75); }
.cms-home-marketing .btn.btn-brand {
  background: #6bcbf4;
  border-color: #6bcbf4;
  color: #161C2D;
  font-weight: 700;
}
.cms-home-marketing .btn.btn-brand:hover {
  background: #38b1ed;
  border-color: #38b1ed;
  color: #161C2D;
}
.cms-home-marketing .btn.btn-outline-brand {
  border-color: #6bcbf4;
  color: #6bcbf4;
}
.cms-home-marketing .btn.btn-outline-brand:hover {
  background: #6bcbf4;
  color: #161C2D;
}
