/* Ingredients & Transparency Page - Styles */
/* Neo-Victorian Futurism Theme with Transparency Focus */

:root {
    --page-bg: #1A1A1A;
    --accent-copper: #c77f57;
    --accent-rose-gold: #e0a078;
    --safety-teal: #2a9d8f;
    --warning-orange: #e76f51;
    --text-light: #E0E0E0;
    --text-muted: #999999;
    --dark-grey: #2a2a2a;
}

/* Hero Section Customization for Ingredients Page */
.ingredients-hero {
    min-height: 500px;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(42, 42, 42, 0.9));
    padding: 100px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.ingredients-hero .page-title {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #e0a078, #c77f57);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    animation: fadeInDown 0.8s ease;
}

.ingredients-hero .page-subtitle {
    font-size: 1.3rem;
    color: #E0E0E0;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.2s both;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Molecule Animation Section */
.molecule-animation-section {
    padding: 80px 20px;
    background: rgba(26, 26, 26, 0.8);
    border-top: 1px solid rgba(199, 127, 87, 0.1);
    border-bottom: 1px solid rgba(199, 127, 87, 0.1);
}

.molecule-visual-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.molecule-monks-fruit,
.molecule-allulose {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.molecule-image {
    width: 180px;
    height: 180px;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: 0 0 50px rgba(199, 127, 87, 0.4),
                0 0 30px rgba(224, 160, 120, 0.3);
    animation: float 4s ease-in-out infinite;
    background: rgba(26, 26, 26, 0.5);
    padding: 10px;
}

.molecule-monks-fruit .molecule-image {
    animation-delay: 0s;
}

.molecule-allulose .molecule-image {
    animation-delay: 0.5s;
}

.fruit-sphere {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #8B6F47, #5a4a2e);
    box-shadow: 0 0 40px rgba(139, 111, 71, 0.4),
                inset -5px -5px 15px rgba(0, 0, 0, 0.5),
                inset 5px 5px 15px rgba(255, 255, 255, 0.1);
    animation: float 4s ease-in-out infinite;
}

.allulose-sphere {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #e0a078, #c77f57);
    box-shadow: 0 0 40px rgba(224, 160, 120, 0.6),
                inset -5px -5px 15px rgba(0, 0, 0, 0.3),
                inset 5px 5px 15px rgba(255, 255, 255, 0.2);
    animation: float 4s ease-in-out infinite 0.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.molecule-label {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #E0E0E0;
    text-align: center;
    font-weight: 500;
}

.molecule-merge-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse-arrow 2s ease-in-out infinite;
}

@keyframes pulse-arrow {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

/* Responsive: Stack on Mobile */
@media (max-width: 768px) {
    .molecule-visual-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .molecule-merge-arrow {
        transform: rotate(90deg);
    }
}

/* Core Difference Section */
.core-difference-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.95), rgba(42, 42, 42, 0.9));
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #E0A078;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.section-intro {
    font-size: 1.1rem;
    color: #B0B0B0;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

/* Comparison Blocks */
.comparison-blocks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.comparison-block {
    border-radius: 12px;
    padding: 40px;
    border: 2px solid;
    transition: all 0.3s ease;
}

.competitor-warning {
    background: rgba(231, 111, 81, 0.05);
    border-color: rgba(231, 111, 81, 0.3);
}

.competitor-warning:hover {
    background: rgba(231, 111, 81, 0.1);
    box-shadow: 0 10px 40px rgba(231, 111, 81, 0.15);
}

.pure-monk-highlight {
    background: rgba(199, 127, 87, 0.08);
    border-color: rgba(224, 160, 120, 0.5);
}

.pure-monk-highlight:hover {
    background: rgba(199, 127, 87, 0.15);
    box-shadow: 0 10px 40px rgba(224, 160, 120, 0.25);
}

.block-header {
    margin-bottom: 30px;
    border-bottom: 2px solid;
    padding-bottom: 20px;
}

.competitor-warning .block-header {
    border-color: rgba(231, 111, 81, 0.3);
}

.pure-monk-highlight .block-header {
    border-color: rgba(224, 160, 120, 0.3);
}

.block-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.competitor-warning .block-title {
    color: #e76f51;
}

.pure-monk-highlight .block-title {
    color: #e0a078;
}

.block-subtitle {
    font-size: 0.95rem;
    color: #999999;
    font-style: italic;
}

.block-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.warning-icon,
.check-icon {
    font-size: 2.5rem;
    text-align: center;
}

.block-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.block-list li {
    padding: 15px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.2);
    border-left: 4px solid;
}

.competitor-warning .block-list li {
    border-color: #e76f51;
}

.pure-monk-highlight .block-list li {
    border-color: #e0a078;
}

.list-item-label {
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}

.competitor-warning .list-item-label {
    color: #e76f51;
}

.pure-monk-highlight .list-item-label {
    color: #e0a078;
}

.cite-link {
    color: #e0a078;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cite-link:hover {
    color: #f5b894;
}

/* Transparency Callout */
.transparency-callout {
    background: linear-gradient(135deg, rgba(42, 157, 143, 0.1), rgba(42, 157, 143, 0.05));
    border: 2px solid rgba(42, 157, 143, 0.3);
    border-radius: 12px;
    padding: 30px 40px;
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-top: 40px;
}

.callout-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.callout-content h4 {
    font-size: 1.3rem;
    color: #2a9d8f;
    margin-bottom: 10px;
}

.callout-content p {
    color: #B0B0B0;
    line-height: 1.8;
}

/* Sway Formulation Section */
.sway-formulation-section {
    padding: 100px 20px;
    background: rgba(26, 26, 26, 0.7);
}

.formulation-specs-container {
    max-width: 1000px;
    margin: 0 auto;
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.spec-item {
    background: rgba(199, 127, 87, 0.08);
    border-left: 4px solid #e0a078;
    border-radius: 8px;
    padding: 25px;
    transition: all 0.3s ease;
}

.spec-item:hover {
    background: rgba(199, 127, 87, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(199, 127, 87, 0.2);
}

.spec-label {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #e0a078;
    margin-bottom: 10px;
    font-weight: 600;
}

.spec-value {
    color: #B0B0B0;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Nutritional Facts Section */
.nutritional-facts-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, rgba(42, 42, 42, 0.9), rgba(26, 26, 26, 0.95));
    border-top: 1px solid rgba(199, 127, 87, 0.1);
}

.nutrition-facts-container {
    max-width: 500px;
    margin: 0 auto;
}

.nutrition-facts-panel {
    background: rgba(199, 127, 87, 0.05);
    border: 2px solid rgba(199, 127, 87, 0.3);
    border-radius: 12px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.facts-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #e0a078;
    margin-bottom: 25px;
    text-align: center;
    border-bottom: 2px solid rgba(199, 127, 87, 0.2);
    padding-bottom: 15px;
}

.facts-table {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.fact-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(199, 127, 87, 0.1);
}

.fact-row:last-child {
    border-bottom: none;
}

.fact-label {
    color: #B0B0B0;
    font-weight: 500;
}

.fact-value {
    color: #e0a078;
    font-weight: 700;
    font-size: 1.1rem;
}

.facts-disclaimer {
    color: #888888;
    font-size: 0.85rem;
    text-align: center;
    line-height: 1.6;
    font-style: italic;
}

/* Health & Safety Section */
.health-safety-section {
    padding: 100px 20px;
    background: rgba(26, 26, 26, 0.8);
}

.assurance-checklist {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.assurance-item {
    background: rgba(199, 127, 87, 0.08);
    border-radius: 12px;
    padding: 30px;
    border-left: 5px solid #e0a078;
    transition: all 0.3s ease;
    display: flex;
    gap: 20px;
}

.assurance-item:hover {
    background: rgba(199, 127, 87, 0.15);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(199, 127, 87, 0.2);
}

.assurance-icon {
    font-size: 2rem;
    flex-shrink: 0;
    line-height: 1;
}

.assurance-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #e0a078;
    margin-bottom: 10px;
    margin-top: 0;
}

.assurance-content p {
    color: #B0B0B0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Why It Matters Section */
.why-it-matters-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(42, 157, 143, 0.05), rgba(199, 127, 87, 0.05));
    border-top: 1px solid rgba(199, 127, 87, 0.1);
    border-bottom: 1px solid rgba(199, 127, 87, 0.1);
}

.why-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.why-card {
    background: rgba(199, 127, 87, 0.08);
    border-radius: 12px;
    padding: 40px;
    border-top: 4px solid #e0a078;
    transition: all 0.3s ease;
}

.why-card:hover {
    background: rgba(199, 127, 87, 0.15);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(199, 127, 87, 0.2);
}

.why-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #e0a078;
    margin-bottom: 15px;
}

.why-card p {
    color: #B0B0B0;
    line-height: 1.8;
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(199, 127, 87, 0.1), rgba(224, 160, 120, 0.05));
    text-align: center;
    border-top: 1px solid rgba(199, 127, 87, 0.2);
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #e0a078;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.1rem;
    color: #B0B0B0;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 14px 35px;
    border-radius: 8px;
    border: none;
    font-weight: 700;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #c77f57;
    color: white;
    box-shadow: 0 8px 30px rgba(199, 127, 87, 0.3);
}

.btn-primary:hover {
    background: #e0a078;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(224, 160, 120, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #e0a078;
    border: 2px solid #e0a078;
}

.btn-secondary:hover {
    background: rgba(199, 127, 87, 0.1);
    transform: translateY(-2px);
}

.hashtag {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #c77f57;
    margin-top: 30px;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .ingredients-hero .page-title {
        font-size: 2.2rem;
    }
    
    .ingredients-hero .page-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .comparison-blocks {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .comparison-block {
        padding: 25px;
    }
    
    .transparency-callout {
        flex-direction: column;
        text-align: center;
    }
    
    .molecule-visual-container {
        gap: 20px;
    }
    
    .fruit-sphere,
    .allulose-sphere {
        width: 90px;
        height: 90px;
    }
    
    .spec-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .cta-section {
        display: none;
    }
    
    .comparison-block {
        page-break-inside: avoid;
    }
}

/* ===== NEW ACCORDION & CARD STYLES ===== */

/* Comparison Cards Wrapper */
.comparison-cards-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

/* Comparison Card Styles */
.comparison-card {
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
}

.competitor-warning-card {
    background: linear-gradient(135deg, rgba(231, 111, 81, 0.15), rgba(231, 111, 81, 0.05));
    border: 2px solid rgba(231, 111, 81, 0.3);
}

.competitor-warning-card:hover {
    border-color: rgba(231, 111, 81, 0.6);
    background: linear-gradient(135deg, rgba(231, 111, 81, 0.2), rgba(231, 111, 81, 0.1));
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(231, 111, 81, 0.15);
}

.puremonk-highlight-card {
    background: linear-gradient(135deg, rgba(199, 127, 87, 0.15), rgba(199, 127, 87, 0.05));
    border: 2px solid rgba(199, 127, 87, 0.3);
}

.puremonk-highlight-card:hover {
    border-color: rgba(199, 127, 87, 0.6);
    background: linear-gradient(135deg, rgba(199, 127, 87, 0.2), rgba(199, 127, 87, 0.1));
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(199, 127, 87, 0.15);
}

.card-header {
    margin-bottom: 25px;
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #E0E0E0;
}

.competitor-warning-card .card-title {
    color: #e76f51;
}

.puremonk-highlight-card .card-title {
    color: #c77f57;
}

.card-subtitle {
    font-size: 0.95rem;
    color: #999999;
    font-style: italic;
    margin: 0;
}

.card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 12px;
}

.card-list li:last-child {
    margin-bottom: 0;
}

.list-icon {
    font-size: 1.3rem;
    min-width: 30px;
    text-align: center;
}

.list-text {
    color: #E0E0E0;
    line-height: 1.6;
}

/* Info Box */
.info-box {
    background: linear-gradient(135deg, rgba(42, 157, 143, 0.1), rgba(42, 157, 143, 0.05));
    border-left: 4px solid #2a9d8f;
    padding: 25px;
    border-radius: 8px;
    margin: 40px 0;
    font-size: 1.05rem;
    color: #E0E0E0;
    line-height: 1.8;
}

.info-box p {
    margin: 0;
}

/* ===== ACCORDION STYLES ===== */

.deep-dive-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(42, 42, 42, 0.6));
}

.accordion-container {
    margin: 50px 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.accordion-item {
    border: 1px solid rgba(199, 127, 87, 0.2);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    background: rgba(42, 42, 42, 0.5);
    transition: all 0.3s ease;
}

.accordion-item.active {
    border-color: rgba(199, 127, 87, 0.5);
    background: rgba(42, 42, 42, 0.8);
    box-shadow: 0 5px 20px rgba(199, 127, 87, 0.1);
}

.accordion-header {
    cursor: pointer;
    padding: 20px 25px;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.6), rgba(42, 42, 42, 0.4));
    border: none;
    width: 100%;
    text-align: left;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header:hover {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(42, 42, 42, 0.6));
}

.accordion-title {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #c77f57;
    flex: 1;
}

.accordion-icon {
    font-size: 1.5rem;
    color: #c77f57;
    transition: all 0.3s ease;
    min-width: 30px;
    text-align: right;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-body {
    padding: 25px;
    color: #E0E0E0;
    background: rgba(42, 42, 42, 0.3);
}

.accordion-body p {
    margin: 0 0 15px 0;
    line-height: 1.8;
    font-size: 1rem;
}

.accordion-body h4 {
    margin: 20px 0 15px 0;
    color: #c77f57;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
}

.benefits-list,
.quality-list,
.ratio-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li,
.quality-list li,
.ratio-benefits li {
    padding: 8px 0;
    color: #E0E0E0;
    line-height: 1.7;
    padding-left: 20px;
    position: relative;
}

.benefits-list li:before,
.quality-list li:before,
.ratio-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2a9d8f;
    font-weight: bold;
}

/* Nutrition Facts Simple */
.nutrition-facts-simple {
    display: grid;
    gap: 15px;
}

.fact-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(199, 127, 87, 0.1);
}

.fact-item:last-child {
    border-bottom: none;
}

.fact-key {
    color: #999999;
    font-weight: 500;
}

.fact-value {
    color: #c77f57;
    font-size: 1.1rem;
}

.certification-note {
    color: #2a9d8f;
    font-size: 0.95rem;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(42, 157, 143, 0.2);
}

/* ===== RESPONSIVE ACCORDION & CARDS ===== */

@media (max-width: 768px) {
    .comparison-cards-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .competitor-warning-card,
    .puremonk-highlight-card {
        padding: 20px;
    }
    
    .card-title {
        font-size: 1.5rem;
    }
    
    .accordion-container {
        margin: 30px 0;
    }
    
    .accordion-item {
        margin-bottom: 10px;
    }
    
    .accordion-header {
        padding: 15px 20px;
    }
    
    .accordion-title {
        font-size: 1.1rem;
    }
    
    .accordion-body {
        padding: 20px;
    }
    
    .info-box {
        padding: 20px;
        margin: 30px 0;
    }

    /* Breaking News Section - Mobile */
    .breaking-news-alert-section {
        padding: 30px 20px;
    }

    .news-article-grid {
        flex-direction: column;
        gap: 30px;
    }

    .news-image-container {
        width: 100%;
    }

    .news-featured-image {
        width: 100%;
        height: auto;
    }

    .health-concerns-list {
        grid-template-columns: 1fr;
    }

    .solution-comparison {
        flex-direction: column;
    }

    .solution-item {
        padding: 20px;
    }
}

/* Modern Health Report Section - Neo-Victorian Futurism Theme */
.health-report-section {
    background: #1A1A1A;
    padding: 0;
    margin: 60px 0;
}

/* Hero Section */
.report-hero {
    position: relative;
    padding: 80px 20px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(199, 127, 87, 0.05), rgba(26, 26, 26, 0.95));
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(199, 127, 87, 0.08), transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(224, 160, 120, 0.05), transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.investigation-tag {
    display: inline-block;
    background: #e76f51;
    color: #1A1A1A;
    padding: 10px 18px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero-headline {
    font-size: 3rem;
    font-weight: 800;
    color: #c77f57;
    margin: 0 0 15px 0;
    line-height: 1.2;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
}

.hero-meta {
    font-size: 1rem;
    color: #E0E0E0;
    margin: 0;
    font-weight: 500;
}

/* Report Container */
.report-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* Article Showcase */
.article-showcase {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 40px;
    align-items: start;
    margin-bottom: 80px;
    padding: 40px;
    background: #2a2a2a;
    border: 2px solid #c77f57;
    border-radius: 0;
}

.article-image-wrapper {
    position: relative;
}

.article-image {
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    display: block;
    border: 1px solid #c77f57;
}

.article-credit {
    font-size: 0.9rem;
    color: #999999;
    margin-top: 12px;
    text-align: center;
    font-weight: 500;
}

.article-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.article-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #E0E0E0;
    margin: 0;
}

.article-intro strong {
    color: #e0a078;
    font-weight: 700;
}

/* Report Content */
.report-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

/* Section Block */
.section-block {
    padding: 40px;
    background: #2a2a2a;
    border: 1px solid #c77f57;
    border-radius: 0;
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.section-block.full-width {
    grid-column: 1 / -1;
}

.section-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    flex-shrink: 0;
}

.problem-icon {
    background: rgba(224, 160, 120, 0.2);
    color: #e0a078;
}

.section-icon svg {
    width: 32px;
    height: 32px;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #c77f57;
    margin: 0;
}

.section-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #E0E0E0;
    margin: 12px 0 0 0;
}

/* Grid Section Title */
.grid-section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e76f51;
    margin: 0 0 30px 0;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.feature-card {
    padding: 30px;
    background: #2a2a2a;
    border: 1px solid #e76f51;
    border-radius: 0;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(231, 111, 81, 0.05);
    border-color: #e76f51;
    transform: translateY(-5px);
}

.risk-card {
    border-color: #e76f51;
}

.risk-card:hover {
    border-color: #e76f51;
    background: rgba(231, 111, 81, 0.08);
}

.card-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    margin-bottom: 16px;
}

.risk-icon {
    background: rgba(231, 111, 81, 0.15);
    color: #e76f51;
}

.risk-icon svg {
    width: 28px;
    height: 28px;
}

.feature-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #e0a078;
    margin: 0 0 12px 0;
}

.feature-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #E0E0E0;
    margin: 0;
}

/* Solution Highlight */
.solution-highlight {
    padding: 50px;
    background: linear-gradient(135deg, rgba(42, 157, 143, 0.08), rgba(199, 127, 87, 0.05));
    border: 2px solid #2a9d8f;
    border-radius: 0;
}

.solution-content {
    margin-bottom: 40px;
}

.solution-title {
    font-size: 2rem;
    font-weight: 800;
    color: #2a9d8f;
    margin: 0 0 16px 0;
}

.solution-intro {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #E0E0E0;
    margin: 0;
}

.solution-intro strong {
    color: #c77f57;
    font-weight: 700;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.benefit-card {
    padding: 25px;
    background: #2a2a2a;
    border: 1px solid #2a9d8f;
    border-radius: 0;
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-card:hover {
    background: rgba(42, 157, 143, 0.08);
    border-color: #2a9d8f;
    transform: translateY(-3px);
}

.benefit-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    border-radius: 0;
}

.safe-icon {
    background: rgba(42, 157, 143, 0.15);
    color: #2a9d8f;
}

.taste-icon {
    background: rgba(224, 160, 120, 0.15);
    color: #e0a078;
}

.gut-icon {
    background: rgba(199, 127, 87, 0.15);
    color: #c77f57;
}

.health-icon {
    background: rgba(231, 111, 81, 0.15);
    color: #e76f51;
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
}

.benefit-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #E0E0E0;
    margin: 0 0 10px 0;
}

.benefit-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #E0E0E0;
    margin: 0;
}

/* Report Conclusion */
.report-conclusion {
    padding: 40px;
    background: #2a2a2a;
    border-left: 4px solid #c77f57;
    border-radius: 0;
    text-align: center;
}

.conclusion-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: #e0a078;
    margin: 0;
    line-height: 1.8;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .health-report-section {
        margin: 40px 0;
    }

    .report-hero {
        padding: 50px 20px;
    }

    .hero-headline {
        font-size: 2rem;
    }

    .report-container {
        padding: 40px 20px;
    }

    .article-showcase {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 25px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 25px;
    }

    .solution-highlight {
        padding: 30px;
    }

    .solution-title {
        font-size: 1.5rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .report-content {
        gap: 30px;
    }

    .section-block {
        flex-direction: column;
        padding: 25px;
    }

    .section-title {
        font-size: 1.3rem;
    }
}
