@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

.pd-wrapper *, .pd-wrapper *::before, .pd-wrapper *::after {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

[v-cloak] { display: none !important; }

.pd-wrapper {
    --bg: #ffffff;
    --text: #0f172a;
    --text-muted: #64748b;
    --border: #cbd5e1;
    --primary: #73b12d; 
    --primary-dark: #5a8a22; 
    --hover: #f1f5f9;
    --radius: 0.75rem;
    font-family: 'Inter', sans-serif;
    color: var(--text);
    margin: 0 auto;
    position: relative;
    width: 100%;
    line-height: 1.5;
    display: flex;
    justify-content: center;
}

.pd-container {
    width: 750px; 
    max-width: 100%; 
    margin: 0 auto;
    background: var(--bg);
    padding: 20px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .pd-container {
        max-width: 100%;
        padding: 15px;
    }
}

.pd-progress-wrapper { display: flex; align-items: center; margin-bottom: 2.5rem; gap: 1rem; width: 100%; }

.pd-back-arrow { 
    background: #fff; border: 1px solid var(--border); 
    width: 40px; height: 40px; border-radius: 50%; 
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    color: var(--primary); transition: 0.2s; flex-shrink: 0;
}
.pd-back-arrow:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

.pd-progress-bar { flex: 1; background: var(--border); height: 6px; border-radius: 3px; overflow: hidden; }
.pd-progress-fill { background: var(--primary); height: 100%; transition: width 0.4s ease; }

.pd-header { text-align: center; margin-bottom: 2rem; width: 100%; }
.pd-header h1 { font-size: 1.6rem; font-weight: 700; color: var(--primary); margin: 0; }

.pd-grid-2 { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 1.5rem; 
    width: 100%;
}
.pd-card-vertical { 
    border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; 
    cursor: pointer; transition: 0.3s; background: #fff; width: 100%;
}
.pd-card-vertical:hover { border-color: var(--primary); transform: translateY(-4px); }
.pd-card-vertical img { width: 100%; height: 210px; object-fit: cover; display: block; }
.pd-card-vertical h3 { padding: 1.25rem; margin: 0; text-align: center; font-size: 1.1rem; }

.pd-slider-item { margin-bottom: 2.2rem; width: 100%; }
.pd-slider-labels { display: flex; justify-content: space-between; margin-bottom: 0.8rem; align-items: center; }
.pd-slider-labels span { font-weight: 600; color: var(--text); }
.pd-slider-labels strong { color: var(--primary); font-size: 1.25rem; }

.pd-range { 
    -webkit-appearance: none; 
    width: 100%; 
    height: 6px; 
    background: #e2e8f0; 
    border-radius: 3px; 
    outline: none; 
    margin: 0; 
    cursor: pointer; 
}

.pd-range::-webkit-slider-thumb { 
    -webkit-appearance: none; 
    width: 26px; height: 26px; 
    background: #fff; border: 4px solid var(--primary); 
    border-radius: 50%; box-shadow: 0 2px 6px rgba(0,0,0,0.15); 
    transition: 0.2s; 
}
.pd-range::-webkit-slider-thumb:hover { transform: scale(1.1); }

.pd-range::-moz-range-thumb { 
    width: 22px; height: 22px; 
    background: #fff; border: 4px solid var(--primary); 
    border-radius: 50%; box-shadow: 0 2px 6px rgba(0,0,0,0.15); 
    cursor: pointer;
}

.pd-slider-minmax { display: flex; justify-content: space-between; font-size: 0.8rem; color: var(--primary); margin-top: 10px; font-weight: 600; }

.pd-grid-list { display: flex; flex-direction: column; gap: 0.8rem; width: 100%; }
.pd-card-horizontal { 
    display: flex; align-items: center; border: 1px solid var(--border); 
    border-radius: var(--radius); padding: 1.1rem; cursor: pointer; 
    transition: 0.2s; background: #fff; width: 100%;
}
.pd-card-horizontal:hover { border-color: var(--primary); background: #fcfcfc; }
.pd-card-horizontal.active { border-color: var(--primary); border-width: 2px; background: #f8fafc; box-shadow: 0 0 0 1px var(--primary); }

.pd-card-horizontal img { width: 90px; height: 70px; object-fit: cover; border-radius: 6px; margin-right: 1.5rem; flex-shrink: 0; }
.pd-card-text { flex: 1; }
.pd-card-text h3 { margin: 0 0 4px 0; font-size: 1.05rem; font-weight: 600; }

.pd-checkbox { 
    width: 24px; height: 24px; border: 2px solid var(--border); border-radius: 6px; 
    margin-left: auto; display: flex; align-items: center; justify-content: center; transition: 0.2s; background: #fff; flex-shrink: 0;
}
.pd-card-horizontal.active .pd-checkbox { background: var(--primary); border-color: var(--primary); }
.pd-check-inner { color: white; font-weight: bold; font-size: 14px; }

.pd-form-grid { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 1.2rem; 
    margin-bottom: 2rem; 
    width: 100%;
}

.pd-input, .pd-textarea { 
    width: 100%; border: 1px solid var(--border); border-radius: var(--radius); 
    padding: 0.9rem 1rem; font-family: inherit; font-size: 16px; 
    height: 45px;
}
.pd-input:focus, .pd-textarea:focus { outline: none; border-color: var(--primary); }

.pd-btn-full { 
    width: 100%; max-width: 350px; background: var(--primary); color: white; border: none; height: 3.8rem; 
    border-radius: var(--radius); font-size: 1.15rem; font-weight: 700; cursor: pointer; display: block; margin: 2rem auto 0; transition: 0.3s;
}
.pd-btn-full:hover { background: var(--primary-dark); transform: translateY(-2px); }
.pd-btn-full:disabled { background: #cbd5e1 !important; color: #94a3b8 !important; cursor: not-allowed; transform: none !important; }

@media (max-width: 768px) {
    
    .pd-grid-2 { grid-template-columns: 1fr; }
    
    .pd-form-grid { 
        display: flex; 
        flex-direction: column; 
        gap: 15px; 
    }

    .pd-input {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .pd-btn-full { max-width: 100%; }
    
    .pd-card-horizontal { padding: 0.8rem; }
    .pd-card-horizontal img { width: 70px; height: 60px; margin-right: 1rem; }
}

.pd-success { text-align: center; padding: 60px 20px; width: 100%; }
.pd-success-icon { 
    width: 80px; height: 80px; background: var(--primary); color: white; 
    border-radius: 50%; display: flex; align-items: center; justify-content: center; 
    font-size: 40px; margin: 0 auto 1.5rem; 
}

.pd-slider-minmax {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--primary);
    margin-top: 8px;
    font-weight: 600;
    opacity: 0.8;
}