/* ── PAGE HERO (shared by features, pricing, contact) ── */
.page-hero {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 4rem 0;
  text-align: center;
}

.page-hero .eyebrow {
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
  margin-bottom: 0.75rem;
  display: block;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.page-hero p {
  font-size: 1.05rem;
  color: var(--ink-mid);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ── FEATURE SECTIONS ── */
.feature-section {
  padding: 5rem 0;
  border-bottom: 1px solid var(--border);
}

.feature-section:nth-child(even) { background: var(--white); }
.feature-section:nth-child(odd)  { background: var(--paper); }

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.feature-grid.reverse         { direction: rtl; }
.feature-grid.reverse > *     { direction: ltr; }

.feature-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--green);
  background: var(--green-light);
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.feature-tag.secondary {
  color: var(--amber);
  background: var(--amber-light);
}

.feature-content h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.feature-content p {
  font-size: 0.975rem;
  color: var(--ink-mid);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.feature-list li {
  font-size: 0.9rem;
  color: var(--ink-mid);
  padding-left: 1.4rem;
  position: relative;
  line-height: 1.5;
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-mid);
}

/* ── FEATURE VISUAL PANELS ── */
.feature-visual {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.vis-label {
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-faint);
  margin-bottom: 1rem;
}

/* Attendance panel */
.attend-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
}

.attend-row:last-child { border-bottom: none; }

.attend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.attend-dot.in     { background: var(--green-mid); }
.attend-dot.out    { background: var(--amber); }
.attend-dot.absent { background: var(--border); }

.attend-name  { flex: 1; color: var(--ink); }
.attend-time  { font-size: 0.78rem; color: var(--ink-faint); }

.attend-notif {
  font-size: 0.72rem;
  color: var(--green);
  background: var(--green-light);
  padding: 0.15rem 0.5rem;
  border-radius: 3px;
}

/* Fee bundles panel */
.fee-bundle {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
}

.fee-bundle:last-child { margin-bottom: 0; }

.fee-bundle-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.35rem;
}

.fee-bundle-name   { font-weight: 500; font-size: 0.9rem; color: var(--ink); }
.fee-bundle-amount { font-weight: 500; font-size: 0.9rem; color: var(--green); }
.fee-bundle-desc   { font-size: 0.78rem; color: var(--ink-faint); }

/* Discounts panel */
.discount-row {
  display: flex;
  justify-content: space-between;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
}

.discount-row:last-child { border-bottom: none; }
.discount-name { color: var(--ink); }
.discount-val  { color: var(--amber); font-weight: 500; }

/* ── FEATURES SUMMARY ── */
.features-summary {
  padding: 5rem 0;
  background: var(--white);
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.summary-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  background: var(--paper);
}

.summary-card-icon {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  display: block;
}

.summary-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.summary-card p {
  font-size: 0.85rem;
  color: var(--ink-mid);
  line-height: 1.6;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .feature-grid,
  .feature-grid.reverse { grid-template-columns: 1fr; direction: ltr; gap: 2rem; }
  .summary-grid         { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .summary-grid { grid-template-columns: 1fr; }
}
