:root {
    /* Color Palette from Prompt */
    --bg-color: #F3E8D5;
    /* Warm Beige */
    --card-color: #FBF6EB;
    /* Soft Cream */
    --primary-green: #6B7F3E;
    /* Olive Green */
    --text-color: #2F2F2A;
    /* Soft Charcoal */
    --accent-yellow: #E2C676;
    /* Muted Yellow */
    --emotional-coral: #F2C1B6;
    /* Soft Coral (minimal use) */
    --accent-brown: #8C6A5E;
    /* Deficit/Warning Natural */
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    /* System Sans-Serif for cleaner, less stiff look */
    background-color: var(--bg-color);
    color: var(--text-color);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    /* "Large line-height" */
}

.container {
    max-width: 720px;
    /* Increased from 600px */
    margin: 20px auto;
    padding: 15px;
}

/* Typography */
h1,
h2,
h3 {
    font-weight: normal;
    line-height: 1.3;
    margin-bottom: 15px;
}

h1 {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    /* Bold to match logo */
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    letter-spacing: -0.5px;
    line-height: 1.2;
}

h2 {
    font-size: 1.8rem;
}

p {
    font-size: 1.1rem;
    margin-bottom: 1em;
}

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

.highlight {
    background-color: var(--accent-yellow);
    padding: 0 5px;
}

/* Cards */
.card {
    background-color: var(--card-color);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    /* Soft shadow or no shadow as per rules */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.03);
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    margin: 20px auto;
}

/* Lists */
ul {
    list-style: none;
    padding: 0;
}

ul li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

ul li::before {
    content: '\2022';

    color: var(--primary-green);
    position: absolute;
    left: 0;
    font-size: 1.5em;
    line-height: 1;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background-color: var(--primary-green);
    color: #fff;
    padding: 18px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: transform 0.2s ease;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
}

.cta-button:hover {
    transform: translateY(-2px);
    opacity: 0.95;
}

.cta-microcopy {
    display: block;
    font-size: 0.85rem;
    color: #666;
    margin-top: 10px;
    text-align: center;
}

/* Section Specifics */
.hero {
    text-align: center;
    padding: 30px 20px 20px;
}

.price-tag {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin: 10px 0;
}

.product-inclusions {
    text-align: left;
    margin: 20px auto;
    padding: 0;
    list-style: none;
    max-width: 100%;
    font-size: 0.95rem;
}

.product-inclusions li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.product-inclusions li span.check {
    color: var(--primary-green);
    margin-right: 10px;
    font-weight: bold;
}

.validation-section {
    border-left: 4px solid var(--emotional-coral);
    padding-left: 20px;
    background: #fff;
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.06),
        0 4px 8px rgba(0, 0, 0, 0.04),
        0 8px 16px rgba(0, 0, 0, 0.03);
    position: relative;
}

/* Validation Section Layout */
.validation-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.validation-text {
    flex: 1;
}

.validation-image {
    flex: 0 0 250px;
    /* Fixed width for image container */
}

.validation-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    mix-blend-mode: multiply;
    /* Blend white background into beige */
    display: block;
    /* Remove bottom gap */
}

@media (max-width: 768px) {
    .validation-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .validation-image {
        flex: auto;
        width: 100%;
        max-width: 300px;
        /* Prevent it from being too huge */
        margin: 0 auto;
    }
}

/* Clarity Section */
.clarity-section {
    background-color: #f2efe6;
    /* Darker beige/sand color */
    padding: 40px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    /* Subtle border definition */
    margin: 40px 0;
    text-align: center;
}

/* Insight Note Box Component */
.insight-note {
    background-color: rgba(0, 0, 0, 0.03);
    /* Subtle contrast from --bg-color */
    border-left: 3px solid var(--primary-green);
    padding: 16px 20px;
    margin: 10px auto 30px;
    text-align: left;
    max-width: 90%;
    /* Keep it focused */
    border-radius: 0 4px 4px 0;
    /* Soften the right corners only */
}

.insight-label {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 0.05em;
    color: #8c8c88;
    /* Low contrast gray */
    margin-bottom: 8px;
    font-family: sans-serif;
    /* Clean contrast to the serif body */
}

.insight-text {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    color: var(--text-color);
    font-weight: normal;
}

footer {
    text-align: center;
    font-size: 0.9rem;
    color: #888;
    margin-top: 60px;
    padding-bottom: 40px;
}

/* Social Link (Instagram) */
.social-link {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--primary-green);
    text-decoration: none;
    border-bottom: 1px dotted var(--primary-green);
    transition: opacity 0.3s;
}

.social-link:hover {
    opacity: 0.8;
}

/* --- CRO OPTIMIZATIONS --- */

/* Product Mockup */
/* Carousel */
.carousel {
    position: relative;
    max-width: 100%;
    margin: 20px auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    background: #fff;
    /* Remove fixed height or whitespace */
    display: flex;
    align-items: flex-start;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    /* Ensure track fills container */
}

.carousel-slide {
    min-width: 100%;
    box-sizing: border-box;
    display: flex;
    /* Remove whitespace below inline-block images */
}

.carousel-slide img {
    width: 100%;
    height: auto;
    /* Maintain aspect ratio */
    display: block;
    border-radius: 0;
    /* Container has radius */
    margin: 0;
    object-fit: cover;
    /* Ensure it fills nicely if we enforce height, but auto is safer for matching first image */
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.7);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    color: var(--primary-green);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.carousel-button:hover {
    background: rgba(255, 255, 255, 0.95);
}

.carousel-button.prev {
    left: 15px;
}

.carousel-button.next {
    right: 15px;
}

.carousel-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 8px;
    height: 8px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: var(--primary-green);
    transform: scale(1.2);
}

/* Visual Steps */
.steps-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.step-card {
    flex: 1;
    min-width: 140px;
    text-align: center;
    background: #fff;
    padding: 20px 10px;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.step-number {
    background-color: var(--primary-green);
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 10px;
    font-weight: bold;
    margin: 0 auto 10px;
    font-weight: bold;
}

.bonus-badge {
    background-color: var(--accent-yellow);
    color: var(--text-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    display: inline-block;
    margin: 0 auto 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Testimonials */
.testimonial-section {
    margin: 20px 0;
}

.testimonial-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 15px;
    border-left: 4px solid var(--accent-yellow);
    font-style: italic;
    font-size: 0.95rem;
}

.user-name {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    font-style: normal;
    font-size: 0.85rem;
    color: var(--text-color);
}

/* Feature List (Product Details) */
.features-list {
    margin-top: 20px;
}

.feature-item {
    background: #f9fdfa;
    /* Very light green tint */
    border: 1px solid #e0e8da;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.feature-icon {
    font-size: 1.5rem;
    margin-right: 15px;
    line-height: 1;
    min-width: 80px;
    /* Slightly larger for the new images */
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-icon img {
    width: 80px;
    height: auto;
    display: block;
}

.feature-content h4 {
    margin: 0 0 5px 0;
    color: var(--primary-green);
    font-size: 1.05rem;
    font-weight: bold;
}

.feature-content p {
    margin: 0;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

/* --- SIMULATION TOOLS STYLES --- */
.sim-card {
    background-color: #fff;
    padding: 25px;
    border-radius: 16px;
    margin-bottom: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.sim-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 5px;
    color: var(--text-color);
    font-style: italic;
}

.sim-desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 25px;
}

.sim-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

@media (max-width: 600px) {
    .sim-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.input-group label {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 8px;
    font-weight: 500;
}

.sim-input {
    width: 100%;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    color: #333;
    transition: border 0.2s;
    box-sizing: border-box;
    /* Critical for padding to not overflow */
}

.sim-input:focus {
    outline: none;
    border-color: var(--primary-green);
    background-color: #fafdfa;
}

.sim-results {
    background-color: #f8f8f6;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

.result-item {
    flex: 1;
    min-width: 120px;
}

.result-label {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.result-value {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-green);
    line-height: 1.2;
    margin-bottom: 5px;
}

.result-sub {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.8rem;
    color: #666;
    display: block;
}

.text-xl {
    font-size: 1.5rem;
}

/* States */
.state-deficit {
    border-left: 5px solid var(--accent-brown);
}

.state-surplus {
    border-left: 5px solid var(--primary-green);
}

.sim-alert {
    margin-top: 20px;
    padding: 15px;
    background-color: #fdf2f0;
    border-radius: 8px;
    color: var(--accent-brown);
    font-size: 0.9rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    border: 1px solid rgba(140, 106, 94, 0.2);
}

/* --- Quickmode / Lite Styles --- */
.sim-lite-wrapper {
    max-width: 600px;
    margin: 40px auto;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.lite-header {
    text-align: center;
    margin-bottom: 30px;
}

.lite-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 10px;
    display: block;
}

.lite-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--text-color);
    margin: 0;
    font-style: italic;
}

.tab-switcher {
    display: flex;
    justify-content: center;
    background: #f4f0e6;
    padding: 6px;
    border-radius: 50px;
    width: fit-content;
    margin: 0 auto 30px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.03);
}

.tab-btn {
    padding: 12px 24px;
    border-radius: 40px;
    border: none;
    background: transparent;
    color: #888;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.tab-btn.active {
    background: var(--primary-green);
    color: #fff;
    box-shadow: 0 4px 10px rgba(107, 127, 62, 0.2);
}

.tab-desc {
    font-size: 0.7rem;
    font-weight: 400;
    opacity: 0.7;
}

.lite-card {
    background: #fbf9f4;
    /* Light beige from reference */
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.info-box {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    border: 1px solid #f0f0f0;
}

.info-icon {
    font-size: 1.5rem;
    color: #8c8c88;
    min-width: 24px;
}

.info-content h4 {
    margin: 0 0 5px 0;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #888;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.info-content p {
    margin: 0;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
}

.lite-action-btn {
    width: 100%;
    background: var(--primary-green);
    color: #fff;
    padding: 16px;
    border-radius: 12px;
    border: none;
    font-size: 1.1rem;
    margin-top: 20px;
    cursor: pointer;
    transition: opacity 0.3s;
}

.lite-action-btn:hover {
    opacity: 0.9;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Adjust simple grid for lite mode inputs to be cleaner */
.lite-input-stack {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Horizontal Scrolling Pricing Grid on Mobile */
@media (max-width: 1024px) {
    .pricing-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding-bottom: 20px;
        /* Space for scrollbar */
        padding-left: 20px;
        /* Start padding */
        padding-right: 20px;
        /* End padding */
        margin-left: -20px;
        /* Offset container padding */
        margin-right: -20px;
        /* Hide scrollbar for cleaner look */
        -ms-overflow-style: none;
        /* IE and Edge */
        scrollbar-width: none;
        /* Firefox */
    }

    .pricing-grid::-webkit-scrollbar {
        display: none;
    }

    .pricing-card {
        flex: 0 0 280px;
        /* Fixed width for cards */
        scroll-snap-align: center;
        margin: 0;
    }

    /* Center the first card initially? No, let them scroll */
}

/* --- Pricing Grid Styles --- */
.container-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.pricing-section {
    padding: 60px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
    align-items: stretch;
}

.pricing-card {
    background: #FFFCF7;
    border: 1px solid #EAE0D5;
    border-radius: 16px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.pricing-card.featured {
    background: #FFF;
    border: 2px solid var(--primary-green);
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 15px 40px rgba(107, 127, 62, 0.15);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.badge-featured {
    background: #C19A6B;
    /* Gold-ish/Bronze for 'Terlaris' */
    color: #FFF;
    font-size: 0.8rem;
    font-weight: bold;
    padding: 6px 16px;
    border-radius: 20px;
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.badge-gratis {
    background: #8C8C88;
    color: #FFF;
    font-size: 0.8rem;
    font-weight: bold;
    padding: 6px 16px;
    border-radius: 20px;
    position: absolute;
    top: -14px;
    left: 20px;
}

.pricing-title {
    font-family: 'Fraunces', serif;
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 5px;
    line-height: 1.3;
    min-height: 50px;
    /* Align titles */
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-img-wrapper {
    height: 140px;
    margin: 15px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.pricing-img-wrapper img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
    margin: 0;
}

.pricing-price {
    font-family: 'Fraunces', serif;
    font-size: 1.5rem;
    color: var(--text-color);
    margin: 10px 0 5px;
    font-weight: bold;
}

.pricing-desc {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
    font-style: italic;
    min-height: 40px;
}

.pricing-features {
    text-align: left;
    margin-bottom: 25px;
    flex-grow: 1;
}

.pricing-features li {
    font-size: 0.85rem;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    color: var(--text-color);
    line-height: 1.4;
}

.pricing-features li::before {
    content: '✓';
    color: var(--primary-green);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.pricing-btn {
    background: #5D6D38;
    /* Slightly darker green */
    color: #fff;
    padding: 12px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95rem;
    transition: background 0.3s;
    width: 100%;
    box-sizing: border-box;
    display: block;
}

.pricing-btn:hover {
    background: var(--primary-green);
}

.pricing-btn.secondary {
    background: #8C8C88;
}

.pricing-btn.secondary:hover {
    background: #757571;
}

/* Responsive Horizontal Slider (Mobile/Tablet) */
@media (max-width: 1024px) {
    .pricing-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        /* Added top padding for badges */
        padding-top: 30px;
        padding-bottom: 20px;
        padding-left: 20px;
        padding-right: 20px;
        margin-left: -20px;
        margin-right: -20px;

        /* Hide scrollbar */
        -ms-overflow-style: none;
        scrollbar-width: none;

        /* Reset grid props */
        grid-template-columns: none;
        align-items: flex-start;
    }

    .pricing-grid::-webkit-scrollbar {
        display: none;
    }

    .pricing-card {
        flex: 0 0 280px;
        /* Fixed width */
        scroll-snap-align: center;
        margin: 0;
        min-width: 280px;
        position: relative;
        overflow: visible;
        /* Allow badges to stick out */
    }

    .pricing-card.featured {
        transform: none;
        /* Reset distinct transform */
        z-index: 5;
        /* Stack above others */
        box-shadow: 0 4px 15px rgba(107, 127, 62, 0.15);
    }

    /* Ensure no vertical margin collapse weirdness */
    .pricing-card.featured:hover {
        transform: none;
    }
}