html {
    scroll-behavior: smooth;
}

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

html, body {
    overflow-x: clip;
    max-width: 100vw;
}

body {
    font-family: sans-serif;
    font-size: var(--font-md);
    line-height: var(--lh-snug);
    color: #000000;
    background-color: #fff;
}

.bold {
    font-weight: var(--fw-bold);
}

.strong {
    font-weight: var(--fw-strong);
}

h1,
h2,
h3,
h4,
h5,
h6,
li,
p,
span {
    font-family: sans-serif;
}

h2 {
    font-size: var(--font-2xl);
    font-weight: var(--fw-strong);
    line-height: var(--lh-snug);
}

h3 {
    font-size: var(--font-xl);
    font-weight: var(--fw-strong);
    line-height: var(--lh-snug);
}

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

.container {
    max-width: 840px;
    margin: 0 auto;
    padding: 0 var(--sp-sm);
}

.header {
    padding: var(--sp-md) 0;
    background: #fff;
    text-align: left;
}

.header-container {
    max-width: 840px;
    margin: 0 auto;
    padding: 0 var(--sp-md);
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-xs);
    max-width: 100%;
}

.logo-cross {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.logo-text {
    width: 222px;
    height: 18px;
    flex-shrink: 1;
    min-width: 0;
}

.trust-banner {
    background: #f2f2f2;
    padding: var(--sp-lg) var(--sp-md);
}

.trust-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-md);
    text-align: left;
}

.trust-text {
    flex: 1;
}

.trust-text h2 {
    font-size: var(--font-xl);
    font-weight: var(--fw-normal);
    line-height: var(--lh-snug);
    color: rgb(0, 0, 0);
    margin-bottom: var(--sp-xs);
    font-family: 'DM Serif Display', serif;
}

.trust-text p {
    font-size: var(--font-base);
    line-height: var(--lh-normal);
    color: rgb(0, 0, 0);
}

.trust-badge {
    flex-shrink: 0;
}

.trust-badge img {
    max-width: 240px;
    height: auto;
}

.main {
    padding: var(--sp-md) 0 var(--sp-xl);
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: var(--sp-xs);
    margin-bottom: var(--sp-sm);
    flex-wrap: wrap;
}

.stars {
    color: rgb(240, 173, 78);
    font-size: var(--font-lg);
    line-height: var(--lh-none);
}

.rating-count {
    font-family: sans-serif;
    font-size: var(--font-base);
    font-weight: var(--fw-extra-bold);
    line-height: var(--lh-snug);
    color: rgb(0, 0, 0);
}

.divider {
    color: #ccc;
}

.answers-link {
    color: var(--color-link);
    font-size: var(--font-base);
    line-height: var(--lh-snug);
}

.main-title {
    font-family: sans-serif;
    font-size: var(--font-3xl);
    font-weight: var(--fw-bold);
    line-height: var(--lh-snug);
    color: rgb(0, 0, 0);
    margin-bottom: var(--sp-md);
    overflow-wrap: anywhere;
    word-break: break-word;
}

.benefits-list {
    margin-bottom: var(--sp-md);
    padding-left: var(--sp-md);
    list-style: disc;
}

.benefits-list li {
    font-family: sans-serif;
    font-size: var(--font-xl);
    color: rgb(0, 0, 0);
    margin-bottom: var(--sp-xs);
    overflow-wrap: break-word;
}

.favorite-badge {
    display: inline-block;
    background: rgb(100, 82, 198);
    color: #fff;
    max-width: 100%;
    padding: var(--sp-xs) var(--sp-md);
    border-radius: var(--radius-sm);
    margin-top: var(--sp-sm);
    margin-bottom: var(--sp-sm);
    font-weight: var(--fw-strong);
    line-height: var(--lh-snug);
}

.favorite-label {
    font-size: var(--font-lg);
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .favorite-label {
        font-size: var(--font-xl);
    }
}

.trust-text p {
    overflow-wrap: break-word;
}

.pricing-info-live {
    margin-top: var(--sp-lg);
    margin-bottom: var(--sp-md);
    text-align: center;
}

.pricing-row {
    font-size: var(--font-lg);
    line-height: var(--lh-relaxed);
    color: #000;
    margin-bottom: var(--sp-xs);
}

.pricing-title {
    font-size: var(--font-3xl);
    font-weight: var(--fw-bold);
    line-height: var(--lh-snug);
    color: #000;
    text-transform: uppercase;
    margin-top: var(--sp-sm);
    margin-bottom: var(--sp-xs);
}

.pricing-info-live s {
    text-decoration: line-through;
}

.pricing-info-live .price-accent {
    color: var(--clr-red);
}

.cta-button {
    display: block;
    width: 100%;
    background: rgb(0, 0, 0);
    color: #fff;
    text-align: center;
    padding: var(--sp-md);
    border-radius: var(--radius-sm);
    font-family: sans-serif;
    font-size: var(--font-xl);
    font-weight: var(--fw-normal);
    line-height: var(--lh-snug);
    text-decoration: none;
    margin-top: var(--sp-lg);
    margin-bottom: var(--sp-lg);
    transition: background 0.2s ease;
}

.cta-button:hover {
    background: #333;
    text-decoration: none;
    color: #fff;
}

.cta-button.green {
    background: #43a047;
}

.cta-button.green:hover {
    background: #388e3c;
}

.arrow {
    margin-left: 10px;
    width: 30px;
    height: auto;
    vertical-align: middle;
}

.arrow-up {
    transform: rotate(180deg);
}

.social-comments {
    margin-top: var(--sp-lg);
    margin-bottom: var(--sp-lg);
}

.social-comments h2 {
    font-family: sans-serif;
    font-size: var(--font-2xl);
    font-weight: var(--fw-strong);
    line-height: var(--lh-snug);
    color: #000;
    margin-bottom: var(--sp-xs);
}

.social-subtitle {
    font-family: sans-serif;
    font-size: var(--font-base);
    line-height: var(--lh-relaxed);
    color: #000;
    margin-bottom: var(--sp-md);
}

.social-comments-img {
    display: block;
    max-width: 420px;
    width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}

.extended-guarantee {
    margin-top: var(--sp-lg);
    margin-bottom: var(--sp-lg);
}

.extended-guarantee h2 {
    font-family: sans-serif;
    font-size: var(--font-2xl);
    font-weight: var(--fw-strong);
    line-height: var(--lh-snug);
    color: #000;
    margin-bottom: var(--sp-md);
}

.guarantee-content {
    display: flex;
    flex-direction: column;
    gap: var(--sp-lg);
    align-items: center;
}

.guarantee-text {
    flex: 0 0 55%;
    border-left: 4px solid #000;
    padding-left: var(--sp-md);
}

.guarantee-text p {
    font-family: sans-serif;
    font-size: var(--font-md);
    line-height: var(--lh-normal);
    color: #333;
    margin-bottom: var(--sp-sm);
}

.guarantee-text p:last-child {
    margin-bottom: 0;
}

.guarantee-badge {
    flex: 0 0 auto;
    text-align: center;
}

.guarantee-badge img {
    max-width: 220px;
    height: auto;
}

@media (min-width: 768px) {
    .guarantee-content {
        flex-direction: row;
        align-items: center;
    }
}

.mega-angebot {
    background: #f2f2f2;
    padding: var(--sp-lg) var(--sp-md);
    margin-top: var(--sp-lg);
    margin-bottom: var(--sp-lg);
    text-align: center;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.mega-angebot-inner {
    max-width: 440px;
    margin: 0 auto;
}

.mega-title {
    font-family: 'DM Serif Display', serif;
    font-size: var(--font-3xl);
    font-weight: var(--fw-normal);
    line-height: var(--lh-snug);
    color: #000;
    margin-bottom: var(--sp-sm);
}

.mega-headline {
    font-family: 'DM Serif Display', serif;
    font-size: var(--font-xl);
    font-weight: var(--fw-normal);
    line-height: var(--lh-snug);
    color: #000;
    margin-bottom: var(--sp-md);
}

.mega-benefits {
    text-align: left;
}

.mega-benefit {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-sm);
    margin-bottom: var(--sp-sm);
}

.mega-benefit:last-child {
    margin-bottom: 0;
}

.green-check {
    width: 28px;
    height: 28px;
    min-width: 28px;
    flex-shrink: 0;
    margin-top: 2px;
}

.mega-benefit p {
    font-family: sans-serif;
    font-size: var(--font-base);
    line-height: var(--lh-snug);
    color: #000;
    margin: 0;
}

.black-line-separator {
    height: 2px;
    background: #000;
    margin-top: var(--sp-md);
    margin-bottom: var(--sp-md);
    width: 100%;
}

.reviews-section {
    margin-top: var(--sp-lg);
}

.reviews-section h2 {
    font-family: sans-serif;
    font-size: var(--font-2xl);
    font-weight: var(--fw-strong);
    line-height: var(--lh-snug);
    color: #000;
    margin-bottom: var(--sp-md);
}

.review {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-sm);
    margin-bottom: var(--sp-md);
    padding-bottom: var(--sp-md);
}

.review-content {
    flex: 1;
    min-width: 0;
}

.review-checkmark {
    flex-shrink: 0;
    padding-top: var(--sp-xs);
}

.reviewer-name {
    font-family: sans-serif;
    font-size: var(--font-lg);
    font-weight: var(--fw-strong);
    line-height: var(--lh-snug);
    color: #000;
    margin: 0;
}

.review-stars {
    color: rgb(240, 173, 78);
    font-size: var(--font-lg);
    line-height: var(--lh-none);
    margin-top: 4px;
    margin-bottom: 4px;
}

.review-date {
    font-family: sans-serif;
    font-size: var(--font-base);
    font-weight: var(--fw-normal);
    line-height: var(--lh-snug);
    color: #000;
    margin-bottom: var(--sp-xs);
}

.reviews-section .review h4 {
    font-family: sans-serif;
    font-size: var(--font-lg);
    font-weight: var(--fw-strong);
    line-height: var(--lh-snug);
    color: #000;
    margin-bottom: 4px;
}

.review-text {
    font-family: sans-serif;
    font-size: var(--font-base);
    line-height: var(--lh-normal);
    color: #000;
}

.return-note {
    font-family: sans-serif;
    font-size: var(--font-lg);
    line-height: var(--lh-snug);
    color: #000;
    margin-top: var(--sp-md);
    margin-bottom: var(--sp-md);
}

.pricing-cards .pricing-card:not(.featured) .card-header:empty {
    display: none;
}

.pricing-cards .card-header {
    font-size: var(--font-base);
}

.pricing-cards .price-suffix {
    font-weight: var(--fw-strong);
}

.pricing-cards .pricing-card {
    min-width: 0;
}

.pricing-cards .price-highlight {
    font-size: var(--font-lg);
}

.pricing-cards .price-suffix {
    font-size: var(--font-sm);
}

@media (min-width: 768px) {
    .pricing-cards .price-highlight {
        white-space: nowrap;
        font-size: var(--font-base);
    }
}

.pricing-cards .price-savings {
    font-weight: var(--fw-strong);
}

.info-section {
    margin-top: var(--sp-lg);
    margin-bottom: var(--sp-lg);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-sm);
    margin-bottom: var(--sp-sm);
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item .emoji {
    font-size: var(--font-xl);
    line-height: var(--lh-snug);
    flex-shrink: 0;
}

.info-item .info-text {
    font-family: sans-serif;
    font-size: var(--font-base);
    line-height: var(--lh-snug);
    color: #000;
    margin: 0;
}

.payment-section {
    text-align: left;
    margin-top: var(--sp-lg);
    margin-bottom: var(--sp-lg);
}

.payment-section .payment-icons {
    display: block;
    max-width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--sp-lg);
}

.payment-section h3 {
    font-family: sans-serif;
    font-size: var(--font-xl);
    font-weight: var(--fw-strong);
    line-height: var(--lh-snug);
    color: #000;
    margin-bottom: var(--sp-sm);
}

.payment-section ul {
    list-style: none;
    text-align: left;
    margin: 0;
    padding: var(--sp-sm) 0;
    line-height: var(--lh-snug);
}

.payment-section li {
    font-family: sans-serif;
    padding: 5px 0;
    font-size: var(--font-md);
    color: #000;
}

.accordion-section {
    margin-top: var(--sp-lg);
    margin-bottom: var(--sp-lg);
}

.accordion-section h2 {
    font-family: sans-serif;
    font-size: var(--font-2xl);
    font-weight: var(--fw-strong);
    line-height: var(--lh-snug);
    color: #000;
    margin-bottom: var(--sp-sm);
}

.accordion {
    background: #f5f5f5;
    border: none;
}

.accordion details {
    interpolate-size: allow-keywords;
    border: none;
    margin-bottom: 0;
    overflow: hidden;
    border-bottom: 1px solid #e5e5e5;
}

.accordion details:last-child {
    border-bottom: none;
}

.accordion summary {
    width: 100%;
    padding: var(--sp-sm);
    background: #f5f5f5;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: var(--sp-sm);
    font-family: sans-serif;
    font-size: var(--font-md);
    font-weight: var(--fw-strong);
    line-height: var(--lh-snug);
    text-align: left;
    color: #000;
    list-style: none;
}

.accordion summary::-webkit-details-marker {
    display: none;
}

.accordion summary:hover {
    background: #ebebeb;
}

.accordion-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s;
    order: -1;
    flex-shrink: 0;
}

details[open] .accordion-icon {
    transform: rotate(180deg);
}

.accordion details::details-content {
    overflow-y: clip;
    block-size: 0;
    transition: block-size 0.3s ease-out, content-visibility 0.3s allow-discrete;
    content-visibility: hidden;
}

.accordion details[open]::details-content {
    block-size: auto;
    content-visibility: visible;
    transition: block-size 0.4s ease-in, content-visibility 0.4s allow-discrete;
}

.accordion-content {
    padding: var(--sp-md);
    background: #f5f5f5;
}

.accordion-content p {
    font-family: sans-serif;
    font-size: var(--font-base);
    line-height: var(--lh-relaxed);
    color: #000;
    margin-bottom: var(--sp-xs);
}

.accordion-content ul {
    padding-left: var(--sp-md);
    margin-top: var(--sp-xs);
    margin-bottom: var(--sp-xs);
}

.accordion-content li {
    font-family: sans-serif;
    font-size: var(--font-base);
    line-height: var(--lh-relaxed);
    color: #000;
    margin-bottom: 5px;
}

.accordion-content a {
    color: var(--color-link);
    text-decoration: underline;
}

.nutrition-img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

.faq-section {
    margin-top: var(--sp-lg);
    margin-bottom: var(--sp-lg);
}

.faq-section h2 {
    font-family: sans-serif;
    font-size: var(--font-2xl);
    font-weight: var(--fw-strong);
    line-height: var(--lh-snug);
    color: #000;
    margin-bottom: var(--sp-xs);
}

.faq-subtitle {
    font-family: sans-serif;
    font-size: var(--font-base);
    line-height: var(--lh-relaxed);
    color: #000;
    margin-bottom: var(--sp-md);
}

.final-reviews {
    margin-top: var(--sp-lg);
    margin-bottom: var(--sp-md);
}

.final-reviews h2 {
    font-family: sans-serif;
    font-size: var(--font-2xl);
    font-weight: var(--fw-strong);
    line-height: var(--lh-snug);
    color: #000;
    margin-bottom: var(--sp-md);
}

.final-reviews .review {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-sm);
    margin-bottom: var(--sp-md);
    padding-bottom: var(--sp-md);
    border-bottom: 1px solid #e5e5e5;
}

.final-reviews .review:last-child {
    border-bottom: none;
}

.footer {
    background: #1a1a1a;
    color: #fff;
    padding: var(--sp-lg) 0;
}

.footer-container {
    max-width: 840px;
    margin: 0 auto;
    padding: 0 var(--sp-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-md);
}

.footer-links-right {
    display: flex;
    gap: var(--sp-md);
    flex-shrink: 0;
}

.footer-links-right a {
    color: var(--color-text-muted);
    font-size: var(--font-xs);
    font-weight: var(--fw-normal);
    text-transform: uppercase;
    letter-spacing: normal;
    text-decoration: none;
}

.footer-links-right a:hover {
    color: var(--clr-white);
    text-decoration: none;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-xs);
    text-decoration: none;
}

.footer-logo-cross {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.footer-logo-text {
    width: 222px;
    height: 18px;
    flex-shrink: 1;
    min-width: 0;
    filter: invert(1) brightness(2);
}

@media (min-width: 768px) {
    .footer-logo-cross {
        width: 47px;
        height: 47px;
    }

    .footer-logo-text {
        width: 245px;
        height: 20px;
    }
}




@media (min-width: 768px) {
    .trust-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .trust-text h2 {
        font-size: var(--font-2xl);
    }

    .trust-badge img {
        max-width: 280px;
    }

    .stars {
        font-size: var(--font-xl);
    }

    .logo-cross {
        width: 47px;
        height: 47px;
    }

    .logo-text {
        width: 245px;
        height: 20px;
    }
}

.pricing-cards .pricing-card:nth-child(1) {
    order: 1;
}

.pricing-cards .price-highlight {
    font-size: var(--font-base);
}

.pricing-cards .discount-badge {
    width: 70px;
    height: 70px;
    font-size: var(--font-xs);
}

@media (min-width: 768px) {
    .pricing-cards .pricing-card:nth-child(1) {
        order: 0;
    }
}
