:root {
    /* Premium Color Palette */
    --primary-color: #6A4C93;
    /* Deep Purple */
    --primary-light: #8E72B3;
    --accent-color: #FFD700;
    --gold: #FFD700;
    /* Gold */
    --text-color: #333333;
    --text-light: #666666;
    --background-color: #F9F9F9;
    --white: #FFFFFF;
    --border-color: #E0E0E0;
    --success-color: #4CAF50;

    /* Spacing */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.5;
    font-size: 16px;
    height: 100vh;
    display: flex;
    justify-content: center;
}

#app {
    width: 100%;
    max-width: 480px;
    /* Mobile max width */
    background-color: var(--white);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

/* Header & Progress */
#quiz-header {
    padding: var(--spacing-md);
    background-color: var(--white);
    z-index: 10;
}

.progress-container {
    width: 100%;
    height: 6px;
    background-color: #F0F0F0;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: var(--spacing-sm);
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 10px;
}

.step-indicator {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Main Content */
#quiz-content {
    flex: 1;
    padding: var(--spacing-md) var(--spacing-lg);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    /* justify-content: center;  Removed to allow top alignment for longer content */
    align-items: center;
}

/* Typography */
h1,
h2 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    text-align: center;
    line-height: 1.3;
}

h2 {
    font-size: 1.4rem;
    font-weight: 600;
}

p {
    margin-bottom: var(--spacing-md);
    color: var(--text-color);
    text-align: center;
}

/* Buttons & Options */
.btn {
    display: block;
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, var(--primary-color), #563d7c);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: transform 0.1s, opacity 0.2s;
    margin-top: var(--spacing-md);
    box-shadow: 0 4px 10px rgba(106, 76, 147, 0.2);
}

.btn:active {
    transform: scale(0.98);
}

.btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    box-shadow: none;
}

.option-btn {
    width: 100%;
    padding: 16px;
    margin-bottom: var(--spacing-sm);
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    text-align: left;
    font-size: 1rem;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.option-btn:hover,
.option-btn:active {
    border-color: var(--primary-color);
    background-color: #F8F4FF;
}

.option-btn.selected {
    border-color: var(--primary-color);
    background-color: #F3E5F5;
    color: var(--primary-color);
    font-weight: 500;
    box-shadow: 0 0 0 1px var(--primary-color);
}

.option-emoji {
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Images */
.step-image {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Loading Screens */
.loading-container {
    text-align: center;
    width: 100%;
}

.loading-bar-container {
    width: 100%;
    height: 8px;
    background-color: #eee;
    border-radius: 10px;
    margin: 20px 0;
    overflow: hidden;
}

.loading-bar-fill {
    height: 100%;
    background-color: var(--success-color);
    width: 0%;
    transition: width linear;
}

/* Animations */
.fade-in {
    animation: fadeIn var(--transition-medium);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Helpers */
.text-center {
    text-align: center;
}

.hidden {
    display: none;
}

.mt-4 {
    margin-top: var(--spacing-lg);
}

.subtext {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
}

/* Carousel */
.carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-bottom: var(--spacing-md);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 100%;
}

/* Highlights */
.highlight {
    color: var(--primary-color);
    font-weight: 700;
    background-color: rgba(255, 215, 0, 0.15);
    /* Soft Gold Background */
    padding: 0 4px;
    border-radius: 4px;
}

/* Gradient Chart (ID 16) */
.gradient-chart-container {
    display: flex;
    margin: 50px 0 20px 0;
    height: 200px;
    position: relative;
    padding-left: 30px;
    /* Space for Y-axis labels */
}

.chart-labels-y {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #999;
}

.chart-area-wrapper {
    flex: 1;
    position: relative;
    border-left: 1px dashed #ddd;
    border-bottom: 1px dashed #ddd;
}

.chart-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.grid-line {
    width: 100%;
    height: 1px;
    background-color: #f0f0f0;
}

.chart-gradient-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #ff6b6b, #feca57, #48dbfb, #1dd1a1);
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
    opacity: 0.6;
}

.chart-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Diagonal line from bottom-left to top-right */
    background: linear-gradient(to top right, transparent 49.5%, #ff9f43 49.5%, #ff9f43 50.5%, transparent 50.5%);
}

.chart-point {
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    transform: translate(-50%, 50%);
}

.point-start {
    left: 0;
    bottom: 0;
}

.point-25 {
    left: 25%;
    bottom: 25%;
}

.point-50 {
    left: 50%;
    bottom: 50%;
}

.point-75 {
    left: 75%;
    bottom: 75%;
}

.user-marker {
    position: absolute;
    left: 0;
    /* Animated to 24% */
    bottom: 0;
    /* Animated to 24% */
    transform: translate(-50%, 50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 1.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0;
    z-index: 10;
}

.marker-dot {
    width: 16px;
    height: 16px;
    background-color: #c0392b;
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.marker-label {
    background-color: #c0392b;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 6px;
    white-space: nowrap;
}

.goal-marker {
    position: absolute;
    right: 0;
    top: 0;
    transform: translate(50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
}

.marker-dot-goal {
    width: 20px;
    height: 20px;
    background-color: #1dd1a1;
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.marker-label-goal {
    background-color: #fff;
    color: #333;
    border: 1px solid #ddd;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 6px;
    white-space: nowrap;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.chart-labels-x {
    display: flex;
    justify-content: space-between;
    padding-left: 30px;
    font-size: 0.7rem;
    color: #999;
    margin-top: 8px;
}

/* Comparison Chart (ID 16) */
.chart-container {
    width: 100%;
    margin: var(--spacing-md) 0;
    padding: var(--spacing-md);
    background: #f8f9fa;
    border-radius: var(--radius-md);
}

.chart-bar-wrapper {
    margin-bottom: var(--spacing-md);
}

.chart-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px;
    font-size: 0.9rem;
    font-weight: 600;
}

.chart-track {
    width: 100%;
    height: 12px;
    background-color: #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
}

.chart-fill {
    height: 100%;
    width: 0%;
    border-radius: 6px;
    transition: width 1.5s ease-out;
}

.fill-current {
    background-color: #ff6b6b;
}

/* Red/Orange for low confidence */
.fill-goal {
    background-color: var(--success-color);
}

/* Green for goal */

/* Big Text */
.text-big {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.4;
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-sm);
}

.control-btn {
    background: rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
}

/* FAQ */
.faq-item {
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

.faq-question {
    background-color: var(--white);
    color: var(--text-color);
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 1rem;
    font-weight: 600;
    transition: 0.4s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:after {
    content: '\002B';
    color: #777;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}

.faq-question.active:after {
    content: "\2212";
}

.faq-answer {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    color: #555;
    font-size: 0.95rem;
}

/* =========================================
   SALES PAGE STYLES
   ========================================= */

/* Hero Section */
.sales-hero {
    background: var(--white);
    color: var(--text-color);
    padding: 40px 20px;
    text-align: center;
    border-radius: 0 0 20px 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    /* Added slight shadow for depth against white */
}

.headline {
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    line-height: 1.2;
    color: var(--primary-color);
}

.subheadline-gold {
    color: #000000;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-text {
    font-size: 1rem;
    line-height: 1.5;
    opacity: 0.9;
}

/* General Section Styles */
section {
    padding: 30px 0;
}

.section-title {
    color: var(--primary-color);
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
}

/* Grids - Force Single Column for Mobile */
.grid-2x2,
.comparison-grid,
.curriculum-grid,
.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.grid-item {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.grid-image {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.grid-content {
    padding: 20px;
}

.grid-content p {
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--text-color);
}

/* Bible Verse */
.bible-verse {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background: rgba(42, 27, 61, 0.05);
    border-radius: 10px;
    font-style: italic;
}

/* Comparison Section */
.comparison-col {
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.comparison-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    margin-bottom: 15px;
}

.comparison-title {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.text-red {
    color: #e74c3c;
}

.text-green {
    color: #27ae60;
}

.stat-item {
    margin-bottom: 15px;
}

.stat-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.stat-desc {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 5px;
}

.progress-bg {
    width: 100%;
    height: 8px;
    background: #eee;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    border-radius: 4px;
}

.progress-fill.red {
    background: #e74c3c;
}

.progress-fill.green {
    background: #27ae60;
}

/* Lists */
.steps-list,
.check-list,
.check-list-green {
    list-style: none;
    padding: 0;
}

.steps-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1rem;
}

.steps-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

.check-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
}

.check-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.check-list-green li {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.highlight-text {
    text-align: center;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 20px;
    padding: 15px;
    background: var(--light-bg);
    border-radius: 10px;
}

/* Curriculum */
.curriculum-item h3 {
    color: var(--gold);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.curriculum-item ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.curriculum-item li {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

/* Testimonials Carousel */
.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin-top: 20px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 100%;
    box-sizing: border-box;
}

.carousel-slide img {
    width: 100%;
    display: block;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 1.2rem;
    z-index: 10;
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

/* Bonuses */
.price-strike {
    text-decoration: line-through;
    color: #e74c3c;
    font-size: 0.95rem;
    font-weight: 500;
}

.price-free {
    color: #27ae60;
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
    background: rgba(39, 174, 96, 0.1);
    /* Subtle green background */
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    margin-top: 4px;
}

/* Statistics */
.stat-box {
    text-align: center;
    padding: 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.stat-box h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Personal Plan */
.plan-image {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Pricing Card */
.pricing-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--gold);
}

.price-old {
    color: #999;
    text-decoration: line-through;
    font-size: 1rem;
}

.price-new {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 800;
    margin: 10px 0;
}

.savings {
    background: #27ae60;
    color: white;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.timer-container {
    background: var(--light-bg);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.timer {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: monospace;
}

.payment-info {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
}

.cta-button {
    display: block;
    width: 100%;
    background: #27ae60;
    color: white;
    padding: 15px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 20px;
    box-shadow: 0 4px 0 #219150;
    transition: transform 0.1s;
}

.cta-button:active {
    transform: translateY(4px);
    box-shadow: none;
}

.secure-info p {
    font-size: 0.8rem;
    color: #666;
    margin: 5px 0;
}

.currency-note {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.currency-note h3 {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.currency-note p {
    font-size: 0.8rem;
    color: #666;
}

/* Guarantee */
.guarantee-box {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 20px;
    border: 1px dashed var(--gold);
}

.guarantee-badge {
    width: 100px;
    margin-bottom: 20px;
}

.guarantee-box h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.guarantee-box p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

/* 3D Bible Animation */
.bible-container {
    perspective: 800px;
    width: 60px;
    height: 85px;
    margin: 0 auto 25px;
    position: relative;
    /* Slight tilt for better 3D effect initially */
    transform: scale(0.9);
}

.bible-book {
    width: 100%;
    height: 100%;
    position: absolute;
    transform-style: preserve-3d;
    animation: rotateBible 8s infinite linear;
    transform-origin: center center;
}

.bible-front {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #4a3b5d;
    /* Dark Purple */
    transform: translateZ(8px);
    border-radius: 2px 4px 4px 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 3px 0 8px rgba(0, 0, 0, 0.3);
    border: 1px solid #3d2f4d;
}

.bible-back {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #4a3b5d;
    transform: rotateY(180deg) translateZ(8px);
    border-radius: 2px 4px 4px 2px;
    border: 1px solid #3d2f4d;
}

.bible-spine {
    position: absolute;
    width: 16px;
    /* Thickness (8px * 2) */
    height: 100%;
    background: #3e2e52;
    /* Slightly darker */
    left: 50%;
    transform: translateX(-50%) rotateY(-90deg) translateZ(30px);
    /* 30px = half width */
    border-radius: 2px;
}

.bible-side {
    position: absolute;
    width: 14px;
    height: 96%;
    top: 2%;
    background: linear-gradient(to bottom, #eee 0%, #f5f5f5 50%, #eee 100%);
    left: 50%;
    transform: translateX(-50%) rotateY(90deg) translateZ(30px);
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
}

.bible-top {
    position: absolute;
    width: 14px;
    height: 60px;
    background: #f5f5f5;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateX(90deg) translateZ(42px);
    /* Half height */
}

/* Cross Decoration */
.bible-cross {
    width: 18px;
    height: 28px;
    position: relative;
    background: linear-gradient(45deg, #FFD700, #FDB931);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.bible-cross:after {
    content: '';
    position: absolute;
    width: 26px;
    height: 6px;
    background: linear-gradient(45deg, #FFD700, #FDB931);
    top: 8px;
    left: -4px;
    border-radius: 1px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

@keyframes rotateBible {
    0% {
        transform: rotateY(0deg) rotateX(10deg);
    }

    100% {
        transform: rotateY(360deg) rotateX(10deg);
    }
}

.savings {
    background: #27ae60;
    color: white;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.timer-container {
    background: var(--light-bg);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.timer {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: monospace;
}

.payment-info {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
}

.cta-button {
    display: block;
    width: 100%;
    background: #27ae60;
    color: white;
    padding: 15px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 20px;
    box-shadow: 0 4px 0 #219150;
    transition: transform 0.1s;
}

.cta-button:active {
    transform: translateY(4px);
    box-shadow: none;
}

.secure-info p {
    font-size: 0.8rem;
    color: #666;
    margin: 5px 0;
}

.currency-note {
    margin-top: 20px;
    padding: 25px;
    background-color: rgba(255, 215, 0, 0.15);
    border-radius: 12px;
    border: 2px dashed #e1b12c;
}

.currency-note h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.currency-note p {
    font-size: 1.1rem;
    color: #666;
}

/* Guarantee */
.guarantee-box {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 20px;
    border: 1px dashed var(--gold);
}

.guarantee-badge {
    width: 100px;
    margin-bottom: 20px;
}

.guarantee-box h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.guarantee-box p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

/* Statistics Graphs */
.stat-box {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-circle-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin-bottom: 15px;
}

.stat-circle {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.circle-bg {
    fill: none;
    stroke: #eee;
    stroke-width: 8;
}

.circle-progress {
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 283;
    /* 2 * pi * 45 */
    stroke-dashoffset: 283;
    /* Start empty */
    transition: stroke-dashoffset 2s ease-out;
}

.stat-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}
/* Confidence Progress Chart (Step 16) */
.confidence-chart-container {
    --primary-gradient: linear-gradient(90deg, #FF6B6B 0%, #FFD93D 100%);
    --track-color: #e9ecef;
    --success-color: #4cd137;
    
    background-color: var(--white);
    padding: 20px;
    border-radius: 20px;
    width: 100%;
    margin-top: 20px;
    text-align: center;
}

.chart-wrapper {
    position: relative;
    margin: 50px 0 30px 0;
}

.progress-track {
    background-color: var(--track-color);
    border-radius: 50px;
    height: 25px;
    width: 100%;
    position: relative;
    overflow: visible;
}

.progress-fill {
    background: var(--primary-gradient);
    height: 100%;
    border-radius: 50px;
    width: 0%;
    transition: width 2s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    box-shadow: 0 2px 10px rgba(255, 107, 107, 0.4);
}

.current-marker {
    position: absolute;
    right: 0;
    top: -45px;
    transform: translateX(50%);
    background-color: var(--text-color);
    color: #fff;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: bold;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.5s ease 0.5s;
}

.current-marker::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px 6px 0;
    border-style: solid;
    border-color: var(--text-color) transparent transparent transparent;
}

.target-marker {
    position: absolute;
    right: 0;
    top: 35px;
    font-size: 0.9rem;
    color: var(--text-color);
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
}

.description {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.5;
    margin-top: 40px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.highlight-green {
    color: var(--success-color);
    font-weight: bold;
}


/* Christmas Theme Styles */
.christmas-card {
    border: 3px solid #c0392b;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 25px rgba(192, 57, 43, 0.2);
}

.christmas-banner {
    background: linear-gradient(to right, #c0392b, #e74c3c);
    color: white;
    padding: 10px;
    font-weight: bold;
    font-size: 1.2rem;
    margin: -30px -20px 20px -20px;
    border-bottom: 3px solid #f1c40f;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    animation: festivePulse 2s infinite;
}

@keyframes festivePulse {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Snowflake Animation */
.snowflakes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.snowflake {
    color: #aad4f6;
    font-size: 1.5rem;
    position: absolute;
    top: -10%;
    animation-name: snowfall;
    animation-duration: 10s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    text-shadow: 0 0 5px white;
    opacity: 0.8;
}

@keyframes snowfall {
    0% { transform: translateY(0) rotate(0deg); opacity: 0.8; }
    100% { transform: translateY(500px) rotate(360deg); opacity: 0; }
}

.snowflake:nth-child(1) { left: 10%; animation-delay: 0s; }
.snowflake:nth-child(2) { left: 20%; animation-delay: 2s; font-size: 1em; }
.snowflake:nth-child(3) { left: 30%; animation-delay: 4s; }
.snowflake:nth-child(4) { left: 40%; animation-delay: 1s; font-size: 1.2em; }
.snowflake:nth-child(5) { left: 50%; animation-delay: 6s; }
.snowflake:nth-child(6) { left: 60%; animation-delay: 3s; font-size: 1em; }
.snowflake:nth-child(7) { left: 70%; animation-delay: 7s; }
.snowflake:nth-child(8) { left: 80%; animation-delay: 2s; font-size: 1.2em; }
.snowflake:nth-child(9) { left: 90%; animation-delay: 5s; }
.snowflake:nth-child(10) { left: 95%; animation-delay: 0.5s; font-size: 0.8em; }


/* Notification Toast */
.notification-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #F3E5F5; /* Soft Purple */
    border-left: 5px solid var(--success-color);
    padding: 15px 20px;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
    max-width: 300px;
    font-size: 0.9rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateX(120%);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.notification-toast.show {
    transform: translateX(0);
}

.notification-toast strong {
    color: var(--primary-color);
    font-weight: 700;
    display: block;
    margin-bottom: 2px;
}

