:root {
    --font-family-primary: 'Noto Sans SC', sans-serif;
    --color-white: #ffffff;
    --color-black: #000000;
    --color-accent: #cfde00;

    --font-size-hero-title: 55px;
    --font-size-title: 33px;
    --font-size-body: 13.55px;
    --font-size-small: 14px;

    --line-height-tight: 1.2;
    --line-height-body: 1.22;

    --radius-pill: 999px;
    --page-max-width: 1920px;
    --section-padding: 56px;
    --section-gap: 9px;
    --panel-padding: 28px;
    --border-dark: 1px solid #1f1f1f;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    background: var(--color-white);
    color: var(--color-black);
    font-family: var(--font-family-primary);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body {
    font-size: var(--font-size-body);
    line-height: var(--line-height-body);
}

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

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

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

.page {
    width: 100%;
}

.nuvi-btn,
.process-btn,
.choice-btn,
.profile-btn,
.benefits-btn,
.inspiration .btn,
.contact .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 28px;
    border-radius: var(--radius-pill);
    background: transparent !important;
    color: var(--color-black);
    border: 0;
    font-size: var(--font-size-body);
    line-height: 1;
    white-space: nowrap;
}

.nuvi-btn,
.profile-btn,
.process-btn .btn {
    background: var(--color-accent) !important;
}

.benefits-btn,
.inspiration .btn,
.contact .btn {
    background: var(--color-white);
    border: var(--border-dark);
}

.page-section,
.intro-section,
.process-section,
.teams-section,
.choice-section,
.profile-section,
.benefits-section,
.structure-section,
.prices-section,
.medical-section,
.inspiration,
.contact,
.footer {
    width: 100%;
}

/* Hero */
.hero-section {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    background: var(--color-white);
    overflow: hidden;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 86px 358px;
    background: var(--color-white);
    position: relative;
    z-index: 2;
}

.hero-copy-wrap {
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding-top: 62px;
}

.hero-logo {
    height: 54.5px;
    width: auto;
}

.hero-copy {
    max-width: 640px;
}

.hero-title {
    font-size: var(--font-size-hero-title);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin-left: -6px;
}

.hero-subtitle {
    max-width: 380px;
    margin-top: 28px;
    font-size: var(--font-size-body);
    line-height: 1.3;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.hero-cards {
    margin-top: 100px;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--section-gap);
    padding-right: var(--section-gap);
    z-index: 3;
}

.hero-card {
    overflow: hidden;
    aspect-ratio: 1 / 1.32;
}

.hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-right {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.hero-right-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CTOA */
.page-section.ctoa-section {
    padding: 72px 24px 26px;
    background: var(--color-white);
}

.section-shell {
    /* max-width: 1720px; */
    max-width: 55%;
    margin: 0 auto;
}

.ctoa-grid {
    display: grid;
    grid-template-columns: 150px 1fr;
    align-items: start;
}

.ctoa-star {
    width: 85px;
    margin: 0 auto;
}

.section-title,
.intro-title,
.process-title,
.teams-title,
.choice-title,
.profile-title,
.benefits-title,
.structure-title,
.medical-title,
.inspiration h1,
.contact h2 {
    font-size: var(--font-size-title);
    font-weight: 700;
    line-height: var(--line-height-tight);
    text-transform: uppercase;
    color: var(--color-black);
}

.section-copy,
.intro-text,
.process-list li,
.teams-intro,
.teams-list li,
.choice-lead,
.choice-text,
.profile-lead,
.profile-bullets li,
.profile-text,
.benefits-text,
.structure-intro,
.structure-item p,
.medical-point p,
.inspiration .sub,
.contact .desc,
.contact .info,
.footer-text p {
    font-size: var(--font-size-body);
    line-height: var(--line-height-body);
    color: var(--color-black);
}

.ctoa-copy {
    max-width: 340px;
    margin-top: 18px;
}

.ctoa-copy p + p {
    margin-top: 18px;
}

.ctoa-content {
    padding-top: 8px;
}

.ctoa-pills {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-top: 85px;
}

.ctoa-pill {
    min-height: 50px !important;
    padding: 0 10px !important;
}

.section-pill {
    min-height: 58px;
    padding: 0 20px;
    border: var(--border-dark);
    border-radius: var(--radius-pill);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--color-white);
    font-size: var(--font-size-body);
}

/* Intro */
.intro-grid {
    display: grid;
    grid-template-columns: 28.8% 40.3% 30.9%;
    align-items: stretch;
}

.intro-media {
    position: relative;
    overflow: hidden;
}

.intro-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-content {
    display: flex;
    align-items: center;
    /* justify-content: center; */
    padding-left: 75px;
    padding-top: 40px;
    background: #b6da3d;
}

.intro-copy {
    max-width: 660px;
}

.intro-title {
    margin-bottom: 22px;
}

.intro-text {
    margin-bottom: 18px;
    max-width: 330px;
}

.intro-text-strong strong {
    font-weight: 700;
}

.intro-star {
    display: none;
}

/* Process */
.process-bg {
    padding: 65px 85px;
    background: url('/assets/images/process-background.webp') no-repeat center center / cover;
}

.process-card {
    align-items: end;
    width: min(calc(100% - 80px), 1365px);
    margin: 0 auto;
    padding: 45px;
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 10px;
    background: var(--color-white);
}

.process-right {
    display: grid;
    grid-template-rows: auto auto;
    gap: 16px;
}

.process-copy {
    position: relative;
    padding: 10px 6px 6px;
    width: fit-content;
    margin: 0 auto;
}

.process-list {
    list-style: none;
    margin: 0 0 30px;
    display: grid;
    gap: 8px;
}

.process-list li,
.profile-bullets li {
    position: relative;
    padding-left: 24px;
}

.process-list li::before,
.profile-bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.25em;
    width: 12px;
    height: 12px;
    background: url('/assets/images/star-icon-tiny.webp') no-repeat center / contain;
}

.process-left {
    height: 100%;

}

.process-image-main,
.process-image-small {
    overflow: hidden;
}

.process-image-main {
    /* aspect-ratio: 2904 / 3660;
    width: 200px; */
    height: 100%;
}

.process-image-main img {
    height: 100%;
    width: auto;
    object-fit: cover;
}

.process-image-small {
    aspect-ratio: 1284 / 1624;
}

.process-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.process-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.process-star-decor {
    display: none;
}

.process-btn {
    background: var(--color-accent) !important;
    margin-bottom: 10px;
}

.process-title {
    margin-bottom: 30px;
}

/* Teams */
.teams-section,
.benefits-section,
.medical-section,
.inspiration {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}

.teams-media img,
.benefits-media img,
.medical-media img,
.inspiration-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.teams-content,
.benefits-content,
.inspiration-left {
    display: flex;
    align-items: center;
}

.teams-content {
    background: url('/assets/images/right-left-gradient.webp') no-repeat center center / cover;
}

.teams-copy,
.benefits-copy,
.medical-copy,
.inspiration .content {
    width: 100%;
    max-width: 760px;
    padding: 72px 68px;
}

.teams-intro {
    margin: 34px 0 18px;
    max-width: 380px;
}

.teams-list {
    list-style: none;
    display: grid;
    gap: 4px;
}

.teams-list li {
    position: relative;
    padding-left: 22px;
    max-width: 450px;
}

.teams-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.1em;
    width: 14px;
    height: 14px;
    background: url('/assets/images/star-icon-tiny-dark.webp') no-repeat center / contain;
}

/* Choice */
.choice-section {
    padding: 10px 10px 34px;
    background: var(--color-white);
}

.choice-grid {
    max-width: 1728px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    align-items: stretch;
    padding: 42px 5px 15px;
}

.choice-col {
    position: relative;
    /* aspect-ratio: 462 / 857; */
    overflow: visible;
    /* background: var(--color-white); */
}

.choice-col-image img:first-child {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.choice-col-text {
    border: var(--border-dark);
}

.choice-copy {
    height: 100%;
    padding: 56px 28px 42px;
    display: flex;
    flex-direction: column;
}

.choice-title {
    margin-bottom: 24px;
}

.choice-lead {
    margin-bottom: 20px;
    line-height: 15px;
}

.choice-text {
    margin-bottom: 18px;
}

.choice-btn {
    margin-top: auto;
    background-color: #b6da3d !important;
}

.choice-star {
    position: absolute;
    width: 85px;
    left: -2.1%;
    bottom: -7.4%;
    transform: translateX(50%);
    z-index: 300;
}

/* Profile */
.profile-section {
    padding: 120px 52px;
    background: url('/assets/images/profile-background.webp') no-repeat center center / cover;
}

.profile-top-wrap {
    position: relative;
    padding: 50px 18px;
    background: var(--color-white);
}

.profile-top {
    display: grid;
    grid-template-columns: 62% 34%;
    gap: 8px;
    align-items: stretch;
}

.top-layer {
    display: grid;
    grid-template-columns: 55% 44%;
    gap: 8px;
    align-items: stretch;
}

.profile-mobile-star {
    display: none;
}

.profile-copy,
.profile-left-image,
.profile-steps {
    background: var(--color-white);
}

.profile-copy {
    padding: 20px 36px 44px;
}

.profile-title {
    margin-bottom: 26px;
}

.profile-lead {
    margin-bottom: 14px;
}

.profile-bullets {
    list-style: none;
    margin-bottom: 24px;
}

.profile-text {
    margin-bottom: 20px;
}

.profile-text:last-of-type {
    margin-bottom: 28px;
}

.profile-left-image {
    overflow: hidden;
}

.profile-left-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-steps-bg {
    min-height: 100%;
    padding: 56px 18px 12px;
    background: url('/assets/images/profile-block-right-desktop.webp') no-repeat center center / cover;
}

.profile-step {
    min-height: 70px;
    padding: 3px;
    margin-bottom: 16px;
    display: grid;
    grid-template-columns: 78px 1fr;
    /* gap: 18px; */
    align-items: center;
    border: var(--border-dark);
    border-width: .8px;
    border-radius: var(--radius-pill);
    background: var(--color-white);
}

.profile-step-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #b6da3d;
    border: var(--border-dark);
    border-width: .8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 29px;
    font-weight: 100 !important;
}

.profile-step-content {
    max-width: 250px;
}

.profile-step-content h3 {
    font-size: 24px;
    line-height: 1.04;
    font-weight: 700;
    text-transform: none;
    margin-bottom: 4px;
}

.profile-step-content p {
    font-size: var(--font-size-body);
    line-height: var(--line-height-body);
}

/* Benefits */
.benefits-section {
    padding-top: 16px;
}
.benefits-content {
    background: url('/assets/images/right-left-gradient.webp') no-repeat center center / cover;
}

.benefits-text {
    margin-bottom: 20px;
    max-width: 370px;
}

.benefits-text:last-of-type {
    margin-bottom: 34px;
}

.benefits-title {
    padding-bottom: 18px;
}

/* Structure */
.structure-section {
    padding: 125px 0px 151px;
    background: var(--color-white);
}

.structure-wrap {
    max-width: 44%;
    margin: 0 auto;
}

.structure-header {
    margin-bottom: 35px;
}

.structure-title {
    margin-bottom: 16px;
}

.structure-list {
    display: grid;
    gap: 18px;
    max-width: 480px;
}

.structure-item {
    display: grid;
    grid-template-columns: 14px 1fr;
    gap: 10px;
    align-items: start;
}

.structure-star,
.medical-star {
    width: 12px;
    /* margin-top: 6px; */
}

/* Prices */
.prices-meal-statement {
    width: fit-content;
    margin: 0 auto;
    font-size: 15px;
    font-style: italic;
    padding: 10px 0;
    /* color: gray; */
    font-weight: 600;
}
.prices-section {
    padding: 15px;
}
.prices-desktop {
    display: block;
}

.prices-mobile {
    display: none;
}

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

.prices-stack {
    display: grid;
    gap: 8px;
}

.price-card {
    position: relative;
}

.price-card img {
    width: 100%;
    height: auto;
}

.price-pill {
    position: absolute;
    left: 50%;
    bottom: 8%;
    transform: translateX(-50%);
    width: 72%;
    padding: 18px 24px;
    border-radius: var(--radius-pill);
    background: var(--color-white);
    text-align: center;
}

.price-text {
    font-size: var(--font-size-body);
    line-height: 1.2;
}

.price-text span {
    font-weight: 700;
}

/* Medical */
.medical-copy {
    padding-left: 90px;
}
.medical-content {
    display: flex;
    align-items: center;
    background: var(--color-white);
}

.medical-title {
    padding-bottom: 34px;
}

.medical-points {
    display: grid;
    gap: 18px;
    max-width: 60%;
}

.medical-point {
    display: grid;
    grid-template-columns: 14px 1fr;
    gap: 12px;
    align-items: start;
}

/* Inspiration */
.inspiration-left {
    background: url('/assets/images/left-right-gradient.webp') no-repeat center center / cover;
}

.inspiration-left .content {
    width: fit-content;
    margin-left: auto;
    padding-right: 130px;
    padding-top: 40px;
}

.inspiration h1 {
    margin-bottom: 20px;
}

.inspiration .highlight {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.25);
}

.inspiration .sub {
    margin-bottom: 20px;
}

.inspiration .sub:last-of-type {
    margin-bottom: 35px !important;
}

/* Contact */
.contact {
    display: flex;
    justify-content: center;
    background: #BBDE41;
}

.contact .inner {
    max-width: 760px;
    padding: 75px 24px;
    text-align: center;
}

.contact h2 {
    margin-bottom: 30px;
}

.contact .desc {
    margin-bottom: 30px;
}

.contact .info {
    margin-bottom: 40px;
}

.contact .qr img {
    width: 160px;
    height: 160px;
    margin: 0 auto 40px;
}

.contact .btn {
    background: var(--color-white) !important;
    border: none !important;
}

.refer-text {
    width: fit-content;
    padding: 20px 0;
    text-transform: capitalize !important;
}

[data-modal] {
    cursor: pointer;
    text-decoration: none;
}

[data-modal]:hover {
    opacity: 0.7;
}

/* Footer */
.footer {
    padding: 120px 60px;
    background: var(--color-black);
    color: var(--color-white);
}

.footer-text p,
.footer .links {
    color: var(--color-white);
    font-size: var(--font-size-small);
    line-height: 1.6;
}

.footer-inner {
    max-width: 1200px;
}

.footer-text {
    max-width: 500px;
}

.footer-text p {
    margin-bottom: 18px;
}

.footer .links {
    margin-top: 18px;
}

.footer-logo {
    margin-top: 50px;
}

.footer-logo img {
    width: 90px;
}

/* Special Images */
.intro-mobile-img {
    display: none;
}

.intro-desktop-img {
    display: block;
}


/* Mobile */
@media (max-width: 900px) {
    :root {
        --font-size-hero-title: 35px;
        --font-size-title: 20px;
        --font-size-body: 10px;
        --font-size-small: 7px;
    }

    /* Special Images */
    .intro-desktop-img {
        display: none;
    }

    .intro-mobile-img {
        display: block;
    }

    .nuvi-btn,
    .process-btn,
    .choice-btn,
    .profile-btn,
    .benefits-btn,
    .inspiration .btn,
    .contact .btn {
        min-height: 32px;
        padding: 0 20px;
        font-size: var(--font-size-body);
    }

    .hero-section,
    .teams-section,
    .benefits-section,
    .medical-section,
    .inspiration {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-section {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-left {
        order: 2;
        padding: 56px 28px 42px;
    }

    .hero-copy-wrap {
        gap: 28px;
        padding: 0 20px;
    }

    .hero-logo {
        width: 76px;
        height: auto;
    }

    .hero-title {
        font-size: var(--font-size-hero-title);
        line-height: 0.98;
    }

    .hero-subtitle {
        margin-top: 20px;
    }

    .hero-actions {
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 24px;
    }

    .hero-actions .nuvi-btn {
        flex: 1 1 calc(50% - 5px);
        min-width: 0;
    }

    .hero-cards {
        order: 3;
        position: static;
        width: auto;
        margin: 0;
        gap: 4px;
        padding-right: 0;
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-right {
        order: 1;
        min-height: 500px;
    }

    .hero-cards {
        order: 3;
    }

    .hero-menu-btn {
        top: 28px;
        right: 20px;
        width: 30px;
        height: 30px;
    }

    .page-section.ctoa-section {
        padding: 48px 0;
    }

    .section-shell {
        max-width: 80%;
    }

    .ctoa-grid {
        grid-template-columns: 1fr 90px;
        gap: 20px;
    }

    .ctoa-content {
        display: contents;
    }

    .ctoa-title {
        grid-column: 1;
        grid-row: 1;
    }

    .ctoa-star-wrap {
        grid-column: 2;
        grid-row: 1;
        text-align: right;
    }

    .ctoa-star {
        width: 60px;
        margin: 0 0 0 auto;
    }

    .ctoa-copy {
        grid-column: 1 / -1;
        grid-row: 2;
        margin-top: 0;
    }

    .ctoa-pills {
        grid-template-columns: repeat(2, auto);
        gap: 8px;
        margin-top: 48px;
    }

    .ctoa-pill {
        min-height: 32px !important;
        /* width: fit-content; */
        /* margin: 0 auto; */
    }

    .ctoa-pill:last-child {
        grid-column: 1 / -1;
        justify-self: center;
        padding: 0 40px !important;
    }

    .intro-grid {
        grid-template-columns: 1fr;
    }

    .intro-media-left {
        order: 1;
    }

    .intro-content {
        order: 2;
        padding: 44px 36px 48px;
    }

    .intro-media-right {
        order: 3;
        position: relative;
        padding-bottom: 36px;
        background: var(--color-white);
        overflow: visible;
    }

    .intro-media-right img:first-child {
        height: auto;
    }

    .intro-star {
        width: 100px !important;
        height: auto !important;
        display: block;
        position: absolute;
        right: 28px;
        bottom: -14px;
        z-index: 2;
    }

    .process-section {
        padding-bottom: 5px;
    }

    .process-bg {
        background: none;
        padding: 0;
    }

    .process-card {
        width: 100%;
        padding: 0;
        display: block;
    }

    .process-left {
        display: none;
    }

    .process-copy {
        padding: 34px 32px 30px;
        background: var(--color-white);
    }

    .process-star-decor {
        display: block;
        position: absolute;
        top: -18px;
        left: 50%;
        width: 72px;
        transform: translateX(-50%);
    }

    .process-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 4px;
    }

    .process-cards::before {
        content: "";
        display: block;
        aspect-ratio: 1284 / 1624;
        background: url('/assets/images/process-man.webp') no-repeat center / cover;
    }

    .teams-content,
    .benefits-content,
    .medical-content,
    .inspiration-left {
        order: 1;
    }

    .teams-media,
    .benefits-media,
    .medical-media,
    .inspiration-right {
        order: 2;
    }

    .teams-copy,
    .benefits-copy,
    .medical-copy,
    .inspiration .content {
        max-width: none;
        padding: 48px 42px;
    }

    .teams-media img,
    .benefits-media img,
    .medical-media img,
    .inspiration-right img {
        height: auto;
        object-fit: cover;
    }

    .choice-section {
        padding: 8px;
    }

    .choice-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4px;
        padding: 0;
    }

    .choice-col {
        /* aspect-ratio: 272 / 362; */
    }

    .choice-copy {
        padding: 32px 12px 24px;
        height: fit-content !important;
    }

    .choice-grid > .choice-col:nth-child(3),
    .choice-grid > .choice-col:nth-child(4) {
        aspect-ratio: 1 / 2.3;
        height: auto;
    }
    .choice-grid > .choice-col:nth-child(3) img,
    .choice-grid > .choice-col:nth-child(4) img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .choice-title {
        margin-bottom: 24px;
    }

    .choice-lead {
        margin-bottom: 20px;
    }

    .choice-text {
        margin-bottom: 18px;
    }

    .choice-star {
        display: none;
    }

    .profile-section {
        padding: 0;
        background: none;
    }

    .profile-top-wrap {
        padding: 0;
        background: none;
    }

    .profile-mobile-star {
        display: block;
        position: absolute;
        top: 20px;
        left: 58px;
        width: 84px;
        z-index: 3;
    }

    .profile-top {
        display: block;
        background: none;
        padding: 0;
    }

    .top-layer {
        display: grid;
        grid-template-columns: 54% 46%;
        gap: 0;
        background: url('/assets/images/profile-background.webp') no-repeat center top / cover;
        padding: 64px 8px;
    }

    .profile-copy {
        padding: 44px 10px 32px 30px;
    }

    .profile-left-image {
        padding: 44px 8px 32px 0;
    }

    .profile-left-image img {
        height: 100%;
        object-fit: cover;
    }

    .process-list li,
    .profile-bullets li {
        padding-left: 14px;
    }

    .process-list li::before {
        top: 0.15em;
    }

    .profile-bullets li::before {
        top: 0.15em;
    }


    .profile-steps-bg {
        padding: 46px 38px;
    }

    .profile-step {
        margin: 0 auto;
        grid-template-columns: 46px 1fr;
        min-height: 52px;
        padding: 6px 14px 6px 6px;
        gap: 4px;
        margin-bottom: 12px;
        /* width: fit-content; */
    }

    .profile-step-number {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }

    .profile-step-content h3 {
        font-size: 14px;
    }

    .profile-step-content p {
        font-size: var(--font-size-body);
        line-height: 1.1;
    }

    .structure-section {
        padding: 48px 0;
    }

    .structure-wrap {
        max-width: 75%;
    }

    .structure-header {
        margin-bottom: 34px;
    }

    .benefits-section {
        padding-top: 0;
    }

    .structure-list {
        gap: 20px;
    }

    .prices-section {
        padding: 0 5px;
    }

    .prices-desktop {
        display: none;
    }

    .prices-mobile {
        display: block;
    }

    .price-pill {
        width: 58%;
        padding: 10px 16px;
    }

    .prices-meal-statement {
        font-size: var(--font-size-body);
    }

    .medical-points {
        max-width: 100%;
        gap: 16px;
    }

    .inspiration .content {
        text-align: left;
        margin: 0 auto;
    }

    .contact .inner {
        padding: 56px 28px;
    }

    .contact .qr img {
        width: 90px;
        height: 90px;
    }

    .footer {
        padding: 40px 0px 40px 50px;
    }

    .footer-logo {
        margin-top: 30px;
    }
    .footer-logo img {
        width: 76px;
        height: auto;
    }

    .footer-text p {
        margin-bottom: 16px;
    }
    .footer-text p,
    .footer .links {
        font-size: var(--font-size-body);
        line-height: 1.2;
    }
}
