:root {
    --dark: #052f31;
    --darker: #031d1f;
    --green: #1f7a2d;
    --teal: #1aaea3;
    --mint: #eaf8f3;
    --mint-strong: #dff4e8;
    --coral: #e83e54;
    --orange: #f59e0b;
    --text: #101828;
    --muted: #5b6472;
    --line: #dbe5df;
    --white: #ffffff;
    --shadow: 0 18px 45px rgba(5, 47, 49, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, Arial, Helvetica, sans-serif;
    color: var(--text);
    background: #f7faf8;
    line-height: 1.65;
}

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

a {
    color: inherit;
}

.container {
    width: min(1120px, calc(100% - 32px));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(5, 47, 49, 0.08);
    backdrop-filter: blur(14px);
}

.header-inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    font-size: 28px;
    font-weight: 900;
    color: var(--green);
    text-decoration: none;
    letter-spacing: -0.04em;
    white-space: nowrap;
}

.logo span {
    color: var(--dark);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 15px;
    font-weight: 700;
}

.main-nav a.is-active {
    color: var(--teal);
    opacity: 1;
}

.main-nav a.is-active::after {
    width: 100%;
}

.main-nav a {
    position: relative;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 3px;
    border-radius: 999px;
    background: var(--teal);
    transition: width 0.2s ease;
}

.main-nav a {
    text-decoration: none;
    color: var(--text);
    opacity: 0.82;
}

.main-nav a:hover {
    color: var(--green);
    opacity: 1;
}

.header-cta,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 24px;
    border-radius: 12px;
    border: 0;
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-cta,
.btn-primary {
    background: #18a89e;
    color: var(--white);
    box-shadow: 0 12px 24px rgba(24, 168, 158, 0.24);
}

.header-cta:hover,
.btn:hover {
    transform: translateY(-2px);
}

.btn-large {
    min-height: 58px;
    padding-inline: 34px;
    font-size: 18px;
}

.section {
    padding: 74px 0;
}

.section-soft {
    background: linear-gradient(180deg, var(--mint), #ffffff);
}

.section-muted {
    background: #f1f4f2;
}

.hero {
    padding: 62px 0 42px;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
    align-items: center;
    gap: 46px;
    position: relative;
    padding-top: 50px;
}

.made-in-germany {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
    margin: 0 0 15px;
    color: #000;
    line-height: 0.9;
    width: fit-content;
    position: absolute;
    top: 0;
    left: 0;
}

.made-in-germany .made-title {
    display: flex;
    align-items: center;
    gap: 8px;
}

.made-in-germany .made-title span,
.made-in-germany .made-country {
    color: #000;
    font-family: Arial Black, Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.7px;
}

.made-in-germany img {
    width: 24px;
    height: auto;
    display: block;
    margin-top: 1px;
}

.made-in-germany .made-country {
    display: block;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 760px;
    font-size: clamp(26px, 3vw, 30px);
    line-height: 1.18;
    letter-spacing: -0.035em;
    margin-bottom: 22px;
}

h2 {
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.16;
    letter-spacing: -0.04em;
    margin-bottom: 22px;
}

h3 {
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 8px;
}

p {
    font-size: 18px;
    color: var(--text);
    margin-bottom: 18px;
}

.section-soft a:not(.btn) {
    color: var(--teal);
}

.hero-content p {
    max-width: 660px;
    color: var(--muted);
    font-size: 18px;
}

.trust-line {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 22px;
    color: var(--dark);
    font-size: 14px;
    font-weight: 800;
}

.hero-media {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 360px;
    border-radius: 34px;
    background: radial-gradient(circle at top, #ffffff, var(--mint-strong));
    box-shadow: var(--shadow);
    padding: 34px;
}

.hero-media::before {
    content: "";
    position: absolute;
    inset: 24px;
    border: 2px dashed rgba(26, 174, 163, 0.28);
    border-radius: 26px;
}

.hero-media img {
    position: relative;
    max-height: 300px;
    object-fit: contain;
}

.promo-wrap {
    margin-top: -18px;
}

.promo-bar {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 22px;
    border: 2px dashed var(--green);
    border-radius: 16px;
    background: #fff7d6;
    font-size: 18px;
    font-weight: 800;
}

.promo-bar a {
    color: var(--green);
    font-weight: 900;
}

.product-card-wrap {
    padding: 28px 0 36px;
}

.product-card,
.offer-card {
    display: grid;
    grid-template-columns: 160px 120px 1fr 120px 190px;
    gap: 22px;
    align-items: center;
    background: var(--white);
    border: 1px solid var(--line);
    border-bottom: 5px solid var(--teal);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 26px;
}

.product-image,
.offer-card img {
    display: grid;
    place-items: center;
    min-height: 120px;
}

.product-image img {
    max-height: 130px;
    object-fit: contain;
}

.score-box {
    border: 1px solid var(--dark);
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    background: var(--white);
}

.score-box span {
    display: block;
    padding: 6px;
    background: var(--dark);
    color: var(--white);
    font-weight: 900;
}

.score-box strong {
    display: block;
    font-size: 44px;
    line-height: 1;
    padding-top: 10px;
}

.score-box small {
    display: block;
    color: var(--muted);
}

.stars {
    color: var(--orange);
    letter-spacing: 2px;
    font-weight: 900;
}

.badge {
    width: fit-content;
    margin-bottom: 10px;
    padding: 8px 14px;
    border-radius: 10px;
    background: var(--dark);
    color: var(--white);
    font-size: 20px;
    font-weight: 900;
}

.product-details ul,
.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-details li,
.check-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 8px;
}

.product-details li::before,
.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    display: inline-grid;
    place-items: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--teal);
    color: var(--white);
    font-size: 13px;
    font-weight: 900;
}

.discount-box {
    text-align: center;
    color: var(--dark);
}

.discount-box small,
.discount-box span {
    display: block;
    color: var(--muted);
}

.discount-box strong {
    display: block;
    font-size: 34px;
    line-height: 1;
    color: var(--coral);
}

.product-action {
    display: grid;
    gap: 8px;
    text-align: center;
}

.product-action small {
    color: var(--muted);
    font-weight: 700;
}

.two-column {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 44px;
    align-items: start;
}

.rating-panel,
.text-panel,
.content-card,
.raw-text-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 30px;
    box-shadow: 0 14px 35px rgba(5, 47, 49, 0.08);
}

.rating-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 16px;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: 17px;
    font-weight: 800;
}

.rating-row:last-child {
    border-bottom: 0;
}

.rating-row span:nth-child(2) {
    color: var(--orange);
    letter-spacing: 3px;
}

.green-feature {
    padding: 86px 0;
    background: var(--dark);
    color: var(--white);
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 54px;
    align-items: center;
}

.feature-image img {
    width: 100%;
    min-height: 380px;
    object-fit: cover;
    border-radius: 28px;
    border: 8px solid rgba(255, 255, 255, 0.08);
}

.feature-content p,
.feature-content li,
.green-feature h2 {
    color: var(--white);
}

.feature-content p {
    opacity: 0.9;
}

.centered-block {
    max-width: 820px;
    text-align: center;
}

.faq-list {
    display: grid;
    gap: 12px;
}

details {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
}

summary {
    cursor: pointer;
    padding: 22px 24px;
    color: var(--dark);
    font-size: 18px;
    font-weight: 900;
}

details p {
    padding-inline: 24px;
}

details p:last-child {
    padding-bottom: 22px;
}

.quote-section {
    display: grid;
    justify-items: center;
    gap: 28px;
    padding: 25px 0 0;
    text-align: center;
}

.quote-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 980px);
    min-height: 48px;
    padding: 12px 28px;
    border-radius: 999px;
    background: var(--teal);
    color: var(--white);
    text-decoration: none;
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .5px;
    box-shadow: inset 0 -4px 0 rgba(0, 0, 0, 0.18), 0 14px 28px rgba(26, 174, 163, 0.24);
    transition: transform .2s ease, box-shadow .2s ease;
}

.quote-cta:hover {
    transform: translateY(-2px);
    box-shadow: inset 0 -4px 0 rgba(0, 0, 0, 0.18), 0 18px 34px rgba(26, 174, 163, 0.3);
}

.quote-section h2,
.testimonial-title {
    position: relative;
    max-width: 900px;
    margin-inline: auto;
    padding-left: 28px;
    color: #123026;
    font-family: Inter, Montserrat, Arial, Helvetica, sans-serif;
    font-size: clamp(24px, 2.4vw, 34px);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.025em;
}

.testimonial-title span {
    color: #0b7a3b;
}

.quote-section h2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(
            to bottom,
            #000 0 33.33%,
            #dd0000 33.33% 66.66%,
            #ffce00 66.66% 100%
    );
}

.quote-section h2::after {
    display: none;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}

.ingredient-card {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 22px;
    align-items: start;
    padding: 26px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: 0 14px 35px rgba(5, 47, 49, 0.08);
}

.ingredient-card img {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--mint-strong);
    border: 4px solid var(--white);
    box-shadow: 0 0 0 1px var(--line);
}

.ingredient-card p {
    font-size: 16px;
    color: var(--muted);
    margin-bottom: 0;
}

.highlight-card {
    background: var(--mint);
}

.image-stack {
    display: grid;
    justify-items: center;
    gap: 24px;
    position: sticky;
    top: 100px;
}

.image-stack img {
    max-height: 360px;
    object-fit: contain;
}

.offer-card {
    grid-template-columns: 180px 1fr 1.1fr 220px;
    margin-top: 28px;
}

.offer-card img {
    max-height: 110px;
    object-fit: contain;
}

.offer-rating,
.offer-discount {
    text-align: center;
    border-left: 1px solid var(--line);
    padding-left: 22px;
}

.offer-rating span {
    display: block;
    color: var(--orange);
    font-size: 13px;
    font-weight: 900;
}

.offer-rating strong {
    display: block;
    font-size: 44px;
    line-height: 1.1;
}

.offer-discount strong {
    display: block;
    color: var(--coral);
    font-size: 28px;
    line-height: 1.1;
}

.raw-text-card p {
    font-size: 16px;
    color: var(--muted);
}

.final-cta {
    padding: 0 0 72px;
}

.final-cta .centered-block {
    max-width: 760px;
    padding: 42px 34px;
    border-radius: 28px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    position: relative;
}

.final-cta .centered-block::before {
    content: "✓ Offizieller CoreGLP Shop";
    display: inline-flex;
    width: fit-content;
    margin-bottom: 16px;
    padding: 7px 14px;
    border-radius: 999px;
    background: var(--mint);
    color: var(--teal);
    font-size: 14px;
    font-weight: 900;
}

.final-cta h2 {
    color: var(--dark);
}

.final-cta p {
    max-width: 560px;
    margin-inline: auto;
    color: var(--muted);
}

.site-footer {
    background: var(--darker);
    color: rgba(255, 255, 255, 0.78);
    padding: 52px 0;
}

.footer-inner {
    display: grid;
    justify-items: center;
    text-align: center;
    gap: 18px;
}

.footer-logo {
    color: var(--teal);
}

.footer-logo span {
    color: var(--white);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.86);
    text-decoration: none;
    font-weight: 700;
}

.site-footer p {
    max-width: 920px;
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
}

.mobile-product-cta {
    display: none;
}

#angebote a:not(.btn) {
    color: var(--teal);
}

.testimonials-section {
    background: linear-gradient(180deg, #ffffff, var(--mint));
    padding-top: 46px;
}

.testimonials-header {
    max-width: 920px;
    margin: 0 auto 28px;
    text-align: center;
}

.testimonials-header h2 {
    color: var(--dark);
    font-size: clamp(26px, 2.8vw, 38px);
    margin-bottom: 14px;
}

.testimonials-header p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.65;
    margin-bottom: 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 12px 28px rgba(5, 47, 49, 0.07);
}

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

.testimonial-top strong {
    color: var(--dark);
    font-size: 15px;
    font-weight: 900;
}

.testimonial-top span {
    color: var(--green);
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}

.testimonial-stars {
    color: var(--orange);
    font-size: 15px;
    letter-spacing: 1px;
    font-weight: 900;
    margin-bottom: 10px;
}

.testimonial-card p {
    color: var(--text);
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 0;
}

@media (min-width: 1025px) {
    .hero-grid {
        grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1fr);
        position: relative;
    }

    .hero-media {
        order: 1;
    }

    .hero-content {
        order: 2;
    }
}

@media (max-width: 1024px) {
    .hero-content {
        order: 1;
    }

    .hero-media {
        order: 2;
    }

    .made-in-germany {
        margin-bottom: 0;
    }

    .main-nav {
        display: none;
    }

    .hero-grid,
    .two-column,
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .product-card {
        grid-template-columns: 140px 1fr 1fr;
    }

    .product-details,
    .product-action {
        grid-column: 1 / -1;
    }

    .discount-box {
        text-align: left;
    }

    .offer-card {
        grid-template-columns: 1fr 1fr;
    }

    .offer-card .btn {
        grid-column: 1 / -1;
    }
}


@media (max-width: 760px) {
    .container {
        width: min(100% - 22px, 1120px);
    }

    .header-inner {
        min-height: 64px;
        gap: 12px;
    }

    .logo {
        font-size: 24px;
    }

    .header-cta {
        min-height: 40px;
        padding: 9px 14px;
        font-size: 13px;
        border-radius: 10px;
    }

    .hero {
        padding: 42px 0 32px;
    }

    h1 {
        font-size: 26px;
        line-height: 1.24;
        letter-spacing: -0.025em;
    }

    h2 {
        font-size: 28px;
    }

    p,
    .hero-content p {
        font-size: 16px;
    }

    .hero-media {
        min-height: 300px;
        padding: 22px;
        border-radius: 24px;
    }

    .hero-media img {
        max-height: 240px;
    }

    .promo-wrap {
        margin-top: 0;
        padding-top: 14px;
    }

    .promo-bar {
        display: grid;
        gap: 10px;
        padding: 14px 16px;
        border: 2px dashed var(--teal);
        border-radius: 18px;
        background: #fffbea;
        box-shadow: 0 10px 24px rgba(5, 47, 49, 0.08);
        text-align: left;
        font-size: 14px;
        line-height: 1.45;
    }

    .promo-bar span {
        position: relative;
        padding-left: 26px;
        color: var(--dark);
        font-weight: 900;
    }

    .promo-bar span::before {
        content: "✓";
        position: absolute;
        left: 0;
        top: 1px;
        width: 18px;
        height: 18px;
        display: inline-grid;
        place-items: center;
        border-radius: 50%;
        background: var(--teal);
        color: #fff;
        font-size: 12px;
        font-weight: 900;
    }

    .promo-bar a {
        width: fit-content;
        color: var(--teal);
        font-weight: 900;
        text-decoration: underline;
        text-underline-offset: 4px;
    }

    .promo-bar a {
        width: fit-content;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 36px;
        padding: 8px 14px;
        border-radius: 999px;
        background: var(--teal);
        color: #fff;
        text-decoration: none;
        font-weight: 900;
    }

    .product-card,
    .offer-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 20px;
    }

    .product-details ul {
        text-align: left;
    }

    .discount-box {
        text-align: center;
    }

    .product-action .btn,
    .offer-card .btn,
    .btn {
        width: 100%;
    }

    .score-box {
        max-width: 150px;
        margin-inline: auto;
    }

    .section {
        padding: 52px 0;
    }

    .rating-panel,
    .text-panel,
    .content-card,
    .raw-text-card {
        padding: 22px;
        border-radius: 18px;
    }

    #bewertung {
        gap: 18px;
        padding-top: 42px;
        padding-bottom: 42px;
    }

    #bewertung h2 {
        text-align: center;
    }

    .rating-panel,
    .text-panel {
        padding: 20px;
    }

    .rating-row {
        grid-template-columns: 1fr auto;
        gap: 6px 12px;
        padding: 12px 0;
        font-size: 15px;
    }

    .rating-row span:first-child {
        text-align: left;
    }

    .rating-row span:nth-child(2) {
        grid-column: 1 / -1;
        grid-row: 2;
        text-align: left;
        font-size: 14px;
        letter-spacing: 2px;
    }

    .rating-row strong {
        font-size: 17px;
        color: var(--dark);
    }

    .text-panel p {
        font-size: 15px;
        line-height: 1.65;
    }

    .green-feature {
        padding: 56px 0;
    }

    .feature-image img {
        min-height: 260px;
        border-radius: 20px;
    }

    .ingredients-grid,
    .ingredient-card {
        grid-template-columns: 1fr;
    }

    .ingredient-card {
        text-align: center;
    }

    .ingredient-card img {
        margin-inline: auto;
    }

    .offer-rating,
    .offer-discount {
        border-left: 0;
        border-top: 1px solid var(--line);
        padding: 18px 0 0;
    }

    .footer-links {
        display: grid;
        gap: 10px;
    }

    .product-card {
        display: grid;
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 20px;
        border-radius: 20px;
        text-align: center;
    }

    .product-image {
        grid-column: auto;
        min-height: auto;
    }

    .product-image img {
        max-height: 200px;
        margin-inline: auto;
    }

    .score-box {
        grid-column: auto;
        max-width: initial;
        width: 150px;
        margin-inline: auto;
    }

    .badge {
        margin: 0 auto 14px;
        font-size: 19px;
        padding: 8px 16px;
        border-radius: 10px;
    }

    .product-details {
        grid-column: auto;
    }

    .product-details ul {
        max-width: 290px;
        margin-inline: auto;
        text-align: left;
    }

    .product-details li {
        font-size: 15px;
        line-height: 1.45;
        margin-bottom: 10px;
    }

    .discount-box {
        grid-column: auto;
        padding: 14px;
        border-radius: 16px;
        background: var(--mint);
        text-align: center;
    }

    .product-action {
        grid-column: auto;
    }

    .product-action .btn {
        width: 100%;
        min-height: 52px;
        border-radius: 999px;
    }

    #fragen {
        padding: 46px 0;
    }

    #fragen h2 {
        text-align: center;
        font-size: 26px;
        margin-bottom: 24px;
    }

    .faq-list {
        gap: 10px;
    }

    details {
        border-radius: 14px;
        box-shadow: 0 8px 20px rgba(5, 47, 49, 0.06);
    }

    summary {
        position: relative;
        padding: 18px 44px 18px 18px;
        font-size: 15px;
        line-height: 1.35;
    }

    summary::after {
        content: "+";
        position: absolute;
        right: 18px;
        top: 50%;
        transform: translateY(-50%);
        width: 24px;
        height: 24px;
        display: inline-grid;
        place-items: center;
        border-radius: 50%;
        background: var(--mint);
        color: var(--teal);
        font-size: 18px;
        font-weight: 900;
    }

    details[open] summary::after {
        content: "−";
    }

    details p {
        padding-inline: 18px;
        font-size: 15px;
        line-height: 1.6;
    }

    details p:last-child {
        padding-bottom: 18px;
    }

    .quote-section {
        gap: 20px;
        padding: 34px 0;
        text-align: left;
    }

    .quote-cta {
        width: 100%;
        min-height: 46px;
        font-size: 15px;
        border-radius: 999px;
    }

    .quote-section h2,
    .testimonial-title {
        padding: 20px 16px 20px 28px;
        border-radius: 18px;
        background: var(--white);
        border: 1px solid var(--line);
        box-shadow: 0 10px 24px rgba(5, 47, 49, 0.07);
        font-size: 20px;
        line-height: 1.28;
        color: #123026;
    }

    .quote-section h2::before {
        top: 20px;
        left: 16px;
        width: 5px;
        height: calc(100% - 40px);
    }

    .quote-section h2::after {
        display: none;
    }

    #inhaltsstoffe {
        padding-top: 38px;
    }

    #inhaltsstoffe h2 {
        font-size: 26px;
        line-height: 1.18;
        margin-bottom: 22px;
    }

    .ingredients-grid {
        gap: 14px;
    }

    .ingredient-card {
        grid-template-columns: 74px 1fr;
        gap: 14px;
        align-items: center;
        padding: 16px;
        text-align: left;
        border-radius: 16px;
    }

    .ingredient-card img {
        width: 66px;
        height: 66px;
        margin: 0;
        border-width: 3px;
    }

    .ingredient-card h3 {
        font-size: 18px;
        margin-bottom: 4px;
    }

    .ingredient-card p {
        font-size: 14px;
        line-height: 1.45;
    }

    #angebote {
        padding-top: 42px;
        padding-bottom: 42px;
    }

    #angebote h2 {
        text-align: center;
        font-size: 26px;
        line-height: 1.2;
    }

    #angebote p {
        font-size: 15px;
        line-height: 1.6;
    }

    .offer-card {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        padding: 18px;
        border-radius: 20px;
        text-align: center;
    }

    .offer-card img {
        grid-column: 1 / -1;
        max-height: 120px;
        margin-inline: auto;
    }

    .offer-rating,
    .offer-discount {
        border-left: 0;
        border-top: 0;
        padding: 14px 10px;
        border-radius: 16px;
        background: var(--mint);
    }

    .offer-rating span {
        font-size: 11px;
    }

    .offer-rating strong {
        font-size: 34px;
    }

    .offer-discount strong {
        font-size: 22px;
    }

    .offer-discount small,
    .offer-discount span {
        font-size: 13px;
    }

    .offer-card .btn {
        grid-column: 1 / -1;
        width: 100%;
        min-height: 52px;
        border-radius: 999px;
    }

    .final-cta {
        padding: 0px 0 44px;
    }

    .final-cta .centered-block {
        padding: 24px 18px;
        border-radius: 22px;
    }

    .final-cta .centered-block::before {
        margin-bottom: 12px;
        font-size: 12px;
    }

    .final-cta h2 {
        font-size: 25px;
        line-height: 1.2;
        margin-bottom: 12px;
    }

    .final-cta p {
        max-width: 300px;
        margin-inline: auto;
        margin-bottom: 18px;
        font-size: 15px;
        line-height: 1.55;
    }

    .final-cta .btn-large {
        width: 100%;
        min-height: 52px;
        padding-inline: 20px;
        font-size: 16px;
        border-radius: 999px;
    }

    .section {
        padding: 42px 0;
    }

    .section-soft,
    .section-muted {
        background-size: 100% auto;
    }

    .centered-block {
        max-width: 100%;
    }

    .content-card,
    .text-panel,
    .raw-text-card,
    .rating-panel {
        padding: 18px;
        border-radius: 18px;
        box-shadow: 0 8px 22px rgba(5, 47, 49, 0.06);
    }

    .content-card h2,
    .text-panel h2,
    .raw-text-card h2 {
        font-size: 23px;
        line-height: 1.18;
        margin-bottom: 14px;
        letter-spacing: -0.025em;
    }

    .content-card p,
    .text-panel p,
    .raw-text-card p {
        font-size: 15px;
        line-height: 1.58;
        margin-bottom: 14px;
    }

    .content-card p:last-child,
    .text-panel p:last-child,
    .raw-text-card p:last-child {
        margin-bottom: 0;
    }

    .section-soft .content-card {
        margin-top: -14px;
    }

    .two-column {
        gap: 24px;
    }

    .two-column.reverse-mobile {
        padding-top: 38px;
        padding-bottom: 38px;
    }

    .two-column.reverse-mobile .text-panel {
        background: linear-gradient(180deg, #ffffff, #f7fffb);
        border-left: 4px solid var(--teal);
    }

    .image-stack {
        gap: 16px;
    }

    .image-stack img {
        max-height: 230px;
    }

    .image-stack .btn {
        min-height: 50px;
        border-radius: 999px;
    }

    .mobile-product-cta {
        display: block;
    }

    .mobile-product-cta a {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 58px;
        width: 100%;
        border-radius: 4px;
        background: var(--teal);
        color: var(--white);
        text-decoration: none;
        font-size: 22px;
        font-weight: 900;
        letter-spacing: 2px;
        box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.15), 0 8px 18px rgba(238, 138, 0, 0.25);
    }

    .testimonials-section {
        padding-top: 38px;
    }

    .testimonials-header {
        text-align: left;
        margin-bottom: 20px;
    }

    .testimonials-header h2 {
        font-size: 26px;
        line-height: 1.18;
    }

    .testimonials-header p {
        font-size: 15px;
        line-height: 1.6;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .testimonial-card {
        padding: 18px;
        border-radius: 16px;
    }

    .testimonial-top {
        align-items: flex-start;
    }

    .testimonial-card p {
        font-size: 14px;
    }
}

@media (max-width: 420px) {
    h1 {
        font-size: 24px;
    }

    .trust-line {
        display: grid;
    }

    .product-card,
    .offer-card,
    .rating-panel,
    .text-panel,
    .content-card,
    .raw-text-card {
        border-radius: 14px;
    }

    #fragen h2 {
        font-size: 24px;
    }

    summary {
        padding: 16px 42px 16px 16px;
        font-size: 14px;
    }

    details p {
        padding-inline: 16px;
        font-size: 14px;
    }

    #inhaltsstoffe h2 {
        font-size: 24px;
    }

    .ingredient-card {
        grid-template-columns: 60px 1fr;
        gap: 12px;
        padding: 14px;
    }

    .ingredient-card img {
        width: 56px;
        height: 56px;
    }

    .ingredient-card h3 {
        font-size: 17px;
    }

    .ingredient-card p {
        font-size: 13px;
    }

    #angebote h2 {
        font-size: 24px;
    }

    .offer-card {
        gap: 12px;
        padding: 16px;
    }

    .offer-card img {
        max-height: 105px;
    }

    .offer-rating strong {
        font-size: 30px;
    }

    .offer-discount strong {
        font-size: 20px;
    }

    .offer-card .stars {
        font-size: 13px;
        letter-spacing: 1px;
    }

    .final-cta {
        padding: 0px 0 36px;
    }

    .final-cta .centered-block {
        padding: 22px 16px;
    }

    .final-cta h2 {
        font-size: 23px;
    }

    .final-cta p {
        font-size: 14px;
    }

    .section {
        padding: 34px 0;
    }

    .content-card,
    .text-panel,
    .raw-text-card,
    .rating-panel {
        padding: 16px;
    }

    .content-card h2,
    .text-panel h2,
    .raw-text-card h2 {
        font-size: 21px;
    }

    .content-card p,
    .text-panel p,
    .raw-text-card p {
        font-size: 14px;
        line-height: 1.55;
    }

    .two-column.reverse-mobile {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .image-stack img {
        max-height: 200px;
    }
}

.image-stack {
    min-width: 0;
}

.image-stack img {
    width: 100%;
    max-width: 420px;
    height: auto;
    object-fit: contain;
}

.text-panel {
    min-width: 0;
    overflow-wrap: anywhere;
}

@media (max-width: 760px) {
    .two-column.reverse-mobile {
        display: flex;
        flex-direction: column;
        gap: 28px;
    }

    .two-column.reverse-mobile .image-stack {
        order: 2;
        width: 100%;
    }

    .two-column.reverse-mobile .text-panel {
        order: 1;
        width: 100%;
    }

    .image-stack img {
        max-width: 100%;
        max-height: 280px;
        margin-inline: auto;
    }

    .image-stack .btn {
        width: 100%;
        max-width: 100%;
        white-space: normal;
        text-align: center;
    }

    .text-panel h2 {
        font-size: 25px;
        line-height: 1.2;
        overflow-wrap: anywhere;
    }
}

@media (max-width: 420px) {
    .text-panel {
        padding: 18px;
    }

    .text-panel h2 {
        font-size: 22px;
    }

    .image-stack img {
        max-height: 230px;
    }
}