﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(180deg, #e8e8e8 0%, #f5f5f5 100%);
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 420px;
    margin: 0 auto;
    background-color: #ffffff;
    min-height: 100vh;
    overflow: hidden;
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}






.header-banner {
    background: linear-gradient(135deg, #1a5229 0%, #2d7a3e 50%, #1a5229 100%);
    padding: 15px 30px;
    text-align: center;
    border-bottom: 3px solid #d4a017;
    position: relative;
    overflow: hidden;
}

.header-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

.header-banner p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.75;
    position: relative;
    z-index: 1;
}

.attention-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: 20px;
    color: #ffd700;
    letter-spacing: 1px;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.banner-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: #ffffff;
    font-size: 22px;
    line-height: 1.75;
    position: relative;
    z-index: 1;
}

.header-banner .highlight {
    font-weight: 700;
    color: #ffd700;
}

.header-banner .underline-yellow {
    text-decoration: none;
    background-color: #ffd700;
    color: #1a5229;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}


.headline-section {
    padding: 30px 20px;
    text-align: center;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    animation: fadeInUp 0.8s ease-out;
}

.headline-section h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #151515;
    line-height: 1.4;
    margin-bottom: 25px;
}

.headline-section .highlight-bold {
    font-weight: 700;
    font-style: italic;
    background: linear-gradient(135deg, #1a5229, #2d7a3e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.headline-section .underline-dark {
    text-decoration: underline;
    text-decoration-color: #1a5229;
    text-underline-offset: 3px;
}

.subheadline .underline-text {
    text-decoration: underline;
}

.subheadline strong {
    font-style: italic;
}


.image-section {
    padding: 10px 20px 20px;
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.main-image {
    width: 80%;
    display: block;
    margin: 0 auto;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    border: 3px solid #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}




.card-section {
    padding: 10px 20px 30px;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.info-card {
    background: linear-gradient(135deg, #fffef7 0%, #fef9e7 100%);
    border: 2px dashed #000000;
    border-radius: 16px;
    padding: 30px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.info-card h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    color: #151515;
    margin-bottom: 15px;
    line-height: 1.3;
}

.info-card p {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #555;
    line-height: 1.7;
}

.info-card p strong {
    font-style: italic;
}

.info-card .underline-text {
    text-decoration: underline;
}


.cta-button {
    display: block;
    width: 100%;
    margin-top: 20px;
    background: linear-gradient(135deg, #1a5229 0%, #2d7a3e 100%);
    color: #ffffff;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    padding: 18px 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(26, 82, 41, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: linear-gradient(135deg, #145218 0%, #1a5229 100%);
    box-shadow: 0 6px 25px rgba(26, 82, 41, 0.5);
}

.cta-button:active {
    transform: translateY(0);
}


.content-section {
    padding: 25px 20px;
    margin: 15px 20px;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border: none;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.content-section::before {
    display: none;
}

.content-section:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.content-section:hover::before {
    width: 6px;
}

.content-section.alt-bg {
    background: linear-gradient(135deg, #f8f8f8 0%, #f0f0f0 100%);
}

.content-section.alt-bg:hover {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1a5229;
    text-align: center;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid transparent;
    background: linear-gradient(90deg, transparent, #1a5229, transparent) bottom no-repeat;
    background-size: 60% 2px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.section-icon {
    font-size: 28px;
    line-height: 1;
}

.content-section:hover .section-title {
    background-size: 100% 2px;
}

.content-section p {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #444;
    line-height: 1.7;
    margin-bottom: 12px;
    text-align: left;
}

.content-section p:last-child {
    margin-bottom: 0;
}

.content-section strong {
    font-weight: 700;
    color: #1a5229;
}

.content-section em {
    font-style: italic;
}

.content-section .underline-text {
    text-decoration: underline;
    text-decoration-color: #1a5229;
}


.math-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.math-list li {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 8px;
    padding: 12px 15px;
    background: linear-gradient(90deg, rgba(26, 82, 41, 0.05), transparent);
    border-radius: 8px;
    border-left: 3px solid #1a5229;
    transition: all 0.3s ease;
}

.math-list li:hover {
    background: linear-gradient(90deg, rgba(26, 82, 41, 0.1), transparent);
}

.list-number {
    font-weight: 700;
    color: #1a5229;
}


.decision-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    text-align: center;
}

.decision-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #151515;
    line-height: 1.4;
    margin-bottom: 20px;
    border-bottom: none;
    padding-bottom: 0;
    background: none;
}

.decision-intro {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #555;
    margin-bottom: 20px;
    text-align: center;
}

.decision-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.option {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    border-radius: 12px;
    text-align: left;
    transition: all 0.3s ease;
}



.option-wrong {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border: 1px solid #fecaca;
}

.option-right {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 1px solid #bbf7d0;
}

.option-icon {
    font-size: 20px;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
}

.option-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.5;
}

.option-wrong .option-text {
    color: #7f1d1d;
}

.option-wrong .option-icon {
    background: #ef4444;
    color: white;
    font-weight: bold;
}

.option-right .option-text {
    color: #14532d;
}

.option-right .option-icon {
    background: linear-gradient(135deg, #1a5229, #2d7a3e);
    color: white;
    font-weight: bold;
}




.features-card {
    background: linear-gradient(135deg, #f8f8f8 0%, #f0f0f0 100%);
    overflow: hidden;
}


.product-mockup-float {
    display: block;
    width: 140px;
    max-width: 140px;
    height: auto;
    margin: 0 auto 20px auto;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.25));
}

.feature-item {
    display: flex;
    gap: 15px;
    margin-bottom: 18px;
    text-align: left;
    padding: 12px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-icon {
    font-size: 18px;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a5229, #2d7a3e);
    border-radius: 50%;
    color: white;
}

.feature-content h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #1a5229;
    margin-bottom: 4px;
}

.feature-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 0;
}

.price-strike {
    text-decoration: line-through;
    color: #999;
    font-size: 12px;
}

.price-free {
    background: linear-gradient(135deg, #1a5229, #2d7a3e);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}


.bonus-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    border: 2px solid #e0e0e0;
    position: relative;
}

.bonus-card::before {
    background: linear-gradient(180deg, #1a5229, #2d7a3e);
}

.bonus-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.bonus-section-title {
    color: #1a5229;
    background: linear-gradient(90deg, transparent, #1a5229, transparent) bottom no-repeat;
    background-size: 60% 2px;
}




.price-card {
    text-align: center;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-top: 4px solid #1a5229;
    position: relative;
    padding: 30px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.price-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}




.price-current {
    font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif;

    font-size: 72px !important;
    font-weight: 700 !important;

    color: #1a5229 !important;
    margin-bottom: 25px;
    line-height: 1;
    text-align: center;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    letter-spacing: -2px;
}

.price-current .currency {
    font-size: 32px;
    font-weight: 400;
    margin-top: 10px;

    letter-spacing: normal;
    color: #1a5229;
}



.cta-price {
    background: #1a5229;
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 30px;
    font-size: 16px;
    font-weight: 600;
    padding: 20px 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
}

.cta-price:hover {
    background: #144020;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(26, 82, 41, 0.2);
}




.guarantee-card {
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border: none;
}

.guarantee-card::before {
    display: none;
}

.guarantee-card strong {
    color: #151515;
}

.guarantee-seal-img {
    display: block;
    width: 120px;
    height: auto;
    margin: 0 auto 20px;
}




@media (min-width: 768px) {
    .container {
        max-width: 480px;
        margin-top: 20px;
        border-radius: 16px;
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    }

    .headline-section h1 {
        font-size: 28px;
    }

    .subheadline {
        font-size: 18px;
    }

    .section-title {
        font-size: 20px;
    }

    .content-section p,
    .math-list li {
        font-size: 16px;
    }

    .content-section {
        margin: 20px 25px;
        padding: 30px 25px;
    }

    .decision-title {
        font-size: 20px;
    }




}


.container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%' height='100%' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.015;
    pointer-events: none;
    z-index: 0;
}

.container>* {
    position: relative;
    z-index: 1;
}



.footer {
    background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
    padding: 40px 20px 30px;
    margin-top: 20px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #1a5229, #d4a017, #1a5229);
}

.footer-content {
    text-align: center;
}



.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #d4a017;
}

.footer-divider {
    color: #444;
    font-size: 12px;
}

.footer-disclaimer {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.footer-copyright p {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: #888;
    margin-bottom: 5px;
}








.image-wrapper {
    position: relative;
    width: 80%;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    background: transparent;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.image-wrapper .main-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: none;
}


@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}