
.discount-page .page-hero { min-height: 560px; display: flex; align-items: center; }
.discount-page .page-hero-inner { max-width: 1120px; }
.discount-page .page-hero h1 { max-width: 850px; }
.discount-page .page-hero p { max-width: 720px; }
.discount-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
  animation: fadeUp 0.7s ease 0.3s both;
}
.discount-summary {
  background: var(--mist);
  border-bottom: 1px solid var(--border);
}
.discount-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.discount-summary-card {
  background: white;
  padding: 1.35rem;
  min-height: 142px;
}
.discount-summary-card strong {
  display: block;
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 0.45rem;
}
.discount-summary-card span {
  color: var(--text-light);
  font-size: 0.88rem;
  line-height: 1.6;
}
.discount-feature { background: white; }
.discount-feature-panel {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: 2rem;
  align-items: stretch;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(26,39,68,0.08);
}
.discount-stamp {
  background: var(--navy);
  color: white;
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.discount-stamp::after {
  content: "";
  position: absolute;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  right: -8rem;
  bottom: -8rem;
  background: rgba(61,127,138,0.22);
}
.discount-stamp-lottie {
  width: 120px;
  height: 120px;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.discount-stamp span {
  color: var(--sand);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.76rem;
  position: relative;
  z-index: 1;
}
.discount-stamp strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4rem, 9vw, 6rem);
  line-height: 0.9;
  margin: 0.6rem 0 0.4rem;
  position: relative;
  z-index: 1;
}
.discount-stamp p {
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  position: relative;
  z-index: 1;
}
.discount-feature-copy {
  padding: 2.2rem;
  background: var(--off-white);
}
.discount-feature-copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.9rem;
}
.discount-feature-copy p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.discount-note {
  border-left: 3px solid var(--teal);
  background: white;
  padding: 1rem 1.1rem;
  color: var(--text-body);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-top: 1rem;
}
.service-chip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-top: 2rem;
}
.service-chip {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: white;
  padding: 0.9rem;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.35;
}
.compact-section {
  background: var(--navy);
  color: white;
  position: relative;
  overflow: hidden;
}
.compact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}
.compact-section .section-inner { position: relative; z-index: 1; }
.compact-section .section-label { color: var(--sand); }
.compact-section .section-title { color: white; max-width: 780px; }
.compact-lede {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  line-height: 1.85;
  max-width: 760px;
}
.compact-panel {
  display: grid;
  grid-template-columns: minmax(250px, 0.85fr) minmax(0, 1.15fr);
  gap: 1.2rem;
  margin-top: 2.5rem;
}
.compact-card {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  padding: 1.4rem;
}
.compact-card.is-bright {
  background: white;
  color: var(--navy);
}
.compact-card-lottie {
  width: 128px;
  height: 128px;
  margin-bottom: 1rem;
}
.compact-card h3 {
  color: inherit;
  font-size: 1.4rem;
  margin-bottom: 0.7rem;
}
.compact-card p,
.compact-card li {
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  font-size: 0.92rem;
}
.compact-card.is-bright p,
.compact-card.is-bright li {
  color: var(--text-light);
}
.compact-list {
  list-style: none;
  margin-top: 1rem;
}
.compact-list li {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 0.7rem 0;
}
.compact-card.is-bright .compact-list li {
  border-top-color: var(--border);
}
.compact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.4rem;
}
.eligibility-section { background: var(--off-white); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.process-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: white;
  padding: 1.25rem;
}
.process-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: var(--teal);
  color: white;
  font-weight: 700;
  margin-bottom: 0.85rem;
}
.process-card h3 {
  font-family: 'DM Sans', sans-serif;
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.process-card p {
  color: var(--text-light);
  line-height: 1.65;
  font-size: 0.9rem;
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
  margin-top: 2rem;
}
.audience-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: white;
  padding: 1rem;
}
.audience-card strong {
  display: block;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.audience-card span {
  display: block;
  color: var(--text-light);
  font-size: 0.84rem;
  line-height: 1.55;
}
@media(max-width: 980px) {
  .discount-summary-grid,
  .discount-feature-panel,
  .compact-panel,
  .process-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }
  .service-chip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media(max-width: 600px) {
  .discount-page .page-hero { min-height: 0; display: block; }
  .discount-hero-actions .btn-primary,
  .discount-hero-actions .btn-outline,
  .compact-actions .btn-primary,
  .compact-actions .btn-teal-outline {
    width: 100%;
  }
  .discount-stamp,
  .discount-feature-copy,
  .compact-card {
    padding: 1.25rem;
  }
  .service-chip-grid {
    grid-template-columns: 1fr;
  }
  .discount-stamp-lottie,
  .compact-card-lottie {
    width: 96px;
    height: 96px;
  }
}
