/* Buttons */
.btn {
    width: 100%;
    padding: 16px 24px;
    border-radius: var(--border-radius);
    border: none;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: var(--accent-gradient);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(244, 92, 67, 0.3);
}

.btn-primary:active {
    transform: scale(0.98);
}

/* Card Selection Wrapper */
.options-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.option-card {
    background-color: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 16px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
    border: 2px solid transparent;
}

.option-card:hover {
    background-color: rgba(43, 41, 48, 0.9);
}

.option-card.selected {
    border-color: var(--accent-red);
}

.option-text {
    font-size: 16px;
    font-weight: 500;
}

.option-img {
    height: 40px;
}

.option-radio {
    width: 24px;
    height: 24px;
    border: 2px solid var(--text-muted);
    border-radius: 50%;
    position: relative;
    transition: var(--transition);
}

.option-card.selected .option-radio {
    border-color: var(--accent-red);
}

.option-card.selected .option-radio::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background-color: var(--accent-red);
    border-radius: 50%;
}

/* Typography elements */
.headline {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-white);
    line-height: 1.4;
    text-align: center;
}

.description {
    font-size: 15px;
    font-weight: 400;
    color: var(--text-muted);
    margin-bottom: 24px;
    text-align: center;
}

/* Specific component: Age selection layout (if grid) */
.age-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 0 4px;
}

.age-card {
    background-color: #24222a;
    border-radius: 24px;
    padding: 16px;
    cursor: pointer;
    text-align: center;
    border: none;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.age-img-container {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.age-card img {
    width: 100%;
    height: auto;
    max-height: 140px;
    object-fit: contain;
}

.age-label {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-white);
}

.age-card.selected {
    background-color: #ff3b5c; /* Vibrant red like in the image */
}

.age-card.selected .age-label {
    color: #fff;
}

.age-card.selected .age-img-container {
    background-color: rgba(0, 0, 0, 0.1);
}

/* Body Type Selection */
.body-type-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.body-type-card {
    background-color: #2b2930;
    border-radius: 20px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.body-type-img {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.body-type-img img {
    height: 100%;
    width: auto;
}

.body-type-label {
    font-size: 18px;
    font-weight: 500;
}

.body-type-card.selected {
    background-color: #ff3b5c;
}

.body-type-card.selected .body-type-label {
    font-weight: 700;
}

.body-type-card.selected .body-type-img {
    background-color: rgba(0, 0, 0, 0.1);
}

/* Main Goal Selection */
.goal-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.goal-card {
    background-color: #2b2930;
    border-radius: 20px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: var(--transition);
}

.goal-icon-container {
    width: 60px;
    height: 60px;
    min-width: 60px; /* Prevent shrink */
    background-color: #201e24;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
}

.goal-icon-container img {
    width: 100%;
    height: auto;
    filter: none; /* Keep original icon color or use red filter if needed. The provided icons are red. */
}

.goal-label {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-white);
}

.goal-card.selected {
    background-color: #ff3b5c;
}

.goal-card.selected .goal-label {
    color: #fff;
    font-weight: 700;
}

/* Animated Checkmark */
.checkmark-container {
    width: 200px;
    height: 200px;
    position: relative;
    margin: 40px auto;
}

.checkmark-circle {
    width: 200px;
    height: 200px;
    background-color: #00C800; /* Vibrant green from image */
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    animation: bounceIn 0.6s cubic-bezier(0.17, 0.67, 0.83, 0.67) forwards;
}

.checkmark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%) rotate(45deg);
    width: 50px;
    height: 100px;
    border-right: 12px solid #fff;
    border-bottom: 12px solid #fff;
    border-radius: 4px;
    opacity: 0;
    animation: drawCheck 0.4s 0.6s ease-out forwards;
}

@keyframes bounceIn {
    0% { transform: scale(0); opacity: 0; }
    70% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes drawCheck {
    from { height: 0; width: 0; opacity: 1; }
    to { height: 100px; width: 50px; opacity: 1; }
}

/* Confirmation/Splash screens */
.splash-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
}

.splash-media {
    width: 100%;
    margin: 10px 0 24px;
}

.splash-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}

.splash-desc {
    font-size: 18px;
    line-height: 1.4;
    color: var(--text-white);
    margin-bottom: 20px;
}

.splash-desc .highlight {
    color: #f45c43;
    font-size: 32px;
    font-weight: 800;
    display: block;
    margin-bottom: 6px;
}

.top-headline {
    color: var(--accent-red);
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 8px;
    text-align: center;
}

/* Rating Scale */
.rating-scale {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 24px;
}

.rating-item {
    flex: 1;
    background-color: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 16px 0;
    text-align: center;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.rating-item.selected {
    border-color: var(--accent-red);
    background-color: rgba(244, 92, 67, 0.1);
}

.rating-labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-muted);
}

/* Loading Screen */
.loading-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid var(--bg-card);
    border-top: 4px solid var(--accent-red);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 24px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 12px;
}

.loading-item {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 8px;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 0.5s forwards;
}

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

/* Profile Summary/Score */
.profile-card {
    background-color: var(--bg-card);
    border-radius: 20px;
    padding: 24px;
    text-align: center;
    margin-bottom: 24px;
}

.score-value {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent-red);
    margin-bottom: 4px;
}

.score-total {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.indicators-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
}

.indicator-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.indicator-label {
    font-size: 14px;
    font-weight: 500;
}

.indicator-status {
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
}

.status-red { background-color: rgba(235, 51, 73, 0.2); color: #EB3349; }
.status-orange { background-color: rgba(244, 148, 67, 0.2); color: #F49443; }

/* Comparison Table */
.comp-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 24px;
}

.comp-table th, .comp-table td {
    padding: 16px 12px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comp-table th {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
}

.comp-table td:first-child {
    text-align: left;
    font-weight: 500;
    font-size: 14px;
}

.icon-check { color: #4CAF50; font-weight: bold; }
.icon-cross { color: #EB3349; font-weight: bold; }

/* Prediction Chart (Placeholder styles) */
.chart-container {
    background-color: var(--bg-card);
    border-radius: 20px;
    padding: 24px;
    position: relative;
    height: 200px;
    margin-top: 20px;
}

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

/* Complex Loading Screen */
.complex-loading-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.stat-box {
    background-color: var(--bg-card);
    border-radius: 24px;
    padding: 20px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-white);
}

.stat-header svg {
    color: var(--text-muted);
}

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

.men-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.men-row {
    display: flex;
    gap: 8px;
}

.man-icon {
    width: 28px;
    height: 48px;
    color: #3e3c45; /* Dark color for uncolored men */
}

.man-icon.active {
    color: #ff5c4d; /* Red color for active men */
}

.circular-stat {
    position: relative;
    width: 110px;
    height: 110px;
}

.circular-stat svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.circular-stat circle {
    fill: none;
    stroke-width: 10;
    stroke-linecap: round;
}

.circular-stat .bg {
    stroke: #3e3c45;
}

.circular-stat .progress {
    stroke: #ff5c4d;
    stroke-dasharray: 283; /* 2 * PI * R where R is ~45 */
    stroke-dashoffset: 283;
    transition: stroke-dashoffset 2s ease-out forwards;
}

.stat-label-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.percent-num {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-white);
    display: block;
}

.percent-sub {
    font-size: 12px;
    color: var(--text-muted);
}

.quote-box {
    margin: 20px 0;
    text-align: left;
}

.quote-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.4;
}

.quote-highlight {
    color: #ff5c4d;
}

.survey-badge {
    background-color: #ff5c4d;
    color: white;
    font-size: 11px;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-transform: uppercase;
    margin-top: 10px;
}

.testimonial-box {
    background-color: var(--bg-card);
    border-radius: 24px;
    padding: 20px;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 12px;
}

.star {
    width: 16px;
    height: 16px;
    fill: #00d26a;
}

.testimonial-info {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.verified {
    display: flex;
    align-items: center;
    gap: 4px;
}

.testimonial-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 8px;
}

.testimonial-body {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.bottom-analyzing {
    margin-top: 30px;
    text-align: center;
}

.analyzing-caption {
    font-size: 14px;
    color: var(--text-white);
    margin-bottom: 15px;
    display: block;
}

.complex-progress-bar {
    height: 48px;
    background-color: #2b2930;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.complex-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background-color: #ff5c4d;
    transition: width 0.1s linear;
}

.complex-progress-percent {
    position: relative;
    z-index: 10;
    font-weight: 800;
    font-size: 18px;
    color: white;
}

/* Question Split Layout */
.radio-selection-layout.has-media {
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: flex-start;
    text-align: left;
    margin-top: 10px;
}

.radio-selection-layout.has-media .question-media {
    flex: 0.8;
}

.radio-selection-layout.has-media .question-content {
    flex: 1;
}

.radio-selection-layout.has-media .question-img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .radio-selection-layout.has-media {
        flex-direction: row !important;
        align-items: flex-start; /* Changed from center to align top */
        gap: 12px;
        text-align: left;
    }
    
    .radio-selection-layout.has-media .question-content h1,
    .radio-selection-layout.has-media .question-content p {
        text-align: left !important;
    }

    .radio-selection-layout.has-media .question-content h1 {
        font-size: 17px !important;
        margin-bottom: 5px;
        line-height: 1.3;
    }

    .radio-selection-layout.has-media .question-content p {
        font-size: 13px !important;
        margin-bottom: 10px;
    }
    
    .radio-selection-layout.has-media .question-media {
        flex: 1;
        max-width: 180px; /* Increased from 160px */
    }

    .radio-selection-layout.has-media .question-content {
        flex: 1.2;
    }

    .radio-selection-layout.has-media .question-img {
        object-fit: contain; /* Changed from cover */
        border-radius: 12px;
    }

    .radio-selection-layout.has-media .options-grid {
        gap: 6px;
    }

    .radio-selection-layout.has-media .option-card {
        padding: 8px 10px;
        min-height: auto;
    }

    .radio-selection-layout.has-media .option-text {
        font-size: 13px;
        line-height: 1.2;
    }
}

/* Logo Stack for Trust Splash */
.logo-stack {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 260px;
    margin: 20px auto;
}

.logo-box {
    background: white;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.stack-logo {
    max-width: 100%;
    height: auto;
    max-height: 45px;
    object-fit: contain;
}

/* Multi Choice with Icons */
.option-card.has-icon {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    text-align: left;
}

.option-icon-left {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 16px;
    flex-shrink: 0;
}

.option-icon-left img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.option-checkbox {
    width: 22px;
    height: 22px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 4px;
    margin-left: auto;
    position: relative;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

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

.option-card.selected .option-checkbox::after {
    content: '✔';
    color: white;
    font-size: 14px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -52%);
}

.option-card.multi-choice .option-radio {
    display: none; /* Hide radio if checkbox is used */
}

/* review Badge */
.review-badge {
    background: rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
    text-align: left;
    border: 1px solid rgba(255,255,255,0.05);
}

.badge-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    background: #444;
}

.badge-info {
    flex: 1;
}

.badge-name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.badge-verify {
    color: #10b981;
    font-size: 14px;
}

.badge-title {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 400;
}

.quote-text {
    font-style: italic;
    font-size: 13px;
    color: var(--text-muted);
    margin: 20px 0 10px 0;
    opacity: 0.8;
}

/* Profile Summary V2 */
.profile-summary-v2 {
    text-align: center;
    padding-bottom: 100px;
}

.performance-gauge {
    margin: 40px 0 20px 0;
    position: relative;
    padding: 30px 10px 10px 10px;
}

.gauge-track {
    height: 8px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    width: 100%;
    margin: 15px 0;
}

.gauge-fill {
    height: 100%;
    background: linear-gradient(to right, #ff4c4c, #ffd000, #00d97e);
    border-radius: 4px;
    width: var(--gauge-percent, 35%);
    transition: width 1s ease-out;
}

.gauge-labels {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 600;
}

.gauge-marker {
    position: absolute;
    top: 5px;
    left: var(--gauge-percent, 35%);
    transform: translateX(-50%);
    background: #ff4c4c;
    color: white;
    padding: 6px 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
    transition: left 1s ease-out;
    box-shadow: 0 4px 10px rgba(255,76,76,0.3);
}

.gauge-marker::after {
    content: '';
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    background: white;
    border: 4px solid #ff4c4c;
    border-radius: 50%;
}

.warning-card {
    background: #ff4c4c;
    border-radius: 20px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
    margin-bottom: 30px;
    color: white;
}

.warning-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.warning-body {
    flex: 1;
}

.warning-title {
    font-weight: 800;
    font-size: 18px;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.warning-desc {
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.9;
    font-weight: 500;
}

.warning-img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 16px;
    flex-shrink: 0;
}

.summary-item {
    background: rgba(255,255,255,0.06);
    border-radius: 18px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
    text-align: left;
    border: 1px solid rgba(255,255,255,0.03);
}

.item-icon {
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ff4c4c;
    background: rgba(255,76,76,0.1);
    border-radius: 10px;
    flex-shrink: 0;
}

.item-content {
    flex: 1;
}

.item-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 2px;
}

.item-value {
    font-size: 16px;
    font-weight: 700;
    color: white;
}

/* Splash Bullets */
.splash-bullets {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 40px 0;
    text-align: left;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

.bullet-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.bullet-icon {
    width: 24px;
    height: 24px;
    background: transparent;
    border: 2px solid var(--accent-red);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Red Chevron Icon for bullets */
.bullet-icon::after {
    content: '';
    width: 6px;
    height: 6px;
    border-top: 2px solid var(--accent-red);
    border-right: 2px solid var(--accent-red);
    transform: rotate(45deg);
    margin-left: -2px;
}

.bullet-text {
    font-size: 15px;
    line-height: 1.5;
    color: white;
    font-weight: 500;
}

/* Option Cards with Icons */
.option-card .option-icon {
    font-size: 24px;
    width: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

/* Date Picker V2 */
.date-input-card {
    background: rgba(255,255,255,0.06);
    border-radius: 20px;
    padding: 20px 24px;
    margin: 35px 0 25px 0;
    text-align: left;
    border: 1px solid rgba(255,255,255,0.03);
    position: relative;
}

.date-label {
    font-size: 14px;
    color: var(--text-muted);
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
}

.date-field-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.date-input {
    width: 100%;
    background: transparent;
    border: none;
    color: white;
    font-size: 19px;
    font-weight: 800;
    padding: 4px 0;
    outline: none;
    font-family: inherit;
    cursor: pointer;
}

/* Custom calendar icon color */
.date-input::-webkit-calendar-picker-indicator {
    filter: invert(1);
    opacity: 0.6;
    cursor: pointer;
}

.privacy-notice {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    text-align: left;
    margin-top: 25px;
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    line-height: 1.5;
    padding: 0 10px;
}

.lock-icon {
    font-size: 16px;
    flex-shrink: 0;
}

.skip-btn {
    display: block;
    margin-top: 45px;
    color: var(--accent-red);
    font-weight: 800;
    cursor: pointer;
    font-size: 17px;
    transition: opacity 0.2s;
    text-decoration: none;
}

.skip-btn:hover {
    opacity: 0.8;
}

/* Prediction Chart V2 */
.target-date {
    font-size: 26px;
    font-weight: 800;
    margin: 25px 0 45px 0;
    color: white;
    text-transform: capitalize;
}

.prediction-chart {
    background: rgba(255,255,255,0.02);
    padding: 30px 15px 20px 15px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.03);
}

.chart-bars {
    display: flex;
    justify-content: space-between;
    height: 240px;
    align-items: flex-end;
    gap: 10px;
}

.bar-track {
    flex: 1;
    background: rgba(255,255,255,0.06);
    height: 100%;
    border-radius: 10px;
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: visible;
}

.bar-fill {
    width: 100%;
    background: linear-gradient(180deg, #FF455E 0%, #7c1a29 100%);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(255, 69, 94, 0.2);
    height: 0; /* Start at 0 for animation */
    transition: height 1.2s cubic-bezier(0.17, 0.67, 0.83, 0.67);
}

.goal-bar .bar-fill {
    background: linear-gradient(180deg, #FF455E 0%, #FF8A9A 100%);
}

.goal-tooltip {
    position: absolute;
    top: -42px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-red);
    color: white;
    font-size: 12px;
    font-weight: 800;
    padding: 7px 12px;
    border-radius: 8px;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 3;
}

.goal-tooltip::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid var(--accent-red);
}

.goal-indicator {
    position: absolute;
    width: 22px;
    height: 22px;
    border: 4px solid white;
    border-radius: 50%;
    left: 50%;
    top: 25%; /* To be adjusted dynamically or fixed */
    transform: translate(-50%, -50%);
    z-index: 4;
    box-shadow: 0 0 15px rgba(0,0,0,0.6);
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    font-weight: 500;
    padding: 0 10px;
}

/* Sophisticated Loading Step */
.loading-complex-v2 {
    text-align: center;
    padding-top: 20px;
}

.circular-progress-container {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto;
}

.progress-ring-svg {
    width: 100%;
    height: 100%;
}

.progress-ring-circle-bg {
    fill: none;
    stroke: rgba(255,255,255,0.08);
    stroke-width: 10;
}

.progress-ring-circle {
    fill: none;
    stroke: var(--accent-red);
    stroke-width: 10;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.1s linear;
}

.progress-percentage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 52px;
    font-weight: 800;
    color: white;
}

.loading-status-stack {
    margin-top: 30px;
    height: 60px;
    position: relative;
}

.status-label {
    position: absolute;
    width: 100%;
    left: 0;
    font-size: 17px;
    font-weight: 500;
    color: var(--text-muted);
    opacity: 0;
    transition: all 0.5s ease;
}

.status-label.active {
    opacity: 1;
    color: white;
}

.social-proof-header {
    margin-top: 40px;
}

.social-proof-count {
    color: var(--accent-red);
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 5px;
}

.social-proof-sub {
    font-size: 20px;
    font-weight: 700;
    color: white;
}

.testimonials-slider {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-left: 20px;
    padding-right: 20px;
}

.testimonials-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    min-width: 280px;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 20px;
    text-align: left;
    border: 1px solid rgba(255,255,255,0.03);
}

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

.testi-avatar {
    width: 44px;
    height: 44px;
    background: #E6B94E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #111;
}

.testi-info-name {
    font-weight: 700;
    font-size: 16px;
}

.testi-info-meta {
    font-size: 12px;
    color: var(--text-muted);
}

.testi-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 10px;
}

.testi-star {
    width: 14px;
    height: 14px;
    background: #00B67A;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.testi-verified {
    font-size: 11px;
    color: #00B67A;
    display: flex;
    align-items: center;
    gap: 4px;
}

.testi-text {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255,255,255,0.9);
}

/* Modal Popup */
.loading-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.loading-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.loading-modal {
    background: #2D2D35;
    width: 90%;
    max-width: 340px;
    border-radius: 24px;
    padding: 30px 24px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.loading-modal-overlay.active .loading-modal {
    transform: scale(1);
}

.modal-pretitle {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.modal-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.4;
}

.modal-btns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.modal-btn {
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.modal-btn-no {
    background: white;
    color: #111;
}

.modal-btn-yes {
    background: var(--accent-red);
    color: white;
}

/* Results Final Chart */
.results-chart-container {
    text-align: center;
    padding: 20px 0;
}

.performance-chart-svg {
    width: 100%;
    height: 260px;
    margin: 30px 0;
    overflow: visible;
}

.chart-grid-line {
    stroke: rgba(255,255,255,0.08);
    stroke-width: 1;
}

.chart-line-main {
    stroke: var(--accent-red);
    stroke-width: 4;
    fill: none;
    stroke-linecap: round;
    transition: stroke-dashoffset 2s ease-out;
}

.chart-area-fill {
    fill: url(#chart-gradient);
    opacity: 0;
    transition: opacity 1s ease-in 1.5s;
}

.chart-dot {
    fill: var(--accent-red);
    stroke: rgba(255,69,94,0.3);
    stroke-width: 8;
    opacity: 0;
    transition: opacity 0.4s ease-out;
}

.chart-dot.active {
    opacity: 1;
}

.chart-tooltip-today {
    position: absolute;
    background: #444;
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    transform: translate(-50%, -100%);
    margin-top: -10px;
    opacity: 0;
    transition: opacity 0.5s ease 0.5s;
}

.chart-tooltip-final {
    position: absolute;
    background: var(--accent-red);
    color: white;
    font-size: 11px;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 8px;
    transform: translate(-50%, -100%);
    margin-top: -15px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.5s ease 2s;
}

.chart-tooltip-final::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid var(--accent-red);
}

.week-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 600;
}

.chart-subcaption {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-muted);
    margin-top: 25px;
}

/* SALES PAGE STYLES */
#sales-page {
    display: none; /* Shown after quiz */
    max-width: 430px;
    margin: 0 auto;
    padding-bottom: 100px;
}

.sales-sticky-header {
    position: sticky;
    top: 0;
    background: #1A1A1F;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2000;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.timer-box {
    display: flex;
    flex-direction: column;
}

.timer-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.timer-count {
    font-size: 24px;
    font-weight: 800;
    color: var(--accent-red);
}

.sticky-cta {
    background: linear-gradient(90deg, #FF455E, #FF758C);
}

/* Comparison Section */
.offer-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    padding: 30px 20px;
    animation: fadeInUp 0.8s ease;
}

.comp-col-title {
    font-size: 18px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 15px;
}

.comp-col-now { color: var(--text-muted); }
.comp-col-goal { color: var(--accent-red); }

.comp-card {
    background: rgba(255,255,255,0.03);
    border-radius: 20px;
    padding: 15px;
}

.comp-img {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 20px;
}

.comp-stat { margin-bottom: 15px; }

.stat-header-sales {
    display: flex;
    flex-direction: column;
    margin-bottom: 6px;
}

.stat-name { font-size: 13px; font-weight: 700; }
.stat-val { font-size: 12px; color: var(--text-muted); }

.stat-bar-sales {
    height: 4px;
    background: rgba(255,255,255,0.08);
    border-radius: 2px;
}

.stat-fill-sales {
    height: 100%;
    background: var(--accent-red);
    border-radius: 2px;
}

/* Proof Box */
.stat-proof-box {
    margin: 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.stat-icon-circle {
    min-width: 44px;
    height: 44px;
    background: var(--accent-red);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Plan Selection */
.plan-container {
    padding: 20px;
}

.plan-card {
    background: rgba(255,255,255,0.05);
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.plan-card.active {
    background: rgba(255, 69, 94, 0.08);
    border-color: var(--accent-red);
}

.plan-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--accent-red);
    color: white;
    font-size: 10px;
    font-weight: 800;
    padding: 6px 40px;
    transform: rotate(45deg);
}

.plan-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-main {
    font-size: 32px;
    font-weight: 800;
}

.price-old {
    font-size: 14px;
    text-decoration: line-through;
    color: var(--text-muted);
}

.order-footer {
    padding: 30px 20px;
    text-align: center;
}

.legal-text {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 20px;
}

.trust-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.trust-icon {
    height: 24px;
    opacity: 0.8;
}

/* Authority & Social Proof Sections */
.sales-rating-box {
    margin: 40px 20px;
}

.rating-img {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    display: block;
}

.what-you-get-media {
    background: #000;
    border-radius: 20px;
    padding: 10px;
    margin-bottom: 30px;
}

.wug-img-row {
    width: 100%;
    border-radius: 15px;
}

.authority-section {
    padding: 60px 20px;
    text-align: center;
}

.auth-headline {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin: 20px 0;
}

.auth-logos-grid {
    display: flex;
    justify-content: center;
    gap: 15px;
    align-items: center;
    margin-top: 20px;
}

.auth-logo-card {
    background: white;
    border-radius: 12px;
    padding: 12px;
    height: 60px;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-logo-card img {
    max-width: 100%;
    max-height: 100%;
    filter: none;
}

.dots-divider {
    color: var(--accent-red);
    font-size: 24px;
    letter-spacing: 4px;
    margin: 30px 0;
}

.client-love-section {
    padding: 40px 20px;
}

/* Guarantee & FAQ */
.guarantee-box {
    margin: 40px 20px;
    background: rgba(255, 69, 94, 0.05);
    border: 2px solid var(--accent-red);
    border-radius: 24px;
    padding: 30px 20px;
    text-align: center;
}

.guarantee-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
}

.guarantee-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 20px;
}

.guarantee-text {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

.faq-section {
    padding: 40px 20px;
}

.faq-item {
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    cursor: pointer;
}

.faq-answer {
    padding: 0 20px 20px;
    font-size: 14px;
    color: var(--text-muted);
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-icon-arrow {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon-arrow {
    transform: rotate(180deg);
}

.terms-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    margin-top: 24px;
    line-height: 1.5;
}

.terms-text a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: underline;
}
