/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-color: #f8f8f7;
    --container-bg: #ffffff;
    --text-color: #37352f;
    --heading-color: #000000;
    --border-color: rgba(0, 0, 0, 0.06);
    --shadow-color: rgba(0, 0, 0, 0.06);
    --blockquote-bg: linear-gradient(135deg, #f7f6f3 0%, #fafafa 100%);
    --feature-bg: #fefefe;
    --button-bg: linear-gradient(135deg, #000000 0%, #2d2d2d 100%);
    --button-hover-bg: linear-gradient(135deg, #1a1a1a 0%, #3d3d3d 100%);
}

[data-theme="dark"] {
    --bg-color: #1a1a1a;
    --container-bg: #2d2d2d;
    --text-color: #e6e6e6;
    --heading-color: #ffffff;
    --border-color: rgba(255, 255, 255, 0.1);
    --shadow-color: rgba(0, 0, 0, 0.3);
    --blockquote-bg: linear-gradient(135deg, #3a3a3a 0%, #404040 100%);
    --feature-bg: #353535;
    --button-bg: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    --button-hover-bg: linear-gradient(135deg, #e0e0e0 0%, #d0d0d0 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    font-size: 16px;
    background-color: var(--bg-color);
    transition: background-color 0.3s ease, color 0.3s ease;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Container */
.container {
    background-color: transparent;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Content container for sections after hero */
.content-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 24px;
    background-color: var(--container-bg);
    box-shadow: 0 0 0 1px var(--border-color);
    border-radius: 8px;
    margin-top: 120px;
    /* Space for fixed header */
    margin-bottom: 40px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* For pages without fixed header (main landing page) */
.hero+.content-container {
    margin-top: 40px;
}

/* Typography */
/* Header styling */
.header-content {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

h1 {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    transition: color 0.3s ease;
}

h2 {
    font-size: 1.875rem;
    font-weight: 600;
    line-height: 1.3;
    margin-top: 56px;
    margin-bottom: 28px;
    color: var(--heading-color);
    position: relative;
    transition: color 0.3s ease;
}

h3 {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    margin-top: 32px;
    margin-bottom: 12px;
    color: var(--heading-color);
    transition: color 0.3s ease;
}

h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 12px;
    margin-bottom: 12px;
    color: var(--heading-color);
    transition: color 0.3s ease;
}

p {
    margin-bottom: 16px;
    color: var(--text-color);
    transition: color 0.3s ease;
}

/* Links */
a {
    color: #0066cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Blockquote */
blockquote {
    margin: 32px 0;
    padding: 20px 28px;
    border-left: 4px solid var(--heading-color);
    background: var(--blockquote-bg);
    font-style: italic;
    border-radius: 8px;
    transition: all 0.3s ease;
}

blockquote cite {
    display: block;
    margin-top: 8px;
    font-style: normal;
    font-size: 0.9rem;
    color: #6b6b6b;
}

/* Lists */
ol,
ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

ol li,
ul li {
    margin-bottom: 8px;
}

ol li strong {
    font-weight: 600;
    color: var(--heading-color);
}

.checklist {
    list-style: none;
    padding-left: 0;
}

.checklist li {
    margin-bottom: 8px;
    color: var(--text-color);
}

/* Sections */
section {
    margin-bottom: 48px;
}

/* Hero */
.hero {
    min-height: 100vh;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, #2D1B69 0%, #11047A 50%, #5B2C87 100%);
    color: white;
}

.hero-content {
    max-width: 680px;
    padding: 40px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero .eyebrow {
    width: fit-content;
    align-self: center;
    display: inline-block;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    padding: 6px 10px;
    margin-bottom: 12px;
}

.hero h2 {
    margin-top: 8px;
    margin-bottom: 12px;
    font-size: 2rem;
    color: white;
}

.hero .subheading {
    font-size: 1.05rem;
    max-width: 48ch;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 32px;
}

.secondary-cta {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background-color: transparent;
    color: var(--heading-color);
    text-decoration: none;
    transition: all 0.2s ease;
}

.hero .secondary-cta {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.secondary-cta:hover {
    background-color: var(--feature-bg);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px var(--shadow-color);
}

.hero .secondary-cta:hover {
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-badges {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 32px;
}

.hero-badges span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    padding: 6px 10px;
}

.hero-quote {
    margin: 0 auto;
    padding: 0 24px 40px 24px;
    max-width: 500px;
    background: none;
    border: none;
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    font-size: 1rem;
    line-height: 1.5;
}

.hero-quote cite {
    display: block;
    margin-top: 8px;
    font-style: normal;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

/* Features */
.feature {
    margin-bottom: 32px;
    padding: 24px;
    background-color: var(--feature-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 1px 3px var(--shadow-color);
    transition: all 0.2s ease;
}

.feature:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

.feature h3 {
    margin-top: 0;
}

/* Pricing */
.pricing-card {
    background-color: var(--container-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 32px;
    margin: 24px auto;
    max-width: 350px;
    box-shadow: 0 2px 12px var(--shadow-color);
    transition: all 0.3s ease;
}

.original-price {
    text-decoration: line-through;
    text-decoration-thickness: 2px;
    color: var(--text-color);
    opacity: 0.6;
    display: inline-block;
    margin-right: 4px;
    font-size: 1.25rem;
}

.current-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--heading-color);
    display: inline;
}

.pricing-card h3 {
    margin-top: 0;
    color: var(--heading-color);
}

/* Theme Toggle */
.theme-toggle {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.2s ease;
    color: white;
    backdrop-filter: blur(10px);
}

.theme-toggle:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: var(--button-bg);
    color: var(--container-bg);
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 24px;
    box-shadow: 0 4px 12px var(--shadow-color);
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.hero .cta-button {
    background: linear-gradient(135deg, #8B5CF6 0%, #06B6D4 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
    margin-top: 0;
}

.cta-button:hover {
    background: var(--button-hover-bg);
    box-shadow: 0 6px 20px var(--shadow-color);
    transform: translateY(-2px);
    text-decoration: none;
}

.hero .cta-button:hover {
    background: linear-gradient(135deg, #7C3AED 0%, #0891B2 100%);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
    transform: translateY(-2px);
}

[data-theme="dark"] .cta-button {
    color: #1a1a1a;
}

[data-theme="dark"] .hero .cta-button {
    color: white;
}

/* Dark theme tweaks for pricing readability */
[data-theme="dark"] .original-price {
    color: #c0c0c0;
}

.cta-button:active {
    transform: translateY(0);
}

/* FAQ */
.faq-item {
    margin-bottom: 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: var(--feature-bg);
    transition: all 0.2s ease;
}

.faq-item:hover {
    box-shadow: 0 2px 8px var(--shadow-color);
    transform: translateY(-1px);
}

.faq-item summary {
    padding: 20px 24px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--heading-color);
    cursor: pointer;
    list-style: none;
    user-select: none;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color 0.2s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text-color);
    transition: transform 0.3s ease, color 0.2s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
    color: var(--heading-color);
}

.faq-content {
    padding: 0 24px 24px 24px;
    animation: slideDown 0.3s ease-out;
}

.faq-item:not([open]) .faq-content {
    animation: slideUp 0.3s ease-in;
}

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

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

@keyframes slideUp {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}

.faq-content p {
    margin-bottom: 12px;
}

.faq-content p:last-child {
    margin-bottom: 0;
}

/* Final CTA section */
.cta-final {
    text-align: center;
    margin-top: 64px;
    padding-top: 48px;
    border-top: 1px solid #f1f1ef;
}

.contact {
    margin-top: 24px;
    font-size: 0.9rem;
    color: #6b6b6b;
}

/* Inverted report header - dark on light theme, light on dark theme */
.report-header {
    background: linear-gradient(135deg, #37352f 0%, #2d2d2d 100%);
    color: white;
    text-align: center;
    margin-bottom: 40px;
    padding: 40px;
    border-radius: 12px;
}

.content-container .report-header h1 {
    margin: 0;
    font-size: 1.8em;
    font-weight: 600;
    color: white !important;
    margin-bottom: 8px;
    text-shadow: none;
    border-bottom: none;
    padding-bottom: 0;
}

.report-header p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1em;
}

/* Dark theme - invert to light header */
[data-theme="dark"] .report-header {
    background: linear-gradient(135deg, #f8f8f7 0%, #ffffff 100%);
    color: #37352f;
}

[data-theme="dark"] .content-container .report-header h1 {
    color: #37352f !important;
}

[data-theme="dark"] .report-header p {
    color: rgba(55, 53, 47, 0.8);
}

.report-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
    gap: 16px;
    flex-wrap: wrap;
}

/* Create navigation groups */
.nav-group {
    display: flex;
    gap: 8px;
    align-items: center;
}

.nav-group+.nav-group {
    margin-left: 24px;
}

.report-nav a {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--container-bg);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
    font-weight: 500;
    white-space: nowrap;
}

.report-nav a:hover {
    background-color: var(--feature-bg);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow-color);
    text-decoration: none;
}

/* Special styling for overview link */
.report-nav a[href*="overview"] {
    background-color: var(--feature-bg);
    border: 2px solid var(--border-color);
    font-weight: 600;
}

.report-nav a[href*="overview"]:hover {
    background-color: var(--blockquote-bg);
    border-color: var(--heading-color);
}

/* Remove report-content - using content-container instead */

/* Regular content h1 styling */
.content-container h1 {
    color: var(--heading-color);
    border-bottom: 3px solid var(--heading-color);
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.content-container h2 {
    color: var(--heading-color);
    margin-top: 40px;
    margin-bottom: 20px;
}

.content-container h3 {
    color: #0066cc;
    margin-top: 30px;
    margin-bottom: 15px;
}

.highlight-box {
    background: var(--blockquote-bg);
    padding: 25px;
    border-left: 4px solid #0066cc;
    margin: 30px 0;
    border-radius: 8px;
}

.stat-highlight {
    background: #f0f8ff;
    padding: 20px;
    border-left: 4px solid #0066cc;
    margin: 20px 0;
    font-weight: 600;
    border-radius: 6px;
}

[data-theme="dark"] .stat-highlight {
    background: #1a2332;
    border-left-color: #4d9fff;
}

.key-insight {
    background: #fff8e1;
    padding: 25px;
    border: 2px solid #ff9800;
    border-radius: 10px;
    margin: 25px 0;
}

[data-theme="dark"] .key-insight {
    background: #2a1f0f;
    border-color: #ffb74d;
}

.strategy-box {
    background: #f0f8f0;
    padding: 25px;
    border: 2px solid #4caf50;
    border-radius: 10px;
    margin: 25px 0;
}

[data-theme="dark"] .strategy-box {
    background: #1a2e1a;
    border-color: #66bb6a;
}

.challenge-box {
    background: #ffebee;
    padding: 25px;
    border: 2px solid #f44336;
    border-radius: 10px;
    margin: 25px 0;
}

[data-theme="dark"] .challenge-box {
    background: #2a1a1a;
    border-color: #ef5350;
}

.competitor-profile {
    background: var(--feature-bg);
    padding: 25px;
    margin: 25px 0;
    border-radius: 10px;
    border-left: 4px solid #0066cc;
    border: 1px solid var(--border-color);
}

.strengths {
    background: #e8f5e8;
    padding: 20px;
    border-radius: 8px;
    margin: 15px 0;
}

[data-theme="dark"] .strengths {
    background: #1a2e1a;
}

.weaknesses {
    background: #fff3e0;
    padding: 20px;
    border-radius: 8px;
    margin: 15px 0;
}

[data-theme="dark"] .weaknesses {
    background: #2a1f0f;
}

.report-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    font-size: 0.95em;
    background: var(--container-bg);
}

.report-table th,
.report-table td {
    padding: 15px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.report-table th {
    background: var(--feature-bg);
    color: var(--heading-color);
    font-weight: 600;
}

.report-table tr:nth-child(even) {
    background: var(--feature-bg);
}

/* Simple mobile table scroll */
@media (max-width: 768px) {
    .report-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

.financial-highlight {
    background: #e3f2fd;
    padding: 25px;
    border-left: 4px solid #2196f3;
    margin: 25px 0;
    text-align: center;
    font-size: 1.1em;
    font-weight: 600;
    border-radius: 8px;
}

[data-theme="dark"] .financial-highlight {
    background: #1a2332;
    border-left-color: #42a5f5;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.nav-card {
    background: var(--container-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px var(--shadow-color);
}

.nav-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--shadow-color);
    text-decoration: none;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.nav-card h3 {
    color: #0066cc;
    margin: 0;
    font-size: 1.3em;
    flex: 1;
}

.nav-card p {
    margin: 0;
    color: var(--text-color);
    font-size: 0.95em;
    line-height: 1.5;
}

.section-number {
    background: #0066cc;
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8em;
    font-weight: bold;
    flex-shrink: 0;
}

.meta-info {
    background: var(--container-bg);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    margin-bottom: 40px;
}

.meta-info h3 {
    margin-top: 0;
    color: #0066cc;
}

/* Desktop improvements */
@media (min-width: 1024px) {
    .content-container {
        max-width: 900px;
        padding: 40px 48px;
    }

    .report-header {
        margin-bottom: 50px;
        padding: 50px;
    }

    .report-nav {
        margin: 60px 0;
    }
}

/* Responsive adjustments for reports */
@media (max-width: 768px) {
    .content-container {
        margin-top: 100px;
        /* Adjusted for smaller fixed header */
        padding: 20px 16px;
        margin-left: 4px;
        margin-right: 4px;
    }

    /* Removed redundant report-content */

    .report-nav {
        flex-direction: column;
        gap: 16px;
        align-items: center;
        margin: 30px 0;
    }

    .nav-group {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .nav-group+.nav-group {
        margin-left: 0;
        margin-top: 8px;
    }

    .report-nav a {
        text-align: center;
        margin: 0;
        padding: 14px 20px;
        width: 100%;
    }

    .overview-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .nav-card {
        padding: 25px;
    }

    .report-header {
        margin-bottom: 30px;
        padding: 30px 20px;
    }

    .report-header h1 {
        font-size: 1.5em;
    }
}

/* Additional responsive tweaks */
@media (max-width: 768px) {

    .header-content {
        padding: 15px 20px;
    }

    h1 {
        font-size: 1.2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .pricing-card {
        padding: 24px;
    }

    .hero-content {
        padding: 40px 20px;
    }

    .hero h2 {
        font-size: 1.6rem;
    }

    .hero .subheading {
        font-size: 1rem;
    }

    .hero-ctas {
        flex-direction: column;
        gap: 8px;
        margin-top: 48px;
    }

    .hero-badges {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .hero-quote {
        margin: 0 auto;
        padding: 0 20px 30px 20px;
        font-size: 0.95rem;
    }
}

/* Handwritten Note Styling - Yellow Sticky Note */
.handwritten-note {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 30px 0;
    transform: rotate(-1deg);
    transition: transform 0.3s ease;
}

.handwritten-note:hover {
    transform: rotate(0deg) scale(1.02);
}

.note-content {
    background: linear-gradient(135deg, #ffeb3b 0%, #fff176 50%, #ffee58 100%);
    background-image:
        linear-gradient(90deg, rgba(255, 193, 7, 0.1) 1px, transparent 1px),
        linear-gradient(rgba(255, 193, 7, 0.1) 1px, transparent 1px);
    background-size: 24px 24px;
    padding: 20px 24px;
    box-shadow:
        0 4px 8px rgba(0, 0, 0, 0.1),
        0 6px 20px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border-radius: 3px;
    max-width: 320px;
    position: relative;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #2e2e2e;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.note-content::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 20px;
    width: 20px;
    height: 15px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transform: rotate(45deg);
}

.note-content::after {
    content: '';
    position: absolute;
    top: -6px;
    right: 25px;
    width: 15px;
    height: 12px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transform: rotate(-30deg);
}

.note-content p {
    margin-bottom: 12px;
    color: #2e2e2e;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.8);
}

.note-content p:last-child {
    margin-bottom: 0;
}

.note-content a {
    color: #1976d2;
    text-decoration: underline;
    text-decoration-color: rgba(25, 118, 210, 0.6);
}

.note-content a:hover {
    color: #0d47a1;
    text-decoration-color: #0d47a1;
}

/* Dark theme adjustments for sticky note */
[data-theme="dark"] .note-content {
    background: linear-gradient(135deg, #f9a825 0%, #fbc02d 50%, #fdd835 100%);
    color: #1a1a1a;
    box-shadow:
        0 4px 8px rgba(0, 0, 0, 0.3),
        0 6px 20px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

[data-theme="dark"] .note-content p {
    color: #1a1a1a;
    text-shadow: none;
}

[data-theme="dark"] .note-content a {
    color: #0d47a1;
}

/* Week-by-week roadmap styling */
.week-section {
    margin: 40px 0;
}

.week-header {
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: white;
    padding: 20px 25px;
    border-radius: 8px;
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.2);
}

.day-by-day {
    background: var(--feature-bg);
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 3px solid #0066cc;
}

.validation-test {
    background: #fff8e1;
    border: 2px solid #ff9800;
    border-radius: 8px;
    padding: 15px;
    margin: 15px 0;
    font-style: italic;
}

.key-principle {
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
    border: 2px solid #0066cc;
    border-radius: 12px;
    padding: 25px;
    margin: 30px 0;
    font-size: 1.1em;
    font-weight: 500;
    position: relative;
    box-shadow: 0 2px 12px rgba(0, 102, 204, 0.1);
}


/* Dark theme adjustments for week sections */
[data-theme="dark"] .week-header {
    background: linear-gradient(135deg, #4d9fff 0%, #0066cc 100%);
}

[data-theme="dark"] .validation-test {
    background: #2a1f0f;
    border-color: #ffb74d;
    color: #e6e6e6;
}

[data-theme="dark"] .key-principle {
    background: linear-gradient(135deg, #1a2332 0%, #213040 100%);
    border-color: #4d9fff;
    color: #e6e6e6;
}