* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-color: #1a5229 #e0e0e0;
    scrollbar-width: thin;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #e0e0e0;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #1a5229, #2d7a3e);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #145218, #1a5229);
}

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;
}

/* Header Banner */
.header-banner {
    background: linear-gradient(135deg, #1a5229 0%, #2d7a3e 50%, #1a5229 100%);
    padding: 15px 25px;
    text-align: center;
    border-bottom: 3px solid #d4a017;
    position: relative;
    overflow: hidden;
}

.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;
}

.header-banner p.attention-title {
    font-weight: 700;
    font-size: 18px;
    color: #ffd700;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.header-banner p.banner-text {
    font-size: 18px;
    line-height: 1.75;
}

.header-banner .highlight {
    font-weight: 700;
    color: #ffffff;
    text-decoration: underline;
}

.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 */
.headline-section {
    padding: 30px 20px;
    text-align: center;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

.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 */
.image-section {
    padding: 10px 20px 20px;
    position: relative;
}

.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);
}

.main-image {
    width: 100%;
    display: block;
    height: auto;
    border-radius: 12px;
}

/* CTA Button */
.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);
}

/* Content Section */
.content-section {
    padding: 25px 20px;
    margin: 15px 20px;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

.content-section:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.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: background-size 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;
}

/* Proof Image */
.proof-image-wrapper {
    margin: 20px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    line-height: 0;
}

.proof-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Proof Timeline */
.proof-timeline {
    margin: 25px 0;
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    width: 100%;
}

.timeline-marker {
    font-size: 14px;
    color: #1a5229;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    border-radius: 50%;
    border: 2px solid #1a5229;
}

.timeline-item-result .timeline-marker {
    background: linear-gradient(135deg, #1a5229 0%, #2d7a3e 100%);
    color: #ffd700;
    border-color: #1a5229;
}

.timeline-connector {
    width: 2px;
    height: 20px;
    background: linear-gradient(180deg, #1a5229, #2d7a3e);
    margin-left: 13px;
}

.timeline-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.timeline-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #1a5229;
}

.timeline-item-result .timeline-label {
    font-size: 15px;
}

.timeline-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

.timeline-text strong {
    color: #1a5229;
}

/* Pull Quote */
.pull-quote {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-style: italic;
    font-weight: 700;
    color: #1a5229;
    margin: 12px 0 15px 0;
    padding: 12px 15px 12px 18px;
    border-left: 3px solid #1a5229;
    background: linear-gradient(90deg, rgba(26, 82, 41, 0.05), transparent);
    border-radius: 0 8px 8px 0;
}

/* Highlight Term */
.intro-highlight {
    font-size: 15px;
    margin-top: 15px;
}

.highlight-term {
    color: #1a5229;
    font-weight: 700;
}

/* Conclusion Callout */
.conclusion-callout {
    background: transparent;
    padding: 15px 0;
    margin: 20px 0 10px 0;
    text-align: center;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.content-section .conclusion-callout p {
    margin-bottom: 6px;
    text-align: center;
    font-style: italic;
    font-weight: 400;
    color: #555;
    font-size: 14px;
}

.content-section .conclusion-callout p:last-child {
    margin-bottom: 0;
}

.content-section .conclusion-callout p.callout-emphasis {
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    color: #1a5229;
}

/* Math List */
.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: background 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 */
.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: transform 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 */
.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 */
.bonus-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    border: 2px solid #e0e0e0;
    position: relative;
}

.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 */
.price-card {
    text-align: center;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-top: 4px solid #1a5229;
    position: relative;
    padding: 20px 25px;
    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);
}

.price-card h2 {
    font-size: 16px;
    font-weight: 400;
    color: #555;
    margin-bottom: 10px;
}

.price-card p.price-current {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 72px;
    font-weight: 700;
    color: #1a5229;
    margin-bottom: 15px;
    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: 300;
    margin-top: 10px;
    letter-spacing: normal;
    color: #1a5229;
}

.cta-price {
    background: #1a5229;
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 600;
    padding: 18px 35px;
    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 */
.guarantee-card {
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
}

.guarantee-card strong {
    color: #151515;
}

.guarantee-seal-img {
    display: block;
    width: 120px;
    height: auto;
    margin: 0 auto 20px;
}

/* Footer */
.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;
}

/* Container Texture Overlay */
.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;
}

/* Responsive */
@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;
    }
}

/* Accessibility: Reduced Motion */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}