/* Global Styles */
:root {
    --primary-pink: #E91E63;
    --primary-blue: #2196F3;
    --accent-yellow: #FFEB3B;
    --text-dark: #1F2937;
    --text-light: #4B5563;
    --bg-light: #F3F4F6;
    --white: #FFFFFF;
    --gradient-main: linear-gradient(135deg, #E91E63 0%, #2196F3 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --glass-bg: rgba(255, 255, 255, 0.9);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    /* Prevent horizontal scroll */
    width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    color: #111827;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
}

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

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-dark);
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-pink);
}

.nav-cta {
    background: var(--gradient-main);
    color: var(--white) !important;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-weight: 600 !important;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(233, 30, 99, 0.3);
}

/* Hero Section */
.hero {
    background: var(--white);
    padding: 5rem 0;
    border-bottom: 1px solid #E5E7EB;
    background-image: radial-gradient(circle at top right, rgba(33, 150, 243, 0.05), transparent 40%),
        radial-gradient(circle at bottom left, rgba(233, 30, 99, 0.05), transparent 40%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.tag {
    display: inline-block;
    background: #FCE7F3;
    color: #BE185D;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-main);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.author-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--white);
    box-shadow: var(--shadow-md);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.byline {
    font-size: 1rem;
    color: var(--text-dark);
}

.date {
    font-size: 0.875rem;
    color: var(--text-light);
}

.hero-image {
    position: relative;
    text-align: center;
}

.product-hero-img {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s ease;
}

.product-hero-img:hover {
    transform: scale(1.02);
}

.rating-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #F3F4F6;
}

.stars {
    color: #FBBF24;
    font-size: 1.25rem;
    letter-spacing: 2px;
}

.score {
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--text-dark);
}

/* Main Content Layout */
.main-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.content-wrapper section {
    margin-bottom: 3rem;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

/* Intro */
.intro p {
    margin-bottom: 1.2rem;
    font-size: 1.125rem;
    color: #374151;
}

/* Science Section */
.science-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.info-box {
    background: #EFF6FF;
    border-left: 4px solid var(--primary-blue);
    padding: 1.5rem;
    border-radius: 0 12px 12px 0;
    margin: 1.5rem 0;
}

.info-box h3 {
    color: #1E40AF;
    margin-bottom: 0.5rem;
}

/* Ingredients */
.ingredient-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.ingredient-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.ingredient-card:hover {
    transform: translateY(-5px);
    background: #FFF;
    box-shadow: var(--shadow-md);
    border-color: #E5E7EB;
}

.ingredient-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.ingredient-card h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-pink);
}

.note {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

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

.for-you,
.not-for-you {
    padding: 2rem;
    border-radius: 16px;
}

.for-you {
    background: #ECFDF5;
    /* Light green bg */
    border: 1px solid #A7F3D0;
}

.not-for-you {
    background: #FEF2F2;
    /* Light red bg */
    border: 1px solid #FECACA;
}

.for-you h3 {
    color: #059669;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.not-for-you h3 {
    color: #DC2626;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.comparison-box ul li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
    font-size: 1rem;
}

.comparison-box ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.for-you ul li::before {
    background: #059669;
}

.not-for-you ul li::before {
    background: #DC2626;
}

/* FAQ Section */
.faq-section h2 {
    margin-bottom: 2rem;
}

.faq-item {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #E5E7EB;
    padding-bottom: 1.5rem;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.faq-item p {
    color: var(--text-light);
}

/* Pricing & CTA */
.cta-box {
    background: var(--gradient-main);
    color: var(--white);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    margin-top: 2rem;
    box-shadow: 0 20px 25px -5px rgba(233, 30, 99, 0.15), 0 10px 10px -5px rgba(233, 30, 99, 0.1);
}

.cta-box h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-button {
    display: inline-block;
    background: var(--white);
    color: var(--primary-pink);
    font-size: 1.25rem;
    font-weight: 800;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    margin: 2rem 0;
    box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.39);
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.23);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.small-text {
    font-size: 0.875rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Sidebar */
.sidebar-widget {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.author-widget img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 1rem;
    object-fit: cover;
    border: 4px solid var(--bg-light);
}

/* User Reviews Section */
.reviews-section h2 {
    margin-bottom: 1.5rem;
}

.review-group {
    margin-bottom: 2rem;
}

.review-group h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.review-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.review-card {
    padding: 1.5rem;
    border-radius: 16px;
    position: relative;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.review-card.positive {
    background-color: #ECFDF5;
    border: 1px solid #A7F3D0;
}

.review-card.neutral {
    background-color: #F3F4F6;
    border: 1px solid #E5E7EB;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--white);
    box-shadow: var(--shadow-sm);
}

.reviewer-info {
    display: flex;
    flex-direction: column;
}

.reviewer-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.reviewer-loc {
    font-size: 0.8rem;
    color: var(--text-light);
}

.review-card p {
    font-style: italic;
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.5;
}

.review-card .comment {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    font-style: normal;
    opacity: 0.8;
    color: var(--text-light);
}

/* Pricing Table */
.pricing-table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    min-width: 100%;
    /* Allow it to shrink if needed, wrapper handles scroll */
    /* Ensure it doesn't squish too much on mobile */
}

.pricing-table th,
.pricing-table td {
    padding: 1.2rem;
    text-align: center;
    border-bottom: 1px solid #E5E7EB;
}

.pricing-table th {
    background: #F9FAFB;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

.highlight-row {
    background-color: #FFFBEB;
    /* Light yellow */
}

.highlight-row td {
    color: #92400E;
    /* Dark yellow/brown */
    font-weight: 500;
}

.recommendation-box {
    background: #EFF6FF;
    border: 1px solid #BFDBFE;
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.recommendation-box h3 {
    color: #1E40AF;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

/* Final Verdict Section */
.final-verdict-section {
    background: var(--white);
}

.verdict-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
}

.verdict-scores {
    background: #F9FAFB;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #E5E7EB;
}

.verdict-scores h3 {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.score-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #E5E7EB;
}

.score-item:last-of-type {
    border-bottom: none;
}

.score-item span:first-child {
    font-weight: 500;
    color: var(--text-dark);
}

.total-score {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid #E5E7EB;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.25rem;
}

.total-score strong {
    color: var(--primary-pink);
    font-size: 1.5rem;
}

.verdict-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    .verdict-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
}

.summary-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.bar {
    width: 60%;
    height: 8px;
    background: #E5E7EB;
    border-radius: 4px;
    overflow: hidden;
}

.fill {
    height: 100%;
    background: var(--primary-pink);
    border-radius: 4px;
}

.sidebar-cta {
    display: block;
    background: var(--text-dark);
    color: var(--white);
    padding: 1rem;
    border-radius: 12px;
    font-weight: 600;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.sidebar-cta:hover {
    background: var(--primary-pink);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Footer */
footer {
    background: var(--white);
    padding: 4rem 0;
    text-align: center;
    border-top: 1px solid #E5E7EB;
    margin-top: 4rem;
}

.disclaimer {
    font-size: 0.75rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 1rem auto 0;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {

    /* Global Reset for Mobile */
    .container {
        width: 100%;
        padding: 0 1.5rem;
        max-width: 100%;
    }

    /* Navigation */
    .nav-links {
        display: none;
    }

    .nav-container {
        justify-content: center;
    }

    /* Typography */
    body {
        font-size: 18px;
        /* Larger base font */
    }

    h1 {
        font-size: 2.5rem !important;
        line-height: 1.2;
    }

    h2 {
        font-size: 2rem !important;
        line-height: 1.3;
    }

    h3 {
        font-size: 1.5rem !important;
    }

    p,
    li {
        font-size: 1.1rem;
        line-height: 1.6;
    }

    /* Hero Section */
    .hero {
        padding: 2rem 0;
        text-align: center;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .hero-text {
        order: 2;
        /* Text below image on mobile */
    }

    .hero-image {
        order: 1;
        /* Image on top */
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .product-hero-img {
        max-width: 80%;
        /* Don't take full width, looks better */
        height: auto;
    }

    .author-meta {
        justify-content: center;
        flex-direction: column;
        gap: 0.5rem;
    }

    /* Main Content Structure */
    .main-content {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        padding-top: 2rem;
    }

    .content-wrapper {
        width: 100%;
    }

    .content-wrapper section {
        padding: 1.5rem;
        margin-bottom: 2rem;
        text-align: center;
        /* Center text as requested */
    }

    /* Sidebar */
    .sidebar {
        order: 2;
        /* Sidebar at bottom */
    }

    /* Specific Components */
    .exec-header {
        flex-direction: column;
        gap: 0.5rem;
        justify-content: center;
    }

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

    .comparison-box {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .comparison-box ul li {
        text-align: left;
        /* Keep list items left aligned for readability, but centered container */
        display: inline-block;
        text-align: left;
    }

    /* Center the list container itself */
    .comparison-box ul {
        display: inline-block;
        text-align: left;
    }

    .verdict-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .score-item {
        flex-direction: row;
        justify-content: space-between;
    }

    /* Pricing Table */
    .pricing-table th,
    .pricing-table td {
        padding: 0.8rem 0.5rem;
        font-size: 0.9rem;
    }

    .pricing-table-wrapper {
        margin: 1.5rem -1rem;
        /* Bleed slightly */
        width: calc(100% + 2rem);
        border-radius: 0;
    }

    /* Personal Photo */
    .personal-photo {
        margin: 2rem 0;
        max-width: 100%;
        border: none;
        background: transparent;
        box-shadow: none;
        padding: 0;
        transform: none;
    }
}



/* Personal Photo Styles */
.personal-photo {
    margin: 2rem auto;
    text-align: center;
    background: transparent;
    padding: 0;
    border-radius: 8px;
    box-shadow: none;
    transform: none;
    max-width: 80%;
    border: none;
}

.personal-photo img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    box-shadow: var(--shadow-md);
}

.personal-photo figcaption {
    margin-top: 0.8rem;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    color: var(--text-light);
    font-size: 1rem;
}

/* Executive Summary */
.exec-summary {
    background: #EFF6FF;
    border: 1px solid #BFDBFE;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    box-shadow: var(--shadow-sm);
}

.exec-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    border-bottom: 1px solid #DBEAFE;
    padding-bottom: 0.5rem;
}

.exec-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #1E40AF;
    letter-spacing: 0.05em;
}

.exec-rating {
    background: #10B981;
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.9rem;
}

.exec-content p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: #374151;
}

.exec-link {
    display: inline-block;
    margin-top: 0.5rem;
    color: var(--primary-pink);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: underline;
}

/* Comparison Table */
.comparison-section {
    margin-top: 3rem;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 1.5rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #E5E7EB;
}

.comparison-table th {
    background: #F3F4F6;
    font-weight: 700;
    color: var(--text-dark);
}

.comparison-table .highlight-col {
    background: #ECFDF5;
    color: #065F46;
    border-bottom: 2px solid #059669;
}

.comparison-table td.check {
    color: #059669;
    font-weight: 600;
    background: #ECFDF5;
}

.comparison-table td.cross {
    color: #DC2626;
    font-weight: 600;
    background: #FEF2F2;
}

/* Quiz Section */
.quiz-section {
    margin: 3rem 0;
}

.quiz-container {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 1px solid #E5E7EB;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.quiz-start h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.quiz-start-btn,
.quiz-cta-btn {
    background: var(--primary-pink);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    margin-top: 1.5rem;
    transition: transform 0.2s;
}

.quiz-start-btn:hover,
.quiz-cta-btn:hover {
    transform: scale(1.05);
}

.quiz-question {
    width: 100%;
    max-width: 500px;
}

.quiz-question h3 {
    color: var(--text-light);
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.quiz-question p {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quiz-btn {
    background: #F3F4F6;
    border: 2px solid #E5E7EB;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 500;
}

.quiz-btn:hover {
    background: #E5E7EB;
    border-color: #D1D5DB;
}

.quiz-result .result-header {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.quiz-result .warning {
    color: #DC2626;
}

.quiz-result .success {
    color: #059669;
}

.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Timeline */
.timeline-container {
    margin-top: 1.5rem;
    position: relative;
    padding-left: 2rem;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #E5E7EB;
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
}

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

.timeline-marker {
    position: absolute;
    left: -2.45rem;
    top: 0.25rem;
    width: 16px;
    height: 16px;
    background: var(--primary-pink);
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: 0 0 0 2px var(--primary-pink);
}

.timeline-content h4 {
    font-size: 1.1rem;
    color: var(--primary-pink);
    margin-bottom: 0.25rem;
}

.timeline-content p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* Price Anchoring */
.price-anchoring {
    background: #FFFBEB;
    border: 1px solid #FCD34D;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.price-anchoring h3 {
    color: #B45309;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.scarcity-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #B91C1C;
    font-weight: 500;
}

.daily-cost {
    font-size: 0.8rem;
    color: #059669;
    font-weight: 600;
    display: block;
    margin-top: 0.25rem;
}

/* Sticky CTA */
.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    z-index: 2000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    display: none;
    /* Hidden by default on desktop */
}

@media (max-width: 768px) {
    .sticky-cta-bar {
        display: block;
        /* Visible logic handled by JS class */
    }

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

.sticky-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.sticky-content span {
    font-weight: 600;
    color: #DC2626;
    font-size: 0.9rem;
}

.sticky-btn {
    background: var(--primary-pink);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: var(--shadow-md);
}
/* Mobile Responsiveness Fixes */
@media (max-width: 768px) {
    .final-verdict-section {
        padding: 1rem;
    }

    .verdict-container {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }

    .verdict-scores, .verdict-text {
        width: 100%;
    }

    .cta-box {
        padding: 1.5rem;
    }

    .cta-button {
        width: 100%;
        padding: 1rem;
        font-size: 1.1rem;
    }

    .pricing-table-wrapper {
        margin: 1rem 0;
        width: 100%;
    }
    
    .pricing-table th, .pricing-table td {
        padding: 0.5rem;
        font-size: 0.8rem;
    }
}
