/* ============================================
   Radar da Inovação — Layout por Seções
   Scroll natural com hero fullscreen
   ============================================ */

/* ==========================================
   Hero fullscreen
   ========================================== */

.radar-hero-fullscreen {
    position: relative;
    min-height: calc(100vh - 120px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #6d28d9;
    overflow: hidden;
}

.radar-hero-fg {
    position: relative;
    z-index: 2;
    padding: 3rem 0;
}

.radar-hero-layout {
    display: flex;
    align-items: center;
    gap: 3.5rem;
}

.radar-hero-text {
    flex: 1;
    min-width: 0;
}

.radar-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 1.25rem;
}

.radar-hero-heading {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.15;
    margin: 0 0 1.25rem;
    letter-spacing: -0.02em;
}

.radar-hero-body {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
    margin: 0 0 1.75rem;
    max-width: 560px;
}

.radar-hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    margin-bottom: 2.25rem;
}

.radar-hero-chips span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

/* CTA com brilho animado */
.radar-hero-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    color: #5b21b6;
    background: white;
    border: none;
    border-radius: 0.625rem;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18), 0 0 0 0 rgba(255, 255, 255, 0);
}

.radar-hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), 0 0 40px rgba(255, 255, 255, 0.08);
}

.radar-hero-cta-text {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.radar-hero-cta-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        105deg,
        transparent 20%,
        rgba(124, 58, 237, 0.12) 40%,
        rgba(124, 58, 237, 0.25) 50%,
        rgba(124, 58, 237, 0.12) 60%,
        transparent 80%
    );
    z-index: 1;
    animation: heroShine 3s ease-in-out infinite;
}

@keyframes heroShine {
    0%   { left: -100%; }
    50%  { left: 120%; }
    100% { left: 120%; }
}

/* Stat cards */
.radar-hero-cards {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.radar-hero-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 6.5rem;
    height: 6.5rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0.875rem;
    transition: background 0.2s;
}

.radar-hero-card:hover {
    background: rgba(255, 255, 255, 0.13);
}

.radar-hero-card-num {
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.radar-hero-card-label {
    font-size: 0.625rem;
    color: rgba(255, 255, 255, 0.48);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 0.375rem;
}

/* Scroll hint */
.radar-hero-scroll-hint {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.875rem;
    animation: heroBounce 2s ease-in-out infinite;
}

@keyframes heroBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(6px); }
}

/* Hero responsivo */
@media (max-width: 1023px) {
    .radar-hero-fullscreen {
        min-height: calc(100vh - 130px);
    }

    .radar-hero-layout {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .radar-hero-heading {
        font-size: 1.75rem;
    }

    .radar-hero-body {
        font-size: 0.9375rem;
        max-width: none;
    }

    .radar-hero-chips {
        justify-content: center;
    }

    .radar-hero-cta {
        width: 100%;
        justify-content: center;
    }

    .radar-hero-cards {
        width: 100%;
    }

    .radar-hero-card {
        flex: 1;
        width: auto;
        height: 5rem;
    }

    .radar-hero-card-num {
        font-size: 1.375rem;
    }
}

@media (max-width: 640px) {
    .radar-hero-heading {
        font-size: 1.5rem;
    }

    .radar-hero-fg {
        padding: 2rem 0;
    }

    .radar-hero-chips span {
        font-size: 0.75rem;
    }
}

/* Layout principal */
.radar-form-shell {
    background: #f9fafb;
    min-height: 50vh;
}

/* Nav do radar */
.radar-nav {
    position: relative;
    z-index: 40;
}

/* Barra de progresso */
.radar-progress-sticky {
    position: sticky;
    top: 0;
    z-index: 30;
    background: white;
    border-bottom: 1px solid #e5e7eb;
    padding: 1rem 0 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

/* Steps row (bolinhas numeradas) */
.radar-steps-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.radar-step-dot {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    border: 2px solid #e5e7eb;
    background: white;
    cursor: pointer;
    transition: all 0.25s;
    flex-shrink: 0;
    position: relative;
    padding: 0;
}

.radar-step-dot .radar-step-num {
    font-size: 0.6875rem;
    font-weight: 700;
    color: #9ca3af;
    line-height: 1;
}

.radar-step-dot .radar-step-check {
    display: none;
    font-size: 0.625rem;
    color: white;
    line-height: 1;
}

.radar-step-dot.active {
    border-color: #7c3aed;
    background: #7c3aed;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
}

.radar-step-dot.active .radar-step-num {
    color: white;
}

.radar-step-dot.completed {
    border-color: #10b981;
    background: #10b981;
    cursor: pointer;
}

.radar-step-dot.completed .radar-step-num {
    display: none;
}

.radar-step-dot.completed .radar-step-check {
    display: block;
}

.radar-step-dot:not(.active):not(.completed):hover {
    border-color: #c4b5fd;
}

.radar-step-line {
    flex: 1;
    height: 2px;
    background: #e5e7eb;
    max-width: 3rem;
    transition: background 0.3s;
}

.radar-step-line.completed {
    background: #10b981;
}

/* Viewport do formulário */
.radar-form-viewport {
    padding: 1.5rem 1rem 3rem;
}

@media (min-width: 768px) {
    .radar-form-viewport {
        padding: 2rem 2rem 4rem;
    }
}

#radarForm {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
}

/* ==========================================
   Steps (wizard — um por vez)
   ========================================== */

.radar-step {
    display: none;
    animation: radarStepIn 0.3s ease-out;
}

.radar-step.active {
    display: block;
}

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

/* Header do step */
.radar-step-header {
    margin-bottom: 2rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #e5e7eb;
}

.radar-step-badge {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #7c3aed;
    background: #f5f3ff;
    padding: 0.25rem 0.625rem;
    border-radius: 0.25rem;
    margin-bottom: 0.625rem;
}

.radar-step-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: #111827;
    margin: 0;
    line-height: 1.3;
}

.radar-step-desc {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.6;
    margin-top: 0.5rem;
}

/* Body do step */
.radar-step-body {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1.5rem 1.25rem;
}

/* Footer do step (botões) */
.radar-step-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.radar-btn-proxima-secao,
.radar-btn-enviar {
    display: inline-flex;
    align-items: center;
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    background: #7c3aed;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.15s;
}

.radar-btn-proxima-secao:hover,
.radar-btn-enviar:hover {
    background: #6d28d9;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.radar-btn-proxima-secao:disabled,
.radar-btn-enviar:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.radar-btn-voltar-secao {
    display: inline-flex;
    align-items: center;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #6b7280;
    background: white;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.15s;
}

.radar-btn-voltar-secao:hover {
    background: #f9fafb;
    border-color: #9ca3af;
}

/* ==========================================
   Perguntas dentro da seção
   ========================================== */

.radar-pergunta {
    margin-bottom: 1.75rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f3f4f6;
}

.radar-pergunta:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.radar-pergunta-label {
    display: block;
    margin-bottom: 0.75rem;
}

.radar-pergunta-numero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    background: #7c3aed;
    color: white;
    border-radius: 0.25rem;
    font-size: 0.625rem;
    font-weight: 700;
    margin-right: 0.5rem;
    vertical-align: middle;
}

.radar-pergunta-texto {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #111827;
    line-height: 1.5;
}

.radar-pergunta-subtexto {
    font-size: 0.8125rem;
    color: #6b7280;
    margin-top: -0.25rem;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.radar-pergunta-hint {
    display: block;
    font-size: 0.75rem;
    color: #9ca3af;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

/* ==========================================
   Inputs
   ========================================== */

.radar-input {
    width: 100%;
    padding: 0.625rem 0.875rem;
    font-size: 0.9375rem;
    color: #111827;
    background: white;
    border: 1.5px solid #e5e7eb;
    border-radius: 0.5rem;
    transition: all 0.2s;
    outline: none;
}

.radar-input:hover {
    border-color: #c4b5fd;
}

.radar-input:focus {
    border-color: #7c3aed;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.radar-input::placeholder {
    color: #d1d5db;
}

textarea.radar-input {
    resize: vertical;
    min-height: 4.5rem;
    font-size: 0.875rem;
}

select.radar-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%236b7280'%3E%3Cpath fill-rule='evenodd' d='M5.23 7.21a.75.75 0 011.06.02L10 11.168l3.71-3.938a.75.75 0 111.08 1.04l-4.25 4.5a.75.75 0 01-1.08 0l-4.25-4.5a.75.75 0 01.02-1.06z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1rem;
    padding-right: 2.5rem;
    cursor: pointer;
}

select.radar-select option[value=""] {
    color: #d1d5db;
}

/* Pre-filled indicator */
.radar-campo-prefilled .radar-input {
    border-color: #a7f3d0;
    background: #f0fdf4;
}

.radar-campo-prefilled .radar-input:focus {
    border-color: #7c3aed;
    background: white;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.radar-prefill-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.6875rem;
    color: #059669;
    margin-left: 0.5rem;
    font-weight: 500;
}

/* ==========================================
   Radio cards
   ========================================== */

.radar-options-list {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.radar-radio-card {
    display: block;
    position: relative;
    cursor: pointer;
    border: 1.5px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 0.625rem 0.875rem;
    transition: all 0.15s;
    background: white;
}

.radar-radio-card:hover {
    border-color: #c4b5fd;
    background: #faf5ff;
}

.radar-radio-card.selected {
    border-color: #7c3aed;
    background: #f5f3ff;
    box-shadow: 0 0 0 1px #7c3aed;
}

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

.radar-radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #374151;
    line-height: 1.4;
}

.radar-radio-dot {
    width: 1.125rem;
    height: 1.125rem;
    border-radius: 50%;
    border: 2px solid #d1d5db;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s;
}

.radar-radio-card.selected .radar-radio-dot,
.radar-radio-card input[type="radio"]:checked ~ .radar-radio-label .radar-radio-dot {
    border-color: #7c3aed;
    background: #7c3aed;
}

.radar-radio-card.selected .radar-radio-dot::after,
.radar-radio-card input[type="radio"]:checked ~ .radar-radio-label .radar-radio-dot::after {
    content: '';
    width: 0.3125rem;
    height: 0.3125rem;
    border-radius: 50%;
    background: white;
}

.radar-option-key {
    display: none;
}

/* ==========================================
   Checkbox cards
   ========================================== */

.radar-checkbox-card {
    display: block;
    position: relative;
    cursor: pointer;
    border: 1.5px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 0.625rem 0.875rem;
    transition: all 0.15s;
    background: white;
}

.radar-checkbox-card:hover {
    border-color: #c4b5fd;
    background: #faf5ff;
}

.radar-checkbox-card.selected {
    border-color: #7c3aed;
    background: #f5f3ff;
    box-shadow: 0 0 0 1px #7c3aed;
}

.radar-checkbox-card.disabled {
    opacity: 0.45;
    cursor: not-allowed;
    pointer-events: none;
}

.radar-checkbox-card input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.radar-checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #374151;
    line-height: 1.4;
}

.radar-checkbox-box {
    width: 1.125rem;
    height: 1.125rem;
    border-radius: 0.25rem;
    border: 2px solid #d1d5db;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s;
}

.radar-checkbox-card.selected .radar-checkbox-box,
.radar-checkbox-card input[type="checkbox"]:checked ~ .radar-checkbox-label .radar-checkbox-box {
    border-color: #7c3aed;
    background: #7c3aed;
}

.radar-checkbox-card.selected .radar-checkbox-box::after,
.radar-checkbox-card input[type="checkbox"]:checked ~ .radar-checkbox-label .radar-checkbox-box::after {
    content: '';
    width: 0.5rem;
    height: 0.3125rem;
    border-left: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(-45deg);
    margin-top: -2px;
}

/* ==========================================
   Escala
   ========================================== */

.radar-escala-group {
    display: flex;
    gap: 0.375rem;
}

.radar-escala-item {
    flex: 1;
    text-align: center;
    position: relative;
}

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

.radar-escala-btn {
    display: block;
    width: 100%;
    padding: 0.75rem 0.25rem;
    border: 1.5px solid #e5e7eb;
    border-radius: 0.5rem;
    background: white;
    cursor: pointer;
    transition: all 0.2s;
}

.radar-escala-btn:hover {
    border-color: #c4b5fd;
    background: #faf5ff;
    transform: translateY(-1px);
}

.radar-escala-item input[type="radio"]:checked + .radar-escala-btn {
    border-color: #7c3aed;
    background: #7c3aed;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.radar-escala-number {
    display: block;
    font-size: 1.125rem;
    font-weight: 800;
    margin-bottom: 0.125rem;
}

.radar-escala-label {
    display: block;
    font-size: 0.5625rem;
    line-height: 1.2;
    color: #6b7280;
}

.radar-escala-item input[type="radio"]:checked + .radar-escala-btn .radar-escala-label {
    color: rgba(255, 255, 255, 0.85);
}

/* Grid para estados */
.radar-grid-4 {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.375rem;
    flex-direction: initial;
}

.radar-grid-4 .radar-radio-card {
    text-align: center;
    padding: 0.5rem 0.25rem;
}

.radar-grid-4 .radar-radio-label {
    justify-content: center;
    gap: 0;
    font-size: 0.8125rem;
    font-weight: 600;
}

.radar-grid-4 .radar-radio-dot {
    display: none;
}

/* ==========================================
   Campo "Outro" / Texto condicional
   ========================================== */

.radar-outro-field {
    display: none;
    margin-top: 0.5rem;
    animation: radarFadeIn 0.25s ease-out;
}

.radar-outro-field.visible {
    display: block;
}

.radar-texto-condicional {
    display: none;
    margin-top: 0.5rem;
    animation: radarFadeIn 0.25s ease-out;
}

.radar-texto-condicional.visible {
    display: block;
}

/* ==========================================
   CNPJ / CEP feedback
   ========================================== */

.radar-cnpj-wrapper,
.radar-cep-wrapper {
    position: relative;
}

.radar-cnpj-feedback,
.radar-cep-feedback {
    margin-top: 0.5rem;
    font-size: 0.8125rem;
    line-height: 1.5;
    border-radius: 0.375rem;
    padding: 0;
    transition: all 0.2s;
    min-height: 0;
}

.radar-cnpj-feedback:empty,
.radar-cep-feedback:empty {
    display: none;
}

.radar-cnpj-feedback.loading,
.radar-cep-feedback.loading {
    color: #6b7280;
    background: #f3f4f6;
    padding: 0.5rem 0.75rem;
}

.radar-cnpj-feedback.success,
.radar-cep-feedback.success {
    color: #065f46;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    padding: 0.5rem 0.75rem;
}

.radar-cnpj-feedback.error,
.radar-cep-feedback.error {
    color: #991b1b;
    background: #fef2f2;
    border: 1px solid #fecaca;
    padding: 0.5rem 0.75rem;
}

/* ==========================================
   Alerta de região (fora de N/NE/CO)
   ========================================== */

.radar-regiao-alerta {
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 0.5rem;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    animation: radarFadeIn 0.3s ease-out;
}

/* ==========================================
   Progress bar
   ========================================== */

.radar-progress-bar {
    height: 3px;
    background: #e5e7eb;
    border-radius: 2px;
    overflow: hidden;
}

.radar-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #7c3aed, #a78bfa);
    border-radius: 2px;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================
   Validação
   ========================================== */

.radar-field-error {
    border-color: #ef4444 !important;
}

.radar-error-msg {
    color: #ef4444;
    font-size: 0.75rem;
    margin-top: 0.375rem;
    display: none;
    align-items: center;
    gap: 0.25rem;
}

.radar-error-msg.visible {
    display: flex;
}

/* ==========================================
   Tela de sucesso
   ========================================== */

.radar-sucesso {
    text-align: center;
    padding: 3rem 1rem;
    animation: radarFadeIn 0.5s ease-out;
}

.radar-sucesso-icon {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 0 8px rgba(34, 197, 94, 0.08);
}

/* Saving indicator */
.radar-saving-indicator {
    display: none;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.6875rem;
    color: #9ca3af;
}

.radar-saving-indicator.visible {
    display: inline-flex;
}

.radar-saving-indicator.saved {
    color: #10b981;
}

/* ==========================================
   Animações
   ========================================== */

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

/* ==========================================
   Scrollbar oculta
   ========================================== */

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}
.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* ==========================================
   Responsivo
   ========================================== */

@media (max-width: 640px) {
    .radar-step-title {
        font-size: 1.125rem;
    }

    .radar-step-body {
        padding: 1rem;
    }

    .radar-pergunta-texto {
        font-size: 0.875rem;
    }

    .radar-input {
        font-size: 0.875rem;
        padding: 0.5rem 0.75rem;
    }

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

    .radar-escala-group {
        gap: 0.25rem;
    }

    .radar-escala-btn {
        padding: 0.5rem 0.125rem;
    }

    .radar-escala-number {
        font-size: 0.9375rem;
    }

    .radar-escala-label {
        font-size: 0.5rem;
    }

    .radar-form-viewport {
        padding: 1rem 0.75rem 2rem;
    }

    .radar-radio-card,
    .radar-checkbox-card {
        padding: 0.5rem 0.75rem;
    }

    .radar-radio-label,
    .radar-checkbox-label {
        font-size: 0.8125rem;
    }

    .radar-step-footer {
        flex-direction: column-reverse;
    }

    .radar-btn-proxima-secao,
    .radar-btn-enviar,
    .radar-btn-voltar-secao {
        width: 100%;
        justify-content: center;
    }

    .radar-step-dot {
        width: 1.625rem;
        height: 1.625rem;
    }

    .radar-step-dot .radar-step-num {
        font-size: 0.5625rem;
    }

    .radar-step-line {
        max-width: 1.5rem;
    }

    .radar-steps-row {
        gap: 0;
    }
}
