    /* =========================
   BASE FONT
========================= */

    html,
    body {
        font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        height: 100%;
        margin: 0;
        padding: 0;
    }

    .page-wrapper {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
    }

    .page-content {
        flex: 1;
    }
    /* ===============================
   ONESCREEN NAVBAR
================================ */

    .os-navbar {
        position: sticky;
        top: 0;
        z-index: 1000;
        width: 100%;
        background: #ffffff;
        border-bottom: 1px solid #eeeeee;
    }

    .os-navbar__container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 16px 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    /* Center Menu */

    .os-navbar__menu {
        display: flex;
        gap: 32px;
    }

    .os-navbar__menu a {
        font-family: Inter, sans-serif;
        font-size: 14px;
        font-weight: 500;
        color: #333333;
        text-decoration: none;
    }

    .os-navbar__menu a:hover,
    .os-navbar__menu a.active {
        color: #6F3393;
        /* OneScreen purple */
    }

    .os-navbar__mobile-menu a:hover,
    .os-navbar__mobile-menu a.active {
        color: #6F3393;
        /* OneScreen purple */
    }
    /* Account */

    .os-navbar__account {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .account-icon {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .account-icon img {
        width: auto;
    }

    .account-text {
        display: flex;
        flex-direction: column;
        line-height: 1.2;
    }

    .account-title {
        font-size: 13px;
        font-weight: 600;
        color: #333333;
    }

    .account-subtitle {
        font-size: 11px;
        color: #999999;
    }
    /* ===============================
   HAMBURGER (hidden on desktop)
================================ */

    .os-navbar__hamburger {
        display: none;
        background: none;
        border: none;
        font-size: 22px;
        cursor: pointer;
    }
    /* ===============================
   MOBILE MENU (default hidden)
================================ */

    .os-navbar__mobile-menu {
        display: none;
        flex-direction: column;
        background: #ffffff;
        border-top: 1px solid #eee;
    }
    /* Links */

    .os-navbar__mobile-menu a {
        padding: 14px 20px;
        text-decoration: none;
        color: #333;
        font-size: 14px;
        border-bottom: 1px solid #f2f2f2;
    }
    /* Open state (JS toggles this class) */

    .os-navbar__mobile-menu.is-open {
        display: flex;
    }

    .cf-logo {
        width: 50%;
    }
    /* ===============================
   MOBILE BEHAVIOR
================================ */

    @media (max-width: 768px) {
        .cf-logo {
            min-width: 45%
        }
        /* Show hamburger */
        .os-navbar__hamburger {
            display: block;
        }
        /* Hide desktop nav */
        .os-navbar__menu {
            display: none;
        }
        /* Account: icon only */
        .account-text {
            display: none;
        }
        /* Layout alignment */
        .os-navbar__container {
            justify-content: space-between;
        }
        .os-navbar__right {
            display: flex;
            align-items: center;
            gap: 12px;
        }
    }
    /* ===============================
   DESKTOP SAFETY NET
   (prevents menu leak on resize)
================================ */

    @media (min-width: 769px) {
        .os-navbar__mobile-menu {
            display: none !important;
        }
    }
/* =========================
   FOOTER (Figma)
========================= */
.os-footer {
    background: linear-gradient(180deg, #EEE6FD 0%, #ffffff 100%);
    padding: 48px 0;
    font-family: 'Inter', sans-serif;
}

.os-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* Top row */
.os-footer__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

/* Col 1 — brand */
.os-footer__brand {
    display: flex;
    flex-direction: column;
    gap: 26px;
}
.os-footer__logo img { height: 31px; width: auto; display: block; }

/* Headings */
.os-footer__heading {
    margin: 0;
    color: #1F1F1F;
    font-size: 20px;
    font-weight: 700;
    line-height: 27.5px;
}

/* Link columns */
.os-footer__col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.os-footer__links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.os-footer__links a {
    color: #636E72;
    font-size: 16px;
    font-weight: 400;
    line-height: 20.5px;
    text-decoration: none;
}
.os-footer__links a:hover { color: #6F3393; }

/* Support badge */
.os-footer__badge img { display: block; width: 62px; height: 62px; justify-self: center; }

/* Col 4 — newsletter */
.os-footer__newsletter {
    width: 318px;
    flex: 0 0 318px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.os-footer__newsletter-text {
    margin: 0;
    color: #636E72;
    font-size: 16px;
    font-weight: 400;
    line-height: 20.5px;
}
.os-footer__form { display: flex; flex-direction: column; gap: 6px; }
.os-footer__form-row { display: flex; align-items: center; gap: 16px; }

.os-footer__input {
    flex: 1 1 0;
    min-width: 0;
    height: 56px;
    padding: 0 23px;
    background: #ffffff;
    border: 1px solid #EFEFEF;
    border-radius: 108px;
    box-shadow: 0 2px 12px rgba(20, 20, 42, 0.08);
    color: #333;
    font-size: 16px;
    font-family: inherit;
    line-height: 20.5px;
}
.os-footer__input::placeholder { color: #636E72; }
.os-footer__input:focus { outline: none; border-color: #6F3393; }

.os-footer__subscribe {
    flex: none;
    padding: 18px 23px;
    background: #6F3393;
    border: 3px solid #6F3393;
    border-radius: 120px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    line-height: 19.5px;
    cursor: pointer;
    transition: background .15s ease;
}
.os-footer__subscribe:hover { background: #5a2a78; border-color: #5a2a78; }

.os-footer__fineprint {
    color: #636E72;
    font-size: 12px;
    font-weight: 400;
    line-height: 14.5px;
}

/* Social (shared by top + bottom) */
.os-footer__social { display: flex; align-items: center; gap: 22px; }
.os-footer__social img { height: 18px; width: auto; display: block; }

/* Bottom bar */
.os-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    position: relative;
    padding-top: 28px;
}
.os-footer__divider {
    position: absolute;
    top: 0; left: 0; right: 0;
    margin: 0;
    border: 0;
    border-top: 1px solid rgba(99, 110, 114, 0.40);
}
.os-footer__address {
    margin: 0;
    color: #636E72;
    font-size: 16px;
    font-weight: 400;
    line-height: 20.5px;
}

/* Tablet */
@media (max-width: 900px) {
    .os-footer__top {
        flex-wrap: wrap;
        gap: 40px 32px;
    }
    .os-footer__newsletter { flex-basis: 100%; width: 100%; order: 5; }
}

/* Mobile — match Figma */
@media (max-width: 600px) {
    .os-footer { padding: 48px 30px; }
    .os-footer__inner { padding: 0; gap: 35px; }

    .os-footer__top {
        flex-direction: column;
        align-items: center;
        gap: 35px;
    }

    /* brand block centered */
    .os-footer__brand {
        align-items: center;
        gap: 26px;
    }

    /* Content + Support side by side, centered as a pair */
    .os-footer__col {
        flex: 0 0 auto;
        gap: 18px;
    }
    .os-footer__top {
        /* let the two link columns share a row while newsletter stays full width */
    }
    .os-footer__cols-wrap { /* see note below */ }

    /* newsletter centered, full width, form stays inline */
    .os-footer__newsletter {
        width: 100%;
        flex-basis: 100%;
        align-items: center;
        text-align: center;
        gap: 6px;
    }
    .os-footer__newsletter .os-footer__heading { text-align: center; }
    .os-footer__newsletter-text { text-align: center; }
    .os-footer__form { width: 100%; gap: 6px; }
    .os-footer__form-row { flex-direction: row; align-items: center; gap: 6px; }
    .os-footer__input { font-size: 14px; line-height: 18.5px; }
    .os-footer__fineprint { width: 100%; text-align: center; }

    /* bottom bar: divider + centered address only, no social */
    .os-footer__bottom {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .os-footer__address { text-align: center; }
    .os-footer__bottom .os-footer__social { display: none; }
}
    /* =========================
   TYPOGRAPHY SYSTEM (FIGMA)
========================= */
    /* Desktop ≥1024px */

    h1 {
        font-size: 44px;
        line-height: 47.5px;
        font-weight: 700;
    }

    h2 {
        font-size: 36px;
        line-height: 47.5px;
        font-weight: 700;
    }

    h3 {
        font-size: 24px;
        line-height: 27.5px;
        font-weight: 400;
    }

    h4 {
        font-size: 20px;
        line-height: 27.5px;
        font-weight: 400;
    }

    h5 {
        font-size: 16px;
        line-height: 20.5px;
        font-weight: 700;
    }

    .body-large {
        font-size: 20px;
        line-height: 26.5px;
    }

    .body-regular {
        font-size: 16px;
        line-height: 21.5px;
    }

    .body-small {
        font-size: 14px;
        line-height: 18.5px;
    }

    .body-xs {
        font-size: 12px;
        line-height: 18.5px;
    }
    /* =========================
   CHALKFREE HERO (FIGMA)
========================= */

    .chalkfree-hero {
        position: relative;
        height: 532px;
        background: linear-gradient( 180deg, var(--hero-gradient-start, #ffffff) 0%, var(--hero-gradient-end, #D6C3F9) 100%);
        overflow: hidden;
    }
    /* Illustration */

    .chalkfree-hero__image {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 1px;
        left: 0;
        background-image: var(--hero-image, url('/images/hero/Header-Image-Landing.webp'));
        background-repeat: no-repeat;
        background-position: center bottom;
        background-size: contain;
        z-index: 1;
    }
    /* Content */

    .chalkfree-hero__content {
        padding: 0 20px;
        max-width: 1055px;
        position: relative;
        z-index: 2;
        height: 100%;
        align-items: center;
        align-content: center;
    }

    .chalkfree-hero__title {
        margin-bottom: 12px;
    }

    .chalkfree-hero-home__title {
        margin-bottom: 12px;
    }

    .chalkfree-hero__subtitle {
        color: #666666;
        margin: 0 auto 28px;
    }
    /* Buttons */

    .chalkfree-btn-primary {
        background: #6F3393;
        color: #fff;
        padding: 15px 20px;
        border-radius: 120px;
        font-weight: 700;
    }

    .chalkfree-btn-outline {
        border: 3px solid #6F3393;
        color: #6F3393;
        padding: 15px 20px;
        border-radius: 120px;
        font-weight: 700;
    }

    .chalkfree-btn-outline:hover {
        background: #6F3393;
        color: #fff;
    }

    .chalkfree-hero__inner {
        width: 1240px;
        max-width: 100%;
        margin: 0 auto;
    }
    /* Curve */

    .chalkfree-hero__curve {
        position: absolute;
        bottom: -115px;
        left: 50%;
        transform: translateX(-50%);
        width: 200vw;
        height: 166px;
        overflow: hidden;
        z-index: 5;
        pointer-events: none;
    }

    .chalkfree-hero__curve svg {
        width: 1240px;
        height: 166px;
        display: block;
        margin: 0 auto;
    }

    @media (max-width:1100px) {
        .chalkfree-hero__image {
            bottom: 30px;
        }
    }
    /* =========================
   TABLET
========================= */

    @media (max-width: 1024px) {
        .chalkfree-hero__title {
            margin-top: 3rem !important;
        }
        .chalkfree-hero {
            height: 500px;
            padding: 80px 0 200px;
        }
        .chalkfree-hero__image {
            bottom: 20px;
            background-size: contain;
            background-position: center top;
        }
        h1 {
            font-size: 32px;
            line-height: 30px;
        }
        h2 {
            font-size: 30px;
            line-height: 30px;
        }
        h3 {
            font-size: 22px;
            line-height: 27.5px;
        }
        p {
            font-size: 20px;
        }
        .chalkfree-btn-outline {
            padding: 10px 15px;
            font-weight: 600;
        }
    }

    @media (max-width: 992px) {
        .chalkfree-hero__title {
            margin-top: 0px !important;
        }
        .chalkfree-hero-home__title {
            margin-top: 7rem!important;
        }
        .chalkfree-hero {
            height: 580px;
            padding: 0;
            overflow: clip;
        }
        .hero-banner {
            text-align: center !important;
            justify-items: center;
        }
        .img-order-1 {
            margin-top: 30px;
            width: 40%;
        }
    }
    /* Mobile */

    @media (max-width: 767px) {
        .chalkfree-stage-card {
            width: auto!important;
        }
        .chalkfree-hero {
            height: 550px;
            padding: 0px 30px;
            overflow: clip;
        }
        .chalkfree-hero__image {
            background-image: var(--hero-image, url('/images/hero/Home-banner-mob.png'));
            bottom: 40px;
            background-size: auto;
            background-position: center top;
        }
        .chalkfree-hero__title {
            font-size: 24px;
            line-height: 32px;
        }
        .chalkfree-hero-home__title {
            font-size: 24px;
            line-height: 32px;
        }
        .chalkfree-hero__subtitle {
            font-size: 16px;
            padding: 0;
            line-height: 22.5px;
        }
        .chalkfree-hero__content {
            padding: 0px;
            height: 80%
        }
        .hero-actions {
            flex-direction: column;
            align-items: center;
            gap: 12px;
        }
        .hero-actions .btn {
            width: 250px;
            max-width: 250px;
            text-align: center;
        }
        .chalkfree-hero__curve {
            position: absolute;
            left: 50vw;
            bottom: -115px;
            transform: translateX(-50%);
            width: 200vw;
            height: 166px;
            z-index: 3;
            pointer-events: none;
            overflow: hidden;
        }
        .chalkfree-hero__curve svg {
            width: 100%;
            height: 100%;
            display: block;
        }
        .hero-banner {
            text-align: center !important;
        }
        .img-order-1 {
            margin-top: 0px;
            margin-bottom: 20px;
            width: 176.519px;
            height: 150.75px;
        }
    }

    /* =========================
   CF SPLIT HERO (Figma — text left / image right)
   Self-contained. Does not affect .chalkfree-hero.
========================= */
.cf-split-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg,
        var(--hero-gradient-start, #ffffff) 0%,
        var(--hero-gradient-end, #d6c3f9) 100%);
}

.cf-split-hero__inner {
    position: relative;          /* anchor for the absolute image */
    max-width: 1240px;
    min-height: 553px;           /* Figma hero height */
    margin: 0 auto;
    padding: 0 120px;
    display: flex;
    align-items: center;         /* vertically centers the text column */
}

.cf-split-hero__content {
    position: relative;
    z-index: 2;
    flex: 0 0 525px;
    max-width: 525px;
    padding: 60px 0;
}

.cf-split-hero__title {
    margin: 0 0 22px;
    color: var(--os-charcoal, #333);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 44px;
    line-height: 47.5px;
}

.cf-split-hero__subtitle {
    margin: 0 0 42px;
    color: #666;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 27.5px;
}

.cf-split-hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

/* image area: right side, full height, behind text */
.cf-split-hero__media {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 60%;
    z-index: 1;
    pointer-events: none;
}

.cf-split-hero__image {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 100%;
    width: auto;
    max-width: none;             /* beat any global img{max-width:100%} */
    object-fit: contain;
    object-position: bottom right;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 22%);
            mask-image: linear-gradient(90deg, transparent 0%, #000 22%);
}

/* Buttons (scoped to this hero) */
.cf-split-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 20px;
    border-radius: 120px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 19.5px;
    text-decoration: none;
    transition: background .15s ease, color .15s ease;
}
.cf-split-hero__btn--primary { background: var(--os-amethyst, #6f3393); color: #fff; }
.cf-split-hero__btn--primary:hover { background: #5a2a78; color: #fff; }
.cf-split-hero__btn--outline {
    color: var(--os-amethyst, #6f3393);
    box-shadow: inset 0 0 0 3px var(--os-amethyst, #6f3393);  /* no layout shift */
}
.cf-split-hero__btn--outline:hover { background: var(--os-amethyst, #6f3393); color: #fff; }

/* Curve */
.cf-split-hero__curve {
    position: absolute;
    left: 50%; bottom: -115px;
    transform: translateX(-50%);
    width: 200vw; height: 166px;
    overflow: hidden; pointer-events: none; z-index: 5;
}
.cf-split-hero__curve svg { display: block; width: 1240px; height: 166px; margin: 0 auto; }

/* Tablet / stacked */
@media (max-width: 992px) {
    .cf-split-hero__inner {
        flex-direction: column;
        text-align: center;
        min-height: 0;
        gap: 24px;
        padding: 60px 24px 120px;
    }
    .cf-split-hero__content { flex: none; max-width: 560px; padding: 0; order: 1; }
    .cf-split-hero__media {
        position: static;
        width: 100%;
        max-width: 560px;
        height: auto;
        order: 2;
        margin: 0 auto;
    }
    .cf-split-hero__image {
        position: static;
        height: auto;
        width: 100%;
        -webkit-mask-image: none;
                mask-image: none;
    }
    .cf-split-hero__title    { font-size: 32px; line-height: 38px; }
    .cf-split-hero__subtitle { font-size: 20px; line-height: 27px; margin-bottom: 28px; }
    .cf-split-hero__actions  { justify-content: center; }
}

/* Mobile — match Figma */
@media (max-width: 767px) {
    .cf-split-hero__inner {
        padding: 40px 24px 0;     /* no bottom pad; curve handles the base */
    }
    .cf-split-hero__content {
        max-width: 100%;
        width: 100%;
        padding-bottom: 8px;
    }
    .cf-split-hero__title    { font-size: 28px; line-height: 34px; }
    .cf-split-hero__subtitle { font-size: 16px; line-height: 22.5px; margin-bottom: 28px; }

    .cf-split-hero__actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 16px;
    }
    .cf-split-hero__btn {
        width: 100%;
        max-width: none;
        padding: 16px 20px;
    }

    /* full-bleed image, edge to edge, sitting on the curve */
    .cf-split-hero__media {
        width: 100vw;
        max-width: 100vw;
        margin-left: calc(50% - 50vw);   /* break out of the 24px padding */
        margin-right: calc(50% - 50vw);
        margin-top: 16px;
        margin-bottom: 0;
    }
    .cf-split-hero__image {
        display: block;
        width: 100%;
        height: auto;
        margin: 0 auto;
        -webkit-mask-image: none;
                mask-image: none;
        mix-blend-mode: multiply;        /* drops the baked-in white bg */
    }

    /* curve sits right under the image, no white gap */
    .cf-split-hero__curve {
        bottom: -50px;
        height: 60px;
    }
    .cf-split-hero__curve svg {
        width: 100%;
    }
}

    /* ======================================================
   STAGE SECTION
====================================================== */

    .chalkfree-stages {
        justify-self: center;
    }
    /* ======================================================
   STAGE CARD (FIGMA)
====================================================== */

    .chalkfree-stage-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 315px;
        min-height: 387px;
        padding: 40px 20px;
        gap: 14px;
        background: #ffffff;
        border-radius: 15px;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
        text-align: center;
        transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
        /* IMPORTANT FOR TOUCH */
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
    /* Hover animation (all cards) */

    .chalkfree-stage-card:hover,
    .chalkfree-stage-card:active,
    .chalkfree-stage-card:focus-visible {
        transform: translateY(-6px) scale(1.03);
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
    }
    /* Icon */

    .chalkfree-stage-card__icon img {
        width: 80px;
    }
    /* Title */

    .chalkfree-stage-card__title {
        font-size: 20px;
        font-weight: 700;
        color: #333;
        margin-bottom: 8px;
    }
    /* Text */

    .chalkfree-stage-card__text {
        font-size: 16px;
        line-height: 21.5px;
        color: #666;
    }
    /* Button */

    .chalkfree-stage-card__btn {
        margin-top: auto;
        padding: 10px 26px;
        border-radius: 999px;
        font-weight: 700;
        font-size: 14px;
        text-decoration: none;
    }
    /* ======================================================
   PREPARING (PURPLE – HOVER ONLY)
====================================================== */

    .chalkfree-stage-card.preparing:hover,
    .chalkfree-stage-card.preparing:active,
    .chalkfree-stage-card.preparing:focus-visible {
        background: linear-gradient(180deg, #ffffff 0%, #f2e9ff 100%);
    }

    .chalkfree-stage-card.preparing .chalkfree-stage-card__btn {
        background: #d8c7f9;
        color: #6f3393;
    }
    /* ======================================================
   TEACHING (GREEN – HOVER ONLY)
====================================================== */

    .chalkfree-stage-card.teaching:hover,
    .chalkfree-stage-card.teaching:active,
    .chalkfree-stage-card.teaching:focus-visible {
        background: linear-gradient(180deg, #ffffff 0%, #eef8f0 100%);
    }

    .chalkfree-stage-card.teaching .chalkfree-stage-card__btn {
        background: #d8f0dc;
        color: #0f7b29;
    }
    /* ======================================================
   AFTER CLASS (BLUE – HOVER ONLY)
====================================================== */

    .chalkfree-stage-card.after:hover,
    .chalkfree-stage-card.after:active,
    .chalkfree-stage-card.after:focus-visible {
        background: linear-gradient(180deg, #ffffff 0%, #edf6ff 100%);
    }

    .chalkfree-stage-card.after .chalkfree-stage-card__btn {
        background: #dbeeff;
        color: #2b6cb0;
    }
    /* ======================================================
   FEEDBACK SECTION (FIGMA)
====================================================== */

    .chalkfree-feedback-section {
        background: transparent;
    }

    .chalkfree-feedback-box {
        max-width: 984px;
        padding: 30px 50px;
        border-radius: 10px;
        background: #ffffff;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .chalkfree-feedback-title {
        font-size: 36px;
        font-weight: 700;
        line-height: 47.5px;
        color: #333333;
    }

    .chalkfree-feedback-text {
        font-size: 16px;
        line-height: 21.5px;
        color: #666666;
        max-width: 880px;
    }

    @media (max-width: 768px) {
        .chalkfree-feedback-box {
            padding: 30px 20px;
        }
        .chalkfree-feedback-title {
            font-size: 24px;
            line-height: 32px;
        }
        .mb-cards {
            padding: 0 20px;
        }
    }
    /* ===============================
   FEATURE CARDS GRID (FIXED)
================================ */

    .feature-cards-grid {
        display: grid;
        gap: 30px;
        justify-content: center;
        grid-template-columns: repeat(auto-fit, minmax(325px, 325px));
    }
    /* Optional hard caps for large screens */

    @media (min-width: 1200px) {
        .feature-cards-grid.columns-2 {
            grid-template-columns: repeat(2, 325px);
        }
        .feature-cards-grid.columns-3 {
            grid-template-columns: repeat(3, 325px);
        }
        .feature-cards-grid.columns-4 {
            grid-template-columns: repeat(4, 325px);
        }
    }
    /* ===== TABLET (≤1024px → force 2 columns) ===== */

    @media (max-width: 1024px) {
        .feature-cards-grid.columns-4,
        .feature-cards-grid.columns-3,
        .feature-cards-grid.columns-2 {
            grid-template-columns: repeat(2, minmax(0, 325px));
        }
    }
    /* ===== MOBILE (≤768px → 1 column) ===== */

    @media (max-width: 768px) {
        .feature-cards-grid.columns-4,
        .feature-cards-grid.columns-3,
        .feature-cards-grid.columns-2 {
            grid-template-columns: 1fr;
        }
    }
    /* ======================================================
   CARD WRAPPER
====================================================== */

    .feature-card-wrapper {
        width: 325px;
        height: 100%;
        display: flex;
        justify-content: center;
    }

    @media (max-width: 768px) {
        .feature-card-wrapper {
            width: 100%;
            height: auto;
        }
    }
    /* ===============================
   FEATURE CARD INTERACTION STATES
================================ */

    .feature-card {
        display: flex;
        width: 315px;
        height: 350px;
        padding: 57px 20px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 24px;
        background: #FFFFFF;
        border-radius: 15px;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
        transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }

    .feature-card:hover,
    .feature-card:active,
    .feature-card:focus-within {
        background: linear-gradient( 343deg, #D6C3F9 -123.27%, #FFFFFF 105.2%);
        transform: translateY(-4px) scale(1.03);
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
    }
    /* Mobile safety */

    @media (max-width: 768px) {
        .feature-card {
            width: 100%;
            max-width: 315px;
        }
    }
    /* ======================================================
   MEDIA AREA
====================================================== */

    .feature-media {
        width: 100%;
        height: 120px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .feature-media.media-logo img {
        max-width: 180px;
        max-height: 48px;
        object-fit: contain;
    }

    .feature-media.media-image img {
        max-width: 240px;
        max-height: 120px;
        object-fit: contain;
    }
    /* ======================================================
   CONTENT
====================================================== */

    .feature-content {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 18px;
        text-align: center;
    }

    .feature-title {
        font-size: 20px;
        font-weight: 700;
        line-height: 27.5px;
        color: #333;
    }

    .feature-description {
        font-size: 16px;
        line-height: 20.5px;
        color: #666;
    }

    .feature-btn {
        margin-top: auto;
        padding: 10px 30px;
        background: #D6C3F9;
        border-radius: 80px;
        color: #6F3393;
        font-size: 16px;
        font-weight: 700;
        text-decoration: none;
    }
    /* ===============================
   MOBILE ADJUSTMENTS
================================ */

    @media (max-width: 768px) {
        .feature-card {
            height: auto;
            min-height: 398px;
        }
    }
    /* ===============================
   VIDEO GUIDE LIST
================================ */

    .os-video-guide {
        padding-top: 20px;
        padding-bottom: 50px;
    }

    .os-video-guide__inner {
        max-width: 1000px;
        margin: 0 auto;
        border-radius: 10px;
        background: #fff;
    }
    /* Row */

    .os-video-guide__row {
        width: 100%;
        height: 80px;
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 0 16px;
        background: transparent;
        border: none;
        border-bottom: 0.8px solid #E5E5E5;
        text-align: left;
        cursor: pointer;
    }

    .os-video-guide__row:last-child {
        border-bottom: none;
    }
    /* Icon */

    .os-video-guide__icon {
        width: 48px;
        height: 48px;
    }

    .os-video-guide__icon-box {
        width: 48px;
        height: 48px;
        background: #DBEAFE;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .os-video-guide__label {
        color: #666666;
        font-family: Inter, sans-serif;
        font-size: 16px;
        font-weight: 400;
        line-height: 20.5px;
    }

    .os-video-guide__title {
        color: #333333;
        font-family: Inter, sans-serif;
        font-size: 16px;
        font-weight: 700;
        line-height: 19.5px;
    }

    .os-video-guide__heading {
        font-size: 20px;
        font-weight: 700;
        margin: 32px 0 16px;
        color: #2B2B2B;
    }
    /* Arrow */
    /* Text should take remaining space */

    .os-video-guide__text {
        flex: 1;
        /* ← THIS pushes arrow to the end */
        display: flex;
        flex-direction: column;
        gap: 4px;
    }
    /* Arrow pinned to the right */

    .os-video-guide__arrow {
        margin-left: auto;
        /* ← forces arrow to the far right */
        font-size: 20px;
        color: #9E9E9E;
        flex-shrink: 0;
    }
    /* Prevent icon from shrinking */

    .os-video-guide__icon {
        flex-shrink: 0;
    }
    /* ===============================
   VIDEO MODAL
================================ */

    .os-video-modal {
        position: fixed;
        inset: 0;
        display: none;
        z-index: 9999;
    }

    .os-video-modal.is-open {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .os-video-modal__overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.6);
    }

    .os-video-modal__content {
        position: relative;
        width: 90%;
        max-width: 800px;
        aspect-ratio: 16 / 9;
        background: #000;
        border-radius: 12px;
        overflow: hidden;
        z-index: 1;
    }

    .os-video-modal__content iframe {
        width: 100%;
        height: 100%;
    }

    .os-video-modal__close {
        position: absolute;
        top: -40px;
        right: 0;
        font-size: 28px;
        background: none;
        border: none;
        color: #fff;
        cursor: pointer;
    }
    /* ===============================
   RESPONSIVE
================================ */

    @media (max-width: 768px) {
        .os-video-guide__inner {
            border-radius: 0;
        }
    }
    /* ===============================
   SHARE PAGE – MOBILE FIX
================================ */

    @media (max-width: 768px) {
        .page-share .chalkfree-hero {
            height: 450px;
        }
        .page-share .chalkfree-hero__content {
            height: 100%;
        }
        .page-share .chalkfree-hero__content .row {
            padding-top: 0px!important;
            text-align: center;
        }
        /* Make image fully visible */
        .page-share .chalkfree-hero img {
            max-height: none !important;
            width: 80%;
            height: auto;
        }
        /* Image spacing */
        .page-share .chalkfree-hero img {
            margin-bottom: 20px;
            min-width: 230px;
            max-width: 300px;
        }
        /* Center text */
        .page-share .chalkfree-hero__title,
        .page-share .chalkfree-hero__subtitle {
            text-align: center;
        }
    }

    .feature-card {
        position: relative;
        overflow: hidden;
    }

    .feature-card__ribbon-wrap {
        position: absolute;
        inset: 0;
        pointer-events: none;
        z-index: 3;
    }

    .feature-card__ribbon-bar {
        position: absolute;
        width: 160px;
        height: 37px;
        left: -23px;
        top: 74px;
        background: #82C341;
        transform: rotate(-40deg);
        transform-origin: top left;
    }

    .feature-card__ribbon-text {
        position: absolute;
        left: 9px;
        top: 60px;
        transform: rotate(-40deg);
        transform-origin: top left;
        color: #ffffff;
        font-family: Inter, sans-serif;
        font-size: 14px;
        font-weight: 700;
        line-height: 18.5px;
        display: flex;
        justify-content: center;
        align-items: center;
        white-space: nowrap;
    }

    .feature-card--ghost {
        visibility: hidden;
        pointer-events: none;
    }

    .feature-soon-box {
        background: #EEE6FD;
        border-radius: 40px;
    }
    /* Heading */

    .feature-home-title {
        color: #333333;
        font-family: 'Inter', sans-serif;
        font-size: 44px;
        font-weight: 700;
        line-height: 47.5px;
    }
    /* Feature text */

    .feature-text {
        color: #666666;
        font-family: 'Inter', sans-serif;
        font-size: 20px;
        font-weight: 400;
        line-height: 27.5px;
        margin: 0;
    }
    /* Icon placeholder (replace later with SVG/img) */

    .icon-placeholder {
        width: 80px;
        height: 60px;
        background: #ffffff;
        border-radius: 12px;
        margin: 0 auto;
    }
    /* Mobile tweaks */

    @media (max-width: 768px) {
        .feature-title {
            font-size: 20px;
            line-height: 27.5px;
            text-align: center;
        }
        .feature-home-title {
            font-size: 32px;
            line-height: 38px;
            text-align: center;
        }
        .feature-cards-grid {
            padding: 0 20px;
        }
        .more_features {
            padding: 0 20px;
        }
    }

    .more_features {
        max-width: 1000px;
    }

    [id] {
        scroll-margin-top: 60px;
    }
    /* ===============================
   ACCOUNT MODAL OVERLAY
================================ */

    .account-modal-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(4px);
        display: none;
        align-items: center;
        justify-content: center;
        z-index: 9999;
    }

    .account-modal-overlay.active {
        display: flex;
    }
    /* ===============================
   MODAL BOX
================================ */

    .account-modal {
        background: #ffffff;
        width: 90%;
        max-width: 320px;
        border-radius: 16px;
        padding: 20px;
        position: relative;
        text-align: center;
        animation: slideUp 0.3s ease;
    }
    /* ===============================
   CLOSE BUTTON
================================ */

    .account-modal-close {
        position: absolute;
        top: 12px;
        right: 12px;
        background: none;
        border: none;
        font-size: 22px;
        cursor: pointer;
    }
    /* ===============================
   CONTENT
================================ */

    .account-modal-content img {
        width: 100%;
        max-height: 220px;
        object-fit: contain;
        margin-bottom: 20px;
    }

    .account-modal-content h3 {
        font-family: Inter, sans-serif;
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 6px;
    }

    .account-modal-content p {
        font-family: Inter, sans-serif;
        font-size: 14px;
        color: #666;
    }
    /* ===============================
   MOBILE ONLY (AUTO REMOVE)
================================ */

    @media (min-width: 769px) {
        .account-modal-overlay {
            display: none !important;
        }
    }
    /* ===============================
   ANIMATION
================================ */

    @keyframes slideUp {
        from {
            transform: translateY(20px);
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    /* ======================================================
   APPS BY ONESCREEN — HERO
   Image already has built-in left fade — NO overlay needed
====================================================== */

.os-apps-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: linear-gradient(
        180deg,
        var(--hero-gradient-start, #ffffff) 0%,
        var(--hero-gradient-end, #D6C3F9) 100%
    );
}

/* White elliptical bottom curve */
.os-apps-hero::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -130px;
    transform: translateX(-50%);
    width: 140%;
    height: 200px;
    background: #ffffff;
    border-radius: 50%;
    z-index: 4;
    pointer-events: none;
}

/* Main container */
.os-apps-hero__container {
    position: relative;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    min-height: 577px;
    display: flex;
    align-items: center;
}

/* ── LEFT: text content ── */
.os-apps-hero__content {
    position: relative;
    z-index: 5;
    flex-shrink: 0;
    width: 560px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 100px 0 140px 120px;
}

.os-apps-hero__text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Inter 700, 44px, #333333, lh 47.5px */
.os-apps-hero__title {
    margin: 0;
    color: #333333;
    font-size: 44px;
    font-family: Inter, sans-serif;
    font-weight: 700;
    line-height: 47.5px;
}

/* Inter 400, 20px, #666666, lh 27.5px */
.os-apps-hero__subtitle {
    margin: 0;
    max-width: 420px;
    color: #666666;
    font-size: 20px;
    font-family: Inter, sans-serif;
    font-weight: 400;
    line-height: 27.5px;
}

/* ── BUTTONS — side by side on desktop ── */
.os-apps-hero__actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
}

.os-apps-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 28px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 16px;
    font-family: Inter, sans-serif;
    font-weight: 700;
    line-height: 19.5px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.2s ease, color 0.2s ease;
}

.os-apps-hero__btn--primary {
    background: transparent;
    color: #6F3393;
    border: 3px solid #6F3393;
}
.os-apps-hero__btn--primary:hover {
    background: #6F3393;
    border-color: #6F3393;
    color: #ffffff;
    text-decoration: none;
}

.os-apps-hero__btn--outline {
    background: transparent;
    color: #6F3393;
    border: 3px solid #6F3393;
}
.os-apps-hero__btn--outline:hover {
    background: #6F3393;
    color: #ffffff;
    text-decoration: none;
}

/* ── RIGHT: hero image ── */
.os-apps-hero__media {
    position: absolute;
    left: 29%;
    top: 0;
    right: 0;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.os-apps-hero__image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
    display: block;
}

.os-apps-hero__image-fade,
.os-apps-hero__ellipse {
    display: none;
}


/* ======================================================
   ≤ 1280px
====================================================== */
@media (max-width: 1240px) {
    .os-apps-hero__content {
        padding-left: 80px;
    }
}

/* ======================================================
   ≤ 1100px
====================================================== */
@media (max-width: 1100px) {
    .os-apps-hero__content {
        width: 440px;
        padding: 70px 0 110px 60px;
        gap: 28px;
    }
    .os-apps-hero__title  { font-size: 38px; line-height: 44px; }
    .os-apps-hero__subtitle { font-size: 18px; }
    .os-apps-hero__media { left: 38%; }
    .os-apps-hero::after { height: 160px; bottom: -110px; }
}

/* ======================================================
   ≤ 900px
====================================================== */
@media (max-width: 900px) {
    .os-apps-hero__content {
        width: 400px;
        padding: 60px 0 100px 40px;
    }
    .os-apps-hero__title { font-size: 34px; line-height: 40px; }
    .os-apps-hero__btn   { font-size: 14px; padding: 13px 18px; }
}


/* ======================================================
   MOBILE ≤ 768px
   Figma mobile:
   - Full width, no side-by-side layout
   - Text CENTRED
   - Buttons stacked vertically, full width, centred
   - Image below text, full width
====================================================== */
@media (max-width: 768px) {

    .os-apps-hero {
        /* Reset bottom curve — smaller on mobile */
    }

    .os-apps-hero::after {
        height: 80px;
        bottom: -50px;
        width: 180%;
    }

    /* Stack: content on top, image below */
    .os-apps-hero__container {
        flex-direction: column;
        align-items: center;
        min-height: auto;
    }

    /* Content block — centred, full width */
    .os-apps-hero__content {
        position: relative;
        width: 100%;
        padding: 48px 24px 32px;
        z-index: 5;
        align-items: center;   /* centre all children */
        text-align: center;
        gap: 24px;
    }

    .os-apps-hero__text {
        align-items: center;
    }

    .os-apps-hero__title {
        font-size: 28px;
        line-height: 34px;
        text-align: center;
    }

    .os-apps-hero__subtitle {
        max-width: 100%;
        font-size: 16px;
        line-height: 24px;
        text-align: center;
    }

    /* Buttons: stacked vertically, full width, centred */
    .os-apps-hero__actions {
        flex-direction: column;
        align-items: center;
        gap: 14px;
        width: 100%;
    }

    .os-apps-hero__btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        text-align: center;
        white-space: normal;
        font-size: 16px;
        padding: 15px 20px;
    }

    /* Image: full width, below buttons */
    .os-apps-hero__media {
        position: relative;
        left: 0;
        top: 0;
        right: 0;
        width: 100%;
        height: 280px;
        overflow: hidden;
        z-index: 1;
    }

    .os-apps-hero__image {
        position: relative;
        width: 100%;
        height: 280px;
        object-fit: cover;
        object-position: center top;
    }
}

/* ======================================================
   ≤ 480px — very small phones
====================================================== */
@media (max-width: 480px) {
    .os-apps-hero__content {
        padding: 36px 20px 24px;
        gap: 20px;
    }

    .os-apps-hero__title {
        font-size: 26px;
        line-height: 32px;
    }

    .os-apps-hero__media { height: 240px; }
    .os-apps-hero__image { height: 240px; }
}

/* ======================================================
   APPS STRIP SECTION
   Figma: padding 20px 128px 10px | gap 15px
====================================================== */

.apps-strip-section {
    padding: 20px 128px 10px;
}

.apps-strip-inner {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

/* Inter 700, 36px, #333333, lh 37.5px */
.apps-strip__heading {
    color: #333333;
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 37.5px;
    text-align: center;
    margin: 0;
}

.apps-strip__row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 12px;
}

/* Figma: 126px wide, 30px top/bottom, 10px sides, radius 20px, gap 6px */
.app-pill {
    width: 126px;
    padding: 30px 10px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: background-color 0.25s ease, transform 0.25s ease;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.app-pill:hover,
.app-pill:active,
.app-pill:focus-visible {
    background-color: #f4f4f4;
    transform: translateY(-3px);
    text-decoration: none;
}

.app-pill__icon {
    height: 38px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* Inter 700, 16px, #000, lh 19.5px, width 84px */
.app-pill__name {
    width: 84px;
    text-align: center;
    color: #000000;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 19.5px;
}

@media (max-width: 1024px) {
    .apps-strip-section { padding-left: 48px; padding-right: 48px; }
    .apps-strip__heading { font-size: 30px; line-height: 34px; }
}

@media (max-width: 768px) {
    .apps-strip-section { padding-left: 20px; padding-right: 20px; }
    .apps-strip__heading { font-size: 24px; line-height: 30px; }
    .app-pill { width: 100px; padding: 20px 8px; }
    .app-pill__name { width: 72px; font-size: 14px; }
}


/* ======================================================
   HOW IT WORKS — DESKTOP ACCORDION
   Figma: padding 40px 119px 50px | gap 15px
====================================================== */

.hiw-section {
    padding: 40px 119px 50px;
}

.hiw-inner {
    max-width: 1002px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.hiw-heading-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Inter 700, 36px, #333333, lh 37.5px */
.hiw-title {
    max-width: 946px;
    text-align: center;
    color: #333333;
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 37.5px;
    margin: 0;
}

/* Inter 400, 20px, #666666, lh 27.5px */
.hiw-subtitle {
    max-width: 946px;
    text-align: center;
    color: #666666;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 27.5px;
    margin: 0;
}

.hiw-body {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 30px;
}

/* LEFT column — Figma: 412px */
.hiw-accordion {
    width: 412px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-self: center;
}

/* Inactive tab */
.hiw-tab {
    padding: 24px 47px;
    background: #ffffff;
    border-bottom: 1px solid #EFEFEF;
    border-left: 3px solid transparent;
    cursor: pointer;
    transition: border-left-color 0.2s ease;
}

.hiw-tab--last { border-bottom: none; }

/* Active tab — purple left border */
.hiw-tab--active {
    border-left: 3px solid #6E3393;
    border-bottom: none;
    padding: 34px 47px;
}

/* Inter 700, 16px, #2D3436, lh 19.5px */
.hiw-tab__title {
    display: block;
    color: #2D3436;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 19.5px;
}

.hiw-tab__body {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-top: 10px;
}

.hiw-tab--active .hiw-tab__body { display: flex; }

/* Inter 400, 14px, #636E72, lh 18.5px */
.hiw-tab__desc {
    width: 302px;
    color: #636E72;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 18.5px;
    margin: 0;
}

/* CTA — #6E3393, radius 76px, padding 18px 24px */
.hiw-tab__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 24px;
    background: #6E3393;
    border-radius: 76px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 19.5px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.hiw-tab__cta:hover { background: #5a2578; color: #ffffff; text-decoration: none; }

/* RIGHT: preview image */
.hiw-preview {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
}

.hiw-preview__panel { display: none; width: 100%; }
.hiw-preview__panel--active { display: block; }

.hiw-preview__screenshot {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    object-fit: cover;
}

/* Desktop responsive */
@media (max-width: 1100px) {
    .hiw-section { padding-left: 48px; padding-right: 48px; }
    .hiw-title { font-size: 30px; line-height: 34px; }
    .hiw-subtitle { font-size: 18px; }
}


/* ======================================================
   HOW IT WORKS — MOBILE SINGLE CARD
   Figma: 1 card, tab strip switches content + image
   Shown ≤768px only
====================================================== */

/* Show/hide logic */
.hiw-mobile { display: none; }

@media (max-width: 768px) {
    .hiw-body   { display: none; }
    .hiw-mobile { display: flex; flex-direction: column; align-items: center; width: 100%; }

    /* Desktop heading scale */
    .hiw-title   { font-size: 24px; line-height: 30px; }
    .hiw-subtitle { font-size: 16px; line-height: 22px; }
    .hiw-section { padding: 30px 20px 40px; }
}

/* The single card */
.hiw-mcard {
    width: 100%;
    max-width: 319px;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* Tab icon strip
   Figma: height 66px, 4 equal cells, gap 3px
   Active = #82C341 (lime), inactive = #E5E5E5 */
.hiw-mcard__tabs {
    height: 66px;
    display: flex;
    align-items: stretch;
    gap: 3px;
    flex-shrink: 0;
}

.hiw-mcard__tab {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    background: #E5E5E5;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease;
}

.hiw-mcard__tab--active {
    background: #82C341;
}

.hiw-mcard__tab img {
    max-width: 34px;
    max-height: 32px;
    object-fit: contain;
    display: block;
}

/* Card body */
.hiw-mcard__body {
    background: #F6F6F6;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Text block — hidden/shown by JS */
.hiw-mob-content {
    display: none;
}

.hiw-mob-content--active {
    display: block;
}

/* Text padding — Figma: 40px sides, 20px top/bottom */
.hiw-mcard__text {
    padding: 20px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

/* Inter 700, 16px, black, lh 19.5px */
.hiw-mcard__title {
    width: 100%;
    text-align: center;
    color: #000000;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 19.5px;
    margin: 0;
}

/* Inter 300, 14px, black, lh 18.5px */
.hiw-mcard__desc {
    max-width: 295px;
    text-align: center;
    color: #000000;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 18.5px;
    margin: 0;
}

/* Preview area — contains all 4 images, only active shown */
.hiw-mcard__preview {
    position: relative;
    overflow: hidden;
    border-radius: 0 0 6px 6px;
    flex-shrink: 0;
}

/* All preview images stack, only active visible */
.hiw-mob-img {
    display: none;
    width: 100%;
    height: auto;
    border-radius: 0 0 6px 6px;
    object-fit: cover;
}

.hiw-mob-img--active {
    display: block;
}

/* ======================================================
   CLASS FLOW SECTION
   "How OneScreen apps aid your class flow"
====================================================== */

.cf-section {
    padding: 50px 60px 90px;
    overflow: hidden;
}

.cf-inner {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

/* ----------------------------------
   Heading row
   Desktop: heading centred, button hidden
   Mobile:  heading left + chevron right
---------------------------------- */
.cf-heading-row {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 12px;
}

.cf-heading {
    text-align: center;
    color: #333333;
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 37.5px;
    margin: 0;
    flex: 1;
}

/* Toggle button — hidden on desktop */
.cf-toggle {
    display: none;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    background: #f0f0f0;
    border: none;
    border-radius: 6px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: background 0.15s ease;
}

/* Show only the relevant chevron */
.cf-toggle__icon--up   { display: none; }
.cf-toggle__icon--down { display: block; }

/* When expanded: swap icons */
.cf-toggle[aria-expanded="true"] .cf-toggle__icon--down { display: none; }
.cf-toggle[aria-expanded="true"] .cf-toggle__icon--up   { display: block; }


/* ======================================================
   SHARED CARD STYLES
====================================================== */

.cf-card,
.cf-mob-card {
    background: #ffffff;
    box-shadow: 0px 5px 23px rgba(0, 0, 0, 0.25);
    border-radius: 9.85px;
    padding: 34px 14px 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: default;
}

.cf-card__inner {
    background: var(--cf-bg, #f0f0f0);
    border-radius: 10px;
    padding: 7px 14px 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cf-card__num {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 27.5px;
}

.cf-card__subtitle {
    color: #333333;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 18.5px;
    margin: 0;
}

.cf-card__body {
    color: #666666;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 18.5px;
    margin: 0;
}


/* ======================================================
   DESKTOP CANVAS — 4-col grid
====================================================== */

.cf-canvas {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 40px;
    width: 100%;
    padding: 30px 0 40px;
}

.cf-card { width: 100%; }

.cf-card--01 { transform: rotate(-6deg); }
.cf-card--02 { transform: rotate(7deg);  }
.cf-card--03 { transform: rotate(3deg);  }
.cf-card--04 { transform: rotate(7deg);  }
.cf-card--05 { transform: rotate(-9deg); }
.cf-card--06 { transform: rotate(4deg);  }
.cf-card--07 { transform: rotate(-6deg); }
.cf-card--08 { transform: rotate(-5deg); }

.cf-card:hover {
    transform: rotate(0deg) translateY(-8px) scale(1.03) !important;
    box-shadow: 0px 16px 40px rgba(0, 0, 0, 0.18);
    z-index: 10;
}

@media (prefers-reduced-motion: reduce) {
    .cf-card { transition: none; }
    .cf-card:hover { transform: none !important; }
}


/* ======================================================
   TABLET — 2 columns
====================================================== */

@media (max-width: 1024px) {
    .cf-section { padding: 40px 40px 60px; }

    .cf-canvas {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, auto);
        gap: 28px 20px;
    }

    .cf-card--01 { transform: rotate(-5deg); }
    .cf-card--02 { transform: rotate(5deg);  }
    .cf-card--03 { transform: rotate(4deg);  }
    .cf-card--04 { transform: rotate(-4deg); }
    .cf-card--05 { transform: rotate(-6deg); }
    .cf-card--06 { transform: rotate(3deg);  }
    .cf-card--07 { transform: rotate(5deg);  }
    .cf-card--08 { transform: rotate(-3deg); }
}


/* ======================================================
   MOBILE — collapsible stack
====================================================== */

/* Hide stack by default on mobile — shown via JS class */
.cf-mobile-stack {
    display: none;
}

@media (max-width: 768px) {

    .cf-section { padding: 30px 20px 40px; max-width: 500px; justify-self: center; }
    .cf-canvas  { display: none; }

    /* Heading row: heading left-aligned, chevron visible */
    .cf-heading-row {
        justify-content: space-between;
        align-items: flex-start;
    }

    .cf-heading {
        font-size: 20px;
        line-height: 27.5px;
        text-align: left;
        flex: 1;
    }

    /* Show toggle button on mobile */
    .cf-toggle {
        display: flex;
        margin-top: 2px; /* align with first line of heading */
    }

    /* Stack: hidden until JS adds --open */
    .cf-mobile-stack {
        display: none;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        width: 100%;
        overflow: visible;
        padding: 10px 10px 20px;
    }

    /* JS adds this class on open */
    .cf-mobile-stack--open {
        display: flex;
    }

    .cf-mob-card {
        width: 100%;
        max-width: 280px;
    }

    .cf-card__num--mob {
        font-size: 24.45px;
        line-height: 32.26px;
    }

    .cf-mob-card--01 { transform: rotate(-6deg); }
    .cf-mob-card--02 { transform: rotate(7deg);  }
    .cf-mob-card--03 { transform: rotate(3deg);  }
    .cf-mob-card--04 { transform: rotate(7deg);  }
    .cf-mob-card--05 { transform: rotate(-8deg); }
    .cf-mob-card--06 { transform: rotate(4deg);  }
    .cf-mob-card--07 { transform: rotate(-6deg); }
    .cf-mob-card--08 { transform: rotate(-5deg); }

    .cf-mob-card:hover {
        transform: translateY(-6px) !important;
        box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.15);
    }
}

@media (max-width: 400px) {
    .cf-mob-card { max-width: 240px; }
}

/* ======================================================
   BUILDING WITH YOU SECTION
   Figma: bg #EEE6FD, border-radius 40px, padding 50px
====================================================== */

.bwy-section {
    padding: 0 120px 65px;
    max-width: 100%;
    box-sizing: border-box;
}

.bwy-box {
    background: #EEE6FD;
    max-width: 1056px;
    margin: 0 auto;
    border-radius: 40px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

/* Top row: text left + resources right */
.bwy-top {
    display: flex;
    align-items: center;
    gap: 33px;
    width: 100%;
}

/* Left text block */
.bwy-text {
    flex-shrink: 0;
    width: 319px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bwy-title {
    color: #333333;
    font-family: 'Inter', sans-serif;
    font-size: 44px;
    font-weight: 700;
    line-height: 47.5px;
    margin: 0;
    word-wrap: break-word;
}

.bwy-subtitle {
    color: #666666;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 27.5px;
    margin: 0;
    word-wrap: break-word;
}

/* Resources row — flex: 1 so it fills remaining space */
.bwy-resources {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    flex: 1;
    min-width: 0;
}

/* Each resource item — shrinkable, not fixed */
.bwy-resource {
    flex: 1 1 160px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

/* Icon box */
.bwy-resource__icon {
    width: 54px;
    height: 54px;
    background: #ffffff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.bwy-resource__icon svg,
.bwy-resource__icon img {
    width: auto;
    height: auto;
    max-width: 44px;
    max-height: 44px;
    object-fit: contain;
}

/* Resource label — fluid font size */
.bwy-resource__label {
    color: #666666;
    font-family: 'Inter', sans-serif;
    font-size: clamp(13px, 1.4vw, 20px);
    font-weight: 400;
    line-height: 1.4;
    text-align: center;
    margin: 0;
    word-break: break-word;
}

/* CTA buttons row */
.bwy-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 10px;
    width: 100%;
}

.bwy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 20px;
    border-radius: 120px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 19.5px;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

.bwy-btn--outline {
    min-width: 220px;
    background: transparent;
    color: #6F3393;
    outline: 3px solid #6F3393;
    outline-offset: -3px;
}
.bwy-btn--outline:hover {
    background: #6F3393;
    color: #ffffff;
    text-decoration: none;
}

.bwy-btn--filled {
    min-width: 220px;
    background: #6E3393;
    color: #ffffff;
    border: 3px solid #6E3393;
}
.bwy-btn--filled:hover {
    background: #5a2578;
    border-color: #5a2578;
    color: #ffffff;
    text-decoration: none;
}


/* ≤ 1240px */
@media (max-width: 1240px) {
    .bwy-section { padding: 0 80px 65px; }
}

/* ≤ 1100px — mid-range where overflow was happening */
@media (max-width: 1100px) {
    .bwy-section  { padding: 0 48px 60px; }
    .bwy-box      { padding: 40px 24px; }
    .bwy-top      { gap: 20px; }
    .bwy-text     { width: 220px; }
    .bwy-title    { font-size: 30px; line-height: 36px; }
    .bwy-subtitle { font-size: 17px; line-height: 24px; }
    .bwy-resources { gap: 12px; }
}

/* ≤ 900px */
@media (max-width: 900px) {
    .bwy-text     { width: 190px; }
    .bwy-title    { font-size: 26px; line-height: 32px; }
    .bwy-subtitle { font-size: 15px; line-height: 22px; }
}

/* ≤ 768px — stack vertically */
@media (max-width: 768px) {
    .bwy-section { padding: 0 20px 40px; }

    .bwy-box {
        padding: 30px 24px;
        border-radius: 20px;
        gap: 24px;
    }

    .bwy-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .bwy-text     { width: 100%; }
    .bwy-title    { font-size: 28px; line-height: 34px; text-align: center; }
    .bwy-subtitle { font-size: 16px; line-height: 22px; }

    .bwy-resources {
        flex-wrap: wrap;
        justify-content: center;
        gap: 18px;
        width: 100%;
    }

    .bwy-resource {
        flex: 0 0 calc(50% - 9px);
        min-width: 130px;
    }

    .bwy-resource__label { font-size: 14px; line-height: 20px; }

    .bwy-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .bwy-btn {
        width: 100%;
        text-align: center;
    }

    .bwy-btn--outline,
    .bwy-btn--filled { min-width: unset; }
}

/* ≤ 400px — single column resources */
@media (max-width: 400px) {
    .bwy-resource { flex: 0 0 100%; }
}

.ideas{
    display:flex;
    margin-inline:auto;        /* ← replaces justify-self: center */
    width:100%;
    max-width:1240px;
    box-sizing:border-box;     /* ← keeps max-width + padding from overflowing */
    align-items:center;
    gap:40px;
    padding:60px clamp(20px,8vw,119px);
    font-family:'Inter',sans-serif;
}
.ideas__intro{ flex:0 0 257px; display:flex; flex-direction:column; gap:24px; }
.ideas__title{ color:#333333; font-size:24px; font-weight:700; line-height:27.5px; margin:0; }
.ideas__subtitle{ color:#666666; font-size:20px; font-weight:400; line-height:27.5px; margin:0; }
.ideas__pill{
    align-self:flex-start;
    padding:18px 20px;
    border-radius:120px;
    outline:3px solid #6F3393;
    outline-offset:-3px;
    color:#6F3393;
    font-size:16px;
    font-weight:700;
    line-height:19.5px;
    background:none;
    cursor:default;
}
.ideas__scroller{
    flex:1 1 auto;
    min-width:0;
    -webkit-mask-image:linear-gradient(90deg,#000 88%,transparent 100%);
            mask-image:linear-gradient(90deg,#000 88%,transparent 100%);
}
.ideas__track{
    display:flex;
    gap:12px;
    overflow-x:auto;
    padding-bottom:4px;
    scroll-snap-type:x mandatory;
    -ms-overflow-style:none;
    scrollbar-width:none;
}
.ideas__track::-webkit-scrollbar{ display:none; }
.idea-card{ flex:0 0 236px; display:flex; flex-direction:column; gap:12px; scroll-snap-align:start; text-decoration:none; }
.idea-card__media{
    position:relative;
    width:100%;
    aspect-ratio:236 / 180;
    background:#E5E5E5;
    border-radius:14px;
    overflow:hidden;
}
.idea-card__media img{ width:100%; height:100%; object-fit:cover; display:block; }
.idea-card__play{
    position:absolute;
    top:50%; left:50%;
    transform:translate(-50%,-50%);
    width:57px; height:57px;
    border-radius:9999px;
    background:#595397;
    border:none;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
}
.idea-card__play::before{
    content:"";
    border-style:solid;
    border-width:9px 0 9px 14px;
    border-color:transparent transparent transparent #fff;
    margin-left:3px;
}
.idea-card__title{ color:#333333; font-size:16px; font-weight:700; line-height:19.5px; }

/* tablet/intermediate: shrink the big side padding before stacking */
@media (max-width:1024px){
    .ideas{ gap:28px; padding:48px 40px; }
}

/* stacked layout */
@media (max-width:900px){
    .ideas{ flex-direction:column; align-items:stretch; }
    .ideas__intro{ flex-basis:auto; }
    /* fade points down the page now, not sideways — drop the horizontal mask */
    .ideas__scroller{ -webkit-mask-image:none; mask-image:none; }
}

@media (max-width:768px){
    .ideas{ padding:30px 20px; }
    .ideas__title, .ideas__subtitle{
        text-align: center;
    }
    .ideas__pill {
        align-self: center;
    }
}

.stages{
    margin-inline: auto;
    width:100%;
    max-width:1240px;
    box-sizing:border-box;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:34px;
    padding: 0 50px 50px 50px;
    font-family:'Inter',sans-serif;
  }

  /* ---- heading ---- */
  .stages__head{ width:100%; display:flex; flex-direction:column; align-items:center; gap:10px; }
  .stages__title{
    margin:0; text-align:center;
    color:#333333; font-size:36px; font-weight:700; line-height:37.5px;
  }
  .stages__subtitle{
    margin:0; text-align:center;
    color:#666666; font-size:20px; font-weight:400; line-height:27.5px;
  }

  /* ---- cards row ---- */
  .stages__row{
    display:flex;
    justify-content:center;
    align-items:stretch;     /* equal-height cards → media fills full height */
    flex-wrap:wrap;
    gap:29px;
    width:100%;
  }

  /* ---- card ---- */
  .stage-card{
    flex:0 0 350px;
    max-width:350px;
    min-height:240px;
    display:flex;
    align-items:stretch;
    gap:0;
    padding-left:20px;
    border-radius:15px;
    box-shadow:0 4px 14px rgba(0,0,0,.25);
    overflow:hidden;
    box-sizing:border-box;
  }
  .stage-card--prepare{ background:#D6C3F9; --accent:#6E3393; }
  .stage-card--teach  { background:#D6EBDB; --accent:#4FAD00; }
  .stage-card--after  { background:#DAEDFC; --accent:#2F62AD; }

  .stage-card__text{
    flex:0 0 194px;        /* Figma: text column is 194px wide */
    min-width:0;
    align-self:center;
    display:flex;
    flex-direction:column;
    gap:12px;              /* Figma: 12px between text and button */
    padding:24px 8px 24px 0;
  }
  .stage-card__title{
    color:#333333; font-size:20px; font-weight:700; line-height:27.5px;
  }
  .stage-card__desc{
    margin:0;
    color:#666666; font-size:16px; font-weight:400; line-height:20.5px;
  }
  .stage-card__btn{
    align-self:flex-start;
    margin-top:0;
    padding:18px 30px;     /* Figma: 18px / 30px */
    background:#6E3393;
    border-radius:80px;
    color:#ffffff;
    font-size:16px; font-weight:700; line-height:19.5px;
    text-decoration:none;
    transition:background .2s ease;
  }
  .stage-card__btn:hover{ background:#5a2578; color:#fff; text-decoration:none; }

  /* ---- media (image + cursor accent) ---- */
  .stage-card__media{
    flex:1 1 auto;         /* fills remainder (~100px, Figma); image bleeds + clips */
    align-self:stretch;
    position:relative;
    overflow:hidden;
  }
  .stage-card__media img{
    width:100%; height:100%;
    object-fit:cover;
    object-position:center center;
    display:block;
  }

  /* ===== responsive ===== */
  @media (max-width:1024px){
    .stages{ padding:48px 40px; gap:28px; }
    .stages__title{ font-size:30px; line-height:34px; }
    .stages__subtitle{ font-size:18px; }
  }
  @media (max-width:768px){
    .stages{ padding:30px 20px; }
    .stages__title{ font-size:24px; line-height:30px; }
    .stages__subtitle{ font-size:16px; line-height:22px; }
    .stage-card{
      flex:1 1 100%;
      max-width:340px;
      min-height:0;
    }
    .stage-card__text{ flex:1 1 auto; }   /* image and text share width naturally */
    .stage-card__media{ flex:0 0 130px; }
  }

  /* ===== TESTIMONIAL BANNER + WHAT YOU'LL FIND INSIDE ===== */
  .find{
    margin-inline:auto;
    width:100%;
    max-width:1240px;
    box-sizing:border-box;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:44px;
    padding:50px clamp(20px,8vw,120px);
    font-family:'Inter',sans-serif;
  }

  /* ---- testimonial banner (pill) ---- */
  .find__banner{
    align-self:stretch;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:23px;
    padding:27px 40px;
    border-radius:160px;
    background:linear-gradient(90deg, rgba(214,195,249,.50) 0%, rgba(214,195,249,.12) 100%);
  }
  .find__quote-text{
    flex:0 1 716px;
    text-align:center;
    color:#6F3393;
    font-size:24px;
    font-style:italic;
    font-weight:700;
    line-height:27.5px;
    margin:0;
  }
  .find__attr{
    flex:1 1 0;
    text-align:center;
    color:#333333;
    font-size:24px;
    font-style:italic;
    line-height:27.5px;
  }
  .find__attr-name{ font-weight:700; }
  .find__attr-role{ font-weight:400; }

  /* ---- features + CTA ---- */
  .find__inside{
    align-self:stretch;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:14px;
  }
  .find__panel-title{
    text-align:center;
    color:#333333;
    font-size:36px;
    font-weight:700;
    line-height:37.5px;
    margin:0;
  }
  .find__features{
    display:flex;
    align-items:flex-start;
    gap:12px;
    width:100%;
  }
  .find__feature{
    flex:1 1 0;
    min-width:0;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:14px;
    padding:20px 10px;
    text-align:center;
  }
  .find__ico{
    width:54px;
    height:54px;
    flex-shrink:0;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
  }
  .find__ico--1{ background:#D6C3F9; }
  .find__ico--2{ background:#F2F8ED; }
  .find__ico--3{ background:#E7EDFA; }
  .find__ico img{ width:auto; height:auto; max-width:32px; max-height:32px; object-fit:contain; display:block; }
  .find__label{
    color:#666666;
    font-size:20px;
    font-weight:400;
    line-height:27.5px;
  }

  /* ---- CTA button ---- */
  .find__cta{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:18px 20px;
    background:#6E3393;
    border-radius:120px;
    color:#ffffff;
    font-size:16px;
    font-weight:700;
    line-height:19.5px;
    text-decoration:none;
    transition:background .2s ease;
  }
  .find__cta:hover{ background:#5a2578; color:#fff; text-decoration:none; }

  /* ===== responsive ===== */
  @media (max-width:1024px){
    .find{ gap:36px; padding:48px 40px; }
    .find__panel-title{ font-size:30px; line-height:34px; }
  }
  @media (max-width:900px){
    .find__banner{
      flex-direction:column;
      gap:10px;
      padding:28px 32px;
      border-radius:28px;   /* 160px pill looks wrong once it's tall */
    }
    .find__quote-text{ flex-basis:auto; }
  }
  @media (max-width:600px){
    .find{ padding:30px 20px; }
    .find__panel-title{ font-size:24px; line-height:30px; }
    .find__quote-text,
    .find__attr{ font-size:20px; line-height:26px; }
    .find__features{ flex-direction:column; align-items:stretch; gap:8px; }
    .find__feature{ flex-direction:row; gap:16px; text-align:left; padding:12px 0; }
    .find__label{ font-size:18px; }
    .find__cta{ width:100%; max-width:320px; }
  }

  /* =========================
   SECTION HEADING (label + rule)
========================= */
.cf-section-heading {
    display: flex;
    align-items: center;
    gap: 28px;
    width: 100%;
    max-width: 1060px;
}

.cf-section-heading__label {
    flex: 0 0 auto;
    color: #9E9E9E;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 27.5px;
}

.cf-section-heading__rule {
    flex: 1 1 0;
    height: 2px;
    background: #9E9E9E;
}

/* Tablet */
@media (max-width: 1180px) {
    .cf-section-heading { max-width: 700px;}
}


/* Mobile */
@media (max-width: 600px) {
    .cf-section-heading { gap: 16px; }
    .cf-section-heading__label { font-size: 20px; line-height: 24px; }
}

.feature-card-badge {
    width: fit-content;
    padding: 5px 10px;
    background: rgba(149, 0, 222, 0.10);
    border-radius: 90px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.feature-card-badge-text {
    color: var(--OS-Breeze, #9500DE);
    font-size: 14px;
    font-family: Inter, sans-serif;
    font-weight: 700;
    line-height: 18.5px;
    text-align: center;
}
