/* ... Previous styles ... */
/* Append this to the end or overwrite. I'll overwrite with the new additions */

:root {
    --primary-color: #FF69B4;
    /* Hot Pink */
    --primary-hover: #ff4da6;
    --primary-light: rgba(255, 105, 180, 0.2);
    --primary-shadow: rgba(255, 105, 180, 0.4);
    --primary-shadow-hover: rgba(255, 105, 180, 0.6);

    --secondary-color: #9C27B0;
    /* Purple */
    --success-color: #4CAF50;
    --text-color: #333333;
    --text-secondary: #666666;
    /* ... rest of vars */
    --bg-dark: #FFFFFF;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(0, 0, 0, 0.1);
    --card-bg: #FFFFFF;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --transition-speed: 0.3s;
    --border-radius: 16px;
}

/* ... existing code ... */

.btn-large:hover {
    background: var(--primary-light);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--primary-light);
}

/* ... existing code ... */

.btn-box:hover {
    background: var(--primary-light);
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px var(--primary-shadow);
}

/* ... existing code ... */

.btn-primary {
    background: var(--primary-color);
    color: white;
    border: none;
    width: 100%;
    padding: 18px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 30px var(--primary-shadow);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: auto;
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 15px 35px var(--primary-shadow-hover);
}

/* ... existing code ... */

.checkbox-list-item:hover {
    background: var(--primary-light);
    transform: translateX(4px);
    border-color: var(--primary-light);
}

.checkbox-list-item.selected {
    background: var(--primary-light);
    border-color: var(--primary-color);
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    position: relative;
}

.background-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 20s infinite ease-in-out;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-color);
    top: -100px;
    left: -100px;
}

.blob-2 {
    width: 300px;
    height: 300px;
    background: var(--secondary-color);
    bottom: -50px;
    right: -50px;
    animation-delay: -5s;
}

.blob-3 {
    width: 200px;
    height: 200px;
    background: #2196F3;
    top: 40%;
    left: 40%;
    animation-delay: -10s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    33% {
        transform: translate(30px, -50px);
    }

    66% {
        transform: translate(-20px, 20px);
    }
}

.app-container {
    width: 100%;
    max-width: 480px;
    height: 100vh;
    max-height: 900px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

@media (min-width: 500px) {
    .app-container {
        height: 90vh;
        border-radius: 24px;
        margin: 20px;
    }
}

.quiz-header {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.icon-btn {
    background: none;
    border: none;
    color: var(--text-color);
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: background 0.2s;
}

.icon-btn:hover {
    background: rgba(0, 0, 0, 0.05);
}

.hidden {
    opacity: 0;
    pointer-events: none;
}

.progress-container {
    flex: 1;
    margin: 0 15px;
    transition: opacity 0.3s;
}

.progress-bar-bg {
    width: 100%;
    height: 6px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: var(--primary-color);
    border-radius: 10px;
    width: 0%;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px var(--primary-color);
}

.header-spacer {
    width: 40px;
}

.quiz-content {
    flex: 1;
    padding: 24px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

h1 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 24px;
}

/* Button Layouts */
.stacked {
    display: flex;
    flex-direction: column;
}

.side-by-side {
    display: flex;
    gap: 16px;
    width: 100%;
}

.btn-large {
    width: 100%;
    padding: 16px;
    margin-bottom: 16px;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    color: var(--text-color);
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-large:hover {
    background: var(--primary-light);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--primary-shadow);
}

.btn-large .arrow {
    opacity: 0.5;
    transition: transform 0.2s;
}

.btn-large:hover .arrow {
    opacity: 1;
    transform: translateX(4px);
}

.btn-box {
    flex: 1;
    padding: 30px 10px;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    color: var(--text-color);
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-box:hover {
    background: var(--primary-light);
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px var(--primary-shadow);
}

.grid-2x2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    width: 100%;
}

.card-option {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 12px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.2s;
    text-align: center;
}

.card-option img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: top;
    border-radius: 12px;
    margin-bottom: 12px;
}

.card-option:hover {
    background: var(--primary-color);
    /* Fallback or modify opacity? Original had rgba */
    /* Let's use a subtle opacity mix if possible or just use the variable if defined with alpha.
       Reverting to using a rgba that matches the probable primary color is hard if primary changes.
       Best way is using `opacity` on pseudo element or `color-mix` if supported, or JS.
       But here, let's just assume we can set a semi-transparent variable or use a simple hack.
       
       Actually, `rgba(255, 105, 180, 0.2)` was hardcoded.
       I can use `var(--primary-color)` but I need opacity.
       I will set a `--primary-bg` variable in JS or CSS.
       For now, let's use a trick: `background: color-mix(in srgb, var(--primary-color), transparent 80%);`
       Modern browsers support this. If not, I'll rely on JS setting `--primary-bg`? 
       Wait, let's just make it simple. I'll define `--card-selected-bg` in root and update it in JS too.
    */
    background: rgba(0, 0, 0, 0.05);
    /* Neutral hover */
    background: rgba(0, 0, 0, 0.05);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.card-option.selected {
    border-color: var(--primary-color);
    background: rgba(0, 0, 0, 0.05);
}

.card-label {
    font-weight: 600;
    font-size: 14px;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    border: none;
    width: 100%;
    padding: 18px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 30px var(--primary-shadow);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: auto;
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 15px 35px var(--primary-shadow-hover);
}

.btn-success {
    background: var(--success-color);
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.4);
}

.btn-success:hover {
    background: #43A047;
    box-shadow: 0 15px 35px rgba(76, 175, 80, 0.6);
}

.fade-in-up {
    animation: fadeInUp 0.5s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

.stagger-1 {
    animation-delay: 0.1s;
}

.stagger-2 {
    animation-delay: 0.2s;
}

.stagger-3 {
    animation-delay: 0.3s;
}

.stagger-4 {
    animation-delay: 0.4s;
}

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

.slider-container {
    width: 100%;
    margin: 30px 0;
    text-align: center;
}

.slider-value {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

input[type=range] {
    -webkit-appearance: none;
    width: 100%;
    background: transparent;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 28px;
    width: 28px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    margin-top: -12px;
    box-shadow: 0 0 15px var(--primary-color);
}

input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 4px;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 2px;
}

.checkbox-option {
    display: flex;
    align-items: center;
    padding: 16px;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    margin-bottom: 10px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.2s;
}

.checkbox-option.selected {
    border-color: var(--primary-color);
    background: var(--primary-light);
}

.checkbox-circle {
    width: 24px;
    height: 24px;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.checkbox-option.selected .checkbox-circle {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-circle::after {
    content: '✓';
    color: white;
    font-size: 16px;
    display: none;
}

.checkbox-option.selected .checkbox-circle::after {
    display: block;
}

.analysis-container {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 16px;
    margin: 20px 0;
}

.graph-row {
    margin-bottom: 15px;
}

.graph-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    font-size: 14px;
}

.graph-bar-bg {
    height: 8px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
}

.graph-bar-fill {
    height: 100%;
    background: var(--primary-color);
    border-radius: 4px;
    width: 0;
    transition: width 1s ease-out;
}

.img-wrapper {
    width: 100%;
    height: 280px;
    overflow: hidden;
    margin-bottom: 12px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gender-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    mix-blend-mode: multiply;
    border-radius: 8px;
}

.btn-box {
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.btn-label {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.transition-img {
    max-width: 100%;
    height: auto;
    max-height: 50vh;
    object-fit: contain;
    border-radius: 16px;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.card-option {
    position: relative;
    /* Needed for absolute positioning of checkmark */
}

.card-check-indicator {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid white;
    border-radius: 50%;
    transition: all 0.2s;
    z-index: 2;
}

.card-option.selected .card-check-indicator {
    background: var(--success-color);
    border-color: var(--success-color);
}

.card-option.selected .card-check-indicator::after {
    content: '?';
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
    font-weight: bold;
}


.checkbox-list-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.checkbox-list-item {
    display: flex;
    align-items: center;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 10px;
    cursor: pointer;
    transition: all 0.2s;
}

.checkbox-list-item:hover {
    background: var(--primary-light);
    transform: translateX(4px);
    border-color: var(--primary-light);
}

.checkbox-list-item.selected {
    background: var(--primary-light);
    border-color: var(--primary-color);
}

.list-item-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 16px;
}

.list-item-label {
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
}

.list-item-check {
    width: 28px;
    height: 28px;
    border: 2px solid #ddd;
    border-radius: 6px;
    margin-right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
}

.checkbox-list-item.selected .list-item-check {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-list-item.selected .list-item-check::after {
    content: '✔';
    color: white;
    font-size: 18px;
    font-weight: bold;
}


/* Ruler Silder Styles */
.ruler-container {
    width: 100%;
    margin: 40px 0;
    text-align: center;
}

.unit-toggle {
    display: inline-flex;
    background: #f0f0f0;
    border-radius: 8px;
    padding: 4px;
    margin-bottom: 20px;
}

.unit-option {
    padding: 6px 16px;
    font-size: 14px;
    color: #888;
    border-radius: 6px;
    cursor: pointer;
}

.unit-option.active {
    background: var(--primary-color);
    color: white;
    font-weight: bold;
}

.value-display-large {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 10px;
}

.value-unit-small {
    font-size: 24px;
    font-weight: 500;
    margin-left: 5px;
}

.ruler-window {
    position: relative;
    width: 100%;
    height: 100px;
    overflow: hidden;
    cursor: grab;
    /* Fade mask on sides */
    mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.ruler-window:active {
    cursor: grabbing;
}

.ruler-scale {
    display: flex;
    align-items: flex-end;
    position: absolute;
    left: 50%;
    /* Start at center */
    height: 100%;
    padding-top: 20px;
    padding-bottom: 30px;
    will-change: transform;
}

.ruler-tick {
    width: 2px;
    /* Thickness of tick */
    background-color: #e0e0e0;
    margin: 0 9px;
    /* Distance between ticks (total width space = 20px roughly) */
    flex-shrink: 0;
    border-radius: 2px;
    position: relative;
}

.tick-major {
    height: 40px;
    background-color: #999;
}

.tick-minor {
    height: 20px;
}

.tick-label {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    color: #999;
}

.center-indicator {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background-color: var(--primary-color);
    transform: translateX(-50%);
    z-index: 10;
    border-radius: 2px;
}

.center-indicator::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 10px solid var(--primary-color);
}

.drag-hint {
    font-size: 12px;
    color: #aaa;
    margin-top: 10px;
}


/* --- Sales Page Styles --- */

.sales-page-container {
    padding: 10px;
    max-width: 100%;
}

.sales-headline {
    color: var(--primary-color);
    font-size: 22px;
    font-weight: 800;
    text-align: center;
    line-height: 1.3;
    margin-bottom: 24px;
}

/* Comparison Section */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 30px;
}

.comparison-card {
    background: transparent;
    text-align: center;
}

.comparison-header {
    background: #ffe0e9;
    /* Light Pink for 'Hoje' */
    color: black;
    font-weight: bold;
    padding: 8px;
    border-radius: 6px;
    margin-bottom: 10px;
    font-size: 14px;
}

.comparison-header.blue {
    background: #e3f2fd;
    /* Light Blue for 'Depois' */
}

.comparison-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: top center;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Progress Bars in Sales Page */
.stat-comparison {
    margin-top: 10px;
    text-align: left;
}

.stat-label {
    font-size: 12px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
    display: block;
}

.stat-sublabel {
    font-size: 11px;
    color: #888;
    margin-bottom: 4px;
    display: block;
}

.stat-bar-bg {
    height: 8px;
    background: #eee;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 12px;
}

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

/* Pricing Box */
.pricing-box {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    margin: 20px 0;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.pricing-header {
    background: var(--primary-color);
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
}

.pricing-body {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pricing-title {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 18px;
    max-width: 60%;
    text-align: left;
}

.pricing-value {
    text-align: right;
    background: #f5f5f5;
    padding: 8px 12px;
    border-radius: 6px;
}

.pricing-small-label {
    display: block;
    font-size: 10px;
    color: #888;
}

.pricing-price {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: #333;
}

.btn-cta-green {
    width: 100%;
    background-color: #25d366;
    /* WhatsApp Green style */
    color: white;
    padding: 18px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: pulse 2s infinite;
    text-transform: uppercase;
}

.btn-cta-green:hover {
    background-color: #128c7e;
}

/* Benefits List */
.benefits-list {
    margin: 30px 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--primary-color);
}

.benefit-item span {
    color: #555;
    /* Text color */
}

.check-icon-green {
    width: 20px;
    height: 20px;
    background: #25d366;
    color: white;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 12px;
    flex-shrink: 0;
}

/* Stats Circles */
.stats-row {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 30px 0;
}

.stat-circle-card {
    flex: 1;
    background: white;
    padding: 20px 10px;
    border-radius: 12px;
    border: 1px solid #eee;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.circle-chart {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 6px solid #fecce0;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    color: #333;
    position: relative;
}

/* Use conic-gradient for the fill effect if needed, simplistic for now */

.stat-text {
    font-size: 12px;
    color: #333;
    line-height: 1.4;
    font-weight: 600;
}

/* Features List (Icons) */
.features-container {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    margin: 30px 0;
}

.feature-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.feature-icon {
    font-size: 24px;
    color: #555;
    flex-shrink: 0;
    width: 30px;
}

.feature-content h4 {
    margin: 0 0 4px;
    font-size: 16px;
    color: #333;
}

.feature-content p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

/* FAQ & Others */
.faq-section {
    margin: 40px 0;
}

.section-title-pink {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-q {
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 6px;
}

.faq-a {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

.scarcity-band {
    background: #e8f5e9;
    color: #2e7d32;
    text-align: center;
    padding: 10px;
    border-radius: 6px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 10px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1);
    }
}


/* Chart Step Styles */
.chart-container {
    background: white;
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.chart-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
}

.chart-svg {
    width: 100%;
    height: 100%;
}

.chart-goal-label {
    background: var(--primary-color);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: bold;
    position: absolute;
    bottom: 20px;
    right: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.chart-goal-label::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
}

.chart-disclaimer {
    font-size: 11px;
    color: #999;
    text-align: center;
    margin-top: 15px;
    line-height: 1.4;
}