/******************************************
    HenryClass — dedicated course landing page
    Scoped entirely under .henryclass-page so it
    never affects any other page on the site.
    This stylesheet is only <link>-ed on this one
    view, so the few unscoped rules below (html,
    .footer) are still safe — they only apply when
    this page is loaded.

    Palette: black / white / gray sections and type,
    with the brand green used as a consistent accent
    on icons, kickers, chips and badges — sections
    themselves stay monochrome, color shows up only
    in small, deliberate touches.
******************************************/

html {
    scroll-behavior: smooth;
}

/* The site footer sits as a sibling of .henryclass-page (outside
   RenderBody), so it can't be reached by a .henryclass-page-scoped
   selector. Its default margin-top: 80px leaves a blank gap right
   after the closing CTA banner. */
.footer {
    margin-top: 0 !important;
}

.henryclass-page {
    --hc-green: #17b470;
    --hc-green-light: #22d488;
    --hc-green-dark: #0f8a56;
    --hc-green-tint: rgba(23,180,112,.12);
    --hc-black: #000000;
    --hc-black-2: #1d1d1f;
    --hc-offwhite: #f5f5f7;
    --hc-gray: #86868b;
    --hc-gray-on-dark: #a1a1a6;
    --hc-line: rgba(0,0,0,.1);
    --hc-line-dark: rgba(255,255,255,.14);
    --hc-surface: #f5f5f7;
    --hc-surface-dark: rgba(255,255,255,.06);
    --hc-radius-sm: 14px;
    --hc-radius-md: 22px;
    --hc-radius-lg: 32px;
    --hc-radius-xl: 44px;
    color: var(--hc-black);
    background: #fff;
    font-family: 'Heebo', Arial, sans-serif;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.henryclass-page h1,
.henryclass-page h2,
.henryclass-page h3,
.henryclass-page h4 {
    font-family: 'Montserrat', Arial, sans-serif;
    color: var(--hc-black);
    margin: 0;
}

.henryclass-page a {
    text-decoration: none;
}

.henryclass-page img {
    max-width: 100%;
}

.henryclass-page .hc-container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

.henryclass-page .hc-section {
    position: relative;
    padding: 96px 0;
}

.henryclass-page .hc-section--offwhite {
    background: var(--hc-offwhite);
}

/* Black "impact" section, used sparingly between the light stretches */
.henryclass-page .hc-section--dark {
    background: var(--hc-black-2);
    color: #fff;
}

.henryclass-page .hc-section--dark h2 {
    color: #fff;
}

.henryclass-page .hc-section--dark .hc-about-copy p {
    color: var(--hc-gray-on-dark);
}

.henryclass-page .hc-text-center {
    text-align: center;
}

/* Rounded "sheet" overlap between sections, like stacked cards */
.henryclass-page .hc-sheet-top {
    border-radius: var(--hc-radius-xl) var(--hc-radius-xl) 0 0;
    margin-top: -40px;
    position: relative;
    z-index: 2;
}

/* ---------- Kicker / section label ---------- */
.henryclass-page .hc-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--hc-green);
    margin-bottom: 18px;
}

.henryclass-page .hc-kicker::before {
    content: "";
    width: 22px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    display: block;
}

.henryclass-page .hc-kicker--on-dark {
    color: var(--hc-green-light);
}

.henryclass-page .hc-section-title {
    font-size: clamp(28px, 3.4vw, 44px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.5px;
    margin-bottom: 18px;
}

.henryclass-page .hc-section-lead {
    font-size: clamp(15px, 1.2vw, 17px);
    color: var(--hc-gray);
    max-width: 640px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

/* ---------- Buttons (the one place green is allowed) ---------- */
.henryclass-page .hc-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 58px;
    padding: 0 34px;
    background: var(--hc-green);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: .3px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 10px 28px rgba(23,180,112,.35);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.henryclass-page .hc-btn svg {
    transition: transform .2s ease;
}

.henryclass-page .hc-btn:hover,
.henryclass-page .hc-btn:focus {
    background: var(--hc-green-dark);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(23,180,112,.45);
}

.henryclass-page .hc-btn:hover svg {
    transform: translateX(3px);
}

.henryclass-page .hc-btn--outline {
    background: transparent;
    border: 2px solid rgba(255,255,255,.6);
    box-shadow: none;
}

.henryclass-page .hc-btn--outline:hover {
    background: #fff;
    color: var(--hc-green);
    border-color: #fff;
}

/* ---------- Marquee ticker ---------- */
.henryclass-page .hc-marquee {
    background: var(--hc-black);
    overflow: hidden;
    padding: 18px 0;
    position: relative;
    z-index: 3;
}

.henryclass-page .hc-marquee__track {
    display: flex;
    width: max-content;
    animation: hc-marquee-scroll 32s linear infinite;
}

.henryclass-page .hc-marquee:hover .hc-marquee__track {
    animation-play-state: paused;
}

.henryclass-page .hc-marquee__item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #f2f2f4;
    white-space: nowrap;
    padding: 0 22px;
}

.henryclass-page .hc-marquee__item svg {
    color: var(--hc-green-light);
    flex-shrink: 0;
}

@keyframes hc-marquee-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ---------- Hero ---------- */
.henryclass-page .hc-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-color: var(--hc-black);
    isolation: isolate;
}

.henryclass-page .hc-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.6) 0%, rgba(0,0,0,.9) 65%, var(--hc-black) 100%);
    z-index: 0;
}

.henryclass-page .hc-hero__blob {
    position: absolute;
    top: -120px;
    right: -120px;
    width: 480px;
    height: 480px;
    opacity: .22;
    z-index: 0;
    filter: blur(2px);
    animation: hc-float 9s ease-in-out infinite;
}

@keyframes hc-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(24px) rotate(6deg); }
}

.henryclass-page .hc-hero-content {
    position: relative;
    z-index: 1;
    padding: 150px 0 130px;
    text-align: center;
    color: #fff;
}

.henryclass-page .hc-hero-content .hc-kicker {
    justify-content: center;
}

.henryclass-page .hc-hero-content h1 {
    color: #fff;
    font-size: clamp(40px, 6vw, 68px);
    font-weight: 900;
    letter-spacing: -2px;
    line-height: .98;
    margin-bottom: 14px;
}

.henryclass-page .hc-hero-content .hc-subtitle {
    color: var(--hc-green);
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 600;
    margin-bottom: 24px;
    font-family: 'Montserrat', Arial, sans-serif;
}

.henryclass-page .hc-hero-content p.hc-hero-copy {
    max-width: 620px;
    margin: 0 auto 24px;
    font-size: 15px;
    line-height: 1.65;
    color: #d2d2d7;
}

.henryclass-page .hc-hero-content p.hc-hero-copy--lead {
    max-width: 480px;
    margin: 0 auto 10px;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.4;
    color: #fff;
}

.henryclass-page .hc-hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.henryclass-page .hc-hero-play {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    background: none;
    border: none;
    cursor: pointer;
}

.henryclass-page .hc-hero-play__icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.35);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease, transform .2s ease;
}

.henryclass-page .hc-hero-play:hover .hc-hero-play__icon {
    background: rgba(255,255,255,.24);
    transform: scale(1.06);
    border-color: #fff;
}

.henryclass-page .hc-hero-trust {
    margin: 34px 0 0;
    font-size: 13px;
    font-weight: 500;
    color: var(--hc-gray-on-dark);
    letter-spacing: .2px;
}

/* ---------- Reveal-on-scroll ---------- */
.henryclass-page [data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
}

.henryclass-page [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

.henryclass-page [data-reveal-delay="1"] { transition-delay: .08s; }
.henryclass-page [data-reveal-delay="2"] { transition-delay: .16s; }
.henryclass-page [data-reveal-delay="3"] { transition-delay: .24s; }
.henryclass-page [data-reveal-delay="4"] { transition-delay: .32s; }
.henryclass-page [data-reveal-delay="5"] { transition-delay: .4s; }

/* ---------- Video teaser ---------- */
.henryclass-page .hc-video {
    position: relative;
    border-radius: var(--hc-radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0,0,0,.25);
    border: 1px solid var(--hc-line);
    background: var(--hc-black);
    max-width: 880px;
    margin: 0 auto;
}

.henryclass-page .hc-video video {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 9;
}

/* ---------- Feature rows (one full section per benefit) ---------- */
.henryclass-page .hc-feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
    padding: 60px 0;
}

.henryclass-page .hc-feature-row + .hc-feature-row {
    border-top: 1px solid var(--hc-line);
}

.henryclass-page .hc-feature-row--reverse {
    grid-template-columns: 1fr 1fr;
}

.henryclass-page .hc-feature-row--reverse .hc-feature-row__visual {
    order: 2;
}

.henryclass-page .hc-feature-row--reverse .hc-feature-row__content {
    order: 1;
}

.henryclass-page .hc-feature-row__visual {
    position: relative;
    aspect-ratio: 1 / 1;
    max-width: 380px;
    margin: 0 auto;
    width: 100%;
    border-radius: var(--hc-radius-xl);
    background: var(--hc-green-tint);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.henryclass-page .hc-feature-row__visual::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1.5px dashed rgba(23,180,112,.35);
    border-radius: calc(var(--hc-radius-xl) - 10px);
}

.henryclass-page .hc-feature-row__visual .hc-feature-row__number {
    position: absolute;
    top: 22px;
    left: 26px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--hc-green-dark);
}

.henryclass-page .hc-feature-row__visual svg {
    width: 40%;
    height: 40%;
    color: var(--hc-green);
}

.henryclass-page .hc-feature-row__content h3 {
    font-size: clamp(22px, 2.4vw, 30px);
    font-weight: 800;
    letter-spacing: -.4px;
    line-height: 1.15;
    margin-bottom: 16px;
}

.henryclass-page .hc-feature-row__content p {
    font-size: 15px;
    color: var(--hc-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.henryclass-page .hc-feature-row__chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--hc-green-tint);
    color: var(--hc-green-dark);
    font-size: 13px;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 999px;
}

.henryclass-page .hc-feature-row__chip svg {
    flex-shrink: 0;
}

/* Bonus-course row gets extra emphasis: a bordered "callout" card instead
   of the plain alternating layout the other rows use — its badge is the
   one deliberate spot of color on the whole benefits section. */
.henryclass-page .hc-feature-row.hc-feature-row--highlight {
    background: var(--hc-black-2);
    border-radius: var(--hc-radius-lg);
    padding: 48px 50px;
    margin: 20px 0;
}

.henryclass-page .hc-feature-row--highlight .hc-feature-row__content h3,
.henryclass-page .hc-feature-row--highlight .hc-feature-row__content p {
    color: #fff;
}

.henryclass-page .hc-feature-row--highlight .hc-feature-row__content p {
    color: var(--hc-gray-on-dark);
}

.henryclass-page .hc-feature-row--highlight .hc-feature-row__visual {
    background: #fff;
    box-shadow: 0 16px 40px rgba(0,0,0,.35);
}

.henryclass-page .hc-feature-row--highlight .hc-feature-row__visual .hc-feature-row__number {
    color: var(--hc-gray);
}

.henryclass-page .hc-feature-row--highlight .hc-feature-row__chip {
    background: rgba(23,180,112,.18);
    color: var(--hc-green-light);
}

.henryclass-page .hc-feature-row--highlight .hc-feature-row__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--hc-green);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 14px;
}

/* ---------- About ---------- */
.henryclass-page .hc-about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.henryclass-page .hc-about-image {
    position: relative;
    border-radius: var(--hc-radius-lg);
    overflow: hidden;
    border: 1px solid var(--hc-line-dark);
    box-shadow: 0 24px 60px rgba(0,0,0,.4);
}

.henryclass-page .hc-about-image img {
    width: 100%;
    display: block;
}

.henryclass-page .hc-about-copy h2 {
    text-align: left;
    font-size: clamp(24px, 2.6vw, 32px);
    font-weight: 800;
    letter-spacing: -.5px;
    margin-bottom: 18px;
}

.henryclass-page .hc-about-copy p {
    color: var(--hc-gray);
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 16px;
}

/* ---------- Professor ---------- */
.henryclass-page .hc-professor {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: center;
}

.henryclass-page .hc-professor-photo-wrap {
    position: relative;
    width: 260px;
    margin: 0 auto;
}

.henryclass-page .hc-professor-photo-wrap svg {
    position: absolute;
    inset: -18px;
    color: rgba(23,180,112,.4);
}

.henryclass-page .hc-professor-photo {
    position: relative;
    border-radius: 50%;
    width: 260px;
    height: 260px;
    object-fit: cover;
    display: block;
    border: 1px solid var(--hc-line);
    box-shadow: 0 20px 40px rgba(0,0,0,.15);
}

.henryclass-page .hc-professor-copy h2 {
    text-align: left;
    font-size: clamp(22px, 2.4vw, 30px);
    font-weight: 800;
    margin-bottom: 4px;
}

.henryclass-page .hc-professor-copy .hc-professor-role {
    color: var(--hc-green);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    margin-bottom: 18px;
    display: block;
}

.henryclass-page .hc-professor-copy p {
    color: var(--hc-gray);
    line-height: 1.8;
    font-size: 15px;
}

/* ---------- Audience ("Quem deveria fazer") ---------- */
.henryclass-page .hc-section--audience {
    border-top: 1px solid var(--hc-line);
}

.henryclass-page .hc-audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 20px;
    text-align: left;
}

.henryclass-page .hc-audience-card {
    background: #fff;
    border: 1px solid var(--hc-line);
    border-radius: var(--hc-radius-md);
    padding: 28px 24px;
    transition: transform .25s cubic-bezier(.22,1,.36,1), box-shadow .25s ease, border-color .25s ease;
}

.henryclass-page .hc-audience-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(23,180,112,.14);
    border-color: rgba(23,180,112,.35);
}

.henryclass-page .hc-audience-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: var(--hc-green-tint);
    color: var(--hc-green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.henryclass-page .hc-audience-card h3 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 8px;
}

.henryclass-page .hc-audience-card p {
    font-size: 13.5px;
    color: var(--hc-gray);
    line-height: 1.6;
    margin: 0;
}

/* ---------- Plans section ---------- */
.henryclass-page .hc-plans {
    background: var(--hc-black);
}

.henryclass-page .hc-plans .hc-section-title {
    color: #fff;
}

.henryclass-page .hc-plans .hc-section-lead {
    color: var(--hc-gray-on-dark);
}

.henryclass-page .hc-plans-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 28px;
    margin-top: 40px;
}

.henryclass-page .hc-plan-card {
    position: relative;
    background: #fff;
    border-radius: var(--hc-radius-lg);
    padding: 4px;
    width: 100%;
    max-width: 380px;
    margin-top: 16px;
    box-shadow: 0 30px 70px rgba(0,0,0,.5);
    text-align: left;
}

.henryclass-page .hc-plan-card--featured {
    background: #fff;
    border: 1.5px solid var(--hc-green);
    box-shadow: 0 30px 70px rgba(23,180,112,.25);
}

/* Floats above the card as its own badge, clear of the title below it */
.henryclass-page .hc-plan-card__ribbon {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--hc-green);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .6px;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 999px;
    white-space: nowrap;
    box-shadow: 0 8px 18px rgba(23,180,112,.35);
}

.henryclass-page .hc-plan-card__body {
    background: #fff;
    color: var(--hc-black);
    border-radius: calc(var(--hc-radius-lg) - 4px);
    padding: 40px 34px;
    height: 100%;
}

.henryclass-page .hc-plan-card__tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--hc-green);
    margin-bottom: 14px;
}

.henryclass-page .hc-plan-card__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--hc-black);
    margin-bottom: 10px;
}

.henryclass-page .hc-plan-card__trial {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--hc-green-tint);
    color: var(--hc-green-dark);
    font-size: 12.5px;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 999px;
    margin-bottom: 16px;
}

.henryclass-page .hc-plan-card__trial svg {
    flex-shrink: 0;
}

.henryclass-page .hc-plan-card__price {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 46px;
    font-weight: 900;
    letter-spacing: -1px;
    color: var(--hc-black);
    margin-bottom: 4px;
}

.henryclass-page .hc-plan-card__price sup {
    font-size: 18px;
    font-weight: 700;
    top: -20px;
}

.henryclass-page .hc-plan-card__period {
    font-size: 15px;
    font-weight: 500;
    color: var(--hc-gray);
}

.henryclass-page .hc-plan-card__old-price {
    font-size: 14px;
    color: var(--hc-gray);
    margin-bottom: 2px;
}

.henryclass-page .hc-plan-card__subtitle {
    font-size: 14px;
    color: var(--hc-gray);
    margin: 0 0 14px;
}

.henryclass-page .hc-plan-card__fineprint {
    font-size: 12px;
    color: var(--hc-gray);
    margin: 4px 0 0;
}

/* Plano.Descricao is raw HTML from the admin's rich-text editor and can
   carry its own inline colors from whatever page it was originally authored
   for — force it back to something readable on this card's white body. */
.henryclass-page .hc-plan-card__desc,
.henryclass-page .hc-plan-card__desc * {
    font-size: 14px;
    color: var(--hc-gray) !important;
    background: transparent !important;
    line-height: 1.7;
}

.henryclass-page .hc-plan-card__desc {
    margin: 16px 0 26px;
}

.henryclass-page .hc-plan-card__desc p {
    margin: 0 0 8px;
}

.henryclass-page .hc-plan-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 54px;
    background: var(--hc-green);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .3px;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease;
}

.henryclass-page .hc-plan-card__cta:hover {
    background: var(--hc-green-dark);
    color: #fff;
    transform: translateY(-2px);
}

/* ---------- FAQ ---------- */
.henryclass-page .hc-faq-list {
    max-width: 760px;
    margin: 40px auto 0;
}

.henryclass-page .hc-faq-item {
    border-top: 1px solid var(--hc-line);
}

.henryclass-page .hc-faq-item:last-child {
    border-bottom: 1px solid var(--hc-line);
}

.henryclass-page .hc-faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
}

.henryclass-page .hc-faq-item summary::-webkit-details-marker {
    display: none;
}

.henryclass-page .hc-faq-item__icon {
    position: relative;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.henryclass-page .hc-faq-item__icon::before,
.henryclass-page .hc-faq-item__icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--hc-green);
    transform: translate(-50%, -50%);
    transition: transform .2s ease;
}

.henryclass-page .hc-faq-item__icon::before {
    width: 14px;
    height: 1.5px;
}

.henryclass-page .hc-faq-item__icon::after {
    width: 1.5px;
    height: 14px;
}

.henryclass-page .hc-faq-item[open] .hc-faq-item__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.henryclass-page .hc-faq-item p {
    margin: 0;
    padding: 0 4px 24px;
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--hc-gray);
    max-width: 620px;
}

/* ---------- Final CTA ---------- */
.henryclass-page .hc-cta-banner {
    background: var(--hc-black-2);
    text-align: center;
    padding: 80px 24px;
}

.henryclass-page .hc-cta-banner h2 {
    color: #fff;
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 800;
    margin-bottom: 14px;
}

.henryclass-page .hc-cta-banner p {
    color: var(--hc-gray-on-dark);
    margin-bottom: 30px;
    font-size: 16px;
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
    .henryclass-page .hc-about,
    .henryclass-page .hc-professor {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .henryclass-page .hc-about-copy h2,
    .henryclass-page .hc-professor-copy h2 {
        text-align: center;
    }

    .henryclass-page .hc-professor-copy .hc-professor-role {
        text-align: center;
    }

    .henryclass-page .hc-feature-row,
    .henryclass-page .hc-feature-row--reverse {
        grid-template-columns: 1fr;
        gap: 34px;
        text-align: center;
    }

    .henryclass-page .hc-feature-row--reverse .hc-feature-row__visual,
    .henryclass-page .hc-feature-row--reverse .hc-feature-row__content {
        order: initial;
    }

    .henryclass-page .hc-feature-row__visual {
        max-width: 240px;
    }

    .henryclass-page .hc-feature-row.hc-feature-row--highlight {
        padding: 34px 28px;
    }

    .henryclass-page .hc-audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .henryclass-page .hc-section {
        padding: 70px 0;
    }
}

@media (max-width: 640px) {
    .henryclass-page .hc-hero-content {
        padding: 120px 0 90px;
    }

    .henryclass-page .hc-section {
        padding: 54px 0;
    }

    .henryclass-page .hc-plan-card__body {
        padding: 30px 24px;
    }

    .henryclass-page .hc-audience-grid {
        grid-template-columns: 1fr;
    }

    .henryclass-page .hc-sticky-cta__inner {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        gap: 12px;
    }

    .henryclass-page .hc-sticky-cta .hc-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ---------- Sticky CTA bar ---------- */
.henryclass-page .hc-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: -120px;
    z-index: 60;
    background: #fff;
    border-top: 1px solid var(--hc-line);
    box-shadow: 0 -12px 30px rgba(0,0,0,.12);
    padding: 16px 24px;
    transition: bottom .4s cubic-bezier(.22,1,.36,1);
}

.henryclass-page .hc-sticky-cta.is-visible {
    bottom: 0;
}

.henryclass-page .hc-sticky-cta__inner {
    max-width: 1160px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.henryclass-page .hc-sticky-cta__text {
    font-weight: 700;
    font-size: 15px;
    color: var(--hc-black);
}

.henryclass-page .hc-sticky-cta__text span {
    display: block;
    font-weight: 400;
    font-size: 13px;
    color: var(--hc-gray);
    margin-top: 2px;
}

.henryclass-page .hc-sticky-cta .hc-btn {
    height: 48px;
    padding: 0 28px;
    font-size: 14px;
}
