/* Concept D — live site styles */
body.page-site { background: #f0f7f6; display: flex; flex-direction: column; min-height: 100vh; }
body.page-auth { background: linear-gradient(180deg, #cae9e4 0%, #f0f7f6 40%, #fff 100%); min-height: 100vh; display: flex; flex-direction: column; }
/* Site header — teal bar (matches blog / --e-global-color-primary) */
.header--site {
    background-color: var(--e-global-color-primary) !important;
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(0, 45, 93, 0.15);
    border-bottom: 3px solid rgba(255, 255, 255, 0.2);
    padding: 14px 20px !important;
    position: relative;
    z-index: 1100;
}
.header--site .nav-menu ul li a {
    color: #fff !important;
    border-radius: 8px;
    padding: 6px 12px;
    font-weight: 600;
}
.header--site .nav-menu ul li a:hover {
    background: rgba(255, 255, 255, 0.18) !important;
}
.header--site .nav-menu ul li:not(:last-child)::after {
    content: none;
}
.header--site .menu-toggle {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 1200;
}
@media (max-width: 900px) {
    body.page-site {
        overflow-x: hidden;
    }
    .header--site {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
    }
    .header--site .header-left {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 10px;
        flex: 0 1 auto;
        min-width: 0;
        max-width: calc(100% - 140px);
    }
    .header--site .menu-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        order: 0;
        flex-shrink: 0 !important;
        min-width: 44px !important;
        width: 44px !important;
        height: 44px !important;
        padding: 10px !important;
        margin-right: 6px !important;
        background: #fff !important;
        border: 2px solid rgba(0, 45, 93, 0.25) !important;
        border-radius: 10px !important;
        box-shadow: 0 2px 10px rgba(0, 45, 93, 0.25) !important;
        z-index: 1201 !important;
        position: relative;
    }
    .header--site .menu-toggle span {
        display: block !important;
        width: 22px !important;
        height: 3px !important;
        margin: 4px 0 !important;
        background: #002d5d !important;
        border-radius: 2px;
        opacity: 1 !important;
    }
    .header--site .menu-toggle--open span {
        background: #002d5d !important;
    }
    .header--site .logo {
        order: 1;
        margin-right: 0;
        flex-shrink: 1;
        min-width: 0;
    }
    .header--site .logo-image {
        margin-right: 0;
        width: 88px;
        max-width: 88px;
        height: auto;
    }
    .header--site .nav-buttons {
        margin-left: auto;
        flex-shrink: 0;
    }
    .header--site .nav-menu:not(.active) {
        transform: translateX(-100%) !important;
        visibility: hidden !important;
        pointer-events: none !important;
        box-shadow: none !important;
        opacity: 0 !important;
    }
}
.header--site .menu-toggle,
.header--site .menu-toggle:hover,
.header--site .menu-toggle:focus {
    width: 44px;
    height: 44px;
    min-width: 44px;
    padding: 10px;
    box-sizing: border-box;
    overflow: visible;
    background: rgba(255, 255, 255, 0.95) !important;
    border: 2px solid rgba(0, 45, 93, 0.2) !important;
    margin: 0 !important;
    box-shadow: 0 2px 8px rgba(0, 45, 93, 0.2) !important;
    color: #002d5d !important;
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
}
.header--site .menu-toggle span {
    display: block !important;
    width: 22px;
    height: 3px;
    margin: 4px 0;
    background: #002d5d !important;
    border-radius: 2px;
    opacity: 1 !important;
    transition: transform 0.22s ease, opacity 0.22s ease;
}
/* Two-line burger (middle bar hidden) */
.header--site .menu-toggle span:nth-child(2) {
    display: none;
}
.header--site .menu-toggle--open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.header--site .menu-toggle--open span:nth-child(2) {
    display: none !important;
}
.header--site .menu-toggle--open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
.header--site .menu-toggle--open span {
    background: #002d5d !important;
}
.header--site .small-btn.nav-btn-dashboard {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.85);
    color: #fff;
}
.header--site .small-btn.nav-btn-dashboard:hover {
    background: rgba(255, 255, 255, 0.15);
}
.header--site .small-btn.nav-btn-signout {
    background: var(--e-global-color-secondary);
}
.page-site .site-hero,
.page-site .site-page-hero {
    margin-top: 0;
}
.site-main { flex: 1; width: 100%; }
.site-main h1, .site-main h2, .site-main h3, .site-main h4 { text-align: inherit; }
.site-section { padding: 3rem 1.25rem; position: relative; }
.site-inner { max-width: 960px; margin: 0 auto; }
.site-hero {
    background: linear-gradient(135deg, #002d5d 0%, #009383 55%, #3a9e6a 110%);
    color: #fff; text-align: center; padding: 2rem 1.25rem 2.5rem; overflow: hidden;
}
.site-hero-layout {
    display: grid;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
}
.site-hero-copy .site-lead { margin-bottom: 1.25rem; }
@media (max-width: 899px) {
    .site-hero-layout {
        text-align: center;
    }
    .site-hero-copy .site-badge,
    .site-hero-copy h1,
    .site-hero-copy .site-lead {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    .site-hero-copy .site-cta-row {
        justify-content: center;
    }
    .hero-carousel {
        max-width: 100%;
    }
}
@media (min-width: 900px) {
    .site-hero-layout {
        grid-template-columns: 1fr 1.05fr;
        text-align: left;
        gap: 2rem;
        align-items: center;
    }
    .site-hero-copy .site-badge,
    .site-hero-copy h1,
    .site-hero-copy .site-lead { text-align: left; margin-left: 0; margin-right: 0; }
    .site-hero-copy h1 { max-width: none; }
    .site-hero-copy .site-cta-row { justify-content: flex-start; }
    .hero-carousel {
        margin-left: 0;
        margin-right: 0;
        max-width: none;
        width: 100%;
    }
}
.hero-carousel {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
}
.hero-carousel-viewport {
    border-radius: 14px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    min-height: min(42vh, 320px);
}
.hero-carousel-track { position: relative; width: 100%; height: 100%; min-height: inherit; }
.hero-carousel-slide {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    display: flex;
    flex-direction: column;
}
.hero-carousel-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
}
.hero-carousel-slide img {
    flex: 1;
    width: 100%;
    min-height: 200px;
    object-fit: cover;
    object-position: top center;
    display: block;
}
.hero-carousel-slide figcaption {
    flex: 0 0 auto;
    padding: 0.5rem 0.75rem;
    font-size: 0.82rem;
    font-weight: 600;
    background: rgba(0, 45, 93, 0.75);
    color: #fff;
}
.hero-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.45rem;
    margin-top: 0.65rem;
}
.hero-carousel-dots button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
}
.hero-carousel-dots button.is-active { background: #fff; transform: scale(1.15); }
.site-hero::before {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(circle at 15% 85%, rgba(97, 206, 112, 0.3), transparent 45%),
        radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.1), transparent 40%);
    pointer-events: none;
}
.site-hero .site-inner { position: relative; z-index: 1; }
.site-badge {
    display: inline-block; font-size: 0.8rem; font-weight: 600;
    padding: 0.4rem 1rem; border-radius: 999px;
    background: rgba(255, 255, 255, 0.18); border: 1px solid rgba(255, 255, 255, 0.35);
    margin-bottom: 1rem; cursor: default;
    transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.site-badge:hover {
    transform: scale(1.06);
    background: rgba(255, 255, 255, 0.32);
    border-color: rgba(255, 255, 255, 0.65);
    box-shadow: 0 0 0 3px rgba(97, 206, 112, 0.45), 0 4px 16px rgba(0, 0, 0, 0.15);
}
.site-hero h1 {
    font-family: var(--e-global-typography-secondary-font-family);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: #fff; line-height: 1.2; margin: 0 auto 1rem; max-width: 640px; text-align: center;
}
.site-hero .site-lead {
    max-width: 520px; margin: 0 auto 1.75rem; font-size: 1.05rem; line-height: 1.6;
    color: rgba(255, 255, 255, 0.92); text-align: center;
}
.site-cta-row { display: flex; flex-wrap: wrap; gap: 0.85rem; justify-content: center; }
.site-btn-white, .site-btn-ghost, .site-btn-card, .home-btn-primary, .home-btn-secondary {
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}
.site-btn-white, .home-btn-primary.site-btn-white { background: #fff; color: var(--e-global-color-secondary) !important; padding: 0.85rem 1.5rem; border-radius: 10px; font-weight: 700; text-decoration: none; display: inline-block; box-shadow: 0 4px 20px rgba(0,0,0,0.15); border: none; cursor: pointer; font-size: 1rem; }
.site-btn-white:hover, a.site-btn-white:hover { transform: scale(1.05); box-shadow: 0 0 0 3px rgba(97,206,112,0.5), 0 8px 24px rgba(0,0,0,0.2); color: var(--e-global-color-secondary) !important; }
.site-btn-ghost, .home-btn-secondary.site-btn-ghost { background: transparent; color: #fff !important; padding: 0.85rem 1.35rem; border-radius: 10px; font-weight: 600; border: 2px solid rgba(255,255,255,0.75); text-decoration: none; display: inline-block; cursor: pointer; font-size: 1rem; }
.site-btn-ghost:hover { transform: scale(1.05); background: rgba(255,255,255,0.18); border-color: #fff; box-shadow: 0 0 0 3px rgba(255,255,255,0.25); color: #fff !important; }
.home-btn-primary:not(.site-btn-white) { display: inline-block; background: var(--e-global-color-primary); color: #fff !important; padding: 0.75rem 1.35rem; border-radius: 10px; font-weight: 600; text-decoration: none; border: none; cursor: pointer; }
.home-btn-primary:not(.site-btn-white):hover { transform: scale(1.04); box-shadow: 0 0 0 3px rgba(97,206,112,0.45); opacity: 1; }
.home-btn-secondary:not(.site-btn-ghost) { display: inline-block; background: transparent; color: var(--e-global-color-secondary) !important; padding: 0.75rem 1.25rem; border-radius: 10px; font-weight: 600; text-decoration: none; border: 2px solid var(--e-global-color-secondary); cursor: pointer; }
.home-btn-secondary:not(.site-btn-ghost):hover { transform: scale(1.04); box-shadow: 0 0 0 3px rgba(0,45,93,0.12); }
.site-steps-wrap { background: #fff; margin-top: -2rem; padding-top: 3.5rem; border-radius: 24px 24px 0 0; position: relative; z-index: 2; }
.site-eyebrow {
    display: block;
    text-align: center;
    font-family: var(--e-global-typography-secondary-font-family);
    font-size: clamp(1.15rem, 2.8vw, 1.5rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: none;
    color: var(--e-global-color-primary);
    margin-bottom: 0.65rem;
}
.site-section-title {
    font-family: var(--e-global-typography-secondary-font-family);
    text-align: center;
    color: var(--e-global-color-secondary);
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    margin: 0 0 0.75rem;
    width: 100%;
}
.site-steps-wrap .site-section-title,
.site-programs .site-section-title,
.site-philosophy .site-section-title,
.site-features .site-section-title {
    text-align: center !important;
    display: block;
    width: 100%;
}
.site-card h3,
.site-prog h3,
.site-sub-card h2.site-section-title {
    text-align: center;
}
.site-assessment-limits {
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--e-global-color-primary);
    margin: -0.15rem 0 0.75rem;
    line-height: 1.45;
}
.site-prog .site-assessment-limits {
    text-align: center;
}
.site-assessment-limits.quota-full {
    color: #b45309;
}
.site-section-lead { text-align: center; color: #305b6b; max-width: 560px; margin: 0 auto 2rem; line-height: 1.6; }
.site-card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.25rem; }
.site-card {
    background: #fff;
    border-radius: 14px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,45,93,0.08);
    border: 1px solid rgba(0,147,131,0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    text-align: left;
}
.site-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,45,93,0.12); }
.site-card .site-num {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #002d5d, #009383);
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.65rem;
}
.site-card h3, .site-card strong { color: var(--e-global-color-secondary); }
.site-card p, .site-card span { color: #556; font-size: 0.92rem; line-height: 1.5; text-align: left; }
.site-card--media {
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
}
.site-card--media .site-num { margin: 0.85rem auto 0.35rem; }
.site-card--media h3 { text-align: center; margin: 0 1rem 0.35rem; }
.site-card--media p { margin: 0 1rem 1rem; }
.site-card-media {
    width: 100%;
    aspect-ratio: 16 / 10;
    background: #eef6f5;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 147, 131, 0.12);
}
.site-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}
.site-features .site-card--media .site-card-media {
    background: rgba(0, 0, 0, 0.15);
    border-bottom-color: rgba(255, 255, 255, 0.12);
}
.site-section-combined {
    background: linear-gradient(180deg, #cae9e4 0%, #f4faf9 45%, #fff 100%);
}
.site-combined-block { padding-bottom: 0; }
.site-combined-block--philosophy {
    padding-top: 1.25rem;
    margin-top: 0.5rem;
    border-top: 1px solid rgba(0, 147, 131, 0.12);
}
.site-combined-block .site-section-lead,
.site-combined-block--philosophy .site-section-title { margin-bottom: 0.65rem; }
.site-subscribe--fit {
    padding: 2rem 1.25rem 2.5rem;
}
.page-site--scroll-sections .site-subscribe--fit,
.page-site--scroll-sections .site-section-viewport--compact.site-proof {
    min-height: 0 !important;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}
.site-programs { background: linear-gradient(180deg, #cae9e4 0%, #f4faf9 50%, #fff 100%); }
.site-prog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.25rem; max-width: 960px; margin: 0 auto; }
.site-prog ul.site-prog-list {
    flex: 1;
    font-size: 0.88rem;
    line-height: 1.55;
    padding-left: 1.1rem;
    color: #444;
    text-align: left;
    margin: 0.5rem 0 0;
}
.site-prog ul.site-prog-list li {
    margin-bottom: 0.65rem;
}
.site-prog ul.site-prog-list li:last-child {
    margin-bottom: 0;
}
.site-prog ul.site-prog-list strong {
    color: var(--e-global-color-secondary);
    font-weight: 700;
}
.site-prog-note {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--e-global-color-primary);
    text-align: center;
    margin: 0.5rem 0 0.75rem;
    line-height: 1.45;
}
.site-assessment-limits a {
    color: var(--e-global-color-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.site-assessment-limits a:hover {
    color: #007a6a;
}
.site-prog {
    background: #fff;
    border-radius: 14px;
    padding: 1.5rem;
    border: 1px solid rgba(0,147,131,0.2);
    box-shadow: 0 4px 20px rgba(0,45,93,0.08);
    display: flex;
    flex-direction: column;
    min-height: 280px;
    text-align: left;
}
.site-prog.featured { border: 2px solid rgba(0, 147, 131, 0.2); }
.site-section-combined .site-prog,
.site-programs .site-prog {
    border: 2px solid rgba(0, 147, 131, 0.2);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.site-section-combined .site-prog:hover,
.site-programs .site-prog:hover {
    border-color: var(--e-global-color-primary);
    box-shadow: 0 8px 28px rgba(0, 147, 131, 0.18);
    transform: translateY(-2px);
}
.site-prog .site-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    background: var(--e-global-color-accent);
    color: var(--e-global-color-secondary);
    padding: 0.25rem 0.55rem;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 0.5rem;
    align-self: center;
}
.site-prog h3 { color: var(--e-global-color-secondary); margin-top: 0; text-align: center; }
.site-prog .site-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--e-global-color-primary);
    margin: 0.5rem 0;
    text-align: center;
}
.site-btn-card { display: block; text-align: center; background: var(--e-global-color-primary); color: #fff !important; padding: 0.8rem; border-radius: 10px; font-weight: 600; text-decoration: none; margin-top: auto; cursor: pointer; border: none; font-size: 1rem; }
.site-btn-card:hover { transform: scale(1.04); background: #007a6a; box-shadow: 0 0 0 3px rgba(97,206,112,0.45); color: #fff !important; }
.site-philosophy { background: #fff; }
.site-philosophy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
@media (max-width: 768px) { .site-philosophy-grid { grid-template-columns: 1fr; } }
.site-callout { background: linear-gradient(135deg, rgba(0,147,131,0.08), rgba(97,206,112,0.14)); border-left: 4px solid var(--e-global-color-primary); border-radius: 0 14px 14px 0; padding: 1.25rem 1.5rem; }
.site-callout p { margin: 0; color: #334; line-height: 1.6; text-align: left; }
.site-checklist { list-style: none; padding: 0; margin: 0; text-align: left; }
.site-checklist li { padding: 0.5rem 0 0.5rem 1.5rem; position: relative; color: #333; border-bottom: 1px solid rgba(0,45,93,0.06); }
.site-checklist li::before { content: "✓"; position: absolute; left: 0; color: var(--e-global-color-primary); font-weight: bold; }
.site-features { background: linear-gradient(160deg, #002d5d 0%, #004d47 100%); }
.site-features .site-section-title { color: #fff; }
.site-features .site-section-lead { color: rgba(255,255,255,0.88); }
.site-features .site-card { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); text-align: left; }
.site-features .site-card h3 { text-align: center; color: #fff; }
.site-features .site-card strong { color: #fff; }
.site-features .site-card p { color: rgba(255,255,255,0.82); }
.site-proof { background: #fff; text-align: center; }
.site-proof-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: clamp(1.25rem, 3vw, 2.5rem);
    align-items: stretch;
    text-align: left;
}
.site-proof-col {
    display: flex;
    flex-direction: column;
    min-height: 0;
}
.site-proof-col .site-section-title {
    text-align: center;
    margin-bottom: 1rem;
}
.site-proof-col .site-section-lead {
    text-align: center;
    margin-bottom: 1rem;
}
.site-proof-results .site-proof-card,
.site-proof-comments .site-proof-card {
    flex: 1;
    max-width: none;
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.site-proof-score-visual {
    max-width: none;
    width: 100%;
}
.site-proof-score-visual img {
    max-width: 100%;
    width: 100%;
}
.site-proof-comments {
    margin-top: 0;
}
.site-proof-comments .testimonial-carousel {
    max-width: none;
}
@media (max-width: 900px) {
    .site-proof-row {
        grid-template-columns: 1fr;
    }
}
.site-proof-card {
    max-width: 480px;
    margin: 0 auto;
    padding: 2rem;
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(0,45,93,0.1);
}
.site-proof .site-proof-card,
.site-proof-block .site-proof-card {
    max-width: min(640px, 96vw);
    width: 100%;
}
.site-proof-card img { max-width: 300px; width: 100%; border-radius: 12px; }
.site-proof-score-card {
    padding: 1.75rem 1.5rem 2rem;
}
.site-proof-score-visual {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
}
.site-proof-score-visual img {
    display: block;
    width: 100%;
    max-width: 560px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 45, 93, 0.12);
}
.site-proof-stamp {
    position: absolute;
    right: 6%;
    bottom: 8%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1rem 0.55rem;
    background: rgba(255, 255, 255, 0.96);
    border: 3px solid #1a8f4a;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(26, 143, 74, 0.35);
    transform: rotate(-8deg);
    pointer-events: none;
    min-width: 5.5rem;
}
.site-proof-stamp-score {
    font-family: var(--e-global-typography-secondary-font-family);
    font-size: clamp(1.35rem, 4vw, 1.75rem);
    font-weight: 700;
    color: var(--e-global-color-secondary);
    line-height: 1.1;
    letter-spacing: 0.02em;
}
.site-proof-stamp-pass {
    font-family: var(--e-global-typography-secondary-font-family);
    font-size: clamp(1.1rem, 3.5vw, 1.45rem);
    font-weight: 800;
    color: #1a8f4a;
    line-height: 1;
    margin-top: 0.15rem;
    letter-spacing: 0.12em;
}
@media (max-width: 480px) {
    .site-proof-stamp {
        right: 4%;
        bottom: 6%;
        padding: 0.5rem 0.75rem;
        transform: rotate(-6deg) scale(0.92);
    }
}
.site-subscribe { background: linear-gradient(180deg, #cae9e4 0%, #f0f7f6 100%); padding-bottom: 4rem; }
.site-sub-card { max-width: 480px; margin: 0 auto; background: #fff; padding: 2rem; border-radius: 14px; box-shadow: 0 4px 24px rgba(0,45,93,0.1); text-align: center; }
.site-sub-form { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; justify-content: center; }
.site-sub-form input { flex: 1; min-width: 200px; padding: 0.7rem 1rem; border: 1px solid #ccc; border-radius: 10px; }
.site-page-hero { background: linear-gradient(135deg, #002d5d 0%, #009383 70%); color: #fff; text-align: center; padding: 2.5rem 1.25rem; }
.site-page-hero h1 { color: #fff; font-family: var(--e-global-typography-secondary-font-family); font-size: clamp(1.5rem, 3vw, 2rem); margin: 0 0 0.75rem; text-align: center; }
.site-page-hero p { color: rgba(255,255,255,0.9); max-width: 560px; margin: 0 auto; line-height: 1.55; text-align: center; }

/* Level assessment — justified body copy */
.page-level-assessment .site-page-hero h1 {
    text-align: left;
    max-width: none;
}
.page-level-assessment .site-page-hero p,
.page-level-assessment .site-assessment-limits {
    text-align: justify;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
}
.page-level-assessment .assessment-step-panel p,
.page-level-assessment .assessment-step-panel li,
.page-level-assessment .callout-warn,
.page-level-assessment #submit-summary,
.page-level-assessment #submit-message {
    text-align: justify;
}
.page-level-assessment .assessment-step-panel h2 {
    text-align: left;
}
.site-content-section { background: #fff; padding: 2.5rem 1.25rem 3rem; }
.site-content-card { max-width: 720px; margin: 0 auto; background: #fff; border-radius: 14px; padding: 2rem; box-shadow: 0 4px 24px rgba(0,45,93,0.08); border: 1px solid rgba(0,147,131,0.1); }
.site-content-card p { color: #444; line-height: 1.65; text-align: left; }
.site-content-card h2 { text-align: left; color: var(--e-global-color-secondary); }
.auth-shell { flex: 1; display: flex; align-items: center; justify-content: center; padding: 2rem 1rem 3rem; }
.auth-card { width: 100%; max-width: 420px; background: #fff; border-radius: 14px; padding: 2rem; box-shadow: 0 8px 32px rgba(0,45,93,0.12); border: 1px solid rgba(0,147,131,0.15); }
.auth-card h1 { text-align: center; color: var(--e-global-color-secondary); font-size: 1.5rem; margin-bottom: 1.25rem; }
.auth-card label { display: block; margin-top: 0.75rem; font-weight: 600; color: #333; }
.auth-card .input-field { width: 100%; margin-top: 0.35rem; padding: 0.65rem; border-radius: 8px; border: 1px solid #ccc; box-sizing: border-box; }
.auth-card .password-container { margin-top: 0.35rem; margin-bottom: 0.75rem; }
.auth-card .password-container .input-field { margin-top: 0; }
.auth-card .password-toggle { top: 50%; transform: translateY(-50%); }
.auth-card button[type=submit] { width: 100%; margin-top: 1.25rem; padding: 0.75rem; background: var(--e-global-color-primary); color: #fff; border: none; border-radius: 10px; font-weight: 600; cursor: pointer; font-size: 1rem; }
.auth-card button[type=submit]:hover { transform: scale(1.02); box-shadow: 0 0 0 3px rgba(97,206,112,0.4); }
.purchase-kit-img { width: 100%; max-height: 200px; object-fit: contain; border-radius: 10px; margin: 0.5rem 0; }
.purchase-kit-wrap {
    width: 100%;
    max-width: 100%;
}
.purchase-kit-wrap--aligned {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}
.purchase-kit-card {
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 100%;
    max-width: none;
}
.purchase-kit-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.65rem;
    width: 100%;
    min-height: 200px;
    margin: 0.75rem 0 1.25rem;
}
.purchase-kit-preview {
    display: flex;
    flex-direction: column;
    min-height: 0;
    margin: 0;
    background: linear-gradient(180deg, #f4faf9 0%, #fff 100%);
    border-radius: 12px;
    border: 1px solid rgba(0, 147, 131, 0.18);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 45, 93, 0.06);
}
.purchase-kit-preview img {
    flex: 1 1 auto;
    width: 100%;
    min-height: 140px;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}
.purchase-kit-preview figcaption {
    flex: 0 0 auto;
    text-align: center;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--e-global-color-primary);
    padding: 0.55rem 0.4rem;
    background: #fff;
    border-top: 1px solid rgba(0, 147, 131, 0.1);
}
.purchase-kit-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
.purchase-kit-card ul {
    text-align: left;
    width: 100%;
    max-width: 520px;
    margin: 0.5rem auto;
}
.purchase-kit-card #kit-form {
    display: flex;
    justify-content: center;
    margin-top: 0.5rem;
    padding-top: 0.25rem;
    width: 100%;
}
.purchase-kit-card #kit-form .site-btn-card {
    min-width: min(100%, 280px);
    max-width: 100%;
}
.purchase-kit-note {
    font-size: 0.85rem;
    color: #556;
    margin: 0.75rem 0 0;
    text-align: center;
    line-height: 1.45;
}
@media (max-width: 720px) {
    .purchase-kit-showcase {
        grid-template-columns: 1fr;
        min-height: 0;
    }
    .purchase-kit-preview img {
        min-height: 180px;
        max-height: 220px;
    }
}

/* One section in focus; next section peeks at bottom (home + programs page) */
.page-site--scroll-sections {
    scroll-behavior: smooth;
}
@media (min-width: 768px) {
    .page-site--scroll-sections .site-section-viewport {
        min-height: calc(100svh - 4.25rem);
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
        box-sizing: border-box;
    }
    .page-site--scroll-sections .site-section-viewport > .site-inner {
        width: 100%;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .page-site--scroll-sections .site-section-viewport--compact {
        min-height: min(calc(100svh - 4.25rem), 820px);
    }
    .page-site--scroll-sections .site-section-combined.site-section-viewport {
        min-height: calc(100svh - 4.25rem);
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    .page-site--scroll-sections .site-section-combined > .site-inner {
        flex: 0 0 auto;
        justify-content: flex-start;
    }
    .page-site--scroll-sections .site-hero.site-section-viewport {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    .page-site--scroll-sections .site-steps-wrap.site-section-viewport {
        margin-top: 0;
        border-radius: 0;
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }
    .page-site--scroll-sections .site-section-combined .site-prog-grid {
        margin-bottom: 0;
    }
    .page-site--scroll-sections .site-page-hero {
        min-height: auto;
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }
}
@media (max-width: 767px) {
    .page-site--scroll-sections .site-section-viewport {
        min-height: 0;
    }
}
.coaching-grid .site-prog { min-height: 320px; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.assessment-wizard { max-width: 640px; margin: 0 auto; }
.assessment-step-panel { background: #fff; border-radius: 14px; padding: 1.5rem; margin-bottom: 1rem; box-shadow: 0 4px 20px rgba(0,45,93,0.08); border: 1px solid rgba(0,147,131,0.12); }
.assessment-step-panel h2 { text-align: left; color: var(--e-global-color-secondary); font-size: 1.2rem; }
.callout-warn { background: linear-gradient(135deg, #fff8e6, #fff3cd); border-left: 4px solid #e6a800; padding: 1rem 1.25rem; border-radius: 0 10px 10px 0; margin-bottom: 1.5rem; max-width: 640px; margin-left: auto; margin-right: auto; }
.page-site .posts-container { display: grid; gap: 1.25rem; max-width: 720px; margin: 0 auto; padding: 0; }
.page-site .posts-container .post {
    background: #fff; border-radius: 14px; padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,45,93,0.08); border: 1px solid rgba(0,147,131,0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.page-site .posts-container .post:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,45,93,0.12); }
.page-site .posts-container .post h3 { color: var(--e-global-color-secondary); margin-top: 0; }
.page-site .posts-container .post a { color: var(--e-global-color-primary); font-weight: 600; }
.profile-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}
.profile-table th,
.profile-table td {
    border: 1px solid rgba(0, 147, 131, 0.2);
    padding: 0.65rem 0.75rem;
    text-align: left;
}
.profile-table th {
    background: rgba(0, 147, 131, 0.08);
    color: var(--e-global-color-secondary);
}
.dashboard-flex-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    flex: 1;
    width: 100%;
}
body.page-dashboard {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
body.page-dashboard .dashboard-main {
    flex: 1 0 auto;
    width: 100%;
}
body.page-dashboard .dashboard-flex-wrapper > .footer {
    flex-shrink: 0;
    margin-top: auto;
}
body.page-dashboard .dashboard-container {
    min-height: 0;
    flex: none;
}
/* Quick action buttons — uniform grid cells */
body.page-dashboard .action-buttons {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    align-items: stretch;
}
@media (max-width: 900px) {
    body.page-dashboard .action-buttons {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
body.page-dashboard .action-btn,
body.page-dashboard .action-btn.primary,
body.page-dashboard .action-btn.secondary {
    margin: 0 !important;
    width: 100%;
    min-height: 104px;
    height: auto;
    display: flex !important;
    align-self: stretch;
    background: linear-gradient(145deg, #f0f9f7 0%, #e0f2ef 100%) !important;
    color: var(--e-global-color-secondary) !important;
    border: 2px solid rgba(0, 147, 131, 0.28);
    box-shadow: 0 2px 12px rgba(0, 45, 93, 0.08);
}
body.page-dashboard .action-btn i {
    color: var(--e-global-color-primary);
    margin-bottom: 10px;
}
body.page-dashboard .action-btn:hover {
    background: linear-gradient(135deg, var(--e-global-color-primary), #00b894) !important;
    color: #fff !important;
    border-color: var(--e-global-color-primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 147, 131, 0.35);
}
body.page-dashboard .action-btn:hover i {
    color: #fff;
}
body.page-dashboard .action-btn span {
    text-align: center;
    line-height: 1.3;
}
/* Testimonial carousel banner */
.testimonial-banner {
    text-align: center;
    padding: 0.85rem 1.25rem 1rem;
    margin-bottom: 0;
}
.site-proof-results {
    margin-top: 0;
    text-align: center;
}
.site-proof-results .site-section-title {
    margin-bottom: 1.25rem;
}
.site-proof-results .site-proof-score-card {
    margin-bottom: 0.25rem;
}
.site-proof-comments {
    margin-top: 3.5rem;
    text-align: center;
}
.site-proof-comments .site-section-title {
    margin-bottom: 0.5rem;
}
.site-proof-comments .site-section-lead {
    margin-bottom: 1.25rem;
}
.testimonial-carousel {
    position: relative;
    margin: 0 auto;
    max-width: 560px;
    width: 100%;
}
.testimonial-carousel-viewport {
    position: relative;
    width: 100%;
    height: 120px;
    overflow: hidden;
}
.testimonial-carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}
.testimonial-slide {
    position: absolute;
    inset: 0;
    margin: 0;
    padding: 0.2rem 0.65rem 0.25rem;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    align-items: center;
    gap: 0.35rem;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    pointer-events: none;
}
.testimonial-slide.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 1;
}
.testimonial-quote {
    flex: 0 0 auto;
    font-size: 1rem;
    line-height: 1.45;
    color: #305b6b;
    font-style: italic;
    margin: 0;
    padding: 0 0.5rem;
    max-width: 520px;
    width: 100%;
    text-align: center;
}
.testimonial-author {
    flex: 0 0 auto;
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
    color: var(--e-global-color-primary);
    font-weight: 600;
    font-style: normal;
    margin: 0;
    padding-top: 0;
}
.testimonial-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 0.65rem;
    flex-shrink: 0;
}
.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: rgba(0, 147, 131, 0.25);
    cursor: pointer;
    margin: 0 !important;
    display: inline-block !important;
}
.testimonial-dot.is-active {
    background: var(--e-global-color-primary);
    transform: scale(1.15);
}
/* FAQ page */
.site-faq { max-width: 720px; margin: 0 auto; }
.site-faq-lead {
    text-align: center;
    color: #305b6b;
    line-height: 1.6;
    margin: 0 0 2rem;
}
.site-faq-group { margin-bottom: 2.5rem; }
.site-faq-heading {
    color: var(--e-global-color-secondary);
    font-size: 1.35rem;
    margin: 0 0 1rem;
    text-align: left;
}
.site-faq-item {
    background: #fff;
    border: 1px solid rgba(0, 147, 131, 0.18);
    border-radius: 10px;
    margin-bottom: 0.65rem;
    padding: 0;
    overflow: hidden;
}
.site-faq-item summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--e-global-color-secondary);
    padding: 1rem 1.15rem;
    list-style: none;
    line-height: 1.45;
}
.site-faq-item summary::-webkit-details-marker { display: none; }
.site-faq-item summary::after {
    content: '+';
    float: right;
    font-weight: 700;
    color: var(--e-global-color-primary);
}
.site-faq-item[open] summary::after { content: '−'; }
.site-faq-item[open] summary {
    border-bottom: 1px solid rgba(0, 147, 131, 0.12);
}
.site-faq-item p {
    margin: 0;
    padding: 0 1.15rem 1rem;
    color: #445;
    line-height: 1.6;
    text-align: left;
}
.site-faq-item p + p { padding-top: 0.5rem; }
.site-faq-item a { color: var(--e-global-color-primary); font-weight: 600; }
.site-faq-legal { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(0, 147, 131, 0.15); }
.site-faq-legal p { text-align: center; line-height: 1.8; }
.site-faq-disclaimer { color: #667; margin-top: 1rem !important; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .site-card:hover, .site-btn-white:hover, .site-btn-ghost:hover, .site-btn-card:hover, .home-btn-primary:hover { transform: none; }
}

/* Desktop / laptop — use more horizontal space while keeping side padding */
@media (min-width: 1024px) {
  .site-inner { max-width: 1140px; padding-left: 2rem; padding-right: 2rem; }
  .site-section { padding-left: 2rem; padding-right: 2rem; }
  .site-prog-grid { max-width: 1140px; }
  .site-hero h1 { max-width: 820px; }
  .site-hero .site-lead { max-width: 680px; }
  .site-page-hero p { max-width: 720px; }
  .site-section-lead { max-width: 680px; }
  .site-steps-wrap .site-inner,
  .site-steps { max-width: 1140px; margin-left: auto; margin-right: auto; }
  .site-proof-inner { max-width: 900px; }
  .site-testimonial { max-width: 720px; }
  .coaching-grid { max-width: 1140px; margin-left: auto; margin-right: auto; }
}
@media (min-width: 1280px) {
  .site-inner { max-width: 1280px; }
  .site-prog-grid { max-width: 1280px; }
  .site-hero { padding-left: 2.5rem; padding-right: 2.5rem; }
  .site-features .site-card-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 1440px) {
  .site-inner { max-width: 1360px; }
  .site-prog-grid { max-width: 1360px; }
}
