.advice-form-container{min-height:100vh;background:var(--background);display:flex;align-items:flex-start;justify-content:center;padding:1rem;position:relative;overflow:hidden}.advice-form-card{background:var(--card);border:1px solid var(--border);border-radius:16px;box-shadow:0 12px 32px -12px rgba(15,26,46,.18);width:100%;max-width:1000px;max-height:90vh;display:grid;grid-template-columns:1fr 1fr;gap:0;overflow:hidden;position:relative;animation:slideUp .8s cubic-bezier(.16,1,.3,1)}@media (prefers-reduced-motion:reduce){.advice-form-card,.advice-form-icon,.advice-form-right:before,.illustration-image{animation:none!important}}@keyframes slideUp{0%{opacity:0;transform:translateY(60px) scale(.95)}to{opacity:1;transform:translateY(0) scale(1)}}.advice-form-left{padding:2rem;display:flex;flex-direction:column;justify-content:flex-start;position:relative;overflow-y:auto;max-height:90vh}.advice-form-right{background:linear-gradient(135deg,var(--primary) 0,color-mix(in srgb,var(--primary) 70%,black) 100%);display:flex;align-items:center;justify-content:center;position:relative;overflow:hidden}.advice-form-right:before{content:"";position:absolute;top:-50%;right:-50%;width:200%;height:200%;background:radial-gradient(circle,rgba(255,255,255,.12) 0,transparent 70%);animation:float 6s ease-in-out infinite}@keyframes float{0%,to{transform:translateY(0) rotate(0deg)}50%{transform:translateY(-20px) rotate(5deg)}}.advice-form-header{text-align:center;margin-bottom:2.5rem}.advice-form-icon{width:80px;height:80px;background:var(--secondary);border-radius:50%;display:flex;align-items:center;justify-content:center;margin:0 auto 1.5rem;color:var(--secondary-foreground);box-shadow:0 10px 30px color-mix(in srgb,var(--secondary) 35%,transparent);animation:pulse 2s infinite}@keyframes pulse{0%,to{transform:scale(1)}50%{transform:scale(1.05)}}.advice-form-title{font-family:var(--font-heading),system-ui,sans-serif;font-size:2.5rem;font-weight:700;color:var(--foreground);margin-bottom:.5rem}.advice-form-subtitle{font-size:1.125rem;color:var(--muted-foreground);line-height:1.6}.advice-form{display:flex;flex-direction:column;gap:.75rem}.form-section{background:var(--muted);border-radius:8px;padding:.75rem;border:1px solid var(--border);transition:all .3s ease;margin-bottom:.75rem}.form-section:hover{border-color:color-mix(in srgb,var(--primary) 30%,var(--border))}.form-section.collapsible{cursor:pointer;user-select:none}.form-section.collapsible .section-header{margin-bottom:0}.form-section.collapsible .section-content{max-height:0;overflow:hidden;transition:max-height .3s ease}.form-section.collapsible.expanded .section-content{max-height:1000px;margin-top:1rem}.form-section.collapsible .section-header:after{content:"+";font-size:1.5rem;font-weight:700;color:var(--primary);transition:transform .3s ease}.form-section.collapsible.expanded .section-header:after{transform:rotate(45deg)}.section-header{gap:.5rem;margin-bottom:.75rem}.section-header,.section-icon{display:flex;align-items:center}.section-icon{width:32px;height:32px;background:var(--primary);border-radius:8px;justify-content:center;color:var(--primary-foreground);font-size:1rem}.section-title{font-size:1rem;font-weight:700;color:var(--foreground)}.form-group{display:flex;flex-direction:column;gap:.25rem;margin-bottom:.5rem}.form-group-row{grid-template-columns:1fr 1fr}.form-group-row,.form-group-triple{display:grid;gap:.75rem;margin-bottom:.5rem}.form-group-triple{grid-template-columns:1fr 1fr 1fr}.form-label{font-size:.875rem;font-weight:600;color:var(--foreground);display:flex;align-items:center;gap:.25rem}.required-asterisk{color:var(--destructive);font-weight:700}.form-input{width:100%;padding:.5rem .75rem;border:1px solid var(--border);border-radius:8px;font-size:.875rem;transition:all .3s ease;background:var(--background);color:var(--foreground);height:36px}.form-input:focus{outline:none;border-color:var(--primary);box-shadow:0 0 0 3px color-mix(in srgb,var(--primary) 12%,transparent)}.form-input::placeholder{color:var(--muted-foreground);font-style:italic}.form-select{width:100%;border:1px solid var(--border);border-radius:8px;font-size:.875rem;background:var(--background);color:var(--foreground);cursor:pointer;transition:all .3s ease;appearance:none;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");background-position:right .5rem center;background-repeat:no-repeat;background-size:1em 1em;padding:.5rem 2rem .5rem .75rem;height:36px}.form-select:focus{outline:none;border-color:var(--primary);box-shadow:0 0 0 3px color-mix(in srgb,var(--primary) 12%,transparent)}.form-textarea{width:100%;padding:.5rem .75rem;border:1px solid var(--border);border-radius:8px;font-size:.875rem;min-height:60px;resize:vertical;font-family:inherit;transition:all .3s ease;background:var(--background);color:var(--foreground)}.form-textarea:focus{outline:none;border-color:var(--primary);box-shadow:0 0 0 3px color-mix(in srgb,var(--primary) 12%,transparent)}.form-textarea::placeholder{color:var(--muted-foreground);font-style:italic}.form-buttons{display:flex;gap:.5rem;margin-top:.75rem}.btn-primary{flex:1;padding:.5rem 1rem;background:var(--secondary);color:var(--secondary-foreground);border:none;border-radius:6px;font-size:.875rem;font-weight:600;cursor:pointer;transition:all .3s ease;height:36px;display:flex;align-items:center;justify-content:center}.btn-primary:hover{background:color-mix(in srgb,var(--secondary) 90%,black)}.btn-primary:disabled{opacity:.6;cursor:not-allowed}.btn-secondary{flex:1;padding:.5rem 1rem;background:var(--background);color:var(--primary);border:1px solid var(--primary);border-radius:6px;font-size:.875rem;font-weight:600;cursor:pointer;transition:all .3s ease;height:36px;display:flex;align-items:center;justify-content:center}.btn-secondary:hover{background:var(--primary);color:var(--primary-foreground)}.illustration-container{display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;color:var(--primary-foreground);position:relative;z-index:1;padding:2rem}.illustration-title{font-family:var(--font-heading),system-ui,sans-serif;font-size:2rem;font-weight:700;margin-bottom:1rem}.illustration-subtitle{font-size:1.125rem;opacity:.9;line-height:1.6;margin-bottom:2rem}.illustration-image{width:200px;height:200px;object-fit:contain;filter:drop-shadow(0 10px 20px rgba(0,0,0,.2));animation:bounce 3s ease-in-out infinite}@keyframes bounce{0%,to{transform:translateY(0)}50%{transform:translateY(-10px)}}@media (max-width:768px){.advice-form-container{padding:.5rem}.advice-form-card{grid-template-columns:1fr;max-width:100%;border-radius:12px;max-height:95vh}.advice-form-left{padding:1.5rem;max-height:95vh}.advice-form-right{padding:1.5rem;min-height:250px}.advice-form-title{font-size:1.75rem}.form-buttons{flex-direction:column}.illustration-image{width:120px;height:120px}.form-group-row,.form-group-triple{grid-template-columns:1fr;gap:.75rem}}@media (max-width:480px){.advice-form-left{padding:1rem}.advice-form-title{font-size:1.5rem}.form-section{padding:.75rem;margin-bottom:.75rem}.section-header{gap:.5rem}.section-icon{width:32px;height:32px}.section-title{font-size:1rem}}