* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f7fbfa;
    color: #173c3a;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background-color: white;
}

.brand {
    margin: 0;
    font-size: 24px;
}

.nav-link {
    color: #173c3a;
    text-decoration: none;
    font-weight: bold;
}

.hero {
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}

.hero-content {
    max-width: 750px;
}

.hero h1 {
    margin-bottom: 20px;
    font-size: 52px;
}

.hero p {
    margin-bottom: 30px;
    font-size: 20px;
    line-height: 1.6;
    color: #486b69;
}

.primary-button {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    background-color: #e78336;
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.programs {
    padding: 70px 20px;
    text-align: center;
    background-color: white;
}

.programs h2 {
    margin-top: 0;
    font-size: 36px;
}

.programs p {
    font-size: 18px;
    color: #486b69;
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 17px;
    }
}

.brand-link {
    color: inherit;
    text-decoration: none;
}

.navbar nav {
    display: flex;
    gap: 24px;
}

.programs-page {
    min-height: 80vh;
    padding: 70px 8%;
    background-color: #f7fbfa;
}

.page-heading {
    max-width: 750px;
    margin: 0 auto 45px;
    text-align: center;
}

.page-heading h1 {
    margin-bottom: 15px;
    font-size: 42px;
}

.page-heading p {
    color: #486b69;
    font-size: 18px;
    line-height: 1.6;
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.program-card {
    padding: 30px;
    border-radius: 14px;
    background-color: white;
    box-shadow: 0 8px 25px rgba(23, 60, 58, 0.08);
}

.program-card h2 {
    margin-top: 0;
    font-size: 24px;
}

.program-card p {
    min-height: 95px;
    color: #486b69;
    line-height: 1.6;
}

.program-status {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 20px;
    background-color: #fff1e6;
    color: #b65b19;
    font-size: 14px;
    font-weight: bold;
}

@media (max-width: 850px) {
    .program-grid {
        grid-template-columns: 1fr;
    }

    .program-card p {
        min-height: auto;
    }
}

.nav-button {
    padding: 10px 18px;
}

.program-card ul {
    padding-left: 20px;
    color: #486b69;
    line-height: 1.8;
}

.program-card .primary-button {
    margin-top: 15px;
}

@media (max-width: 700px) {
    .navbar {
        align-items: flex-start;
        gap: 20px;
    }

    .navbar nav {
        flex-wrap: wrap;
        justify-content: flex-end;
        gap: 12px;
    }
}

/* ========================================
   Yoga free-program landing page
======================================== */

.yoga-hero {
    padding: 80px 8%;
    background:
        linear-gradient(
            135deg,
            #effaf7 0%,
            #fff7ef 100%
        );
}

.yoga-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 70px;
    max-width: 1200px;
    margin: 0 auto;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 15px;
    color: #db762e;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.yoga-hero-content h1 {
    max-width: 700px;
    margin: 0 0 22px;
    font-size: 58px;
    line-height: 1.08;
}

.yoga-hero-content h1 span {
    display: block;
    color: #df7b32;
}

.hero-description {
    max-width: 650px;
    color: #486b69;
    font-size: 20px;
    line-height: 1.7;
}

.batch-message {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin: 18px 0;
    padding: 14px 20px;
    border: 1px solid #d9ebe6;
    border-radius: 12px;
    background-color: white;
}

.batch-icon {
    font-size: 26px;
}

.batch-message small,
.batch-message strong {
    display: block;
}

.batch-message small {
    margin-bottom: 3px;
    color: #698380;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 22px;
    margin-top: 15px;
    font-weight: bold;
}

.registration-card {
    padding: 34px;
    border-radius: 20px;
    background-color: white;
    box-shadow: 0 18px 45px rgba(23, 60, 58, 0.14);
}

.registration-heading {
    margin-bottom: 25px;
    text-align: center;
}

.registration-heading h2 {
    margin: 12px 0 8px;
    font-size: 30px;
}

.registration-heading p {
    margin: 0;
    color: #647d7a;
}

.free-badge {
    display: inline-block;
    padding: 7px 14px;
    border-radius: 20px;
    background-color: #e9f8f2;
    color: #176d58;
    font-size: 13px;
    font-weight: bold;
}

.registration-form {
    display: grid;
    gap: 17px;
}

.form-group label {
    display: block;
    margin-bottom: 7px;
    font-size: 14px;
    font-weight: bold;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid #cfddda;
    border-radius: 8px;
    background-color: white;
    color: #173c3a;
    font: inherit;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #df7b32;
    outline: 3px solid rgba(223, 123, 50, 0.12);
}

.mobile-input {
    display: flex;
    align-items: center;
    border: 1px solid #cfddda;
    border-radius: 8px;
    overflow: hidden;
}

.mobile-input span {
    padding: 13px;
    background-color: #f2f7f5;
    font-weight: bold;
}

.mobile-input input {
    border: 0;
    border-radius: 0;
}

.registration-button {
    width: 100%;
    padding: 15px;
    border: 0;
    border-radius: 9px;
    background-color: #df7b32;
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

.registration-button:hover,
.primary-button:hover {
    transform: translateY(-1px);
    opacity: 0.93;
}

.form-note {
    margin: 0;
    color: #708682;
    font-size: 12px;
    text-align: center;
}

.challenge-statistics {
    padding: 32px 8%;
    background-color: #173c3a;
    color: white;
}

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1050px;
    margin: 0 auto;
}

.statistic {
    padding: 12px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.statistic:last-child {
    border-right: 0;
}

.statistic strong,
.statistic span {
    display: block;
}

.statistic strong {
    margin-bottom: 5px;
    font-size: 32px;
}

.statistic span {
    opacity: 0.85;
    font-size: 14px;
}

.landing-section {
    padding: 80px 8%;
}

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

.section-heading h2 {
    margin: 0 0 15px;
    font-size: 40px;
}

.section-heading p {
    color: #587572;
    font-size: 18px;
    line-height: 1.65;
}

.slot-grid,
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    max-width: 950px;
    margin: 0 auto;
}

.slot-card,
.benefit-card {
    padding: 34px;
    border-radius: 16px;
    background-color: white;
    box-shadow: 0 8px 28px rgba(23, 60, 58, 0.08);
}

.slot-symbol,
.benefit-icon {
    margin-bottom: 15px;
    font-size: 36px;
}

.slot-card h3,
.benefit-card h3 {
    margin: 0 0 12px;
    font-size: 24px;
}

.slot-card p,
.benefit-card p {
    color: #587572;
    line-height: 1.7;
}

.slot-card strong {
    color: #d4712b;
}

.class-slots-section,
.journey-section,
.stories-section {
    background-color: #f7fbfa;
}

.benefits-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 1150px;
}

.journey-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    max-width: 1150px;
    margin: 0 auto;
}

.journey-step {
    padding: 28px;
    border-radius: 14px;
    background-color: white;
}

.journey-step > span {
    display: inline-grid;
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    border-radius: 50%;
    place-items: center;
    background-color: #df7b32;
    color: white;
    font-weight: bold;
}

.journey-step h3 {
    margin: 0 0 10px;
}

.journey-step p {
    color: #587572;
    line-height: 1.6;
}

.instructor-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
    gap: 60px;
    max-width: 1050px;
    margin: 0 auto;
}

.instructor-photo-wrap {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 440px;
    padding: 30px 30px 0;
    border-radius: 24px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at center,
            #ffffff 0%,
            #e4f3ef 55%,
            #fff0e3 100%
        );
}

.instructor-photo {
    display: block;
    width: 100%;
    max-width: 390px;
    height: auto;
    object-fit: contain;
}

.instructor-content h2 {
    margin: 0 0 20px;
    font-size: 40px;
}

.instructor-content p {
    color: #587572;
    font-size: 17px;
    line-height: 1.75;
}

.stories-placeholder {
    max-width: 800px;
    margin: 0 auto;
    padding: 35px;
    border: 2px dashed #bed4cf;
    border-radius: 15px;
    color: #587572;
    text-align: center;
}

.faq-list {
    max-width: 850px;
    margin: 0 auto;
}

.faq-list details {
    margin-bottom: 14px;
    padding: 20px 22px;
    border: 1px solid #dce8e5;
    border-radius: 12px;
    background-color: white;
}

.faq-list summary {
    cursor: pointer;
    font-size: 17px;
    font-weight: bold;
}

.faq-list details p {
    margin-bottom: 0;
    color: #587572;
    line-height: 1.65;
}

.final-cta {
    padding: 80px 20px;
    background-color: #173c3a;
    color: white;
    text-align: center;
}

.final-cta > div {
    max-width: 750px;
    margin: 0 auto;
}

.final-cta h2 {
    margin: 0 0 18px;
    font-size: 42px;
}

.final-cta p {
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.85;
}

@media (max-width: 950px) {
    .yoga-hero-grid,
    .instructor-layout {
        grid-template-columns: 1fr;
    }

    .benefits-grid,
    .journey-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .instructor-photo-wrap {
        min-height: 330px;
        padding: 20px 20px 0;
    }
}

@media (max-width: 650px) {
    .yoga-hero {
        padding: 55px 20px;
    }

    .instructor-photo {
        max-width: 300px;
    }

    .yoga-hero-content h1 {
        font-size: 40px;
    }

    .hero-description {
        font-size: 17px;
    }

    .registration-card {
        padding: 25px 20px;
    }

    .statistics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .statistic {
        border-right: 0;
    }

    .slot-grid,
    .benefits-grid,
    .journey-grid {
        grid-template-columns: 1fr;
    }

    .landing-section {
        padding: 60px 20px;
    }

    .section-heading h2,
    .instructor-content h2,
    .final-cta h2 {
        font-size: 32px;
    }
}

.field-error {
    margin: 6px 0 0;
    color: #b42318;
    font-size: 13px;
}

.form-general-errors {
    padding: 12px 15px;
    border: 1px solid #f1a7a1;
    border-radius: 8px;
    background-color: #fff1f0;
    color: #9f1d16;
}

.form-general-errors p {
    margin: 0;
}

.join-page {
    min-height: 80vh;
    display: grid;
    padding: 70px 20px;
    place-items: center;
    background:
        linear-gradient(
            135deg,
            #effaf7 0%,
            #fff7ef 100%
        );
}

.join-card {
    width: 100%;
    max-width: 520px;
    padding: 38px;
    border-radius: 20px;
    background-color: white;
    box-shadow: 0 18px 45px rgba(23, 60, 58, 0.14);
}

.registration-success-page {
    min-height: 80vh;
    display: grid;
    padding: 70px 20px;
    place-items: center;
    background-color: #f7fbfa;
}

.registration-success-card {
    width: 100%;
    max-width: 650px;
    padding: 50px 35px;
    border-radius: 20px;
    background-color: white;
    box-shadow: 0 12px 35px rgba(23, 60, 58, 0.1);
    text-align: center;
}

.success-symbol {
    display: grid;
    width: 70px;
    height: 70px;
    margin: 0 auto 22px;
    border-radius: 50%;
    place-items: center;
    background-color: #e6f7f1;
    color: #176d58;
    font-size: 38px;
    font-weight: bold;
}

.registration-success-card h1 {
    margin-bottom: 18px;
}

.registration-success-card p {
    color: #587572;
    font-size: 17px;
    line-height: 1.7;
}

.registration-success-card .primary-button {
    margin-top: 18px;
}

@media (max-width: 600px) {
    .join-card {
        padding: 28px 20px;
    }

    .registration-success-card {
        padding: 40px 22px;
    }
}

/* Duplicate registration popup */

.duplicate-modal-overlay {
    position: fixed;
    z-index: 9999;
    inset: 0;
    display: grid;
    padding: 20px;
    place-items: center;
    overflow-y: auto;
    background-color: rgba(13, 28, 27, 0.78);
    backdrop-filter: blur(5px);
}

.duplicate-modal {
    position: relative;
    width: 100%;
    max-width: 680px;
    padding: 42px 38px;
    border-radius: 28px;
    background-color: white;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
    text-align: center;
    animation: duplicate-modal-enter 0.3s ease-out;
}

@keyframes duplicate-modal-enter {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.duplicate-modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    border: 0;
    background: transparent;
    color: #64726f;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
}

.duplicate-modal-celebration {
    margin-bottom: 4px;
    font-size: 48px;
}

.duplicate-modal-whatsapp {
    display: grid;
    width: 105px;
    height: 105px;
    margin: 0 auto 25px;
    border-radius: 24px;
    place-items: center;
    background-color: #25d366;
    color: white;
    font-size: 50px;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.28);
}

.duplicate-modal h2 {
    margin: 0 0 18px;
    color: #173c3a;
    font-size: 34px;
}

.duplicate-modal-main-message {
    margin-bottom: 14px;
    color: #243c3a;
    font-size: 19px;
    font-weight: 600;
    line-height: 1.6;
}

.duplicate-modal-secondary-message {
    margin-bottom: 10px;
    color: #566e6b;
    font-size: 17px;
    line-height: 1.6;
}

.duplicate-modal-support {
    color: #667b78;
    font-size: 15px;
}

.duplicate-modal-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 28px;
}

.duplicate-whatsapp-button,
.duplicate-close-button {
    padding: 13px 22px;
    border-radius: 9px;
    font: inherit;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
}

.duplicate-whatsapp-button {
    border: 0;
    background-color: #25d366;
    color: white;
}

.duplicate-close-button {
    border: 1px solid #cad9d5;
    background-color: white;
    color: #173c3a;
}

.duplicate-whatsapp-button:hover,
.duplicate-close-button:hover {
    transform: translateY(-1px);
}

@media (max-width: 600px) {
    .duplicate-modal {
        padding: 36px 20px 28px;
        border-radius: 20px;
    }

    .duplicate-modal h2 {
        font-size: 27px;
    }

    .duplicate-modal-main-message {
        font-size: 17px;
    }

    .duplicate-modal-actions {
        flex-direction: column;
    }

    .duplicate-whatsapp-button,
    .duplicate-close-button {
        width: 100%;
    }
}

/* ========================================
   Member dashboard
======================================== */

.member-dashboard {
    min-height: 85vh;
    padding: 60px 8%;
    background-color: #f4f9f7;
}

.member-dashboard-container {
    max-width: 1100px;
    margin: 0 auto;
}

.member-welcome-card {
    padding: 42px;
    border-radius: 22px;
    background:
        linear-gradient(
            135deg,
            #173c3a 0%,
            #28675f 100%
        );
    color: white;
    box-shadow: 0 15px 35px rgba(23, 60, 58, 0.18);
}

.member-label {
    display: inline-block;
    margin-bottom: 14px;
    padding: 7px 13px;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.14);
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.member-welcome-card h1 {
    margin: 0 0 14px;
    font-size: 42px;
}

.member-welcome-card > p {
    max-width: 700px;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 17px;
    line-height: 1.7;
}

.member-profile-details {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.member-profile-details > div {
    min-width: 190px;
    padding: 15px 18px;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.1);
}

.member-profile-details span,
.member-profile-details strong {
    display: block;
}

.member-profile-details span {
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

.active-status {
    color: #9af0c4;
}

.member-programs-section {
    padding: 55px 0;
}

.member-section-heading {
    margin-bottom: 28px;
}

.member-section-heading h2 {
    margin: 0 0 8px;
    font-size: 32px;
}

.member-section-heading p {
    margin: 0;
    color: #587572;
}

.member-program-grid {
    display: grid;
    grid-template-columns: repeat(
        2,
        minmax(0, 1fr)
    );
    gap: 24px;
}

.member-program-card {
    padding: 30px;
    border: 1px solid #e0ebe8;
    border-radius: 18px;
    background-color: white;
    box-shadow: 0 8px 25px rgba(23, 60, 58, 0.07);
}

.member-program-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 20px;
}

.free-program-label,
.paid-program-label,
.enrollment-status {
    display: inline-block;
    padding: 7px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.free-program-label {
    background-color: #e8f8f2;
    color: #176d58;
}

.paid-program-label {
    background-color: #fff1e5;
    color: #ae581c;
}

.enrollment-status {
    background-color: #edf2f1;
    color: #506a67;
}

.member-program-card h3 {
    margin: 0 0 12px;
    font-size: 24px;
}

.member-program-card > p {
    min-height: 75px;
    color: #587572;
    line-height: 1.65;
}

.program-information {
    display: grid;
    grid-template-columns: repeat(
        2,
        minmax(0, 1fr)
    );
    gap: 14px;
    margin: 24px 0;
}

.program-information > div {
    padding: 13px;
    border-radius: 10px;
    background-color: #f5f9f8;
}

.program-information span,
.program-information strong {
    display: block;
}

.program-information span {
    margin-bottom: 5px;
    color: #708682;
    font-size: 12px;
}

.class-access-button {
    width: 100%;
    padding: 13px;
    border: 0;
    border-radius: 9px;
    background-color: #dfe7e5;
    color: #71827f;
    font-weight: bold;
    cursor: not-allowed;
}

.no-program-message {
    padding: 40px;
    border: 2px dashed #c5d7d3;
    border-radius: 16px;
    background-color: white;
    text-align: center;
}

.no-program-message h3 {
    margin-top: 0;
}

.no-program-message p {
    margin-bottom: 0;
    color: #587572;
}

.member-help-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 30px;
    border-radius: 18px;
    background-color: white;
    box-shadow: 0 8px 25px rgba(23, 60, 58, 0.07);
}

.member-help-card h2 {
    margin: 0 0 8px;
}

.member-help-card p {
    margin: 0;
    color: #587572;
}

.member-whatsapp-button {
    flex-shrink: 0;
    padding: 13px 21px;
    border-radius: 9px;
    background-color: #25d366;
    color: white;
    font-weight: bold;
    text-decoration: none;
}

@media (max-width: 750px) {
    .member-dashboard {
        padding: 35px 20px;
    }

    .member-welcome-card {
        padding: 30px 22px;
    }

    .member-welcome-card h1 {
        font-size: 32px;
    }

    .member-program-grid {
        grid-template-columns: 1fr;
    }

    .member-program-card > p {
        min-height: auto;
    }

    .member-help-card {
        align-items: stretch;
        flex-direction: column;
    }

    .member-whatsapp-button {
        text-align: center;
    }
}

/* Member class-access state */

.dashboard-messages {
    margin-bottom: 22px;
}

.dashboard-message {
    padding: 14px 18px;
    border-radius: 10px;
    font-weight: 600;
}

.dashboard-message.error {
    border: 1px solid #efb0aa;
    background-color: #fff0ef;
    color: #a62b22;
}

.class-access-status {
    margin-top: 24px;
    padding: 18px;
    border-radius: 12px;
    background-color: #f5f9f8;
}

.class-access-status p {
    margin: 10px 0;
    color: #587572;
    line-height: 1.55;
}

.class-access-status strong {
    color: #173c3a;
}

.access-status-label {
    display: inline-block;
    padding: 7px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.access-status-label.upcoming {
    background-color: #fff2df;
    color: #a85a18;
}

.access-status-label.closed {
    background-color: #f3eaea;
    color: #8b3b3b;
}

.access-status-label.waiting {
    background-color: #e9f1fa;
    color: #305f8d;
}

.access-status-label.inactive {
    background-color: #ecefee;
    color: #657572;
}
.access-status-label.open {
    background-color: #e6f7f1;
    color: #176d58;
}

.access-status-label.attended {
    background-color: #e8f2ff;
    color: #265f9e;
}

.join-class-button {
    display: inline-block;
    margin-top: 10px;
    padding: 13px 22px;
    border-radius: 9px;
    background-color: #df7b32;
    color: white;
    font-weight: bold;
    text-decoration: none;
}

.attendance-completion-box {
    margin-top: 18px;
    padding: 16px;
    border: 1px solid #d8e6e2;
    border-radius: 10px;
    background-color: white;
}

.attendance-completion-box p {
    margin-top: 0;
}

.attendance-completion-box small {
    color: #708682;
    line-height: 1.5;
}

.complete-attendance-button {
    width: 100%;
    padding: 13px 18px;
    border: 0;
    border-radius: 9px;
    background-color: #176d58;
    color: white;
    font: inherit;
    font-weight: bold;
    cursor: pointer;
}

.complete-attendance-button:hover,
.join-class-button:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}

.dashboard-message.success {
    border: 1px solid #a9ddc8;
    background-color: #ecfaf5;
    color: #176d58;
}

.dashboard-message.info {
    border: 1px solid #b7d2ed;
    background-color: #eef6ff;
    color: #285f91;
}

/* ========================================
   Yoga journey dashboard
======================================== */

.member-dashboard-tabs {
    position: sticky;
    z-index: 20;
    top: 0;
    display: flex;
    gap: 10px;
    margin: 24px 0 0;
    padding: 12px;
    border: 1px solid #dde9e6;
    border-radius: 14px;
    overflow-x: auto;
    background-color: rgba(255, 255, 255, 0.96);
}

.member-dashboard-tabs a {
    flex-shrink: 0;
    padding: 10px 16px;
    border-radius: 8px;
    color: #173c3a;
    font-weight: bold;
    text-decoration: none;
}

.member-dashboard-tabs a:hover {
    background-color: #edf6f3;
}

.member-progress-summary {
    margin: 22px 0;
    padding: 18px;
    border-radius: 12px;
    background-color: #f5f9f8;
}

.progress-summary-top {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.progress-summary-top span,
.progress-summary-top strong {
    display: block;
}

.progress-summary-top span {
    margin-bottom: 5px;
    color: #708682;
    font-size: 12px;
}

.member-progress-track {
    height: 12px;
    margin-top: 18px;
    border-radius: 20px;
    overflow: hidden;
    background-color: #dce7e4;
}

.member-progress-fill {
    height: 100%;
    border-radius: inherit;
    background-color: #df7b32;
}

.progress-percentage {
    margin: 8px 0;
    color: #587572;
    font-size: 13px;
}

.next-level-message {
    margin-bottom: 0;
    color: #587572;
}

.next-level-message.completed {
    color: #176d58;
    font-weight: bold;
}

.member-journey-section,
.member-certificate-section,
.continue-journey-section {
    padding: 55px 0;
    scroll-margin-top: 85px;
}

.journey-program-block {
    padding: 30px;
    border-radius: 18px;
    background-color: white;
    box-shadow: 0 8px 25px rgba(23, 60, 58, 0.07);
}

.journey-program-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 28px;
}

.journey-program-header h3 {
    margin: 0 0 8px;
    font-size: 25px;
}

.journey-program-header p {
    margin: 0;
    color: #587572;
}

.journey-level-badge {
    flex-shrink: 0;
    padding: 9px 15px;
    border-radius: 20px;
    background-color: #fff0e4;
    color: #ad581b;
    font-weight: bold;
}

.journey-days-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 15px;
}

.journey-day-card {
    padding: 18px;
    border: 1px solid #dfe9e6;
    border-radius: 12px;
    background-color: #fafcfb;
}

.journey-day-card h4 {
    min-height: 44px;
    margin: 10px 0;
}

.journey-day-card time,
.journey-day-card small,
.journey-day-status {
    display: block;
}

.journey-day-card time {
    margin-bottom: 14px;
    color: #718582;
    font-size: 12px;
}

.journey-day-status {
    font-weight: bold;
}

.journey-day-card small {
    margin-top: 6px;
    color: #718582;
}

.journey-day-card.attended {
    border-color: #a5ddc7;
    background-color: #effaf6;
}

.journey-day-card.attended .journey-day-status {
    color: #176d58;
}

.journey-day-card.started,
.journey-day-card.today {
    border-color: #f1c89f;
    background-color: #fff7ef;
}

.journey-day-card.missed {
    background-color: #faf1f1;
}

.journey-day-card.missed .journey-day-status {
    color: #9b4141;
}

.journey-day-card.upcoming {
    opacity: 0.72;
}

.certificate-status-card {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 30px;
    border-radius: 18px;
    background-color: white;
    box-shadow: 0 8px 25px rgba(23, 60, 58, 0.07);
}

.certificate-icon {
    display: grid;
    flex-shrink: 0;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    place-items: center;
    font-size: 31px;
}

.certificate-icon.locked {
    background-color: #edf1f0;
}

.certificate-icon.unlocked {
    background-color: #e7f8f1;
    color: #176d58;
}

.certificate-state {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
}

.certificate-state.locked {
    color: #657572;
}

.certificate-state.unlocked {
    color: #176d58;
}

.certificate-status-card h3 {
    margin: 0 0 8px;
}

.certificate-status-card p {
    margin: 0;
    color: #587572;
}

.certificate-button {
    margin-top: 15px;
    padding: 11px 17px;
    border: 0;
    border-radius: 8px;
    background-color: #dfe7e5;
    color: #71827f;
    font-weight: bold;
}

.continuation-plan-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.continuation-plan-card {
    padding: 28px;
    border: 1px solid #dfe9e6;
    border-radius: 16px;
    background-color: white;
}

.continuation-plan-card.featured {
    border: 2px solid #df7b32;
}

.continuation-plan-card > span {
    color: #df7b32;
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
}

.continuation-plan-card h3 {
    margin: 12px 0;
}

.continuation-plan-card p {
    min-height: 70px;
    color: #587572;
    line-height: 1.6;
}

.continuation-plan-card a {
    display: inline-block;
    padding: 11px 18px;
    border-radius: 8px;
    background-color: #173c3a;
    color: white;
    font-weight: bold;
    text-decoration: none;
}

@media (max-width: 900px) {
    .journey-days-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .continuation-plan-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .progress-summary-top,
    .journey-program-header,
    .certificate-status-card {
        align-items: flex-start;
        flex-direction: column;
    }

    .journey-days-grid {
        grid-template-columns: 1fr;
    }
}
.certificate-button {
    display: inline-block;
    margin-top: 15px;
    padding: 11px 17px;
    border: 0;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
}

.certificate-download-button {
    background-color: #176d58;
    color: white;
}

.certificate-download-button:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}

/* ========================================
   Dynamic pricing pages
======================================== */

.pricing-page-hero {
    padding: 75px 0 55px;
    text-align: center;
    background-color: #f4f8f7;
}

.pricing-page-hero h1 {
    max-width: 760px;
    margin: 12px auto 18px;
    color: #173c3a;
    font-size: clamp(36px, 5vw, 58px);
}

.pricing-page-hero p {
    max-width: 680px;
    margin: 0 auto;
    color: #587572;
    font-size: 18px;
    line-height: 1.7;
}

.section-eyebrow {
    color: #df7b32;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.dynamic-pricing-section {
    padding: 65px 0 85px;
}

.pricing-plan-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.pricing-plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 32px;
    border: 1px solid #dce7e4;
    border-radius: 18px;
    background-color: white;
    box-shadow: 0 10px 30px rgba(23, 60, 58, 0.07);
}

.pricing-plan-card.recommended {
    border: 2px solid #df7b32;
    transform: translateY(-8px);
}

.recommended-label {
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 17px;
    padding: 7px 12px;
    border-radius: 20px;
    background-color: #fff0e4;
    color: #ad581b;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.plan-duration-label {
    color: #176d58;
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
}

.pricing-plan-card h2 {
    margin: 10px 0 12px;
    color: #173c3a;
}

.plan-short-description {
    min-height: 75px;
    color: #587572;
    line-height: 1.6;
}

.plan-price-area {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 9px;
    margin: 18px 0 22px;
}

.regular-price {
    color: #81928f;
    text-decoration: line-through;
}

.current-plan-price {
    color: #173c3a;
    font-size: 32px;
}

.discount-label {
    padding: 5px 8px;
    border-radius: 6px;
    background-color: #e8f7f1;
    color: #176d58;
    font-size: 12px;
    font-weight: bold;
}

.plan-feature-list,
.plan-detail-feature-list {
    margin: 0 0 26px;
    padding: 0;
    list-style: none;
}

.plan-feature-list {
    flex-grow: 1;
}

.plan-feature-list li,
.plan-detail-feature-list li {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    color: #405e5b;
    line-height: 1.5;
}

.plan-feature-list li span,
.plan-detail-feature-list li span {
    color: #176d58;
    font-weight: bold;
}

.view-plan-button {
    display: block;
    padding: 13px 18px;
    border-radius: 9px;
    background-color: #173c3a;
    color: white;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
}

.plans-coming-soon {
    grid-column: 1 / -1;
    padding: 45px;
    border-radius: 18px;
    background-color: #f4f8f7;
    text-align: center;
}

/* Plan detail */

.plan-detail-hero {
    padding: 55px 0 80px;
    background-color: #f7faf9;
}

.back-to-pricing-link {
    display: inline-block;
    margin-bottom: 30px;
    color: #176d58;
    font-weight: bold;
    text-decoration: none;
}

.plan-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.7fr);
    gap: 50px;
    align-items: start;
}

.plan-detail-content h1 {
    max-width: 720px;
    margin: 12px 0 20px;
    color: #173c3a;
    font-size: clamp(38px, 5vw, 60px);
}

.plan-detail-description {
    max-width: 680px;
    margin-bottom: 35px;
    color: #587572;
    font-size: 19px;
    line-height: 1.7;
}

.plan-detail-content h2 {
    color: #173c3a;
}

.plan-detail-feature-list li {
    font-size: 16px;
}

.plan-enrollment-card {
    position: sticky;
    top: 25px;
    padding: 32px;
    border: 1px solid #dce7e4;
    border-radius: 18px;
    background-color: white;
    box-shadow: 0 12px 35px rgba(23, 60, 58, 0.09);
}

.plan-enrollment-card > span {
    color: #587572;
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
}

.plan-detail-regular-price {
    margin-top: 15px;
    color: #81928f;
    font-size: 18px;
    text-decoration: line-through;
}

.plan-detail-current-price {
    margin: 5px 0 12px;
    color: #173c3a;
    font-size: 42px;
    font-weight: bold;
}

.plan-saving-message {
    color: #176d58;
    font-weight: bold;
}

.plan-selection-button {
    width: 100%;
    margin-top: 20px;
    padding: 14px;
    border: 0;
    border-radius: 9px;
    background-color: #dfe7e5;
    color: #758783;
    font: inherit;
    font-weight: bold;
}

.plan-enrollment-card small {
    display: block;
    margin-top: 13px;
    color: #718582;
    line-height: 1.5;
}

.other-plan-section {
    padding: 70px 0;
}

.other-plan-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.other-plan-card {
    padding: 25px;
    border: 1px solid #dce7e4;
    border-radius: 14px;
}

.other-plan-card span,
.other-plan-card strong {
    display: block;
}

.other-plan-card span {
    color: #df7b32;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.other-plan-card strong {
    margin: 12px 0;
    color: #173c3a;
    font-size: 24px;
}

.other-plan-card a {
    color: #176d58;
    font-weight: bold;
}

/* Member dashboard plan state */

.dashboard-plan-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 18px;
}

.dashboard-plan-price del {
    color: #83928f;
}

.dashboard-plan-price strong {
    color: #173c3a;
    font-size: 25px;
}

.paid-program-locked-card {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 30px;
    border: 1px solid #dce7e4;
    border-radius: 16px;
    background-color: #f6f9f8;
}

.paid-program-lock-icon {
    display: grid;
    flex-shrink: 0;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    place-items: center;
    background-color: #e7edeb;
    font-size: 26px;
}

.paid-program-locked-card h3 {
    margin: 0 0 8px;
}

.paid-program-locked-card p {
    margin: 0;
    color: #587572;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .pricing-plan-grid {
        grid-template-columns: 1fr;
    }

    .pricing-plan-card.recommended {
        transform: none;
    }

    .plan-detail-layout {
        grid-template-columns: 1fr;
    }

    .plan-enrollment-card {
        position: static;
    }
}

@media (max-width: 600px) {
    .other-plan-grid {
        grid-template-columns: 1fr;
    }

    .paid-program-locked-card {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* ========================================
   Paid plan selection and review
======================================== */

.dashboard-view-plan-link {
    display: inline-block;
    margin-right: 8px;
    padding: 11px 17px;
    border: 1px solid #173c3a;
    border-radius: 8px;
    background-color: white;
    color: #173c3a;
    font-weight: bold;
    text-decoration: none;
}

.plan-selection-form {
    display: inline-block;
    margin-top: 10px;
}

.select-paid-plan-button {
    padding: 12px 18px;
    border: 0;
    border-radius: 8px;
    background-color: #df7b32;
    color: white;
    font: inherit;
    font-weight: bold;
    cursor: pointer;
}

.select-paid-plan-button:hover,
.dashboard-view-plan-link:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}

.plan-selection-button.public-plan-selection-link {
    display: block;
    background-color: #176d58;
    color: white;
    text-align: center;
    text-decoration: none;
}

.selected-plan-review-page {
    min-height: 75vh;
    padding: 55px 0 85px;
    background-color: #f6f9f8;
}

.back-to-dashboard-link {
    display: inline-block;
    margin-bottom: 30px;
    color: #176d58;
    font-weight: bold;
    text-decoration: none;
}

.selected-plan-review-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 1.3fr)
        minmax(320px, 0.7fr);
    gap: 45px;
    align-items: start;
}

.selected-plan-information h1 {
    max-width: 680px;
    margin: 12px 0 18px;
    color: #173c3a;
    font-size: clamp(38px, 5vw, 58px);
}

.selected-plan-information > p {
    max-width: 650px;
    color: #587572;
    font-size: 18px;
    line-height: 1.7;
}

.selected-member-card {
    display: flex;
    flex-direction: column;
    margin: 30px 0;
    padding: 22px;
    border-left: 4px solid #df7b32;
    border-radius: 10px;
    background-color: white;
}

.selected-member-card span,
.selected-member-card small {
    color: #6f8581;
}

.selected-member-card strong {
    margin: 6px 0;
    color: #173c3a;
    font-size: 22px;
}

.selected-plan-feature-area {
    padding: 28px;
    border-radius: 16px;
    background-color: white;
}

.selected-plan-feature-area h2 {
    margin-top: 0;
    color: #173c3a;
}

.selected-plan-summary-card {
    position: sticky;
    top: 25px;
    padding: 32px;
    border: 1px solid #dce7e4;
    border-radius: 18px;
    background-color: white;
    box-shadow: 0 12px 35px rgba(23, 60, 58, 0.09);
}

.selected-plan-duration {
    display: block;
    color: #df7b32;
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
}

.selected-plan-summary-card h2 {
    margin: 10px 0 12px;
    color: #173c3a;
}

.selected-plan-summary-card > p {
    color: #587572;
    line-height: 1.6;
}

.selected-plan-price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 10px;
    margin: 25px 0;
}

.selected-plan-price del {
    color: #859693;
    font-size: 17px;
}

.selected-plan-price strong {
    color: #173c3a;
    font-size: 37px;
}

.selected-plan-price span {
    width: 100%;
    color: #176d58;
    font-size: 13px;
    font-weight: bold;
}

.selection-status-row {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding: 15px 0;
    border-top: 1px solid #e1e9e7;
    border-bottom: 1px solid #e1e9e7;
}

.selection-status-row span {
    color: #6f8581;
}

.selection-status-row strong {
    color: #176d58;
}

.continue-payment-button {
    width: 100%;
    margin-top: 24px;
    padding: 14px 18px;
    border: 0;
    border-radius: 9px;
    background-color: #dce5e3;
    color: #71847f;
    font: inherit;
    font-weight: bold;
}

.selected-plan-summary-card small {
    display: block;
    margin-top: 12px;
    color: #728682;
    line-height: 1.5;
}

.change-plan-link {
    display: block;
    margin-top: 20px;
    color: #176d58;
    font-weight: bold;
    text-align: center;
}

.selected-plan-messages {
    margin-bottom: 20px;
}

.selected-plan-message {
    padding: 14px 18px;
    border-radius: 9px;
}

.selected-plan-message.success {
    border: 1px solid #a9ddc8;
    background-color: #ecfaf5;
    color: #176d58;
}

.selected-plan-message.error {
    border: 1px solid #e2b5b5;
    background-color: #fff2f2;
    color: #974242;
}

@media (max-width: 850px) {
    .selected-plan-review-layout {
        grid-template-columns: 1fr;
    }

    .selected-plan-summary-card {
        position: static;
    }
}
/* ========================================
   Lessons 32–42: payments and production dashboard
======================================== */
.dashboard-language-form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.dashboard-language-form label {
    font-weight: 700;
}

.dashboard-language-form select,
.dashboard-language-form button {
    min-height: 42px;
    padding: 9px 13px;
    border: 1px solid #cadbd6;
    border-radius: 8px;
    font: inherit;
}

.dashboard-language-form button {
    border: 0;
    background: #df7b32;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}

.member-subscription-section {
    padding: 55px 0;
    scroll-margin-top: 85px;
}

.active-subscription-card {
    padding: 30px;
    border: 1px solid #a9ddc8;
    border-radius: 18px;
    background: #effaf6;
    box-shadow: 0 8px 25px rgba(23, 60, 58, 0.07);
}

.active-subscription-card h3 {
    margin: 14px 0 8px;
    color: #173c3a;
    font-size: 28px;
}

.subscription-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin: 24px 0;
}

.subscription-facts div {
    padding: 16px;
    border-radius: 11px;
    background: #fff;
}

.subscription-facts span,
.subscription-facts strong {
    display: block;
}

.subscription-facts span {
    margin-bottom: 5px;
    color: #6d827e;
    font-size: 12px;
}

.subscription-actions,
.paid-dashboard-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.link-button {
    display: inline-block;
    text-decoration: none;
}

.recent-payment-summary {
    margin-top: 24px;
    padding: 24px;
    border: 1px solid #dce7e4;
    border-radius: 14px;
    background: #fff;
}

.recent-payment-row,
.payment-history-item {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 13px 0;
    border-bottom: 1px solid #e5eeeb;
}

.recent-payment-row:last-child,
.payment-history-item:last-child {
    border-bottom: 0;
}

.payment-status {
    display: inline-block;
    padding: 5px 9px;
    border-radius: 999px;
    font-size: 12px;
}

.payment-status.paid {
    background: #e5f8ef;
    color: #176d58;
}

.payment-status.failed,
.payment-status.cancelled {
    background: #fff0f0;
    color: #9b4141;
}

.payment-status.created,
.payment-status.payment_pending {
    background: #fff4e8;
    color: #a55a22;
}

.continue-payment-button.enabled {
    background: #176d58;
    color: #fff;
    cursor: pointer;
}

.payment-page,
.payment-result-page,
.payment-history-page {
    min-height: 72vh;
    padding: 65px 0 90px;
    background: #f5f9f8;
}

.payment-layout {
    display: grid;
    place-items: center;
}

.payment-summary-card,
.payment-result-card {
    width: min(100%, 620px);
    padding: 36px;
    border: 1px solid #dce7e4;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 14px 40px rgba(23, 60, 58, 0.1);
}

.payment-summary-card h1,
.payment-result-card h1,
.payment-history-page h1 {
    color: #173c3a;
}

.payment-summary-list {
    margin: 28px 0;
}

.payment-summary-list div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 13px 0;
    border-bottom: 1px solid #e5eeeb;
}

.payment-summary-list dt {
    color: #6c817d;
}

.payment-summary-list dd {
    margin: 0;
    color: #173c3a;
    font-weight: 700;
    text-align: right;
}

.payment-summary-list .payment-total {
    font-size: 22px;
}

.secure-pay-button {
    display: inline-block;
    width: 100%;
    padding: 15px 20px;
    border: 0;
    border-radius: 10px;
    background: #176d58;
    color: #fff;
    font: inherit;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

.payment-inline-error {
    margin-top: 15px;
    padding: 12px;
    border-radius: 8px;
    background: #fff0f0;
    color: #9b4141;
}

.payment-result-card {
    margin: 0 auto;
    text-align: center;
}

.payment-result-icon {
    display: grid;
    width: 76px;
    height: 76px;
    margin: 0 auto 20px;
    border-radius: 50%;
    place-items: center;
    background: #e5f8ef;
    color: #176d58;
    font-size: 35px;
    font-weight: 800;
}

.payment-result-icon.failed {
    background: #fff0f0;
    color: #9b4141;
}

.payment-result-icon.pending {
    background: #fff4e8;
    color: #a55a22;
}

.payment-summary-list.compact {
    margin-top: 30px;
    text-align: left;
}

.payment-history-list {
    margin-top: 28px;
    padding: 20px 28px;
    border-radius: 16px;
    background: #fff;
}

.payment-history-item span {
    display: block;
    margin-top: 5px;
    color: #6f827f;
}

.paid-dashboard-page .member-welcome-card {
    margin-bottom: 25px;
}

.paid-class-card {
    margin-top: 25px;
}

.paid-dashboard-actions {
    margin-top: 30px;
}

@media (max-width: 700px) {
    .subscription-facts {
        grid-template-columns: 1fr;
    }

    .recent-payment-row,
    .payment-history-item,
    .payment-summary-list div {
        align-items: flex-start;
        flex-direction: column;
    }

    .payment-summary-list dd {
        text-align: left;
    }

    .payment-summary-card,
    .payment-result-card {
        padding: 24px;
    }
}


/* Advanced referral controls */
.referral-box { margin: 22px 0; padding: 18px; border: 1px solid #dce7e4; border-radius: 12px; background: #f7faf9; }
.referral-box h3 { margin-top: 0; }
.referral-box form { display: flex; gap: 10px; flex-wrap: wrap; }
.referral-box input { flex: 1; min-width: 160px; padding: 11px 12px; border: 1px solid #bfd0cc; border-radius: 8px; text-transform: uppercase; }
/* ========================================
   Global Arya Wellness footer
======================================== */

.site-footer {
    padding: 68px 0 26px;
    color: rgba(255, 255, 255, 0.72);
    background: #102e2c;
}

.site-footer-container {
    box-sizing: border-box;
    width: min(1180px, calc(100% - 40px));
    margin-right: auto;
    margin-left: auto;
}

.site-footer-grid {
    display: grid;
    grid-template-columns:
        minmax(230px, 1.5fr)
        repeat(4, minmax(120px, 1fr));
    gap: 42px;
}

.site-footer-brand {
    max-width: 340px;
}

.site-footer-logo {
    display: inline-block;
    margin-bottom: 15px;
    color: #ffffff;
    font-size: 25px;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-decoration: none;
}

.site-footer-brand p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
    line-height: 1.75;
}

.site-footer-language-note {
    display: inline-block;
    margin-top: 18px;
    padding: 8px 11px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    color: #b6d9d0;
    font-size: 10px;
    font-weight: 700;
}

.site-footer-column h3 {
    margin: 0 0 17px;
    color: #ffffff;
    font-size: 14px;
}

.site-footer-column a {
    display: block;
    width: fit-content;
    margin: 10px 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
    line-height: 1.5;
    text-decoration: none;
}

.site-footer-column a:hover {
    color: #ffffff;
}

.site-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 50px;
    padding-top: 23px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.55);
    font-size: 11px;
    line-height: 1.6;
}

@media (max-width: 1000px) {
    .site-footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .site-footer-brand {
        grid-column: 1 / -1;
        max-width: 600px;
    }
}

@media (max-width: 680px) {
    .site-footer {
        padding-top: 52px;
    }

    .site-footer-container {
        width: calc(100% - 30px);
    }

    .site-footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px 24px;
    }

    .site-footer-brand {
        grid-column: 1 / -1;
    }

    .site-footer-bottom {
        flex-direction: column;
        gap: 10px;
        margin-top: 38px;
    }
}

@media (max-width: 420px) {
    .site-footer-grid {
        grid-template-columns: 1fr;
    }

    .site-footer-brand {
        grid-column: auto;
    }
}

/* =====================================================
   Arya Wellness Public Header
   Isolated from announcement / page styles
===================================================== */

.arya-site-header {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #e5ecef;
    position: relative;
    z-index: 1000;
}

.arya-site-header-inner {
    width: 100%;
    max-width: 1200px;
    min-height: 108px;
    margin: 0 auto;
    padding: 18px 28px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/* Brand */

.arya-site-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;

    color: #0d3c69;
    text-decoration: none;
}

.arya-site-brand strong {
    margin: 0;
    color: #0d3c69;
    font-size: 32px;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.arya-site-brand span {
    color: #e47b00;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    line-height: 1.2;
}

/* Menu container */

.arya-site-menu {
    position: relative;
}

/* remove browser's default details arrow */

.arya-site-menu summary {
    list-style: none;
}

.arya-site-menu summary::-webkit-details-marker {
    display: none;
}

/* Hamburger */

.arya-site-menu summary {
    width: 64px;
    height: 64px;
    padding: 0;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;

    cursor: pointer;

    background: #ffffff;
    border: 2px solid #dbe4e8;
    border-radius: 18px;
}

.arya-site-menu summary span {
    display: block;
    width: 30px;
    height: 4px;

    background: #0d3c69;
    border-radius: 999px;
}

/* Dropdown */

.arya-site-menu-panel {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;

    min-width: 230px;
    padding: 10px;

    display: flex;
    flex-direction: column;
    gap: 4px;

    background: #ffffff;
    border: 1px solid #e2e8eb;
    border-radius: 14px;

    box-shadow:
        0 14px 40px rgba(14, 52, 82, 0.14);

    z-index: 1100;
}

.arya-site-menu:not([open]) .arya-site-menu-panel {
    display: none;
}

.arya-site-menu-panel a {
    display: block;
    padding: 12px 14px;

    border-radius: 9px;

    color: #123c62;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
}

.arya-site-menu-panel a:hover {
    background: #f2f7f6;
}

.arya-site-menu-panel .arya-menu-primary {
    margin-top: 5px;
    background: #e98216;
    color: #ffffff;
    text-align: center;
}

/* Mobile */

@media (max-width: 700px) {

    .arya-site-header-inner {
        min-height: 92px;
        padding: 14px 18px;
    }

    .arya-site-brand strong {
        font-size: 28px;
    }

    .arya-site-brand span {
        font-size: 11px;
        letter-spacing: 1.1px;
    }

    .arya-site-menu summary {
        width: 58px;
        height: 58px;
        border-radius: 16px;
    }

    .arya-site-menu summary span {
        width: 27px;
        height: 3px;
    }

    .arya-site-menu-panel {
        right: 0;
        width: min(280px, calc(100vw - 36px));
    }
}