/* Base & Reset */
:root {
    --primary: #d95a20;
    /* Burnt orange matching screenshot */
    --primary-hover: #c44d18;
    --secondary: #000000;
    /* Pure black for high visibility headings */
    --bg-color: #f5f2ea;
    /* Warm beige matching screenshot */
    --surface: #f5f2ea;
    --text-main: #000000;
    --text-light: #000000;
    /* Changed from grey to near black for subheadings */
    --border: #e0dcd2;
    --success-text: #166534;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
    --container-width: 800px;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-color);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    padding-bottom: 80px;
    /* Space for sticky CTA */
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--secondary);
    line-height: 1.2;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s;
}

/* Layout */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.25rem;
}

.review-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 2.5rem 1.25rem;
    background: var(--surface);
}

.article-body p {
    font-size: 1.15rem;
    color: #000000;
}

/* Header */
.navbar {
    background: var(--secondary);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo .accent {
    color: var(--primary);
}

/* Hero Section */
.hero-section {
    margin-bottom: 3rem;
}

.hero-headline {
    font-size: 2.2rem;
    margin-bottom: 1.25rem;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .hero-headline {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
}

.author-byline {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.author-avatar {
    border-radius: 50%;
    width: 45px;
    height: 45px;
    object-fit: cover;
}

.author-info p {
    margin: 0;
    font-size: 0.95rem;
}

.hero-image-wrapper {
    margin: 2rem -1.25rem;
    /* Full bleed on mobile */
}

.hero-image-wrapper .hero-image {
    width: 100%;
    height: auto; /* Allow natural height based on width */
    object-fit: contain; /* Ensure full image is visible */
    object-position: center;
    display: block;
}

@media (min-width: 768px) {
    .hero-image-wrapper {
        margin: 2rem 0;
        border-radius: 12px;
        overflow: hidden;
    }
}

/* Buttons */
.cta-button {
    display: block;
    width: 100%;
    text-align: center;
    padding: 1rem;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.primary-cta {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 6px -1px rgba(217, 90, 32, 0.4);
}

.primary-cta:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    color: white;
    box-shadow: 0 6px 12px -2px rgba(217, 90, 32, 0.5);
}

/* Content Sections */
.content-section {
    margin: 3.5rem 0;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }
}

/* Infographic Layout */
.infographic-wrapper {
    position: relative;
    margin: 3rem 0;
    padding-left: 2rem;
}

.infographic-line {
    position: absolute;
    left: 25px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary);
    z-index: 1;
}

.info-node {
    position: relative;
    margin-bottom: 2.5rem;
    z-index: 2;
}

.info-node-icon {
    position: absolute;
    left: -2rem;
    top: 0;
    width: 50px;
    height: 50px;
    background: #1e1b18;
    border: 3px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.info-node-content {
    margin-left: 2.5rem;
    background: #1e1b18;
    /* Matched the dark cards */
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 5px solid var(--primary);
    color: #e5e5e5;
}

.info-node-header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    /* On mobile it might wrap */
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.info-amount {
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
}

.info-name {
    color: white;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.info-node-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    color: #b0aba3;
}

@media (min-width: 768px) {
    .infographic-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem 1.5rem;
        padding-left: 0;
        padding-top: 25px;
    }

    .infographic-line {
        display: none;
    }

    .info-node {
        position: relative;
        margin-bottom: 0;
        padding-top: 25px;
        height: auto; /* Let the content define it, but grid row will stretch it */
        display: flex;
        flex-direction: column;
    }

    .info-node-icon {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        z-index: 3;
    }

    .info-node-content {
        margin-left: 0;
        border-left: 5px solid var(--primary);
        flex: 1; /* Stretch to fill the flex container (info-node) */
        padding-top: 2.25rem;
        display: flex;
        flex-direction: column;
        height: 100%; /* Ensure it fills the parent */
    }

    .info-node-content p {
        flex-grow: 1;
    }
}

/* Timeline */
.line-title {
    display: flex;
    align-items: center;
}

.timeline {
    position: relative;
    margin: 2.5rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 2rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #d8d3c5;
}

.timeline-item {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    min-height: 4.5rem;
}

.timeline-marker {
    background: #c85012;
    /* vivid orange */
    color: white;
    width: 4rem;
    height: 4.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1.1;
    z-index: 2;
    flex-shrink: 0;
}

.timeline-content {
    margin-left: 1.5rem;
}

.timeline-content p {
    font-size: 1.15rem;
    color: var(--secondary);
    margin: 0;
    line-height: 1.4;
}

.timeline-content strong {
    font-weight: 700;
    color: #000;
}

/* Images & Quotes */
.article-image {
    margin: 2.5rem -1.25rem;
}

@media (min-width: 768px) {
    .article-image {
        margin: 2.5rem 0;
    }
}

.article-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Comparison Chart */
.comparison-chart {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .comparison-chart {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

.compare-card {
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.industry-side {
    background: #e0dcd2;
    /* Muted grey out */
    color: #444;
}

.attaboy-side {
    background: #1e1b18;
    /* Premium dark */
    color: #e5e5e5;
    box-shadow: 0 10px 25px -5px rgba(217, 90, 32, 0.15);
    /* Soft orange glow */
}

.compare-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 1rem;
}

.attaboy-side .compare-title {
    color: white;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.compare-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.compare-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.4;
}

.compare-list li:last-child {
    margin-bottom: 0;
}

.compare-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-top: 2px;
}

.x-icon {
    color: #ef4444;
    /* Red X */
}

.check-icon {
    color: var(--primary);
    /* Brand Orange Check */
}

/* Mid CTA Card */
.mid-cta-card {
    background: white;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    margin: 4rem 0;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
}

.product-mini-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 650px) {
    .product-mini-showcase {
        flex-direction: row;
        align-items: flex-start;
    }
}

.mini-tub {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 8px;
    /* Removed the realistic shadow since the bundle image is already stylized with a black background/shadows */
}

.product-mini-details {
    flex: 1;
    width: 100%;
}

.product-mini-details h3 {
    font-size: 1.7rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.price-text {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: bold;
    margin-bottom: 1rem;
}

ul.pros-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

ul.pros-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--secondary);
}

ul.pros-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-text);
    font-weight: bold;
    font-size: 1.1rem;
}

.shipping-note {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 1rem;
    margin-bottom: 0;
    text-align: center;
}

/* Sticky Mobile CTA */
.sticky-mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 0.75rem 1.25rem;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.sticky-mobile-cta.visible {
    transform: translateY(0);
}

.sticky-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-width);
    margin: 0 auto;
    gap: 1rem;
}

.sticky-text {
    display: flex;
    flex-direction: column;
}

.sticky-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--secondary);
    line-height: 1.1;
}

.sticky-price {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.9rem;
}

.sticky-btn {
    padding: 0.75rem 1.5rem;
    width: auto;
    font-size: 1.1rem;
    margin: 0;
}

@media (min-width: 850px) {
    .sticky-mobile-cta {
        display: none !important;
        /* Hide on desktop */
    }
}

/* Benefits Infographic */
.benefits-infographic {
    background-color: #f0eee7;
    padding: 3rem 2rem;
    margin: 3rem 0;
    text-align: left;
}

.benefits-title {
    font-size: 2.25rem;
    line-height: 1.1;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.benefits-line {
    width: 100%;
    height: 2px;
    background-color: #000;
    margin-bottom: 2rem;
}

.benefit-item {
    margin-bottom: 2rem;
}

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

.benefit-name {
    color: #e35a1f; /* Brighter orange from screenshot */
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: var(--font-body); /* Looks sans-serif in screenshot */
    letter-spacing: -0.5px;
}

.benefit-item p {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.5;
    color: #000;
    margin-bottom: 0;
}

/* Footer */
.site-footer {
    background: var(--secondary);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.site-footer .logo {
    margin-bottom: 1rem;
}

.site-footer p {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.site-footer .disclaimer {
    font-size: 0.75rem;
    margin-top: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1.25rem;
}