:root {
    --green: #176b5c;
    --green-dark: #0e5147;
    --ink: #18302d;
    --gold: #cfae4a;
    --cream: #faf8f4;
    --soft: #f4f1eb;
    --line: #e8e2d9;
    --muted: #6e7887;
    --white: #fff;
    --radius: 22px;
    --container: 1280px;
    --shadow: 0 24px 65px rgba(17, 66, 58, .12)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 104px
}

body {
    margin: 0;
    background: var(--cream);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6
}

body.menu-open {
    overflow: hidden
}

img {
    max-width: 100%;
    display: block
}

a {
    color: inherit;
    text-decoration: none
}

button, input, select, textarea {
    font: inherit
}

.aha-container {
    width: min(var(--container), calc(100% - 48px));
    margin-inline: auto
}

.screen-reader-text, .skip-link {
    position: absolute;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    width: 1px;
    height: 1px;
    overflow: hidden
}

.skip-link:focus {
    clip: auto;
    clip-path: none;
    width: auto;
    height: auto;
    z-index: 9999;
    top: 10px;
    left: 10px;
    background: #fff;
    padding: 12px 18px
}

.aha-topbar {
    background: var(--green-dark);
    color: #fff;
    font-size: 14px
}

.aha-topbar .aha-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 38px
}

.aha-topbar span {
    color: var(--gold);
    font-weight: 700
}

.aha-topbar div div {
    display: flex;
    gap: 28px
}

.aha-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(0, 0, 0, .04)
}

.admin-bar .aha-header {
    top: 32px
}

.aha-header-inner {
    min-height: 84px;
    display: flex;
    align-items: center;
    gap: 28px
}

.aha-brand {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-right: auto
}

.aha-brand b {
    font-family: Georgia, serif;
    font-size: 20px;
    display: block;
    line-height: 1.15
}

.aha-brand small {
    font-size: 10px;
    letter-spacing: 2.2px;
    color: var(--green);
    display: block
}

.aha-logo-mark {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--green);
    color: #fff;
    font-family: Georgia, serif;
    font-size: 24px
}

.aha-nav {
    display: flex;
    align-items: center;
    gap: 10px
}

.aha-nav a {
    padding: 10px 15px;
    border-radius: 14px;
    color: #4e5870;
    font-weight: 600
}

.aha-nav a:hover, .aha-nav a.active {
    background: #e9f4f1;
    color: var(--green)
}

.aha-menu-toggle {
    display: none;
    background: none;
    border: 0;
    padding: 8px
}

.aha-menu-toggle span:not(.screen-reader-text) {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--ink);
    margin: 5px
}

.aha-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 25px;
    border-radius: 999px;
    font-weight: 800;
    border: 1px solid transparent;
    transition: .25s ease;
    cursor: pointer
}

.aha-btn:hover {
    transform: translateY(-2px)
}

.aha-btn-primary {
    background: var(--green);
    color: #fff
}

.aha-btn-primary:hover {
    background: var(--green-dark)
}

.aha-btn-whatsapp {
    background: #20cc62;
    color: #fff
}

.aha-btn-outline {
    border-color: var(--green);
    color: var(--green)
}

.aha-btn-gold {
    background: var(--gold);
    color: #172e2b
}

.aha-pattern {
    position: absolute;
    inset: 0;
    opacity: .55;
    background-image: linear-gradient(30deg, transparent 48%, rgba(23, 107, 92, .05) 49%, rgba(23, 107, 92, .05) 51%, transparent 52%), linear-gradient(-30deg, transparent 48%, rgba(23, 107, 92, .05) 49%, rgba(23, 107, 92, .05) 51%, transparent 52%);
    background-size: 72px 42px;
    pointer-events: none
}

.aha-hero {
    position: relative;
    overflow: hidden;
    padding: 92px 0 100px;
    background: #fbfaf7
}

.aha-hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    gap: 72px;
    align-items: center
}

.aha-eyebrow, .aha-section-heading>span {
    display: inline-flex;
    color: var(--green);
    background: #e9f4f1;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 12px;
    letter-spacing: 1.4px;
    font-weight: 900
}

.aha-hero h1, .aha-section h2, .aha-final-cta h2 {
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.04;
    letter-spacing: -2px
}

.aha-hero h1 {
    font-size: 60px;
    margin: 24px 0
}

.aha-hero h1 em {
    display: block;
    color: var(--green);
    font-weight: 400
}

.aha-hero-copy>p {
    font-size: 20px;
    max-width: 650px;
    color: var(--muted)
}

.aha-actions {
    display: flex;
    gap: 16px;
    margin: 32px 0
}

.aha-inline-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 28px;
    list-style: none;
    padding: 0;
    margin: 30px 0 0;
    color: #5f6d7d
}

.aha-inline-trust li::first-letter {
    color: var(--green)
}

.aha-hero-media {
    position: relative
}

.aha-hero-media>img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 26px;
    background: #eaf4f0
}

.aha-media-badge, .aha-family-badge {
    position: absolute;
    background: #fff;
    border-radius: 18px;
    box-shadow: var(--shadow)
}

.aha-media-badge {
    right: -15px;
    top: -18px;
    background: var(--gold);
    padding: 16px 26px;
    color: #fff
}

.aha-family-badge {
    left: -24px;
    bottom: -18px;
    padding: 17px 25px;
    display: grid;
    grid-template-columns: auto auto;
    column-gap: 10px
}

.aha-family-badge:first-letter {
    font-size: 28px;
    color: var(--green)
}

.aha-family-badge small, .aha-family-badge b {
    grid-column: 2
}

.aha-trustbar {
    background: #fff;
    border-block: 1px solid var(--line)
}

.aha-trustbar .aha-container {
    min-height: 68px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    color: #516078
}

.aha-section {
    padding: 105px 0;
    background: #fff
}

.aha-soft {
    background: var(--soft)
}

.aha-section-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 52px
}

.aha-section-heading h2, .aha-split h2, .aha-faq-layout h2, .aha-trial h2 {
    font-size: clamp(38px, 4vw, 58px);
    margin: 16px 0;

}

.aha-section-heading p {
    font-size: 18px;
    color: var(--muted)
}

.aha-course-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px
}

.aha-course-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--line);
    padding: 32px;
    border-radius: var(--radius);
    transition: .3s ease
}

.aha-course-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow)
}

.aha-course-card.is-featured {
    border: 2px solid var(--green)
}

.aha-popular {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green);
    color: #fff;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 10px;
    letter-spacing: 1px;
    white-space: nowrap
}

.aha-course-icon {
    font-size: 36px;
    margin-bottom: 18px
}

.aha-kicker {
    font-size: 11px;
    color: var(--green);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px
}

.aha-course-card h3 {
    font-family: Georgia, serif;
    font-size: 27px;
    margin: 8px 0
}

.aha-course-card p, .aha-course-card li {
    color: var(--muted)
}

.aha-course-card ul {
    list-style: none;
    padding: 0;
    margin: 22px 0
}

.aha-course-card li {
    margin: 8px 0
}

.aha-course-card a {
    color: var(--green);
    font-weight: 800
}

.aha-split {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 84px;
    align-items: center
}

.aha-image-stack {
    position: relative
}

.aha-image-stack img {
    width: 100%;
    min-height: 560px;
    object-fit: cover;
    border-radius: 28px;
    background: #e8f4f1
}

.aha-image-stack span {
    position: absolute;
    left: 28px;
    bottom: 28px;
    background: #fff;
    padding: 15px 22px;
    border-radius: 14px;
    font-weight: 800;
    box-shadow: var(--shadow)
}

.aha-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin: 34px 0
}

.aha-benefits>div {
    border-top: 1px solid #d8d4cc;
    padding-top: 20px
}

.aha-benefits b {
    color: var(--gold)
}

.aha-benefits h3 {
    margin: 5px 0
}

.aha-benefits p {
    color: var(--muted);
    margin: 0
}

.aha-teacher-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px
}

.aha-teacher-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius)
}

.aha-teacher-card img {
    height: 290px;
    width: 100%;
    object-fit: cover;
    background: #eaf3f0
}

.aha-teacher-card>div {
    padding: 25px
}

.aha-teacher-card span {
    font-size: 12px;
    color: var(--green);
    font-weight: 800;
    text-transform: uppercase
}

.aha-teacher-card h3 {
    font-family: Georgia, serif;
    font-size: 25px;
    margin: 6px 0
}

.aha-teacher-card p {
    font-size: 14px;
    color: var(--muted)
}

.aha-dark {
    position: relative;
    overflow: hidden;
    background: var(--green-dark);
    color: #fff
}

.aha-section-heading.light>span {
    background: rgba(255, 255, 255, .1);
    color: var(--gold)
}

.aha-steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.aha-steps article {
    position: relative;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
    padding: 28px;
    border-radius: 20px
}

.aha-steps b {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--gold);
    color: var(--ink)
}

.aha-steps p {
    color: rgba(255, 255, 255, .72)
}

.aha-stats {
    background: var(--green);
    color: #fff;
    padding: 46px 0
}

.aha-stats .aha-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr)
}

.aha-stats div {
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, .25)
}

.aha-stats div:last-child {
    border: 0
}

.aha-stats b {
    display: block;
    font-family: Georgia, serif;
    font-size: 42px;
    color: var(--gold)
}

.aha-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.aha-testimonial-grid blockquote {
    margin: 0;
    background: #fff;
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, .05)
}

.aha-testimonial-grid blockquote>span {
    color: var(--gold);
    letter-spacing: 2px
}

.aha-testimonial-grid p {
    font-family: Georgia, serif;
    font-size: 20px
}

.aha-testimonial-grid footer {
    display: flex;
    gap: 12px;
    align-items: center
}

.aha-testimonial-grid footer>b {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #e8f4f1;
    color: var(--green)
}

.aha-testimonial-grid strong, .aha-testimonial-grid small {
    display: block
}

.aha-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    align-items: stretch
}

.aha-price-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 38px
}

.aha-price-card.featured {
    border: 2px solid var(--green);
    transform: scale(1.035);
    box-shadow: var(--shadow)
}

.aha-price-card h3 {
    font-family: Georgia, serif;
    font-size: 30px
}

.aha-price {
    font-family: Georgia, serif;
    font-size: 58px;
    line-height: 1
}

.aha-price small {
    font-size: 25px
}

.aha-price span {
    font-family: Inter, sans-serif;
    font-size: 14px;
    color: var(--muted)
}

.aha-price-card ul {
    list-style: none;
    padding: 0;
    margin: 28px 0
}

.aha-price-card li {
    margin: 12px 0;
    color: #526171
}

.aha-price-card .aha-btn {
    width: 100%
}

.aha-faq-layout {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 70px ;
	align-items: center !important;
} 

.aha-faq-layout>div:first-child img {
    margin-top: 35px;
    max-height: 300px
}

.aha-faq-item {
    border-bottom: 1px solid #d8d4cc
}

.aha-faq-item button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: 0;
    padding: 22px 0;
    text-align: left;
    font-weight: 800;
    color: var(--ink)
}

.aha-faq-item button b {
    font-size: 24px;
    color: var(--green)
}

.aha-faq-item>div p {
    margin: 0;
    padding: 0 35px 22px 0;
    color: var(--muted)
}

.aha-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.aha-blog-grid article {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden
}

.aha-blog-grid img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    background: #edf4f1
}

.aha-blog-grid article>div {
    padding: 26px
}

.aha-blog-grid span {
    font-size: 12px;
    color: var(--green);
    font-weight: 800
}

.aha-blog-grid h3 {
    font-family: Georgia, serif;
    font-size: 25px
}

.aha-blog-grid p {
    color: var(--muted)
}

.aha-blog-grid a {
    font-weight: 800;
    color: var(--green)
}

.aha-trial {
    position: relative;
    overflow: hidden;
    background: var(--green-dark);
    color: #fff
}

.aha-trial-grid {
    position: relative;
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 70px;
    align-items: start
}

.light-pill {
    background: rgba(255, 255, 255, .12);
    color: var(--gold)
}

.aha-trial ul {
    list-style: none;
    padding: 0
}

.aha-trial li {
    margin: 12px 0
}

.aha-trial-form {
    background: #fff;
    color: var(--ink);
    padding: 38px;
    border-radius: 26px;
    box-shadow: var(--shadow)
}

.aha-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 17px
}

.aha-trial-form label {
    display: block;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: -16px !important;
}

.aha-trial-form input, .aha-trial-form select, .aha-trial-form textarea {
    width: 100%;
    margin-top: 7px;
    padding: 13px 14px;
    border: 1px solid #ddd8cf;
    border-radius: 11px;
    background: #fbfaf8
}

.aha-trial-form.aha-trial-form--compact br {
	display:none !important;
}

.aha-consent {
    display: flex !important;
    gap: 10px;
    align-items: flex-start
}

.aha-consent input {
    width: auto;
    margin-top: 4px
}

.aha-hp {
    position: absolute !important;
    left: -9999px !important
}

.aha-form-status {
    margin-top: 15px;
    font-weight: 700
}

.aha-final-cta {
    padding: 66px 0;
    background: #f0dfaa
}

.aha-final-cta .aha-container {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.aha-final-cta span {
    color: var(--green);
    font-weight: 900;
    letter-spacing: 1.5px
}

.aha-final-cta h2 {
    font-size: 44px;
    margin: 8px 0
}

.aha-final-cta p {
    margin: 0
}

.aha-footer {
    background: #102f2b;
    color: #d7e2df;
    padding-top: 72px
}

.aha-footer-grid {
    display: grid;
    grid-template-columns: 1.6fr repeat(3, 1fr);
    gap: 48px
}

.aha-brand-light b, .aha-brand-light small {
    color: #fff
}

.aha-footer h3 {
    color: #fff;
    font-family: Georgia, serif
}

.aha-footer-grid>div>a:not(.aha-brand) {
    display: block;
    margin: 10px 0;
    color: #c8d5d2
}

.aha-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
    margin-top: 55px;
    padding: 22px 0
}

.aha-footer-bottom .aha-container {
    display: flex;
    justify-content: space-between
}

.aha-footer-bottom a {
    float: right;
    color: var(--gold)
}

.aha-whatsapp {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #20cc62;
    color: #fff;
    font-size: 28px;
    z-index: 90;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .2)
}

:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px
}

/* ==================================================
   24. Stock Image, Icon, Slider and Pricing Enhancements
================================================== */
.aha-eyebrow, .aha-section-heading>span, .aha-btn, .aha-trustbar span, .aha-image-stack>span, .aha-plan-frequency, .aha-plan-assurance {
    gap: 9px
}

.aha-eyebrow i, .aha-section-heading>span i, .aha-btn i, .aha-trustbar i {
    line-height: 1
}

.aha-btn i {
    font-size: .92em;
    transition: transform .25s ease
}

.aha-btn:hover i.fa-arrow-right {
    transform: translateX(4px)
}

.aha-inline-trust li {
    display: flex;
    align-items: center;
    gap: 8px
}

.aha-inline-trust li::first-letter {
    color: inherit
}

.aha-inline-trust i {
    color: var(--green)
}

.aha-trustbar span {
    display: inline-flex;
    align-items: center;
    font-weight: 700
}

.aha-trustbar i {
    color: var(--green);
    font-size: 17px
}

.aha-hero-media {
    isolation: isolate
}

.aha-hero-media:before {
    content: "";
    position: absolute;
    inset: 26px -20px -25px 35px;
    border-radius: 32px;
    background: linear-gradient(145deg, rgba(207, 174, 74, .34), rgba(23, 107, 92, .13));
    z-index: -1
}

.aha-hero-media>img {
    object-position: center 35%;
    box-shadow: 0 26px 68px rgba(14, 81, 71, .18)
}

.aha-media-badge, .aha-family-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2
}

.aha-media-badge i, .aha-family-badge i {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .22);
    font-size: 19px;
    flex: 0 0 auto
}

.aha-media-badge span, .aha-family-badge span {
    display: block;
    line-height: 1.25
}

.aha-family-badge {
    grid-template-columns: none
}

.aha-family-badge:first-letter {
    font-size: inherit;
    color: inherit
}

.aha-family-badge small, .aha-family-badge b {
    grid-column: auto;
    display: block
}

.aha-course-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, #e8f5f1, #fff7dc);
    color: var(--green);
    font-size: 27px;
    box-shadow: inset 0 0 0 1px rgba(23, 107, 92, .08)
}

.aha-course-card li {
    display: flex;
    gap: 9px;
    align-items: flex-start
}

.aha-course-card li i {
    color: var(--green);
    margin-top: 5px;
    font-size: 13px
}

.aha-course-card>a {
    display: inline-flex;
    align-items: center;
    gap: 8px
}

.aha-course-card>a i {
    font-size: 12px
}

.aha-image-stack>span {
    display: inline-flex;
    align-items: center
}

.aha-image-stack>span i {
    color: var(--green)
}

.aha-benefits>div {
    position: relative;
    padding-left: 58px;
    min-height: 90px
}

.aha-benefits>div>b {
    position: absolute;
    left: 0;
    top: 18px;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: #e6f2ef;
    color: var(--green);
    font-size: 18px
}

.aha-teacher-card {
    transition: transform .3s ease, box-shadow .3s ease
}

.aha-teacher-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow)
}

.aha-teacher-card>.aha-teacher-photo {
    padding: 0;
    position: relative;
    overflow: hidden
}

.aha-teacher-photo img {
    transition: transform .55s ease;
    object-position: center top
}

.aha-teacher-card:hover .aha-teacher-photo img {
    transform: scale(1.045)
}

.aha-teacher-photo>span {
    position: absolute;
    left: 16px;
    bottom: 16px;
    background: rgba(14, 81, 71, .92);
    color: #fff;
    padding: 7px 11px;
    border-radius: 999px;
    font-size: 10px;
    backdrop-filter: blur(8px)
}

.aha-steps article>i {
    position: absolute;
    right: 24px;
    top: 27px;
    color: var(--gold);
    font-size: 24px
}

.aha-stats div {
    padding: 8px 18px
}

.aha-stats i {
    display: block;
    color: rgba(255, 255, 255, .82);
    font-size: 23px;
    margin-bottom: 4px
}

.aha-stats span {
    display: block;
    color: rgba(255, 255, 255, .86)
}

/* Testimonial slider */
.aha-testimonials-section {
    overflow: hidden
}

.aha-testimonial-heading-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 36px;
    margin-bottom: 34px
}

.aha-testimonial-heading-row .aha-section-heading {
    text-align: left;
    margin: 0;
    max-width: 780px
}

.aha-testimonial-heading-row .aha-section-heading h2 {
    margin-bottom: 12px
}

.aha-slider-controls {
    display: flex;
    gap: 10px;
    flex: 0 0 auto;
    padding-bottom: 6px
}

.aha-slider-controls button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--green);
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(17, 66, 58, .08);
    transition: .25s ease
}

.aha-slider-controls button:hover {
    background: var(--green);
    color: #fff;
    transform: translateY(-2px)
}

.aha-slider-controls button.swiper-button-disabled {
    opacity: .4;
    cursor: not-allowed;
    transform: none
}

.aha-testimonial-swiper {
    overflow: visible;
    padding: 8px 5px 56px
}

.aha-testimonial-swiper .swiper-slide {
    height: auto
}

.aha-testimonial-card {
    position: relative;
    height: 100%;
    margin: 0;
    padding: 36px;
    border-radius: 26px;
    background: #fff;
    border: 1px solid rgba(23, 107, 92, .09);
    box-shadow: 0 16px 45px rgba(17, 66, 58, .08);
    display: flex;
    flex-direction: column;
    transition: transform .3s ease, box-shadow .3s ease
}

.aha-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 58px rgba(17, 66, 58, .13)
}

.aha-testimonial-quote {
    width: 52px;
    height: 52px;
    border-radius: 17px;
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, var(--green), var(--green-dark));
    color: #fff;
    font-size: 20px;
    margin-bottom: 17px
}

.aha-stars {
    display: flex;
    gap: 4px;
    color: var(--gold);
    font-size: 14px;
    margin-bottom: 15px
}

.aha-testimonial-card>p {
    font-family: Georgia, serif;
    font-size: 22px;
    line-height: 1.55;
    color: #304a46;
    flex: 1;
    margin: 0 0 26px
}

.aha-testimonial-card footer {
    display: flex;
    align-items: center;
    gap: 13px;
    border-top: 1px solid var(--line);
    padding-top: 22px
}

.aha-testimonial-card footer>b {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #e8f4f1;
    color: var(--green);
    font-size: 14px
}

.aha-testimonial-card footer strong, .aha-testimonial-card footer small {
    display: block
}

.aha-testimonial-card footer small {
    color: var(--muted);
    font-size: 12px;
    margin-top: 2px
}

.aha-testimonial-card footer small i {
    color: var(--gold);
    margin-right: 4px
}

.aha-testimonial-swiper .swiper-pagination {
    bottom: 4px
}

.aha-testimonial-swiper .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    background: #9ab9b3;
    opacity: .55;
    transition: .25s ease
}

.aha-testimonial-swiper .swiper-pagination-bullet-active {
    width: 28px;
    border-radius: 999px;
    background: var(--green);
    opacity: 1
}

/* Conversion-focused pricing */
.aha-pricing-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #fff 0%, #f8f5ee 100%)
}

.aha-pricing-section:before, .aha-pricing-section:after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    pointer-events: none
}

.aha-pricing-section:before {
    width: 360px;
    height: 360px;
    right: -160px;
    top: 90px;
    background: rgba(207, 174, 74, .12)
}

.aha-pricing-section:after {
    width: 300px;
    height: 300px;
    left: -150px;
    bottom: 10px;
    background: rgba(23, 107, 92, .08)
}

.aha-pricing-section .aha-container {
    position: relative
}

.aha-pricing-grid {
    gap: 28px;
    align-items: center
}

.aha-price-card {
    overflow: hidden;
    padding: 38px 34px 30px;
    border-radius: 28px;
    border: 1px solid rgba(23, 107, 92, .13);
    box-shadow: 0 14px 42px rgba(17, 66, 58, .07);
    display: flex;
    flex-direction: column;
    min-height: 600px;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease
}

.aha-price-card:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--green), var(--gold))
}

.aha-price-card:hover {
    transform: translateY(-9px);
    box-shadow: 0 28px 70px rgba(17, 66, 58, .15);
    border-color: rgba(23, 107, 92, .35)
}

.aha-price-card.featured {
    border: 0;
    transform: scale(1.045);
    background: linear-gradient(155deg, #176b5c 0%, #0b433b 100%);
    color: #fff;
    box-shadow: 0 30px 75px rgba(14, 81, 71, .29)
}

.aha-price-card.featured:before {
    height: 8px;
    background: linear-gradient(90deg, #efd475, #cfae4a, #f2df9b)
}

.aha-price-card.featured:hover {
    transform: scale(1.045) translateY(-9px)
}

.aha-price-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 64px;
    margin-bottom: 22px
}

.aha-plan-icon {
    width: 62px;
    height: 62px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    background: #e8f4f1;
    color: var(--green);
    font-size: 24px;
    box-shadow: inset 0 0 0 1px rgba(23, 107, 92, .08)
}

.aha-price-card.featured .aha-plan-icon {
    background: rgba(255, 255, 255, .12);
    color: var(--gold);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .14)
}

.aha-price-card .aha-popular {
    position: static;
    transform: none;
    background: var(--gold);
    color: #17302d;
    padding: 8px 13px;
    font-size: 10px;
    display: inline-flex;
    gap: 6px;
    align-items: center
}

.aha-plan-kicker {
    display: block;
    min-height: 42px;
    color: var(--green);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .6px;
    text-transform: uppercase
}

.aha-price-card.featured .aha-plan-kicker {
    color: #edd37d
}

.aha-price-card h3 {
    margin: 5px 0 18px;
    font-size: 34px
}

.aha-price {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    font-size: 64px;
    color: var(--ink)
}

.aha-price-card.featured .aha-price {
    color: #fff
}

.aha-price small {
    align-self: flex-start;
    margin-top: 7px
}

.aha-price span {
    margin: 0 0 7px 5px
}

.aha-price-card.featured .aha-price span {
    color: rgba(255, 255, 255, .68)
}

.aha-plan-frequency {
    display: flex;
    align-items: center;
    color: var(--muted);
    font-weight: 700;
    margin: 15px 0 20px
}

.aha-price-card.featured .aha-plan-frequency {
    color: rgba(255, 255, 255, .78)
}

.aha-price-divider {
    height: 1px;
    background: var(--line)
}

.aha-price-card.featured .aha-price-divider {
    background: rgba(255, 255, 255, .14)
}

.aha-price-card ul {
    flex: 1
}

.aha-price-card li {
    display: flex;
    gap: 10px;
    align-items: flex-start
}

.aha-price-card li i {
    color: var(--green);
    margin-top: 5px
}

.aha-price-card.featured li {
    color: rgba(255, 255, 255, .86)
}

.aha-price-card.featured li i {
    color: var(--gold)
}

.aha-plan-assurance {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 18px;
    color: var(--muted);
    font-size: 12px
}

.aha-price-card.featured .aha-plan-assurance {
    color: rgba(255, 255, 255, .68)
}

.aha-price-card.featured .aha-btn-gold {
    box-shadow: 0 12px 28px rgba(207, 174, 74, .2)
}

.aha-faq-image {
    position: relative;
    margin-top: 34px;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: var(--shadow)
}

.aha-faq-layout>div:first-child .aha-faq-image img {
    margin: 0;
    max-height: 360px;
    width: 100%;
    height: 360px;
    object-fit: cover
}

.aha-faq-image span {
    position: absolute;
    left: 18px;
    bottom: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .94);
    color: var(--green);
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 800
}

.aha-faq-item button i {
    color: var(--green);
    font-size: 17px;
    transition: transform .25s ease
}

.aha-faq-item button[aria-expanded="true"] i {
    transform: rotate(180deg)
}

.aha-trial li {
    display: flex;
    align-items: flex-start;
    gap: 10px
}

.aha-trial li i {
    color: var(--gold);
    margin-top: 5px
}

.aha-trial-photo {
    position: relative;
    margin-top: 30px;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .15)
}

.aha-trial-photo img {
    width: 100%;
    height: 260px;
    object-fit: cover
}

.aha-topbar a, .aha-footer a {
    display: inline-flex;
    align-items: center;
    gap: 8px
}

.aha-footer-grid>div>a:not(.aha-brand) {
    display: flex
}

.aha-whatsapp {
    font-size: 25px
}

.aha-trial-photo span {
    position: absolute;
    left: 16px;
    bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(14, 81, 71, .9);
    color: #fff;
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 13px;
    backdrop-filter: blur(8px)
}

.aha-price-card.plan-basic:before {
    background: linear-gradient(90deg, #176b5c, #6ab3a5)
}

.aha-price-card.plan-premium:before {
    background: linear-gradient(90deg, #c38d22, #f1d67a)
}

.aha-price-card.plan-premium .aha-plan-icon {
    background: #fff4d5;
    color: #9a6a0b
}

.aha-price-card.plan-premium {
    border-color: rgba(207, 174, 74, .35)
}

.aha-price-card.plan-premium:hover {
    border-color: var(--gold)
}

/* ==================================================
   25. Testimonial Spotlight Slider
================================================== */
.aha-testimonial-spotlight-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 18%, rgba(207, 174, 74, .13), transparent 30%),
        radial-gradient(circle at 94% 85%, rgba(23, 107, 92, .11), transparent 32%),
        #f8f6f1;
}

.aha-testimonial-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 42px;
    align-items: end;
    margin-bottom: 34px;
}

.aha-testimonial-intro .aha-section-heading {
    margin: 0;
    max-width: 780px;
    text-align: left;
}

.aha-testimonial-summary {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 320px;
    padding: 18px 22px;
    border: 1px solid rgba(23, 107, 92, .12);
    border-radius: 20px;
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 14px 40px rgba(17, 66, 58, .07);
    backdrop-filter: blur(10px);
}

.aha-testimonial-summary>strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 44px;
    line-height: 1;
    color: var(--green-dark);
}

.aha-testimonial-summary .aha-stars {
    margin: 0 0 5px;
}

.aha-testimonial-summary small {
    display: block;
    max-width: 220px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.4;
}

.aha-testimonial-stage {
    position: relative;
    padding: 10px 0 0;
}

.aha-testimonial-stage:before {
    content: "";
    position: absolute;
    inset: 35px 25px 42px;
    border-radius: 34px;
    background: linear-gradient(135deg, rgba(23, 107, 92, .12), rgba(207, 174, 74, .12));
    transform: rotate(-1.2deg);
}

.aha-testimonial-spotlight-section .aha-testimonial-swiper {
    position: relative;
    overflow: hidden;
    padding: 0;
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 30px 80px rgba(17, 66, 58, .14);
}

.aha-testimonial-spotlight-section .aha-testimonial-swiper .swiper-slide {
    height: auto;
}

.aha-testimonial-spotlight-section .aha-testimonial-swiper.swiper-initialized .swiper-slide {
    opacity: 0 !important;
    transition: opacity .45s ease !important;
}

.aha-testimonial-spotlight-section .aha-testimonial-swiper.swiper-initialized .swiper-slide-active {
    opacity: 1 !important;
}

.aha-testimonial-spotlight {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(290px, .55fr);
    height: 410px;
}

.aha-testimonial-quote-panel {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 64px 68px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .97), rgba(247, 250, 248, .96)),
        #fff;
}

.aha-testimonial-quote-panel:after {
    content: "“";
    position: absolute;
    right: 30px;
    bottom: -90px;
    font-family: Georgia, serif;
    font-size: 310px;
    line-height: 1;
    color: rgba(23, 107, 92, .045);
    pointer-events: none;
}

.aha-testimonial-number {
    position: absolute;
    top: 28px;
    left: 32px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--green);
}

.aha-testimonial-quote-panel>i {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    margin-bottom: 28px;
    border-radius: 18px;
    background: var(--green);
    color: #fff;
    font-size: 21px;
    box-shadow: 0 12px 28px rgba(23, 107, 92, .2);
}

.aha-testimonial-quote-panel blockquote {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(28px, 2.35vw, 40px);
    line-height: 1.38;
    letter-spacing: -.55px;
    color: #203d38;
}

.aha-testimonial-highlight {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 9px;
    margin-top: 30px;
    padding: 9px 13px;
    border-radius: 999px;
    background: #e9f4f1;
    color: var(--green-dark);
    font-size: 12px;
    font-weight: 800;
}

.aha-testimonial-person {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 22px;
    padding: 48px 42px;
    color: #fff;
    background:
        linear-gradient(155deg, rgba(23, 107, 92, .98), rgba(9, 60, 53, .99));
}

.aha-testimonial-person:before {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    top: -70px;
    right: -50px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 50%;
    box-shadow: 0 0 0 34px rgba(255, 255, 255, .035), 0 0 0 68px rgba(255, 255, 255, .025);
}

.aha-testimonial-avatar {
    position: relative;
    width: 92px;
    height: 92px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 28px;
    background: rgba(255, 255, 255, .1);
    color: var(--gold);
    font-family: Georgia, serif;
    font-size: 30px;
    font-weight: 700;
    box-shadow: inset 0 0 0 7px rgba(255, 255, 255, .04);
}

.aha-testimonial-person .aha-stars {
    margin: 0 0 13px;
    color: #f1d36f;
}

.aha-testimonial-person strong {
    display: block;
    font-family: Georgia, serif;
    font-size: 25px;
}

.aha-testimonial-person small {
    display: block;
    margin-top: 5px;
    color: rgba(255, 255, 255, .7);
    font-size: 13px;
}

.aha-testimonial-navigation {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 48px minmax(100px, auto) 48px;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin-top: 25px;
}

.aha-testimonial-navigation button {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(23, 107, 92, .16);
    border-radius: 15px;
    background: #fff;
    color: var(--green);
    cursor: pointer;
    box-shadow: 0 9px 25px rgba(17, 66, 58, .08);
    transition: transform .25s ease, background .25s ease, color .25s ease;
}

.aha-testimonial-navigation button:hover {
    transform: translateY(-2px);
    background: var(--green);
    color: #fff;
}

.aha-testimonial-navigation .swiper-pagination {
    position: static;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
}

.aha-testimonial-navigation .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 !important;
    background: #86aaa3;
    opacity: .48;
    transition: width .25s ease, opacity .25s ease, background .25s ease;
}

.aha-testimonial-navigation .swiper-pagination-bullet-active {
    width: 30px;
    border-radius: 999px;
    background: var(--green);
    opacity: 1;
}

/* ==================================================
   26. Compact Asymmetric Pricing Mosaic
================================================== */
.aha-pricing-modern-section {
    position: relative;
    overflow: hidden;
    background: #fff;
}

.aha-pricing-modern-section:before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, transparent 49.85%, rgba(23, 107, 92, .035) 50%, transparent 50.15%),
        linear-gradient(transparent 49.85%, rgba(23, 107, 92, .035) 50%, transparent 50.15%);
    background-size: 76px 76px;
    mask-image: linear-gradient(to bottom, transparent, black 18%, black 82%, transparent);
}

.aha-pricing-modern-header {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 42px;
    align-items: end;
    margin-bottom: 38px;
}

.aha-pricing-modern-header .aha-section-heading {
    margin: 0;
    max-width: 760px;
    text-align: left;
}

.aha-pricing-promise {
    display: flex;
    align-items: center;
    gap: 13px;
    max-width: 390px;
    padding: 16px 18px;
    border: 1px solid #e7e1d5;
    border-radius: 18px;
    background: #faf8f4;
}

.aha-pricing-promise>i {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 13px;
    background: #e8f4f1;
    color: var(--green);
}

.aha-pricing-promise strong, .aha-pricing-promise span {
    display: block;
}

.aha-pricing-promise span {
    margin-top: 2px;
    color: var(--muted);
    font-size: 12px;
}

.aha-pricing-mosaic {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(340px, .65fr);
    grid-template-areas:
        "standard basic"
        "standard premium";
    gap: 18px;
}

.aha-pricing-tile {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #e7e1d5;
    border-radius: 24px;
    background: #fbfaf7;
    box-shadow: 0 13px 38px rgba(17, 66, 58, .055);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.aha-pricing-tile:hover {
    transform: translateY(-5px);
    border-color: rgba(23, 107, 92, .28);
    box-shadow: 0 24px 55px rgba(17, 66, 58, .11);
}

.aha-pricing-tile--standard {
    grid-area: standard;
    min-height: 480px;
    color: #fff;
    border: 0;
    background:
        radial-gradient(circle at 87% 14%, rgba(207, 174, 74, .24), transparent 24%),
        linear-gradient(145deg, #176b5c, #0a453d);
    box-shadow: 0 28px 70px rgba(14, 81, 71, .24);
}

.aha-pricing-tile--basic {
    grid-area: basic
}

.aha-pricing-tile--premium {
    grid-area: premium;
    background: #fffaf0;
    border-color: rgba(207, 174, 74, .32)
}

.aha-pricing-tile header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 22px 24px 18px;
    border-bottom: 1px solid rgba(23, 107, 92, .09);
}

.aha-pricing-tile--standard header {
    padding: 30px 32px 22px;
    border-color: rgba(255, 255, 255, .13);
}

.aha-pricing-icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 15px;
    background: #e8f4f1;
    color: var(--green);
    font-size: 19px;
}

.aha-pricing-tile--premium .aha-pricing-icon {
    background: #fff0c7;
    color: #9a6a0b;
}

.aha-pricing-tile--standard .aha-pricing-icon {
    width: 58px;
    height: 58px;
    border: 1px solid rgba(255, 255, 255, .16);
    background: rgba(255, 255, 255, .1);
    color: var(--gold);
    font-size: 22px;
}

.aha-pricing-tile header>div {
    min-width: 0;
    margin-right: auto;
}

.aha-pricing-tile header span {
    display: block;
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .35px;
    text-transform: uppercase;
}

.aha-pricing-tile--standard header span {
    color: rgba(255, 255, 255, .68)
}

.aha-pricing-tile h3 {
    margin: 2px 0 0;
    font-family: Georgia, serif;
    font-size: 27px;
    line-height: 1.1;
}

.aha-pricing-tile--standard h3 {
    font-size: 32px
}

.aha-pricing-tile header>b {
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--gold);
    color: #17302d;
    font-size: 10px;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.aha-pricing-tile__body {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px 24px;
    align-items: start;
    padding: 22px 24px;
}

.aha-pricing-tile--standard .aha-pricing-tile__body {
    grid-template-columns: minmax(190px, .65fr) minmax(0, 1.35fr);
    gap: 18px 40px;
    padding: 32px;
}

.aha-pricing-value {
    display: flex;
    align-items: flex-end;
    white-space: nowrap;
    font-family: Georgia, serif;
    line-height: .9;
}

.aha-pricing-value small {
    align-self: flex-start;
    margin-top: 4px;
    font-size: 18px;
}

.aha-pricing-value strong {
    font-size: 48px;
}

.aha-pricing-tile--standard .aha-pricing-value strong {
    font-size: 72px
}

.aha-pricing-value span {
    margin: 0 0 4px 5px;
    color: var(--muted);
    font-family: Inter, sans-serif;
    font-size: 11px;
}

.aha-pricing-tile--standard .aha-pricing-value span {
    color: rgba(255, 255, 255, .65)
}

.aha-pricing-tile__body>p {
    margin: 3px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
}

.aha-pricing-tile--standard .aha-pricing-tile__body>p {
    grid-column: 1;
    color: rgba(255, 255, 255, .75);
    font-size: 15px;
}

.aha-pricing-tile ul {
    grid-column: 1/-1;
    display: grid;
    gap: 8px;
    margin: 10px 0 0;
    padding: 0;
    list-style: none;
}

.aha-pricing-tile--standard ul {
    grid-column: 2;
    grid-row: 1/span 2;
    grid-template-columns: 1fr 1fr;
    gap: 13px 20px;
    margin: 2px 0 0;
}

.aha-pricing-tile li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #526171;
    font-size: 12px;
    line-height: 1.4;
}

.aha-pricing-tile li i {
    margin-top: 3px;
    color: var(--green);
}

.aha-pricing-tile--standard li {
    color: rgba(255, 255, 255, .84);
    font-size: 13px;
}

.aha-pricing-tile--standard li i {
    color: var(--gold)
}

.aha-pricing-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: auto;
    padding: 17px 24px;
    border-top: 1px solid rgba(23, 107, 92, .09);
    color: var(--green-dark);
    font-weight: 900;
    transition: background .25s ease, color .25s ease;
}

.aha-pricing-tile--standard .aha-pricing-action {
    padding: 21px 32px;
    border-color: rgba(255, 255, 255, .13);
    color: #fff;
}

.aha-pricing-action:hover {
    background: #e9f4f1;
}

.aha-pricing-tile--standard .aha-pricing-action:hover {
    background: rgba(255, 255, 255, .09);
    color: var(--gold);
}

.aha-pricing-action i {
    transition: transform .25s ease
}

.aha-pricing-action:hover i {
    transform: translateX(4px)
}

/* ==================================================
   27. Premium Single Blog Post
================================================== */
.aha-reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green), var(--gold));
    box-shadow: 0 2px 8px rgba(23, 107, 92, .25);
}

.admin-bar .aha-reading-progress {
    top: 32px
}

.aha-single-hero {
    position: relative;
    overflow: hidden;
    padding: 64px 0 0;
    background:
        radial-gradient(circle at 85% 10%, rgba(207, 174, 74, .15), transparent 27%),
        linear-gradient(180deg, #f9f7f2 0%, #fff 100%);
}

.aha-single-hero:before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .7;
    pointer-events: none;
    background-image: linear-gradient(30deg, transparent 48%, rgba(23, 107, 92, .035) 49%, rgba(23, 107, 92, .035) 51%, transparent 52%), linear-gradient(-30deg, transparent 48%, rgba(23, 107, 92, .035) 49%, rgba(23, 107, 92, .035) 51%, transparent 52%);
    background-size: 70px 42px;
}

.aha-single-hero__content {
    position: relative;
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
}

.aha-single-breadcrumbs {
    display: flex;
    justify-content: center;
    margin-bottom: 26px;
    color: var(--muted);
    font-size: 13px;
}

.aha-single-category {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.aha-single-category a {
    padding: 7px 12px;
    border-radius: 999px;
    background: #e8f4f1;
    color: var(--green);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.aha-single-hero h1 {
    max-width: 950px;
    margin: 22px auto 18px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(44px, 5.2vw, 76px);
    line-height: 1.05;
    letter-spacing: -2.4px;
    color: #17312d;
}

.aha-single-deck {
    max-width: 760px;
    margin: 0 auto;
    color: #66736f;
    font-size: 19px;
    line-height: 1.65;
}

.aha-single-byline {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px 22px;
    margin-top: 30px;
    color: #5d6d68;
    font-size: 13px;
}

.aha-single-author-inline {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    color: var(--ink);
}

.aha-single-author-inline img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
}

.aha-single-byline>span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.aha-single-cover {
    position: relative;
    max-width: 1180px;
    margin: 48px auto -105px;
    padding: 0 24px;
}

.aha-single-cover img, .aha-single-cover__fallback {
    width: 100%;
    height: min(590px, 52vw);
    min-height: 360px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 32px 85px rgba(17, 66, 58, .2);
}

.aha-single-cover__fallback {
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, var(--green), var(--green-dark));
    color: rgba(255, 255, 255, .8);
    font-size: 80px;
}

.aha-single-main {
    padding: 165px 0 95px;
    background: #fff;
}

.aha-single-layout {
    display: grid;
    grid-template-columns: 72px minmax(0, 760px) minmax(250px, 300px);
    justify-content: center;
    gap: 42px;
    align-items: start;
}

.aha-single-share-rail {
    position: sticky;
    top: 132px;
}

.aha-single-share-rail>span {
    display: block;
    margin-bottom: 12px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.2px;
    text-align: center;
    text-transform: uppercase;
}

.aha-single-share-rail .social-share {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;
}

.aha-single-share-rail .social-share>span {
    display: none
}

.aha-single-share-rail .social-share a, .aha-single-share-rail .social-share button {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 1px solid #e7e1d5;
    border-radius: 14px;
    background: #fff;
    color: var(--green);
    font-size: 15px;
    cursor: pointer;
    box-shadow: 0 7px 22px rgba(17, 66, 58, .06);
    transition: transform .22s ease, background .22s ease, color .22s ease;
}

.aha-single-share-rail .social-share a:hover, .aha-single-share-rail .social-share button:hover {
    transform: translateY(-2px);
    background: var(--green);
    color: #fff;
}

.aha-article-shell {
    min-width: 0;
}

.aha-article-body {
    color: #31433f;
    font-size: 18px;
    line-height: 1.82;
}

.aha-article-body>p:first-of-type:first-letter {
    float: left;
    margin: 10px 11px 0 0;
    font-family: Georgia, serif;
    font-size: 68px;
    line-height: .72;
    color: var(--green);
}

.aha-article-body h2, .aha-article-body h3, .aha-article-body h4 {
    scroll-margin-top: 125px;
    font-family: Georgia, "Times New Roman", serif;
    color: #17312d;
    line-height: 1.22;
}

.aha-article-body h2 {
    margin: 52px 0 18px;
    font-size: 38px;
    letter-spacing: -.7px;
}

.aha-article-body h3 {
    margin: 38px 0 14px;
    font-size: 29px;
}

.aha-article-body h4 {
    font-size: 23px
}

.aha-article-body p {
    margin: 0 0 25px
}

.aha-article-body a {
    color: var(--green);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: rgba(23, 107, 92, .28);
    text-underline-offset: 3px;
}

.aha-article-body ul, .aha-article-body ol {
    margin: 0 0 28px;
    padding-left: 24px;
}

.aha-article-body li {
    margin: 9px 0
}

.aha-article-body blockquote {
    position: relative;
    margin: 42px 0;
    padding: 28px 32px 28px 36px;
    border-left: 5px solid var(--gold);
    border-radius: 0 20px 20px 0;
    background: #f7f5ef;
    color: #29433e;
    font-family: Georgia, serif;
    font-size: 24px;
    line-height: 1.55;
}

.aha-article-body img {
    height: auto;
    border-radius: 20px;
    box-shadow: 0 14px 42px rgba(17, 66, 58, .1);
}

.aha-article-body figure {
    margin: 40px 0
}

.aha-article-body figcaption {
    margin-top: 10px;
    color: var(--muted);
    font-size: 12px;
    text-align: center;
}

.aha-article-body table {
    width: 100%;
    margin: 35px 0;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 0 0 1px #e7e1d5;
}

.aha-article-body th, .aha-article-body td {
    padding: 14px 16px;
    border-bottom: 1px solid #e7e1d5;
    text-align: left;
}

.aha-article-body th {
    background: #e9f4f1;
    color: var(--green-dark)
}

.aha-article-body pre {
    overflow: auto;
    padding: 22px;
    border-radius: 16px;
    background: #102f2b;
    color: #eef6f4;
}

.aha-article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 42px;
    padding-top: 25px;
    border-top: 1px solid #ece7df;
}

.aha-article-tags a {
    padding: 8px 12px;
    border-radius: 999px;
    background: #f3f1ec;
    color: #52635f;
    font-size: 12px;
    font-weight: 700;
}

.aha-single-sidebar {
    position: sticky;
    top: 120px;
    display: grid;
    gap: 18px;
}

.aha-single-widget {
    padding: 24px;
    border: 1px solid #e7e1d5;
    border-radius: 20px;
    background: #fbfaf7;
}

.aha-single-widget h2, .aha-single-widget h3 {
    margin: 0 0 16px;
    font-family: Georgia, serif;
    font-size: 21px;
}

.aha-toc-list {
    display: grid;
    gap: 11px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.aha-toc-list li.is-h3 {
    padding-left: 13px
}

.aha-toc-list a {
    display: block;
    color: #66736f;
    font-size: 12px;
    line-height: 1.45;
}

.aha-toc-list a:hover, .aha-toc-list a.is-active {
    color: var(--green);
    font-weight: 800
}

.aha-author-card {
    text-align: center;
}

.aha-author-card img {
    width: 76px;
    height: 76px;
    margin: 0 auto 13px;
    border-radius: 50%;
    box-shadow: 0 8px 22px rgba(17, 66, 58, .12);
}

.aha-author-card p {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 12px;
}

.aha-single-cta-widget {
    border: 0;
    color: #fff;
    background: linear-gradient(145deg, var(--green), var(--green-dark));
}

.aha-single-cta-widget h3 {
    color: #fff
}

.aha-single-cta-widget p {
    color: rgba(255, 255, 255, .74);
    font-size: 13px;
}

.aha-single-cta-widget .aha-btn {
    width: 100%;
    min-height: 45px;
    padding-inline: 16px;
    font-size: 12px;
}

.aha-author-bio-wide {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 22px;
    align-items: center;
    margin-top: 46px;
    padding: 28px;
    border: 1px solid #e7e1d5;
    border-radius: 22px;
    background: #fbfaf7;
}

.aha-author-bio-wide img {
    width: 88px;
    height: 88px;
    border-radius: 50%;
}

.aha-author-bio-wide h3 {
    margin: 0 0 5px;
    font-family: Georgia, serif;
}

.aha-author-bio-wide p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.aha-post-navigation-premium {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 28px;
}

.aha-post-navigation-premium a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 115px;
    padding: 21px;
    border: 1px solid #e7e1d5;
    border-radius: 18px;
    background: #fff;
    color: var(--ink);
    box-shadow: 0 8px 28px rgba(17, 66, 58, .05);
}

.aha-post-navigation-premium a:last-child {
    text-align: left;
}

.aha-post-navigation-premium small {
    color: var(--green);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.aha-post-navigation-premium strong {
    margin-top: 7px;
    font-family: Georgia, serif;
    line-height: 1.35;
}

.aha-related-posts {
    padding: 85px 0;
    background: #f7f5f0;
}

.aha-related-posts__header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    margin-bottom: 28px;
}

.aha-related-posts__header h2 {
    margin: 0;
    font-family: Georgia, serif;
    font-size: 38px;
}

.aha-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.aha-related-card {
    overflow: hidden;
    border: 1px solid #e7e1d5;
    border-radius: 20px;
    background: #fff;
    transition: transform .25s ease, box-shadow .25s ease;
	padding: 20px;
}

.aha-related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 45px rgba(17, 66, 58, .1);
}

.aha-related-card img, .aha-related-card__fallback {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.aha-related-card__fallback {
    display: grid;
    place-items: center;
    background: #e9f4f1;
    color: var(--green);
    font-size: 34px;
}

.aha-related-card>div {
    padding: 20px
}

.aha-related-card span {
    color: var(--green);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.aha-related-card h3 {
    margin: 7px 0 0;
    font-family: Georgia, serif;
    font-size: 22px;
    line-height: 1.3;
}

.single-post .comments-area {
    margin-top: 42px;
    padding-top: 35px;
    border-top: 1px solid #e7e1d5;
}

.single-post .comment-list {
    display: grid;
    gap: 18px;
    padding: 0;
    list-style: none;
}

.single-post .comment-body {
    padding: 20px;
    border: 1px solid #e7e1d5;
    border-radius: 16px;
    background: #fbfaf7;
}

.single-post .comment-form input:not([type=checkbox]), .single-post .comment-form textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid #dcd7cd;
    border-radius: 12px;
}

.single-post .comment-form .submit {
    min-height: 48px;
    padding: 0 22px;
    border: 0;
    border-radius: 999px;
    background: var(--green);
    color: #fff;
    font-weight: 800;
    cursor: pointer;
}

/* Single-post and slider fallback refinements */
.aha-testimonial-spotlight-section .aha-testimonial-swiper:not(.swiper-initialized) .swiper-wrapper {
    display: grid !important;
    gap: 20px;
    transform: none !important;
}

.aha-testimonial-spotlight-section .aha-testimonial-swiper:not(.swiper-initialized) .swiper-slide {
    width: 100% !important;
}

.aha-single-breadcrumbs .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.aha-single-breadcrumbs .breadcrumbs li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.aha-single-breadcrumbs .breadcrumbs li:not(:last-child):after {
    content: "/";
    color: #a4ada9;
}

.aha-single-breadcrumbs .breadcrumbs a:hover {
    color: var(--green)
}

.aha-related-card>a {
    display: block;
    height: 100%
}

/* ==================================================
   Final Feedback Refinements
================================================== */

/* Hero: premium Quran visual with calm loop animation */
.aha-hero-quran-visual {
    isolation: isolate;
    min-height: 560px;
    display: grid;
    place-items: center;
    padding: 34px;
}

.aha-hero-quran-visual:before {
    content: "";
    position: absolute;
    inset: 38px 16px 24px 48px;
    border: 1px solid rgba(23, 107, 92, .14);
    border-radius: 42% 58% 52% 48% / 48% 42% 58% 52%;
    background: linear-gradient(145deg, rgba(255, 255, 255, .82), rgba(232, 244, 241, .52));
    z-index: -2;
}

.aha-hero-quran-glow {
    position: absolute;
    width: 76%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(207, 174, 74, .34), rgba(23, 107, 92, .13) 42%, transparent 70%);
    filter: blur(14px);
    animation: ahaQuranGlow 7s ease-in-out infinite;
    z-index: -1;
}

.aha-hero-quran-frame {
    position: relative;
    width: min(100%, 500px);
    height: 510px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 34px;
    background: #102d28;
    box-shadow: 0 32px 80px rgba(13, 64, 56, .2), 0 0 0 10px rgba(255, 255, 255, .52);
    animation: ahaQuranFloat 7s cubic-bezier(.45, 0, .55, 1) infinite;
}

.aha-hero-quran-frame:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(255, 255, 255, .18), transparent 38%, rgba(207, 174, 74, .1));
    pointer-events: none;
}

.aha-hero-quran-frame img,
.aha-hero-media.aha-hero-quran-visual>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: inherit;
    transform: scale(1.035);
}

.aha-hero-orbit {
    position: absolute;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 9px rgba(207, 174, 74, .11), 0 0 30px rgba(207, 174, 74, .5);
    animation: ahaOrbit 8s ease-in-out infinite;
}

.aha-hero-orbit--one {
    right: 8%;
    top: 22%
}

.aha-hero-orbit--two {
    left: 10%;
    bottom: 21%;
    animation-delay: -3.8s;
    transform: scale(.72)
}

@keyframes ahaQuranFloat {
    0%, 100% {
        transform: translate3d(0, 0, 0) rotate(-.25deg)
    }

    50% {
        transform: translate3d(0, -13px, 0) rotate(.25deg)
    }
}

@keyframes ahaQuranGlow {
    0%, 100% {
        transform: scale(.94);
        opacity: .7
    }

    50% {
        transform: scale(1.06);
        opacity: 1
    }
}

@keyframes ahaOrbit {
    0%, 100% {
        translate: 0 0;
        opacity: .55
    }

    50% {
        translate: 0 -17px;
        opacity: 1
    }
}

/* About: media height follows the content column instead of dominating it */
.aha-about-section .aha-split {
    grid-template-columns: minmax(330px, .82fr) minmax(0, 1.18fr);
    align-items: stretch;
    gap: 72px;
}

.aha-about-section .aha-image-stack {
    min-height: 0;
    height: 100%;
    max-height: 590px;
    align-self: center;
    overflow: hidden;
    border-radius: 28px;
}

.aha-about-section .aha-image-stack img {
    height: 100%;
    min-height: 0;
    max-height: none;
    object-fit: cover;
    object-position: center;
    border-radius: 28px;
}

/* Testimonials: pagination dots only */
.aha-testimonial-pagination.swiper-pagination {
    position: relative;
    inset: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 9px;
    width: auto;
    margin: 24px auto 0;
}

.aha-testimonial-pagination .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    margin: 0 !important;
    border-radius: 999px;
    background: rgba(23, 107, 92, .25);
    opacity: 1;
    transition: width .25s ease, background .25s ease, transform .25s ease;
}

.aha-testimonial-pagination .swiper-pagination-bullet-active {
    width: 31px;
    background: var(--green);
    transform: none;
}

.aha-testimonial-navigation,
.aha-testimonial-prev,
.aha-testimonial-next {
    display: none !important
}

/* Pricing: three equal compact lamp-inspired cards based on supplied reference */
.aha-pricing-lantern-section {
    position: relative;
    overflow: hidden;
    background: #041916;
    color: #fff;
    padding: 80px 0;
}

.aha-pricing-lantern-section:before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .23;
    background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, .18) 1px, transparent 0);
    background-size: 24px 24px;
    mask-image: linear-gradient(to bottom, transparent, black 22%, black 82%, transparent);
}

.aha-pricing-ambient {
    position: absolute;
    width: 650px;
    height: 650px;
    left: 50%;
    top: 55%;
    translate: -50% -50%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(23, 107, 92, .22), transparent 67%);
    filter: blur(15px);
}

.aha-pricing-lantern-section .aha-container {
    position: relative;
    z-index: 1;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Toggle Layout */
.aha-pricing-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 48px;
    max-width: 1120px;
    margin-inline: auto;
}

.aha-pricing-heading {
    margin-bottom: 0;
    flex: 1;
    min-width: 300px;
}

.aha-pricing-heading > span {
    color: var(--gold);
    background: rgba(207, 174, 74, .1);
    border: 1px solid rgba(207, 174, 74, .22);
    display: inline-block;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 12px;
}

.aha-pricing-heading h2 {
    color: var(--white);
    margin: 0 0 8px 0;
    font-size: 36px;
}

.aha-pricing-heading p {
    color: rgba(255, 255, 255, .6);
    margin: 0;
    font-size: 15px;
}

/* Custom Glassy Country Toggle Container */
.aha-glass-dropdown {
    position: relative;
    width: 240px;
    user-select: none;
    z-index: 10;
}

/* Dropdown Main Trigger Button */
.aha-glass-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(24, 48, 45, 0.6), rgba(8, 12, 11, 0.8));
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(207, 174, 74, 0.4);
    border-radius: var(--radius);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.aha-glass-trigger:hover, 
.aha-glass-dropdown.is-open .aha-glass-trigger {
    border-color: var(--gold);
    box-shadow: 0 12px 35px rgba(207, 174, 74, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.aha-glass-trigger .aha-selected-val {
    display: flex;
    align-items: center;
    gap: 10px;
}

.aha-glass-arrow {
    color: var(--gold);
    font-size: 11px;
    transition: transform 0.3s ease;
}

.aha-glass-dropdown.is-open .aha-glass-arrow {
    transform: rotate(180deg);
}

/* Inside Dropdown List (Fully Glassy Menu) */
.aha-glass-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(24, 48, 45, 0.85) 0%, rgba(14, 81, 71, 0.75) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(207, 174, 74, 0.35);
    border-radius: 18px;
    padding: 8px;
    margin: 0;
    list-style: none;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.aha-glass-dropdown.is-open .aha-glass-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Inside Options Styling */
.aha-glass-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.aha-glass-item-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.aha-glass-item-flag {
    font-size: 18px;
    line-height: 1;
}

.aha-glass-item-curr {
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    opacity: 0.85;
}

.aha-glass-item:hover, 
.aha-glass-item.is-selected {
    background: rgba(207, 174, 74, 0.18);
    color: var(--white);
    border: 1px solid rgba(207, 174, 74, 0.3);
}

.aha-glass-item.is-selected .aha-glass-item-curr {
    opacity: 1;
}

/* Grid & Cards */
.aha-pricing-lantern-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    max-width: 1120px;
    margin-inline: auto;
}

.aha-lantern-price-card {
    --plan-accent: #5ba9a5;
    --plan-glow: rgba(91, 169, 165, .26);
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 470px;
    overflow: hidden;
    padding: 28px 26px 24px;
    border: 1px solid color-mix(in srgb, var(--plan-accent) 55%, #5f6a67);
    border-radius: 14px;
    background: linear-gradient(180deg, color-mix(in srgb, var(--plan-accent) 14%, #0b1513) 0, #0a100f 36%, #080c0b 100%);
    box-shadow: inset 0 1px rgba(255, 255, 255, .05), 0 20px 60px rgba(0, 0, 0, .22);
    transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.aha-lantern-price-card:hover {
    transform: translateY(-7px);
    border-color: var(--plan-accent);
    box-shadow: inset 0 1px rgba(255, 255, 255, .08), 0 28px 72px rgba(0, 0, 0, .34), 0 0 38px var(--plan-glow);
}

.aha-lantern-price-card--standard {
    --plan-accent: var(--gold);
    --plan-glow: rgba(215, 121, 56, .28);
}

.aha-lantern-price-glow {
    position: absolute;
    inset: -120px -60px auto;
    height: 270px;
    background: radial-gradient(ellipse, var(--plan-glow), transparent 69%);
    pointer-events: none;
}

.aha-lantern-plan-icon {
    position: relative;
    width: 52px;
    height: 57px;
    display: grid;
    place-items: center;
    margin-bottom: 17px;
    color: #fff;
    font-size: 20px;
    background: linear-gradient(145deg, color-mix(in srgb, var(--plan-accent) 72%, white), var(--plan-accent));
    clip-path: polygon(50% 0, 93% 24%, 93% 76%, 50% 100%, 7% 76%, 7% 24%);
    box-shadow: 0 15px 35px var(--plan-glow);
}

.aha-lantern-popular {
    position: absolute;
    top: 27px;
    right: 24px;
    padding: 6px 10px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, .08);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.aha-lantern-price-card h3 {
    margin: 0 0 8px;
    color: #f4f6f5;
    font-family: inherit;
    font-size: 18px;
    font-weight: 500;
}

.aha-lantern-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    color: #fff;
    line-height: 1;
}

.aha-lantern-price > span {
    font-size: 28px;
    font-weight: 700;
}

.aha-lantern-price strong {
    font-size: 46px;
    letter-spacing: -2px;
}

.aha-lantern-price small {
    font-size: 13px;
    color: rgba(255, 255, 255, .72);
}

.aha-lantern-price-card > p {
    min-height: 45px;
    margin: 12px 0 0;
    color: rgba(255, 255, 255, .66);
    font-size: 12px;
    line-height: 1.55;
}

.aha-lantern-divider {
    height: 1px;
    margin: 17px 0 15px;
    background: linear-gradient(90deg, var(--plan-accent), rgba(255, 255, 255, .12));
    opacity: .65;
}

.aha-lantern-price-card ul {
    display: grid;
    gap: 12px;
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
}

.aha-lantern-price-card li {
    display: grid;
    grid-template-columns: 16px 1fr;
    gap: 10px;
    align-items: start;
    color: rgba(255, 255, 255, .78);
    font-size: 12px;
}

.aha-lantern-price-card li i {
    margin-top: 3px;
    color: var(--plan-accent);
    font-size: 11px;
}

.aha-lantern-price-action {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    margin-top: auto;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 5px;
    color: #fff;
    background: transparent;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    transition: background .25s ease, color .25s ease, border-color .25s ease;
}

.aha-lantern-price-card.is-featured .aha-lantern-price-action {
    color: #0b100f;
    border-color: #fff;
    background: #fff;
}

.aha-lantern-price-action:hover {
    color: #07110f;
    border-color: var(--plan-accent);
    background: var(--plan-accent);
}

.aha-pricing-footnote {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 9px;
    margin: 27px 0 0;
    color: rgba(255, 255, 255, .55);
    font-size: 12px;
}

.aha-pricing-footnote i {
    color: var(--gold);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .aha-pricing-lantern-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .aha-pricing-lantern-grid {
        grid-template-columns: 1fr;
    }
    .aha-pricing-header-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
    .aha-glass-dropdown {
        width: 100%;
    }
}


/* FAQ: clear single-open state */
.aha-faq-item {
    transition: border-color .22s ease, background .22s ease, padding .22s ease;
}

.aha-faq-item.is-open {
    border-color: rgba(23, 107, 92, .24);
    /* background: rgba(255, 255, 255, .58); */
}

.aha-faq-item.is-open button {
    color: var(--green)
}

.aha-faq-item button i {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    flex: 0 0 32px;
    border-radius: 50%;
    color: var(--green);
    background: #e5f2ef;
}

/* Final CTA: light premium hierarchy rather than another dark block */
.aha-final-cta--premium {
    position: relative;
    overflow: hidden;
    padding: 72px 0;
    background: linear-gradient(135deg, #f7f1df 0, #edf6f2 53%, #f8f6ef 100%);
    border-top: 1px solid rgba(207, 174, 74, .3);
}

.aha-final-cta--premium .aha-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
}

.aha-final-cta-icon {
    width: 76px;
    height: 76px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(23, 107, 92, .14);
    border-radius: 24px;
    color: #fff;
    background: linear-gradient(145deg, var(--green), var(--green-dark));
    box-shadow: 0 18px 44px rgba(23, 107, 92, .18);
    font-size: 28px;
}

.aha-final-cta--premium span {
    color: var(--gold);
    font-size: 11px
}

.aha-final-cta--premium h2 {
    max-width: 720px;
    margin: 7px 0 8px;
    color: var(--ink);
    font-size: clamp(34px, 3.4vw, 48px);
}

.aha-final-cta--premium p {
    color: var(--muted)
}

.aha-final-cta--premium .aha-btn {
    white-space: nowrap
}

.aha-final-cta-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    pointer-events: none;
}

.aha-final-cta-shape--one {
    width: 340px;
    height: 340px;
    right: -120px;
    top: -190px;
    background: rgba(207, 174, 74, .13);
}

.aha-final-cta-shape--two {
    width: 220px;
    height: 220px;
    left: -95px;
    bottom: -145px;
    background: rgba(23, 107, 92, .11);
}

/* ==================================================
   Compact Two-Step Free Trial Form
================================================== */
.aha-trial--compact {
    padding: 82px 0;
    background:
        radial-gradient(circle at 12% 16%, rgba(207, 174, 74, .14), transparent 31%),
        radial-gradient(circle at 90% 82%, rgba(255, 255, 255, .07), transparent 28%),
        var(--green-dark);
}

.aha-trial-shell {
    position: relative;
    z-index: 2;
    max-width: 1120px;
}

.aha-trial-heading {
    max-width: 720px;
    margin: 0 auto 32px;
    text-align: center;
}

.aha-trial-heading h2 {
    margin: 12px 0 8px;
    color: #fff;
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.08;
}

.aha-trial-heading p {
    max-width: 650px;
    margin: 0 auto;
    color: rgba(255, 255, 255, .74);
    font-size: 16px;
}

.aha-trial-panel {
    display: grid;
    grid-template-columns: minmax(260px, .72fr) minmax(0, 1.45fr);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 30px 80px rgba(4, 38, 33, .28);
}

.aha-trial-summary {
    display: flex;
    flex-direction: column;
    padding: 34px 30px;
    color: #fff;
    background:
        linear-gradient(160deg, rgba(255, 255, 255, .06), transparent 52%),
        var(--green);
}

.aha-trial-summary-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 18px;
    color: var(--gold);
    background: rgba(255, 255, 255, .08);
    font-size: 23px;
}

.aha-trial-summary-label {
    color: var(--gold);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.aha-trial-summary h3 {
    margin: 9px 0 18px;
    color: #fff;
    font-size: 27px;
    line-height: 1.18;
}

.aha-trial-benefits {
    display: grid;
    gap: 11px;
    margin: 0 0 26px;
    padding: 0;
    list-style: none;
}

.aha-trial-benefits li {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 9px;
    align-items: center;
    margin: 0;
    color: rgba(255, 255, 255, .84);
    font-size: 14px;
}

.aha-trial-benefits i {
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--green-dark);
    background: var(--gold);
    font-size: 10px;
}

.aha-trial-quick-contact {
    display: grid;
    gap: 10px;
    margin-top: auto;
}

.aha-trial-quick-contact a {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    min-width: 0;
    padding: 11px 12px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 14px;
    background: rgba(255, 255, 255, .06);
    transition: background .2s ease, border-color .2s ease;
}

.aha-trial-quick-contact a:hover {
    border-color: rgba(255, 255, 255, .3);
    background: rgba(255, 255, 255, .1);
}

.aha-trial-quick-contact a>i {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    color: var(--gold);
    background: rgba(255, 255, 255, .09);
}

.aha-trial-quick-contact span {
    min-width: 0;
    overflow-wrap: anywhere;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
}

.aha-trial-quick-contact small {
    display: block;
    margin-bottom: 2px;
    color: rgba(255, 255, 255, .58);
    font-size: 10px;
    font-weight: 600;
}

.aha-trial-response-note {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    margin: 16px 0 0;
    color: rgba(255, 255, 255, .56);
    font-size: 11px;
    line-height: 1.5;
}

.aha-trial-form--compact {
    min-width: 0;
    padding: 32px 34px 26px;
    border-radius: 0;
    box-shadow: none;
}

.aha-form-steps {
    display: grid;
    grid-template-columns: auto minmax(28px, 1fr) auto;
    align-items: center;
    max-width: 480px;
    margin: 0 auto 27px;
}

.aha-form-step {
    display: flex;
    gap: 9px;
    align-items: center;
    color: #929a99;
}

.aha-form-step span {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--soft);
    font-size: 12px;
    font-weight: 900;
}

.aha-form-step strong {
    font-size: 12px;
    white-space: nowrap;
}

.aha-form-step.is-active {
    color: var(--green) !important;
}

.aha-form-step.is-active span,
.aha-form-step.is-complete span {
    border-color: var(--green);
    color: #fff;
    background: var(--green);
}

.aha-form-step-line {
    height: 1px;
    margin-inline: 12px;
    background: var(--line);
}

.aha-trial-step {
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

.aha-step-form.is-enhanced .aha-trial-step:not(.is-active) {
    display: none;
}

.aha-form-grid--compact {
    grid-template-columns: minmax(0, 1fr) minmax(120px, .52fr);
    gap: 14px;
}

.aha-field {
    min-width: 0;
    margin: 0 !important;
}

.aha-field--wide,
.aha-form-grid--compact .aha-field:nth-child(3),
.aha-form-grid--compact .aha-field:nth-child(4) {
    grid-column: auto;
}

.aha-field>span {
    display: block;
    margin-bottom: 6px;
    color: #344440;
    font-size: 12px;
    font-weight: 800;
}

.aha-field>span b,
.aha-consent--compact b {
    color: #b65e4f;
}

.aha-trial-form--compact input,
.aha-trial-form--compact select,
.aha-trial-form--compact textarea {
    min-height: 46px;
    margin-top: 0;
    padding: 10px 12px;
    border-color: #e2ded6;
    border-radius: 10px;
    background: #fcfbf8;
    font-size: 13px;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.aha-trial-form--compact textarea {
    min-height: 82px;
    resize: vertical;
}

.aha-trial-form--compact input:focus,
.aha-trial-form--compact select:focus,
.aha-trial-form--compact textarea:focus {
    outline: 0;
    border-color: var(--green);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(23, 107, 92, .11);
}

.aha-trial-form--compact .is-invalid {
    border-color: #bc5446;
    box-shadow: 0 0 0 3px rgba(188, 84, 70, .1);
}

.aha-consent--compact {
/*     display: grid !important; */
    grid-template-columns: 17px 1fr;
    gap: 9px;
    align-items: start;
    margin: 15px 0 0 !important;
    color: #68726f;
    font-size: 11px !important;
    font-weight: 600 !important;
    line-height: 1.45;
}

.aha-consent--compact input {
    width: 16px;
    min-height: 16px;
    margin: 1px 0 0;
    padding: 0;
}

.aha-step-actions {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 20px;
}

.aha-step-actions--end {
    justify-content: flex-end;
}

.aha-step-actions .aha-btn {
    min-height: 46px;
    padding-inline: 21px;
    font-size: 13px;
}

.aha-form-status:empty {
    display: none;
}

.aha-form-status {
    margin: 0 0 16px;
    padding: 11px 13px;
    border-radius: 10px;
    font-size: 12px;
}

.aha-form-status.is-success,
.aha-form-status.form-notice.is-success {
    color: #155c4d;
    background: #e7f5f0;
}

.aha-form-status.is-error,
.aha-form-status.form-notice.is-error {
    color: #8d3d32;
    background: #fbeae7;
}

.aha-form-privacy {
    display: flex;
    justify-content: center;
    gap: 7px;
    align-items: center;
    margin: 17px 0 0;
    color: #8a918f;
    font-size: 10px;
    text-align: center;
}

.aha-form-privacy i {
    color: var(--green);
}

@media (max-width: 900px) {
    .aha-trial-panel {
        grid-template-columns: 1fr;
    }

    .aha-trial-summary {
        display: grid;
        grid-template-columns: 56px minmax(0, 1fr);
        column-gap: 18px;
        padding: 27px 28px;
    }

    .aha-trial-summary-icon {
        grid-row: 1 / span 2;
        margin: 0;
    }

    .aha-trial-summary-label,
    .aha-trial-summary h3 {
        grid-column: 2;
    }

    .aha-trial-summary h3 {
        margin: 3px 0 0;
        font-size: 23px;
    }

    .aha-trial-benefits {
        grid-column: 1 / -1;
        grid-template-columns: repeat(3, 1fr);
        margin: 21px 0 0;
    }

    .aha-trial-quick-contact,
    .aha-trial-response-note {
        display: none;
    }
}

@media (max-width: 620px) {
    .aha-trial--compact {
        padding: 64px 0;
    }

    .aha-trial-heading {
        margin-bottom: 24px;
        text-align: left;
    }

    .aha-trial-heading h2 {
        font-size: 36px;
    }

    .aha-trial-panel {
        border-radius: 21px;
    }

    .aha-trial-summary {
        display: block;
        padding: 24px 22px;
    }

    .aha-trial-summary-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 16px;
    }

    .aha-trial-summary-label,
    .aha-trial-summary h3 {
        display: block;
    }

    .aha-trial-summary h3 {
        margin: 7px 0 17px;
        font-size: 23px;
    }

    .aha-trial-benefits {
        display: grid;
        grid-template-columns: 1fr;
        gap: 9px;
        margin: 0;
    }

    .aha-trial-form--compact {
        padding: 25px 20px 21px;
    }

    .aha-form-step strong {
        display: none;
    }

    .aha-form-steps {
        grid-template-columns: 30px 1fr 30px;
        max-width: 210px;
        margin-bottom: 22px;
    }

    .aha-form-grid--compact {
        grid-template-columns: 1fr;
        gap: 13px;
    }

    .aha-field,
    .aha-field--wide,
    .aha-field--small {
        grid-column: 1 !important;
    }

    .aha-step-actions {
        flex-direction: column-reverse;
    }

    .aha-step-actions--end {
        flex-direction: row;
    }

    .aha-step-actions .aha-btn {
        width: 100%;
    }

    .aha-form-privacy {
        align-items: flex-start;
        text-align: left;
    }
}

/* ==================================================
   Downloads Page
================================================== */

.aha-downloads-page {
    overflow: hidden;
    background: var(--cream);
}

/* ==================================================
   Downloads Page Banner
================================================== */

.aha-downloads-banner {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding-block: clamp(58px, 8vw, 105px);
    color: var(--white);
    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(207, 174, 74, 0.24),
            transparent 28%
        ),
        radial-gradient(
            circle at 12% 95%,
            rgba(255, 255, 255, 0.08),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            var(--green-dark) 0%,
            var(--green) 58%,
            #247b6b 100%
        );
}

.aha-downloads-banner__pattern {
    position: absolute;
    z-index: -1;
    inset: 0;
    opacity: 0.08;
    pointer-events: none;
    background-image:
        linear-gradient(
            30deg,
            var(--white) 12%,
            transparent 12.5%,
            transparent 87%,
            var(--white) 87.5%,
            var(--white)
        ),
        linear-gradient(
            150deg,
            var(--white) 12%,
            transparent 12.5%,
            transparent 87%,
            var(--white) 87.5%,
            var(--white)
        );
    background-size: 68px 118px;
}

.aha-downloads-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-block-end: 34px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.78);
}

.aha-downloads-breadcrumb a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.aha-downloads-breadcrumb a:hover {
    opacity: 0.78;
    transform: translateX(-2px);
}

.aha-downloads-breadcrumb > i {
    font-size: 10px;
    opacity: 0.55;
}

.aha-downloads-banner__layout {
    display: grid;
    grid-template-columns: minmax(0, 760px) minmax(220px, 1fr);
    align-items: center;
    gap: clamp(40px, 8vw, 110px);
}

.aha-downloads-banner__content {
    max-width: 760px;
}

.aha-downloads-banner__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-block-end: 20px;
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    color: #fff6d7;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.aha-downloads-banner h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1.08;
    letter-spacing: -0.045em;
    color: var(--white);
}

.aha-downloads-banner__content > p {
    max-width: 650px;
    margin: 22px 0 30px;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(16px, 1.7vw, 19px);
    line-height: 1.75;
}

.aha-downloads-home-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding-inline: 22px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 12px;
    color: var(--green-dark);
    background: var(--white);
    font-weight: 700;
    box-shadow: 0 14px 35px rgba(6, 48, 42, 0.2);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease;
}

.aha-downloads-home-button:hover {
    transform: translateY(-2px);
    background: #fffaf0;
    box-shadow: 0 18px 42px rgba(6, 48, 42, 0.26);
}

.aha-downloads-banner__icon {
    position: relative;
    display: grid;
    place-items: center;
    width: min(100%, 300px);
    aspect-ratio: 1;
    margin-inline: auto;
}

.aha-downloads-banner__icon-ring {
    position: absolute;
    inset: 4%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
}

.aha-downloads-banner__icon-ring::before,
.aha-downloads-banner__icon-ring::after {
    content: "";
    position: absolute;
    border-radius: 50%;
}

.aha-downloads-banner__icon-ring::before {
    inset: 15%;
    border: 1px dashed rgba(255, 255, 255, 0.25);
}

.aha-downloads-banner__icon-ring::after {
    inset: 31%;
    background: rgba(255, 255, 255, 0.07);
}

.aha-downloads-banner__icon > div {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 130px;
    height: 130px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 34px;
    color: var(--green-dark);
    background: linear-gradient(
        145deg,
        var(--white),
        #f8edd0
    );
    box-shadow:
        0 28px 60px rgba(6, 48, 42, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);
    transform: rotate(-5deg);
}

.aha-downloads-banner__icon i {
    font-size: 54px;
}

/* ==================================================
   Downloads Grid Section
================================================== */

.aha-downloads-section {
    padding-block: clamp(70px, 9vw, 120px);
}

.aha-downloads-heading {
    max-width: 720px;
    margin: 0 auto clamp(38px, 5vw, 60px);
    text-align: center;
}

.aha-downloads-heading .aha-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-block-end: 14px;
    color: var(--green);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.aha-downloads-heading h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(31px, 4vw, 48px);
    line-height: 1.15;
    letter-spacing: -0.035em;
}

.aha-downloads-heading p {
    max-width: 630px;
    margin: 17px auto 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
}

.aha-downloads-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.aha-download-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 16px 44px rgba(17, 66, 58, 0.08);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.aha-download-card:hover {
    transform: translateY(-7px);
    border-color: rgba(23, 107, 92, 0.25);
    box-shadow: var(--shadow);
}

.aha-download-card__image {
    position: relative;
    overflow: hidden;
    min-height: 215px;
    background:
        radial-gradient(
            circle at 75% 25%,
            rgba(207, 174, 74, 0.18),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            #edf7f3,
            var(--soft)
        );
}

.aha-download-card__image img {
    width: 100%;
/*     height: 230px; */
    padding: 22px;
    object-fit: contain;
    transition: transform 0.45s ease;
}

.aha-download-card:hover .aha-download-card__image img {
    transform: scale(1.035);
}

.aha-download-card__type {
    position: absolute;
    inset-block-start: 16px;
    inset-inline-start: 16px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 11px;
    border-radius: 999px;
    color: var(--white);
    background: rgba(14, 81, 71, 0.92);
    box-shadow: 0 8px 20px rgba(14, 81, 71, 0.18);
    font-size: 12px;
    font-weight: 700;
    backdrop-filter: blur(8px);
}

.aha-download-card__content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 25px;
}

.aha-download-card__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-block-end: 13px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.aha-download-card__meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.aha-download-card__meta i {
    color: var(--green);
}

.aha-download-card__content h3 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(20px, 2vw, 24px);
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.aha-download-card__content > p {
    margin: 13px 0 23px;
    color: var(--muted);
    line-height: 1.7;
}

.aha-download-card__button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 50px;
    margin-block-start: auto;
    padding-inline: 18px;
    border: 1px solid rgba(23, 107, 92, 0.16);
    border-radius: 12px;
    color: var(--green-dark);
    background: #eff8f5;
    font-weight: 800;
    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.aha-download-card__button i {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 9px;
    color: var(--white);
    background: var(--green);
    transition:
        transform 0.25s ease,
        background-color 0.25s ease;
}

.aha-download-card__button:hover {
    color: var(--white);
    border-color: var(--green);
    background: var(--green);
    transform: translateY(-1px);
}

.aha-download-card__button:hover i {
    color: var(--green-dark);
    background: var(--gold);
    transform: translateY(2px);
}

/* ==================================================
   Downloads Bottom Note
================================================== */

.aha-downloads-note {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 22px;
    margin-block-start: clamp(38px, 6vw, 65px);
    padding: clamp(24px, 4vw, 36px);
    border: 1px solid rgba(23, 107, 92, 0.14);
    border-radius: var(--radius);
    background:
        radial-gradient(
            circle at 85% 0,
            rgba(207, 174, 74, 0.14),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #edf8f4,
            var(--white)
        );
}

.aha-downloads-note__icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 16px;
    color: var(--white);
    background: var(--green);
    box-shadow: 0 13px 28px rgba(23, 107, 92, 0.2);
    font-size: 23px;
}

.aha-downloads-note h3 {
    margin: 0 0 5px;
    color: var(--ink);
    font-size: 21px;
}

.aha-downloads-note p {
    margin: 0;
    color: var(--muted);
}

/* ==================================================
   Downloads Responsive Styles
================================================== */

@media (max-width: 1024px) {
    .aha-downloads-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .aha-downloads-banner__layout {
        grid-template-columns: minmax(0, 1fr) 230px;
        gap: 40px;
    }

    .aha-downloads-banner__icon > div {
        width: 110px;
        height: 110px;
        border-radius: 28px;
    }

    .aha-downloads-banner__icon i {
        font-size: 46px;
    }
}

@media (max-width: 767px) {
    .aha-downloads-banner {
        padding-block: 48px 64px;
    }

    .aha-downloads-banner__layout {
        grid-template-columns: 1fr;
    }

    .aha-downloads-banner__content {
        text-align: center;
    }

    .aha-downloads-banner__content > p {
        margin-inline: auto;
    }

    .aha-downloads-breadcrumb {
        justify-content: center;
        margin-block-end: 28px;
    }

    .aha-downloads-banner__icon {
        width: 190px;
        grid-row: 1;
    }

    .aha-downloads-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .aha-download-card__image img {
        height: 215px;
    }

    .aha-downloads-note {
        grid-template-columns: 1fr;
        justify-items: start;
    }

    .aha-downloads-note .aha-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .aha-downloads-banner h1 {
        font-size: 36px;
    }

    .aha-downloads-banner__icon {
        width: 160px;
    }

    .aha-downloads-banner__icon > div {
        width: 90px;
        height: 90px;
        border-radius: 23px;
    }

    .aha-downloads-banner__icon i {
        font-size: 38px;
    }

    .aha-download-card__content {
        padding: 21px;
    }

    .aha-download-card__image img {
        height: 195px;
        padding: 18px;
    }

    .aha-downloads-home-button {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .aha-download-card,
    .aha-download-card__image img,
    .aha-download-card__button,
    .aha-download-card__button i,
    .aha-downloads-home-button,
    .aha-downloads-breadcrumb a {
        transition: none;
    }

    .aha-download-card:hover,
    .aha-downloads-home-button:hover {
        transform: none;
    }
}


/* *********************** */
/* header logo */
/******************************/
/* ==================================================
   Header Logo Image
================================================== */

.aha-brand {
	display: inline-flex;
	align-items: center;
	flex-shrink: 0;
	line-height: 1;
}

.aha-brand-logo {
	display: block;
	width: auto;
	height: 58px;
	max-width: 220px;
	object-fit: contain;
}

@media (max-width: 1024px) {
	.aha-brand-logo {
		height: 52px;
		max-width: 195px;
	}
}

@media (max-width: 767px) {
	.aha-brand-logo {
		height: 44px;
		max-width: 165px;
	}
}

@media (max-width: 390px) {
	.aha-brand-logo {
		height: 40px;
		max-width: 145px;
	}
}
/* ==================================================
   How We Teach Page
================================================== */

.aha-method-page {
	overflow: hidden;
	background: var(--cream);
}

/* ==================================================
   Page Banner
================================================== */

.aha-method-banner {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	padding-block:
		clamp(32px, 5vw, 52px)
		clamp(76px, 9vw, 118px);
	color: var(--white);
	background:
		radial-gradient(
			circle at 87% 18%,
			rgba(207, 174, 74, 0.24),
			transparent 28%
		),
		radial-gradient(
			circle at 8% 100%,
			rgba(255, 255, 255, 0.08),
			transparent 30%
		),
		linear-gradient(
			135deg,
			var(--green-dark) 0%,
			var(--green) 60%,
			#267c6c 100%
		);
}

.aha-method-banner__pattern {
	position: absolute;
	z-index: -1;
	inset: 0;
	opacity: 0.07;
	pointer-events: none;
	background-image:
		linear-gradient(
			30deg,
			var(--white) 12%,
			transparent 12.5%,
			transparent 87%,
			var(--white) 87.5%
		),
		linear-gradient(
			150deg,
			var(--white) 12%,
			transparent 12.5%,
			transparent 87%,
			var(--white) 87.5%
		);
	background-size: 70px 120px;
}

.aha-method-breadcrumb {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: clamp(38px, 5vw, 58px);
	color: rgba(255, 255, 255, 0.76);
	font-size: 14px;
	font-weight: 600;
}

.aha-method-breadcrumb a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--white);
	transition:
		opacity 0.25s ease,
		transform 0.25s ease;
}

.aha-method-breadcrumb a:hover {
	opacity: 0.8;
	transform: translateX(-2px);
}

.aha-method-breadcrumb > i {
	font-size: 10px;
	opacity: 0.55;
}

.aha-method-banner__grid {
	display: grid;
	grid-template-columns:
		minmax(0, 680px)
		minmax(370px, 1fr);
	align-items: center;
	gap: clamp(55px, 8vw, 120px);
}

.aha-method-banner__content {
	max-width: 680px;
}

.aha-method-banner__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin-bottom: 20px;
	padding: 8px 14px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 999px;
	color: #fff4cf;
	background: rgba(255, 255, 255, 0.08);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	backdrop-filter: blur(8px);
}

.aha-method-banner h1 {
	max-width: 670px;
	margin: 0;
	color: var(--white);
	font-size: clamp(40px, 5vw, 68px);
	line-height: 1.08;
	letter-spacing: -0.045em;
}

.aha-method-banner__content > p {
	max-width: 620px;
	margin: 22px 0 30px;
	color: rgba(255, 255, 255, 0.82);
	font-size: clamp(16px, 1.7vw, 19px);
	line-height: 1.75;
}

.aha-method-banner__actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 13px;
}

.aha-method-banner__primary,
.aha-method-banner__secondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 52px;
	padding-inline: 22px;
	border-radius: 12px;
	font-weight: 750;
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease,
		background-color 0.25s ease;
}

.aha-method-banner__primary {
	border: 1px solid var(--gold);
	color: var(--green-dark);
	background: var(--gold);
	box-shadow: 0 14px 35px rgba(5, 48, 42, 0.24);
}

.aha-method-banner__secondary {
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: var(--white);
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(8px);
}

.aha-method-banner__primary:hover,
.aha-method-banner__secondary:hover {
	transform: translateY(-2px);
	box-shadow: 0 18px 40px rgba(5, 48, 42, 0.28);
}

.aha-method-banner__secondary:hover {
	color: var(--green-dark);
	background: var(--white);
}

.aha-method-banner__points {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 18px;
	margin-top: 27px;
	color: rgba(255, 255, 255, 0.82);
	font-size: 13px;
	font-weight: 650;
}

.aha-method-banner__points span {
	display: inline-flex;
	align-items: center;
	gap: 7px;
}

.aha-method-banner__points i {
	display: grid;
	place-items: center;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	color: var(--green-dark);
	background: var(--gold);
	font-size: 9px;
}

/* ==================================================
   Animated Hero Visual
================================================== */

.aha-method-visual {
	position: relative;
	width: min(100%, 510px);
	margin-inline: auto;
	padding: 34px 20px;
}

.aha-method-visual__glow {
	position: absolute;
	inset: 9% 6%;
	border-radius: 50%;
	background: rgba(207, 174, 74, 0.22);
	filter: blur(55px);
	animation: ahaMethodGlow 6s ease-in-out infinite;
}

.aha-method-class-card {
	position: relative;
	z-index: 3;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.26);
	border-radius: 26px;
	background: var(--white);
	box-shadow:
		0 36px 90px rgba(4, 39, 34, 0.37),
		inset 0 1px 0 rgba(255, 255, 255, 0.9);
	animation: ahaMethodCardFloat 8s ease-in-out infinite;
}

.aha-method-class-card::after {
	content: "";
	position: absolute;
	z-index: 4;
	inset-block-start: -25%;
	inset-inline-start: -70%;
	width: 40%;
	height: 155%;
	pointer-events: none;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.18),
		transparent
	);
	transform: rotate(12deg);
	animation: ahaMethodCardShine 7s ease-in-out infinite;
}

.aha-method-class-card__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	min-height: 52px;
	padding-inline: 18px;
	color: var(--ink);
	background: var(--soft);
}

.aha-method-window-dots {
	display: flex;
	align-items: center;
	gap: 6px;
}

.aha-method-window-dots span {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--line);
}

.aha-method-window-dots span:first-child {
	background: var(--gold);
}

.aha-method-window-dots span:nth-child(2) {
	background: var(--green);
}

.aha-method-live-status {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: var(--green-dark);
	font-size: 12px;
	font-weight: 750;
}

.aha-method-live-status i {
	color: #d94747;
	font-size: 8px;
	animation: ahaMethodLivePulse 1.6s ease-in-out infinite;
}

.aha-method-class-card__image {
	position: relative;
	overflow: hidden;
	aspect-ratio: 16 / 10;
	background: var(--green-dark);
}

.aha-method-class-card__image > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.04);
	animation: ahaMethodImageZoom 13s ease-in-out infinite alternate;
}

.aha-method-class-card__overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(
			180deg,
			transparent 38%,
			rgba(8, 48, 42, 0.78) 100%
		);
}

.aha-method-teacher-info {
	position: absolute;
	z-index: 2;
	inset-inline-start: 18px;
	inset-block-end: 18px;
	display: flex;
	align-items: center;
	gap: 11px;
	color: var(--white);
}

.aha-method-teacher-avatar {
	display: grid;
	place-items: center;
	width: 43px;
	height: 43px;
	border: 2px solid rgba(255, 255, 255, 0.4);
	border-radius: 50%;
	color: var(--green-dark);
	background: var(--white);
	font-size: 17px;
}

.aha-method-teacher-info strong,
.aha-method-teacher-info small {
	display: block;
}

.aha-method-teacher-info strong {
	font-size: 13px;
}

.aha-method-teacher-info small {
	margin-top: 2px;
	color: rgba(255, 255, 255, 0.74);
	font-size: 11px;
}

.aha-method-audio-wave {
	position: absolute;
	z-index: 2;
	inset-inline-end: 18px;
	inset-block-end: 20px;
	display: flex;
	align-items: center;
	gap: 4px;
	height: 32px;
	padding: 7px 10px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 999px;
	background: rgba(8, 48, 42, 0.65);
	backdrop-filter: blur(8px);
}

.aha-method-audio-wave span {
	width: 3px;
	height: 8px;
	border-radius: 99px;
	background: var(--gold);
	animation: ahaMethodAudioWave 1.15s ease-in-out infinite;
}

.aha-method-audio-wave span:nth-child(2) {
	animation-delay: 0.12s;
}

.aha-method-audio-wave span:nth-child(3) {
	animation-delay: 0.24s;
}

.aha-method-audio-wave span:nth-child(4) {
	animation-delay: 0.36s;
}

.aha-method-audio-wave span:nth-child(5) {
	animation-delay: 0.48s;
}

.aha-method-class-card__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-height: 76px;
	padding: 13px 17px;
	color: var(--ink);
	background: var(--white);
}

.aha-method-lesson-name {
	display: flex;
	align-items: center;
	gap: 11px;
	min-width: 0;
}

.aha-method-lesson-name > span {
	display: grid;
	place-items: center;
	flex: 0 0 auto;
	width: 42px;
	height: 42px;
	border-radius: 12px;
	color: var(--green-dark);
	background: rgba(207, 174, 74, 0.18);
}

.aha-method-lesson-name strong,
.aha-method-lesson-name small {
	display: block;
}

.aha-method-lesson-name strong {
	font-size: 12px;
	line-height: 1.3;
}

.aha-method-lesson-name small {
	margin-top: 3px;
	color: var(--muted);
	font-size: 10px;
}

.aha-method-call-icons {
	display: flex;
	align-items: center;
	gap: 7px;
}

.aha-method-call-icons span {
	display: grid;
	place-items: center;
	width: 35px;
	height: 35px;
	border-radius: 10px;
	color: var(--green-dark);
	background: var(--soft);
	font-size: 12px;
}

.aha-method-floating-icon {
	position: absolute;
	z-index: 4;
	display: grid;
	place-items: center;
	width: 58px;
	height: 58px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 18px;
	color: var(--green-dark);
	background: var(--white);
	box-shadow: 0 17px 38px rgba(4, 43, 37, 0.27);
	font-size: 21px;
}

.aha-method-floating-icon--one {
	inset-block-start: 4px;
	inset-inline-end: 4px;
	animation: ahaMethodSmallFloat 5.5s ease-in-out infinite;
}

.aha-method-floating-icon--two {
	inset-block-end: 4px;
	inset-inline-start: 0;
	background: var(--gold);
	animation: ahaMethodSmallFloat 5.5s ease-in-out 1.2s infinite;
}

/* ==================================================
   Hero Animation
================================================== */

@keyframes ahaMethodCardFloat {
	0%,
	100% {
		transform: translateY(0) rotate(-1deg);
	}

	50% {
		transform: translateY(-9px) rotate(0.5deg);
	}
}

@keyframes ahaMethodSmallFloat {
	0%,
	100% {
		transform: translateY(0) rotate(-4deg);
	}

	50% {
		transform: translateY(-8px) rotate(3deg);
	}
}

@keyframes ahaMethodImageZoom {
	0% {
		transform: scale(1.04);
	}

	100% {
		transform: scale(1.12);
	}
}

@keyframes ahaMethodGlow {
	0%,
	100% {
		opacity: 0.7;
		transform: scale(0.96);
	}

	50% {
		opacity: 1;
		transform: scale(1.08);
	}
}

@keyframes ahaMethodCardShine {
	0%,
	62% {
		inset-inline-start: -70%;
	}

	82%,
	100% {
		inset-inline-start: 135%;
	}
}

@keyframes ahaMethodLivePulse {
	0%,
	100% {
		opacity: 0.5;
		transform: scale(0.9);
	}

	50% {
		opacity: 1;
		transform: scale(1.18);
	}
}

@keyframes ahaMethodAudioWave {
	0%,
	100% {
		height: 7px;
	}

	50% {
		height: 19px;
	}
}

/* ==================================================
   Video Section
================================================== */

.aha-method-videos {
	position: relative;
	padding-block: clamp(75px, 9vw, 120px);
	background:
		radial-gradient(
			circle at 95% 5%,
			rgba(207, 174, 74, 0.1),
			transparent 22%
		),
		var(--cream);
}

.aha-method-heading {
	max-width: 750px;
	margin: 0 auto clamp(42px, 6vw, 68px);
	text-align: center;
}

.aha-method-heading .aha-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 14px;
	color: var(--green);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.aha-method-heading h2 {
	margin: 0;
	color: var(--ink);
	font-size: clamp(32px, 4vw, 50px);
	line-height: 1.15;
	letter-spacing: -0.035em;
}

.aha-method-heading p {
	max-width: 650px;
	margin: 18px auto 0;
	color: var(--muted);
	font-size: 17px;
	line-height: 1.75;
}

/* ==================================================
   Video Cards
================================================== */

.aha-method-video-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
}

.aha-method-video-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: 22px;
	background: var(--white);
	box-shadow: 0 16px 44px rgba(17, 66, 58, 0.08);
	transition:
		transform 0.3s ease,
		border-color 0.3s ease,
		box-shadow 0.3s ease;
}

.aha-method-video-card:hover {
	transform: translateY(-7px);
	border-color: rgba(23, 107, 92, 0.25);
	box-shadow: 0 26px 65px rgba(17, 66, 58, 0.15);
}

.aha-method-video-card__frame {
	position: relative;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	background: var(--green-dark);
}

.aha-method-video-card__frame iframe {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

.aha-method-video-card__content {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 24px;
}

.aha-method-video-card__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	margin-bottom: 13px;
}

.aha-method-video-card__meta span {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: var(--green);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.aha-method-video-card__meta strong {
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border-radius: 10px;
	color: var(--green-dark);
	background: var(--soft);
	font-size: 11px;
}

.aha-method-video-card h3 {
	margin: 0;
	color: var(--ink);
	font-size: clamp(20px, 2vw, 24px);
	line-height: 1.3;
	letter-spacing: -0.025em;
}

.aha-method-video-card p {
	margin: 13px 0 22px;
	color: var(--muted);
	font-size: 15px;
	line-height: 1.7;
}

.aha-method-video-card__link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	min-height: 48px;
	margin-top: auto;
	padding-inline: 15px;
	border: 1px solid rgba(23, 107, 92, 0.16);
	border-radius: 12px;
	color: var(--green-dark);
	background: rgba(23, 107, 92, 0.08);
	font-size: 14px;
	font-weight: 750;
	transition:
		color 0.25s ease,
		background-color 0.25s ease,
		border-color 0.25s ease;
}

.aha-method-video-card__link i {
	display: grid;
	place-items: center;
	width: 30px;
	height: 30px;
	border-radius: 9px;
	color: var(--white);
	background: var(--green);
	font-size: 12px;
	transition:
		color 0.25s ease,
		background-color 0.25s ease,
		transform 0.25s ease;
}

.aha-method-video-card__link:hover {
	color: var(--white);
	border-color: var(--green);
	background: var(--green);
}

.aha-method-video-card__link:hover i {
	color: var(--green-dark);
	background: var(--gold);
	transform: translate(2px, -2px);
}

/* ==================================================
   Bottom CTA
================================================== */

.aha-method-cta {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 23px;
	margin-top: clamp(42px, 6vw, 70px);
	padding: clamp(25px, 4vw, 38px);
	border: 1px solid rgba(23, 107, 92, 0.14);
	border-radius: 24px;
	background:
		radial-gradient(
			circle at 88% 0,
			rgba(207, 174, 74, 0.15),
			transparent 28%
		),
		linear-gradient(
			135deg,
			rgba(23, 107, 92, 0.08),
			var(--white)
		);
}

.aha-method-cta__icon {
	display: grid;
	place-items: center;
	width: 62px;
	height: 62px;
	border-radius: 18px;
	color: var(--white);
	background: var(--green);
	box-shadow: 0 15px 30px rgba(23, 107, 92, 0.2);
	font-size: 24px;
}

.aha-method-cta span {
	display: block;
	margin-bottom: 4px;
	color: var(--green);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.aha-method-cta h2 {
	margin: 0;
	color: var(--ink);
	font-size: clamp(22px, 3vw, 30px);
	line-height: 1.25;
}

.aha-method-cta p {
	margin: 7px 0 0;
	color: var(--muted);
}

.aha-method-cta .aha-btn span {
	margin: 0;
	color: inherit;
	font-size: inherit;
	letter-spacing: normal;
	text-transform: none;
}

/* ==================================================
   Responsive
================================================== */

@media (max-width: 1100px) {

	.aha-method-banner__grid {
		grid-template-columns:
			minmax(0, 1fr)
			minmax(330px, 440px);
		gap: 48px;
	}

	.aha-method-video-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

}

@media (max-width: 850px) {

	.aha-method-banner__grid {
		grid-template-columns: 1fr;
	}

	.aha-method-banner__content {
		max-width: 730px;
		text-align: center;
	}

	.aha-method-banner__content > p {
		margin-inline: auto;
	}

	.aha-method-banner__actions,
	.aha-method-banner__points {
		justify-content: center;
	}

	.aha-method-visual {
		width: min(100%, 490px);
	}

}

@media (max-width: 767px) {

	.aha-method-banner {
		padding-block: 30px 68px;
	}

	.aha-method-breadcrumb {
		justify-content: center;
		margin-bottom: 36px;
	}

	.aha-method-video-grid {
		grid-template-columns: 1fr;
		gap: 23px;
	}

	.aha-method-cta {
		grid-template-columns: 1fr;
		justify-items: start;
	}

	.aha-method-cta .aha-btn {
		width: 100%;
		justify-content: center;
	}

}

@media (max-width: 520px) {

	.aha-method-banner h1 {
		font-size: 36px;
	}

	.aha-method-banner__actions {
		display: grid;
		grid-template-columns: 1fr;
	}

	.aha-method-banner__primary,
	.aha-method-banner__secondary {
		width: 100%;
	}

	.aha-method-banner__points {
		align-items: flex-start;
		flex-direction: column;
		width: fit-content;
		margin-inline: auto;
	}

	.aha-method-visual {
		padding: 24px 2px;
	}

	.aha-method-class-card {
		border-radius: 19px;
	}

	.aha-method-floating-icon {
		display: none;
	}

	.aha-method-teacher-info {
		inset-inline-start: 12px;
		inset-block-end: 12px;
	}

	.aha-method-audio-wave {
		inset-inline-end: 11px;
		inset-block-end: 13px;
	}

	.aha-method-call-icons {
		display: none;
	}

	.aha-method-video-card__content {
		padding: 21px;
	}

}

/* ==================================================
   Reduced Motion
================================================== */

@media (prefers-reduced-motion: reduce) {

	.aha-method-class-card,
	.aha-method-class-card::after,
	.aha-method-class-card__image > img,
	.aha-method-visual__glow,
	.aha-method-floating-icon,
	.aha-method-live-status i,
	.aha-method-audio-wave span {
		animation: none;
	}

	.aha-method-video-card,
	.aha-method-video-card__link,
	.aha-method-banner__primary,
	.aha-method-banner__secondary {
		transition: none;
	}

	.aha-method-video-card:hover,
	.aha-method-banner__primary:hover,
	.aha-method-banner__secondary:hover {
		transform: none;
	}

}
/* ==================================================
   Premium CSS-Only Website Loader
================================================== */

.aha-site-loader {
	position: fixed;
	z-index: 9999999;
	inset: 0;
	display: grid;
	place-items: center;
	overflow: hidden;
	padding: 24px;
	color: var(--white, #ffffff);
	background:
		linear-gradient(
			145deg,
			var(--green-dark, #073d35) 0%,
			var(--green, #176b5c) 56%,
			var(--green-dark, #073d35) 100%
		);
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	animation:
		ahaLoaderOverlayExit 1.25s
		cubic-bezier(0.65, 0, 0.35, 1)
		forwards;
}

/* Background */

.aha-site-loader__background {
	position: absolute;
	inset: 0;
	overflow: hidden;
	pointer-events: none;
}

.aha-site-loader__pattern {
	position: absolute;
	inset: -70px;
	opacity: 0.055;
	background-image:
		linear-gradient(
			30deg,
			rgba(255, 255, 255, 0.9) 12%,
			transparent 12.5%,
			transparent 87%,
			rgba(255, 255, 255, 0.9) 87.5%
		),
		linear-gradient(
			150deg,
			rgba(255, 255, 255, 0.9) 12%,
			transparent 12.5%,
			transparent 87%,
			rgba(255, 255, 255, 0.9) 87.5%
		);
	background-size: 74px 128px;
	animation: ahaLoaderPatternMove 10s linear infinite;
}

.aha-site-loader__glow {
	position: absolute;
	display: block;
	border-radius: 50%;
	filter: blur(20px);
}

.aha-site-loader__glow--one {
	inset-block-start: -28%;
	inset-inline-end: -14%;
	width: min(64vw, 760px);
	aspect-ratio: 1;
	background:
		radial-gradient(
			circle,
			rgba(207, 174, 74, 0.34) 0%,
			rgba(207, 174, 74, 0.08) 46%,
			transparent 72%
		);
	animation: ahaLoaderGlow 3s ease-in-out infinite;
}

.aha-site-loader__glow--two {
	inset-block-end: -35%;
	inset-inline-start: -18%;
	width: min(60vw, 700px);
	aspect-ratio: 1;
	background:
		radial-gradient(
			circle,
			rgba(255, 255, 255, 0.13) 0%,
			rgba(255, 255, 255, 0.03) 48%,
			transparent 72%
		);
	animation: ahaLoaderGlow 3.4s ease-in-out reverse infinite;
}

/* Central Content */

.aha-site-loader__content {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	flex-direction: column;
	width: min(100%, 450px);
	text-align: center;
	animation:
		ahaLoaderContentExit 1.25s
		cubic-bezier(0.65, 0, 0.35, 1)
		forwards;
}

/* ==================================================
   Main Animated Emblem
================================================== */

.aha-site-loader__emblem {
	position: relative;
	display: grid;
	place-items: center;
	width: clamp(175px, 22vw, 225px);
	aspect-ratio: 1;
	margin-bottom: 27px;
}

.aha-site-loader__emblem::before {
	content: "";
	position: absolute;
	inset: 17%;
	border-radius: 50%;
	background:
		radial-gradient(
			circle,
			rgba(255, 255, 255, 0.2),
			rgba(255, 255, 255, 0.04) 52%,
			transparent 73%
		);
	animation: ahaLoaderCorePulse 1.5s ease-in-out infinite;
}

/* Rings */

.aha-site-loader__ring {
	position: absolute;
	display: block;
	border-radius: 50%;
}

.aha-site-loader__ring--outer {
	inset: 0;
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-block-start-color: var(--gold, #cfae4a);
	border-inline-end-color: rgba(207, 174, 74, 0.55);
	animation: ahaLoaderRotate 3.8s linear infinite;
}

.aha-site-loader__ring--outer::before {
	content: "";
	position: absolute;
	inset: 10px;
	border: 1px dashed rgba(255, 255, 255, 0.2);
	border-radius: inherit;
}

.aha-site-loader__ring--middle {
	inset: 18%;
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-inline-start-color: var(--gold, #cfae4a);
	border-block-end-color: rgba(207, 174, 74, 0.7);
	animation: ahaLoaderRotateReverse 2.8s linear infinite;
}

.aha-site-loader__ring--middle::before {
	content: "";
	position: absolute;
	inset: 8px;
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 28%;
	transform: rotate(45deg);
}

.aha-site-loader__ring--inner {
	inset: 31%;
	border: 1px solid rgba(255, 255, 255, 0.24);
	animation: ahaLoaderInnerPulse 1.3s ease-in-out infinite;
}

/* Gold Points */

.aha-site-loader__point {
	position: absolute;
	z-index: 3;
	display: block;
	width: 9px;
	height: 9px;
	border: 2px solid rgba(255, 255, 255, 0.75);
	border-radius: 50%;
	background: var(--gold, #cfae4a);
	box-shadow:
		0 0 0 5px rgba(207, 174, 74, 0.08),
		0 0 18px rgba(207, 174, 74, 0.6);
}

.aha-site-loader__point--one {
	inset-block-start: -4px;
	inset-inline-start: calc(50% - 4px);
}

.aha-site-loader__point--two {
	inset-block-start: calc(50% - 4px);
	inset-inline-end: -4px;
}

.aha-site-loader__point--three {
	inset-block-end: -4px;
	inset-inline-start: calc(50% - 4px);
}

.aha-site-loader__point--four {
	inset-block-start: calc(50% - 4px);
	inset-inline-start: -4px;
}

/* Logo */

/* .aha-site-loader__logo {
	position: relative;
	z-index: 4;
	display: grid;
	place-items: center;
	width: clamp(82px, 10vw, 104px);
	aspect-ratio: 1;
	overflow: hidden;
	padding: 12px;
	border: 1px solid rgba(255, 255, 255, 0.44);
	border-radius: 26px;
	color: var(--green-dark, #073d35);
	background:
		linear-gradient(
			145deg,
			var(--white, #ffffff),
			var(--soft, #f4f4ef)
		);
	box-shadow:
		0 24px 55px rgba(2, 31, 27, 0.38),
		0 0 0 9px rgba(255, 255, 255, 0.06),
		inset 0 1px 0 rgba(255, 255, 255, 0.95);
	animation: ahaLoaderLogoFloat 1.7s ease-in-out infinite;
} */

.aha-site-loader__logo-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.aha-site-loader__logo-mark {
	font-family:
		Georgia,
		"Times New Roman",
		serif;
	font-size: 59px;
	font-weight: 700;
	line-height: 1;
}

/* Shine */

.aha-site-loader__shine {
	position: absolute;
	z-index: 6;
	inset: 32%;
	overflow: hidden;
	border-radius: 24px;
	pointer-events: none;
}

.aha-site-loader__shine::before {
	content: "";
	position: absolute;
	inset-block-start: -30%;
	inset-inline-start: -130%;
	width: 42%;
	height: 160%;
	background:
		linear-gradient(
			90deg,
			transparent,
			rgba(255, 255, 255, 0.8),
			transparent
		);
	transform: rotate(18deg);
	animation: ahaLoaderShine 1.8s ease-in-out infinite;
}

/* ==================================================
   Loader Text
================================================== */

.aha-site-loader__branding {
	display: flex;
	align-items: center;
	flex-direction: column;
}

.aha-site-loader__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 9px;
	color: rgba(255, 255, 255, 0.7);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.17em;
	text-transform: uppercase;
}

.aha-site-loader__eyebrow i {
	color: var(--gold, #cfae4a);
	font-size: 13px;
}

.aha-site-loader__title {
	display: block;
	color: var(--white, #ffffff);
	font-size: clamp(28px, 4vw, 40px);
	font-weight: 760;
	line-height: 1.15;
	letter-spacing: -0.035em;
	text-shadow: 0 12px 30px rgba(2, 31, 27, 0.3);
}

.aha-site-loader__subtitle {
	display: block;
	margin-top: 8px;
	color: rgba(255, 255, 255, 0.64);
	font-size: 13px;
	letter-spacing: 0.025em;
}

/* ==================================================
   Progress Line
================================================== */

.aha-site-loader__progress {
	position: relative;
	width: min(100%, 245px);
	height: 3px;
	overflow: hidden;
	margin-top: 24px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.13);
}

.aha-site-loader__progress span {
	position: absolute;
	inset-block: 0;
	inset-inline-start: -45%;
	display: block;
	width: 45%;
	border-radius: inherit;
	background:
		linear-gradient(
			90deg,
			transparent,
			var(--gold, #cfae4a),
			var(--white, #ffffff),
			var(--gold, #cfae4a),
			transparent
		);
	box-shadow: 0 0 15px rgba(207, 174, 74, 0.6);
	animation: ahaLoaderProgress 0.9s ease-in-out infinite;
}

/* ==================================================
   Animations
================================================== */

@keyframes ahaLoaderOverlayExit {

	0%,
	72% {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}

	100% {
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
	}

}

@keyframes ahaLoaderContentExit {

	0%,
	68% {
		opacity: 1;
		transform: translateY(0) scale(1);
	}

	100% {
		opacity: 0;
		transform: translateY(-15px) scale(0.96);
	}

}

@keyframes ahaLoaderRotate {

	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}

}

@keyframes ahaLoaderRotateReverse {

	from {
		transform: rotate(360deg);
	}

	to {
		transform: rotate(0deg);
	}

}

@keyframes ahaLoaderLogoFloat {

	0%,
	100% {
		transform: translateY(0) rotate(-1deg);
	}

	50% {
		transform: translateY(-5px) rotate(1deg);
	}

}

@keyframes ahaLoaderCorePulse {

	0%,
	100% {
		opacity: 0.55;
		transform: scale(0.92);
	}

	50% {
		opacity: 1;
		transform: scale(1.08);
	}

}

@keyframes ahaLoaderInnerPulse {

	0%,
	100% {
		opacity: 0.45;
		transform: scale(0.93);
	}

	50% {
		opacity: 1;
		transform: scale(1.07);
	}

}

@keyframes ahaLoaderShine {

	0%,
	42% {
		inset-inline-start: -130%;
	}

	80%,
	100% {
		inset-inline-start: 170%;
	}

}

@keyframes ahaLoaderProgress {

	from {
		inset-inline-start: -45%;
	}

	to {
		inset-inline-start: 110%;
	}

}

@keyframes ahaLoaderPatternMove {

	from {
		transform: translate3d(0, 0, 0);
	}

	to {
		transform: translate3d(74px, 64px, 0);
	}

}

@keyframes ahaLoaderGlow {

	0%,
	100% {
		opacity: 0.65;
		transform: scale(0.94);
	}

	50% {
		opacity: 1;
		transform: scale(1.07);
	}

}

/* ==================================================
   Mobile
================================================== */

@media (max-width: 767px) {

	.aha-site-loader {
		padding: 20px;
	}

	.aha-site-loader__emblem {
		width: 180px;
		margin-bottom: 24px;
	}

	.aha-site-loader__logo {
		width: 82px;
		padding: 10px;
		border-radius: 21px;
	}

	.aha-site-loader__title {
		font-size: 30px;
	}

	.aha-site-loader__subtitle {
		font-size: 12px;
	}

}

@media (max-width: 420px) {

	.aha-site-loader__emblem {
		width: 160px;
	}

	.aha-site-loader__logo {
		width: 72px;
	}

	.aha-site-loader__logo-mark {
		font-size: 48px;
	}

	.aha-site-loader__title {
		font-size: 26px;
	}

	.aha-site-loader__eyebrow {
		font-size: 8px;
		letter-spacing: 0.14em;
	}

	.aha-site-loader__progress {
		width: 210px;
	}

}

/* ==================================================
   Reduced Motion
================================================== */

@media (prefers-reduced-motion: reduce) {

	.aha-site-loader {
		animation-duration: 0.5s;
	}

	.aha-site-loader__content {
		animation-duration: 0.5s;
	}

	.aha-site-loader__pattern,
	.aha-site-loader__glow,
	.aha-site-loader__ring,
	.aha-site-loader__logo,
	.aha-site-loader__shine::before,
	.aha-site-loader__progress span,
	.aha-site-loader__emblem::before {
		animation: none;
	}

}


/* Custom Header Logo Styling */
.aha-brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.aha-brand .aha-custom-logo {
    max-height: 50px;
    width: auto;
    display: block;
    object-fit: contain;
}

@media (max-width: 768px) {
    .aha-brand .aha-custom-logo {
        max-height: 40px;
    }
}


/* Loader Logo Image Control */
.aha-site-loader__logo .aha-site-loader__logo-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Header Logo Image Control */
.aha-brand .aha-custom-logo {
    max-height: auto;
    width: auto;
    display: block;
    object-fit: contain;
}

/* Footer Logo Styling */
.aha-brand-light .aha-footer-logo {
    max-height: 50px;
    width: auto;
    display: block;
    object-fit: contain;
}
/* Custom Social Media Links Style for Footer */
.aha-social-links {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 15px;
}

.aha-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.aha-social-links a:hover {
    background-color: #ffffff;
    color: #000000;
    transform: translateY(-3px);
}
