/* Feature pages (/features, /features/{slug}, /about) */

.feature-hero {
  position: relative;
  padding: 120px 0 72px;
  background: linear-gradient(180deg, #001d3d 0%, #003566 100%);
  color: #fff;
  overflow: hidden;
}
.feature-hero__aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .35;
  pointer-events: none;
}
.feature-hero__aurora--1 { width: 420px; height: 420px; background: #ffc300; top: -100px; right: -100px; }
.feature-hero__aurora--2 { width: 460px; height: 460px; background: #0066b3; bottom: -140px; left: -140px; }
.feature-hero__inner { position: relative; max-width: 780px; margin: 0 auto; text-align: center; }
.feature-hero__eyebrow {
  display: inline-block;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(255, 195, 0, .18);
  border: 1px solid rgba(255, 195, 0, .35);
  color: #ffd60a;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
}
.feature-hero__title { font-size: clamp(28px, 4vw, 42px); font-weight: 800; margin: 0 0 14px; line-height: 1.4; }
.feature-hero__title span {
  background: linear-gradient(135deg, #ffd60a, #ffc300);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.feature-hero__desc { font-size: 16px; line-height: 1.95; color: #dadee3; margin: 0 auto 24px; max-width: 640px; }
.feature-hero__chips { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.feature-hero__chips span {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  font-size: 13px;
}

.feature-section { padding: 64px 0; }
.feature-section--alt { background: #f8fafc; }
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 768px) { .feature-grid { grid-template-columns: 1fr; } }
.feature-box {
  background: #fff;
  border: 1px solid #eef1f5;
  border-radius: 16px;
  padding: 24px;
}
.feature-box h3 { color: var(--color-1); font-size: 18px; margin: 0 0 8px; }
.feature-box p { color: #55606b; margin: 0; line-height: 1.85; font-size: 15px; }

.feature-benefits { list-style: none; padding: 0; margin: 0; }
.feature-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid #eef1f5;
  color: #333c46;
  line-height: 1.8;
}
.feature-benefits li:last-child { border-bottom: none; }
.feature-benefits svg { flex-shrink: 0; color: var(--color-2); margin-top: 4px; }

.feature-hub-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 992px) { .feature-hub-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .feature-hub-grid { grid-template-columns: 1fr; } }
.feature-hub-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #eef1f5;
  border-radius: 16px;
  padding: 22px;
  text-decoration: none;
  color: inherit;
  transition: transform .2s, box-shadow .2s;
  min-height: 100%;
}
.feature-hub-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 53, 102, .1);
}
.feature-hub-card h3 { color: var(--color-1); font-size: 17px; margin: 0 0 8px; }
.feature-hub-card p { color: #6a7480; font-size: 14px; margin: 0 0 14px; flex: 1; line-height: 1.75; }
.feature-hub-card span { color: var(--color-1); font-size: 13px; font-weight: 700; }

.feature-cta {
  background: linear-gradient(135deg, var(--color-1), var(--color-3));
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  color: #fff;
  margin: 48px 0;
}
.feature-cta h2 { margin: 0 0 10px; font-size: 22px; }
.feature-cta p { margin: 0 0 22px; opacity: .9; }
.feature-cta__btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

.about-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 32px 0; }
@media (max-width: 768px) { .about-stats { grid-template-columns: repeat(2, 1fr); } }
.about-stat {
  background: #fff;
  border: 1px solid #eef1f5;
  border-radius: 14px;
  padding: 20px;
  text-align: center;
}
.about-stat strong { display: block; font-size: 28px; color: var(--color-1); }
.about-stat span { font-size: 13px; color: #6a7480; }

.about-content { max-width: 720px; margin: 0 auto; font-size: 16px; line-height: 2.1; color: #333c46; }
.about-content h2 { color: var(--color-1); font-size: 22px; margin: 36px 0 12px; }
.about-content p { margin: 0 0 16px; }

.feature-related { margin-top: 48px; }
.feature-related h3 { text-align: center; color: var(--color-1); margin-bottom: 20px; }
