/* Shared styles for program detail pages */
.prog-hero { background: var(--ac-black); color: #fff; padding: 140px 0 100px; position: relative; overflow: hidden; }
.prog-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 85% 30%, rgba(255,209,0,0.22), transparent 55%); }
.prog-hero .container { position: relative; z-index: 2; }
.prog-hero h1 { color: #fff; max-width: 900px; }
.prog-hero h1 em { color: var(--ac-jonquill); font-style: normal; }
.prog-hero .lead { font-size: 20px; color: rgba(255,255,255,0.9); max-width: 640px; }
.prog-hero .meta-row { display: flex; gap: 40px; margin-top: 40px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.16); flex-wrap: wrap; }
.prog-hero .meta-row .m .l { font-family: var(--font-head); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ac-jonquill); margin-bottom: 6px; }
.prog-hero .meta-row .m .v { font-family: var(--font-head); font-weight: 700; font-size: 22px; }

.benefits { padding: 96px 0; }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 40px; }
.benefit { padding: 28px 0 0; border-top: 2px solid var(--ac-jonquill); }
.benefit .n { font-family: var(--font-head); font-weight: 800; font-size: 44px; color: var(--ac-jonquill-80); line-height: 1; margin-bottom: 16px; }
.benefit h3 { font-size: 20px; margin: 0 0 8px; }
.benefit p { font-size: 15px; margin: 0; color: var(--ac-black-80); }
@media (max-width: 900px) { .benefit-grid { grid-template-columns: 1fr; } }

.modules { background: var(--ac-anti-flash); padding: 96px 0; }
.module { display: grid; grid-template-columns: 80px 1fr; gap: 32px; padding: 32px 0; border-bottom: 1px solid rgba(32,32,32,0.12); align-items: start; }
.module:last-child { border-bottom: 0; }
.module .n { font-family: var(--font-head); font-weight: 800; font-size: 56px; color: var(--ac-jonquill); line-height: 1; }
.module h3 { font-size: 26px; margin: 0 0 8px; }
.module .tag { font-family: var(--font-head); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ac-pumpkin); margin-bottom: 8px; }
.module p { margin: 0; max-width: 720px; }

.outcome { background: var(--ac-jonquill); padding: 80px 0; }
.outcome-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: 32px; }
.outcome-grid .n { font-family: var(--font-head); font-weight: 800; font-size: clamp(40px, 5vw, 64px); color: var(--ac-black); line-height: 1; }
.outcome-grid .l { font-size: 14px; color: var(--ac-black); margin-top: 6px; font-weight: 500; max-width: 200px; }
@media (max-width: 900px) { .outcome-grid { grid-template-columns: 1fr 1fr; } }

.quote-section { padding: 96px 0; background: var(--ac-black); color: #fff; }
.quote-section blockquote { font-family: var(--font-body); font-weight: 500; font-size: clamp(24px, 3vw, 34px); line-height: 1.25; padding-left: 32px; border-left: 3px solid var(--ac-jonquill); margin: 0; max-width: 880px; color: #fff; text-wrap: balance; }
.quote-section .attr { margin-top: 24px; padding-left: 35px; color: var(--ac-timberwolf); }
.quote-section .attr .n { font-family: var(--font-head); font-weight: 700; color: #fff; }

.faq { padding: 96px 0; }
.faq details { border-bottom: 1px solid rgba(32,32,32,0.12); padding: 20px 0; }
.faq summary { font-family: var(--font-head); font-weight: 700; font-size: 18px; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-size: 28px; color: var(--ac-jonquill); font-weight: 400; }
.faq details[open] summary::after { content: '−'; }
.faq details p { margin: 14px 0 0; max-width: 800px; }
