:root {
    /* --- Palette --- */
    --primary-color: #2C7A7B;
    --primary-dark: #234E52;
    --primary-light: #81E6D9;

    --accent-color: #DD6B20;
    --accent-hover: #C05621;
    --accent-soft: #FBD38D;

    --bg-body: #F7FAFC;
    --bg-white: #FFFFFF;
    --bg-dark: #1A202C;
    --bg-emotional: #FFF5F5;

    --text-main: #2D3748;
    --text-light: #718096;
    --text-white: #FFFFFF;

    --success: #38A169;
    --danger: #E53E3E;

    /* --- Spacing & Radius --- */
    --container-padding: 1.5rem;
    --section-gap: 4rem;
    --border-radius: 16px;
    --card-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --btn-shadow: 0 4px 14px 0 rgba(221, 107, 32, 0.39);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-body);
    line-height: 1.6;
    font-size: 18px;
    /* Mobile readability base */
    overflow-x: hidden;
}

/* --- Utilities --- */
.container {
    width: 100%;
    max-width: 600px;
    /* Mobile-focused max-width initially */
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

@media (min-width: 768px) {
    .container {
        max-width: 900px;
        /* Tablet/Desktop expansion */
    }
}

.center {
    text-align: center;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-main);
}

h1 {
    font-size: 2.2rem;
}

h2 {
    font-size: 1.8rem;
}

h3 {
    font-size: 1.4rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* --- Buttons --- */
.btn-primary,
.btn-secondary,
.btn-footer {
    display: inline-block;
    padding: 1.2rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
    cursor: pointer;
    font-size: 1.1rem;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-hover) 100%);
    color: white;
    box-shadow: var(--btn-shadow);
}

.btn-primary small {
    display: block;
    font-size: 0.8em;
    font-weight: 400;
    opacity: 0.9;
    margin-top: 2px;
}

.btn-secondary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(44, 122, 123, 0.3);
}

.btn-footer {
    background-color: var(--accent-color);
    color: white;
}

.btn-primary:active,
.btn-secondary:active {
    transform: scale(0.98);
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    background: linear-gradient(180deg, #E6FFFA 0%, #FFFFFF 100%);
    padding-top: 3rem;
    padding-bottom: 6rem;
    /* Space for wave */
    text-align: center;
    overflow: hidden;
}

.badge-emotional {
    display: inline-block;
    background: rgba(221, 107, 32, 0.1);
    color: var(--accent-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.hero-title {
    color: var(--primary-dark);
}

.highlight-text {
    color: var(--accent-color);
    position: relative;
    white-space: nowrap;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.hero-visual {
    margin: 2rem 0;
    position: relative;
}

.hero-image {
    max-width: 80%;
    border-radius: 8px;
    /* Slight rounding for book cover */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.floating-animate {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.trust-indicators {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.trust-item {
    background: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.trust-item i {
    color: var(--success);
    margin-right: 5px;
}

.wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.wave-bottom svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

/* --- Pain Section --- */
.section-pain {
    padding: var(--section-gap) 0;
}

.bg-light {
    background-color: var(--bg-body);
}

.section-header .underline {
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    margin: 0.5rem auto 1.5rem;
    border-radius: 2px;
}

.pain-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.pain-card {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    border-left: 4px solid var(--danger);
    transition: transform 0.3s;
}

.pain-card:hover {
    transform: translateY(-5px);
}

.pain-icon {
    font-size: 1.8rem;
    line-height: 1;
}

.pain-card p {
    margin: 0;
    font-weight: 500;
    color: var(--text-main);
    font-style: italic;
}

.pain-conclusion {
    background: #FFF5F5;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid #FED7D7;
}

.arrow-down {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin: 1rem 0;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.highlight-bridge {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

/* --- Transformation Section --- */
.section-transformation {
    padding: var(--section-gap) 0;
    background: white;
}

.transformation-box {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.transformation-item {
    background: var(--bg-body);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
    border: 1px solid #E2E8F0;
}

.status-bad p,
.status-good p {
    font-size: 0.9rem;
    margin: 0.5rem 0 0;
    line-height: 1.3;
}

.status-bad .icon,
.status-good .icon {
    font-size: 1.5rem;
    display: block;
}

.arrow-transform {
    color: var(--text-light);
    opacity: 0.5;
}

.stop-list {
    margin-top: 3rem;
    background: var(--primary-color);
    color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
}

.stop-list h3 {
    color: white;
    margin-bottom: 1.5rem;
}

.check-list-inline {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.check-list-inline li {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* --- Author Section --- */
.section-author {
    padding: var(--section-gap) 0;
}

.author-content-wrapper {
    display: grid;
    gap: 2rem;
}

.badge-simple {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;
}

.role {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.bio-text p {
    margin-bottom: 1rem;
}

.quote {
    background: #FFFAF0;
    /* light orange tint */
    padding: 1rem;
    border-left: 4px solid var(--accent-color);
    font-style: italic;
    font-weight: 500;
    color: var(--primary-dark);
}

.stats-grid {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--text-light);
}

.emotional-img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
}

/* --- Social Proof --- */
.section-testimonials {
    padding: var(--section-gap) 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: var(--bg-body);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid #EDF2F7;
}

.stars {
    color: #F6E05E;
    margin-bottom: 0.5rem;
}

.testimonial-author {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    font-size: 0.9rem;
}

.testimonial-author strong {
    color: var(--primary-color);
}

/* --- Offer & Urgency --- */
.section-offer {
    padding: var(--section-gap) 0;
}

.offer-card {
    background: white;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border: 2px solid var(--primary-light);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.urgency-banner {
    background: #FFF5F5;
    color: #C53030;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.75rem;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 2rem;
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% {
        box-shadow: 0 0 0 0 rgba(229, 62, 62, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(229, 62, 62, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(229, 62, 62, 0);
    }
}

.value-anchor {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    border-bottom: 1px solid #E2E8F0;
    padding-bottom: 1.5rem;
}

.price-strike {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 1.2rem;
    opacity: 0.7;
}

.price-final span {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.price-final small {
    font-size: 1rem;
    color: var(--accent-color);
    font-weight: 600;
}

.price-cond {
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.cta-area {
    margin: 2rem 0;
}

.big-pulse {
    animation: pulse 2s infinite;
    font-size: 1.2rem;
    padding: 1.5rem 2rem;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(237, 137, 54, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(237, 137, 54, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(237, 137, 54, 0);
    }
}

.guarantee-block {
    background: #F0FFF4;
    border: 1px solid #C6F6D5;
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.guarantee-icon {
    font-size: 2.5rem;
    color: var(--success);
}

.guarantee-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #22543D;
}

.guarantee-text p {
    font-size: 0.9rem;
    color: #276749;
    margin: 0;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 1rem;
}

.payment-methods span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* --- Footer --- */
.site-footer {
    padding: 4rem 0 2rem;
    color: white;
}

.bg-dark {
    background-color: var(--bg-dark);
}

.site-footer h3 {
    color: white;
}

.site-footer p {
    color: #A0AEC0;
}

.footer-legal {
    font-size: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

/* --- Tablet/Desktop Media Queries --- */
@media (min-width: 768px) {
    h1 {
        font-size: 3rem;
    }

    .hero-content {
        max-width: 800px;
        margin: 0 auto;
    }

    .pain-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .author-content-wrapper {
        grid-template-columns: 1.5fr 1fr;
        align-items: center;
        text-align: left;
    }

    .role,
    .badge-simple {
        text-align: left;
        display: block;
    }

    .transformation-box {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }

    .transformation-item {
        flex-direction: column;
        width: 300px;
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .arrow-transform {
        transform: rotate(90deg);
    }

    /* Points down on desktop? No, vertical stack means items side by side, so arrow should be down inside the card for from->to? The current HTML is [Bad] -> [Arrow] -> [Good] inside ONE item. */
    /* Wait, I set .transformation-box to flex-row. So the Items are side by side.
       Inside the Item, it is Grid.
       Let's keep the internal structure of the item as logical flow. Vertical flow inside item is fine for desktop too if the item is narrow.
    */
    .transformation-item {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .arrow-transform i {
        transform: rotate(90deg);
    }
}

/* --- Animation Classes --- */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

[data-animate].in-view {
    opacity: 1;
    transform: translateY(0);
}

/* --- Bonus Section --- */
.section-bonus {
    padding: var(--section-gap) 0;
    background: #FFFBF0;
    /* Light cream/gold tint for value */
    border-top: 1px solid #FBD38D;
    border-bottom: 1px solid #FBD38D;
}

.bonus-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.badge-free {
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 1rem;
    display: inline-block;
    box-shadow: 0 4px 10px rgba(221, 107, 32, 0.3);
}

.bonus-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--card-shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    border: 2px dashed #FBD38D;
    /* Gift/Coupon feel */
    position: relative;
    overflow: hidden;
}

.bonus-image-container {
    position: relative;
    max-width: 250px;
}

.bonus-img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transform: rotate(-3deg);
    transition: transform 0.3s;
}

.bonus-card:hover .bonus-img {
    transform: rotate(0deg) scale(1.05);
}

.price-tag-free {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--success);
    color: white;
    padding: 0.5rem 1rem;
    font-weight: 800;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transform: rotate(15deg);
    font-size: 0.9rem;
    z-index: 10;
}

.bonus-details {
    text-align: left;
    width: 100%;
}

.bonus-details h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.bonus-list {
    list-style: none;
    margin: 1.5rem 0;
}

.bonus-list li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.bonus-list i {
    color: var(--success);
    font-size: 1.1rem;
}

.bonus-price {
    background: #F0FFF4;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #C6F6D5;
}

.price-from {
    display: block;
    font-size: 0.9rem;
    text-decoration: line-through;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.price-to {
    display: block;
    font-size: 1.2rem;
    color: var(--primary-dark);
}

.text-success {
    color: var(--success);
    font-weight: 800;
}

@media (min-width: 768px) {
    .bonus-card {
        flex-direction: row;
        align-items: center;
        /* Center vertically */
        text-align: left;
    }

    .bonus-image-container {
        flex: 1;
        max-width: 300px;
    }

    .bonus-details {
        flex: 1.5;
    }
}