.quotes-page main{min-height:calc(100vh - var(--header-height));background:var(--bg-light)}.quote-flow{max-width:720px;margin:0 auto;padding:calc(var(--header-height) + 32px) 24px 80px}.quote-progress{padding:28px 0 36px}.quote-progress-track{display:flex;justify-content:space-between;align-items:flex-start;position:relative;max-width:520px;margin:0 auto}.quote-progress-step{display:flex;flex-direction:column;align-items:center;gap:8px;position:relative;z-index:2;flex:0 0 auto}.quote-progress-dot{width:36px;height:36px;border-radius:50%;background:var(--bg-white);border:2px solid var(--border);display:flex;align-items:center;justify-content:center;transition:all .4s var(--bounce);position:relative}.quote-progress-dot-number{font-family:var(--font-heading);font-size:14px;font-weight:700;color:var(--text-light);transition:all .3s ease}.quote-progress-dot-check{position:absolute;display:flex;align-items:center;justify-content:center;opacity:0;transform:scale(.5);transition:all .3s var(--bounce);color:#fff}.quote-progress-label{font-family:var(--font-heading);font-size:12px;font-weight:600;color:var(--text-light);transition:color .3s ease;white-space:nowrap}.quote-progress-line{position:absolute;top:18px;left:18px;right:18px;height:2px;background:var(--border);z-index:1}.quote-progress-line-fill{height:100%;width:0;background:var(--green);transition:width .5s cubic-bezier(.25,1,.5,1);border-radius:1px}.quote-progress-step.active .quote-progress-dot{border-color:var(--green);background:var(--green-pale);box-shadow:0 0 0 4px #39b54a1a}.quote-progress-step.active .quote-progress-dot-number,.quote-progress-step.active .quote-progress-label{color:var(--green)}.quote-progress-step.completed .quote-progress-dot{border-color:var(--green);background:var(--green)}.quote-progress-step.completed .quote-progress-dot-number{opacity:0;transform:scale(.5)}.quote-progress-step.completed .quote-progress-dot-check{opacity:1;transform:scale(1)}.quote-progress-step.completed .quote-progress-label{color:var(--green-dark)}.quote-step{animation:quoteStepIn .4s ease both}.quote-step[hidden]{display:none}.quote-step-inner{background:var(--bg-white);border-radius:var(--radius);box-shadow:var(--shadow-card);border:1px solid var(--border);padding:40px 36px}@keyframes quoteStepIn{0%{opacity:0;transform:translateY(16px)}to{opacity:1;transform:translateY(0)}}.quote-step-header{margin-bottom:32px}.quote-step-title{font-family:var(--font-heading);font-size:clamp(22px,3vw,28px);font-weight:800;color:var(--text-dark);margin-bottom:8px;line-height:1.2}.quote-step-subtitle{font-size:15px;color:var(--text-medium);line-height:1.6;max-width:560px}.quote-form-group{margin-bottom:28px}.quote-form-group:last-child{margin-bottom:0}.quote-form-row{display:grid;grid-template-columns:1fr 1fr;gap:20px;margin-bottom:28px}.quote-form-row:last-child{margin-bottom:0}.quote-label{display:block;font-family:var(--font-heading);font-size:14px;font-weight:700;color:var(--text-dark);margin-bottom:10px}.quote-label-optional{font-weight:500;color:var(--text-light);font-size:12px;margin-left:6px}.quote-input{display:block;width:100%;padding:13px 16px;border:2px solid var(--border);border-radius:var(--radius-sm);font-family:var(--font-body);font-size:15px;color:var(--text-dark);background:var(--bg-white);transition:all var(--transition);outline:none}.quote-input::placeholder{color:var(--text-light)}.quote-input:focus{border-color:var(--green);box-shadow:0 0 0 3px #39b54a1a}.quote-input.has-error{border-color:#e53e3e;box-shadow:0 0 0 3px #e53e3e1a}.quote-textarea{display:block;width:100%;padding:13px 16px;border:2px solid var(--border);border-radius:var(--radius-sm);font-family:var(--font-body);font-size:15px;color:var(--text-dark);background:var(--bg-white);transition:all var(--transition);outline:none;resize:vertical;min-height:80px;line-height:1.6}.quote-textarea::placeholder{color:var(--text-light)}.quote-textarea:focus{border-color:var(--green);box-shadow:0 0 0 3px #39b54a1a}.quote-textarea.has-error{border-color:#e53e3e;box-shadow:0 0 0 3px #e53e3e1a}.quote-textarea-lg{min-height:120px}.quote-field-hint{display:block;margin-top:6px;font-size:13px;color:var(--text-light);line-height:1.5}.quote-field-error{display:block;margin-top:6px;font-size:13px;color:#e53e3e;font-weight:600;line-height:1.5}.quote-category-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:10px}.quote-category-card{display:flex;flex-direction:column;align-items:center;gap:8px;padding:16px 8px;border:2px solid var(--border);border-radius:var(--radius-sm);background:var(--bg-white);cursor:pointer;transition:all .25s var(--bounce);color:var(--text-medium)}.quote-category-card:hover{border-color:var(--green-light);background:var(--green-pale);color:var(--green);transform:translateY(-2px)}.quote-category-card[aria-pressed=true]{border-color:var(--green);background:var(--green-pale);color:var(--green);box-shadow:0 0 0 3px #39b54a1a}.quote-category-icon{display:flex;align-items:center;justify-content:center;width:32px;height:32px}.quote-category-label{font-family:var(--font-heading);font-size:12px;font-weight:700;text-align:center;line-height:1.2}.quote-mode-options{display:flex;flex-direction:column;gap:12px}.quote-mode-card{display:flex;align-items:flex-start;gap:14px;padding:18px 20px;border:2px solid var(--border);border-radius:var(--radius-sm);cursor:pointer;transition:all .25s ease;position:relative}.quote-mode-card:hover{border-color:var(--green-light);background:#39b54a05}.quote-mode-card:has(input:checked){border-color:var(--green);background:var(--green-pale);box-shadow:0 0 0 3px #39b54a14}.quote-mode-card input{position:absolute;opacity:0;pointer-events:none}.quote-mode-radio{flex-shrink:0;width:20px;height:20px;border-radius:50%;border:2px solid var(--border);margin-top:2px;position:relative;transition:all .25s ease}.quote-mode-card:has(input:checked) .quote-mode-radio{border-color:var(--green)}.quote-mode-radio:after{content:"";position:absolute;inset:3px;border-radius:50%;background:var(--green);transform:scale(0);transition:transform .25s var(--bounce)}.quote-mode-card:has(input:checked) .quote-mode-radio:after{transform:scale(1)}.quote-mode-content{display:flex;align-items:flex-start;gap:12px;flex:1}.quote-mode-icon{display:flex;align-items:center;justify-content:center;width:36px;height:36px;flex-shrink:0;border-radius:var(--radius-sm);background:var(--bg-light);color:var(--green);transition:all .25s ease}.quote-mode-card:has(input:checked) .quote-mode-icon{background:var(--green);color:#fff}.quote-mode-text{display:flex;flex-direction:column;gap:2px}.quote-mode-text strong{font-family:var(--font-heading);font-size:15px;font-weight:700;color:var(--text-dark)}.quote-mode-text span{font-size:13px;color:var(--text-medium);line-height:1.5}.quote-business-context{margin-top:24px;padding:20px;background:var(--bg-warm);border-radius:var(--radius-sm);border:1px solid rgb(255 200 10 / .3)}.quote-business-context-inner{display:flex;align-items:center;gap:14px;margin-bottom:14px}.quote-business-avatar{width:44px;height:44px;border-radius:50%;background:var(--green);color:#fff;display:flex;align-items:center;justify-content:center;font-family:var(--font-heading);font-weight:800;font-size:16px;flex-shrink:0}.quote-business-info{display:flex;flex-direction:column;gap:2px}.quote-business-info strong{font-family:var(--font-heading);font-size:15px;font-weight:700;color:var(--text-dark)}.quote-business-info span{font-size:13px;color:var(--text-medium)}.quote-pill-row{display:flex;gap:8px}.quote-pill-wrap{flex-wrap:wrap}.quote-pill{position:relative;cursor:pointer}.quote-pill input{position:absolute;opacity:0;pointer-events:none}.quote-pill-label{display:inline-flex;align-items:center;padding:9px 18px;border:2px solid var(--border);border-radius:var(--radius-full);font-family:var(--font-heading);font-size:13px;font-weight:600;color:var(--text-medium);background:var(--bg-white);transition:all .2s ease;white-space:nowrap}.quote-pill:hover .quote-pill-label{border-color:var(--green-light);color:var(--green)}.quote-pill input:checked+.quote-pill-label{border-color:var(--green);background:var(--green-pale);color:var(--green-dark)}.quote-chip-grid{display:flex;flex-wrap:wrap;gap:8px}.quote-chip{position:relative;cursor:pointer}.quote-chip input{position:absolute;opacity:0;pointer-events:none}.quote-chip-label{display:inline-flex;align-items:center;padding:8px 16px;border:1.5px solid var(--border);border-radius:var(--radius-full);font-size:13px;font-weight:500;color:var(--text-medium);background:var(--bg-white);transition:all .2s ease;white-space:nowrap}.quote-chip:hover .quote-chip-label{border-color:var(--green-light);color:var(--green)}.quote-chip input:checked+.quote-chip-label{border-color:var(--green);background:var(--green-pale);color:var(--green-dark);font-weight:600}.quote-checkbox-mark{flex-shrink:0;width:20px;height:20px;border:2px solid var(--border);border-radius:5px;position:relative;transition:all .2s ease}.quote-checkbox-mark:after{content:"";position:absolute;top:2px;left:6px;width:5px;height:10px;border:solid #fff;border-width:0 2px 2px 0;transform:rotate(45deg) scale(0);transition:transform .2s var(--bounce)}input:checked+.quote-checkbox-mark{background:var(--green);border-color:var(--green)}input:checked+.quote-checkbox-mark:after{transform:rotate(45deg) scale(1)}.quote-also-checkbox{display:flex;align-items:center;gap:10px;cursor:pointer;font-size:13px;color:var(--text-medium)}.quote-also-checkbox input{position:absolute;opacity:0;pointer-events:none}.quote-consent-block{margin-top:8px;padding:20px;background:var(--bg-light);border-radius:var(--radius-sm)}.quote-consent-label{display:flex;align-items:flex-start;gap:10px;cursor:pointer;font-size:14px;color:var(--text-dark);line-height:1.5}.quote-consent-label input{position:absolute;opacity:0;pointer-events:none}.quote-consent-note{margin-top:10px;padding-left:30px;font-size:12px;color:var(--text-light);line-height:1.5}.quote-consent-note a{color:var(--green);text-decoration:underline;text-underline-offset:2px}.quote-nav{display:flex;justify-content:space-between;align-items:center;margin-top:24px;gap:16px}.quote-nav-back{display:inline-flex;align-items:center;gap:6px;padding:12px 20px;font-family:var(--font-heading);font-size:15px;font-weight:600;color:var(--text-medium);border-radius:var(--radius-full);transition:all var(--transition);background:none;border:none;cursor:pointer}.quote-nav-back:hover{color:var(--text-dark);background:var(--bg-white)}.quote-nav-back[hidden]{visibility:hidden}.quote-nav-continue{display:inline-flex;align-items:center;gap:8px;padding:14px 32px;background:var(--yellow);color:var(--text-dark);font-family:var(--font-heading);font-size:16px;font-weight:700;border-radius:var(--radius-full);border:none;cursor:pointer;transition:all var(--transition);box-shadow:0 4px 16px #ffc80a4d;margin-left:auto}.quote-nav-continue:hover{background:var(--yellow-hover);transform:translateY(-2px);box-shadow:0 6px 24px #ffc80a66}.quote-nav-continue:active{transform:translateY(0)}.quote-nav-submit{background:var(--green);color:#fff;box-shadow:0 4px 16px #39b54a40}.quote-nav-submit:hover{background:var(--green-dark);box-shadow:0 6px 24px #39b54a59}.quote-review-card{border:1px solid var(--border);border-radius:var(--radius-sm);overflow:hidden}.quote-review-section{padding:20px 24px;border-bottom:1px solid var(--border)}.quote-review-section:last-child{border-bottom:none}.quote-review-section-head{display:flex;justify-content:space-between;align-items:center;margin-bottom:14px}.quote-review-section-head h3{font-family:var(--font-heading);font-size:15px;font-weight:700;color:var(--text-dark)}.quote-review-edit{display:inline-flex;align-items:center;gap:4px;font-family:var(--font-heading);font-size:13px;font-weight:600;color:var(--green);background:none;border:none;cursor:pointer;padding:4px 8px;border-radius:var(--radius-sm);transition:all var(--transition)}.quote-review-edit:hover{background:var(--green-pale)}.quote-review-row{display:flex;gap:16px;padding:6px 0;font-size:14px;line-height:1.5}.quote-review-label{color:var(--text-light);min-width:130px;flex-shrink:0}.quote-review-value{color:var(--text-dark);font-weight:500}.quote-review-next{display:flex;gap:14px;margin-top:24px;padding:20px;background:var(--green-pale);border-radius:var(--radius-sm);border:1px solid rgb(57 181 74 / .15)}.quote-review-next-icon{flex-shrink:0;color:var(--green);margin-top:2px}.quote-review-next-content strong{font-family:var(--font-heading);font-size:14px;font-weight:700;color:var(--green-dark);display:block;margin-bottom:4px}.quote-review-next-content p{font-size:13px;color:var(--text-medium);line-height:1.6}.quote-success-step .quote-step-inner{text-align:center;padding:56px 36px}.quote-success-hero{margin-bottom:36px}.quote-success-icon-ring{width:72px;height:72px;border-radius:50%;background:var(--green-pale);display:inline-flex;align-items:center;justify-content:center;margin-bottom:20px;animation:successPop .5s var(--bounce) both .2s}@keyframes successPop{0%{transform:scale(.5);opacity:0}to{transform:scale(1);opacity:1}}.quote-success-icon{color:var(--green);display:flex}.quote-success-icon svg{width:36px;height:36px}.quote-success-title{font-family:var(--font-heading);font-size:clamp(22px,3vw,28px);font-weight:800;color:var(--text-dark);margin-bottom:10px}.quote-success-subtitle{font-size:15px;color:var(--text-medium);max-width:480px;margin:0 auto;line-height:1.6}.quote-success-summary{display:flex;align-items:flex-start;gap:14px;text-align:left;padding:20px 24px;background:var(--bg-warm);border-radius:var(--radius-sm);border:1px solid rgb(255 200 10 / .25);margin-bottom:32px;animation:quoteStepIn .4s ease both .3s}.quote-success-summary-icon{flex-shrink:0;color:var(--yellow-hover);margin-top:2px}.quote-success-summary-content{display:flex;flex-direction:column;gap:2px}.quote-success-summary-content strong{font-family:var(--font-heading);font-size:15px;font-weight:700;color:var(--text-dark)}.quote-success-summary-content span{font-size:13px;color:var(--text-medium)}.quote-success-summary-meta{font-size:12px!important;color:var(--text-light)!important;margin-top:2px}.quote-success-next{text-align:left;margin-bottom:36px;animation:quoteStepIn .4s ease both .4s}.quote-success-next h3{font-family:var(--font-heading);font-size:16px;font-weight:700;color:var(--text-dark);margin-bottom:16px}.quote-success-next-list{display:flex;flex-direction:column;gap:12px}.quote-success-next-list li{display:flex;align-items:flex-start;gap:12px;font-size:14px;color:var(--text-medium);line-height:1.5}.quote-success-next-bullet{flex-shrink:0;width:24px;height:24px;border-radius:50%;background:var(--green-pale);color:var(--green);font-family:var(--font-heading);font-size:12px;font-weight:700;display:flex;align-items:center;justify-content:center}.quote-success-actions{display:flex;gap:12px;justify-content:center;animation:quoteStepIn .4s ease both .5s}.quote-success-btn{gap:8px}.quote-reassurance{display:flex;justify-content:center;gap:24px;margin-top:20px;padding:0 24px}.quote-reassurance-item{display:flex;align-items:center;gap:6px;font-size:12px;color:var(--text-light)}.quote-reassurance-icon{color:var(--green-light);display:flex}.quote-reassurance-icon svg{width:14px;height:14px}@media(max-width:768px){.quote-flow{padding:20px 16px 100px}.quote-step-inner{padding:28px 20px}.quote-category-grid{grid-template-columns:repeat(2,1fr)}.quote-form-row{grid-template-columns:1fr;gap:0}.quote-progress-label{font-size:11px}.quote-progress-dot{width:30px;height:30px}.quote-progress-dot-number{font-size:12px}.quote-progress-line{top:15px;left:15px;right:15px}.quote-review-row{flex-direction:column;gap:2px}.quote-review-label{min-width:unset;font-size:12px}.quote-success-actions{flex-direction:column}.quote-success-step .quote-step-inner{padding:36px 20px}.quote-reassurance{flex-direction:column;align-items:center;gap:10px}.quote-nav-continue,.quote-nav-submit{padding:14px 24px;font-size:15px}.quote-mode-content{flex-direction:column;gap:8px}.quote-pill-row{flex-wrap:wrap}}@media(max-width:480px){.quote-category-grid{grid-template-columns:repeat(2,1fr);gap:8px}.quote-category-card{padding:12px 6px}.quote-category-label{font-size:11px}.quote-progress{padding:20px 0 28px}.quote-step-title{font-size:20px}}
