/* =========================================================
   FRONTLENS VISION DEMO — RESPONSIVE MEDIA QUERIES

   Breakpoints used in this file:
   1280px · 1199px · 1100px · 1023px · 991px
   769px · 767px · 489px · 389px
========================================================= */

@media screen and (max-width: 1280px) {

    .site-header {
        padding-left: 16px;
        padding-right: 16px;
    }

    .nav-shell {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        gap: 18px;
    }

    .brand img {
        width: 145px;
    }

    .desktop-nav {
        min-width: 0;
        gap: 18px;
        font-size: 14px;
    }

    .nav-actions {
        flex-shrink: 0;
        gap: 10px;
    }

    .phone-link>span:last-child {
        display: none;
    }

    .phone-link {
        gap: 0;
    }

    .round-icon {
        width: 40px;
        height: 40px;
    }

    .nav-cta {
        min-height: 48px;
        padding-inline: 16px;
        font-size: 14px;
    }

    .site-header.is-sticky .nav-shell {
        width: 100%;
        max-width: 100%;
    }
}

@media screen and (max-width: 1199px) {

    .site-header {
        padding-left: 18px;
        padding-right: 18px;
    }

    .nav-shell {
        width: 100%;
        max-width: 100%;
        min-width: 0;

        padding-left: 14px;
        padding-right: 14px;

        gap: 14px;
    }

    .brand {
        flex-shrink: 0;
    }

    .brand img {
        width: 145px;
    }

    .desktop-nav {
        min-width: 0;
        gap: 12px;

        font-size: 13px;
    }

    .desktop-nav a {
        flex-shrink: 0;
    }

    .nav-actions {
        flex-shrink: 0;
        gap: 10px;
    }

    .phone-link {
        gap: 0;
    }

    .phone-link>span:last-child {
        display: none;
    }

    .round-icon {
        width: 40px;
        height: 40px;
    }

    .nav-cta {
        min-height: 48px;
        padding-inline: 16px;

        font-size: 14px;
    }

    .nav-cta .arrow svg {
        width: 20px;
        height: 20px;
    }











    .extension-section {
        margin-inline: 30px;
        padding-inline: 34px;
    }

    .carrier-extension__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .resource-extension__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .growth-roadmap__steps {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
    }

    .roadmap-connector {
        display: none;
    }

    .roadmap-step {
        min-height: 270px;
    }

    .founding-offer {
        grid-template-columns: 290px 1fr;
        gap: 24px;
        padding-inline: 28px;
    }

    .founding-offer__benefits {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        row-gap: 28px;
    }

    .founding-benefit:nth-child(4) {
        border-left: 0;
    }

    .next-steps__process {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
    }

    .next-steps__connector {
        display: none;
    }

    .next-step-card {
        min-height: 410px;
        padding-inline: 24px;
    }
}

@media screen and (max-width: 1100px) {

    /* Normal full-width sticky navigation */
    .site-header,
    .site-header.is-sticky {
        position: sticky;
        top: 0;
        left: auto;
        right: auto;
        z-index: 1000;

        width: 100%;
        padding: 0;

        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);

        border-bottom: 1px solid rgba(9, 32, 90, 0.08);
        box-shadow: 0 4px 14px rgba(17, 37, 77, 0.08);
    }

    .desktop-nav,
    .nav-actions {
        display: none;
    }

    .menu-button {
        display: block;
        flex: 0 0 auto;
    }

    .nav-shell,
    .site-header.is-sticky .nav-shell {
        position: relative;

        width: 100%;
        max-width: 100%;
        min-height: 72px;
        margin: 0;
        padding: 10px 24px;

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

        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .mobile-nav {
        display: block;

        position: absolute;
        top: 100%;
        left: 0;
        right: 0;

        width: 100%;
        max-width: none;
        box-sizing: border-box;

        z-index: 100;

        padding: 18px 24px 22px;

        border: 0;
        border-top: 1px solid rgba(9, 32, 90, 0.07);
        border-radius: 0;

        background: rgba(255, 255, 255, 0.99);

        box-shadow:
            0 16px 32px rgba(17, 37, 77, 0.12);

        opacity: 0;
        visibility: hidden;
        pointer-events: none;

        transform: translateY(-8px);

        transition:
            opacity var(--motion-fast) ease,
            visibility var(--motion-fast) ease,
            transform var(--motion-fast) ease;
    }

    .mobile-nav.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .roadmap-step {
        padding-left: 14px;
        padding-right: 14px;
    }

    .roadmap-step__description {
        max-width: 100%;
    }

    .founding-offer__benefits {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 28px 18px;
    }


    .founding-benefit:nth-child(1) {
        grid-column: 1 / span 2;
    }

    .founding-benefit:nth-child(2) {
        grid-column: 3 / span 2;
    }

    .founding-benefit:nth-child(3) {
        grid-column: 5 / span 2;
    }

    .founding-benefit:nth-child(4) {
        grid-column: 2 / span 2;
    }

    .founding-benefit:nth-child(5) {
        grid-column: 4 / span 2;
    }

}

@media screen and (max-width: 991px) {

    #launch-today,
    #future-evolution,
    #one-year-later,
    #medicare-resources,
    #growth-roadmap,
    #next-steps {
        scroll-margin-top: 90px;
    }

    .nav-shell,
    .site-header.is-sticky .nav-shell {
        min-height: 68px;
        padding: 10px 18px;
    }

    .brand img {
        width: 165px;
    }

    .desktop-nav,
    .nav-actions {
        display: none;
    }

    .menu-button {
        display: block;
        flex: 0 0 auto;
    }





























    .vision-intro {
        min-height: auto;
        padding: 56px 24px 42px;
    }

    .vision-intro__heading {
        max-width: 760px;
        font-size: clamp(46px, 7vw, 64px);
    }

    .vision-intro__copy {
        max-width: 720px;
    }

    .vision-intro__info-card {
        grid-template-columns: repeat(2, 1fr);
        padding: 18px 20px;
    }

    .vision-intro__info-item {
        padding: 18px 22px;
    }

    .vision-intro__info-item:first-child {
        padding-left: 22px;
    }

    .vision-intro__info-item:nth-child(2) {
        border-right: 0;
    }

    .vision-intro__info-item:nth-child(n + 3) {
        border-top: 1px solid var(--vision-border);
    }


    .future-transition {
        min-height: auto;
        padding: 76px 24px 62px;
    }

    .future-transition__heading {
        font-size: clamp(44px, 7vw, 62px);
    }

    .future-transition__path {
        width: min(100%, 680px);
    }

    .extension-section {
        margin: 22px;
        padding: 58px 28px 48px;
        border-radius: 24px;
    }

    .extension-section__heading {
        font-size: clamp(42px, 6.8vw, 58px);
    }

    .carrier-extension__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .resource-extension__filters {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));

        gap: 14px 18px;

        align-items: stretch;
    }

    .resource-extension__filter {
        width: 100%;
        min-width: 0;
        min-height: 58px;
        gap: 10px;

        display: flex;
        align-items: center;
        justify-content: center;

        text-align: center;
    }

    .resource-extension__filter svg {
        flex: 0 0 auto;
    }

    .resource-extension__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .growth-roadmap,
    .growth-roadmap__heading {
        font-size: clamp(48px, 8vw, 68px);
    }

    .growth-roadmap__steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .growth-roadmap__message {
        padding-inline: 24px;
    }

    .founding-offer {
        margin-top: 24px;
        padding: 82px 26px 34px;
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .founding-offer__intro {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .founding-offer__description {
        max-width: 620px;
    }

    .founding-offer__benefits {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .founding-offer__button {
        min-width: 0;
        width: min(100%, 520px);
    }

    .next-steps {
        padding: 72px 26px 56px;
    }

    .next-steps__heading {
        font-size: clamp(48px, 8vw, 66px);
    }

    .next-steps__process {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 700px;
        margin-inline: auto;
        margin-top: 34px;
    }

    .next-step-card {
        min-height: auto;
    }

    .next-step-card__visual {
        height: 210px;
    }
}

@media screen and (max-width: 769px) {

    .nav-shell,
    .site-header.is-sticky .nav-shell {
        min-height: 62px;
        padding: 8px 14px;
        border-radius: 0;
    }

    .mobile-nav {
        padding-inline: 14px;
    }

    .brand img {
        width: 145px;
    }

    .mobile-nav__actions .button {
        font-size: 13px;
    }

    .mobile-nav__actions .button span {
        font-size: 13px;
    }





    .mobile-nav__advisor>svg {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
    }

    .mobile-nav__cta .arrow svg {
        width: 18px;
        height: 18px;
    }


    .vision-intro {
        padding: 46px 18px 36px;
    }

    .vision-intro__shape--top-right {
        width: 230px;
        height: 230px;
        right: -110px;
    }

    .vision-intro__shape--bottom-left {
        width: 390px;
        height: 340px;
        left: -180px;
    }

    .vision-intro__dots {
        opacity: 0.45;
    }

    .vision-intro__dots--left {
        top: 2%;
        left: 32px;
    }

    .future-transition__eyebrow.vision-intro__pill {
        margin-bottom: 18px;
    }

    .vision-intro__heading {
        font-size: clamp(38px, 9vw, 52px);
        letter-spacing: -0.04em;
    }

    .vision-intro__copy {
        margin-top: 18px;
        padding-left: 56px;
        padding-right: 56px;
    }

    .vision-intro__description,
    .vision-intro__disclaimer {
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
    }

    .vision-intro__description {
        font-size: 17px;
    }

    .vision-intro__info-card {
        grid-template-columns: 1fr;
        padding: 10px 18px;
    }

    .vision-intro__info-item,
    .vision-intro__info-item:first-child {
        min-height: 72px;
        padding: 14px 4px;
        border-right: 0;
        border-top: 1px solid var(--vision-border);
    }

    .vision-intro__info-item:first-child {
        border-top: 0;
    }

    .vision-intro__icon-wrap {
        width: 50px;
        height: 50px;
        flex-basis: 50px;
    }

    .vision-intro__signature-name {
        font-size: 34px;
    }

    .vision-intro__signature-row {
        gap: 14px;
    }

    .vision-intro__signature-line {
        width: 48px;
    }

    .vision-intro__button {
        width: min(100%, 360px);
        min-width: 0;
    }


    .future-transition {
        padding: 64px 18px 52px;
    }

    .future-transition__shape--top-right {
        width: 300px;
        height: 300px;
    }

    .future-transition__eyebrow {
        min-height: 44px;
        padding-inline: 20px;
    }

    .future-transition__eyebrow span {
        font-size: 13px;
    }

    .future-transition__heading {
        margin-top: 26px;
        font-size: clamp(38px, 9vw, 50px);
    }

    .future-transition__description {
        font-size: 17px;
    }

    .future-transition__path {
        margin-top: 42px;
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .future-transition__step {
        min-width: 0;
        padding: 12px 0;
    }

    .future-transition__connector {
        width: 2px;
        height: 28px;
        margin: 0 auto;
        background-image:
            radial-gradient(circle,
                rgba(94, 123, 238, 0.48) 2px,
                transparent 2.5px);
        background-size: 2px 10px;
        background-repeat: repeat-y;
    }

    .future-transition__footer {
        margin-top: 40px;
        gap: 12px;
    }

    .future-transition__line {
        width: 32px;
    }

    .extension-section {
        margin: 16px 12px;
        padding: 48px 18px 42px;
        border-radius: 20px;
    }

    .extension-section__eyebrow {
        min-height: 40px;
        padding-inline: 16px;
    }

    .extension-section__heading {
        font-size: clamp(36px, 9vw, 48px);
    }

    .extension-section__description {
        font-size: 16px;
    }

    .carrier-extension__grid {
        margin-top: 34px;
        padding: 10px 8px;

        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));

        column-gap: 18px;
        row-gap: 38px;

        align-items: center;
    }

    .carrier-extension__card {
        width: 100%;
        min-width: 0;
        min-height: 90px;

        padding: 6px;

        display: flex;
        align-items: center;
        justify-content: center;

        border: 0;
        border-radius: 0;

        background: transparent;
        box-shadow: none;
    }

    .carrier-extension__card img {
        display: block;

        width: 100%;
        max-width: 115px;
        max-height: 55px;

        object-fit: contain;
    }

    .carrier-extension__card:hover {
        transform: none;
        border-color: transparent;
        box-shadow: none;
    }

    .carrier-extension__card:hover img {
        transform: none;
    }

    .resource-extension__filters {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 14px;
        margin-top: 28px;
        padding-bottom: 14px;
    }

    .resource-extension__filter {
        flex: 1 1 180px;
        width: auto;
        min-width: 150px;
        max-width: 100%;
        min-height: 42px;
        padding-inline: 14px;
        font-size: 14px;
    }

    .resource-extension__grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .resource-card__image-link {
        height: 240px;
    }

    .resource-card__body {
        min-height: auto;
    }

    .extension-section__button {
        min-height: 54px;
        margin-top: 30px;
        padding-inline: 22px;
    }

    .growth-roadmap,
    .growth-roadmap__heading {
        font-size: clamp(40px, 9vw, 54px);
    }

    .growth-roadmap__description {
        font-size: 17px;
    }

    .growth-roadmap__steps {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .roadmap-step {
        min-height: auto;
        padding: 24px 18px;
    }

    .roadmap-step__description {
        max-width: 340px;
    }

    .growth-roadmap__message {
        min-height: auto;
        padding: 18px;
        gap: 16px;
    }

    .growth-roadmap__message-icon {
        width: 56px;
        height: 56px;
        flex-basis: 56px;
    }

    .growth-roadmap__message p {
        font-size: 16px;
    }

    .founding-offer {
        padding: 78px 18px 28px;
        border-radius: 18px;
    }

    .founding-offer__logo {
        max-width: 165px;
        height: 28px;
    }

    .founding-offer__heading {
        font-size: 34px;
    }

    .founding-offer__divider {
        width: min(100%, 250px);
    }


    .founding-offer__benefits {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 18px;

        width: 100%;
    }


    .founding-benefit,
    .founding-benefit:nth-child(odd),
    .founding-benefit:nth-child(even) {
        width: 100%;

        padding: 22px 14px 20px;

        border: 1px solid rgba(201, 145, 255, 0.24);
        border-radius: 16px;
    }


    .founding-benefit:nth-child(1),
    .founding-benefit:nth-child(2),
    .founding-benefit:nth-child(3),
    .founding-benefit:nth-child(4),
    .founding-benefit:nth-child(5) {
        grid-column: auto;
    }


    .founding-benefit:nth-child(5) {
        grid-column: 1 / -1;

        width: min(100%, 260px);

        justify-self: center;
    }

    .founding-benefit__icon {
        width: 54px;
        height: 54px;
    }

    .founding-benefit__icon svg {
        width: 27px;
        height: 27px;
    }

    .founding-benefit strong {
        margin-top: 14px;
        font-size: 13px;
    }

    .founding-benefit span {
        margin-top: 7px;
        font-size: 12px;
        line-height: 1.4;
    }

    .founding-offer__button {
        width: min(calc(100% - 20px), 500px);
        min-height: 58px;
        padding-inline: 24px;
    }

    .next-steps {
        padding: 60px 18px 48px;
    }

    .next-steps__header-icon {
        width: 68px;
        height: 68px;
    }

    .next-steps__heading {
        font-size: clamp(40px, 9vw, 54px);
    }

    .next-steps__description {
        font-size: 17px;
    }

    .next-step-card {
        padding: 24px 20px 30px;
    }

    .next-step-card__visual {
        height: 190px;
    }

    .next-steps__reassurance {
        min-height: auto;
        padding: 18px;
        gap: 16px;
    }

    .next-steps__reassurance-icon {
        width: 56px;
        height: 56px;
        flex-basis: 56px;
    }

    .next-steps__reassurance p {
        font-size: 16px;
    }

    .next-steps__cta h3 {
        font-size: 27px;
    }

    .next-steps__button {
        min-height: 58px;
    }
}

@media screen and (max-width: 489px) {

    .nav-shell,
    .site-header.is-sticky .nav-shell {
        padding-inline: 12px;
    }

    .mobile-nav {
        padding-inline: 12px;
    }

    .brand img {
        width: 132px;
    }

    .menu-button {
        width: 42px;
        height: 42px;
    }

    .mobile-nav__actions {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .mobile-nav__actions .button {
        width: 100%;
    }



















    .vision-intro {
        padding-inline: 14px;
    }

    .vision-intro__heading {
        font-size: clamp(35px, 10vw, 44px);
    }

    .vision-intro__description {
        font-size: 16px;
    }

    .vision-intro__disclaimer {
        font-size: 13px;
    }

    .vision-intro__info-card {
        border-radius: 15px;
    }

    .vision-intro__info-card {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 0;

        padding: 14px;
    }

    .vision-intro__info-item,
    .vision-intro__info-item:first-child {
        min-height: 118px;

        padding: 16px 14px;

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

        gap: 12px;

        border: 0;
    }

    .vision-intro__info-content {
        display: flex;
        align-items: center;
        text-align: center;

    }

    .vision-intro__info-item:nth-child(odd) {
        border-right: 1px solid var(--vision-border);
    }

    .vision-intro__info-item:nth-child(n + 3) {
        border-top: 1px solid var(--vision-border);
    }

    .vision-intro__icon-wrap {
        width: 46px;
        height: 46px;
        flex: 0 0 46px;
    }

    .vision-intro__icon-wrap svg {
        width: 24px;
        height: 24px;
    }

    .vision-intro__info-content {
        width: 100%;
    }

    .vision-intro__info-label {
        font-size: 9px;
    }

    .vision-intro__info-value {
        font-size: 15px;
        line-height: 1.3;
    }

    .vision-intro__signature-row {
        gap: 9px;
    }

    .vision-intro__signature-line {
        width: 34px;
    }

    .vision-intro__signature-name {
        font-size: 31px;
    }

    .vision-intro__button {
        padding-inline: 18px;
    }

    .vision-intro__button span {
        font-size: 15px;
    }


    .future-transition {
        padding-top: 32px;
    }

    .future-transition__eyebrow {
        padding-inline: 16px;
        margin-top: 18px;
    }

    .future-transition__eyebrow span {
        font-size: 11px;
        letter-spacing: 0.1em;
    }

    .future-transition__heading {
        font-size: clamp(35px, 10vw, 44px);
    }

    .future-transition__description {
        font-size: 16px;
    }

    .future-transition__footer p {
        font-size: 14px;
    }

    .extension-section {
        margin-inline: 8px;
        padding-inline: 14px;
    }

    .extension-section__eyebrow span {
        font-size: 11px;
    }

    .extension-section__heading {
        font-size: clamp(34px, 10vw, 42px);
    }

    .carrier-extension__grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));

        align-items: center;
        justify-items: center;

        gap: 28px 14px;

        margin-top: 28px;
        padding: 10px 6px;
    }

    .carrier-extension__card {
        flex: 0 1 auto;

        width: auto;
        min-width: 0;
        min-height: 0;

        padding: 6px;

        display: flex;
        align-items: center;
        justify-content: center;

        border: 0;
        background: transparent;
        box-shadow: none;
    }

    .carrier-extension__card img {
        display: block;

        width: auto;
        height: auto;

        max-width: 90px;
        max-height: 38px;

        object-fit: contain;
    }


    .resource-extension__filters {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .resource-extension__filter {
        width: 100%;
        flex: none;

        display: flex;
        align-items: center;
        justify-content: space-between;

        text-align: left;
    }


    .resource-extension__filter-content {
        display: flex;
        align-items: center;
        gap: 12px;
    }


    .resource-extension__chevron {
        width: 20px;
        height: 20px;

        display: flex;
        align-items: center;
        justify-content: center;

        flex-shrink: 0;

        transition: transform 0.25s ease;
    }

    .resource-extension__chevron svg {
        width: 18px;
        height: 18px;

        fill: none;
        stroke: currentColor;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }


    .resource-extension__filter.is-active .resource-extension__chevron {
        transform: rotate(180deg);
    }


    .resource-extension__grid {
        width: 100%;
        margin: 6px 0 10px;

        grid-template-columns: 1fr;
        gap: 18px;
    }

    .resource-extension__grid .resource-card:nth-child(n + 3) {
        display: none;
    }

    .resource-card__image-link {
        height: 205px;
    }

    .resource-card__body {
        padding: 19px 18px 22px;
    }

    .resource-card__title {
        font-size: 18px;
    }

    .extension-section__button {
        width: 100%;
        padding-inline: 16px;
        gap: 12px;
    }

    .extension-section__button span {
        font-size: 15px;
    }

    .growth-roadmap {
        padding-inline: 14px;
    }

    .growth-roadmap__heading {
        font-size: clamp(36px, 10vw, 45px);
    }

    .growth-roadmap__description {
        font-size: 16px;
    }

    .roadmap-step__icon {
        width: 74px;
        height: 74px;
    }

    .roadmap-step__icon svg {
        width: 38px;
        height: 38px;
    }

    .growth-roadmap__message {
        align-items: flex-start;
    }

    .growth-roadmap__message-icon {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
    }

    .founding-offer {
        padding-inline: 14px;
    }

    .founding-offer__heading {
        font-size: 31px;
    }


    .founding-offer__benefits {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));

        column-gap: 12px;
        row-gap: 16px;

        width: 100%;
    }


    .founding-benefit:nth-child(1),
    .founding-benefit:nth-child(2),
    .founding-benefit:nth-child(3),
    .founding-benefit:nth-child(4),
    .founding-benefit:nth-child(5) {
        grid-column: auto;
    }


    .founding-benefit:nth-child(-n + 4) {
        width: 100%;
    }


    .founding-benefit:nth-child(5) {
        grid-column: 1 / -1;

        width: 70%;

        justify-self: center;
    }

    .founding-offer__button {
        width: calc(100% - 12px);
        min-height: 56px;
        padding-inline: 18px;
        gap: 12px;
    }

    .founding-offer__button span {
        font-size: 14px;
    }

    .founding-offer__note {
        display: flex;
        align-items: flex-start;
        justify-content: center;

        gap: 8px;

        text-align: center;
    }

    .next-steps {
        padding-inline: 14px;
    }

    .next-steps__heading {
        font-size: clamp(36px, 10vw, 45px);
    }

    .next-steps__description {
        font-size: 16px;
    }

    .next-step-card {
        padding: 22px 16px 28px;
    }

    .next-step-card__number {
        width: 40px;
        height: 40px;
        top: 16px;
        left: 16px;
        font-size: 17px;
    }

    .next-step-card__visual {
        height: 170px;
    }

    .next-step-card__content h3 {
        font-size: 19px;
    }

    .next-step-card__content p {
        font-size: 14px;
    }

    .next-steps__reassurance {
        align-items: flex-start;
    }

    .next-steps__reassurance-icon {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
    }

    .next-steps__cta-divider {
        width: min(100%, 220px);
    }

    .next-steps__cta h3 {
        font-size: 24px;
    }

    .next-steps__button {
        width: 100%;
        min-height: 56px;
        padding-inline: 16px;
        grid-template-columns: 22px 1fr 22px;
        gap: 10px;
    }

    .next-steps__button span {
        font-size: 14px;
    }

    .next-steps__button svg {
        width: 21px;
        height: 21px;
    }






}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media screen and (max-width: 389px) {




    .resource-extension__grid {
        width: 100%;
        margin: 6px 0 10px;

        grid-template-columns: 1fr;
        gap: 18px;
    }

    .resource-extension__grid .resource-card:nth-child(n + 3) {
        display: none;
    }

}

/* =========================================================
   DONORDOC-01 HERO — RESPONSIVE INTEGRATION
========================================================= */

@media screen and (max-width: 1199px) {
    main .section-health .hero-grid {
        gap: 34px;
    }

    main .section-health .hero-heading {
        font-size: 46px;
    }

    main .section-health .btn {
        padding: 14px 24px;
        font-size: 16px;
    }
}

@media screen and (max-width: 1023px) {
    main .section-health {
        padding: 64px 0 54px;
    }

    main .section-health .container {
        padding-inline: 20px;
    }

    main .section-health .hero-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    main .section-health .hero-content {
        max-width: 720px;
    }

    main .section-health .hero-visual {
        position: absolute;
        inset: 0;
        z-index: 0;
        min-height: 0;
        pointer-events: none;
        justify-content: flex-end;
        align-items: flex-end;
    }

    main .section-health .hero-dots,
    main .section-health .hero-float-card {
        display: none;
    }

    main .section-health .hero-image-wrap {
        position: absolute;
        top: 8%;
        right: -12%;
        width: 68%;
        height: 72%;
        max-width: none;
        aspect-ratio: auto;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        opacity: 0.8.5;

        -webkit-mask-image:
            linear-gradient(to left, rgba(0, 0, 0, 0.82) 0%, transparent 92%),
            linear-gradient(to bottom, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.45) 86%, transparent 100%);
        -webkit-mask-composite: source-in;

        mask-image:
            linear-gradient(to left, rgba(0, 0, 0, 0.82) 0%, transparent 92%),
            linear-gradient(to bottom, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.45) 86%, transparent 100%);
        mask-composite: intersect;
    }

    main .section-health .hero-image {
        object-position: center top;
    }

    main .section-health .hero-heading {
        max-width: 700px;
        font-size: 42px;
    }

    main .section-health .hero-description {
        max-width: 640px;
        font-size: 16px;
    }

    main .section-health .hero-benefits {
        max-width: 620px;
    }

    main .section-health .hero-benefits li {
        font-size: 14px;
    }

    main .section-health .hero-cta-group {
        flex-wrap: nowrap;
        align-items: stretch;
        gap: 12px;
        width: min(100%, 600px);
    }

    main .section-health .hero-cta-group .btn {
        flex: 1;
        min-width: 0;
        padding: 14px 12px;
        font-size: 14px;
        white-space: nowrap;
    }
}

@media screen and (max-width: 767px) {
    main .section-health {
        padding: 50px 0 44px;
    }

    main .section-health .container {
        padding-inline: 18px;
    }

    main .section-health .hero-heading {
        font-size: 38px;
        line-height: 1.08;
    }

    main .section-health .hero-badge {
        font-size: 13px;
    }

    main .section-health .hero-image-wrap {
        right: -22%;
        width: 82%;
        opacity: 0.24;
    }
}

@media screen and (max-width: 489px) {
    main .section-health {
        padding: 42px 0 38px;
    }

    main .section-health .container {
        padding-inline: 14px;
    }

    main .section-health .hero-badge {
        padding: 7px 12px;
        margin-bottom: 20px;
        font-size: 12px;
        white-space: nowrap;
    }

    main .section-health .hero-badge svg {
        width: 20px;
        height: 20px;
    }

    main .section-health .hero-heading {
        margin-bottom: 16px;
        font-size: 34px;
        line-height: 1.07;
        letter-spacing: -0.025em;
    }

    main .section-health .hero-description {
        margin-bottom: 22px;
        font-size: 15px;
        line-height: 1.5;
    }

    main .section-health .hero-benefits {
        margin-bottom: 26px;
        gap: 12px;
    }

    main .section-health .hero-benefits li {
        gap: 10px;
        font-size: 14px;
        line-height: 1.35;
    }

    main .section-health .hero-benefit-icon {
        font-size: 21px;
    }

    main .section-health .hero-cta-group {
        gap: 10px;
    }

    main .section-health .hero-cta-group .btn {
        padding: 12px 8px;
        font-size: 12px;
        line-height: 1.2;
    }

    main .section-health .hero-cta-group .btn svg {
        width: 17px;
        height: 17px;
    }

    main .section-health .hero-trust {
        font-size: 12px;
    }

    main .section-health .hero-image-wrap {
        right: -16%;
        width: 100%;
        opacity: 0.8;
    }
}

@media screen and (max-width: 389px) {
    main .section-health .hero-heading {
        font-size: 29.5px;
    }

    main .section-health .hero-cta-group .btn {
        font-size: 11px;
    }
}