/* ==================== METAS COACHING - SIMULATEUR DE DEVIS ==================== */
/* Design amélioré avec charte couleur METAS */

/* ---------- Modale ---------- */
.metas-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    overflow-y: auto;
    padding: 24px 16px;
    box-sizing: border-box;
}

.metas-modal-overlay.active {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.metas-modal-content {
    position: relative;
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    animation: metasModalIn 0.3s ease-out;
}

@keyframes metasModalIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.metas-modal-close {
    position: sticky;
    top: 0;
    float: right;
    z-index: 10;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
    color: #666;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: all 0.2s;
    margin-bottom: -20px;
}

.metas-modal-close:hover {
    background: #fff;
    color: #333;
    transform: scale(1.1);
}

/* Dans la modale, le container n'a pas besoin de centrage vertical */
.metas-modal-content .container {
    margin: 0;
}

/* ---------- Variables & Tokens ---------- */
:root {
    --color-primary: #1a5a7a;
    --color-primary-light: #2d8bb5;
    --color-primary-dark: #0d3d4d;
    --color-accent: #38b2ac;
    --color-text: #2d3748;
    --color-text-light: #718096;
    --color-text-muted: #a0aec0;
    --color-bg: #f7fafc;
    --color-bg-alt: #edf2f7;
    --color-white: #ffffff;
    --color-border: #e2e8f0;
    --color-error: #e53e3e;
    --color-warning: #dd6b20;
    --color-success: #38a169;

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 14px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-full: 50px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 50%, var(--color-primary-dark) 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px;
    line-height: 1.6;
    color: var(--color-text);
    -webkit-font-smoothing: antialiased;
}

/* ---------- Container ---------- */
.container {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    max-width: 820px;
    width: 100%;
    padding: 48px 52px;
    position: relative;
    overflow: hidden;
}

/* ---------- Progress Bar ---------- */
.progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light), var(--color-accent));
    width: 0%;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
}

.progress-bar::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 40px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4));
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
}

/* ---------- Logo ---------- */
.logo {
    text-align: center;
    margin-bottom: 28px;
}

.logo img {
    max-width: 180px;
    height: auto;
}

/* ---------- Step System ---------- */
.step {
    display: none;
    animation: fadeInUp 0.45s ease-out;
}

.step.active {
    display: block;
}

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

/* ---------- Typography ---------- */
h1 {
    color: var(--color-text);
    font-size: 1.85em;
    font-weight: 700;
    margin-bottom: 14px;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

h2 {
    color: var(--color-primary);
    font-size: 1.6em;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

h3 {
    color: var(--color-primary);
    font-size: 1.25em;
    font-weight: 600;
    margin-bottom: 14px;
}

p {
    color: var(--color-text-light);
    font-size: 1.05em;
    line-height: 1.7;
    margin-bottom: 18px;
}

/* ---------- Phase Indicator ---------- */
.phase-indicator {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

.phase {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 0.88em;
    font-weight: 500;
    transition: var(--transition);
}

.phase.active {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: var(--color-white);
    box-shadow: 0 4px 12px rgba(26, 90, 122, 0.3);
}

.phase.completed {
    background: #dcfce7;
    color: #166534;
}

.phase.inactive {
    background: var(--color-bg-alt);
    color: var(--color-text-muted);
}

/* ---------- Icon ---------- */
.icon {
    font-size: 2.8em;
    margin-bottom: 18px;
    text-align: center;
}

/* ---------- Step Indicator ---------- */
.step-indicator {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.88em;
    font-weight: 500;
    margin-bottom: 18px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

/* ---------- Question ---------- */
.question {
    font-size: 1.2em;
    color: var(--color-text);
    font-weight: 600;
    margin-bottom: 24px;
    line-height: 1.4;
}

/* ---------- Options (choix) ---------- */
.options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.option {
    background: var(--color-white);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 18px 22px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.option:hover {
    border-color: var(--color-primary-light);
    background: rgba(45, 139, 181, 0.04);
    transform: translateX(4px);
    box-shadow: var(--shadow-sm);
}

.option.selected {
    border-color: var(--color-primary);
    background: linear-gradient(135deg, rgba(26, 90, 122, 0.06), rgba(45, 139, 181, 0.08));
    box-shadow: 0 0 0 3px rgba(26, 90, 122, 0.12);
}

.option.selected::before {
    content: '✓';
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75em;
    font-weight: 700;
}

.option-title {
    font-weight: 600;
    color: var(--color-text);
    font-size: 1.05em;
    margin-bottom: 4px;
    padding-right: 36px;
}

.option-description {
    color: var(--color-text-light);
    font-size: 0.9em;
    line-height: 1.5;
    padding-right: 36px;
}

/* ---------- Disclaimer ---------- */
.disclaimer {
    background: linear-gradient(135deg, rgba(45, 139, 181, 0.06), rgba(26, 90, 122, 0.08));
    border-left: 4px solid var(--color-primary-light);
    padding: 16px 20px;
    margin: 20px 0 28px 0;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: 0.92em;
    color: var(--color-text-light);
    line-height: 1.6;
}

.disclaimer strong {
    color: var(--color-primary);
}

/* ---------- Warning Box ---------- */
.warning-box {
    background: #fffbeb;
    border: 1px solid #fcd34d;
    border-left: 4px solid #f59e0b;
    padding: 16px 20px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin-bottom: 24px;
    font-size: 0.9em;
    color: #92400e;
    line-height: 1.5;
}

.warning-box strong {
    color: #92400e;
}

/* ---------- Buttons ---------- */
.button-group {
    display: flex;
    gap: 14px;
    margin-top: 28px;
}

button {
    flex: 1;
    padding: 14px 28px;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-sans);
    letter-spacing: 0.01em;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: var(--color-white);
    box-shadow: 0 4px 12px rgba(26, 90, 122, 0.25);
}

.btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 90, 122, 0.35);
}

.btn-primary:active:not(:disabled) {
    transform: translateY(0);
}

.btn-primary:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-secondary {
    background: var(--color-bg-alt);
    color: var(--color-text-light);
}

.btn-secondary:hover {
    background: #cbd5e0;
    color: var(--color-text);
}

/* ---------- Result Card ---------- */
.result-card {
    background: linear-gradient(135deg, rgba(26, 90, 122, 0.05), rgba(45, 139, 181, 0.08));
    border-radius: var(--radius-lg);
    padding: 28px 30px;
    margin: 20px 0;
    border-left: 5px solid var(--color-primary);
    position: relative;
}

.result-title {
    font-size: 1.4em;
    color: var(--color-primary);
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.result-description {
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 18px;
    font-size: 0.98em;
}

.result-card ul {
    color: var(--color-text-light);
    line-height: 2;
    margin-left: 20px;
    margin-bottom: 12px;
}

.result-card li {
    padding-left: 4px;
}

.supervision-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
    color: var(--color-white);
    padding: 5px 14px;
    border-radius: var(--radius-full);
    font-size: 0.82em;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

/* ---------- CTA Buttons ---------- */
.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
    margin-top: 28px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: var(--color-white);
    padding: 16px 36px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.02em;
    transition: var(--transition);
    text-align: center;
    min-width: 320px;
    border: none;
    cursor: pointer;
    font-family: var(--font-sans);
    box-shadow: 0 4px 14px rgba(26, 90, 122, 0.25);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(26, 90, 122, 0.35);
}

.cta-button.secondary {
    background: var(--color-white);
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    box-shadow: none;
}

.cta-button.secondary:hover {
    background: rgba(26, 90, 122, 0.04);
    box-shadow: 0 6px 20px rgba(26, 90, 122, 0.15);
}

.cta-button.simulate {
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
    border: none;
}

.cta-button.simulate:hover {
    box-shadow: 0 10px 30px rgba(13, 61, 77, 0.35);
}

/* ---------- Simulator ---------- */
.simulator-header {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: var(--color-white);
    padding: 24px 28px;
    border-radius: var(--radius-lg);
    text-align: center;
    margin-bottom: 28px;
    box-shadow: 0 6px 20px rgba(26, 90, 122, 0.3);
}

.simulator-header h3 {
    color: var(--color-white);
    margin-bottom: 6px;
    font-size: 1.3em;
}

.simulator-header p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 0.95em;
}

.coaching-type-selected {
    background: linear-gradient(135deg, rgba(26, 90, 122, 0.06), rgba(45, 139, 181, 0.08));
    border: 2px solid rgba(26, 90, 122, 0.2);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    margin-bottom: 24px;
    text-align: center;
    font-size: 0.95em;
}

.coaching-type-selected strong {
    color: var(--color-primary);
}

/* ---------- Form Elements ---------- */
.question-group {
    margin-bottom: 24px;
}

.question-label {
    font-size: 1.05em;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 10px;
    display: block;
}

.question-description {
    font-size: 0.88em;
    color: var(--color-text-light);
    margin-bottom: 12px;
    font-style: italic;
}

select,
input[type="number"] {
    width: 100%;
    padding: 14px 16px;
    font-size: 0.98em;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-white);
    transition: var(--transition);
    font-family: var(--font-sans);
    color: var(--color-text);
    appearance: none;
}

select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23718096' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

select:focus,
input[type="number"]:focus {
    outline: none;
    border-color: var(--color-primary-light);
    box-shadow: 0 0 0 3px rgba(45, 139, 181, 0.15);
}

/* ---------- Radio Scale (1-7) ---------- */
.radio-group {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    margin-top: 10px;
}

.radio-option {
    position: relative;
}

.radio-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.radio-option label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 8px;
    background: var(--color-white);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-sm);
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    font-size: 1em;
    color: var(--color-text-light);
}

.radio-option input[type="radio"]:checked + label {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: var(--color-white);
    border-color: var(--color-primary);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(26, 90, 122, 0.3);
}

.radio-option label:hover {
    border-color: var(--color-primary-light);
    color: var(--color-primary);
}

.radio-option input[type="radio"]:focus-visible + label {
    outline: 2px solid var(--color-primary-light);
    outline-offset: 2px;
}

/* ---------- Results Box ---------- */
.results-box {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: var(--color-white);
    padding: 32px;
    border-radius: var(--radius-lg);
    margin: 24px 0;
    box-shadow: 0 8px 30px rgba(26, 90, 122, 0.3);
}

.results-box h3 {
    color: var(--color-white);
    text-align: center;
    margin-bottom: 24px;
    font-size: 1.4em;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
    margin-bottom: 20px;
}

.result-item {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(4px);
    padding: 18px;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.result-label {
    font-size: 0.82em;
    opacity: 0.85;
    margin-bottom: 8px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.result-value {
    font-size: 1.2em;
    font-weight: 700;
}

.price-range {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    padding: 24px;
    border-radius: var(--radius-md);
    text-align: center;
    margin-top: 18px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.price-range .label {
    font-size: 0.88em;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 500;
}

.price-range .price {
    font-size: 2em;
    font-weight: 700;
    margin: 10px 0;
    letter-spacing: -0.02em;
}

/* ---------- Summary Details ---------- */
.summary-details {
    background: var(--color-white);
    padding: 24px 28px;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    border: 1px solid var(--color-border);
}

.summary-details h4 {
    color: var(--color-primary);
    margin-bottom: 16px;
    font-size: 1.05em;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--color-bg-alt);
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item .label {
    color: var(--color-text-light);
    font-size: 0.9em;
}

.summary-item .value {
    color: var(--color-text);
    font-weight: 600;
    font-size: 0.9em;
}

/* ---------- Contact Form ---------- */
.contact-form {
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin: 20px 0;
    border: 1px solid var(--color-border);
}

.contact-form h3 {
    text-align: center;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 8px;
    font-size: 0.92em;
}

.form-group label .required {
    color: var(--color-error);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 0.98em;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-white);
    transition: var(--transition);
    font-family: var(--font-sans);
    color: var(--color-text);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary-light);
    box-shadow: 0 0 0 3px rgba(45, 139, 181, 0.15);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.form-group input.error,
.form-group textarea.error {
    border-color: var(--color-error);
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

.error-message {
    color: var(--color-error);
    font-size: 0.82em;
    margin-top: 6px;
    display: none;
    font-weight: 500;
}

/* ---------- Contact Form ---------- */
.contact-summary {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    margin-bottom: 24px;
}

.contact-summary h4 {
    color: var(--color-primary);
    margin-bottom: 12px;
    font-size: 0.95em;
}

.contact-summary .summary-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--color-bg-alt);
    font-size: 0.9em;
}

.contact-summary .summary-item:last-child {
    border-bottom: none;
}

.contact-summary .summary-item .label {
    color: var(--color-text-light);
}

.contact-summary .summary-item .value {
    color: var(--color-text);
    font-weight: 600;
}

.contact-form {
    text-align: left;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form .form-group {
    margin-bottom: 16px;
}

.contact-form label {
    display: block;
    font-size: 0.9em;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.95em;
    color: var(--color-text);
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-primary-light);
    box-shadow: 0 0 0 3px rgba(45, 139, 181, 0.12);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #aaa;
}

.contact-form textarea {
    resize: vertical;
    min-height: 80px;
}

.form-consent {
    margin-top: 4px;
}

.form-consent label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85em;
    color: var(--color-text-light);
    cursor: pointer;
}

.form-consent input[type="checkbox"] {
    width: auto;
    margin-top: 2px;
    flex-shrink: 0;
}

.form-error {
    background: #fef2f2;
    color: #dc2626;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.9em;
    margin-bottom: 16px;
    border: 1px solid #fecaca;
}

.form-success {
    background: #f0fdf4;
    color: #16a34a;
    padding: 20px 24px;
    border-radius: var(--radius-md);
    font-size: 0.95em;
    margin-bottom: 16px;
    border: 1px solid #bbf7d0;
    text-align: center;
}

.form-success h3 {
    margin-bottom: 8px;
    color: #16a34a;
}

.form-success a {
    color: var(--color-primary);
    font-weight: 600;
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ---------- Slot Picker ---------- */
.slot-picker {
    margin-top: 12px;
}

.slot-date-picker {
    margin-bottom: 16px;
}

.slot-date-picker label {
    display: block;
    font-size: 0.9em;
    font-weight: 500;
    margin-bottom: 6px;
}

.slot-date-picker input[type="date"] {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.95em;
    box-sizing: border-box;
}

.slot-loading {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 0;
    color: var(--color-text-light);
    font-size: 0.9em;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-border);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.slot-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.slot-btn {
    padding: 10px 18px;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: #fff;
    font-family: inherit;
    font-size: 0.9em;
    font-weight: 500;
    color: var(--color-text);
    cursor: pointer;
    transition: all 0.2s;
}

.slot-btn:hover {
    border-color: var(--color-primary-light);
    background: rgba(45, 139, 181, 0.05);
}

.slot-btn.selected {
    border-color: var(--color-primary);
    background: var(--color-primary);
    color: #fff;
}

.slot-none {
    padding: 16px;
    text-align: center;
    color: var(--color-text-light);
    font-size: 0.9em;
    background: var(--color-bg);
    border-radius: var(--radius-sm);
}

/* ---------- Next Steps Box ---------- */
.next-steps-box {
    background: var(--color-bg);
    padding: 28px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--color-border);
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
    body {
        padding: 12px;
        align-items: flex-start;
    }

    .container {
        padding: 28px 20px;
        border-radius: var(--radius-lg);
    }

    h1 {
        font-size: 1.45em;
    }

    h2 {
        font-size: 1.3em;
    }

    .button-group {
        flex-direction: column;
    }

    .cta-button {
        min-width: 100%;
        padding: 14px 24px;
    }

    .radio-group {
        grid-template-columns: repeat(4, 1fr);
    }

    .radio-group .radio-option:nth-child(n+5) {
        grid-column: span 1;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-summary .summary-item {
        flex-direction: column;
        gap: 2px;
    }

    .phase-indicator {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .option {
        padding: 14px 16px;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }

    .icon {
        font-size: 2.2em;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 22px 16px;
    }

    h1 {
        font-size: 1.25em;
    }

    .radio-group {
        grid-template-columns: repeat(4, 1fr);
    }

    .cta-button {
        font-size: 0.95em;
        padding: 13px 20px;
    }

    .price-range .price {
        font-size: 1.5em;
    }
}
