/* Home Page Styles — © 2025 John (ZephyrSPT) — IS-ZEPHYRSPT-2025-HOME-CSS */

/* ─── HERO ─── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 80px;
  background: white;
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}
.hero__orb--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(26,86,219,0.12) 0%, transparent 70%);
  top: -120px; left: -80px;
}
.hero__orb--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(14,165,233,0.10) 0%, transparent 70%);
  top: 40px; right: -60px;
}
.hero__orb--3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(26,86,219,0.06) 0%, transparent 70%);
  bottom: -60px; left: 40%;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,86,219,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,86,219,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--accent-light);
  border: 1px solid #bfdbfe;
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}
.hero__badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}
.hero__title {
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--text-primary);
}
.hero__title-accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__subtitle {
  font-size: 1.08rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 32px;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero__stats {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.hero__stat-num {
  display: block;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: -0.03em;
}
.hero__stat-label { font-size: 0.78rem; color: var(--text-muted); font-weight: 500; }
.hero__stat-divider { width: 1px; height: 36px; background: var(--border); }

/* Card stack */
.hero__visual { position: relative; }
.hero__card-stack { display: flex; flex-direction: column; gap: 12px; }
.hero__role-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  animation: slideIn 0.5s ease both;
}
.hero__role-card--1 { animation-delay: 0.1s; }
.hero__role-card--2 { animation-delay: 0.2s; }
.hero__role-card--3 { animation-delay: 0.3s; }
.hero__role-card--4 { animation-delay: 0.4s; }
.hero__role-card:hover { transform: translateX(6px); box-shadow: var(--shadow-lg); }
@keyframes slideIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }
.hero__role-icon { font-size: 1.8rem; flex-shrink: 0; }
.hero__role-title { font-weight: 700; font-size: 0.95rem; color: var(--text-primary); }
.hero__role-sub { font-size: 0.8rem; color: var(--text-muted); margin-top: 2px; }
.hero__role-card .badge { margin-left: auto; flex-shrink: 0; }

@media (max-width: 860px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { order: -1; }
  .hero__card-stack { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
}
@media (max-width: 520px) {
  .hero { padding: 60px 0 60px; }
  .hero__card-stack { grid-template-columns: 1fr; }
  .hero__stats { gap: 16px; }
}

/* ─── SECTION HEADER ─── */
.section-header { margin-bottom: 48px; }
.section-header h2 { margin-bottom: 8px; }

/* ─── ROLES GRID ─── */
.roles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.role-card { display: flex; flex-direction: column; }
.role-card__icon {
  font-size: 2.4rem;
  width: 100%;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.role-card__icon--blue { background: linear-gradient(135deg, #dbeafe 0%, #eff6ff 100%); }
.role-card__icon--red { background: linear-gradient(135deg, #fee2e2 0%, #fff5f5 100%); }
.role-card__icon--green { background: linear-gradient(135deg, #dcfce7 0%, #f0fff4 100%); }
.role-card__icon--teal { background: linear-gradient(135deg, #ccfbf1 0%, #f0fdfa 100%); }
.role-card__title { font-size: 1.1rem; font-weight: 800; margin-bottom: 8px; }
.role-card__desc { font-size: 0.875rem; margin-bottom: 16px; }
.role-card__perks { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.role-card__perks li {
  font-size: 0.84rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}
.role-card__perks li::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ─── WHY SECTION ─── */
.why-section { background: var(--off-white); }
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-content h2 { margin-bottom: 12px; }
.why-content > p { margin-bottom: 28px; }
.why-features { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.why-feature { display: flex; gap: 16px; align-items: flex-start; }
.why-feature__icon {
  font-size: 1.4rem;
  width: 44px; height: 44px;
  border-radius: 10px;
  background: white;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.why-feature h4 { margin-bottom: 4px; font-size: 0.975rem; }
.why-feature p { font-size: 0.875rem; margin-bottom: 0; }
.why-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.why-stat { text-align: center; padding: 16px; background: var(--off-white); border-radius: var(--radius-md); }
.why-stat__num { font-size: 1.8rem; font-weight: 900; color: var(--accent); letter-spacing: -0.03em; display: block; }
.why-stat__label { font-size: 0.78rem; color: var(--text-muted); font-weight: 500; margin-top: 2px; }

@media (max-width: 800px) {
  .why-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ─── CTA ─── */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3460 50%, #0f2a5e 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,86,219,0.3) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner { text-align: center; position: relative; z-index: 1; }
.cta-title { color: white; font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 12px; }
.cta-sub { color: rgba(255,255,255,0.7); font-size: 1.05rem; margin-bottom: 32px; }
