/* Reset & Base */
body { font-family: sans-serif; margin:0; background: #f4f7fa; color: #1a1a1a; }
.container { max-width: 1100px; margin: 0 auto; padding: 20px; }

/* Header */
.header { display: flex; justify-content: center; padding: 20px; background: white; box-shadow: 0 2px 5px rgba(0,0,0,0.05); }
.header-content { display: flex; justify-content: space-between; width: 100%; max-width: 1100px; align-items: center; }
.logo-text { font-weight: bold; font-size: 1.4rem; color: #0066ff; }
.btn-outline { border: 1px solid #0066ff; padding: 8px 20px; border-radius: 20px; text-decoration: none; color: #0066ff; font-weight: 600; }
.hero-section { text-align: center; padding: 40px 0; }
.hero-section h1 { font-size: 2.8rem; color: #0a1e3c; margin: 10px 0; }
.badge { display: inline-block; background: #dbeafe; color: #0066ff; padding: 5px 15px; border-radius: 20px; font-weight: bold; font-size: 0.8rem; }

/* Form Card */
.card-form { background: white; border-radius: 20px; padding: 40px; max-width: 600px; margin: 20px auto; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.card-form input { width: 100%; padding: 15px; margin-bottom: 20px; border: 1px solid #ddd; border-radius: 10px; box-sizing: border-box; }
.btn-primary { width: 100%; padding: 15px; background: linear-gradient(to right, #0066ff, #00aaff); border: none; color: white; font-weight: bold; border-radius: 10px; cursor: pointer; font-size: 1.1rem; }

/* RESULT PAGE STYLES */
.score-title { font-size: 2.5rem; text-align: center; }
.score-number { color: #0066ff; }
.resume-container { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; margin: 40px 0; }
.card-resume, .card-score-circle, .card-comparison { background: white; border-radius: 15px; padding: 25px; flex: 1; min-width: 300px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.badge-green { background: #dcfce7; color: #166534; font-size: 0.8rem; padding: 3px 10px; border-radius: 5px; }
.badge-orange { background: #fef9c3; color: #854d0e; font-size: 0.8rem; padding: 3px 10px; border-radius: 5px; }

/* Scores Grid */
.scores-grid { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; margin: 30px 0; background: white; padding: 20px; border-radius: 20px; }
.score-item { text-align: center; flex: 1; min-width: 100px; }
.circle-small { width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; margin: 0 auto; }
.green { background: #dcfce7; color: #166534; border: 2px solid #86efac; }
.orange { background: #fef9c3; color: #854d0e; border: 2px solid #fde047; }

/* Details Grid */
.details-grid { display: flex; gap: 20px; margin: 30px 0; }
.col-good, .col-bad { background: white; padding: 20px; border-radius: 15px; flex: 1; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.col-good ul { list-style: none; padding: 0; color: #166534; }
.col-bad ul { list-style: none; padding: 0; color: #b91c1c; }

.actions-section { display: flex; gap: 20px; flex-wrap: wrap; }
.action-card { background: white; padding: 20px; border-radius: 15px; flex: 1; min-width: 300px; }

/* Bar Chart */
.bar-wrapper { display: flex; align-items: flex-end; height: 100px; gap: 20px; }
.bar-blue { width: 40px; background: #0066ff; color: white; display: flex; align-items: flex-end; justify-content: center; border-radius: 5px 5px 0 0; }
.bar-gray { width: 40px; background: #a0aec0; color: white; display: flex; align-items: flex-end; justify-content: center; border-radius: 5px 5px 0 0; }
.green-arrow { margin-top: 10px; color: #166534; font-weight: bold; background: #dcfce7; padding: 5px 10px; border-radius: 5px; display: inline-block; }
.header-mini { display: flex; justify-content: space-between; padding: 15px 0; border-bottom: 1px solid #eee; }