/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background: linear-gradient(to bottom, #f3e8ff 0%, #ffffff 100%);
    min-height: 100vh;
}

/* Progress Bar */
.progress-bar-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: #e5e7eb;
    z-index: 1000;
    border-bottom: 1px solid #d1d5db;
}

.progress-bar {
    height: 100%;
    background: #7c3aed;
    transition: width 0.3s ease-out;
}

/* Container */
.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 80px 24px 48px;
}

/* Logo */
.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 0;
}

.logo-icon {
    width: 64px;
    height: 64px;
    background: #7c3aed;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

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

.logo-title-top {
    font-size: 14px;
    font-weight: 700;
    color: #7c3aed;
    letter-spacing: 2px;
}

.logo-title-main {
    font-size: 24px;
    font-weight: 700;
    color: #7c3aed;
    margin-top: -4px;
}

.logo-subtitle {
    font-size: 12px;
    color: #6b7280;
    letter-spacing: 3px;
}

/* Headline Section */
.headline-section {
    margin: 32px 0;
    text-align: center;
}

.headline {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 24px;
}

.highlight {
    color: #7c3aed;
}

.subheadline {
    font-size: 18px;
    line-height: 1.7;
    color: #374151;
}

/* Card */
.card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    margin: 24px 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.card-header {
    text-align: center;
    margin-bottom: 16px;
}

.results-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: #7c3aed;
    letter-spacing: 1px;
}

/* Slider */
.slider-container {
    aspect-ratio: 16/9;
    background: linear-gradient(to right, #ddd6fe, #fbcfe8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

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

.slider-day {
    font-size: 48px;
    font-weight: 700;
    color: #7c3aed;
}

.slider-subtitle {
    font-size: 14px;
    color: #6b7280;
    margin-top: 8px;
}

.slider {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: #e5e7eb;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #7c3aed;
    cursor: pointer;
}

.slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #7c3aed;
    cursor: pointer;
    border: none;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #6b7280;
    margin-top: 8px;
}

/* Alert Box */
.alert-box {
    background: #fef2f2;
    border: 2px solid #fecaca;
    border-radius: 12px;
    padding: 16px;
    margin: 24px 0;
    display: flex;
    gap: 12px;
}

.alert-icon {
    width: 24px;
    height: 24px;
    color: #dc2626;
    flex-shrink: 0;
}

.alert-title {
    font-weight: 600;
    color: #7f1d1d;
    margin-bottom: 4px;
}

.alert-text {
    font-size: 14px;
    color: #991b1b;
}

/* CTA Button */
.cta-button {
    width: 100%;
    padding: 18px 32px;
    font-size: 18px;
    font-weight: 700;
    color: white;
    background: #7c3aed;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 6px rgba(124, 58, 237, 0.3);
    margin: 24px 0;
}

.cta-button:hover {
    background: #6d28d9;
    box-shadow: 0 6px 12px rgba(124, 58, 237, 0.4);
    transform: translateY(-2px);
}

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

/* Trust Indicators */
.trust-indicators {
    text-align: center;
    padding-top: 16px;
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: #6b7280;
    margin: 12px 0;
}

.trust-icon {
    width: 20px;
    height: 20px;
    color: #10b981;
}

/* Quiz Styles */
.quiz-question {
    text-align: center;
    margin: 32px 0;
}

.quiz-question h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.quiz-subtitle {
    font-size: 16px;
    color: #6b7280;
}

.quiz-options {
    display: grid;
    gap: 12px;
    margin: 24px 0;
}

.quiz-option {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
}

.quiz-option:hover {
    border-color: #7c3aed;
    background: #f3e8ff;
}

.quiz-option.selected {
    border-color: #7c3aed;
    background: #7c3aed;
    color: white;
}

/* Form Styles */
.form-group {
    margin: 16px 0;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    transition: border-color 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: #7c3aed;
}

/* Offer Page Styles */
.offer-price {
    text-align: center;
    background: linear-gradient(135deg, #ddd6fe 0%, #fbcfe8 100%);
    border-radius: 12px;
    padding: 32px 24px;
    margin: 24px 0;
}

.price-original {
    font-size: 18px;
    color: #6b7280;
    text-decoration: line-through;
    margin-bottom: 8px;
}

.price-current {
    font-size: 48px;
    font-weight: 700;
    color: #7c3aed;
    margin: 12px 0;
}

.price-description {
    font-size: 16px;
    color: #374151;
    line-height: 1.6;
    margin-top: 16px;
}

/* Responsive */
@media (max-width: 640px) {
    .headline {
        font-size: 24px;
    }
    
    .subheadline {
        font-size: 16px;
    }
    
    .slider-day {
        font-size: 36px;
    }
    
    .cta-button {
        font-size: 16px;
        padding: 16px 24px;
    }
}
